:root {
  --aubergine: #35142f;
  --aubergine-dark: #1f0b1d;
  --plum: #5a1c46;
  --cream: #fbf5e9;
  --ivory: #f4ecdc;
  --paper: #fffaf1;
  --gold: #d9ad56;
  --gold-soft: #ead7a9;
  --emerald: #17483b;
  --ink: #241d20;
  --muted: #6f6466;
  --line: rgba(53, 20, 47, .16);
  --shell: min(1240px, calc(100% - 64px));
  --serif: "Playfair Display", Georgia, serif;
  --sans: "DM Sans", Arial, sans-serif;
  --shadow: 0 24px 70px rgba(41, 18, 34, .12);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
body.nav-open { overflow: hidden; }
img { display: block; width: 100%; max-width: 100%; }
a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { font-family: var(--serif); font-weight: 600; line-height: 1.03; letter-spacing: -.035em; }
h2 { font-size: clamp(2.6rem, 5vw, 5rem); }
h3 { font-size: clamp(1.65rem, 2.4vw, 2.35rem); }
.shell { width: var(--shell); margin-inline: auto; }
.section { padding: clamp(80px, 9vw, 144px) 0; }
.sr-only { position: absolute; width: 1px; height: 1px; margin: -1px; padding: 0; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }
.skip-link { position: fixed; left: 16px; top: 16px; z-index: 2000; padding: 12px 18px; background: white; color: black; transform: translateY(-150%); }
.skip-link:focus { transform: translateY(0); }

.concept-note {
  min-height: 31px;
  padding: 6px 24px;
  color: rgba(255,255,255,.86);
  background: var(--aubergine-dark);
  font-size: 11px;
  font-weight: 600;
  line-height: 19px;
  letter-spacing: .11em;
  text-align: center;
  text-transform: uppercase;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(251,245,233,.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
  transition: box-shadow .25s ease;
}
.site-header.is-scrolled { box-shadow: 0 10px 35px rgba(35,17,29,.09); }
.header-inner { height: 88px; display: flex; align-items: center; justify-content: space-between; gap: 36px; }
.brand { display: inline-flex; align-items: center; gap: 13px; text-decoration: none; flex: 0 0 auto; }
.brand-mark { width: 43px; height: 43px; display: grid; place-items: center; color: var(--gold); }
.brand-mark svg { width: 100%; height: 100%; fill: none; stroke: currentColor; stroke-width: 1.25; }
.brand-copy { display: grid; gap: 1px; }
.brand-copy strong { color: var(--aubergine); font-family: var(--serif); font-size: 20px; letter-spacing: .16em; line-height: 1.1; }
.brand-copy small { color: var(--muted); font-size: 9px; font-weight: 700; letter-spacing: .17em; text-transform: uppercase; }
.primary-nav { display: flex; align-items: center; gap: clamp(18px, 2.3vw, 35px); }
.primary-nav a { position: relative; color: #3a3034; font-size: 13px; font-weight: 600; text-decoration: none; }
.primary-nav a:not(.nav-call)::after { content: ""; position: absolute; left: 0; bottom: -8px; width: 100%; height: 1px; background: var(--plum); transform: scaleX(0); transform-origin: right; transition: transform .2s ease; }
.primary-nav a:hover::after, .primary-nav a:focus-visible::after { transform: scaleX(1); transform-origin: left; }
.primary-nav .nav-call { padding: 12px 18px; color: var(--cream); background: var(--aubergine); border: 1px solid var(--aubergine); transition: background .2s, color .2s; }
.primary-nav .nav-call:hover { color: var(--aubergine); background: transparent; }
.menu-toggle { display: none; width: 48px; height: 48px; padding: 0; border: 1px solid var(--line); border-radius: 50%; background: transparent; place-content: center; gap: 6px; }
.menu-toggle span:not(.sr-only) { display: block; width: 20px; height: 2px; background: var(--aubergine); transition: transform .2s; }

.hero { background: var(--aubergine); color: white; }
.hero-grid { display: grid; grid-template-columns: minmax(440px, .83fr) minmax(0, 1.38fr); min-height: min(760px, calc(100svh - 119px)); }
.hero-copy { position: relative; z-index: 2; display: flex; flex-direction: column; justify-content: center; padding: clamp(72px, 8vw, 128px) clamp(42px, 6vw, 96px) clamp(64px, 7vw, 108px) max(32px, calc((100vw - 1240px) / 2)); background: var(--aubergine); overflow: hidden; }
.hero-copy::before { content: ""; position: absolute; right: -130px; bottom: -170px; width: 390px; height: 390px; border: 1px solid rgba(217,173,86,.23); border-radius: 50%; box-shadow: 0 0 0 52px rgba(217,173,86,.04), 0 0 0 104px rgba(217,173,86,.035); pointer-events: none; }
.hero-copy > * { position: relative; z-index: 1; }
.eyebrow { margin-bottom: 20px; color: var(--gold-soft); font-size: 11px; font-weight: 700; line-height: 1.25; letter-spacing: .2em; text-transform: uppercase; }
.eyebrow-dark { color: var(--plum); }
.hero h1 { max-width: 680px; margin-bottom: 28px; font-size: clamp(4.1rem, 6.2vw, 7rem); }
.hero h1 em { color: var(--gold); font-weight: 600; }
.hero-intro { max-width: 600px; margin-bottom: 36px; color: rgba(255,255,255,.82); font-size: clamp(1rem, 1.5vw, 1.2rem); }
.hero-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 28px; }
.button { display: inline-flex; min-height: 52px; padding: 14px 20px; align-items: center; justify-content: center; gap: 18px; border: 1px solid transparent; color: inherit; font-size: 13px; font-weight: 700; line-height: 1.2; text-decoration: none; transition: transform .2s, background .2s, color .2s, border-color .2s; }
.button:hover { transform: translateY(-2px); }
.button-light { color: var(--aubergine); background: var(--paper); }
.button-light:hover { color: white; background: transparent; border-color: rgba(255,255,255,.65); }
.button-plum { color: white; background: var(--aubergine); }
.button-plum:hover { color: var(--aubergine); background: transparent; border-color: var(--aubergine); }
.button-gold { color: var(--aubergine-dark); background: var(--gold); }
.button-gold:hover { color: white; background: transparent; border-color: var(--gold); }
.text-link { display: inline-flex; align-items: center; gap: 14px; padding-bottom: 3px; border-bottom: 1px solid currentColor; color: var(--aubergine); font-size: 13px; font-weight: 700; line-height: 1.4; text-decoration: none; }
.text-link-light { color: white; }
.hero-availability { display: flex; align-items: center; gap: 12px; margin-top: 52px; }
.status-dot { width: 9px; height: 9px; background: #79c98a; border-radius: 50%; box-shadow: 0 0 0 5px rgba(121,201,138,.13); }
.hero-availability div { display: grid; }
.hero-availability strong { font-size: 12px; letter-spacing: .02em; }
.hero-availability small { color: rgba(255,255,255,.6); font-size: 11px; }
.hero-media { position: relative; min-width: 0; overflow: hidden; }
.hero-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(53,20,47,.72) 0%, rgba(53,20,47,.08) 24%, transparent 55%), linear-gradient(0deg, rgba(20,10,16,.38), transparent 38%); pointer-events: none; }
.hero-media > img { height: 100%; object-fit: cover; object-position: 54% center; }
.hero-badge { position: absolute; z-index: 2; right: 28px; top: 28px; width: 128px; aspect-ratio: 1; display: grid; place-content: center; gap: 0; border: 1px solid rgba(255,255,255,.55); border-radius: 50%; color: white; background: rgba(31,11,29,.46); font-size: 10px; line-height: 1.2; letter-spacing: .14em; text-align: center; backdrop-filter: blur(8px); }
.hero-badge span { margin: 4px 0; color: var(--gold-soft); font-family: var(--serif); font-size: 13px; font-style: italic; letter-spacing: 0; }
.hero-caption { position: absolute; z-index: 2; right: 34px; bottom: 28px; padding: 10px 14px; border-left: 2px solid var(--gold); color: rgba(255,255,255,.86); font-size: 11px; letter-spacing: .09em; text-transform: uppercase; }
.trust-strip { display: grid; grid-template-columns: repeat(5, 1fr); border-top: 1px solid rgba(255,255,255,.13); background: var(--aubergine-dark); }
.trust-strip span { display: grid; min-height: 72px; padding: 18px; place-items: center; border-right: 1px solid rgba(255,255,255,.1); color: rgba(255,255,255,.82); font-size: 11px; font-weight: 700; letter-spacing: .1em; text-align: center; text-transform: uppercase; }
.trust-strip span:last-child { border-right: 0; }

.intro-section { position: relative; overflow: hidden; background: var(--ivory); }
.intro-backdrop { position: absolute; inset: 0; background: url('../images/thai-ingredients.webp') center / cover no-repeat; opacity: .88; }
.intro-backdrop::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(244,236,220,.18), rgba(244,236,220,.92) 38%, rgba(244,236,220,.48)); }
.intro-grid { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(330px, .7fr); gap: clamp(50px, 9vw, 140px); align-items: center; }
.intro-grid h2 { max-width: 770px; margin: 0; color: var(--aubergine); }
.intro-copy { padding: clamp(24px, 4vw, 52px); background: rgba(255,250,241,.88); box-shadow: var(--shadow); backdrop-filter: blur(7px); }
.intro-copy p { color: #53494d; font-size: 1.02rem; }

.popular-section { background: var(--paper); }
.section-heading { display: grid; grid-template-columns: minmax(0, 1fr) minmax(280px, 430px); gap: 70px; align-items: end; margin-bottom: 54px; }
.section-heading h2 { max-width: 780px; margin-bottom: 0; color: var(--aubergine); }
.section-heading > p { margin-bottom: 6px; color: var(--muted); }
.dish-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; }
.dish-card { overflow: hidden; border: 1px solid var(--line); background: var(--cream); transition: transform .25s ease, box-shadow .25s ease; }
.dish-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.dish-image { aspect-ratio: 4 / 3; overflow: hidden; background: #e3d5c2; }
.dish-image img { height: 100%; object-fit: cover; transition: transform .45s ease; }
.dish-card:hover img { transform: scale(1.025); }
.dish-body { padding: 28px 28px 32px; }
.dish-kicker { margin-bottom: 10px; color: var(--plum); font-size: 10px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; }
.dish-body h3 { margin-bottom: 13px; color: var(--aubergine); font-size: clamp(1.65rem, 2.4vw, 2.1rem); }
.dish-body p:last-child { margin-bottom: 0; color: var(--muted); font-size: 14px; }
.dish-note { display: grid; grid-template-columns: auto 1fr auto; gap: 20px; align-items: center; margin-top: 28px; padding: 20px 24px; color: var(--cream); background: var(--emerald); }
.dish-note > span { color: var(--gold); }
.dish-note p { margin: 0; font-size: 13px; }
.dish-note a { color: white; font-size: 12px; font-weight: 700; }

.menu-section { color: white; background: var(--aubergine); }
.menu-heading { max-width: 800px; margin-bottom: 50px; }
.menu-heading h2 { margin-bottom: 20px; }
.menu-heading > p:last-child { max-width: 630px; color: rgba(255,255,255,.67); }
.menu-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.menu-card { position: relative; min-height: 560px; overflow: hidden; border: 1px solid rgba(255,255,255,.15); }
.menu-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.menu-card:hover img { transform: scale(1.025); }
.menu-card-overlay { position: absolute; inset: 0; background: linear-gradient(0deg, rgba(20,7,18,.92) 0%, rgba(28,9,24,.3) 72%, rgba(20,7,18,.12)); }
.menu-card-content { position: absolute; z-index: 2; left: 0; right: 0; bottom: 0; padding: clamp(28px, 4vw, 52px); }
.menu-card-content > span { color: var(--gold-soft); font-size: 10px; font-weight: 700; letter-spacing: .17em; }
.menu-card-content h3 { margin: 10px 0 14px; font-size: clamp(3rem, 5vw, 5.4rem); }
.menu-card-content p { max-width: 470px; margin-bottom: 25px; color: rgba(255,255,255,.79); }
.menu-categories { display: grid; grid-template-columns: repeat(6, 1fr); margin-top: 22px; border: 1px solid rgba(255,255,255,.16); }
.menu-categories span { display: grid; min-height: 70px; padding: 15px 10px; place-items: center; border-right: 1px solid rgba(255,255,255,.13); color: rgba(255,255,255,.72); font-size: 10px; font-weight: 700; letter-spacing: .08em; text-align: center; text-transform: uppercase; }
.menu-categories span:last-child { border-right: 0; }

.dine-section { background: var(--ivory); }
.dine-heading h2 { font-size: clamp(2.8rem, 4.8vw, 4.7rem); }
.choice-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.choice-card { display: grid; grid-template-rows: auto 1fr; border: 1px solid var(--line); background: var(--paper); }
.choice-photo { aspect-ratio: 16 / 10; overflow: hidden; }
.choice-photo img { height: 100%; object-fit: cover; transition: transform .45s ease; }
.choice-card:hover .choice-photo img { transform: scale(1.025); }
.choice-content { position: relative; padding: clamp(28px, 4vw, 48px); }
.choice-number { position: absolute; right: 28px; top: 21px; color: rgba(53,20,47,.11); font-family: var(--serif); font-size: 68px; line-height: 1; }
.choice-content h3 { max-width: 520px; margin-bottom: 17px; color: var(--aubergine); }
.choice-content > p:not(.dish-kicker) { max-width: 530px; margin-bottom: 26px; color: var(--muted); }
.choice-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 26px; }

