/* ═══════════════════════════════════════════════════════════════════════════
   Loo's Hainanese Curry Rice — Shared Stylesheet
   Tokens → Reset → Typography → Nav → Sections → Footer → Animations → Media queries
   ═══════════════════════════════════════════════════════════════════════════ */

/* ── TOKENS ─────────────────────────────────────────────────────────────── */
:root {
  --gold:        #F5C200;
  --gold-dim:    rgba(245, 194, 0, 0.15);
  --navy:        #1B3A6B;
  --navy-deep:   #0D2247;
  --white:       #FFFFFF;
  --off-white:   #F7F8FA;
  --ink:         #0F2040;
  --muted:       #5A6A80;
  --border:      rgba(27, 58, 107, 0.1);
  --border-mid:  rgba(27, 58, 107, 0.2);

  --font-display: 'Playfair Display', Georgia, serif;
  --font-serif:   'Lora', Georgia, serif;
  --font-sans:    'DM Sans', system-ui, sans-serif;

  --nav-h:     68px;
  --max-w:     1160px;
  --pad-x:     clamp(1.5rem, 5vw, 5rem);
  --section-y: clamp(5rem, 10vw, 9rem);

  --ease-out:  cubic-bezier(0.16, 1, 0.3, 1);
}

/* ── RESET ───────────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; scroll-padding-top: calc(var(--nav-h) + 1rem); }
body {
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font: inherit; border: none; background: none; }

/* ── TYPOGRAPHY DEFAULTS ─────────────────────────────────────────────────── */
h1, h2, h3, h4 { text-wrap: balance; }
p, li, blockquote { text-wrap: pretty; }

/* ── UTILITIES ───────────────────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--pad-x);
}

.eyebrow {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.85rem;
}
.eyebrow--gold { color: var(--gold); }
.eyebrow--white { color: rgba(255,255,255,0.55); }

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.08;
  color: var(--ink);
}
.section-title--white { color: var(--white); }

.divider {
  width: 2.5rem;
  height: 2px;
  background: var(--gold);
  margin: 1.25rem 0;
}

/* ── ACCESSIBILITY ───────────────────────────────────────────────────────── */

/* Skip navigation — visually hidden until focused */
.skip-nav {
  position: absolute;
  top: -100%;
  left: 1rem;
  z-index: 9999;
  padding: 0.6rem 1.2rem;
  background: var(--gold);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  border-radius: 2px;
  text-decoration: none;
  transition: top 0.15s;
}
.skip-nav:focus { top: 1rem; }

/* Keyboard focus ring — only show for keyboard, not mouse */
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 2px;
}
/* Remove the default focus ring which shows on mouse clicks */
:focus:not(:focus-visible) { outline: none; }

/* ── NAVIGATION ──────────────────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  padding-inline: var(--pad-x);
  justify-content: space-between;
  transition: background 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out);
}

/* Transparent over hero, solid once scrolled */
.nav--transparent {
  background: transparent;
}
.nav--solid {
  background: var(--white);
  box-shadow: 0 1px 0 var(--border);
}

.nav__logo {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
}
.nav__logo img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
}

/* Nav CTA button */
.nav__cta {
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.5rem 1rem;
  border: 1px solid currentColor;
  transition: color 0.2s, border-color 0.2s, background 0.2s;
  white-space: nowrap;
}
.nav--transparent .nav__cta {
  color: rgba(255,255,255,0.85);
}
.nav--transparent .nav__cta:hover {
  color: var(--white);
  border-color: var(--white);
}
.nav--solid .nav__cta {
  color: var(--navy);
}
.nav--solid .nav__cta:hover {
  color: var(--white);
  background: var(--navy);
  border-color: var(--navy);
}

.nav__links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}
.nav__links a {
  font-family: var(--font-sans);
  font-size: 0.73rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--navy);
  transition: color 0.2s;
  position: relative;
}
.nav__links a::after {
  content: '';
  position: absolute;
  left: 0; bottom: -3px;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.25s var(--ease-out);
}
.nav__links a:hover { color: var(--ink); }
.nav__links a:hover::after { width: 100%; }
.nav__links a.active { color: var(--ink); }
.nav__links a.active::after { width: 100%; }

