/* ================================================================
   LUCCI'S BLUE ZONE - The Greatest Website of All Time
   Navy · Gold · Sky Blue · White
   Clash Display + Satoshi
   ================================================================ */

/* ── Reset & Base ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }

:root {
  --navy:       #0B1A2E;
  --navy-mid:   #122040;
  --navy-light: #1E3558;
  --sky:        #4BB9EA;
  --sky-dark:   #1E8AB9;
  --gold:       #F5C842;
  --gold-hover: #E0B030;
  --white:      #FFFFFF;
  --cream:      #F0F6FA;
  --muted:      rgba(255,255,255,0.55);
  --faint:      rgba(255,255,255,0.25);

  --font-display: 'Clash Display', 'Inter', sans-serif;
  --font-body:    'Satoshi', 'Inter', sans-serif;

  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in: cubic-bezier(0.4, 0, 1, 1);

  --radius: 16px;
  --radius-sm: 10px;
  --radius-pill: 9999px;

  --shadow-gold: 0 8px 40px rgba(245,200,66,0.18);
  --shadow-deep: 0 20px 60px rgba(0,0,0,0.5);
}

body {
  font-family: var(--font-body);
  background: var(--navy);
  color: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { display: block; width: 100%; height: 100%; object-fit: cover; }
ul { list-style: none; }
a { text-decoration: none; color: inherit; }

/* ── Scroll Reveal ─────────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ── Typography Utilities ──────────────────────────────────────── */
.eyebrow {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sky);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 0.75rem;
}
.eyebrow::before {
  content: '';
  display: block;
  width: 28px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  flex-shrink: 0;
}
.eyebrow.gold { color: var(--gold); }

.heading-xl {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  font-weight: 700;
  line-height: 1.0;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--navy);
}
.heading-xl em { font-style: normal; color: var(--sky); display: block; }
.heading-xl.light { color: var(--white); }
.heading-xl.light em { color: var(--gold); }

.body-text {
  font-size: 1.05rem;
  line-height: 1.8;
  color: rgba(11,26,46,1);
}
.body-text.muted { color: var(--muted); }
.body-text.max-ch { max-width: 58ch; }

.gold-text { color: var(--gold) !important; }
.gold-star { color: var(--gold); }

/* ── Buttons ───────────────────────────────────────────────────── */
.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold);
  color: var(--navy);
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  transition: background 0.2s var(--ease), transform 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.btn-gold:hover {
  background: var(--gold-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: var(--radius-pill);
  border: 1.5px solid rgba(255,255,255,0.35);
  cursor: pointer;
  transition: all 0.2s var(--ease);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.7);
  transform: translateY(-2px);
}

.btn-gold-sm {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--gold);
  color: var(--navy);
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 10px 22px;
  border-radius: var(--radius-pill);
  transition: background 0.2s, transform 0.2s;
  margin-top: 0.75rem;
}
.btn-gold-sm:hover { background: var(--gold-hover); transform: translateY(-1px); }

/* ================================================================
   NAVIGATION
   ================================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 0.75rem 2.5rem;
  background: transparent;
  transition: background 0.3s var(--ease), backdrop-filter 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.nav--scrolled {
  background: rgba(11, 26, 46, 0.92);
  backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(255,255,255,0.06);
}

.nav__logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  margin: 0 2rem;
}
.nav__wordmark {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  line-height: 1.2;
}
.nav__wordmark em { font-style: normal; color: var(--gold); display: block; }

.nav__links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav__links--left {
  justify-content: flex-start;
  margin-right: auto;
}
.nav__links--right {
  justify-content: flex-end;
  margin-left: auto;
}
.nav__links a {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  transition: color 0.2s;
}
.nav__links a:hover { color: var(--white); }
.nav__cta {
  background: var(--gold);
  color: var(--navy) !important;
  font-weight: 800 !important;
  padding: 9px 22px;
  border-radius: var(--radius-pill);
  transition: background 0.2s var(--ease), transform 0.2s var(--ease) !important;
}
.nav__cta:hover { background: var(--gold-hover) !important; transform: translateY(-1px) !important; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 6px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s var(--ease);
}

/* Mobile nav */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--navy);
  z-index: 199;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-family: var(--font-display);
  font-size: clamp(2rem, 6vw, 3rem);
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  transition: color 0.2s;
}
.mobile-nav a:hover { color: var(--gold); }
.mobile-nav__cta { color: var(--gold) !important; }
.mobile-nav__close {
  position: absolute;
  top: 1.5rem; right: 2rem;
  background: none;
  border: none;
  color: var(--white);
  font-size: 2rem;
  cursor: pointer;
  transition: color 0.2s;
}
.mobile-nav__close:hover { color: var(--gold); }

@media (max-width: 768px) {
  .nav__links { display: none; }
  .hamburger { display: flex; }
}

/* ================================================================
   HERO - Fullscreen cinematic
   ================================================================ */
.hero {
  position: relative;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  background: var(--navy);
}

.hero__photo {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  transform: scale(1.04);
  animation: heroZoom 12s ease-out both;
}
@keyframes heroZoom {
  from { transform: scale(1.1); }
  to   { transform: scale(1.02); }
}
.hero__photo-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(11,26,46,0.55) 0%, rgba(11,26,46,0.2) 40%, rgba(11,26,46,0.72) 100%),
    linear-gradient(to right, rgba(11,26,46,0.7) 0%, transparent 60%);
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 140px 2.5rem 3rem;
  width: 100%;
}

.hero__eyebrow {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 10px;
}
.hero__eyebrow::before {
  content: '';
  display: block;
  width: 32px;
  height: 1.5px;
  background: var(--gold);
  border-radius: 2px;
}

.hero__title {
  line-height: 0.92;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.hero__title-luccis {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(4.5rem, 12vw, 10rem);
  font-weight: 700;
  color: var(--gold);
  text-shadow: 0 4px 40px rgba(245,200,66,0.3);
}
.hero__title-bz {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2rem, 5.5vw, 4.8rem);
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.12em;
}

.hero__tagline {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  text-align: center;
  white-space: nowrap;
  padding: 0.75rem 2.5rem 1.5rem;
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero__stats {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2.5rem 3.5rem;
  display: flex;
  align-items: center;
  gap: 2rem;
}
.hero__stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.hero__stat-n {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.hero__stat-l {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  line-height: 1.4;
}
.hero__stat-divider {
  width: 1px;
  height: 48px;
  background: rgba(255,255,255,0.15);
  flex-shrink: 0;
}

.hero__scroll {
  position: absolute;
  bottom: 5.5rem;
  right: 2.5rem;
  z-index: 1;
  width: 1.5px;
  height: 60px;
  background: linear-gradient(to bottom, transparent, var(--gold));
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0%, 100% { opacity: 0.4; transform: scaleY(0.8); }
  50%       { opacity: 1;   transform: scaleY(1); }
}

@media (max-width: 768px) {
  .hero__content { padding: 120px 1.5rem 2rem; }
  .hero__stats { padding: 0 1.5rem 2.5rem; gap: 1.25rem; }
  .hero__stat-divider { height: 36px; }
  .hero__scroll { display: none; }
  .hero__tagline { font-size: 0.58rem; letter-spacing: 0.08em; white-space: nowrap; }
}

/* ================================================================
   PHILOSOPHY STRIP
   ================================================================ */
.philosophy-strip {
  background: var(--gold);
  padding: 1rem 2rem;
  overflow: hidden;
}
.philosophy-strip__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  font-family: var(--font-display);
  font-size: clamp(0.9rem, 2vw, 1.15rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--navy);
  text-align: center;
}
.philosophy-strip__inner span {
  font-size: 1.25rem;
  flex-shrink: 0;
}

/* ================================================================
   ABOUT - Sky blue, family photos
   ================================================================ */
.about {
  background: var(--sky);
  padding: clamp(5rem, 10vw, 9rem) 0;
  position: relative;
  overflow: hidden;
}
.about::after {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  pointer-events: none;
}

.about__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2.5rem;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: center;
}

