/* =========================================================
   Wild Ginger China Bistro
   Editorial luxury: warm cream paper, deep brown ink,
   tan brushstroke accents, ginger-orange CTA.
   ========================================================= */

/* ---------- Tokens ---------- */
:root {
  /* Color */
  --paper:        #f6efe2;         /* warm cream, the page itself */
  --paper-deep:   #ede2cc;         /* slightly toasted */
  --ink:          #2a160c;         /* near-black, brown shifted */
  --ink-soft:     #4a2918;         /* secondary brown */
  --ink-muted:    #7a5b48;         /* muted text */
  --brand-brown:  #6b2a16;         /* the wordmark brown */
  --brand-tan:    #c89863;         /* the brushstroke tan */
  --brand-tan-soft:#d9b58a;
  --ginger:       #c4471d;         /* CTA orange, saturated, used sparingly */
  --ginger-deep:  #9c3614;
  --hairline:     rgba(42,22,12,.18);
  --hairline-soft:rgba(42,22,12,.10);
  --shadow-warm:  0 30px 60px -30px rgba(106,42,22,.35);

  /* Type */
  --serif: 'Fraunces', 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --sans:  'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;

  /* Layout */
  --wrap: 1240px;
  --gutter: clamp(20px, 4vw, 56px);
}

/* ---------- Base ---------- */
*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.65;
  font-weight: 400;
  letter-spacing: -0.005em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;

  /* Subtle paper grain */
  background-image:
    radial-gradient(circle at 20% 10%, rgba(200,152,99,.06), transparent 40%),
    radial-gradient(circle at 80% 80%, rgba(196,71,29,.04), transparent 40%),
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='240' height='240'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.42 0 0 0 0 0.27 0 0 0 0 0.16 0 0 0 0.06 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  background-attachment: fixed, fixed, fixed;
  background-size: auto, auto, 240px 240px;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color .25s ease;
}

button { font-family: inherit; cursor: pointer; border: 0; background: none; }

::selection { background: var(--ginger); color: var(--paper); }

.wrap {
  max-width: var(--wrap);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

.italic { font-style: italic; }

/* ---------- Typography utilities ---------- */
.eyebrow {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brand-brown);
  display: inline-block;
}
.eyebrow--light { color: var(--brand-tan-soft); }

.section-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(36px, 5.4vw, 68px);
  line-height: 1.02;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 14px 0 22px;
}
.section-title--light { color: var(--paper); }
.section-title .italic { font-style: italic; color: var(--brand-brown); }

.section-deck {
  font-size: clamp(16px, 1.4vw, 19px);
  line-height: 1.6;
  color: var(--ink-muted);
  max-width: 56ch;
  margin: 0 0 28px;
}
.section-deck--light { color: rgba(246,239,226,.78); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.04em;
  padding: 13px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: all .25s cubic-bezier(.2,.7,.3,1);
  white-space: nowrap;
  text-transform: uppercase;
}
.btn--lg { padding: 17px 30px; font-size: 13.5px; }

.btn--solid {
  background: var(--ginger);
  color: var(--paper);
  box-shadow: 0 1px 0 rgba(0,0,0,.05), 0 8px 18px -8px rgba(196,71,29,.45);
}
.btn--solid:hover {
  background: var(--ginger-deep);
  transform: translateY(-1px);
  box-shadow: 0 1px 0 rgba(0,0,0,.05), 0 14px 24px -10px rgba(156,54,20,.5);
}

.btn--outline {
  border-color: var(--ink);
  color: var(--ink);
  background: transparent;
}
.btn--outline:hover {
  background: var(--ink);
  color: var(--paper);
}

.btn--ghost {
  color: var(--ink-soft);
  padding: 10px 14px;
}
.btn--ghost:hover { color: var(--ginger); }