.nav--transparent .nav__links a { color: rgba(255,255,255,0.8); }
.nav--transparent .nav__links a:hover { color: var(--white); }

/* Solid state: explicit high-specificity rules so nav--solid always wins over nav--transparent */
.nav--solid .nav__links a        { color: var(--navy); }
.nav--solid .nav__links a:hover  { color: var(--ink); }

/* Hamburger (mobile) */
.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  z-index: 210;
}
.nav__burger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--navy);
  transition: transform 0.3s var(--ease-out), opacity 0.3s;
}
.nav--transparent .nav__burger span { background: var(--white); }
.nav__burger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); background: var(--navy); }
.nav__burger.open span:nth-child(2) { opacity: 0; }
.nav__burger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); background: var(--navy); }

/* Mobile overlay menu */
.nav__overlay {
  position: fixed;
  inset: 0;
  background: var(--white);
  z-index: 190;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s var(--ease-out);
}
.nav__overlay.open {
  opacity: 1;
  pointer-events: all;
}
.nav__overlay a {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 6vw, 2.5rem);
  font-weight: 700;
  color: var(--ink);
  letter-spacing: 0.02em;
  transition: color 0.2s;
}
.nav__overlay a:hover { color: var(--gold); }

/* ── HERO ────────────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  padding-top: calc(var(--nav-h) + 2rem);
  padding-bottom: clamp(3.5rem, 7vw, 6rem);
  overflow: hidden;
  background: var(--navy-deep);
}

.hero__bg {
  position: absolute;
  inset: 0;
  background: var(--navy-deep);
}
.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.45;
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.hero__eyebrow {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6.5vw, 5.5rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.0;
  letter-spacing: -0.01em;
  margin-bottom: 1.75rem;
  text-wrap: balance;
}
.hero__title em {
  font-style: italic;
  color: var(--gold);
}

.hero__sub {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  max-width: 440px;
}

.hero__cta {
  display: inline-block;
  margin-top: 2rem;
  padding: 0.75rem 1.75rem;
  border: 1px solid rgba(245, 194, 0, 0.6);
  color: var(--gold);
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
  transition: background 0.25s, border-color 0.25s, color 0.25s;
}
.hero__cta:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--ink);
}

.hero__scroll {
  position: absolute;
  bottom: 2.5rem;
  right: var(--pad-x);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
}
.hero__scroll::before {
  content: '';
  display: block;
  width: 1px;
  height: 3rem;
  background: rgba(255,255,255,0.2);
  animation: scroll-line 2s ease-in-out infinite;
}
@keyframes scroll-line {
  0%, 100% { transform: scaleY(1); opacity: 0.4; }
  50%       { transform: scaleY(0.4); opacity: 0.15; }
}

/* ── SECTION SHARED ──────────────────────────────────────────────────────── */
.section {
  padding-block: var(--section-y);
}
.section--off-white { background: var(--off-white); }
.section--navy { background: var(--navy); }
.section--navy-deep { background: var(--navy-deep); }

/* ── STORY SECTION ───────────────────────────────────────────────────────── */
.story__intro {
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.story__body {
  max-width: 620px;
  margin-bottom: clamp(4rem, 8vw, 7rem);
}

.story__lead {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 400;
  font-style: italic;
  color: var(--ink);
  line-height: 1.45;
}

.story__body p {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 1.25rem;
}
.story__body p:last-child { margin-bottom: 0; }

/* Three-beat timeline */
.story__beats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border-top: 1px solid var(--border);
}

.story__beat {
  padding: 2.5rem 2.5rem 2.5rem 0;
  border-right: 1px solid var(--border);
}
.story__beat:last-child { border-right: none; padding-left: 2.5rem; }
.story__beat:not(:first-child) { padding-left: 2.5rem; }

.story__beat-year {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 1rem;
  opacity: 0.12;
}

