/* ── Reset & Base ───────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:      #f7f5f1;
  --surface: #ffffff;
  --sand:    #ede8e0;
  --navy:    #1e2d3d;
  --navy2:   #253447;
  --orange:  #e05c2e;
  --gold:    #f0a52a;
  --teal:    #3a8c7e;
  --sky:     #5b9ec9;
  --white:   #ffffff;

  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans:  'Inter', system-ui, sans-serif;

  --ease:   cubic-bezier(0.4, 0, 0.2, 1);
  --radius: 12px;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--navy);
  overflow-x: hidden;
}

/* ── Nav ────────────────────────────────────────────────────────────────── */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 500;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 36px;
  background: transparent;
  transition: background 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.site-nav.scrolled {
  background: var(--navy);
  box-shadow: 0 2px 20px rgba(0,0,0,0.2);
}

.nav-logo {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--white);
  text-decoration: none;
  font-style: italic;
  opacity: 0.9;
}

.nav-links {
  display: flex;
  gap: 28px;
  list-style: none;
}

.nav-links a {
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color 0.2s;
}

.nav-links a:hover,
.nav-links a.active { color: var(--gold); }

/* ── Hero ───────────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 620px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  text-align: center;
  overflow: hidden;
}

/* ── Rotating slides ── */
.hero-slides { position: absolute; inset: 0; }

.hero-slide {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
  animation: ken-burns 10s ease-in-out infinite alternate;
}

.hero-slide.active { opacity: 1; }

@keyframes ken-burns {
  from { transform: scale(1);    background-position: center 40%; }
  to   { transform: scale(1.08); background-position: center 55%; }
}

/* Each slide gets a slightly different ken-burns direction */
.hero-slide:nth-child(2)  { animation-direction: alternate-reverse; }
.hero-slide:nth-child(3)  { animation: ken-burns-lr 10s ease-in-out infinite alternate; }
.hero-slide:nth-child(4)  { animation-direction: alternate-reverse; }
.hero-slide:nth-child(5)  { animation: ken-burns-lr 10s ease-in-out infinite alternate; }

@keyframes ken-burns-lr {
  from { transform: scale(1);    background-position: 40% center; }
  to   { transform: scale(1.08); background-position: 60% center; }
}

/* ── Overlays ── */
.hero-grad-top {
  position: absolute; top: 0; left: 0; right: 0;
  height: 35%;
  background: linear-gradient(to bottom, rgba(12,22,36,0.75), transparent);
  z-index: 1;
}

.hero-grad-bottom {
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 50%;
  background: linear-gradient(to top, rgba(12,22,36,0.85), transparent);
  z-index: 1;
}

.hero-vignette {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, transparent 40%, rgba(8,15,26,0.55) 100%);
  z-index: 1;
}

/* ── Top-left stamp ── */
.hero-stamp {
  position: absolute;
  top: 100px;
  left: 40px;
  z-index: 3;
  text-align: left;
  border-left: 3px solid var(--gold);
  padding-left: 14px;
}

.hero-stamp-year {
  display: block;
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.hero-stamp-label {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.65;
  margin-top: 4px;
}

/* ── Main content ── */
.hero-content {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  padding: 0 24px;
  max-width: 900px;
}

.hero-kicker {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  margin-bottom: 16px;
}

/* ── Title ── */
.hero-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  margin-bottom: 28px;
  line-height: 0.92;
}

.hero-title-the {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 4vw, 2.8rem);
  font-weight: 400;
  font-style: italic;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.06em;
  align-self: flex-start;
  margin-left: clamp(2rem, 5vw, 5rem);
}

.hero-title-looney {
  font-family: var(--font-serif);
  font-size: clamp(5rem, 16vw, 13rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  text-shadow: 0 4px 40px rgba(0,0,0,0.4);
  display: block;
}

.hero-title-adventure {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(2.2rem, 7vw, 6rem);
  font-weight: 400;
  color: var(--gold);
  letter-spacing: 0.04em;
  align-self: flex-end;
  margin-right: clamp(0rem, 3vw, 4rem);
}

/* ── Badges ── */
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 36px;
}

.hero-badge {
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  padding: 7px 16px;
  border-radius: 50px;
}

/* ── CTA ── */
.hero-cta {
  display: inline-block;
  padding: 15px 42px;
  background: var(--orange);
  color: var(--white);
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: 50px;
  transition: background 0.2s var(--ease), transform 0.2s var(--ease), box-shadow 0.2s var(--ease);
  box-shadow: 0 4px 24px rgba(224,92,46,0.5);
}

.hero-cta:hover {
  background: #c74d22;
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(224,92,46,0.6);
}