.visit-section { color: white; background: var(--aubergine-dark); }
.visit-grid { display: grid; grid-template-columns: minmax(420px, .78fr) minmax(0, 1.22fr); min-height: 710px; }
.visit-copy { padding: clamp(72px, 8vw, 120px) clamp(42px, 7vw, 110px) clamp(72px, 8vw, 120px) max(32px, calc((100vw - 1240px) / 2)); }
.visit-copy h2 { max-width: 620px; margin-bottom: 42px; }
.hours-list { border-top: 1px solid rgba(255,255,255,.2); border-bottom: 1px solid rgba(255,255,255,.2); }
.hours-list > div { display: grid; grid-template-columns: 1fr auto; gap: 3px 30px; padding: 22px 0; }
.hours-list span { grid-row: 1 / 3; align-self: center; color: var(--gold-soft); font-size: 12px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.hours-list strong { font-size: 13px; font-weight: 500; }
.hours-note { margin: 14px 0 30px; color: rgba(255,255,255,.53); font-size: 11px; line-height: 1.5; }
.visit-copy address { display: grid; margin-bottom: 20px; font-style: normal; }
.visit-copy address strong { font-family: var(--serif); font-size: 22px; }
.visit-copy address span { color: rgba(255,255,255,.67); font-size: 13px; }
.contact-list { display: flex; flex-wrap: wrap; gap: 10px 23px; margin-bottom: 30px; }
.contact-list a { color: white; font-size: 12px; font-weight: 600; }
.map-wrap { position: relative; min-width: 0; min-height: 610px; background: #d6cebd; }
.map-wrap iframe { display: block; width: 100%; height: 100%; min-height: 710px; border: 0; filter: saturate(.65) contrast(.93); }
.map-card { position: absolute; left: 28px; bottom: 28px; display: grid; min-width: 235px; padding: 22px 24px; color: var(--aubergine); background: var(--paper); box-shadow: var(--shadow); }
.map-card span { margin-bottom: 4px; color: var(--plum); font-size: 9px; font-weight: 700; letter-spacing: .16em; }
.map-card strong { font-family: var(--serif); font-size: 27px; line-height: 1.15; }
.map-card small { color: var(--muted); }

.final-cta { position: relative; min-height: 510px; display: grid; align-items: center; overflow: hidden; background: var(--cream); }
.final-ingredients { position: absolute; inset: 0; background: url('../images/thai-ingredients.webp') center / cover no-repeat; }
.final-ingredients::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(251,245,233,.88) 0%, rgba(251,245,233,.91) 53%, rgba(251,245,233,.34)); }
.final-inner { position: relative; z-index: 1; padding-top: 80px; padding-bottom: 80px; }
.final-inner h2 { max-width: 760px; margin-bottom: 36px; color: var(--aubergine); }
.final-inner h2 em { color: var(--plum); }
.final-actions { display: flex; align-items: center; gap: 30px; }