.story__beat-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 0.75rem;
}

.story__beat-text {
  font-family: var(--font-sans);
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.75;
}

/* ── DISHES SECTION ──────────────────────────────────────────────────────── */
.dishes__header {
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.dishes__note {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 0.88rem;
  color: var(--muted);
  max-width: none;
  text-align: left;
  line-height: 1.6;
  margin-top: 0.75rem;
}

.dishes__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(1rem, 2.5vw, 2rem);
}

.dish-card__img {
  width: 100%;
  aspect-ratio: 4/3;
  background: transparent;
  margin-bottom: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.dish-card__img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.6s var(--ease-out);
}
.dish-card:hover .dish-card__img img { transform: scale(1.06); }

/* Placeholder state — shown when no real image is present */
.dish-card__img--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
}
.dish-card__img--placeholder::after {
  content: 'Photo coming soon';
  font-family: var(--font-sans);
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  opacity: 0.5;
}

.dish-card__name {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 0.35rem;
}

.dish-card__desc {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.6;
}

/* ── FIND US SECTION ─────────────────────────────────────────────────────── */
.find-us {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.find-us__panel {
  padding: clamp(3rem, 6vw, 5.5rem) var(--pad-x);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.find-us__panel--dark {
  background: var(--navy);
}

.hours-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 2rem;
  margin-bottom: 2.5rem;
}
.hours-table tr { border-bottom: 1px solid rgba(255,255,255,0.08); }
.hours-table tr:last-child { border-bottom: none; }
.hours-table td {
  font-family: var(--font-sans);
  font-size: 0.875rem;
  color: rgba(255,255,255,0.65);
  padding: 0.8rem 0;
}
.hours-table td:first-child {
  color: rgba(255,255,255,0.9);
  font-weight: 500;
  width: 55%;
}
.hours-table .closed { color: rgba(255,255,255,0.25); font-style: italic; }

.find-us__address {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.85;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 2rem;
}
.find-us__address strong { color: rgba(255,255,255,0.9); font-weight: 500; }

.find-us__map {
  background: var(--off-white);
  min-height: 480px;
  position: relative;
}
.find-us__map iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
  filter: sepia(15%) contrast(95%);
}

/* ── AS SEEN ON ─────────────────────────────────────────────────────────── */
.as-seen-on {
  padding: clamp(3rem, 6vw, 4.5rem) 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--white);
}
.as-seen-on__label {
  text-align: center;
  margin-bottom: 2.5rem;
  font-size: 1.02rem;
}
.as-seen-on__logos {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: clamp(2rem, 5vw, 5rem);
}
.as-seen-on__link {
  display: block;
  opacity: 0.4;
  transition: opacity 0.25s;
}
.as-seen-on__link:hover { opacity: 0.85; }
.as-seen-on__logo {
  height: 81px;
  width: auto;
  display: block;
  filter: grayscale(1);
  mix-blend-mode: multiply;
}

/* ── FOOTER ──────────────────────────────────────────────────────────────── */
.footer {
  background: var(--ink);
  padding: clamp(3rem, 6vw, 5rem) var(--pad-x) clamp(1.5rem, 3vw, 2.5rem);
}

.footer__top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  padding-bottom: clamp(2rem, 4vw, 3.5rem);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
}

.footer__brand-name {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 1rem;
}

.footer__tagline {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.4);
  line-height: 1.75;
  max-width: 280px;
  margin-bottom: 1.75rem;
}

.footer__col-title {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.1rem;
}

.footer__links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.footer__links a {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  transition: color 0.2s;
}
.footer__links a:hover { color: var(--white); }

.social-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}
.social-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  color: rgba(255,255,255,0.45);
  border: 1px solid rgba(255,255,255,0.12);
  transition: color 0.2s, border-color 0.2s;
}
.social-btn:hover { color: var(--white); border-color: rgba(255,255,255,0.35); }
.social-btn svg { width: 15px; height: 15px; fill: currentColor; flex-shrink: 0; }
.social-btn__lemon8 {
  height: 13px;
  width: auto;
  filter: invert(1) opacity(0.45);
  mix-blend-mode: screen;
  transition: filter 0.2s;
}
.social-btn:hover .social-btn__lemon8 { filter: invert(1) opacity(1); }

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer__copy {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  color: rgba(255,255,255,0.2);
}