/* ---------- Top bar ---------- */
.topbar {
  background: var(--ink);
  color: var(--paper);
  font-size: 12.5px;
  font-weight: 400;
  letter-spacing: 0.02em;
}
.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 9px var(--gutter);
  flex-wrap: wrap;
}
.topbar__item { display: inline-flex; align-items: center; gap: 8px; opacity: .92; }
.topbar__divider { opacity: .35; }
.topbar__link:hover { color: var(--brand-tan); }
.dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: #6fdc8c;
  box-shadow: 0 0 0 3px rgba(111,220,140,.18);
  display: inline-block;
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(246,239,226,.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--hairline-soft);
  transition: padding .3s ease, background .3s ease;
}
.site-header.is-scrolled { background: rgba(246,239,226,.96); }

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  padding-bottom: 14px;
  gap: 24px;
}

.brand img {
  height: 64px;
  width: auto;
  transition: height .3s ease;
}
.is-scrolled .brand img { height: 52px; }

.nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav > a:not(.btn) {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--ink-soft);
  position: relative;
  padding: 4px 0;
}
.nav > a:not(.btn)::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 1px;
  background: var(--ginger);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s cubic-bezier(.2,.7,.3,1);
}
.nav > a:not(.btn):hover { color: var(--ink); }
.nav > a:not(.btn):hover::after { transform: scaleX(1); }

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  width: 40px; height: 40px;
  position: relative;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
}
.nav-toggle span {
  display: block;
  width: 22px; height: 1.5px;
  background: var(--ink);
  transition: transform .3s ease, opacity .3s ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.mobile-nav {
  display: none;
  flex-direction: column;
  padding: 10px var(--gutter) 30px;
  gap: 4px;
  background: var(--paper);
  border-top: 1px solid var(--hairline-soft);
}
.mobile-nav a {
  padding: 14px 4px;
  border-bottom: 1px solid var(--hairline-soft);
  font-size: 16px;
  font-weight: 500;
  color: var(--ink);
}
.mobile-nav a:last-child { border-bottom: none; margin-top: 14px; }
.mobile-nav.is-open { display: flex; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: clamp(40px, 8vw, 90px) 0 0;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  top: 0; right: 0;
  width: 58%;
  height: calc(100% - 80px);
  z-index: 0;
}
.hero__bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(1.05);
}
.hero__veil {
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg, var(--paper) 0%, transparent 30%, transparent 70%, rgba(42,22,12,.25) 100%),
    linear-gradient(180deg, transparent 60%, rgba(42,22,12,.4) 100%);
}

.hero__grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  gap: clamp(30px, 5vw, 80px);
  align-items: end;
  padding-bottom: clamp(60px, 9vw, 120px);
  min-height: clamp(540px, 70vh, 760px);
}

.hero__lockup {
  max-width: 640px;
  animation: rise .9s cubic-bezier(.2,.7,.3,1) both;
}
.hero__lockup .eyebrow {
  margin-bottom: 28px;
  line-height: 1.6;
}

.display {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(48px, 7.4vw, 110px);
  line-height: 0.92;
  letter-spacing: -0.035em;
  color: var(--ink);
  margin: 0 0 28px;
}
.display__line { display: block; }
.display__line--italic {
  font-style: italic;
  color: var(--brand-brown);
  font-weight: 300;
  padding-left: 0.4em;
}

.lede {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(18px, 1.7vw, 22px);
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 50ch;
  margin: 0 0 36px;
}

.hero__ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero__card {
  background: var(--paper);
  border: 1px solid var(--hairline);
  padding: 36px 32px 30px;
  position: relative;
  max-width: 360px;
  margin-left: auto;
  box-shadow: var(--shadow-warm);
  animation: rise 1.05s cubic-bezier(.2,.7,.3,1) .15s both;
}
.hero__card-mark {
  position: absolute;
  top: -22px; right: 22px;
  width: 80px; height: 80px;
  color: var(--brand-tan);
  pointer-events: none;
  user-select: none;
  transform: rotate(-8deg);
}
.hero__card-eyebrow {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brand-brown);
  margin: 0 0 8px;
}
.hero__card-time {
  font-family: var(--serif);
  font-size: 38px;
  font-weight: 400;
  letter-spacing: -0.02em;
  margin: 0 0 8px;
  color: var(--ink);
}
.hero__card-time .dash { color: var(--brand-tan); padding: 0 4px; }
.hero__card-note {
  font-size: 14px;
  color: var(--ink-muted);
  margin: 0 0 18px;
}
.hero__card-link {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ginger);
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
}
.hero__card-link:hover { color: var(--ginger-deep); }