.site-footer { padding: 70px 0 28px; color: rgba(255,255,255,.68); background: #160714; }
.footer-main { display: grid; grid-template-columns: 1.2fr .8fr 1.1fr .45fr; gap: 50px; padding-bottom: 50px; }
.brand-footer .brand-copy strong { color: var(--gold-soft); }
.brand-footer .brand-copy small { color: rgba(255,255,255,.45); }
.footer-main p, .footer-main a { font-size: 12px; line-height: 1.8; }
.footer-main a { color: rgba(255,255,255,.74); }
.footer-links { display: grid; align-content: start; }
.footer-bottom { display: flex; justify-content: space-between; gap: 30px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.12); font-size: 9px; letter-spacing: .08em; text-transform: uppercase; }
.mobile-bar { display: none; }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .55s ease, transform .55s ease; }
.reveal.in-view { opacity: 1; transform: translateY(0); }

@media (max-width: 1060px) {
  :root { --shell: min(100% - 44px, 1240px); }
  .header-inner { height: 80px; }
  .primary-nav { gap: 17px; }
  .primary-nav a { font-size: 12px; }
  .hero-grid { grid-template-columns: minmax(390px, .86fr) minmax(0, 1.15fr); min-height: 700px; }
  .hero-copy { padding-right: 42px; }
  .hero h1 { font-size: clamp(3.8rem, 6.5vw, 5.4rem); }
  .intro-grid { grid-template-columns: 1fr .72fr; gap: 50px; }
  .menu-categories { grid-template-columns: repeat(3, 1fr); }
  .menu-categories span:nth-child(3) { border-right: 0; }
  .menu-categories span:nth-child(-n+3) { border-bottom: 1px solid rgba(255,255,255,.13); }
  .visit-grid { grid-template-columns: .9fr 1.1fr; }
}

