:root {
  --ivory: #f7f1e8;
  --cream: #fffaf2;
  --paper: #efe4d2;
  --charcoal: #201f1a;
  --ink: #10100d;
  --muted: #6f675e;
  --line: #d9cbb8;
  --olive: #3e5141;
  --olive-soft: #667158;
  --orange: #a55f32;
  --gold: #a9762d;
  --red: #9c3427;
  --shadow: 0 22px 60px rgba(16, 16, 13, 0.16);
  --soft-shadow: 0 12px 34px rgba(16, 16, 13, 0.1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(32, 31, 26, 0.035) 1px, transparent 1px),
    linear-gradient(180deg, rgba(32, 31, 26, 0.035) 1px, transparent 1px),
    var(--ivory);
  background-size: 88px 88px;
  font-family: Arial, Helvetica, sans-serif;
  letter-spacing: 0;
}

body[data-mood="burger"] {
  --mood: #a55f32;
  --mood-dark: #59301d;
}

body[data-mood="pizza"] {
  --mood: #9c3427;
  --mood-dark: #4d1814;
}

body[data-mood="wrap"] {
  --mood: #3e5141;
  --mood-dark: #213127;
}

body[data-mood="shake"] {
  --mood: #7d5c3a;
  --mood-dark: #44301f;
}

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

a {
  color: inherit;
}

button,
input {
  font: inherit;
}

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

button {
  cursor: pointer;
}

button:focus-visible,
a:focus-visible,
input:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 100;
  transform: translateY(-160%);
  border-radius: 6px;
  background: var(--charcoal);
  color: var(--cream);
  padding: 10px 12px;
}

.skip-link:focus {
  transform: translateY(0);
}

.scroll-meter {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 90;
  height: 4px;
  background: rgba(255, 250, 242, 0.18);
}

.scroll-meter span {
  display: block;
  width: 0;
  height: 100%;
  background: var(--gold);
  transform-origin: left center;
}

.topbar {
  position: fixed;
  top: 14px;
  left: 50%;
  z-index: 80;
  width: min(1180px, calc(100% - 28px));
  min-height: 74px;
  transform: translateX(-50%);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
  border: 1px solid rgba(255, 250, 242, 0.28);
  border-radius: 8px;
  background: rgba(32, 31, 26, 0.76);
  color: var(--cream);
  padding: 10px 12px;
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(16px);
}

.brand {
  width: 132px;
  border-radius: 6px;
  overflow: hidden;
  background: var(--cream);
}

.brand img {
  width: 100%;
}

.desktop-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 22px;
  font-size: 0.95rem;
  font-weight: 800;
}

.desktop-nav a {
  color: rgba(255, 250, 242, 0.84);
  text-decoration: none;
  transition: color 180ms ease;
}

.desktop-nav a:hover {
  color: var(--cream);
}

.nav-cta,
.button,
.floating-order,
.mobile-cta a,
.console-footer a,
.dish-stage-copy a,
.signup-form button {
  text-decoration: none;
  font-weight: 900;
}

.nav-cta {
  min-height: 44px;
  display: grid;
  place-items: center;
  border-radius: 7px;
  background: var(--cream);
  color: var(--charcoal);
  padding: 0 20px;
}

.hero {
  position: relative;
  min-height: 96svh;
  overflow: hidden;
  background: #11110e;
  color: var(--cream);
}

.hero-backdrop,
.hero-backdrop img,
.hero-shade,
.hero-cursor-light {
  position: absolute;
  inset: 0;
}

.hero-backdrop img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.72;
  filter: saturate(1.05) contrast(1.08);
  transform: scale(1.04);
  transition: opacity 260ms ease, transform 520ms ease;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(12, 12, 10, 0.94), rgba(12, 12, 10, 0.6) 42%, rgba(12, 12, 10, 0.82)),
    linear-gradient(180deg, rgba(12, 12, 10, 0.22), rgba(12, 12, 10, 0.9));
}

.hero-cursor-light {
  pointer-events: none;
  opacity: 0.36;
  background: radial-gradient(circle at var(--cursor-x, 70%) var(--cursor-y, 30%), rgba(255, 250, 242, 0.22), transparent 260px);
}

.hero-layout {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 32px));
  min-height: 96svh;
  margin: 0 auto;
  padding: 142px 0 78px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  gap: 44px;
  align-items: center;
}

.kicker {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
}

.hero h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 7rem;
  line-height: 0.9;
  font-weight: 500;
}