/* Photo mosaic */
.about__mosaic {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 12px;
  position: relative;
}
.mosaic-a {
  grid-column: 1 / -1;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 16/9;
  box-shadow: var(--shadow-deep);
  position: relative;
}
.mosaic-b, .mosaic-c {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: var(--shadow-deep);
}
.mosaic-badge {
  position: absolute;
  bottom: 1.25rem;
  left: 1.25rem;
  background: rgba(11,26,46,0.9);
  backdrop-filter: blur(12px);
  border-radius: var(--radius-sm);
  padding: 0.75rem 1rem;
  border: 1px solid rgba(245,200,66,0.3);
}
.mosaic-badge__num {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.mosaic-badge__label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-top: 2px;
  line-height: 1.4;
}

/* About text */
.about__text {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.about__text .eyebrow { color: rgba(255,255,255,0.7); }
.about__text .eyebrow::before { background: rgba(255,255,255,0.5); }
.about__text .heading-xl { color: var(--white); }
.about__text .heading-xl em { color: var(--gold); }
.about__text .body-text { color: rgba(255,255,255,0.92); }

.about__pillars {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: 0.25rem;
}
.pillar {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(11,26,46,0.1);
  border-radius: var(--radius-pill);
  padding: 6px 14px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--navy);
  text-transform: uppercase;
}

@media (max-width: 900px) {
  .about__inner { grid-template-columns: 1fr; }
}

/* ================================================================
   WORLD MAP
   ================================================================ */
.worldmap {
  background: var(--navy);
  padding: clamp(5rem, 10vw, 9rem) 0;
  position: relative;
  overflow: hidden;
}
.worldmap::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 80% 50%, rgba(75,185,234,0.07) 0%, transparent 65%),
    radial-gradient(ellipse 50% 70% at 10% 80%, rgba(245,200,66,0.05) 0%, transparent 60%);
  pointer-events: none;
}

.worldmap__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2.5rem;
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: center;
}

.worldmap__text {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.worldmap__text .body-text { color: var(--muted); }

.worldmap__regions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 0.5rem;
}
.region-tag {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(75,185,234,0.25);
  color: rgba(255,255,255,0.6);
  background: rgba(75,185,234,0.06);
}
.region-tag.home {
  border-color: rgba(245,200,66,0.4);
  color: var(--gold);
  background: rgba(245,200,66,0.06);
}

.worldmap__image {
  position: relative;
}
.worldmap__truck {
  border-radius: var(--radius);
  box-shadow: var(--shadow-deep);
  aspect-ratio: unset !important;
  object-fit: contain !important;
  height: auto;
  width: 100%;
}
.worldmap__map-container {
  margin-top: 1rem;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(75,185,234,0.15);
  box-shadow: var(--shadow-deep);
}
.worldmap__map-container img {
  height: auto;
  aspect-ratio: auto;
  object-fit: contain;
}

@media (max-width: 900px) {
  .worldmap__inner { grid-template-columns: 1fr; }
}

/* ================================================================
   MENU - Restaurant list style
   ================================================================ */
.menu-section {
  background: var(--navy);
  padding: clamp(2rem, 4vw, 3.5rem) 0 clamp(2rem, 4vw, 3.5rem);
  position: relative;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.menu-section__inner {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2.5rem;
}
.menu-header {
  text-align: center;
  margin-bottom: 4rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}
.menu-header .eyebrow { justify-content: center; }
.menu-header .eyebrow::before { display: none; }
.menu-subtitle {
  font-weight: 700;
  color: rgba(255,255,255,0.85);
  text-align: center;
  white-space: normal;
  max-width: 70ch;
}

/* The book */
.menu-book {
  position: relative;
}
.menu-category {
  margin-bottom: 2rem;
}
.menu-cat-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.35rem;
}
.menu-rule {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, var(--gold) 0%, rgba(245,200,66,0.15) 100%);
  margin-bottom: 0.6rem;
}
.menu-section-divider {
  width: 60px;
  height: 2px;
  background: rgba(255,255,255,0.08);
  margin: 0 auto 2rem;
}

/* Each menu row */
.menu-row {
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: auto auto;
  column-gap: 1rem;
  row-gap: 0;
  padding: 0.9rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  align-items: start;
}
.menu-row:last-child {
  border-bottom: none;
}
.menu-row--featured .menu-row__name {
  color: var(--white);
}

.menu-row__left {
  display: flex;
  flex-direction: column;
  gap: 3px;
  grid-column: 1;
  grid-row: 1 / span 2;
}
.menu-row__name {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1.3;
  letter-spacing: 0.02em;
}
.menu-row__tags {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  flex-wrap: wrap;
}
.menu-row__desc {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.62);
  line-height: 1.5;
  font-style: italic;
  letter-spacing: 0.01em;
}
.menu-row__dots {
  display: none;
}
.menu-row__price {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 800;
  color: var(--gold);
  white-space: nowrap;
  text-align: right;
  grid-column: 2;
  grid-row: 1;
  align-self: start;
  padding-top: 2px;
}

/* Origin badge */
.menu-origin {
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.75;
  white-space: nowrap;
}

/* Dietary pill — gold on navy, matches print menu */
.menu-tag {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: var(--radius-pill);
  background: var(--gold);
  color: var(--navy);
  white-space: nowrap;
  line-height: 1.4;
  vertical-align: 2px;
}
.menu-row__tags {
  display: inline-flex;
  gap: 0.4rem;
  margin-left: 0.55rem;
  vertical-align: 2px;
}

/* Gluten-free availability note under All Beverages */
.menu-gf-note {
  text-align: center;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--gold);
  letter-spacing: 0.02em;
  margin: 1.1rem auto 0;
  padding: 0 1rem;
  max-width: 62rem;
}

@media (max-width: 600px) {
  .menu-row__name { font-size: 1.28rem; }
  .menu-row__desc { font-size: 1.02rem; }
  .menu-row__price { font-size: 1.28rem; }
}

/* ================================================================
   OUR STORY
   ================================================================ */
.story {
  background: var(--sky);
  padding: clamp(5rem, 10vw, 9rem) 0 0;
  position: relative;
  overflow: hidden;
}

.story__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2.5rem clamp(4rem, 8vw, 7rem);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: center;
}