/* ── FADE-IN ANIMATION ───────────────────────────────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.75s var(--ease-out), transform 0.75s var(--ease-out);
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-up--delay-1 { transition-delay: 0.1s; }
.fade-up--delay-2 { transition-delay: 0.2s; }
.fade-up--delay-3 { transition-delay: 0.3s; }
.fade-up--delay-4 { transition-delay: 0.4s; }

/* ── MEDIA PAGE ──────────────────────────────────────────────────────────── */

/* Year timeline — desktop sidebar */
.timeline-layout {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 0 clamp(2rem, 4vw, 4rem);
  align-items: start;
  position: relative;
}

.timeline-rail {
  position: sticky;
  top: calc(var(--nav-h) + 3rem);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 0.5rem;
}

.timeline-rail__line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  background: var(--border-mid);
}

.timeline-rail__node {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  padding: 1.5rem 0;
  transition: opacity 0.3s var(--ease-out);
}

.timeline-rail__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 1.5px solid var(--border-mid);
  background: var(--white);
  transition: background 0.3s var(--ease-out), border-color 0.3s var(--ease-out), width 0.3s var(--ease-out), height 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
}

.timeline-rail__year {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  color: var(--muted);
  writing-mode: vertical-rl;
  text-orientation: mixed;
  transform: rotate(180deg);
  transition: color 0.3s;
}

.timeline-rail__node.active .timeline-rail__dot {
  background: var(--gold);
  border-color: var(--gold);
  width: 12px;
  height: 12px;
  box-shadow: 0 0 0 4px var(--gold-dim);
}
.timeline-rail__node.active .timeline-rail__year { color: var(--navy); font-weight: 700; }

/* Mobile year strip */
.timeline-strip {
  display: none;
  position: sticky;
  top: var(--nav-h);
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 0.85rem var(--pad-x);
  gap: 0.75rem;
}

.timeline-strip__chip {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--muted);
  border: 1px solid var(--border-mid);
  padding: 6px 14px;
  border-radius: 100px;
  transition: all 0.25s;
  background: none;
}
.timeline-strip__chip.active {
  color: var(--ink);
  background: var(--gold);
  border-color: var(--gold);
}

/* Year section */
.year-section { padding-top: clamp(3rem, 6vw, 5rem); }
.year-section + .year-section { border-top: 1px solid var(--border); margin-top: clamp(3rem, 6vw, 5rem); }

.year-section__heading {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 700;
  color: var(--navy);
  opacity: 0.08;
  line-height: 1;
  margin-bottom: 2.5rem;
  user-select: none;
}

/* Coverage grid */
.coverage-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(1rem, 2.5vw, 2rem);
}

/* Social embed card */
.embed-card {
  background: var(--white);
  border: 1px solid var(--border);
  overflow: hidden;
}
.embed-card .instagram-media,
.embed-card blockquote { margin: 0 !important; }

/* Press card (publications + Lemon8) */
.press-card {
  background: var(--off-white);
  border: 1px solid var(--border);
  padding: clamp(1.25rem, 2.5vw, 2rem);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.press-card__outlet {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}
.press-card__quote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(0.9rem, 1.5vw, 1.05rem);
  color: var(--ink);
  line-height: 1.65;
  flex: 1;
}
.press-card__quote::before { content: '\201C'; }
.press-card__quote::after  { content: '\201D'; }
.press-card__link {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s;
  align-self: flex-start;
}
.press-card__link:hover { color: var(--navy); }

