:root {
  --red: #d70f1e;
  --red-dark: #a80612;
  --yellow: #ffd900;
  --green: #08653c;
  --green-bright: #2a8b4b;
  --ink: #17130f;
  --brown: #35190e;
  --cream: #fff8e7;
  --paper: #f4eedf;
  --white: #ffffff;
  --line: rgba(23, 19, 15, 0.14);
  --display: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--sans);
  overflow-x: hidden;
}

body.modal-open {
  overflow: hidden;
}

button,
input,
select,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

button {
  color: inherit;
}

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  display: grid;
  grid-template-columns: minmax(180px, 260px) 1fr auto;
  align-items: center;
  gap: 28px;
  min-height: 84px;
  padding: 12px clamp(24px, 4vw, 72px);
  background: rgba(255, 248, 231, 0.94);
  border-bottom: 1px solid rgba(23, 19, 15, 0.12);
  backdrop-filter: blur(16px);
}

.brand-link {
  display: inline-flex;
  align-items: center;
  width: min(230px, 100%);
}

.brand-link img {
  width: 100%;
  height: 52px;
  object-fit: contain;
  object-position: left center;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 3vw, 48px);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.035em;
  text-transform: uppercase;
}

.main-nav a {
  position: relative;
  padding: 12px 0;
}

.main-nav a::after {
  position: absolute;
  right: 0;
  bottom: 6px;
  left: 0;
  height: 3px;
  content: "";
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after {
  transform: scaleX(1);
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 48px;
  padding: 14px 20px;
  border: 0;
  border-radius: 3px;
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.055em;
  line-height: 1;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.nav-cta {
  color: var(--white);
  background: var(--ink);
}

.nav-cta:hover,
.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: var(--white);
  background: var(--red);
  box-shadow: 0 12px 26px rgba(120, 0, 9, 0.22);
}

.button-primary:hover {
  background: var(--red-dark);
  box-shadow: 0 15px 30px rgba(120, 0, 9, 0.3);
}

.button-ghost {
  color: var(--white);
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.42);
}

.button-ghost:hover {
  background: rgba(255, 255, 255, 0.08);
}

.button-dark {
  color: var(--white);
  background: var(--ink);
}

.button-light {
  color: var(--ink);
  background: var(--white);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(520px, 0.96fr);
  min-height: clamp(780px, calc(100vh - 84px), 1080px);
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 24% 16%, rgba(72, 150, 80, 0.46), transparent 28%),
    linear-gradient(109deg, #073e29 0%, #08653c 54.8%, #ffea00 55%, #ffea00 100%);
  border-bottom: 14px solid var(--brown);
}

.hero::before {
  position: absolute;
  right: -18%;
  bottom: -52%;
  width: 76%;
  aspect-ratio: 1;
  border: 2px solid rgba(53, 25, 14, 0.08);
  border-radius: 50%;
  content: "";
  box-shadow: 0 0 0 90px rgba(215, 15, 30, 0.035), 0 0 0 180px rgba(8, 101, 60, 0.035);
}

.stripe-stack {
  position: absolute;
  z-index: 3;
  top: 0;
  bottom: 0;
  left: clamp(20px, 3vw, 52px);
  display: flex;
  gap: 4px;
  width: 38px;
}

.stripe-stack span:nth-child(1) { width: 11px; background: var(--red); }
.stripe-stack span:nth-child(2) { width: 5px; background: var(--yellow); }
.stripe-stack span:nth-child(3) { width: 5px; background: var(--red); }
.stripe-stack span:nth-child(4) { width: 11px; background: var(--green); }

.hero-brand-panel {
  position: absolute;
  z-index: 4;
  top: clamp(26px, 4vh, 48px);
  left: 61%;
  width: min(940px, 59vw);
  padding: 10px clamp(26px, 4vw, 70px) 18px;
  background: transparent;
  box-shadow: none;
  transform: translateX(-50%);
  pointer-events: none;
}

.hero-brand-mark {
  width: 100%;
  height: auto;
  filter: none;
}

.hero-copy {
  position: relative;
  z-index: 5;
  align-self: center;
  max-width: 780px;
  padding: 190px clamp(24px, 2.5vw, 46px) 88px clamp(84px, 9vw, 160px);
}

.eyebrow {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--red);
  font-size: 0.74rem;
  font-weight: 950;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero-eyebrow {
  color: var(--yellow);
}

.hero h1,
.section-heading h2,
.franchise-intro h2,
.social-section h2 {
  margin: 0;
  font-family: var(--display);
  font-weight: 900;
  letter-spacing: -0.025em;
  line-height: 0.91;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 790px;
  font-size: clamp(4.3rem, 7.8vw, 9rem);
}

.hero h1 span {
  display: block;
  color: var(--yellow);
  -webkit-text-stroke: 1px rgba(255, 217, 0, 0.2);
}

.hero-copy > p {
  max-width: 420px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(1rem, 1.25vw, 1.2rem);
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 36px;
}

.sauce-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 12px;
}