.story__image {
  position: relative;
  border-radius: var(--radius);
  overflow: visible;
}
.story__image img {
  border-radius: var(--radius);
  box-shadow: var(--shadow-deep);
  aspect-ratio: 4/5;
  object-fit: cover;
  filter: sepia(20%) contrast(1.05) saturate(0.95);
}
.story__image-tag {
  position: absolute;
  bottom: -1.25rem;
  right: -1.25rem;
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius-sm);
  padding: 1rem 1.25rem;
  box-shadow: var(--shadow-deep);
  border: 1px solid rgba(245,200,66,0.2);
}
.story__image-tag strong {
  display: block;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--gold);
  margin-bottom: 3px;
}
.story__image-tag span {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.6);
}

.story__text {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.story__text .heading-xl { color: var(--white); }
.story__text .heading-xl em { color: var(--gold); }
.story__text .body-text { color: rgba(255,255,255,0.92); }

.timeline {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
  border-left: 2px solid rgba(11,26,46,0.18);
  padding-left: 1.75rem;
  margin-top: 0.5rem;
}
.timeline__item { position: relative; }
.timeline__item::before {
  content: '';
  position: absolute;
  left: calc(-1.75rem - 5px);
  top: 6px;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--gold);
  border: 2px solid rgba(11,26,46,0.1);
  box-shadow: 0 0 0 3px rgba(245,200,66,0.18);
}
.timeline__item--highlight::before {
  background: var(--gold);
  box-shadow: 0 0 0 3px rgba(245,200,66,0.18);
  width: 10px; height: 10px;
  top: 6px;
}
.timeline__year {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gold);
  margin-bottom: 3px;
  opacity: 1;
}
.timeline__item--highlight .timeline__year {
  opacity: 1;
}
.timeline__desc {
  font-size: 1rem;
  color: rgba(255,255,255,0.92);
  line-height: 1.4;
  font-weight: 700;
}
.timeline__item--highlight .timeline__desc {
  color: rgba(255,255,255,0.92);
  font-weight: 700;
  font-size: 1rem;
}

/* Chef photo strip */
.story__chefs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3px;
  margin-top: 0;
}
.story__chefs-wide {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3px;
  margin-top: 3px;
}
.chef-photo {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
}
.chef-photo--wide {
  aspect-ratio: 16/9;
  grid-column: span 2;
}
.chef-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.chef-photo:hover img { transform: scale(1.05); }
.chef-caption {
  position: absolute;
  bottom: 0;
  left: 0; right: 0;
  background: linear-gradient(to top, rgba(11,26,46,0.85), transparent);
  color: rgba(255,255,255,0.9);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 2rem 1rem 0.75rem;
}

.story__family {
  margin-top: 3px;
  display: flex;
  gap: 3px;
}
.story__fullphoto {
  margin-top: 3px;
}
.family-photo {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
  flex: 1;
}
.family-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  transition: transform 0.6s var(--ease);
}
.family-photo--wide {
  aspect-ratio: 16/7;
  width: 100%;
}
.family-photo:hover img { transform: scale(1.03); }

@media (max-width: 900px) {
  .story__inner { grid-template-columns: 1fr; }
  .story__image-tag { right: 0; }
  .story__chefs { grid-template-columns: repeat(2, 1fr); }
  .story__family { flex-direction: column; }
  .family-photo { aspect-ratio: 16/9; }
}

/* ================================================================
   GALLERY - Magazine masonry
   ================================================================ */
.gallery {
  background: var(--navy);
  padding: clamp(5rem, 10vw, 9rem) 0;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.gallery__inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2.5rem;
}
.gallery__header {
  margin-bottom: 3rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.gallery__header .heading-xl { color: var(--white); }
.gallery__header .heading-xl em { color: var(--gold); }

.gallery__grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 240px;
  gap: 8px;
}
.gallery__item {
  border-radius: var(--radius-sm);
  overflow: hidden;
  position: relative;
  background: var(--navy-mid);
}
.gallery__item img {
  transition: transform 0.6s var(--ease);
}
.gallery__item:hover img { transform: scale(1.06); }

/* Grid layout */
.gallery__item:nth-child(1) { grid-column: span 7; grid-row: span 2; }
.gallery__item:nth-child(2) { grid-column: span 5; }
.gallery__item:nth-child(3) { grid-column: span 5; }
.gallery__item:nth-child(4) { grid-column: span 4; }
.gallery__item:nth-child(5) { grid-column: span 4; grid-row: span 2; }
.gallery__item:nth-child(6) { grid-column: span 4; }
.gallery__item:nth-child(7) { grid-column: span 3; }
.gallery__item:nth-child(8) { grid-column: span 3; }
.gallery__item:nth-child(9) { grid-column: span 3; }

@media (max-width: 900px) {
  .gallery__grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 220px;
  }
  .gallery__item { grid-column: span 1 !important; grid-row: span 1 !important; }
  .gallery__item:first-child { grid-column: span 2 !important; }
}

/* ================================================================
   SIGNUP / GRAND OPENING
   ================================================================ */
.signup {
  position: relative;
  padding: clamp(6rem, 12vw, 10rem) 0;
  overflow: hidden;
}
.signup__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.signup__bg img {
  filter: saturate(0.7);
}
.signup__bg-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, rgba(11,26,46,0.96) 0%, rgba(11,26,46,0.8) 50%, rgba(11,26,46,0.65) 100%);
}

.signup__inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: center;
}

.signup__text {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.signup__text .heading-xl { color: var(--white); }
.signup__text .heading-xl em { color: var(--gold); }

.signup__perks {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 0.5rem;
}
.signup__perks li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
}

.signup__form-wrap {}
.signup__form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background: rgba(18,32,64,0.7);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 2rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.form-group label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}
.form-group input {
  background: rgba(255,255,255,0.06);
  border: 1.5px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--white);
  transition: border-color 0.2s, background 0.2s;
}
.form-group input::placeholder { color: rgba(255,255,255,0.25); }
.form-group input:focus {
  outline: none;
  border-color: var(--sky);
  background: rgba(75,185,234,0.06);
}

.btn-form-submit {
  width: 100%;
  background: var(--gold);
  color: var(--navy);
  border: none;
  border-radius: var(--radius-pill);
  padding: 15px;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  margin-top: 0.25rem;
}
.btn-form-submit:hover {
  background: var(--gold-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

.form-success {
  display: none;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 3rem 2rem;
  background: rgba(18,32,64,0.7);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(245,200,66,0.2);
  border-radius: var(--radius);
  gap: 1rem;
}
.form-success__star {
  font-size: 3rem;
  color: var(--gold);
  line-height: 1;
}
.form-success h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--white);
}
.form-success p {
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
}