.hero-line {
  max-width: 770px;
  margin: 26px 0 0;
  font-size: 2.25rem;
  line-height: 1.08;
  font-weight: 900;
}

.hero-copy-text {
  max-width: 700px;
  margin: 22px 0 0;
  color: rgba(255, 250, 242, 0.82);
  font-size: 1.12rem;
  line-height: 1.7;
}

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

.button {
  min-height: 48px;
  display: inline-grid;
  place-items: center;
  border-radius: 7px;
  padding: 0 22px;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}

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

.button.primary {
  background: var(--cream);
  color: var(--charcoal);
}

.button.ghost {
  border: 1px solid rgba(255, 250, 242, 0.42);
  color: var(--cream);
}

.button.ghost:hover {
  background: rgba(255, 250, 242, 0.1);
}

.craving-console {
  border: 1px solid rgba(255, 250, 242, 0.28);
  border-radius: 8px;
  background: rgba(32, 31, 26, 0.76);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
  padding: 16px;
}

.console-header {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: center;
  margin-bottom: 14px;
}

.console-header span,
.spotlight-dish span,
.console-footer span,
.dish-stage-copy span,
.dish-tile span,
.stage-button,
.phone-demo span,
.kitchen-board span,
.table-info span {
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.console-header strong {
  color: var(--cream);
}

.mood-buttons {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}

.mood-button,
.stage-button,
.moment-tab,
.choice,
.seat,
.dish-tile {
  border: 1px solid var(--line);
  border-radius: 7px;
  background: var(--cream);
  color: var(--charcoal);
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.mood-button {
  min-height: 46px;
  border-color: rgba(255, 250, 242, 0.24);
  background: rgba(255, 250, 242, 0.08);
  color: rgba(255, 250, 242, 0.84);
  font-weight: 900;
}

.mood-button:hover,
.stage-button:hover,
.moment-tab:hover,
.choice:hover,
.seat:hover,
.dish-tile:hover {
  transform: translateY(-2px);
}

.mood-button.active {
  background: var(--cream);
  color: var(--charcoal);
}

.spotlight-dish {
  margin-top: 14px;
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 16px;
  align-items: center;
}

.spotlight-dish img {
  width: 140px;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid rgba(255, 250, 242, 0.22);
}

.spotlight-dish h2 {
  margin: 8px 0 8px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
  line-height: 1.05;
}

.spotlight-dish p {
  margin: 0;
  color: rgba(255, 250, 242, 0.78);
  line-height: 1.55;
}

.console-footer {
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 250, 242, 0.18);
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
}

.console-footer a {
  color: var(--cream);
}

.signal-strip {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 32px));
  margin: -44px auto 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--cream);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.signal-strip div {
  padding: 22px;
  border-right: 1px solid var(--line);
}

.signal-strip div:last-child {
  border-right: 0;
}

.signal-strip span {
  display: block;
  margin-bottom: 12px;
  color: var(--gold);
  font-weight: 900;
}

.signal-strip strong {
  display: block;
  font-size: 1.08rem;
}

.signal-strip p {
  margin: 8px 0 0;
  color: var(--muted);
  line-height: 1.55;
}

.section {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 94px 0;
  scroll-margin-top: 120px;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-heading.centered {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section h2,
.demo-copy h2,
.builder-copy h2,
.visit-copy h2,
.insider h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 3.35rem;
  line-height: 1;
  font-weight: 500;
}

.section-heading p:not(.kicker),
.demo-copy p,
.builder-copy p,
.visit-copy > p,
.insider p {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.72;
}

.menu-lab-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: 18px;
  align-items: stretch;
}

.dish-stage {
  min-height: 560px;
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  background: var(--charcoal);
  color: var(--cream);
  box-shadow: var(--shadow);
}

.dish-stage img {
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
  opacity: 0.76;
  transform: scale(1.02);
  transition: opacity 240ms ease, transform 420ms ease;
}

.dish-stage::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(18, 18, 14, 0.08), rgba(18, 18, 14, 0.9));
}

.dish-stage-copy {
  position: absolute;
  left: 26px;
  right: 26px;
  bottom: 26px;
  z-index: 1;
}

.dish-stage-copy h3 {
  max-width: 600px;
  margin: 10px 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 3rem;
  line-height: 1;
  font-weight: 500;
}

.dish-stage-copy p {
  max-width: 560px;
  margin: 0 0 14px;
  color: rgba(255, 250, 242, 0.82);
  line-height: 1.62;
}

.dish-stage-copy strong {
  display: inline-block;
  margin-right: 16px;
  font-size: 1.35rem;
}