/* Marquee strip - two duplicate tracks for seamless loop */
.hero__strip {
  position: relative;
  z-index: 2;
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  padding: 18px 0;
  overflow: hidden;
  background: rgba(237,226,204,.4);
  display: flex;
  white-space: nowrap;
}
.hero__strip-track {
  display: flex;
  align-items: center;
  gap: 36px;
  flex-shrink: 0;
  padding-right: 36px;
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(20px, 2.4vw, 32px);
  color: var(--brand-brown);
  animation: marquee 32s linear infinite;
}
.hero__strip-track span { flex-shrink: 0; }
.hero__strip-track .sep {
  color: var(--brand-tan);
  font-style: normal;
  font-size: 0.7em;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-100%); }
}

@keyframes rise {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ---------- Section heads ---------- */
.section-head {
  max-width: 720px;
  margin: 0 auto clamp(50px, 7vw, 90px);
  text-align: center;
}
.section-head .section-deck { margin-left: auto; margin-right: auto; }

/* ---------- Featured Dishes ---------- */
.featured {
  padding: clamp(80px, 12vw, 160px) 0;
  position: relative;
}

.dish {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: clamp(30px, 6vw, 90px);
  align-items: center;
  padding: clamp(40px, 7vw, 90px) 0;
  border-top: 1px solid var(--hairline-soft);
}
.dish:last-of-type { border-bottom: 1px solid var(--hairline-soft); }
.dish--reverse { grid-template-columns: 1fr 1.15fr; }
.dish--reverse .dish__media { order: 2; }
.dish--reverse .dish__body  { order: 1; }

.dish__media {
  position: relative;
  overflow: hidden;
  background: var(--paper-deep);
  aspect-ratio: 16 / 10;
}
.dish__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.2s cubic-bezier(.2,.7,.3,1);
}
.dish:hover .dish__media img { transform: scale(1.04); }

.dish__num {
  position: absolute;
  top: 16px; left: 16px;
  z-index: 2;
  font-family: var(--serif);
  font-style: italic;
  font-size: 14px;
  letter-spacing: 0.05em;
  color: var(--paper);
  background: rgba(42,22,12,.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  padding: 6px 14px;
  border-radius: 999px;
}

.dish__body { padding: 10px 0; }
.dish__tag {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brand-tan);
  margin: 0 0 16px;
}
.dish__title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(34px, 4.2vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 0 0 20px;
}
.dish__desc {
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink-muted);
  margin: 0 0 26px;
  max-width: 50ch;
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ginger);
  padding-bottom: 4px;
  border-bottom: 1px solid currentColor;
  transition: gap .3s ease, color .3s ease;
}
.link-arrow:hover {
  gap: 16px;
  color: var(--ginger-deep);
}

/* ---------- Story / About ---------- */
.story {
  padding: clamp(80px, 12vw, 150px) 0;
  position: relative;
  background:
    radial-gradient(circle at 90% 20%, rgba(200,152,99,.08), transparent 50%),
    var(--paper);
}
.story::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: var(--hairline);
}

.story__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr);
  gap: clamp(40px, 7vw, 110px);
  align-items: start;
}

.story__lede { position: sticky; top: 110px; }

.story__body p {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(17px, 1.4vw, 20px);
  line-height: 1.65;
  color: var(--ink-soft);
  margin: 0 0 22px;
  max-width: 60ch;
}

.story__opener::first-letter {
  font-family: var(--serif);
  font-size: 4.6em;
  font-weight: 400;
  font-style: italic;
  float: left;
  line-height: 0.85;
  margin: 0.05em 0.12em 0 0;
  color: var(--brand-brown);
}