@media (max-width: 768px) {
  .signup__inner { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}

/* ================================================================
   FIND US
   ================================================================ */
.findus {
  background: var(--navy);
  padding: clamp(4rem, 8vw, 7rem) 0;
  border-top: 1px solid rgba(255,255,255,0.06);
  position: relative;
  overflow: hidden;
}
.findus::before {
  content: '';
  position: absolute;
  top: -120px; left: 50%;
  transform: translateX(-50%);
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(75,185,234,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.findus__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2.5rem;
  position: relative;
  z-index: 1;
}
.findus__header {
  text-align: center;
  margin-bottom: 3.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.findus__header .eyebrow { justify-content: center; }
.findus__header .eyebrow::before { display: none; }
.findus__header .heading-xl { color: var(--white); }
.findus__header .heading-xl em { color: var(--sky); }
.findus__header .body-text { color: var(--muted); }

.findus__cards {
  display: grid;
  grid-template-columns: 1fr 1.5fr 1fr;
  gap: 1.5rem;
  align-items: stretch;
}
.findus__card {
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 20px;
  padding: 3rem 2.25rem 2.75rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0;
  transition: border-color 0.3s, transform 0.3s var(--ease), box-shadow 0.3s;
  position: relative;
  overflow: hidden;
}
.findus__card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.12), transparent);
}
.findus__card:hover {
  border-color: rgba(75,185,234,0.3);
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.35);
}
.findus__card--hero {
  background: linear-gradient(160deg, rgba(75,185,234,0.08) 0%, rgba(18,32,64,0.6) 100%);
  border-color: rgba(75,185,234,0.22);
  padding: 3.25rem 2.5rem 2.75rem;
}
.findus__card--hero::before {
  background: linear-gradient(90deg, transparent, rgba(75,185,234,0.4), transparent);
}
.findus__card--hero:hover {
  border-color: rgba(75,185,234,0.55);
  box-shadow: 0 24px 60px rgba(75,185,234,0.1);
}

/* Divider */
.findus__divider {
  width: 40px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(245,200,66,0.5), transparent);
  margin: 1.1rem auto 1.25rem;
}
.findus__card--hero .findus__divider {
  background: linear-gradient(90deg, transparent, rgba(75,185,234,0.6), transparent);
  width: 56px;
}

.findus__card h3 {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--gold);
}
.findus__card--hero h3 {
  color: var(--sky);
  font-size: 0.8rem;
  letter-spacing: 0.2em;
}
.findus__card p {
  font-size: 1rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.75;
  flex: 1;
  margin-top: 0;
}
.findus__card--hero p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.8);
}

.findus__socials {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 1.5rem;
}
.social-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: all 0.22s var(--ease);
}
.social-pill:hover {
  background: rgba(75,185,234,0.12);
  border-color: var(--sky);
  color: var(--sky);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(75,185,234,0.15);
}
.social-pill--soon {
  cursor: default;
  color: rgba(255,255,255,0.55);
  background: rgba(255,255,255,0.03);
  border-color: rgba(255,255,255,0.10);
}
.social-pill--soon:hover {
  background: rgba(255,255,255,0.03);
  border-color: rgba(255,255,255,0.10);
  color: rgba(255,255,255,0.55);
  transform: none;
  box-shadow: none;
}
.social-coming-soon {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-top: 1rem;
  font-family: var(--font-body);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(201, 162, 74, 1);
  padding: 0.4rem 0.75rem;
  border: 1px solid rgba(201, 162, 74, 0.45);
  border-radius: 999px;
  background: rgba(201, 162, 74, 0.08);
}
.social-coming-soon::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(201, 162, 74, 1);
  display: inline-block;
  animation: soonPulse 1.8s ease-in-out infinite;
}
@keyframes soonPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}
.findus__card .btn-gold-sm {
  margin-top: 1.5rem;
  align-self: center;
}

@media (max-width: 900px) {
  .findus__cards { grid-template-columns: 1fr; }
  .findus__card--hero { order: -1; }
}

/* ================================================================
   FOOTER
   ================================================================ */
.footer {
  background: var(--navy);
  border-top: 1px solid rgba(255,255,255,0.06);
}

/* Truck strip */
.footer__truck-strip {
  position: relative;
  height: 520px;
  overflow: hidden;
}
.footer__truck-strip img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 65%;
}
.footer__truck-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(11,26,46,0.82) 0%,
    rgba(11,26,46,0.25) 45%,
    rgba(11,26,46,0.05) 100%
  );
}
.footer__truck-text {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  padding-top: 2.25rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.footer__quote {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2.5vw, 1.6rem);
  font-weight: 700;
  font-style: italic;
  color: var(--gold);
  letter-spacing: 0.02em;
  text-shadow: 0 2px 20px rgba(0,0,0,0.5);
}
.footer__opening {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
}

/* Footer main */
.footer__main {
  padding: 4rem 0 2rem;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer__main-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2.5rem;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 3rem;
}
.footer__brand {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.footer__tagline {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.4);
  line-height: 1.65;
  max-width: 28ch;
}
.footer__social-block {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.55rem;
  margin-top: 0.25rem;
}
.footer__socials {
  display: flex;
  gap: 8px;
}
.footer__social-icon {
  width: 36px; height: 36px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.3);
  cursor: default;
  pointer-events: none;
  transition: none;
}
.footer__social-status {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(201, 162, 74, 0.95);
  padding: 0.3rem 0.55rem;
  border: 1px solid rgba(201, 162, 74, 0.4);
  border-radius: 999px;
  background: rgba(201, 162, 74, 0.06);
}
.footer__social-status::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(201, 162, 74, 0.9);
  display: inline-block;
}

.footer__col {}
.footer__col-title {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 1.25rem;
}
.footer__col ul {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.footer__col ul a {
  font-size: 0.87rem;
  color: rgba(255,255,255,0.5);
  transition: color 0.2s;
}
.footer__col ul a:hover { color: var(--white); }
.footer__contact-line {
  font-size: 0.87rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.6;
}

.footer__bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.5rem 2.5rem;
  border-top: 1px solid rgba(255,255,255,0.06);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer__bottom p {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.25);
}
.footer__legal {
  display: flex;
  gap: 1.5rem;
}
.footer__legal a {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.25);
  transition: color 0.2s;
}
.footer__legal a:hover { color: rgba(255,255,255,0.6); }

@media (max-width: 900px) {
  .footer__main-inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .footer__main-inner { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; text-align: center; }
  .footer__truck-strip { height: 220px; }
}

/* ================================================================
   STORY PAGE
   ================================================================ */
.story-page-hero {
  background: var(--navy);
  padding: 160px 2.5rem 5rem;
  text-align: center;
  border-bottom: 2px solid rgba(245,200,66,0.2);
}
.story-page-hero__inner {
  max-width: 700px;
  margin: 0 auto;
}
.nav__active {
  color: var(--gold) !important;
  font-weight: 700;
}

/* ================================================================
   STORY TEASER (homepage)
   ================================================================ */
.story-teaser {
  background: var(--navy2);
  padding: 6rem 2.5rem;
  border-top: 1px solid rgba(245,200,66,0.15);
}
.story-teaser__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.story-teaser__text { display: flex; flex-direction: column; gap: 1.25rem; }
.story-teaser__photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 4px;
}
.teaser-photo {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
}
.teaser-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}
.teaser-photo:hover img { transform: scale(1.04); }
.teaser-photo--a { aspect-ratio: 3/4; grid-row: span 2; }
.teaser-photo--b { aspect-ratio: 16/9; }
.teaser-photo--c { aspect-ratio: 16/9; }

@media (max-width: 900px) {
  .story-teaser__inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .story-teaser__photos { grid-template-columns: 1fr; grid-template-rows: none; gap: 12px; }
  .teaser-photo--a { grid-row: auto; aspect-ratio: 4/3; }
  .teaser-photo--b, .teaser-photo--c { aspect-ratio: 16/9; }
}