.dish-stage-copy a {
  color: var(--cream);
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
}

.dish-selector {
  display: grid;
  gap: 10px;
}

.dish-tile {
  min-height: 84px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 6px 16px;
  align-content: center;
  text-align: left;
  padding: 14px;
  background: rgba(255, 250, 242, 0.72);
}

.dish-tile span,
.dish-tile strong {
  grid-column: 1;
}

.dish-tile small {
  grid-row: 1 / span 2;
  grid-column: 2;
  align-self: center;
  color: var(--orange);
  font-size: 1rem;
  font-weight: 900;
}

.dish-tile.active {
  border-color: var(--charcoal);
  background: var(--charcoal);
  color: var(--cream);
  box-shadow: var(--soft-shadow);
}

.dish-tile.active small {
  color: var(--gold);
}

.table-demo {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.22fr);
  gap: 42px;
  align-items: center;
}

.stage-controls {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  margin-top: 26px;
}

.stage-button {
  min-height: 48px;
  color: var(--charcoal);
}

.stage-button.active {
  border-color: var(--charcoal);
  background: var(--charcoal);
  color: var(--cream);
}

.ops-demo {
  display: grid;
  grid-template-columns: minmax(250px, 0.78fr) minmax(280px, 1fr);
  gap: 18px;
  align-items: center;
}

.phone-demo {
  width: min(320px, 100%);
  margin: 0 auto;
  border: 10px solid var(--charcoal);
  border-radius: 8px;
  background: var(--charcoal);
  box-shadow: var(--shadow);
}

.phone-bar {
  width: 78px;
  height: 6px;
  margin: 8px auto 12px;
  border-radius: 6px;
  background: rgba(255, 250, 242, 0.36);
}

.phone-screen {
  min-height: 460px;
  border-radius: 6px;
  background:
    linear-gradient(180deg, rgba(255, 250, 242, 0.94), rgba(247, 241, 232, 0.98)),
    var(--cream);
  padding: 22px;
}

.phone-screen h3 {
  margin: 28px 0 12px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
  line-height: 1.05;
}

.phone-screen p {
  color: var(--muted);
  line-height: 1.58;
}

.phone-order {
  margin-top: 34px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fffdf8;
  padding: 14px;
}

.phone-order strong,
.phone-order small {
  display: block;
  margin-top: 8px;
}

.phone-order small {
  color: var(--orange);
  font-weight: 900;
}

.kitchen-board {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--cream);
  box-shadow: var(--soft-shadow);
  overflow: hidden;
}

.board-header {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  padding: 18px;
  border-bottom: 1px solid var(--line);
  background: var(--charcoal);
  color: var(--cream);
}

.board-row {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 14px;
  align-items: center;
  min-height: 86px;
  padding: 16px 18px;
  border-bottom: 1px solid var(--line);
  opacity: 0.54;
  transition: opacity 200ms ease, background 200ms ease;
}

.board-row:last-child {
  border-bottom: 0;
}

.board-row.active {
  opacity: 1;
  background: #fffdf8;
}

.board-row.active span {
  color: var(--orange);
}

.builder {
  display: grid;
  grid-template-columns: minmax(280px, 0.7fr) minmax(0, 1.3fr);
  gap: 42px;
  align-items: center;
}

.builder-lab {
  display: grid;
  grid-template-columns: minmax(260px, 0.86fr) minmax(280px, 1fr);
  gap: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--cream);
  padding: 18px;
  box-shadow: var(--soft-shadow);
}