.story__stats {
  list-style: none;
  margin: 48px 0 0;
  padding: 32px 0 0;
  border-top: 1px solid var(--hairline);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.story__stats li {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.story__stat-num {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(28px, 3vw, 38px);
  font-weight: 400;
  line-height: 1;
  color: var(--brand-brown);
  letter-spacing: -0.02em;
}
.story__stat-label {
  font-size: 13px;
  color: var(--ink-muted);
  line-height: 1.4;
}

/* ---------- Press / Local Eatz ---------- */
.press {
  position: relative;
  padding: clamp(80px, 12vw, 140px) 0;
  background: #1a0d07;
  color: var(--paper);
  overflow: hidden;
}
.press__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 75% 50%, rgba(196,71,29,.16), transparent 55%),
    radial-gradient(ellipse at 15% 80%, rgba(200,152,99,.08), transparent 60%);
  pointer-events: none;
}

.press__grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(30px, 6vw, 90px);
  align-items: center;
}

.press__copy { max-width: 540px; }

.press__brand {
  display: flex;
  align-items: baseline;
  gap: 14px;
  margin: 18px 0 28px;
  font-family: var(--serif);
  line-height: 1;
  letter-spacing: -0.02em;
}
.press__brand-1 {
  font-style: italic;
  font-weight: 300;
  font-size: clamp(36px, 4.5vw, 56px);
  color: var(--brand-tan-soft);
}
.press__brand-2 {
  font-weight: 600;
  font-size: clamp(40px, 5vw, 64px);
  color: var(--paper);
  border-bottom: 3px solid var(--ginger);
  padding-bottom: 4px;
}

.link-arrow--light { color: var(--brand-tan); border-color: rgba(200,152,99,.5); }
.link-arrow--light:hover { color: var(--paper); }

/* Phone frame */
.press__video {
  display: flex;
  justify-content: center;
  align-items: center;
}
.press__phone {
  position: relative;
  width: 100%;
  max-width: 320px;
  aspect-ratio: 9 / 19.5;
  background: #050302;
  border-radius: 38px;
  padding: 12px;
  box-shadow:
    0 0 0 2px rgba(200,152,99,.15),
    0 30px 80px -30px rgba(196,71,29,.4),
    0 50px 120px -40px rgba(0,0,0,.6);
}
.press__phone-notch {
  position: absolute;
  top: 22px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 22px;
  background: #000;
  border-radius: 14px;
  z-index: 3;
}
.press__phone-screen {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 28px;
  overflow: hidden;
  background: #000;
}
.press__phone-screen iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* ---------- Menu Section ---------- */
.menu {
  padding: clamp(80px, 12vw, 140px) 0;
  background: var(--paper-deep);
  position: relative;
}
.menu::before, .menu::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  height: 1px;
  background: var(--hairline);
}
.menu::before { top: 0; }
.menu::after { bottom: 0; }

.menu__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr);
  gap: clamp(40px, 7vw, 100px);
  align-items: start;
}
.menu__intro { position: sticky; top: 110px; }

.menu__cats {
  list-style: none;
  margin: 0; padding: 0;
  border-top: 1px solid var(--hairline);
}
.menu__cats li {
  border-bottom: 1px solid var(--hairline);
}
.menu__cats a {
  display: grid;
  grid-template-columns: 60px 1fr 30px;
  gap: 18px;
  align-items: baseline;
  padding: 22px 0;
  transition: padding-left .3s cubic-bezier(.2,.7,.3,1), color .3s ease;
  color: var(--ink);
}
.menu__cats a:hover {
  padding-left: 14px;
  color: var(--ginger);
}
.menu__cat-num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 18px;
  color: var(--brand-tan);
}
.menu__cat-name {
  font-family: var(--serif);
  font-size: clamp(22px, 2.3vw, 30px);
  font-weight: 400;
  letter-spacing: -0.01em;
  color: inherit;
}
.menu__cat-arrow {
  text-align: right;
  font-size: 18px;
  color: var(--brand-tan);
  transition: transform .3s ease;
}
.menu__cats a:hover .menu__cat-arrow { transform: translateX(6px); color: var(--ginger); }

/* ---------- App Section ---------- */
.app {
  padding: clamp(80px, 12vw, 150px) 0;
  background: var(--ink);
  color: var(--paper);
  position: relative;
  overflow: hidden;
}
.app::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(196,71,29,.18), transparent 70%);
  pointer-events: none;
}
.app::after {
  content: '';
  position: absolute;
  bottom: -150px; left: -150px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(200,152,99,.12), transparent 70%);
  pointer-events: none;
}