/* ═══════════════════════════════════════════
   Anchor scroll offset - fixed nav is ~70px, give breathing room
   ═══════════════════════════════════════════ */
section[id],
[id="menu"],
[id="signup"],
[id="gallery"],
[id="findus"],
[id="story"],
[id="catering"] {
  scroll-margin-top: 64px;
}
@media (max-width: 700px) {
  section[id],
  [id="menu"],
  [id="signup"],
  [id="gallery"],
  [id="findus"],
  [id="story"],
  [id="catering"] {
    scroll-margin-top: 56px;
  }
}

/* ═══════════════════════════════════════════
   QR SCANNER BANNER
   Shows only when arrived via ?utm_source=qr&utm_medium=print
   ═══════════════════════════════════════════ */
.qr-banner {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  border-top: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
  padding: 1.15rem 1.5rem;
  color: var(--cream);
  position: relative;
  z-index: 5;
}
.qr-banner__inner {
  max-width: 1080px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
  padding-right: 2.5rem;
}
.qr-banner__star {
  color: var(--gold);
  font-size: 1.75rem;
  line-height: 1;
  flex-shrink: 0;
}
.qr-banner__text {
  margin: 0;
  flex: 1 1 320px;
  font-size: 1.02rem;
  line-height: 1.45;
}
.qr-banner__text strong {
  color: var(--gold);
  font-weight: 600;
  display: block;
  margin-bottom: 0.15rem;
}
.qr-banner__cta {
  background: var(--gold);
  color: var(--navy);
  text-decoration: none;
  padding: 0.65rem 1.4rem;
  border-radius: 3px;
  font-weight: 600;
  letter-spacing: 0.04em;
  font-size: 0.95rem;
  transition: background 0.2s ease, transform 0.2s ease;
  flex-shrink: 0;
}
.qr-banner__cta:hover {
  background: var(--gold-hover);
  transform: translateY(-1px);
}
.qr-banner__close {
  position: absolute;
  top: 0.75rem;
  right: 1rem;
  background: transparent;
  border: none;
  color: var(--cream);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  padding: 0.25rem 0.5rem;
  opacity: 0.65;
  transition: opacity 0.2s ease;
}
.qr-banner__close:hover { opacity: 1; }

@media (max-width: 640px) {
  .qr-banner { padding: 1rem 1rem; }
  .qr-banner__inner { gap: 0.85rem; padding-right: 2rem; }
  .qr-banner__text { font-size: 0.95rem; flex-basis: 100%; }
  .qr-banner__cta { width: 100%; text-align: center; }
}

/* ═══════════════════════════════════════════
   TODAY BANNER · v91 (Sun Jul 26, 2026)
   ═══════════════════════════════════════════ */
.today-banner {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1001;
  background: linear-gradient(90deg, #C9A24A 0%, #E4B85C 50%, #C9A24A 100%);
  color: #0E2B4A;
  font-family: 'Satoshi', system-ui, sans-serif;
  box-shadow: 0 2px 14px rgba(14,43,74,0.3);
  border-bottom: 1px solid rgba(14,43,74,0.18);
}
.today-banner__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 11px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  font-size: 15px;
}
.today-banner__pulse {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: #C6362B;
  box-shadow: 0 0 0 0 rgba(198,54,43,0.7);
  animation: today-pulse 1.8s infinite;
  flex-shrink: 0;
}
@keyframes today-pulse {
  0% { box-shadow: 0 0 0 0 rgba(198,54,43,0.75); }
  70% { box-shadow: 0 0 0 11px rgba(198,54,43,0); }
  100% { box-shadow: 0 0 0 0 rgba(198,54,43,0); }
}
.today-banner__label {
  font-family: 'Clash Display', 'Satoshi', sans-serif;
  font-weight: 700;
  letter-spacing: 0.16em;
  font-size: 13px;
  padding: 4px 11px;
  background: #0E2B4A;
  color: #C9A24A;
  border-radius: 3px;
  white-space: nowrap;
}
.today-banner__text { font-weight: 500; letter-spacing: 0.005em; }
.today-banner__text strong { font-weight: 800; }
.today-banner__cta {
  color: #0E2B4A;
  text-decoration: none;
  font-weight: 800;
  padding: 5px 13px;
  border: 1.5px solid #0E2B4A;
  border-radius: 999px;
  transition: background 0.2s, color 0.2s;
  font-size: 13px;
  white-space: nowrap;
}
.today-banner__cta:hover { background: #0E2B4A; color: #C9A24A; }
@media (max-width: 700px) {
  .today-banner__inner { padding: 8px 12px; gap: 8px; font-size: 12.5px; }
  .today-banner__label { font-size: 10.5px; padding: 3px 8px; letter-spacing: 0.12em; }
  .today-banner__cta { display: none; }
}

/* Push nav below banner */
.nav { top: 46px; }
@media (max-width: 700px) { .nav { top: 38px; } }

/* ═══════════════════════════════════════════
   ROUTE SECTION · Where the truck has been
   ═══════════════════════════════════════════ */
.route {
  background: #0E2B4A;
  padding: 90px 24px 100px;
  position: relative;
  overflow: hidden;
}
.route::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,162,74,0.55), transparent);
}
.route::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,162,74,0.55), transparent);
}
.route__inner {
  max-width: 1180px;
  margin: 0 auto;
  position: relative;
}
.route__header {
  text-align: center;
  margin-bottom: 68px;
}
.route__header .eyebrow.gold {
  color: #C9A24A;
  font-family: 'Clash Display', sans-serif;
  font-weight: 500;
  letter-spacing: 0.32em;
  font-size: 12px;
  text-transform: uppercase;
  margin: 0 0 18px;
  display: inline-flex;
  justify-content: center;
}
.route__header .eyebrow.gold::before {
  background: #C9A24A;
}
.route__header .heading-xl {
  color: #F7F2E6;
  font-family: 'Clash Display', sans-serif;
  font-weight: 600;
  font-size: clamp(34px, 4.6vw, 54px);
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin: 0;
}
.route__header .heading-xl em {
  font-style: italic;
  color: #C9A24A;
  font-weight: 500;
}

/* Map / timeline */
.route__map {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  position: relative;
  padding-top: 40px;
}
.route__map--four {
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  max-width: 1180px;
  margin: 0 auto;
}
.route__map--four .route__line { left: 11%; right: 11%; }
.route__map--four .route__line-fill { left: 11%; width: 78%; }
.route__map--four .route__card { max-width: 260px; }
.route__map--four .route__place { font-size: 20px; }
.route__map--four .route__card-body { padding: 16px 18px 18px; }