/* ── State marquee ── */
.hero-marquee {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 3;
  overflow: hidden;
  background: rgba(12,22,36,0.55);
  backdrop-filter: blur(6px);
  padding: 11px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.hero-marquee-track {
  display: flex;
  gap: 18px;
  width: max-content;
  animation: marquee 30s linear infinite;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
}

.hero-marquee-track .sep { color: var(--gold); opacity: 0.7; }

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

/* ── Map Section ────────────────────────────────────────────────────────── */
#map-section {
  background: var(--navy);
  padding-bottom: 0;
}

.map-header {
  text-align: center;
  padding: 72px 24px 36px;
  color: var(--white);
}

.map-header h2 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  margin-bottom: 10px;
}

.map-subhead {
  font-size: 0.9rem;
  opacity: 0.5;
  font-weight: 300;
  letter-spacing: 0.04em;
}

#map {
  width: 100%;
  height: 70vh;
  min-height: 480px;
  background: #f2ede8;
}

#stop-count-bar {
  background: var(--navy2);
  text-align: center;
  padding: 14px;
  color: var(--gold);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 500;
}

/* ── Custom Map Marker ──────────────────────────────────────────────────── */
.custom-marker {
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.marker-pin {
  width: 36px;
  height: 36px;
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  background: var(--orange);
  border: 3px solid var(--white);
  box-shadow: 0 3px 14px rgba(0,0,0,0.35);
  transition: background 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.marker-pin:hover { background: var(--gold); }

.marker-count {
  transform: rotate(45deg);
  color: var(--white);
  font-size: 0.65rem;
  font-weight: 700;
  line-height: 1;
}

/* ── Gallery Drawer ─────────────────────────────────────────────────────── */
.drawer {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  height: 75vh;
  background: var(--surface);
  border-radius: 24px 24px 0 0;
  z-index: 1000;
  box-shadow: 0 -8px 40px rgba(0,0,0,0.25);
  display: flex;
  flex-direction: column;
  transform: translateY(0);
  transition: transform 0.4s var(--ease);
  overflow: hidden;
}

.drawer.hidden {
  transform: translateY(100%);
  pointer-events: none;
}

.drawer-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 28px 28px 16px;
  border-bottom: 1px solid var(--sand);
  flex-shrink: 0;
}

.drawer-title-block h3 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--navy);
  margin-bottom: 4px;
}

#drawer-date {
  font-size: 0.78rem;
  color: var(--orange);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.drawer-close {
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  color: var(--navy);
  opacity: 0.35;
  transition: opacity 0.2s;
  flex-shrink: 0;
  margin-left: 16px;
}

.drawer-close:hover { opacity: 1; }
.drawer-close svg { width: 24px; height: 24px; display: block; }

/* ── Photo Grid ─────────────────────────────────────────────────────────── */
.photo-grid {
  flex: 1;
  overflow-y: auto;
  padding: 20px;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 10px;
  align-content: start;
}

.photo-grid-item {
  overflow: hidden;
  border-radius: 8px;
  cursor: pointer;
  aspect-ratio: 1/1;
  background: var(--sand);
  aspect-ratio: 4/3;
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease);
}

.photo-grid-item:hover {
  transform: scale(1.02);
  box-shadow: 0 8px 24px rgba(0,0,0,0.18);
}

.photo-grid-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: opacity 0.3s;
}

.photo-grid-item img.loading { opacity: 0; }
.photo-grid-item img.loaded  { opacity: 1; }

/* ── Lightbox ───────────────────────────────────────────────────────────── */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(8, 16, 26, 0.96);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s var(--ease);
}

.lightbox.hidden {
  opacity: 0;
  pointer-events: none;
}

.lb-img-wrap {
  position: relative;
  max-width: 90vw;
  max-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

#lb-img {
  width: 90vw;
  height: 85vh;
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 4px;
  display: block;
  transition: opacity 0.3s;
}

#lb-img.loading { opacity: 0; }

.lb-spinner {
  position: absolute;
  width: 40px; height: 40px;
  border: 3px solid rgba(255,255,255,0.12);
  border-top-color: var(--gold);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  display: none;
}

.lb-spinner.active { display: block; }

@keyframes spin { to { transform: rotate(360deg); } }

.lb-close, .lb-prev, .lb-next {
  position: fixed;
  background: rgba(255,255,255,0.08);
  border: none;
  color: var(--white);
  cursor: pointer;
  border-radius: 50%;
  width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s, transform 0.2s;
  z-index: 2001;
  backdrop-filter: blur(4px);
}

.lb-close:hover, .lb-prev:hover, .lb-next:hover {
  background: rgba(255,255,255,0.22);
}