.sauce-row span {
  padding: 11px 16px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 99px;
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-visual {
  position: relative;
  z-index: 2;
  align-self: stretch;
  min-width: 0;
  min-height: clamp(780px, calc(100vh - 84px), 1080px);
  padding: 0;
}

.hero-food-stage {
  position: absolute;
  inset: 104px 0 0;
  min-height: 720px;
  isolation: isolate;
}

.hero-food-stage::before {
  position: absolute;
  z-index: -1;
  top: 13%;
  right: -23%;
  width: 116%;
  aspect-ratio: 1;
  border: 2px solid rgba(53, 25, 14, 0.08);
  border-radius: 50%;
  content: "";
  background: rgba(255, 255, 255, 0.14);
  box-shadow: 0 0 0 55px rgba(215, 15, 30, 0.035);
}

.hero-chicken-cutout,
.hero-burger-cutout {
  position: absolute;
  display: block;
  max-width: none;
  height: auto;
  pointer-events: none;
  user-select: none;
}

.hero-chicken-cutout {
  z-index: 1;
  top: 18%;
  right: 0;
  width: min(1180px, 140%);
  filter: drop-shadow(0 34px 34px rgba(74, 37, 8, 0.28));
  transform: rotate(1.8deg);
}

.hero-burger-cutout {
  z-index: 2;
  top: auto;
  right: -1%;
  bottom: -11%;
  width: min(1280px, 154%);
  filter: drop-shadow(0 32px 32px rgba(74, 37, 8, 0.3));
  transform: rotate(-3deg);
}

.hero-stamp {
  position: absolute;
  z-index: 4;
  right: clamp(18px, 3vw, 52px);
  bottom: 7%;
  display: grid;
  place-items: center;
  width: 132px;
  aspect-ratio: 1;
  padding: 23px 10px;
  color: var(--ink);
  background: var(--yellow);
  border: 3px solid var(--ink);
  border-radius: 50%;
  font-family: var(--display);
  font-size: 1.18rem;
  line-height: 0.8;
  text-align: center;
  transform: rotate(8deg);
}

.hero-stamp::after {
  position: absolute;
  inset: 7px;
  border: 1px dashed rgba(23, 19, 15, 0.7);
  border-radius: 50%;
  content: "";
}

.hero-stamp strong {
  font-size: 0.75rem;
}

.heat-picker {
  display: grid;
  grid-template-areas:
    "flavours flavours"
    "heat empty";
  grid-template-columns: auto minmax(0, 1fr);
  align-items: start;
  gap: 24px 28px;
  margin-top: 52px;
}

.basting-panel {
  grid-area: flavours;
  width: 100%;
  max-width: 600px;
}

.sauce-label {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.heat-badge {
  position: relative;
  z-index: 4;
  grid-area: heat;
  justify-self: start;
  display: flex;
  flex-direction: column;
  padding: 19px 23px;
  color: var(--white);
  background: var(--red);
  box-shadow: 8px 8px 0 var(--yellow);
  transform: rotate(-5deg);
}

.heat-badge span {
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.heat-badge strong {
  font-family: var(--display);
  font-size: 2.5rem;
  line-height: 1;
}

.social-rail {
  position: absolute;
  z-index: 8;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  background: var(--cream);
}

.social-label {
  padding: 14px 18px;
  color: var(--ink);
  font-size: 0.65rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.social-rail a {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  color: var(--white);
  background: var(--ink);
  border-left: 1px solid rgba(255, 255, 255, 0.16);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
  transition: background 150ms ease;
}

.social-rail a:hover {
  background: var(--red);
}

.flavour-ticker {
  overflow: hidden;
  color: var(--ink);
  background: var(--yellow);
  border-top: 4px solid var(--red);
  border-bottom: 4px solid var(--green);
}

.flavour-ticker div {
  display: flex;
  width: max-content;
  min-width: 100%;
  align-items: center;
  justify-content: space-around;
  gap: 34px;
  padding: 16px 24px;
  font-family: var(--display);
  font-size: clamp(1.05rem, 1.7vw, 1.65rem);
  letter-spacing: 0.045em;
}

.flavour-ticker b {
  color: var(--red);
}

.section {
  width: min(1440px, 100%);
  margin: 0 auto;
  padding: clamp(82px, 10vw, 150px) clamp(24px, 5vw, 80px);
}

.heading-row {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  align-items: end;
  gap: 50px;
}

.section-heading h2,
.franchise-intro h2,
.social-section h2 {
  font-size: clamp(3.6rem, 7vw, 7.5rem);
}

.section-heading > p,
.heading-row > p {
  max-width: 520px;
  margin: 0 0 8px;
  color: rgba(23, 19, 15, 0.68);
  font-size: clamp(1rem, 1.3vw, 1.15rem);
  line-height: 1.7;
}

.menu-subtitle {
  margin: 16px 0 0;
  color: var(--green);
  font-size: clamp(1.2rem, 2vw, 2rem);
  font-weight: 750;
  letter-spacing: -0.025em;
}

.feature-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  grid-template-rows: repeat(2, minmax(320px, 420px));
  gap: 18px;
  margin-top: 62px;
}

.feature-card {
  position: relative;
  min-height: 320px;
  padding: 0;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
  border: 0;
  font: inherit;
  text-align: left;
  cursor: pointer;
}

.feature-card-wide {
  grid-row: 1 / 3;
}

.feature-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms cubic-bezier(0.2, 0.8, 0.2, 1), filter 500ms ease;
}

.feature-card-wide img {
  object-position: center;
}

.feature-card-tall img {
  object-position: 54% 37%;
}

.feature-card:hover img {
  filter: saturate(1.1) contrast(1.04);
  transform: scale(1.045);
}

.feature-card::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, transparent 28%, rgba(0, 0, 0, 0.78) 100%);
}