/* Card without a photo (Today's stop) - fill the vertical space elegantly */
.route__card--nophoto {
  display: flex;
  flex-direction: column;
  min-height: 380px; /* roughly matches the photo cards */
}
.route__card--nophoto .route__card-body--now {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 12px;
  padding: 32px 22px;
}
.route__card--nophoto .route__date--now { margin-bottom: 4px; }
.route__card--nophoto .route__place { font-size: 26px; margin-bottom: 4px; }
.route__card--nophoto .route__town { margin-bottom: 14px; }
.route__map--four .route__card--nophoto .route__place { font-size: 24px; }
/* Base track between markers */
.route__line {
  position: absolute;
  top: 62px;
  left: 12%; right: 12%;
  height: 2px;
  background: repeating-linear-gradient(90deg, rgba(201,162,74,0.55) 0 8px, transparent 8px 16px);
  z-index: 1;
}
/* Solid overlay for completed portion (stops 1 → 3) */
.route__line-fill {
  position: absolute;
  top: 62px;
  left: 12%;
  width: 76%;
  height: 2px;
  background: linear-gradient(90deg, #C9A24A 0%, #C9A24A 66%, rgba(201,162,74,0.4) 100%);
  z-index: 2;
  opacity: 0.85;
}
.route__stop {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.route__marker {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: #0E2B4A;
  border: 2px solid #C9A24A;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  position: relative;
}
.route__marker-num {
  font-family: 'Clash Display', sans-serif;
  color: #C9A24A;
  font-weight: 700;
  font-size: 17px;
  letter-spacing: 0.02em;
}
.route__marker--now {
  width: 54px; height: 54px;
  background: #C9A24A;
  border-color: #E4B85C;
  box-shadow: 0 0 0 6px rgba(201,162,74,0.15);
  margin-top: -5px;
}
.route__marker-star {
  font-size: 22px;
  color: #0E2B4A;
  line-height: 1;
}
.route__marker-pulse {
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  background: transparent;
  box-shadow: 0 0 0 0 rgba(201,162,74,0.55);
  animation: route-pulse 2.2s infinite;
}
@keyframes route-pulse {
  0% { box-shadow: 0 0 0 0 rgba(201,162,74,0.6); }
  70% { box-shadow: 0 0 0 20px rgba(201,162,74,0); }
  100% { box-shadow: 0 0 0 0 rgba(201,162,74,0); }
}

.route__card {
  background: rgba(247,242,230,0.03);
  border: 1px solid rgba(201,162,74,0.22);
  border-radius: 4px;
  padding: 0;
  width: 100%;
  max-width: 280px;
  position: relative;
  transition: border-color 0.3s;
  overflow: hidden;
}
.route__card::before {
  content: '';
  position: absolute;
  top: 0; left: 20px; right: 20px;
  height: 1px;
  background: rgba(201,162,74,0.35);
  z-index: 2;
}
.route__card-body {
  padding: 18px 20px 20px;
}

/* Route photo */
.route__photo {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: #0A1F35;
  border-bottom: 1px solid rgba(201,162,74,0.35);
}
.route__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(1.02);
  transition: transform 0.6s ease;
}
.route__card:hover .route__photo img { transform: scale(1.04); }
.route__photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, transparent 55%, rgba(14,43,74,0.35) 100%);
  pointer-events: none;
}

/* Placeholder for stops without photo */
.route__photo--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(circle at 50% 40%, rgba(201,162,74,0.14) 0%, transparent 60%),
    linear-gradient(180deg, #0F2F4F 0%, #0A1F35 100%);
}
.route__photo--placeholder::before {
  content: '';
  position: absolute;
  inset: 14px;
  border: 1px dashed rgba(201,162,74,0.28);
  border-radius: 2px;
}
.route__photo-mark {
  font-size: 42px;
  color: rgba(201,162,74,0.72);
  line-height: 1;
  position: relative;
  z-index: 1;
}