.lb-close  { top: 20px; right: 20px; }
.lb-prev   { left: 16px; top: 50%; transform: translateY(-50%); }
.lb-next   { right: 16px; top: 50%; transform: translateY(-50%); }
.lb-prev:hover { transform: translateY(-50%) scale(1.1); }
.lb-next:hover { transform: translateY(-50%) scale(1.1); }
.lb-close svg, .lb-prev svg, .lb-next svg { width: 22px; height: 22px; display: block; }

.lb-caption {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 16px;
  align-items: center;
  background: rgba(0,0,0,0.45);
  padding: 8px 20px;
  border-radius: 50px;
  backdrop-filter: blur(10px);
  color: var(--white);
  font-size: 0.82rem;
  white-space: nowrap;
}

#lb-counter { opacity: 0.5; }
#lb-loc     { font-weight: 600; color: var(--gold); }

/* ── Backdrop ───────────────────────────────────────────────────────────── */
.backdrop {
  position: fixed;
  inset: 0;
  background: rgba(15, 25, 40, 0.6);
  z-index: 999;
  backdrop-filter: blur(3px);
  transition: opacity 0.3s var(--ease);
}

.backdrop.hidden {
  opacity: 0;
  pointer-events: none;
}

/* ── Leaflet overrides ──────────────────────────────────────────────────── */
.leaflet-popup-content-wrapper {
  border-radius: 10px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.25);
  font-family: var(--font-sans);
  background: var(--navy);
  color: var(--white);
  border: none;
}

.leaflet-popup-tip { background: var(--navy); }

.leaflet-popup-content {
  margin: 12px 16px;
  font-size: 0.85rem;
  line-height: 1.5;
  cursor: pointer;
}

.popup-location {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 2px;
}

.popup-count { opacity: 0.65; font-size: 0.78rem; }

.popup-hint {
  margin-top: 6px;
  font-size: 0.72rem;
  opacity: 0.45;
  font-style: italic;
}

/* ── Footer ─────────────────────────────────────────────────────────────── */
footer {
  background: var(--navy);
  color: rgba(255,255,255,0.4);
  text-align: center;
  padding: 44px 24px;
  font-size: 0.85rem;
  font-weight: 300;
  letter-spacing: 0.06em;
}

footer .paw {
  font-size: 1.6rem;
  margin-bottom: 12px;
  opacity: 0.6;
}

footer a {
  color: var(--gold);
  text-decoration: none;
  opacity: 0.8;
  transition: opacity 0.2s;
}

footer a:hover { opacity: 1; }

/* ── Stats Section ──────────────────────────────────────────────────────── */
.stats-section {
  background: var(--orange);
  padding: 0;
}

.stats-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px 32px;
  gap: 0;
}

.stat-item {
  flex: 1;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.stat-number {
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  display: block;
}

.stat-label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
}

.stat-divider {
  width: 1px;
  height: 60px;
  background: rgba(255,255,255,0.25);
  flex-shrink: 0;
  margin: 0 8px;
}

/* ── On This Day ────────────────────────────────────────────────────────── */
.otd-section {
  background: var(--navy);
  padding: 64px 24px;
}

.otd-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.otd-text {
  color: var(--white);
}

.otd-eyebrow {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  display: block;
}

.otd-date {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 12px;
}

.otd-location {
  font-size: 1rem;
  opacity: 0.6;
  margin-bottom: 24px;
  font-weight: 300;
}

.otd-btn {
  display: inline-block;
  padding: 11px 28px;
  background: var(--orange);
  color: var(--white);
  text-decoration: none;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}

.otd-btn:hover { background: #c74d22; transform: translateY(-2px); }

.otd-photo-wrap {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
  box-shadow: 0 12px 48px rgba(0,0,0,0.4);
}

.otd-photo-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s var(--ease);
}

.otd-photo-wrap:hover img { transform: scale(1.04); }

/* Off-season state */
.otd-offseason {
  text-align: center;
  color: var(--white);
  max-width: 500px;
  margin: 0 auto;
}

.otd-offseason .otd-eyebrow { display: block; margin-bottom: 16px; }

.otd-offseason-title {
  font-family: var(--font-serif);
  font-size: clamp(1.4rem, 3vw, 2rem);
  margin-bottom: 10px;
}

.otd-offseason-sub {
  font-size: 0.9rem;
  opacity: 0.5;
  font-weight: 300;
}

@media (max-width: 768px) {
  .otd-inner { grid-template-columns: 1fr; gap: 28px; }
  .otd-photo-wrap { order: -1; }
}

