/* ================================================================
   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: center;
  gap: 0;
  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-end;
}
.nav__links--right {
  justify-content: flex-start;
}
.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);
}
.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: 3.5rem;
}
.menu-cat-title {
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.6rem;
}
.menu-rule {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, var(--gold) 0%, rgba(245,200,66,0.15) 100%);
  margin-bottom: 2rem;
}
.menu-section-divider {
  width: 60px;
  height: 2px;
  background: rgba(255,255,255,0.08);
  margin: 0 auto 3.5rem;
}

/* 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.35rem;
  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: 0.97rem;
  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.2rem;
  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;
}

/* Vegan tag */
.menu-tag {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 2px 8px;
  border-radius: var(--radius-pill);
  background: rgba(125,214,96,0.12);
  color: #7dd660;
  border: 1px solid rgba(125,214,96,0.25);
  white-space: nowrap;
}

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

/* ================================================================
   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);
}
.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__socials {
  display: flex;
  gap: 8px;
  margin-top: 0.25rem;
}
.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.45);
  transition: all 0.2s;
}
.footer__social-icon:hover {
  background: var(--sky);
  border-color: var(--sky);
  color: var(--white);
}

.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 1fr; }
  .teaser-photo--a { grid-row: span 1; aspect-ratio: 16/9; }
}