/* NOW photo cell - special golden treatment */
.route__photo--now {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background:
    radial-gradient(circle at 50% 45%, rgba(201,162,74,0.35) 0%, rgba(201,162,74,0.08) 55%, transparent 80%),
    linear-gradient(180deg, #12365B 0%, #0A1F35 100%);
}
.route__photo--now::before {
  content: '';
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(201,162,74,0.55);
  border-radius: 2px;
}
.route__photo--now .route__photo-mark {
  font-size: 54px;
  color: #E4B85C;
  text-shadow: 0 0 24px rgba(228,184,92,0.6);
  animation: route-star-glow 2.8s ease-in-out infinite;
}
@keyframes route-star-glow {
  0%, 100% { text-shadow: 0 0 24px rgba(228,184,92,0.55); }
  50% { text-shadow: 0 0 36px rgba(228,184,92,0.9); }
}
.route__photo-nowlabel {
  font-family: 'Satoshi', sans-serif;
  font-weight: 500;
  font-size: 11px;
  color: rgba(228,184,92,0.85);
  letter-spacing: 0.28em;
  text-transform: uppercase;
  position: relative;
  z-index: 1;
}
.route__date {
  font-family: 'Clash Display', sans-serif;
  color: #C9A24A;
  font-weight: 500;
  letter-spacing: 0.22em;
  font-size: 11px;
  margin: 0 0 10px;
  text-transform: uppercase;
}
.route__place {
  font-family: 'Clash Display', sans-serif;
  color: #F7F2E6;
  font-weight: 600;
  font-size: 22px;
  letter-spacing: -0.01em;
  line-height: 1.15;
  margin: 0 0 6px;
}
.route__town {
  font-family: 'Satoshi', sans-serif;
  color: rgba(247,242,230,0.62);
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin: 0;
}
/* Current stop card */
.route__card--now {
  background: linear-gradient(180deg, rgba(201,162,74,0.14) 0%, rgba(201,162,74,0.05) 100%);
  border-color: #C9A24A;
  box-shadow: 0 8px 40px -12px rgba(201,162,74,0.35);
  transform: translateY(-4px);
}
.route__card--now::before {
  height: 2px;
  background: #C9A24A;
  left: 0; right: 0;
}
.route__date--now { color: #E4B85C; font-weight: 700; }
.route__card--now .route__place { color: #C9A24A; }
.route__now-tag {
  display: inline-block;
  margin-top: 14px;
  padding: 5px 12px;
  background: #C9A24A;
  color: #0E2B4A;
  font-family: 'Clash Display', sans-serif;
  font-weight: 700;
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border-radius: 3px;
}

/* Route CTA - premium call to action replacing footnote */
.route__cta {
  position: relative;
  text-align: center;
  margin: 88px auto 0;
  max-width: 620px;
  padding: 0 20px;
}
.route__cta-rule {
  width: 1px;
  height: 44px;
  margin: 0 auto 28px;
  background: linear-gradient(180deg, transparent, rgba(201,162,74,0.6));
}
.route__cta-eyebrow {
  font-family: 'Satoshi', sans-serif;
  font-weight: 500;
  font-size: 12px;
  color: var(--gold);
  letter-spacing: 0.32em;
  text-transform: uppercase;
  margin: 0 0 18px;
}
.route__cta-title {
  font-family: 'Clash Display', sans-serif;
  font-weight: 500;
  font-size: clamp(28px, 3.6vw, 40px);
  line-height: 1.15;
  color: var(--cream);
  margin: 0 0 20px;
  letter-spacing: -0.01em;
}
.route__cta-title em {
  font-style: italic;
  font-weight: 500;
  color: var(--gold);
}
.route__cta-body {
  font-family: 'Satoshi', sans-serif;
  font-weight: 400;
  font-size: 17px;
  line-height: 1.6;
  color: rgba(247,242,230,0.72);
  margin: 0 auto 32px;
  max-width: 520px;
}
.route__cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 34px;
  font-size: 14px;
  letter-spacing: 0.14em;
}
@media (max-width: 780px) {
  .route__cta { margin-top: 68px; }
  .route__cta-rule { height: 34px; margin-bottom: 22px; }
  .route__cta-body { font-size: 15.5px; margin-bottom: 26px; }
  .route__cta-btn { padding: 14px 26px; font-size: 13px; }
}

/* Route CTA - HERO variant with full-bleed photo background (post-Berry Farm) */
.route__cta--hero {
  position: relative;
  max-width: 1180px;
  padding: 0;
  margin: 88px auto 0;
  border-radius: 18px;
  overflow: hidden;
  isolation: isolate;
  box-shadow: 0 24px 60px rgba(0,0,0,0.45), 0 0 0 1px rgba(201,162,74,0.18);
}
.route__cta-photo {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.route__cta-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(1.05) contrast(1.02);
}
.route__cta-photo-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(14,43,74,0.30) 0%, rgba(14,43,74,0.50) 60%, rgba(14,43,74,0.72) 100%),
    radial-gradient(ellipse at 50% 50%, rgba(14,43,74,0.10), rgba(14,43,74,0.55) 80%);
}
.route__cta--hero .route__cta-content {
  position: relative;
  z-index: 1;
  padding: 110px 32px 96px;
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.route__cta--hero .route__cta-rule {
  background: linear-gradient(180deg, transparent, rgba(228,184,92,0.9));
  height: 56px;
  margin: 0 auto 30px;
}
.route__cta--hero .route__cta-eyebrow { color: var(--gold-light); }
.route__cta--hero .route__cta-title { font-size: clamp(30px, 4vw, 46px); }
.route__cta--hero .route__cta-body {
  color: rgba(247,242,230,0.86);
  font-size: 18px;
  max-width: 560px;
}
.route__cta--hero .route__cta-body strong {
  color: var(--cream);
  font-weight: 500;
}
@media (max-width: 780px) {
  .route__cta--hero { margin: 68px 12px 0; border-radius: 14px; }
  .route__cta--hero .route__cta-content { padding: 72px 22px 64px; }
  .route__cta--hero .route__cta-body { font-size: 15.5px; }
}

/* HOME ribbon on Berry Farm route card */
.route__photo .route__home-ribbon,
span.route__home-ribbon {
  position: absolute !important;
  top: 12px !important;
  left: 12px !important;
  z-index: 5 !important;
  background: linear-gradient(135deg, #C9A24A 0%, #E4B85C 100%) !important;
  color: #0E2B4A !important;
  font-family: 'Satoshi', sans-serif !important;
  font-weight: 700 !important;
  font-size: 10px !important;
  letter-spacing: 0.18em !important;
  padding: 6px 10px 5px !important;
  border-radius: 3px !important;
  text-transform: uppercase !important;
  box-shadow: 0 4px 12px rgba(0,0,0,0.35) !important;
  display: inline-block !important;
  line-height: 1 !important;
}

/* Menu eyebrow (Now Serving · date) */
.menu-eyebrow {
  text-align: center;
  color: var(--gold);
  font-family: 'Satoshi', sans-serif;
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  margin: 0 0 14px;
}

/* Download today's menu PDF link */
.menu-pdf-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 22px;
  padding: 12px 24px;
  font-family: 'Satoshi', sans-serif;
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  background: transparent;
  border: 1px solid rgba(201,162,74,0.5);
  border-radius: 999px;
  text-decoration: none;
  transition: all 0.25s ease;
}
.menu-pdf-link:hover {
  background: rgba(201,162,74,0.1);
  border-color: var(--gold);
  transform: translateY(-1px);
}
.menu-pdf-link__icon {
  font-size: 15px;
  line-height: 1;
}
@media (max-width: 780px) {
  .menu-pdf-link { padding: 11px 20px; font-size: 12px; letter-spacing: 0.14em; }
}

@media (max-width: 780px) {
  .route { padding: 60px 20px 70px; }
  .route__header { margin-bottom: 44px; }
  .route__map, .route__map--four {
    grid-template-columns: 1fr;
    gap: 34px;
    padding-top: 8px;
    max-width: 380px;
    margin: 0 auto;
  }
  .route__map--four .route__card { max-width: none; }
  .route__map--four .route__place { font-size: 22px; }
  .route__photo { aspect-ratio: 16 / 10; }
  .route__photo--placeholder .route__photo-mark { font-size: 36px; }
  .route__photo--now .route__photo-mark { font-size: 44px; }
  .route__line, .route__line-fill { display: none; }
  .route__stop {
    flex-direction: row;
    align-items: flex-start;
    text-align: left;
    gap: 16px;
    position: relative;
  }
  .route__marker { margin-bottom: 0; flex-shrink: 0; margin-top: 4px; }
  .route__marker--now { margin-top: 0; }
  .route__card { max-width: none; }
  /* Vertical connector line on mobile */
  .route__stop::before {
    content: '';
    position: absolute;
    left: 21px;
    top: 48px;
    bottom: -34px;
    width: 2px;
    background: repeating-linear-gradient(0deg, rgba(201,162,74,0.5) 0 6px, transparent 6px 12px);
  }
  .route__stop:last-child::before { display: none; }
  .route__stop--now .route__marker--now ~ .route__card { transform: none; }
  .route__card--now { transform: none; }
}

/* Menu PDF block — "coming soon" + last week fallback */
.menu-pdf-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-top: 22px;
}
.menu-pdf-status {
  font-family: 'Satoshi', 'Inter', sans-serif;
  font-size: 15px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold, #E4B85C);
  font-weight: 600;
  margin: 0;
}
.menu-pdf-link--last {
  opacity: 0.78;
  font-size: 14px;
}
.menu-pdf-link--last:hover { opacity: 1; }

/* Findus card body text — bold treatment */
.findus__body-strong,
.findus__body-strong strong {
  font-weight: 700 !important;
  color: #F5F0E5 !important;
  letter-spacing: 0.01em;
}
.findus__card--hero .findus__body-strong,
.findus__card--hero .findus__body-strong strong {
  color: #FFFFFF !important;
}

/* All-gold italic variant of route CTA title */
.route__cta-title--allgold,
.route__cta-title--allgold em {
  color: var(--gold, #E4B85C) !important;
  font-style: italic !important;
  font-weight: 700;
}

/* ═══════════════════════════════════════════════════════
   ROUTE PHOTO — button reset + expand affordance + badge
   ═══════════════════════════════════════════════════════ */
button.route__photo {
  border: 0;
  padding: 0;
  margin: 0;
  background: #0A1F35;
  cursor: zoom-in;
  display: block;
  width: 100%;
  color: inherit;
  font: inherit;
  text-align: left;
}
button.route__photo:focus-visible {
  outline: 3px solid var(--gold, #E4B85C);
  outline-offset: -3px;
}
.route__photo-expand {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(11, 26, 46, 0.72);
  color: #F1EFE4;
  font-size: 18px;
  line-height: 34px;
  text-align: center;
  z-index: 3;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  opacity: 0;
  transform: scale(0.85);
  transition: opacity 0.25s ease, transform 0.25s ease;
  pointer-events: none;
}
.route__card:hover .route__photo-expand,
button.route__photo:focus-visible .route__photo-expand {
  opacity: 1;
  transform: scale(1);
}
@media (hover: none) {
  /* Always visible on touch devices */
  .route__photo-expand { opacity: 1; transform: scale(1); }
}
.route__food-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  background: rgba(228, 184, 92, 0.94);
  color: #0B1A2E;
  font-family: var(--font-display, "Work Sans", sans-serif);
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 6px 10px 5px;
  border-radius: 3px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.25);
}