.burger-visual {
  min-height: 440px;
  display: grid;
  align-content: center;
  gap: 8px;
  border-radius: 8px;
  background:
    linear-gradient(180deg, #fff5e4, #ead9bf);
  padding: 28px;
  text-align: center;
  overflow: hidden;
}

.burger-visual span {
  display: block;
  min-height: 38px;
  border-radius: 8px;
  color: #2a1c12;
  font-size: 0.8rem;
  font-weight: 900;
  line-height: 38px;
  transition: transform 220ms ease, background 220ms ease, min-height 220ms ease;
}

.bun-top,
.bun-bottom {
  min-height: 58px;
  background: #d59a4e;
  box-shadow: inset 0 -7px 0 rgba(0, 0, 0, 0.08);
}

.bun-top {
  border-radius: 8px 8px 4px 4px;
}

.bun-bottom {
  border-radius: 4px 4px 8px 8px;
}

.sauce-layer {
  background: #a33c2d;
}

.cheese-layer {
  background: #edbe43;
}

.patty-layer {
  min-height: 70px;
  background: #6b3b21;
  color: var(--cream);
}

.builder-lab[data-bread="sesame"] .bun-top,
.builder-lab[data-bread="sesame"] .bun-bottom {
  background: #bf7a34;
}

.builder-lab[data-patty="double"] .patty-layer {
  min-height: 108px;
}

.builder-lab[data-cheese="extra"] .cheese-layer {
  min-height: 56px;
}

.builder-lab[data-sauce="spicy"] .sauce-layer {
  background: #8f211a;
  transform: translateX(10px);
}

.builder-options {
  display: grid;
  gap: 12px;
}

.builder-options fieldset {
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.builder-options legend {
  padding: 0 6px;
  color: var(--orange);
  font-weight: 900;
}

.choice {
  min-height: 44px;
  padding: 0 12px;
  font-weight: 900;
}

.choice.active {
  border-color: var(--charcoal);
  background: var(--charcoal);
  color: var(--cream);
}

.moments {
  background: transparent;
}

.moment-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 18px;
}

.moment-tab {
  min-height: 46px;
  padding: 0 18px;
  font-weight: 900;
}

.moment-tab.active {
  border-color: var(--charcoal);
  background: var(--charcoal);
  color: var(--cream);
}

.moment-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 1fr);
  gap: 0;
  overflow: hidden;
  border-radius: 8px;
  background: var(--charcoal);
  color: var(--cream);
  box-shadow: var(--shadow);
}

.moment-panel img {
  width: 100%;
  height: 440px;
  object-fit: cover;
}

.moment-panel div {
  padding: 42px;
  align-self: center;
}

.badge {
  color: var(--gold);
  font-weight: 900;
  text-transform: uppercase;
}

.moment-panel h3 {
  margin: 12px 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 3rem;
  line-height: 1;
  font-weight: 500;
}

.moment-panel p {
  color: rgba(255, 250, 242, 0.8);
  line-height: 1.7;
}

.visit {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  gap: 38px;
  align-items: center;
}

.table-info {
  margin-top: 26px;
  border-left: 4px solid var(--gold);
  background: rgba(255, 250, 242, 0.72);
  padding: 16px;
}

.table-info strong {
  display: block;
  margin-top: 8px;
  font-size: 1.2rem;
}

.table-info p {
  margin-bottom: 0;
}

.seat-map {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  min-height: 420px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(32, 31, 26, 0.08), rgba(255, 250, 242, 0.72)),
    var(--cream);
  padding: 18px;
  box-shadow: var(--soft-shadow);
}

.seat {
  min-height: 92px;
  font-weight: 900;
  background: #fffdf8;
}

.seat.compact {
  min-height: 72px;
}

.seat.outdoor {
  grid-column: span 2;
  background: #eef1e8;
}

.seat.active {
  border-color: var(--charcoal);
  background: var(--charcoal);
  color: var(--cream);
}

.insider {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto 86px;
  scroll-margin-top: 120px;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 28px;
  align-items: center;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 44px 0;
}

.signup-form {
  display: grid;
  gap: 12px;
}

.signup-form label {
  display: grid;
  gap: 8px;
  font-weight: 900;
}

.signup-form input {
  width: 100%;
  min-height: 52px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: var(--cream);
  color: var(--charcoal);
  padding: 0 14px;
}

.signup-form button {
  min-height: 52px;
  border: 0;
  border-radius: 7px;
  background: var(--charcoal);
  color: var(--cream);
  transition: transform 180ms ease, background 180ms ease;
}

.signup-form button:hover {
  transform: translateY(-2px);
  background: var(--mood-dark);
}

.form-note {
  margin: 0;
}

.floating-order {
  position: fixed;
  right: 24px;
  bottom: 22px;
  z-index: 70;
  min-width: 174px;
  min-height: 62px;
  display: grid;
  align-content: center;
  border-radius: 8px;
  background: var(--charcoal);
  color: var(--cream);
  padding: 10px 18px;
  box-shadow: var(--shadow);
}

.floating-order span {
  color: rgba(255, 250, 242, 0.72);
  font-size: 0.85rem;
}

.mobile-cta {
  display: none;
}

.footer {
  padding: 46px 20px 58px;
  background: var(--charcoal);
  color: var(--cream);
  text-align: center;
}

.footer img {
  width: 126px;
  margin: 0 auto 14px;
  border-radius: 6px;
  background: var(--cream);
}