/* ── INNER PAGE INTRO (shared: media, collaborations) ───────────────────── */
.page-intro {
  padding-bottom: clamp(3rem, 6vw, 5rem);
  border-bottom: 1px solid var(--border);
  margin-bottom: clamp(3rem, 6vw, 5rem);
}
.page-intro__title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 700;
  color: var(--ink);
  line-height: 1.05;
  margin-top: 1rem;
  margin-bottom: 1.25rem;
}
.page-intro__sub {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(0.95rem, 1.5vw, 1.05rem);
  color: var(--muted);
  max-width: 560px;
  line-height: 1.75;
}
.page-intro__sub + .page-intro__sub { margin-top: 0.85rem; }

/* ── COLLABORATIONS PAGE ─────────────────────────────────────────────────── */
.collab-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 7rem);
  align-items: center;
}
.collab-intro__label {
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}
.collab-intro__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 1.5rem;
}
.collab-intro__body {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.85;
}

/* Featured collaboration */
.collab-featured {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  min-height: 560px;
}
.collab-featured__img {
  background: var(--off-white);
  position: relative;
  overflow: hidden;
}
.collab-featured__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}
.collab-featured__img--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
}
.collab-featured__img--placeholder::after {
  content: 'Image coming soon';
  font-family: var(--font-sans);
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  opacity: 0.5;
}
.collab-featured__content {
  background: var(--white);
  padding: clamp(2.5rem, 5vw, 5rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  border: 1px solid var(--border);
  border-left: none;
}
.collab-featured__tag {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  background: var(--gold-dim);
  padding: 5px 12px;
  margin-bottom: 1.5rem;
  align-self: flex-start;
}
.collab-featured__title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.5vw, 2.1rem);
  font-weight: 700;
  color: var(--ink);
  line-height: 1.15;
  margin-bottom: 1.25rem;
}
.collab-featured__body {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 2rem;
}
.collab-featured__meta {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  color: var(--muted);
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.collab-featured__meta span { display: flex; align-items: center; gap: 0.5rem; }

.collab-featured__press {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-top: 1.75rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}
.collab-featured__press-link {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s;
}
.collab-featured__press-link:hover { color: var(--navy); }

/* Collab grid (past/upcoming) */
.collab-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1rem, 2vw, 1.5rem);
}
.collab-card {
  border: 1px solid var(--border);
  padding: clamp(1.25rem, 2.5vw, 2rem);
}
.collab-card__status {
  font-family: var(--font-sans);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 0.85rem;
}
.status--upcoming { color: var(--gold); }
.status--past     { color: var(--muted); }

.collab-card__title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 0.5rem;
}
.collab-card__desc {
  font-family: var(--font-sans);
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.65;
}

/* Inquiry form */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
.form-field { display: flex; flex-direction: column; gap: 0.5rem; }
.form-field--full { grid-column: 1 / -1; }

.form-field label {
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}
.form-field input,
.form-field textarea,
.form-field select {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--border-mid);
  padding: 0.85rem 1rem;
  transition: border-color 0.2s;
  width: 100%;
}
.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus { border-color: var(--gold); outline: none; }
.form-field input:focus-visible,
.form-field textarea:focus-visible,
.form-field select:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }
.form-field textarea { resize: vertical; min-height: 120px; }

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--gold);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 1rem 2rem;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}
.btn-primary:hover { background: #e0b000; }
.btn-primary:active { transform: translateY(1px); }

/* ── TESTIMONIALS ────────────────────────────────────────────────────────── */
.testimonials__header {
  margin-bottom: 3rem;
}

.testimonials__intro {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(0.95rem, 1.5vw, 1.05rem);
  color: var(--muted);
  max-width: 520px;
  line-height: 1.7;
  margin-top: 0.25rem;
}

.testimonials__sub-label {
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

/* Critics grid — auto-fill, up to 3 per row */
.critics__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 320px), 1fr));
  gap: 1.5rem;
  margin-bottom: 4rem;
}

.critic-card {
  margin: 0;
  padding: 2rem 2rem 1.75rem;
  background: var(--off-white);
  border-top: 2px solid var(--gold);
  position: relative;
  display: flex;
  flex-direction: column;
}