.feature-overlay {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 32px;
}

.feature-overlay > span {
  display: inline-block;
  margin-bottom: 8px;
  color: var(--yellow);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.feature-overlay h3 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(2rem, 3vw, 3.8rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 0.98;
  text-transform: uppercase;
}

.feature-overlay p {
  max-width: 480px;
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.5;
}

.feature-open {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
  padding-bottom: 5px;
  border-bottom: 2px solid var(--yellow);
  color: var(--white);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.menu-banner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  margin-top: 18px;
  padding: 38px clamp(28px, 4vw, 58px);
  overflow: hidden;
  background: var(--yellow);
  border-left: 14px solid var(--red);
}

.menu-banner::after {
  position: absolute;
  top: -100%;
  right: 23%;
  width: 120px;
  height: 320%;
  content: "";
  background: var(--green);
  opacity: 0.13;
  transform: rotate(22deg);
}

.menu-banner > * {
  position: relative;
  z-index: 2;
}

.menu-banner .eyebrow {
  margin-bottom: 10px;
  color: var(--red);
}

.menu-banner h3 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(2.2rem, 3.7vw, 4rem);
  letter-spacing: -0.02em;
  line-height: 1;
  text-transform: uppercase;
}

.menu-banner p {
  margin: 8px 0 0;
  color: rgba(23, 19, 15, 0.72);
}

.menu-banner-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.locations-section {
  position: relative;
  color: var(--white);
  background: var(--ink);
}

.locations-section::before {
  position: absolute;
  inset: 0;
  content: "";
  opacity: 0.24;
  background:
    linear-gradient(90deg, transparent 49.7%, rgba(255,255,255,.04) 50%, transparent 50.3%),
    linear-gradient(0deg, transparent 49.7%, rgba(255,255,255,.04) 50%, transparent 50.3%);
  background-size: 100px 100px;
  pointer-events: none;
}

.locations-inner {
  position: relative;
}

.light-heading {
  max-width: 880px;
}

.light-heading .eyebrow {
  color: var(--yellow);
}

.light-heading > p {
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.64);
}

.location-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 58px;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.location-card {
  position: relative;
  min-height: 310px;
  padding: 30px;
  overflow: hidden;
  background: #201a15;
  transition: background 200ms ease, transform 200ms ease;
}

.location-card:hover {
  z-index: 2;
  background: var(--green);
  transform: translateY(-4px);
}

.location-card::after {
  position: absolute;
  right: -58px;
  bottom: -78px;
  width: 190px;
  aspect-ratio: 1;
  border: 30px solid rgba(255, 255, 255, 0.035);
  border-radius: 50%;
  content: "";
}

.location-topline {
  display: flex;
  min-height: 26px;
  align-items: center;
  justify-content: space-between;
}

.location-number {
  color: var(--yellow);
  font-family: var(--display);
  font-size: 1.05rem;
  letter-spacing: 0.05em;
}

.new-badge {
  padding: 6px 9px;
  color: var(--ink);
  background: var(--yellow);
  font-size: 0.62rem;
  font-weight: 950;
  letter-spacing: 0.12em;
}

.location-card h3 {
  margin: 42px 0 10px;
  font-family: var(--display);
  font-size: clamp(2rem, 3vw, 3.1rem);
  letter-spacing: -0.01em;
  line-height: 1;
  text-transform: uppercase;
}

.location-card p {
  max-width: 290px;
  min-height: 46px;
  margin: 0;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.89rem;
  line-height: 1.5;
}

.phone-link {
  position: relative;
  z-index: 2;
  display: block;
  margin-top: 20px;
  color: var(--white);
  font-size: 1.03rem;
  font-weight: 850;
}

.map-link {
  position: relative;
  z-index: 2;
  display: inline-flex;
  gap: 7px;
  margin-top: 18px;
  color: var(--yellow);
  font-size: 0.73rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.franchise-section {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(460px, 1.05fr);
  gap: clamp(50px, 7vw, 120px);
  width: min(1440px, 100%);
  margin: 0 auto;
  padding: clamp(86px, 11vw, 160px) clamp(24px, 5vw, 80px);
  background: var(--cream);
}

.franchise-intro {
  padding-top: 12px;
}

.franchise-intro h2 {
  max-width: 620px;
}

.keep-together {
  white-space: nowrap;
}

.franchise-intro > p {
  max-width: 590px;
  margin: 28px 0 0;
  color: rgba(23, 19, 15, 0.68);
  font-size: 1.05rem;
  line-height: 1.75;
}

.franchise-steps {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  margin-top: 42px;
  background: var(--line);
  border: 1px solid var(--line);
}

.franchise-steps div {
  display: flex;
  min-height: 90px;
  align-items: center;
  gap: 18px;
  padding: 20px;
  background: var(--cream);
}

.franchise-steps strong {
  color: var(--red);
  font-family: var(--display);
  font-size: 1.55rem;
}

.franchise-steps span {
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.text-link {
  display: inline-flex;
  gap: 10px;
  margin-top: 34px;
  padding-bottom: 7px;
  border-bottom: 3px solid var(--red);
  font-weight: 900;
}

.franchise-form {
  padding: clamp(28px, 4vw, 52px);
  color: var(--white);
  background: var(--green);
  box-shadow: 18px 18px 0 var(--yellow);
}

.form-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 32px;
  padding-bottom: 26px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.form-heading span {
  color: var(--yellow);
  font-size: 0.7rem;
  font-weight: 950;
  letter-spacing: 0.16em;
}

.form-heading strong {
  font-family: var(--display);
  font-size: clamp(2.4rem, 4vw, 4.2rem);
  line-height: 0.9;
  text-transform: uppercase;
}

.franchise-form label {
  display: grid;
  gap: 8px;
  margin-bottom: 17px;
  color: rgba(255, 255, 255, 0.73);
  font-size: 0.71rem;
  font-weight: 850;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.franchise-form input,
.franchise-form select,
.franchise-form textarea {
  width: 100%;
  padding: 14px 15px;
  color: var(--white);
  background: rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 0;
  outline: 0;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
  transition: border-color 160ms ease, background 160ms ease;
}

.franchise-form input::placeholder,
.franchise-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.42);
}

.franchise-form input:focus,
.franchise-form select:focus,
.franchise-form textarea:focus {
  background: rgba(0, 0, 0, 0.25);
  border-color: var(--yellow);
}

.franchise-form select option {
  color: var(--ink);
}

.franchise-form textarea {
  resize: vertical;
}

.form-submit {
  width: 100%;
  margin-top: 5px;
}

.franchise-form small {
  display: block;
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.54);
  font-size: 0.68rem;
  line-height: 1.45;
}