/* ── Filmstrip ──────────────────────────────────────────────────────────── */
.filmstrip-section {
  overflow: hidden;
  background: var(--navy);
  padding: 20px 0;
  position: relative;
}

.filmstrip-section::before,
.filmstrip-section::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 100px;
  z-index: 2;
  pointer-events: none;
}

.filmstrip-section::before {
  left: 0;
  background: linear-gradient(to right, var(--navy), transparent);
}

.filmstrip-section::after {
  right: 0;
  background: linear-gradient(to left, var(--navy), transparent);
}

.filmstrip-track {
  display: flex;
  gap: 10px;
  width: max-content;
  animation: scroll-film 60s linear infinite;
}

.filmstrip-track:hover { animation-play-state: paused; }

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

.film-photo {
  width: 200px;
  height: 150px;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
  cursor: pointer;
  position: relative;
}

.film-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s var(--ease), opacity 0.3s;
  opacity: 0.85;
}

.film-photo:hover img {
  transform: scale(1.05);
  opacity: 1;
}

/* ── Shared section styles ──────────────────────────────────────────────── */
.section-eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 10px;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--navy);
  margin-bottom: 48px;
  font-weight: 700;
}

/* ── Crew Section ───────────────────────────────────────────────────────── */
.crew-section {
  background: var(--bg);
  padding: 88px 24px;
}

.crew-inner {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.crew-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  text-align: left;
}

.crew-card {
  background: var(--surface);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(30,45,61,0.07);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.crew-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 36px rgba(30,45,61,0.13);
}

.crew-photo {
  height: 220px;
  position: relative;
  overflow: hidden;
  background: var(--sand);
}

.crew-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.4s var(--ease);
}

.crew-card:hover .crew-photo img { transform: scale(1.04); }

/* Fallback gradient for cards without a photo (Mozzie) */
.crew-photo--mozzie  { background: linear-gradient(135deg, #f0a52a, #e05c2e); display: flex; align-items: center; justify-content: center; }

.crew-initials {
  font-family: var(--font-serif);
  font-size: 4rem;
  color: rgba(255,255,255,0.6);
  font-weight: 700;
  line-height: 1;
  user-select: none;
}

.crew-info {
  padding: 20px 22px 22px;
}

.crew-info h3 {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  color: var(--navy);
  margin-bottom: 6px;
}

.crew-info p {
  font-size: 0.88rem;
  color: var(--navy);
  opacity: 0.6;
  line-height: 1.6;
  font-weight: 300;
}

.crew-tag {
  display: inline-block;
  margin-top: 10px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--orange);
  color: var(--white);
  padding: 3px 10px;
  border-radius: 20px;
}

/* ── Highlights Section ─────────────────────────────────────────────────── */
.highlights-section {
  background: var(--navy);
  padding: 88px 24px;
}

.highlights-section .section-eyebrow { color: var(--gold); }
.highlights-section .section-title   { color: var(--white); }

.highlights-inner {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.highlights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
  text-align: left;
}

.highlight-card {
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  background: var(--navy2);
}

.highlight-card:hover .highlight-img { transform: scale(1.05); }
.highlight-card:hover .highlight-overlay { opacity: 1; }

.highlight-img-wrap {
  aspect-ratio: 16/10;
  overflow: hidden;
  background: var(--navy2);
}

.highlight-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s var(--ease);
}

.highlight-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15,25,40,0.9) 0%, transparent 55%);
  opacity: 0.7;
  transition: opacity 0.3s;
}

.highlight-body {
  position: absolute;
  bottom: 0;
  left: 0; right: 0;
  padding: 20px 22px;
  color: var(--white);
}

.highlight-location {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.highlight-detail {
  font-size: 0.75rem;
  opacity: 0.65;
  letter-spacing: 0.06em;
}

/* ── Utilities ──────────────────────────────────────────────────────────── */
.hidden { display: none !important; }

/* ── Responsive ─────────────────────────────────────────────────────────── */
@media (max-width: 700px) {
  .stats-grid { flex-wrap: wrap; gap: 24px; padding: 36px 20px; }
  .stat-divider { display: none; }
  .stat-item { flex: 1 1 30%; }
  .crew-grid { grid-template-columns: 1fr 1fr; }
  .highlights-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .photo-grid { grid-template-columns: repeat(3, 1fr); gap: 3px; padding: 8px; }
  .photo-grid-item { aspect-ratio: 1/1; }
  .drawer { height: 90vh; }
  .lb-prev { left: 6px; }
  .lb-next { right: 6px; }
  .site-nav { padding: 16px 20px; }
  .nav-links { gap: 16px; }
  .crew-grid { grid-template-columns: 1fr; }
}