.app__grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr;
  max-width: 1080px;
  margin: 0 auto;
  text-align: left;
}
.app__copy { max-width: 100%; }

.app__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 44px;
  margin-bottom: 24px;
}

.app-card {
  background: rgba(246,239,226,.04);
  border: 1px solid rgba(246,239,226,.12);
  border-radius: 4px;
  padding: 28px 24px;
  transition: border-color .3s ease, transform .3s ease, background .3s ease;
}
.app-card:hover {
  border-color: rgba(200,152,99,.5);
  background: rgba(246,239,226,.06);
  transform: translateY(-4px);
}
.app-card__icon {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: rgba(200,152,99,.14);
  color: var(--brand-tan);
  display: grid;
  place-items: center;
  margin-bottom: 18px;
}
.app-card__label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(246,239,226,.5);
  margin: 0 0 6px;
}
.app-card__store {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
  margin: 0 0 12px;
  color: var(--paper);
  line-height: 1.2;
}
.app-card__status {
  font-size: 13px;
  color: rgba(246,239,226,.6);
  margin: 0;
}

.app-card--offer {
  background: linear-gradient(135deg, rgba(196,71,29,.18), rgba(196,71,29,.04));
  border-color: rgba(196,71,29,.45);
}
.app-card--offer .app-card__icon {
  background: rgba(196,71,29,.2);
  color: #f5b88a;
}
.app-card--offer .app-card__store { color: #f5b88a; }

.app__fineprint {
  font-size: 13px;
  color: rgba(246,239,226,.55);
  margin-top: 26px;
}

/* ---------- Visit Section ---------- */
.visit { padding: clamp(80px, 12vw, 150px) 0; }

.visit__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(30px, 5vw, 80px);
  align-items: stretch;
}

.visit__cta { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 44px; }

.hours {
  border-top: 1px solid var(--hairline);
  padding-top: 26px;
}
.hours__title {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
  margin: 0 0 6px;
  color: var(--ink);
}
.hours__note {
  font-size: 13px;
  color: var(--ink-muted);
  font-style: italic;
  margin: 0 0 18px;
}
.hours__list { margin: 0; }
.hours__row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 11px 0;
  border-bottom: 1px solid var(--hairline-soft);
  font-size: 15px;
}
.hours__row dt {
  font-family: var(--sans);
  font-weight: 500;
  color: var(--ink);
}
.hours__row dd {
  margin: 0;
  font-family: var(--serif);
  font-size: 16px;
  color: var(--ink-soft);
}
.hours__row--today {
  background: linear-gradient(90deg, rgba(196,71,29,.08), transparent 70%);
  padding-left: 14px;
  margin-left: -14px;
  border-radius: 4px 0 0 4px;
}
.hours__row--today dt { color: var(--ginger); }
.hours__row--today dt::before { content: '◆ '; color: var(--ginger); }
.hours__closed { color: var(--ink-muted) !important; font-style: italic; opacity: .7; }

.visit__map {
  background: var(--paper-deep);
  min-height: 480px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-warm);
}
.visit__map iframe {
  position: absolute;
  inset: 0;
  filter: saturate(.8) sepia(.15);
}

/* ---------- Closer ---------- */
.closer {
  padding: clamp(70px, 10vw, 120px) 0;
  background: var(--brand-brown);
  color: var(--paper);
  text-align: center;
}
.closer__inner { max-width: 720px; margin: 0 auto; }
.closer__line {
  font-family: var(--serif);
  font-size: clamp(20px, 2.2vw, 28px);
  color: var(--brand-tan-soft);
  margin: 0 0 18px;
  font-weight: 300;
}
.closer__title {
  font-family: var(--serif);
  font-size: clamp(48px, 7vw, 96px);
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 1;
  margin: 0 0 38px;
  color: var(--paper);
}
.closer .btn--solid {
  background: var(--paper);
  color: var(--ink);
}
.closer .btn--solid:hover {
  background: var(--ginger);
  color: var(--paper);
}