.platter-section {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(460px, 0.92fr);
  min-height: 760px;
  color: var(--ink);
  background: var(--yellow);
}

.platter-photo {
  position: relative;
  min-height: 640px;
  overflow: hidden;
  background: var(--ink);
}

.platter-photo::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, transparent 58%, rgba(255, 217, 0, 0.22) 100%);
}

.platter-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.04) contrast(1.04);
}

.platter-photo-stamp {
  position: absolute;
  z-index: 2;
  right: 28px;
  bottom: 28px;
  display: grid;
  padding: 16px 20px;
  color: var(--white);
  background: var(--red);
  box-shadow: 8px 8px 0 var(--green);
  font-family: var(--display);
  line-height: 0.9;
  transform: rotate(-3deg);
}

.platter-photo-stamp strong { font-size: 2.5rem; }
.platter-photo-stamp span { font-size: 1.2rem; letter-spacing: 0.06em; }

.platter-copy {
  align-self: center;
  padding: clamp(68px, 8vw, 130px) clamp(30px, 7vw, 120px);
}

.platter-copy .eyebrow { color: var(--red); }

.platter-copy h2,
.fish-copy h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(4rem, 7vw, 8rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 0.9;
  text-transform: uppercase;
}

.platter-copy > p {
  max-width: 620px;
  margin: 26px 0 0;
  font-size: 1.05rem;
  line-height: 1.7;
}

.platter-options {
  display: grid;
  gap: 8px;
  margin: 32px 0;
}

.platter-options button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: 100%;
  padding: 14px 0;
  color: var(--ink);
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(23, 19, 15, 0.26);
  font: inherit;
  text-align: left;
  cursor: pointer;
}

.platter-options button:hover strong { color: var(--red); }
.platter-options button > span { display: grid; gap: 2px; }
.platter-options strong { font-weight: 950; text-transform: uppercase; transition: color 180ms ease; }
.platter-options small { color: rgba(23, 19, 15, 0.6); }
.platter-options b { font-family: var(--display); font-size: 1.7rem; }

.fish-section {
  position: relative;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  min-height: 760px;
  overflow: hidden;
  color: var(--white);
  background: #050505;
}

.fish-section::before {
  position: absolute;
  z-index: 1;
  right: -8%;
  bottom: -40%;
  width: 60%;
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  content: "";
  box-shadow: 0 0 0 70px rgba(255, 255, 255, 0.025), 0 0 0 140px rgba(255, 255, 255, 0.018);
}

.fish-photo {
  position: relative;
  min-height: 560px;
  overflow: hidden;
}

.fish-photo::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, #050505 0%, transparent 24%, transparent 100%);
}

.fish-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.96) contrast(1.06);
}

.fish-photo > span {
  position: absolute;
  z-index: 2;
  right: 20px;
  bottom: 24px;
  padding: 12px 16px;
  color: #0e1114;
  background: var(--white);
  font-family: var(--display);
  font-size: clamp(1.2rem, 2.4vw, 2.4rem);
  letter-spacing: 0.04em;
  transform: rotate(-3deg);
}

.fish-copy {
  position: relative;
  z-index: 2;
  display: flex;
  max-width: 720px;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: clamp(70px, 8vw, 130px) clamp(32px, 6vw, 110px);
}

.fish-copy .eyebrow {
  color: rgba(255, 255, 255, 0.58);
}

.fish-logo {
  width: min(480px, 100%);
  max-height: 240px;
  object-fit: contain;
  object-position: left center;
}

.fish-copy h2 {
  max-width: 620px;
  margin-top: 28px;
  font-size: clamp(3.8rem, 6vw, 7rem);
}

.fish-copy p {
  max-width: 540px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.65);
  font-size: 1.05rem;
  line-height: 1.75;
}

.fish-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 26px;
  margin-top: 34px;
}

.fish-actions > a {
  padding-bottom: 6px;
  border-bottom: 2px solid #a7d9e8;
  font-weight: 900;
}

.fish-menu-teasers {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 28px;
}