/* ═══════════════════════════════════════════════════════
   LIGHTBOX
   ═══════════════════════════════════════════════════════ */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(6, 15, 28, 0.94);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  transition: opacity 0.2s ease;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.lightbox.is-open {
  display: flex;
  opacity: 1;
}
.lightbox__stage {
  position: relative;
  max-width: min(1200px, 96vw);
  max-height: 82vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lightbox__img {
  display: block;
  max-width: 100%;
  max-height: 82vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 4px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.6);
  animation: lb-in 0.25s ease-out;
}
@keyframes lb-in {
  from { opacity: 0; transform: scale(0.97); }
  to   { opacity: 1; transform: scale(1); }
}
.lightbox__close,
.lightbox__nav {
  position: absolute;
  background: rgba(255,255,255,0.08);
  color: #F1EFE4;
  border: 1px solid rgba(255,255,255,0.16);
  cursor: pointer;
  transition: background 0.18s ease, transform 0.18s ease;
  z-index: 2;
}
.lightbox__close:hover,
.lightbox__nav:hover {
  background: rgba(228, 184, 92, 0.9);
  color: #0B1A2E;
  transform: scale(1.06);
}
.lightbox__close {
  top: 20px;
  right: 20px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 20px;
}
.lightbox__nav {
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  font-size: 32px;
  font-weight: 300;
  line-height: 44px;
}
.lightbox__nav:hover { transform: translateY(-50%) scale(1.06); }
.lightbox__nav--prev { left: 20px; }
.lightbox__nav--next { right: 20px; }
.lightbox__caption {
  position: absolute;
  bottom: 44px;
  left: 50%;
  transform: translateX(-50%);
  color: #F1EFE4;
  font-family: var(--font-display, "Work Sans", sans-serif);
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  text-align: center;
  max-width: 90%;
}
.lightbox__count {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(241, 239, 228, 0.55);
  font-family: var(--font-display, "Work Sans", sans-serif);
  font-size: 0.78rem;
  letter-spacing: 0.16em;
}
@media (max-width: 640px) {
  .lightbox { padding: 12px; }
  .lightbox__nav { width: 42px; height: 42px; font-size: 26px; line-height: 36px; }
  .lightbox__nav--prev { left: 8px; }
  .lightbox__nav--next { right: 8px; }
  .lightbox__close { top: 12px; right: 12px; width: 38px; height: 38px; font-size: 18px; }
  .lightbox__caption { bottom: 40px; font-size: 0.82rem; }
  .lightbox__count { bottom: 14px; font-size: 0.7rem; }
  .lightbox__stage { max-height: 78vh; }
  .lightbox__img { max-height: 78vh; }
}

/* v94e: keep heads at top for portrait-in-landscape crops on route cards */
.route__photo img.is-fit-top { object-position: center 12%; }

/* ═══════════════════════════════════════════════════════════════════
   Menu allergy note (plain, no price)
   ═══════════════════════════════════════════════════════════════════ */
.menu-allergy-note {
  text-align: center;
  font-weight: 500;
  font-size: 0.92rem;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.04em;
  margin: 0.75rem auto 0;
  padding: 0 1rem;
  max-width: 62rem;
  font-style: italic;
}

/* ═══════════════════════════════════════════════════════════════════
   Farewell letter — truck-at-farm photo + signed thank-you note
   Used on index.html and catering.html
   ═══════════════════════════════════════════════════════════════════ */
.farewell {
  position: relative;
  padding: 6rem 1.5rem;
  overflow: hidden;
  background: #0F2A44;
}
.farewell__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.farewell__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.42) saturate(0.95);
}
.farewell__inner {
  position: relative;
  z-index: 1;
  max-width: 44rem;
  margin: 0 auto;
  background: #FAF5E6;
  color: #0F2A44;
  border-radius: 14px;
  padding: 3.25rem 2.5rem 2.75rem;
  box-shadow: 0 30px 80px rgba(0,0,0,0.55);
  text-align: center;
  opacity: 1 !important;
  transform: none !important;
}
.farewell__eyebrow {
  font-family: 'Clash Display', 'Satoshi', system-ui, sans-serif;
  font-size: 0.82rem;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: #B08A2E;
  font-weight: 600;
  margin: 0 0 1.4rem;
}
.farewell__title {
  font-family: 'Clash Display', 'Satoshi', system-ui, sans-serif;
  font-size: 1.6rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #B08A2E;
  margin: 0 0 1.6rem;
  line-height: 1.15;
}
.farewell__body {
  font-family: 'Satoshi', system-ui, sans-serif;
  font-size: 1.08rem;
  line-height: 1.65;
  color: #0F2A44;
  margin: 0 0 1.35rem;
  font-weight: 400;
}
.farewell__body strong { font-weight: 700; }
.farewell__closer {
  font-family: 'Satoshi', system-ui, sans-serif;
  font-size: 1.08rem;
  line-height: 1.6;
  color: #0F2A44;
  margin: 1.6rem 0 1.9rem;
  font-weight: 500;
}
.farewell__sig {
  font-family: 'Allura', 'Great Vibes', cursive;
  font-size: 4.2rem;
  line-height: 1;
  color: #0F2A44;
  margin: 0 0 1.4rem;
  font-weight: 400;
}
.farewell__tag {
  font-family: 'Allura', 'Great Vibes', cursive;
  font-size: 2.2rem;
  line-height: 1;
  color: #0F2A44;
  margin: 0.4rem 0 0;
  opacity: 0.85;
}
@media (max-width: 640px) {
  .farewell { padding: 4rem 1rem; }
  .farewell__inner { padding: 2.5rem 1.4rem 2rem; border-radius: 12px; }
  .farewell__title { font-size: 1.25rem; letter-spacing: 0.06em; }
  .farewell__body, .farewell__closer { font-size: 1rem; }
  .farewell__sig { font-size: 3.2rem; }
  .farewell__tag { font-size: 1.7rem; }
}

/* Farewell — embedded variant used inside the route section (You Showed Up) */
.farewell--embedded {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  margin: 3rem auto 0;
  padding: 5rem 1.5rem;
  box-shadow: 0 20px 60px rgba(0,0,0,0.35);
}
.farewell--embedded .farewell__inner {
  max-width: 42rem;
  padding: 3rem 2.4rem 2.5rem;
}
.farewell__hero {
  font-family: 'Clash Display', 'Satoshi', system-ui, sans-serif;
  font-size: 3.4rem;
  font-weight: 700;
  color: #C88F1E;
  line-height: 1.05;
  margin: 0.4rem 0 1.6rem;
  letter-spacing: -0.01em;
}
.farewell__hero em {
  font-style: italic;
  color: #C88F1E;
}
@media (max-width: 640px) {
  .farewell--embedded { padding: 3rem 0.75rem; border-radius: 16px; }
  .farewell--embedded .farewell__inner { padding: 2.25rem 1.25rem 1.9rem; }
  .farewell__hero { font-size: 2.4rem; }
}