.critic-card::before {
  content: '\201C';
  font-family: var(--font-display);
  font-size: 4.5rem;
  line-height: 1;
  color: var(--gold);
  opacity: 0.22;
  position: absolute;
  top: 0.75rem;
  left: 1.5rem;
  pointer-events: none;
}

.critic-card__quote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 0.97rem;
  line-height: 1.7;
  color: var(--ink);
  flex: 1;
  margin: 0.5rem 0 1.5rem;
  position: relative;
}

.critic-card__footer {
  margin-top: auto;
}

.critic-card__pub {
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--navy);
}

/* Divider between critics and Google reviews */
.testimonials__sep {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}
.testimonials__sep::before,
.testimonials__sep::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}
.testimonials__sep-inner {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
}
.testimonials__stars-icon {
  color: var(--gold);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
}

/* Google Reviews grid — 3 col desktop */
/* ── REVIEWS CAROUSEL ───────────────────────────────────────────────────── */
.reviews__carousel {
  overflow: hidden;
  /* Fade out at both edges */
  -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.reviews__track {
  display: flex;
  gap: 1.5rem;
  width: max-content;
  animation: reviews-scroll 45s linear infinite;
}

/* Pause on hover */
.reviews__carousel:hover .reviews__track {
  animation-play-state: paused;
}

@keyframes reviews-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.review-card {
  flex-shrink: 0;
  width: 340px;
  padding: 1.75rem 1.5rem;
  background: var(--off-white);
  display: flex;
  flex-direction: column;
  border-bottom: 2px solid transparent;
  transition: border-color 0.2s;
}
.review-card:hover { border-bottom-color: var(--gold); }

.review-card__stars {
  color: var(--gold);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  margin-bottom: 1rem;
}

.review-card__quote {
  font-family: var(--font-serif);
  font-size: 0.93rem;
  line-height: 1.7;
  color: var(--ink);
  flex: 1;
  margin: 0 0 1.5rem;
}

.review-card__footer {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  margin-top: auto;
}

.review-card__name {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--navy);
}

.review-card__source {
  font-family: var(--font-sans);
  font-size: 0.68rem;
  color: var(--muted);
}

/* ── RESPONSIVE ──────────────────────────────────────────────────────────── */
@media (max-width: 900px) {
  .nav__links { display: none; }
  .nav__cta   { display: none; }
  .nav__burger { display: flex; }

  /* Carousel: tighter mask, narrower cards */
  .reviews__carousel {
    -webkit-mask-image: linear-gradient(to right, transparent, black 4%, black 96%, transparent);
    mask-image: linear-gradient(to right, transparent, black 4%, black 96%, transparent);
  }
  .review-card { width: min(300px, 78vw); }

  .story__beats { grid-template-columns: 1fr; }
  .story__beat { border-right: none; border-bottom: 1px solid var(--border); padding: 2rem 0 !important; }
  .story__beat:last-child { border-bottom: none; }

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

  .find-us { grid-template-columns: 1fr; }
  .find-us__map { min-height: 320px; }

  .footer__top { grid-template-columns: 1fr; gap: 2.5rem; }

  /* Media page */
  .timeline-layout { grid-template-columns: 1fr; }
  .timeline-rail { display: none; }
  .timeline-strip { display: flex; }

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

  /* Collabs page */
  .collab-intro { grid-template-columns: 1fr; }
  .collab-featured { grid-template-columns: 1fr; min-height: auto; }
  .collab-featured__img { min-height: 280px; position: relative; }
  .collab-featured__content { border-left: 1px solid var(--border); border-top: none; }
  .collab-grid { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .dishes__grid { grid-template-columns: 1fr 1fr; gap: 1rem; }
  .hero__title { font-size: clamp(2.4rem, 9vw, 3.5rem); }

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

/* ── REDUCED MOTION ──────────────────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  /* Carousel: stop scrolling entirely rather than jump */
  .reviews__track { animation: none; }
  /* Fade-ups: show immediately */
  .fade-up { opacity: 1; transform: none; }
}