.fish-menu-teasers span {
  padding: 9px 13px;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 99px;
  font-size: 0.66rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.fish-contact {
  display: grid;
  gap: 3px;
}

.fish-contact span {
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.fish-contact a {
  width: max-content;
  padding-bottom: 5px;
  border-bottom: 2px solid var(--white);
  font-weight: 950;
}

.social-section {
  padding: clamp(90px, 10vw, 150px) clamp(24px, 5vw, 80px);
  text-align: center;
  background: var(--paper);
}

.social-section .eyebrow {
  margin-bottom: 12px;
}

.social-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  width: min(1050px, 100%);
  margin: 52px auto 0;
}

.social-cards a {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 16px;
  min-height: 116px;
  padding: 24px;
  color: var(--white);
  background: var(--ink);
  text-align: left;
  transition: background 180ms ease, transform 180ms ease;
}

.social-cards a:nth-child(2) { background: var(--red); }
.social-cards a:nth-child(3) { background: var(--green); }

.social-cards a:hover {
  transform: translateY(-5px) rotate(-0.6deg);
}

.social-cards a > span {
  display: grid;
  place-items: center;
  width: 48px;
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 50%;
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.social-cards strong {
  font-family: var(--display);
  font-size: clamp(1.4rem, 2vw, 2rem);
  letter-spacing: 0.025em;
  text-transform: uppercase;
}

.social-cards em {
  font-style: normal;
  font-size: 1.3rem;
}

footer {
  display: grid;
  grid-template-columns: 1.2fr 0.7fr 1fr;
  gap: 60px;
  align-items: start;
  padding: 68px clamp(24px, 5vw, 80px);
  color: var(--white);
  background: #0b261b;
  border-top: 8px solid var(--yellow);
}

.footer-brand img {
  width: min(270px, 100%);
  height: 72px;
  object-fit: contain;
  object-position: left center;
}

.footer-brand p {
  max-width: 380px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.6;
}

.footer-links {
  display: grid;
  gap: 13px;
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-links a:hover,
.footer-contact a:hover {
  color: var(--yellow);
}

.footer-contact {
  display: grid;
  justify-items: start;
}

.footer-contact > span {
  color: rgba(255, 255, 255, 0.46);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.footer-contact > a {
  margin-top: 12px;
  font-size: clamp(1.2rem, 2vw, 1.8rem);
  font-weight: 900;
}

.traffic-counter {
  display: inline-grid;
  grid-template-columns: auto auto auto;
  align-items: center;
  gap: 9px;
  margin-top: 24px;
  padding: 9px 12px;
  color: rgba(255, 255, 255, 0.68);
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 99px;
  font-size: 0.64rem;
  font-weight: 850;
  letter-spacing: 0.09em;
  line-height: 1;
  text-transform: uppercase;
}

.traffic-counter i {
  width: 7px;
  height: 7px;
  background: rgba(255, 255, 255, 0.28);
  border-radius: 50%;
}

.traffic-counter strong {
  min-width: 28px;
  color: var(--yellow);
  font-size: 0.78rem;
  letter-spacing: 0.02em;
  text-align: right;
}

.traffic-counter.is-live i {
  background: var(--yellow);
  box-shadow: 0 0 0 4px rgba(255, 221, 0, 0.12);
}

.traffic-counter.is-preview strong,
.traffic-counter.is-unavailable strong {
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.58rem;
  letter-spacing: 0.06em;
}

.footer-contact small {
  margin-top: 34px;
  color: rgba(255, 255, 255, 0.38);
}

.gallery-modal {
  position: fixed;
  z-index: 100;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 20px;
}

.gallery-modal[hidden] {
  display: none !important;
}

.gallery-stage[hidden],
.gallery-thumbs[hidden],
.coco-price-board[hidden],
.fish-menu-board[hidden] {
  display: none !important;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  padding: 0;
  background: rgba(8, 7, 5, 0.9);
  border: 0;
  cursor: default;
  backdrop-filter: blur(10px);
}

.gallery-dialog {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  width: min(1360px, 100%);
  height: min(920px, calc(100vh - 40px));
  overflow: hidden;
  background: #0e0d0b;
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.55);
}

.gallery-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  padding: 12px 22px;
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.gallery-header > div {
  display: flex;
  align-items: baseline;
  gap: 14px;
}

.gallery-header span {
  color: var(--yellow);
  font-size: 0.69rem;
  font-weight: 950;
  letter-spacing: 0.16em;
}

.gallery-header strong {
  font-family: var(--display);
  font-size: 1.55rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.gallery-tools {
  display: flex;
  align-items: center;
  gap: 8px;
}

.gallery-tools > button {
  display: grid;
  place-items: center;
  height: 44px;
  padding: 0;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  line-height: 1;
  cursor: pointer;
}

.gallery-tools > button[hidden] {
  display: none !important;
}

#menu-view-toggle {
  width: auto;
  padding: 0 15px;
  color: var(--ink);
  background: var(--yellow);
  border-color: var(--yellow);
  font-size: 0.68rem;
  font-weight: 950;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.gallery-tools [data-close-gallery] {
  width: 44px;
  font-size: 2rem;
}

.gallery-stage {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 0;
  padding: 18px 72px;
  overflow: hidden;
}

.gallery-stage > img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.gallery-arrow {
  position: absolute;
  z-index: 2;
  top: 50%;
  display: grid;
  place-items: center;
  width: 48px;
  height: 64px;
  padding: 0;
  color: var(--ink);
  background: var(--yellow);
  border: 0;
  font-size: 1.45rem;
  cursor: pointer;
  transform: translateY(-50%);
}

.gallery-prev { left: 12px; }
.gallery-next { right: 12px; }

.gallery-thumbs {
  display: flex;
  gap: 8px;
  padding: 12px;
  overflow-x: auto;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.gallery-thumbs button {
  position: relative;
  flex: 0 0 112px;
  height: 68px;
  padding: 0;
  overflow: hidden;
  background: #222;
  border: 2px solid transparent;
  cursor: pointer;
  opacity: 0.55;
}

.gallery-thumbs button.active {
  border-color: var(--yellow);
  opacity: 1;
}

.gallery-thumbs img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-thumbs span {
  position: absolute;
  right: 4px;
  bottom: 3px;
  padding: 2px 4px;
  color: var(--white);
  background: rgba(0, 0, 0, 0.72);
  font-size: 0.58rem;
  font-weight: 900;
}

.fish-menu-dialog {
  grid-template-rows: auto minmax(0, 1fr);
  width: min(1440px, 100%);
  background: #080909;
}

.coco-price-board {
  min-height: 0;
  padding: clamp(22px, 3vw, 44px);
  overflow-y: auto;
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(215, 15, 30, 0.055) 0 13%, transparent 13%),
    var(--paper);
}

.coco-menu-intro {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 28px;
  padding: clamp(24px, 3vw, 42px);
  color: var(--white);
  background: linear-gradient(90deg, #08653c 0%, #4da849 48%, #08653c 100%);
  border-left: 12px solid var(--red);
  box-shadow: 10px 10px 0 var(--yellow);
}

.coco-menu-intro > div > span {
  color: var(--yellow);
  font-size: 0.68rem;
  font-weight: 950;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.coco-menu-intro h3 {
  margin: 9px 0 7px;
  font-family: var(--display);
  font-size: clamp(2.4rem, 5vw, 5.2rem);
  line-height: 0.92;
  text-transform: uppercase;
}

.coco-menu-intro p {
  max-width: 680px;
  margin: 0;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.55;
}

.coco-menu-intro strong {
  color: var(--white);
}

.coco-menu-intro .button {
  flex: 0 0 auto;
}

.coco-menu-groups {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 30px;
}

.coco-menu-groups article {
  padding: 22px;
  background: var(--white);
  border-top: 8px solid var(--red);
  box-shadow: 0 12px 30px rgba(53, 25, 14, 0.09);
}

.coco-menu-groups article:nth-child(3n + 2) {
  border-top-color: var(--green);
}

.coco-menu-groups article:nth-child(3n) {
  border-top-color: var(--yellow);
}

.coco-menu-groups h4 {
  margin: 0;
  font-family: var(--display);
  font-size: 1.75rem;
  letter-spacing: 0.02em;
  line-height: 1;
  text-transform: uppercase;
}

.coco-menu-groups article > div > small {
  display: block;
  margin-top: 7px;
  color: var(--green);
  font-size: 0.67rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.coco-menu-groups ul {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.coco-menu-groups li {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: end;
  font-size: 0.82rem;
  line-height: 1.35;
}

.coco-menu-groups li span {
  display: flex;
  gap: 7px;
  align-items: flex-end;
}

.coco-menu-groups li span::after {
  flex: 1;
  min-width: 10px;
  border-bottom: 1px dotted rgba(53, 25, 14, 0.28);
  content: "";
}

.coco-menu-groups li b {
  color: var(--red);
  font-size: 0.9rem;
}

.coco-menu-note {
  margin: 22px 0 0;
  color: rgba(53, 25, 14, 0.58);
  font-size: 0.72rem;
  line-height: 1.5;
}

.fish-menu-board {
  min-height: 0;
  padding: clamp(22px, 3vw, 44px);
  overflow-y: auto;
  color: var(--white);
  background:
    radial-gradient(circle at 90% 2%, rgba(255, 255, 255, 0.08), transparent 26%),
    #080909;
}

.fish-menu-intro {
  display: grid;
  grid-template-columns: minmax(190px, 0.65fr) minmax(280px, 1fr) auto;
  align-items: center;
  gap: clamp(22px, 4vw, 64px);
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.fish-menu-intro img {
  width: min(330px, 100%);
  max-height: 145px;
  object-fit: contain;
  object-position: left center;
}

.fish-menu-intro > div > span {
  color: #a7d9e8;
  font-size: 0.68rem;
  font-weight: 950;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.fish-menu-intro h3 {
  margin: 8px 0 5px;
  font-family: var(--display);
  font-size: clamp(2rem, 4vw, 4.2rem);
  line-height: 0.95;
  text-transform: uppercase;
}

.fish-menu-intro p {
  max-width: 620px;
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.55;
}

.fish-menu-intro > a {
  padding: 15px 18px;
  color: #080909;
  background: var(--white);
  font-size: 0.76rem;
  font-weight: 950;
  letter-spacing: 0.04em;
  white-space: nowrap;
  text-transform: uppercase;
}

.fish-menu-photo-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 28px;
}

.fish-menu-photo-grid figure {
  position: relative;
  min-height: 210px;
  margin: 0;
  overflow: hidden;
  background: #181818;
}

.fish-menu-photo-grid img {
  width: 100%;
  height: 100%;
  min-height: 210px;
  object-fit: cover;
  transition: transform 260ms ease;
}

.fish-menu-photo-grid figure:hover img {
  transform: scale(1.025);
}

.fish-menu-photo-grid figcaption {
  position: absolute;
  right: 12px;
  bottom: 12px;
  padding: 9px 11px;
  color: #090909;
  background: var(--white);
  font-size: 0.64rem;
  font-weight: 950;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.fish-menu-groups {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 12px;
}

.fish-menu-groups article {
  padding: 22px;
  background: #141515;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.fish-menu-groups article:nth-child(5),
.fish-menu-groups article:nth-child(6) {
  grid-column: span 2;
}

.fish-menu-groups h4 {
  margin: 0 0 15px;
  color: #a7d9e8;
  font-family: var(--display);
  font-size: 1.75rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.fish-menu-groups ul {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.fish-menu-groups li {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 15px;
  align-items: end;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.82rem;
  line-height: 1.35;
}

.fish-menu-groups li span {
  display: flex;
  gap: 8px;
  align-items: flex-end;
}

.fish-menu-groups li span::after {
  flex: 1;
  min-width: 12px;
  border-bottom: 1px dotted rgba(255, 255, 255, 0.28);
  content: "";
}

.fish-menu-groups li b {
  color: var(--white);
  font-size: 0.86rem;
}

.fish-menu-note {
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.46);
  font-size: 0.7rem;
  line-height: 1.5;
}

:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: 3px;
}

@media (max-width: 1180px) {
  .site-header {
    grid-template-columns: minmax(150px, 220px) 1fr auto;
    gap: 20px;
    padding-inline: 24px;
  }

  .main-nav {
    gap: 18px;
    font-size: 0.72rem;
  }

  .hero {
    grid-template-columns: minmax(0, 1.06fr) minmax(480px, 0.94fr);
  }

  .hero-copy {
    padding-right: 28px;
    padding-left: 100px;
  }

  .location-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .franchise-section {
    grid-template-columns: 0.9fr 1.1fr;
    gap: 54px;
  }

  .social-cards strong {
    font-size: 1.4rem;
  }
}

@media (max-width: 960px) {
  .site-header {
    grid-template-columns: 190px 1fr;
    min-height: 76px;
  }

  .brand-link img {
    height: 48px;
  }

  .main-nav {
    justify-content: flex-end;
  }

  .main-nav a:nth-child(3),
  .main-nav a:nth-child(4),
  .nav-cta {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-bottom: 58px;
    background: linear-gradient(152deg, #083a26 0%, #0b4c2f 71.8%, #ffea00 72%, #ffea00 100%);
  }

  .hero-brand-panel {
    top: 30px;
    left: 55%;
    width: min(680px, 76vw);
    padding-inline: 42px;
  }

  .hero-copy {
    max-width: none;
    padding: 190px 48px 44px 104px;
  }

  .hero-copy > p {
    max-width: 570px;
  }

  .hero h1 {
    max-width: 800px;
    font-size: clamp(4.8rem, 13vw, 8rem);
  }

  .hero-visual {
    min-height: 880px;
    padding: 0;
  }

  .hero-food-stage {
    inset: 0;
    min-height: 880px;
  }

  .hero-chicken-cutout {
    top: 2%;
    right: 0;
    width: 128%;
  }

  .hero-burger-cutout {
    top: auto;
    right: -2%;
    bottom: -12%;
    width: 132%;
  }

  .coco-menu-groups {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .heat-badge {
    left: 0;
  }

  .heading-row {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .feature-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: minmax(440px, 560px) minmax(300px, 380px);
  }

  .feature-card-wide {
    grid-column: 1 / 3;
    grid-row: auto;
  }

  .platter-section {
    grid-template-columns: 1fr;
  }

  .platter-photo {
    min-height: 560px;
  }

  .platter-copy {
    padding: 72px 48px 90px;
  }

  .franchise-section {
    grid-template-columns: 1fr;
  }

  .fish-section {
    grid-template-columns: 1fr;
  }

  .fish-photo {
    min-height: 520px;
  }

  .fish-photo::after {
    background: linear-gradient(180deg, #050505 0%, transparent 24%, transparent 76%, #050505 100%);
  }

  .fish-copy {
    max-width: none;
    padding: 30px 48px 84px;
  }

  .social-cards {
    grid-template-columns: 1fr;
    max-width: 640px;
  }

  footer {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand {
    grid-column: 1 / 3;
  }
}

@media (max-width: 680px) {
  .site-header {
    grid-template-columns: 150px 1fr;
    gap: 10px;
    min-height: 68px;
    padding: 8px 16px;
  }

  .brand-link img {
    height: 42px;
  }

  .main-nav {
    gap: 15px;
    font-size: 0.66rem;
  }

  .main-nav a:nth-child(2) {
    display: none;
  }

  .stripe-stack {
    left: 18px;
    width: 24px;
  }

  .stripe-stack span:nth-child(1),
  .stripe-stack span:nth-child(4) { width: 7px; }
  .stripe-stack span:nth-child(2),
  .stripe-stack span:nth-child(3) { width: 3px; }

  .hero-copy {
    padding: 162px 22px 26px 58px;
  }

  .hero-brand-panel {
    top: 24px;
    left: 56%;
    width: min(430px, 82vw);
    padding: 7px 22px 12px;
  }

  .hero h1 {
    font-size: clamp(4.1rem, 19vw, 6rem);
  }

  .hero-copy > p {
    font-size: 0.96rem;
  }

  .hero-actions {
    display: grid;
  }

  .hero-actions .button {
    width: 100%;
  }

  .sauce-row {
    gap: 9px;
  }

  .heat-picker {
    grid-template-columns: 1fr;
    grid-template-areas:
      "flavours"
      "heat";
    gap: 22px;
    margin-top: 44px;
  }

  .heat-badge {
    width: max-content;
  }

  .sauce-row span {
    padding: 10px 13px;
    font-size: 0.7rem;
  }

  .hero-visual {
    min-height: 700px;
    padding: 0;
  }

  .hero-food-stage {
    min-height: 700px;
  }

  .hero-chicken-cutout {
    top: 2%;
    right: -8%;
    width: 116%;
  }

  .hero-burger-cutout {
    top: auto;
    right: -8%;
    bottom: -8%;
    width: 135%;
  }

  .hero-stamp {
    right: 10px;
    bottom: 11%;
    width: 100px;
    font-size: 0.92rem;
  }

  .heat-badge {
    top: 0;
    left: 0;
  }

  .social-rail {
    left: 42px;
    justify-content: flex-start;
  }

  .social-label {
    padding-inline: 12px;
  }

  .social-rail a {
    width: 42px;
    height: 42px;
  }

  .flavour-ticker div {
    justify-content: flex-start;
    overflow: hidden;
    font-size: 1.05rem;
  }

  .section {
    padding: 78px 18px;
  }

  .section-heading h2,
  .franchise-intro h2,
  .social-section h2 {
    font-size: clamp(3.25rem, 15vw, 5rem);
  }

  .feature-grid {
    grid-template-columns: 1fr;
    grid-template-rows: none;
    gap: 12px;
    margin-top: 38px;
  }

  .feature-card,
  .feature-card-wide {
    grid-column: auto;
    min-height: 390px;
  }

  .feature-card-tall {
    min-height: 470px;
  }

  .feature-overlay {
    padding: 22px;
  }

  .feature-overlay h3 {
    font-size: 2.4rem;
  }

  .menu-banner {
    align-items: flex-start;
    flex-direction: column;
    margin-top: 12px;
    padding: 28px 22px;
  }

  .menu-banner .button {
    width: 100%;
  }

  .menu-banner-actions {
    width: 100%;
  }

  .platter-photo {
    min-height: 440px;
  }

  .platter-copy {
    padding: 72px 20px 84px;
  }

  .platter-copy h2,
  .fish-copy h2 {
    font-size: clamp(3.4rem, 17vw, 5.2rem);
  }

  .platter-photo-stamp {
    right: 18px;
    bottom: 18px;
  }

  .location-grid {
    grid-template-columns: 1fr;
  }

  .location-card {
    min-height: 286px;
  }

  .franchise-section {
    padding: 78px 18px 94px;
  }

  .franchise-steps,
  .form-row {
    grid-template-columns: 1fr;
  }

  .franchise-form {
    padding: 26px 20px;
    box-shadow: 9px 9px 0 var(--yellow);
  }

  .form-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .fish-photo {
    min-height: 420px;
  }

  .fish-copy {
    padding: 26px 18px 74px;
  }

  .fish-logo {
    max-height: 180px;
  }

  .fish-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .fish-actions .button {
    width: 100%;
  }

  .social-section {
    padding: 78px 18px;
  }

  .social-cards a {
    padding: 18px;
  }

  footer {
    grid-template-columns: 1fr;
    gap: 44px;
    padding: 58px 22px;
  }

  .footer-brand {
    grid-column: auto;
  }

  .gallery-modal {
    padding: 0;
  }

  .gallery-dialog {
    width: 100%;
    height: 100%;
    border: 0;
  }

  .gallery-header {
    min-height: 64px;
    padding: 10px 12px;
  }

  .gallery-header > div:first-child {
    align-items: flex-start;
    flex-direction: column;
    gap: 3px;
  }

  .gallery-tools {
    flex-direction: row;
    margin-left: auto;
  }

  #menu-view-toggle {
    padding-inline: 10px;
    font-size: 0.58rem;
  }

  .gallery-stage {
    padding: 10px 0 68px;
  }

  .gallery-arrow {
    top: auto;
    bottom: 10px;
    width: 48%;
    height: 48px;
    transform: none;
  }

  .gallery-prev { left: 1%; }
  .gallery-next { right: 1%; }

  .gallery-thumbs {
    display: none;
  }

  .coco-price-board,
  .fish-menu-board {
    padding: 18px 14px 28px;
  }

  .coco-menu-intro {
    align-items: stretch;
    flex-direction: column;
    padding: 25px 20px;
  }

  .coco-menu-intro .button {
    width: 100%;
  }

  .coco-menu-groups {
    grid-template-columns: 1fr;
  }

  .fish-menu-intro {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .fish-menu-intro img {
    width: min(260px, 80%);
  }

  .fish-menu-intro > a {
    width: 100%;
    text-align: center;
  }

  .fish-menu-photo-grid,
  .fish-menu-groups {
    grid-template-columns: 1fr;
  }

  .fish-menu-photo-grid figure {
    min-height: 190px;
  }

  .fish-menu-groups article:nth-child(5),
  .fish-menu-groups article:nth-child(6) {
    grid-column: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
  }
}