@media (max-width: 860px) {
  :root { --shell: calc(100% - 40px); }
  .site-header { top: 0; }
  .menu-toggle { display: grid; z-index: 1002; }
  .menu-toggle[aria-expanded="true"] span:nth-of-type(2) { transform: translateY(4px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:nth-of-type(3) { transform: translateY(-4px) rotate(-45deg); }
  .primary-nav { position: fixed; z-index: 1001; top: 111px; right: 0; bottom: 0; left: 0; display: flex; flex-direction: column; align-items: stretch; gap: 0; padding: 28px 24px 110px; background: var(--cream); transform: translateX(100%); transition: transform .28s ease; overflow-y: auto; }
  .primary-nav.is-open { transform: translateX(0); }
  .primary-nav a { padding: 18px 4px; border-bottom: 1px solid var(--line); font-family: var(--serif); font-size: 26px; font-weight: 600; }
  .primary-nav .nav-call { margin-top: 18px; padding: 16px 20px; color: white; font-family: var(--sans); font-size: 14px; text-align: center; }
  .hero-grid { grid-template-columns: 1fr; min-height: auto; }
  .hero-copy { min-height: 610px; padding: 88px max(20px, calc((100vw - 740px) / 2)) 70px; }
  .hero h1 { max-width: 660px; font-size: clamp(4rem, 10.5vw, 6.4rem); }
  .hero-intro { max-width: 590px; }
  .hero-media { min-height: 580px; }
  .hero-media::after { background: linear-gradient(0deg, rgba(25,9,22,.48), transparent 42%); }
  .trust-strip { grid-template-columns: repeat(2, 1fr); }
  .trust-strip span { border-bottom: 1px solid rgba(255,255,255,.1); }
  .trust-strip span:nth-child(2n) { border-right: 0; }
  .trust-strip span:last-child { grid-column: 1 / -1; }
  .intro-grid, .section-heading { grid-template-columns: 1fr; gap: 34px; }
  .intro-copy { max-width: 600px; }
  .dish-grid { grid-template-columns: 1fr; max-width: 650px; margin-inline: auto; gap: 18px; }
  .dish-card { display: grid; grid-template-columns: 44% 56%; }
  .dish-image { height: 100%; min-height: 250px; aspect-ratio: auto; }
  .dish-note { grid-template-columns: auto 1fr; }
  .dish-note a { grid-column: 2; }
  .menu-card { min-height: 510px; }
  .choice-grid { grid-template-columns: 1fr; max-width: 680px; margin-inline: auto; }
  .visit-grid { grid-template-columns: 1fr; }
  .visit-copy { padding-left: max(20px, calc((100vw - 740px) / 2)); padding-right: max(20px, calc((100vw - 740px) / 2)); }
  .map-wrap, .map-wrap iframe { min-height: 540px; }
  .footer-main { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 680px) {
  :root { --shell: calc(100% - 32px); }
  body { padding-bottom: 62px; }
  .concept-note { min-height: 35px; padding: 7px 12px; font-size: 8px; line-height: 1.35; display: grid; place-items: center; }
  .header-inner { height: 73px; }
  .brand-mark { width: 35px; height: 35px; }
  .brand-copy strong { font-size: 16px; letter-spacing: .13em; }
  .brand-copy small { font-size: 7px; }
  .menu-toggle { width: 44px; height: 44px; }
  .primary-nav { top: 108px; }
  .section { padding: 78px 0; }
  .hero-copy { min-height: auto; padding: 72px 20px 58px; }
  .hero h1 { font-size: clamp(3.35rem, 15vw, 4.8rem); line-height: .98; }
  .hero-intro { font-size: 1rem; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 24px; }
  .hero-availability { margin-top: 42px; }
  .hero-media { min-height: 410px; }
  .hero-media > img { object-position: 66% center; }
  .hero-badge { right: 16px; top: 16px; width: 96px; font-size: 8px; }
  .hero-caption { right: 16px; left: 16px; bottom: 16px; }
  .trust-strip span { min-height: 62px; padding: 14px 10px; font-size: 9px; }
  h2 { font-size: clamp(2.45rem, 12vw, 3.7rem); }
  .intro-backdrop { background-position: 72% center; opacity: .74; }
  .intro-grid { gap: 28px; }
  .intro-copy { padding: 26px 24px; }
  .section-heading { margin-bottom: 35px; }
  .dish-card { display: block; }
  .dish-image { min-height: 0; aspect-ratio: 4 / 3; }
  .dish-body { padding: 24px; }
  .dish-note { display: flex; align-items: flex-start; flex-wrap: wrap; padding: 20px; }
  .dish-note a { width: 100%; margin-left: 30px; }
  .menu-cards { grid-template-columns: 1fr; }
  .menu-card { min-height: 470px; }
  .menu-card-content { padding: 28px 24px; }
  .menu-card-content h3 { font-size: 3.4rem; }
  .menu-categories { grid-template-columns: repeat(2, 1fr); }
  .menu-categories span:nth-child(3) { border-right: 1px solid rgba(255,255,255,.13); }
  .menu-categories span:nth-child(2n) { border-right: 0; }
  .menu-categories span:nth-child(-n+4) { border-bottom: 1px solid rgba(255,255,255,.13); }
  .choice-content { padding: 30px 24px 34px; }
  .choice-number { right: 19px; font-size: 52px; }
  .dine-heading h2 { font-size: clamp(2.45rem, 11vw, 3.5rem); }
  .visit-copy { padding: 76px 20px; }
  .visit-copy h2 { margin-bottom: 34px; }
  .hours-list > div { grid-template-columns: 1fr; }
  .hours-list span { grid-row: auto; margin-bottom: 7px; }
  .map-wrap, .map-wrap iframe { min-height: 430px; }
  .map-card { left: 16px; right: 16px; bottom: 16px; min-width: 0; }
  .final-cta { min-height: 480px; }
  .final-ingredients { background-position: 70% center; }
  .final-ingredients::after { background: rgba(251,245,233,.78); }
  .final-actions { align-items: flex-start; flex-direction: column; }
  .site-footer { padding-top: 58px; }
  .footer-main { grid-template-columns: 1fr; gap: 27px; }
  .footer-bottom { flex-direction: column; gap: 12px; }
  .mobile-bar { position: fixed; z-index: 1100; left: 0; right: 0; bottom: 0; display: grid; grid-template-columns: 1fr 1fr; height: 62px; box-shadow: 0 -8px 26px rgba(28,10,24,.13); }
  .mobile-bar a { display: grid; place-items: center; color: white; background: var(--emerald); font-size: 12px; font-weight: 700; text-decoration: none; }
  .mobile-bar a:last-child { color: var(--aubergine-dark); background: var(--gold); }
}

@media (max-width: 380px) {
  .brand-mark { display: none; }
  .hero h1 { font-size: 3.15rem; }
  .hero-copy { padding-top: 62px; }
  .hero-media { min-height: 360px; }
  .mobile-bar a { font-size: 11px; }
}

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