/* ---------- Footer ---------- */
.footer {
  background: var(--ink);
  color: var(--paper);
  padding: clamp(60px, 8vw, 90px) 0 30px;
}
.footer__inner {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 40px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(246,239,226,.12);
}
.footer__brand img {
  height: 90px;
  width: auto;
  margin-bottom: 16px;
  filter: brightness(1.1);
}
.footer__brand p {
  font-family: var(--serif);
  font-style: italic;
  color: var(--brand-tan-soft);
  font-size: 15px;
  margin: 0;
}
.footer__col h4 {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brand-tan);
  margin: 6px 0 18px;
}
.footer__col p {
  font-size: 14px;
  margin: 0 0 10px;
  color: rgba(246,239,226,.78);
  line-height: 1.6;
}
.footer__col a:hover { color: var(--brand-tan); }

.footer__base {
  display: flex;
  justify-content: space-between;
  padding-top: 24px;
  font-size: 12px;
  color: rgba(246,239,226,.5);
  letter-spacing: 0.02em;
}
.footer__credit a {
  color: var(--brand-tan-soft);
  border-bottom: 1px solid rgba(217,181,138,.3);
  transition: color .25s ease, border-color .25s ease;
  padding-bottom: 1px;
}
.footer__credit a:hover {
  color: var(--paper);
  border-bottom-color: var(--brand-tan);
}

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .nav > a:not(.btn), .nav > .btn--ghost { display: none; }
  .nav { gap: 14px; }
  .nav-toggle { display: flex; }

  .hero__bg { width: 100%; opacity: .35; }
  .hero__veil {
    background:
      linear-gradient(180deg, var(--paper) 0%, rgba(246,239,226,.4) 60%, var(--paper) 100%);
  }
  .hero__grid {
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: stretch;
    min-height: auto;
    padding-bottom: 60px;
  }
  .hero__card { margin-left: 0; max-width: 100%; }

  .dish, .dish--reverse {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .dish--reverse .dish__media { order: 1; }
  .dish--reverse .dish__body  { order: 2; }

  .menu__grid { grid-template-columns: 1fr; }
  .menu__intro { position: static; }

  .story__grid { grid-template-columns: 1fr; gap: 30px; }
  .story__lede { position: static; }
  .story__stats { grid-template-columns: 1fr; gap: 18px; }

  .press__grid { grid-template-columns: 1fr; gap: 50px; }
  .press__copy { max-width: 100%; }
  .press__phone { max-width: 280px; }

  .visit__grid { grid-template-columns: 1fr; }
  .visit__map { min-height: 360px; }

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

  .footer__inner { grid-template-columns: 1fr 1fr; gap: 30px; }
  .footer__brand { grid-column: 1 / -1; }
  .footer__base { flex-direction: column; gap: 6px; text-align: center; }
}

@media (max-width: 560px) {
  .topbar__inner { gap: 8px; font-size: 11.5px; }
  .topbar__divider { display: none; }
  .brand img { height: 50px; }
  .is-scrolled .brand img { height: 44px; }
  .menu__cats a { grid-template-columns: 38px 1fr 22px; gap: 12px; padding: 18px 0; }
  .footer__inner { grid-template-columns: 1fr; }
  .hero__card { padding: 28px 24px 24px; }
  .hero__card-mark { width: 64px; height: 64px; top: -16px; right: 18px; }
  .hero__card-time { font-size: 32px; }
  .display { font-size: clamp(44px, 11vw, 64px); }
}

/* ---------- Reveal on scroll ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .9s cubic-bezier(.2,.7,.3,1), transform .9s cubic-bezier(.2,.7,.3,1);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* ---------- Reduced motion ----------
   Respect the user preference for most animations, but keep the marquee
   running at a much slower pace. Many Android devices report reduced-motion
   by default, and a frozen marquee looks broken. A slow gentle scroll reads
   as intentional and isn't a vestibular trigger. */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
  }
  /* Re-enable marquee specifically, slowed way down */
  .hero__strip-track {
    animation: marquee 90s linear infinite !important;
  }
}