.footer p {
  color: rgba(255, 250, 242, 0.72);
}

.footer div {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}

.footer a {
  color: var(--cream);
  font-weight: 900;
}

.reveal {
  opacity: 1;
  transform: translateY(14px);
  transition: opacity 360ms ease, transform 360ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1080px) {
  .hero-layout,
  .menu-lab-grid,
  .table-demo,
  .builder,
  .visit,
  .insider {
    grid-template-columns: 1fr;
  }

  .signal-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .signal-strip div:nth-child(2) {
    border-right: 0;
  }

  .ops-demo,
  .builder-lab {
    grid-template-columns: 1fr;
  }

  .dish-stage,
  .dish-stage img {
    min-height: 480px;
  }
}

@media (max-width: 760px) {
  body {
    background-size: 58px 58px;
  }

  .topbar {
    top: 10px;
    min-height: 66px;
    grid-template-columns: auto auto;
  }

  .desktop-nav {
    display: none;
  }

  .brand {
    width: 126px;
  }

  .nav-cta {
    min-height: 50px;
    padding: 0 18px;
  }

  .hero {
    min-height: auto;
  }

  .hero-layout {
    min-height: auto;
    padding: 116px 0 54px;
    gap: 28px;
  }

  .hero h1 {
    font-size: 4.8rem;
  }

  .hero-line {
    font-size: 2rem;
  }

  .hero-copy-text {
    font-size: 1rem;
  }

  .hero-actions {
    display: grid;
  }

  .button {
    width: 100%;
    min-height: 54px;
  }

  .mood-buttons {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .spotlight-dish {
    grid-template-columns: 112px 1fr;
  }

  .spotlight-dish img {
    width: 112px;
  }

  .spotlight-dish h2 {
    font-size: 1.55rem;
  }

  .signal-strip {
    margin-top: 0;
    width: 100%;
    border-left: 0;
    border-right: 0;
    border-radius: 0;
    grid-template-columns: 1fr;
  }

  .signal-strip div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .signal-strip div:last-child {
    border-bottom: 0;
  }

  .section {
    padding: 68px 0;
  }

  .section h2,
  .demo-copy h2,
  .builder-copy h2,
  .visit-copy h2,
  .insider h2 {
    font-size: 2.35rem;
  }

  .dish-stage,
  .dish-stage img {
    min-height: 430px;
  }

  .dish-stage-copy {
    left: 18px;
    right: 18px;
    bottom: 18px;
  }

  .dish-stage-copy h3,
  .moment-panel h3 {
    font-size: 2.25rem;
  }

  .dish-tile {
    min-height: 78px;
  }

  .stage-controls {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .phone-screen {
    min-height: 390px;
  }

  .board-row {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .burger-visual {
    min-height: 360px;
  }

  .moment-panel {
    grid-template-columns: 1fr;
  }

  .moment-panel img {
    height: 300px;
  }

  .moment-panel div {
    padding: 26px;
  }

  .seat-map {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    min-height: auto;
  }

  .insider {
    margin-bottom: 104px;
  }

  .floating-order {
    display: none;
  }

  .mobile-cta {
    position: fixed;
    left: 8px;
    right: 8px;
    bottom: 8px;
    z-index: 75;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    padding: 8px;
    border: 1px solid rgba(255, 250, 242, 0.34);
    border-radius: 8px;
    background: rgba(32, 31, 26, 0.92);
    backdrop-filter: blur(14px);
  }

  .mobile-cta a {
    min-height: 48px;
    display: grid;
    place-items: center;
    border-radius: 6px;
    background: var(--cream);
    color: var(--charcoal);
  }

  .mobile-cta a:nth-child(2) {
    border: 1px solid rgba(255, 250, 242, 0.34);
    background: transparent;
    color: var(--cream);
  }
}

@media (max-width: 430px) {
  .hero h1 {
    font-size: 4rem;
  }

  .hero-line {
    font-size: 1.72rem;
  }

  .console-footer {
    display: grid;
  }

  .dish-tile {
    grid-template-columns: 1fr;
  }

  .dish-tile small {
    grid-column: 1;
    grid-row: auto;
  }

  .section h2,
  .demo-copy h2,
  .builder-copy h2,
  .visit-copy h2,
  .insider h2 {
    font-size: 2.1rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }

  .hero-backdrop img,
  .button:hover,
  .mood-button:hover,
  .stage-button:hover,
  .moment-tab:hover,
  .choice:hover,
  .seat:hover,
  .dish-tile:hover {
    transform: none;
  }
}
