/* ============================================================
   THE ACROPOLIS XD — Premium Single-Page Website (v3)

   DESIGN TOKENS are the single source of truth (:root below).
   Documented in /design.md and rendered live at /brand.
   New code should use var(--token), never raw hex/clamp values.
   ============================================================ */

:root {
  /* ============================================================
     PRIMITIVES — two perceptual ramps generated in OKLCH (even
     lightness steps). The brand gold (#C8A55E) is gold-400 and the
     brand dark (#1A1714) is stone-900 — both preserved exactly.
     Don't use these directly in components; use the semantic aliases.
     ============================================================ */
  /* Gold ramp — accent. Hue 84°, chroma peaks at 500–600. */
  --gold-50:  #FDF4E3;
  --gold-100: #F5E6CA;
  --gold-200: #E7D2A8;
  --gold-300: #D8BB82;
  --gold-400: #C8A55E;   /* ◀ brand gold */
  --gold-500: #B28C36;
  --gold-600: #9A730F;
  --gold-700: #7B5A02;   /* gold as text/link on light (AA) */
  --gold-800: #5C4300;
  --gold-900: #3F2D02;
  --gold-950: #291D02;
  /* Stone ramp — warm neutral (text, surfaces, dark). Hue 72°. */
  --stone-50:  #FDFCFA;  /* ◀ canvas (off-white) */
  --stone-100: #F2EDE5;  /* ◀ cream */
  --stone-200: #D6D0C9;
  --stone-300: #BAB3AB;
  --stone-400: #9D9790;
  --stone-500: #817B73;
  --stone-600: #665F58;
  --stone-700: #4B453F;
  --stone-800: #332E29;
  --stone-900: #1A1714;  /* ◀ brand dark */
  --stone-950: #050403;

  /* ============================================================
     SEMANTIC ALIASES — use THESE in components.
     ============================================================ */
  --gold: var(--gold-400);          /* brand accent: fills, eyebrows, buttons (not text on light) */
  --gold-link: var(--gold-700);     /* gold as text/link on a light surface (AA) */
  --gold-light: var(--gold-300);    /* accent hover (lighter) */
  --gold-deep: var(--gold-600);
  --gold-dark: var(--gold-500);     /* scroll progress / gradient end */
  --white: #FFFFFF;
  --off-white: var(--stone-50);
  --cream: var(--stone-100);
  --dark: var(--stone-900);         /* headings on light, dark surfaces */
  --dark-hover: var(--stone-800);   /* dark button / secondary hover */

  /* Text */
  --text: var(--stone-800);         /* body default */
  --text-body: var(--stone-700);    /* paragraph body */
  --text-muted: var(--stone-600);   /* muted / captions / sources (AA on light) */
  --text-subtle: var(--stone-400);  /* placeholders / decorative only */

  /* Surfaces & borders */
  --bg-light: var(--stone-50);
  --bg-dark: var(--stone-900);
  --surface: var(--white);                /* white card surface */
  --border: rgba(26,23,20,0.06);          /* default card border */
  --border-strong: rgba(26,23,20,0.10);   /* footer / hairline rules */

  /* Reused gold/dark tints (new tints: color-mix(in srgb, var(--gold) N%, transparent)) */
  --gold-border-hover: rgba(200,165,94,0.3);
  --gold-glow: rgba(200,165,94,0.25);
  --gold-tint-bg: rgba(200,165,94,0.08);
  --dark-overlay: rgba(26,23,20,0.4);

  /* ---- Radius scale ---- */
  --radius-sm: 6px;     /* buttons, inputs */
  --radius-md: 8px;    /* default cards, images */
  --radius-lg: 12px;    /* larger cards */
  --radius-xl: 18px;    /* bands, cta-card */
  --radius-pill: 999px; /* bars, tags */
  --radius-full: 50%;   /* dots, circular markers */

  /* ---- Motion ---- */
  --ease: cubic-bezier(0.16, 1, 0.3, 1);

  /* ---- Shadows ---- */
  --shadow-card: 0 1px 3px rgba(0,0,0,0.04);
  --shadow-card-hover: 0 12px 40px rgba(0,0,0,0.06);
  --shadow-img: 0 8px 30px rgba(0,0,0,0.08);

  /* ---- Fonts ---- */
  --font-serif: 'Playfair Display', serif;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  /* ---- Type scale (maps the established clamp values) ---- */
  --fs-display-xl: clamp(44px, 7vw, 80px);   /* hero titles */
  --fs-display-lg: clamp(32px, 4.5vw, 48px); /* band / mid-page hero titles */
  --fs-title: clamp(30px, 4vw, 44px);        /* section titles */
  --fs-tagline: clamp(26px, 4vw, 40px);      /* closing tagline */
  --fs-stat-xl: clamp(48px, 6vw, 72px);      /* big stat numbers */
  --fs-stat-lg: clamp(38px, 4vw, 48px);      /* market stat figures */
  --fs-body: 15px;
  --fs-body-sm: 14px;
  --fs-meta: 13px;
  --fs-eyebrow: 11px;
}

/* ---------- RESET & BASE ---------- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
body {
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--off-white);
  overflow-x: hidden;
  line-height: 1.6;
}
img { display: block; max-width: 100%; height: auto; }
picture { display: contents; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ---------- UTILITY ---------- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}
.center { text-align: center; }
.light { color: var(--white) !important; }
.muted { color: rgba(255,255,255,0.6) !important; }

/* ---------- SCROLL PROGRESS BAR ---------- */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(to right, var(--gold-dark), var(--gold), var(--gold-light));
  z-index: 1002;
  pointer-events: none;
}

/* ---------- NAVIGATION ---------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 24px 0;
  transition: all 0.5s var(--ease);
}
.nav.scrolled {
  background: rgba(26, 23, 20, 0.95);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  padding: 14px 0;
  box-shadow: 0 1px 0 rgba(200,165,94,0.12), 0 8px 32px rgba(0,0,0,0.15);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 500;
  color: var(--white);
  letter-spacing: 0.15em;
  white-space: nowrap;
}
.nav-logo span {
  color: var(--gold);
  font-weight: 500;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-links a {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 500;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.5px;
  transition: color 0.3s, transform 0.3s;
  position: relative;
  white-space: nowrap;
}
.nav-links a:hover {
  color: var(--white);
  transform: translateY(-1px);
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -6px; left: 0;
  width: 100%; height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.nav-links a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}
.nav-links a.active::after {
  transform: scaleX(1);
  transform-origin: left;
}
.nav-links a.active { color: var(--white); }
.nav-cta {
  background: transparent !important;
  border: 1px solid rgba(200,165,94,0.6) !important;
  color: var(--gold) !important;
  padding: 10px 24px !important;
  border-radius: var(--radius-sm);
  font-size: 11px !important;
  letter-spacing: 1.5px !important;
  text-transform: uppercase;
  transition: all 0.4s var(--ease) !important;
}
.nav-cta:hover {
  background: var(--gold) !important;
  color: var(--dark) !important;
  border-color: var(--gold) !important;
  transform: translateY(-1px) !important;
  box-shadow: 0 4px 20px rgba(200,165,94,0.25) !important;
}
.nav-cta::after { display: none !important; }

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

/* ---------- HERO ---------- */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img,
.hero-bg video {
  width: 100%; height: 100%;
  object-fit: cover;
  transform: scale(1.12);
  transform-origin: center 35%;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(26,23,20,0.92) 0%, rgba(26,23,20,0.5) 35%, rgba(26,23,20,0.1) 60%, transparent 100%),
    radial-gradient(ellipse at center, transparent 40%, rgba(26,23,20,0.3) 100%);
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 40px;
}

/* Hero cinematic entrance */
.hero-eyebrow,
.hero-presents,
.hero-title,
.hero-tagline,
.hero-scroll-btn {
  opacity: 0;
}
.hero.visible .hero-eyebrow {
  animation: heroFadeUp 1.2s var(--ease) 0.3s forwards;
}
.hero.visible .hero-presents {
  animation: heroFadeUp 1.2s var(--ease) 0.5s forwards;
}
.hero.visible .hero-title {
  animation: heroFadeUp 1.2s var(--ease) 0.7s forwards;
}
.hero.visible .hero-tagline {
  animation: heroFadeUp 1.2s var(--ease) 0.9s forwards;
}
.hero.visible .hero-scroll-btn {
  animation: heroFadeUp 1.2s var(--ease) 1.2s forwards;
}
@keyframes heroFadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Tier 1: Two matched Inter caps lines — credits-style stack above the brand */
.hero-eyebrow,
.hero-presents {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
  margin: 0;
}
.hero-eyebrow {
  margin-bottom: 14px;
}
.hero-presents {
  margin-bottom: 44px;
}

/* Tier 2: Brand block — Playfair, one medium weight */
.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(44px, 7vw, 80px);
  font-weight: 500;
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 14px;
  text-shadow: 0 4px 40px rgba(0,0,0,0.4);
}
.hero-title span {
  color: var(--gold);
  font-weight: 600;
}
.hero-tagline {
  font-family: var(--font-serif);
  font-size: clamp(16px, 2vw, 20px);
  font-weight: 400;
  font-style: italic;
  letter-spacing: 0.3px;
  color: rgba(255,255,255,0.9);
  margin-bottom: 44px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.hero-scroll-btn {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.5);
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  transition: color 0.3s;
}
.hero-scroll-btn:hover { color: var(--gold); }
.hero-scroll-btn svg {
  animation: float 3s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(8px); }
}

/* ---------- SECTIONS ---------- */
.section {
  padding: 140px 0;
  position: relative;
}
.section-light { background: var(--off-white); }
.section-dark {
  background: var(--dark);
  position: relative;
}
/* Warm radial glow on dark sections (only the first in a group) */
.section-dark::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(200,165,94,0.04) 0%, transparent 65%);
  pointer-events: none;
}
.section-dark + .section-dark::before {
  display: none;
}
/* section-cream removed — unified to section-light */
.section-eyebrow {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.section-title {
  font-family: var(--font-serif);
  font-size: clamp(30px, 4vw, 44px);
  font-weight: 500;
  color: var(--dark);
  line-height: 1.15;
  margin-bottom: 20px;
  text-wrap: balance;
}
.section-title.light { color: var(--white); }
.section-desc {
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.8;
  color: var(--text-body);
  max-width: 600px;
  margin-bottom: 32px;
}
.section-desc.light { color: rgba(255,255,255,0.75); }
.section-desc-secondary {
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.8;
  color: var(--text-muted);
  max-width: 600px;
  margin-bottom: 16px;
}
.section-desc-secondary:last-child { margin-bottom: 0; }
.section-header {
  margin-bottom: 72px;
}
.section-header.center .section-desc {
  margin-left: auto;
  margin-right: auto;
}

/* ---------- SPLIT SECTIONS ---------- */
.split-section {
  display: flex;
  align-items: center;
  gap: 100px;
}
.split-section.reverse { flex-direction: row-reverse; }
.split-image {
  flex: 1;
  min-width: 0;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
}
/* Shadow for images on light backgrounds */
.section-light .split-image {
  box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}
.section-dark .split-image {
  box-shadow: 0 20px 60px rgba(0,0,0,0.35);
}
.split-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  transition: transform 1s var(--ease);
}
.split-image:hover img {
  transform: scale(1.04);
}
/* Standalone poster images (Panama film poster on home + KSA) — gentle lift on hover */
.poster-hover {
  display: block;
  width: 100%;
  max-width: 300px;
  height: auto;
  margin: 0 auto;
  border-radius: var(--radius-md);
  box-shadow: 0 14px 44px rgba(26,23,20,0.2);
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
}
.poster-hover:hover {
  transform: none;
  box-shadow: 0 26px 64px rgba(26,23,20,0.30);
}
/* KSA five-component render — gentle zoom on hover (clip within the image, leave the caption) */
.scope-render picture {
  display: block;
  overflow: hidden;
  border-radius: var(--radius-lg);
}
.scope-render picture img {
  display: block;
  width: 100%;
  height: auto;
  transition: transform 1.1s var(--ease);
}
.scope-render:hover picture img {
  transform: scale(1.04);
}
.split-content {
  flex: 1;
  min-width: 0;
}

/* ---------- FEATURE LIST ---------- */
.feature-list { list-style: none; }
.feature-list li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 14px;
  font-family: var(--font-sans);
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-body);
}
.feature-list.light li { color: rgba(255,255,255,0.8); }
.feature-list li::before {
  content: '';
  position: absolute;
  left: 0; top: 9px;
  width: 6px; height: 6px;
  border-radius: var(--radius-full);
  background: var(--gold);
}

/* ---------- STATS (Market section, on light) ---------- */
.stats-grid {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 0;
  margin-bottom: 48px;
  position: relative;
}
.stat-card {
  flex: 1;
  text-align: center;
  padding: 48px 24px;
  border-radius: var(--radius-md);
  background: var(--white);
  border: 1px solid rgba(26,23,20,0.06);
  margin: 0 8px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.04);
  transition: border-color 0.4s, transform 0.4s, box-shadow 0.4s;
  position: relative;
  overflow: hidden;
}
.stat-card::before {
  content: '';
  position: absolute;
  top: var(--glow-y, 50%);
  left: var(--glow-x, 50%);
  width: 300px; height: 300px;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(200,165,94,0.08) 0%, transparent 70%);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 0;
}
.stat-card:hover::before { opacity: 1; }
.stat-card:hover {
  border-color: rgba(200,165,94,0.3);
  transform: none;
  box-shadow: 0 12px 40px rgba(0,0,0,0.06);
}
.stat-number {
  font-family: var(--font-serif);
  font-size: clamp(48px, 6vw, 68px);
  font-weight: 500;
  color: var(--gold);
  line-height: 1;
  display: inline;
}
.stat-currency {
  font-family: var(--font-serif);
  font-size: clamp(36px, 4vw, 48px);
  font-weight: 400;
  color: var(--gold);
  line-height: 1;
}
.stat-suffix {
  font-family: var(--font-sans);
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 300;
  color: rgba(200,165,94,0.7);
}
.stat-label {
  font-family: var(--font-sans);
  font-size: 13px;
  color: var(--text-body);
  margin-top: 16px;
  line-height: 1.5;
}
.stat-source {
  font-family: var(--font-sans);
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 8px;
}
.stat-divider {
  width: 1px;
  height: 100px;
  background: rgba(200,165,94,0.2);
  align-self: center;
  flex-shrink: 0;
}
.stats-footnote {
  font-family: var(--font-sans);
  font-size: 12px;
  color: var(--text-muted);
  text-align: center;
  border-top: 1px solid rgba(26,23,20,0.08);
  padding-top: 28px;
  margin-top: 56px;
  position: relative;
}

/* Market section: 3 horizontal pill rows in the constrained split-content column */
.market-stats-rows {
  display: flex;
  flex-direction: column;
  margin-top: 32px;
}
.market-stat-row {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 22px 0;
  border-bottom: 1px solid rgba(26,23,20,0.08);
}
.market-stat-row:last-child {
  border-bottom: none;
}
.market-stat-figure {
  flex: 0 0 auto;
  min-width: 130px;
  display: flex;
  align-items: baseline;
  gap: 4px;
}
.market-stat-figure .stat-number {
  font-family: var(--font-serif);
  font-size: clamp(38px, 4vw, 48px);
  font-weight: 500;
  color: var(--gold);
  line-height: 1;
}
.market-stat-figure .stat-currency {
  font-family: var(--font-serif);
  font-size: clamp(28px, 3vw, 34px);
  font-weight: 400;
  color: var(--gold);
  line-height: 1;
  margin-right: 2px;
}
.market-stat-figure .stat-suffix {
  font-family: var(--font-sans);
  font-size: clamp(16px, 2vw, 20px);
  font-weight: 300;
  color: rgba(200,165,94,0.75);
}
.market-stat-text {
  flex: 1;
  min-width: 0;
}
.market-stat-label {
  font-family: var(--font-sans);
  font-size: 14px;
  color: var(--dark);
  margin: 0 0 4px;
  line-height: 1.4;
}
.market-stat-source {
  font-family: var(--font-sans);
  font-size: 11px;
  color: var(--text-muted);
  margin: 0;
}

/* ---------- TASK FLOW (on cream background) ---------- */
.task-flow {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  position: relative;
  padding-top: 24px;
}
.task-flow-line {
  position: absolute;
  top: 47px;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(200,165,94,0.35) 15%, rgba(200,165,94,0.35) 85%, transparent);
  transform-origin: left center;
  transform: scaleX(0);
  transition: transform 1.4s var(--ease) 0.3s;
}
.task-flow-line.animate {
  transform: scaleX(1);
}
.task-step {
  text-align: center;
  position: relative;
}
.task-step-marker {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-full);
  border: 1.5px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 28px;
  background: var(--off-white);
  position: relative;
  z-index: 1;
  transition: all 0.4s var(--ease);
}
.task-step:hover .task-step-marker {
  background: var(--gold);
  box-shadow: 0 0 24px rgba(200,165,94,0.3);
  transform: scale(1.08);
}
.task-step-marker span {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.5px;
  transition: color 0.3s;
}
.task-step:hover .task-step-marker span {
  color: var(--white);
}
.task-step h4 {
  font-family: var(--font-serif);
  font-size: 17px;
  font-weight: 500;
  color: var(--dark);
  margin-bottom: 12px;
  line-height: 1.3;
}
.task-step p {
  font-family: var(--font-sans);
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 240px;
  margin: 0 auto;
}
.task-step-duration {
  font-family: var(--font-sans) !important;
  font-size: 11px !important;
  font-weight: 600 !important;
  color: var(--gold) !important;
  letter-spacing: 2px !important;
  text-transform: uppercase !important;
  margin-bottom: 10px !important;
  max-width: none !important;
}

/* Phase Two callout */
.phase-two-callout {
  margin-top: 80px;
  padding: 32px 40px;
  background: linear-gradient(135deg, rgba(200,165,94,0.06), rgba(200,165,94,0.02));
  border: 1px solid rgba(200,165,94,0.2);
  border-radius: var(--radius-md);
  display: flex;
  align-items: flex-start;
  gap: 32px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}
.phase-two-marker {
  flex-shrink: 0;
}
.phase-two-marker span {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 8px 16px;
  background: rgba(200,165,94,0.1);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(200,165,94,0.25);
}
.phase-two-content h4 {
  font-family: var(--font-serif);
  font-size: 19px;
  font-weight: 500;
  color: var(--dark);
  margin-bottom: 8px;
  line-height: 1.3;
}
.phase-two-content p {
  font-family: var(--font-sans);
  font-size: 14px;
  color: var(--text-body);
  line-height: 1.7;
  margin: 0;
}

/* ---------- Dark-mode overrides for the Execution Plan when on .section-dark ----------
   (white process cards + gold timeline/markers already read well on dark; only the
   dark text + dark slideshow dots need lightening. Scoped to .section-dark so the
   light Capital Structure timeline and the Ask's rebate callout are untouched.) */
.section-dark .task-step h4 { color: var(--off-white); }
.section-dark .task-step p { color: rgba(255,255,255,0.58); }
.section-dark .phase-two-content h4 { color: var(--off-white); }
.section-dark .phase-two-content p { color: rgba(255,255,255,0.62); }
.section-dark .production-dot { background: rgba(255,255,255,0.28); }
/* Process cards on dark: translucent gold-tinted card matching the Phase Two
   callout (keeps the dark aesthetic, thin gold border). Header + bullets stay
   gold; list text lightened for contrast. */
.section-dark .process-card { background: linear-gradient(135deg, rgba(200,165,94,0.06), rgba(200,165,94,0.02)); border-color: rgba(200,165,94,0.2); box-shadow: none; }
.section-dark .process-card li { color: rgba(255,255,255,0.72); }
/* Numbered timeline markers: an OPAQUE fill pre-blended to look like the translucent
   card tint over var(--dark) — opaque so the connector line is masked behind each circle
   (no line slicing through 02/03). Gold ring + number; fills gold on hover. */
.section-dark .task-step-marker { background: linear-gradient(135deg, #242018, #1E1A16); }
.section-dark .task-step:hover .task-step-marker { background: var(--gold); }
@media (max-width: 768px) {
  .phase-two-callout {
    flex-direction: column;
    gap: 16px;
    padding: 24px;
    margin-top: 48px;
  }
}

/* ---------- PARALLAX DIVIDER ---------- */
.parallax-divider {
  position: relative;
  height: 85vh;
  min-height: 550px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
}
.parallax-bg {
  position: absolute;
  inset: -20% 0;
  z-index: 0;
}
.parallax-bg img,
.parallax-bg video {
  width: 100%; height: 100%;
  object-fit: cover;
}
.video-bg video {
  transform: scale(1.02);
  transform-origin: center 40%;
}
.parallax-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(26,23,20,0.9) 0%, rgba(26,23,20,0.4) 40%, rgba(26,23,20,0.1) 70%, transparent 100%),
    radial-gradient(ellipse at center bottom, rgba(26,23,20,0.3) 0%, transparent 70%);
  z-index: 1;
}
.parallax-content {
  position: relative;
  z-index: 2;
  padding: 0 32px 64px;
  max-width: 900px;
  text-align: center;
}
/* Section-anchor hero typography — shared with .rooftop-hero / .gallery-hero.
   All five mid-page heroes (Film, Panama, Voyager, VR Gallery, Restaurant)
   share one unified system anchored on the OG Film/Panama style and Main Hero tagline. */
.parallax-content h2 {
  font-family: var(--font-serif);
  font-size: clamp(32px, 4.5vw, 48px);
  font-weight: 500;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 14px;
  text-shadow: 0 2px 24px rgba(0,0,0,0.4);
  text-wrap: balance;
}
.parallax-content p {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(14px, 1.8vw, 18px);
  font-weight: 400;
  letter-spacing: 0.5px;
  color: rgba(255,255,255,0.9);
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
  text-wrap: balance;
}

/* ---------- CONTAINED DIVIDER ("cut" band) ----------
   Mid-page dividers sit INSIDE the page margins as a rounded band on the same
   light backdrop as the surrounding sections, so they blend seamlessly instead
   of bleeding edge-to-edge. Full-bleed (.parallax-divider without .contained)
   is reserved for heroes and major section jumps. */
.divider-band {
  padding: 24px 0;
  background: var(--off-white);
}
.parallax-divider.contained,
.rooftop-hero.contained,
.gallery-hero.contained {
  height: 56vh;
  min-height: 400px;
  max-height: 560px;
  border-radius: var(--radius-xl);
}
.parallax-divider.contained .parallax-content {
  padding: 0 28px 44px;
}
@media (max-width: 768px) {
  .divider-band { padding: 16px 0; }
  .parallax-divider.contained,
  .rooftop-hero.contained,
  .gallery-hero.contained { border-radius: var(--radius-lg); min-height: 340px; }
}

/* ---------- PILLARS ---------- */
.pillars-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px 48px;
  margin-top: 8px;
}
.pillar {
  padding: 0;
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.pillar-icon {
  width: 24px; height: 24px;
  flex-shrink: 0;
  color: var(--gold);
  margin-top: 2px;
}
.pillar-text { flex: 1; }
.pillar h4 {
  font-family: var(--font-serif);
  font-size: 15px;
  font-weight: 500;
  color: var(--dark);
  margin-bottom: 4px;
}
.pillar p {
  font-family: var(--font-sans);
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ---------- PROCESS CARDS ---------- */
.process-cards {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.process-card {
  background: var(--white);
  border: 1px solid rgba(26,23,20,0.06);
  border-radius: var(--radius-md);
  box-shadow: 0 1px 3px rgba(0,0,0,0.04);
  padding: 28px 32px;
  display: flex;
  align-items: flex-start;
  gap: 32px;
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
}
.process-card:hover {
  border-color: rgba(200,165,94,0.3);
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
  transform: none;
}
.process-card h4 {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin: 0;
  min-width: 140px;
  flex-shrink: 0;
  padding-top: 6px;
}
.process-card ul { list-style: none; }
.process-card li {
  font-family: var(--font-sans);
  font-size: 13px;
  color: var(--text-body);
  padding: 6px 0;
  padding-left: 16px;
  position: relative;
  line-height: 1.6;
}
.process-card li::before {
  content: '';
  position: absolute;
  left: 0; top: 13px;
  width: 4px; height: 4px;
  border-radius: var(--radius-full);
  background: var(--gold);
}

/* ---------- THE TECHNOLOGY (POSITRON) ---------- */
.tech-credentials {
  margin-top: 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px 36px;
}
.tech-credential .tech-eyebrow {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 1.8px;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.tech-credential .tech-body {
  font-family: var(--font-sans);
  font-size: 13px;
  line-height: 1.7;
  color: var(--text-body);
  margin: 0;
}
@media (max-width: 768px) {
  .tech-credentials { grid-template-columns: 1fr; gap: 24px; }
}

/* ---------- DISTRIBUTION & GLOBAL REACH ---------- */
.distribution-hero {
  display: flex;
  align-items: center;
  gap: 64px;
  max-width: 900px;
  margin: 0 auto 64px;
}
.distribution-hero-number {
  flex-shrink: 0;
  text-align: center;
  padding-right: 48px;
  border-right: 1px solid rgba(26,23,20,0.1);
}
.distribution-hero-number .big-number {
  display: block;
  font-family: var(--font-serif);
  font-size: 88px;
  font-weight: 500;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: -2px;
}
.distribution-hero-number .big-label {
  display: block;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 2px;
  text-transform: uppercase;
}
.distribution-hero-text p {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-body);
  margin: 0;
}
.distribution-hero-text strong {
  color: var(--dark);
  font-weight: 600;
}

.distribution-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  max-width: 1100px;
  margin: 0 auto 64px;
}
.dist-channel {
  background: var(--white);
  border: 1px solid rgba(26,23,20,0.06);
  border-radius: var(--radius-md);
  padding: 28px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
  box-shadow: 0 1px 3px rgba(0,0,0,0.03);
}
.dist-channel:hover {
  border-color: rgba(200,165,94,0.3);
  transform: none;
  box-shadow: 0 8px 20px rgba(0,0,0,0.06);
}
.dist-icon {
  width: 36px;
  height: 36px;
  color: var(--gold);
}
.dist-icon svg {
  width: 100%;
  height: 100%;
}
.dist-channel span {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 500;
  color: var(--dark);
  letter-spacing: 0.3px;
}

.marketing-reach {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  max-width: 1000px;
  margin: 0 auto;
  padding: 40px 48px;
  background: var(--white);
  border: 1px solid rgba(26,23,20,0.06);
  border-radius: var(--radius-lg);
  box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}
.marketing-stat {
  flex: 1;
  text-align: center;
}
.marketing-stat .marketing-number {
  display: block;
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 500;
  color: var(--dark);
  line-height: 1.2;
  margin-bottom: 8px;
}
.marketing-stat--text .marketing-number {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.35;
}
.marketing-stat .marketing-label {
  display: block;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 1.2px;
  text-transform: uppercase;
}
.marketing-divider {
  width: 1px;
  height: 48px;
  background: rgba(26,23,20,0.1);
  flex-shrink: 0;
}

@media (max-width: 1024px) {
  .distribution-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .distribution-hero {
    flex-direction: column;
    gap: 32px;
    text-align: center;
  }
  .distribution-hero-number {
    padding-right: 0;
    padding-bottom: 28px;
    border-right: none;
    border-bottom: 1px solid rgba(26,23,20,0.1);
    width: 100%;
  }
  .distribution-hero-number .big-number { font-size: 64px; }
  .marketing-reach {
    flex-direction: column;
    gap: 24px;
    padding: 32px 24px;
  }
  .marketing-divider {
    width: 60px;
    height: 1px;
  }
  .marketing-stat .marketing-number { font-size: 22px; }
}

/* ---------- PRODUCTION SLIDESHOW ---------- */
.production-slideshow-wrap {
  position: relative;
  width: 100%;
}
.production-slideshow {
  position: relative;
  width: 100%;
  height: 500px;
  overflow: hidden;
  border-radius: var(--radius-md);
}
.production-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease;
}
.production-slide.active {
  opacity: 1;
}
.production-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.production-slideshow-wrap {
  overflow: visible !important;
  box-shadow: none !important;
  background: transparent !important;
}
/* Slideshow arrows */
.production-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(26,23,20,0.4);
  border: none;
  color: var(--white);
  font-size: 28px;
  width: 40px; height: 40px;
  border-radius: var(--radius-full);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  opacity: 0;
  transition: opacity 0.3s, background 0.3s;
}
.production-slideshow:hover .production-arrow {
  opacity: 1;
}
.production-arrow:hover {
  background: rgba(26,23,20,0.7);
}
.production-arrow-prev { left: 12px; }
.production-arrow-next { right: 12px; }

.production-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
}
.production-dot {
  width: 8px;
  height: 8px;
  border-radius: var(--radius-full);
  border: none;
  background: rgba(26,23,20,0.2);
  cursor: pointer;
  padding: 0;
  transition: background 0.3s, transform 0.3s;
}
.production-dot.active {
  background: var(--gold);
  transform: scale(1.25);
}
.production-dot:hover {
  background: rgba(200,165,94,0.6);
}

/* ---------- VENUE CENTERED TEXT ---------- */
.venue-text-center {
  max-width: 620px;
  margin: 0 auto 56px;
  text-align: center;
}
.venue-text-center .section-desc-secondary {
  max-width: none;
  margin-bottom: 20px;
}
.venue-text-center .section-desc-secondary:last-child {
  margin-bottom: 0;
}

/* ---------- VENUE LUMINARY-STYLE GALLERY ---------- */
.venue-gallery-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-top: 120px;
  margin-bottom: 24px;
}
.venue-gallery-title {
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 500;
  color: var(--dark);
}
.venue-gallery-hint {
  font-family: var(--font-sans);
  font-size: 13px;
  color: #8A8478;
}
.venue-gallery-scroll {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  padding: 0 max(24px, calc((100vw - 1120px) / 2 + 24px)) 48px;
}
.venue-gallery-scroll::-webkit-scrollbar {
  display: none;
}
.venue-card {
  flex: 1;
  min-width: 0;
  height: 65vh;
  min-height: 400px;
  max-height: 600px;
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  border: none;
  padding: 0;
  background: none;
  transition: flex 0.5s ease-out;
}
.venue-card:hover {
  flex: 3;
}
.venue-card:focus {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}
.venue-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.venue-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,23,20,0.75) 0%, rgba(26,23,20,0.15) 40%, transparent 100%);
  opacity: 0.6;
  transition: opacity 0.5s;
}
.venue-card:hover .venue-card-overlay {
  opacity: 1;
}
.venue-card-label {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 500;
  color: var(--white);
  text-align: left;
}

/* ---------- VENUE LIGHTBOX ---------- */
.venue-lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(26,23,20,0.95);
  align-items: center;
  justify-content: center;
}
.venue-lightbox.active {
  display: flex;
}
.venue-lightbox-close {
  position: absolute;
  top: 24px; right: 24px;
  background: none;
  border: none;
  color: var(--white);
  font-size: 36px;
  cursor: pointer;
  width: 48px; height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10001;
  opacity: 0.8;
  transition: opacity 0.3s;
}
.venue-lightbox-close:hover { opacity: 1; }
.venue-lightbox-prev,
.venue-lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(26,23,20,0.5);
  border: none;
  color: var(--white);
  font-size: 32px;
  width: 48px; height: 48px;
  border-radius: var(--radius-full);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10001;
  transition: background 0.3s;
}
.venue-lightbox-prev:hover,
.venue-lightbox-next:hover {
  background: rgba(26,23,20,0.8);
}
.venue-lightbox-prev { left: 24px; }
.venue-lightbox-next { right: 24px; }
.venue-lightbox-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 60px 80px;
  max-width: 100%;
  max-height: 100%;
}
.venue-lightbox-img {
  max-width: 100%;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 8px;
}
.venue-lightbox-caption {
  margin-top: 16px;
  font-family: var(--font-sans);
  font-size: 18px;
  font-weight: 500;
  color: var(--white);
  background: rgba(26,23,20,0.5);
  padding: 8px 20px;
  border-radius: var(--radius-md);
}
.venue-lightbox-dots {
  position: absolute;
  bottom: 48px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
}
.venue-lightbox-dot {
  width: 8px; height: 8px;
  border-radius: var(--radius-full);
  border: none;
  background: rgba(255,255,255,0.4);
  cursor: pointer;
  padding: 0;
  transition: background 0.3s, width 0.3s;
}
.venue-lightbox-dot.active {
  background: var(--white);
  width: 24px;
  border-radius: 4px;
}
.venue-lightbox-counter {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-sans);
  font-size: 12px;
  color: rgba(255,255,255,0.6);
  letter-spacing: 1px;
}

/* ---------- WHY IMAX (on cream) ---------- */
.imax-proof {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}
.imax-stats-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 56px;
}
.imax-stat-big {
  text-align: center;
  padding: 56px 36px;
  background: var(--white);
  border: 1px solid rgba(26,23,20,0.06);
  border-radius: var(--radius-lg);
  box-shadow: 0 1px 3px rgba(0,0,0,0.04);
  transition: all 0.4s var(--ease);
  position: relative;
  overflow: hidden;
}
.imax-stat-big::before {
  content: '';
  position: absolute;
  top: var(--glow-y, 50%);
  left: var(--glow-x, 50%);
  width: 350px; height: 350px;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(200,165,94,0.1) 0%, transparent 70%);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.imax-stat-big:hover::before { opacity: 1; }
.imax-stat-big:hover {
  border-color: rgba(200,165,94,0.4);
  transform: none;
  box-shadow: 0 16px 48px rgba(0,0,0,0.08);
}
.imax-number {
  display: block;
  font-family: var(--font-serif);
  font-size: clamp(48px, 6vw, 72px);
  font-weight: 500;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 20px;
}
.imax-stat-big p {
  font-family: var(--font-sans);
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 280px;
  margin: 0 auto;
}
/* Performance stats block */
.imax-performance {
  background: var(--white);
  border: 1px solid rgba(26,23,20,0.06);
  border-radius: var(--radius-lg);
  padding: 40px 44px;
  margin-bottom: 24px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}
.imax-performance-header {
  text-align: center;
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(26,23,20,0.06);
}
.imax-performance-header h4 {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.imax-performance-header p {
  font-family: var(--font-sans);
  font-size: 14px;
  color: var(--text-body);
  line-height: 1.6;
  max-width: 540px;
  margin: 0 auto;
}
.imax-perf-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
.imax-perf-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 12px 0;
}
.imax-perf-stat .perf-number {
  font-family: var(--font-serif);
  font-size: 34px;
  font-weight: 500;
  color: var(--dark);
  line-height: 1;
  margin-bottom: 8px;
}
.imax-perf-stat .perf-label {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 1.2px;
  text-transform: uppercase;
}
@media (max-width: 768px) {
  .imax-performance { padding: 28px; }
  .imax-perf-grid { grid-template-columns: 1fr 1fr; gap: 28px 16px; }
  .imax-perf-stat .perf-number { font-size: 28px; }
}

.imax-track-record {
  background: var(--white);
  border: 1px solid rgba(26,23,20,0.06);
  border-radius: var(--radius-lg);
  padding: 44px;
  margin-bottom: 32px;
}
.imax-track-record h4 {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 3px;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 12px;
}
.imax-examples {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.imax-example {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 0;
  border-bottom: 1px solid rgba(26,23,20,0.08);
  transition: background 0.3s;
}
.imax-example:last-child { border-bottom: none; }
.imax-example:hover {
  background: rgba(26,23,20,0.02);
}
.imax-film-name {
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 600;
  color: var(--dark);
}
.imax-film-result {
  font-family: var(--font-sans);
  font-size: 13px;
  color: var(--text-muted);
  text-align: right;
}
.imax-footnote {
  font-family: var(--font-sans);
  font-size: 13px;
  color: var(--text-muted);
  text-align: center;
  font-style: italic;
}

/* ---------- GALLERY ---------- */
/* 6 items → only balanced layouts: 6, 3, 2, 1 cols */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 24px;
}
@media (max-width: 1100px) {
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 720px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
}
.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 3/4;
  cursor: pointer;
  box-shadow: 0 8px 30px rgba(0,0,0,0.08);
  transition: transform 0.5s var(--ease), box-shadow 0.5s;
}
.gallery-item:hover {
  transform: none;
  box-shadow: 0 20px 50px rgba(0,0,0,0.12);
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease), filter 0.5s;
}
.gallery-item:hover img {
  transform: scale(1.08);
  filter: brightness(1.08);
}
.gallery-item span {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 48px 20px 20px;
  background: linear-gradient(transparent, rgba(26,23,20,0.75));
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.5px;
  color: var(--white);
  transition: padding-bottom 0.4s;
}
.gallery-item:hover span {
  padding-bottom: 24px;
}

/* ---------- PANAMA STATS (on light) ---------- */
.panama-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}
.panama-stat {
  padding: 28px 0;
  border-bottom: 1px solid rgba(26,23,20,0.08);
}
.panama-stat:nth-last-child(-n+2) { border-bottom: none; }
.panama-number {
  display: block;
  font-family: var(--font-serif);
  font-size: 34px;
  font-weight: 500;
  color: var(--gold);
  margin-bottom: 6px;
}
.panama-label {
  font-family: var(--font-sans);
  font-size: 13px;
  color: var(--text-muted);
}

/* ---------- HIGHLIGHT CARDS ---------- */
.highlight-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.highlight-card {
  padding: 44px 32px;
  background: var(--white);
  border: 1px solid rgba(26,23,20,0.06);
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: 0 1px 3px rgba(0,0,0,0.04);
  transition: all 0.4s var(--ease);
}
.highlight-card:hover {
  transform: none;
  box-shadow: 0 20px 56px rgba(0,0,0,0.08);
  border-color: rgba(200,165,94,0.3);
}
.highlight-icon {
  width: 48px; height: 48px;
  margin: 0 auto 24px;
  color: var(--gold);
  transition: transform 0.4s;
}
.highlight-card:hover .highlight-icon {
  transform: scale(1.1);
}
.highlight-card h4 {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 500;
  color: var(--dark);
  margin-bottom: 12px;
}
.highlight-card p {
  font-family: var(--font-sans);
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ---------- TEAM (on dark) ---------- */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 48px;
}
.team-member { text-align: center; }
.team-photo {
  width: 160px; height: 160px;
  margin: 0 auto 28px;
  border-radius: var(--radius-full);
  overflow: hidden;
  border: none;
  box-shadow: 0 0 30px rgba(200,165,94,0.15), 0 8px 30px rgba(0,0,0,0.3);
  transition: all 0.4s var(--ease);
}
.team-photo:hover {
  box-shadow: 0 0 40px rgba(200,165,94,0.25), 0 8px 30px rgba(0,0,0,0.3);
  transform: scale(1.04);
}
.team-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.team-member h3 {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 4px;
}
.team-role {
  font-family: var(--font-sans);
  font-size: 12px;
  color: var(--gold);
  font-weight: 500;
  letter-spacing: 0.5px;
  margin-bottom: 20px;
}
.team-member ul {
  list-style: none;
  text-align: left;
  max-width: 320px;
  margin: 0 auto;
}
.team-member li {
  font-family: var(--font-sans);
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  padding: 5px 0 5px 16px;
  position: relative;
  line-height: 1.6;
}
.team-member li::before {
  content: '';
  position: absolute;
  left: 0; top: 11px;
  width: 4px; height: 4px;
  border-radius: var(--radius-full);
  background: var(--gold);
}

/* ---------- VISION TIMELINE (on dark) ---------- */
.vision-timeline {
  max-width: 700px;
  margin: 0 auto;
}
.vision-item {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 32px 24px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  border-radius: 8px;
  transition: background 0.3s;
}
.vision-item:last-child { border-bottom: none; }
.vision-item:hover {
  background: rgba(255,255,255,0.03);
}
.vision-item-link {
  text-decoration: none;
  cursor: pointer;
  background: rgba(200, 165, 94, 0.04);
  transition: background 0.3s;
}
.vision-item-link:hover {
  background: rgba(200, 165, 94, 0.10);
}
.vision-cta {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: var(--gold);
  margin-left: 16px;
  padding: 7px 14px;
  border: 1px solid rgba(200, 165, 94, 0.4);
  border-radius: 4px;
  white-space: nowrap;
  transition: background 0.3s, border-color 0.3s, transform 0.3s;
}
.vision-item-link:hover .vision-cta {
  background: rgba(200, 165, 94, 0.18);
  border-color: rgba(200, 165, 94, 0.7);
  transform: translateX(3px);
}
.vision-dot {
  width: 14px; height: 14px;
  border-radius: var(--radius-full);
  background: var(--dot-color);
  flex-shrink: 0;
  box-shadow: 0 0 12px color-mix(in srgb, var(--dot-color) 40%, transparent);
  transition: transform 0.3s;
}
.vision-dot.active {
  animation: pulse 2.5s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 8px color-mix(in srgb, var(--dot-color) 30%, transparent); }
  50% { box-shadow: 0 0 20px color-mix(in srgb, var(--dot-color) 50%, transparent); }
}
.vision-info { flex: 1; }
.vision-info h4 {
  font-family: var(--font-serif);
  font-size: 19px;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 2px;
}
.vision-location {
  font-family: var(--font-sans);
  font-size: 13px;
  color: rgba(255,255,255,0.5);
}
.vision-status {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}
/* Mobile: let each roadmap row wrap so the "View Page" CTA drops to its own line
   instead of being clipped off the right edge. */
@media (max-width: 768px) {
  .vision-item { flex-wrap: wrap; gap: 6px 14px; padding: 22px 16px; }
  .vision-cta { margin-left: 30px; margin-top: 6px; }
}

/* ---------- CTA SECTION (on dark) ---------- */
.section-cta {
  padding: 140px 0;
}
.cta-content {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}
.closing-tagline {
  font-family: var(--font-serif);
  font-size: clamp(26px, 4vw, 40px);
  font-weight: 500;
  color: var(--dark);
  font-style: italic;
  margin-bottom: 32px;
  line-height: 1.3;
}
.cta-divider {
  width: 60px;
  height: 2px;
  background: var(--gold);
  margin: 0 auto 32px;
}
/* ---------- VISION EXPERIENCES (4-callout block) ---------- */
.vision-experiences {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding-top: 28px;
  border-top: 1px solid rgba(26,23,20,0.08);
}
.vision-experience {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.vision-experience-label {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0;
}
.vision-experience-desc {
  font-family: var(--font-sans);
  font-size: 13px;
  color: var(--text-body);
  line-height: 1.6;
  margin: 0;
}

.cta-brand-line {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
}
.closing-name {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 500;
  color: var(--dark);
  margin-bottom: 8px;
}
.closing-contact {
  font-family: var(--font-sans);
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 40px;
}
/* ---------- CTA CARD BAND ----------
   The call-to-action lives inside a contained dark card on a cream section,
   sized like the divider image bands. Gold button + accents pop against black. */
.cta-card {
  max-width: 1120px;
  margin: 0 auto;
  background: var(--dark);
  border: 1px solid rgba(200,165,94,0.22);
  border-radius: var(--radius-xl);
  padding: 88px 40px;
  position: relative;
  overflow: hidden;
}
.cta-card .closing-tagline { color: var(--white); }
.cta-card .closing-name { color: var(--white); }
.cta-card .closing-contact { color: rgba(255,255,255,0.62); }
.cta-card .cta-brand-line { color: var(--gold); }
.cta-card .waitlist-desc { color: rgba(255,255,255,0.72); }
.cta-card .waitlist-success { color: var(--white); }
@media (max-width: 768px) {
  .cta-card { padding: 56px 24px; border-radius: var(--radius-lg); }
}
.btn-primary {
  display: inline-block;
  padding: 18px 44px;
  background: var(--gold);
  color: var(--dark);
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  transition: all 0.4s var(--ease);
  box-shadow: 0 4px 20px rgba(200,165,94,0.25);
  position: relative;
}
.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
  box-shadow: 0 8px 32px rgba(200,165,94,0.35);
}
.btn-primary:active {
  transform: translateY(0) scale(0.98);
}
.btn-primary.dark {
  background: var(--dark);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(26,23,20,0.15);
}
.btn-primary.dark:hover {
  background: var(--dark-hover);
  box-shadow: 0 8px 30px rgba(26,23,20,0.25);
}

/* Secondary CTA — gold outline, transparent fill, recedes behind primary */
.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
/* Equalize button widths so primary and secondary CTAs align visually */
.cta-buttons .btn-primary,
.cta-buttons .btn-secondary {
  min-width: 240px;
  text-align: center;
}
/* On mobile, both buttons stretch to match the same width (no orphan widths) */
@media (max-width: 600px) {
  .cta-buttons {
    flex-direction: column;
    align-items: stretch;
  }
  .cta-buttons .btn-primary,
  .cta-buttons .btn-secondary {
    width: 100%;
    min-width: 0;
  }
}
.btn-secondary {
  display: inline-block;
  padding: 18px 40px;
  background: var(--dark);
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  border: 1px solid var(--dark);
  transition: all 0.4s var(--ease);
  box-shadow: 0 4px 20px rgba(26,23,20,0.18);
}
.btn-secondary:hover {
  background: var(--dark-hover);
  border-color: var(--dark-hover);
  transform: translateY(-1px);
  box-shadow: 0 8px 30px rgba(26,23,20,0.28);
}
.btn-secondary:active { transform: translateY(0) scale(0.98); }

/* ---------- FOOTER ---------- */
.footer {
  background: var(--off-white);
  padding: 36px 0;
  border-top: 1px solid rgba(26,23,20,0.10);
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}
.footer-portfolio-nav {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-sans);
  font-size: 12px;
}
.footer-portfolio-nav a {
  color: var(--text-muted);
  text-decoration: none;
  letter-spacing: 0.3px;
  transition: color 0.3s;
}
.footer-portfolio-nav a:hover,
.footer-portfolio-nav a.active {
  color: var(--gold);
}
.footer-sep {
  color: rgba(26,23,20,0.22);
}
.footer-brand {
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 700;
  color: var(--dark);
  letter-spacing: 0.15em;
}
.footer-brand span { color: var(--gold); font-weight: 300; }
.footer-tagline {
  font-family: var(--font-sans);
  font-size: 12px;
  color: var(--text-muted);
  letter-spacing: 0.3px;
  margin-top: 5px;
}

/* ---------- SCROLL ANIMATIONS ---------- */
.reveal-up,
.reveal-left,
.reveal-right,
.reveal-scale {
  opacity: 0;
  transition: opacity 0.9s var(--ease),
              transform 0.9s var(--ease);
  will-change: opacity, transform;
}
.reveal-up { transform: translateY(50px); }
.reveal-left { transform: translateX(-50px); }
.reveal-right { transform: translateX(50px); }
.reveal-scale { transform: scale(0.94); }
.reveal-up.visible,
.reveal-left.visible,
.reveal-right.visible,
.reveal-scale.visible {
  opacity: 1;
  transform: translate(0) scale(1);
}
.delay-1 { transition-delay: 0.15s; }
.delay-2 { transition-delay: 0.3s; }
.delay-3 { transition-delay: 0.45s; }
.delay-4 { transition-delay: 0.6s; }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
  .section { padding: 100px 0; }
  .split-section { gap: 56px; }
  .split-image img { height: 400px; }
  .production-slideshow { height: 400px; }
  .venue-card { flex: 0 0 280px; }
  .venue-card:hover { flex: 0 0 70vw; }
  .highlight-cards { gap: 20px; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .task-flow { grid-template-columns: repeat(2, 1fr); gap: 48px 32px; }
  .task-flow-line { display: none; }
  .section-header { margin-bottom: 56px; }

  /* Hamburger nav — engages early so the desktop bar never gets squeezed */
  .nav.scrolled {
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
  }
  .nav-links {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: var(--dark);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 28px;
    z-index: 1000;
  }
  .nav-links.open { display: flex; }
  .nav-links a { font-size: 18px; }
  .nav-links a::after { display: none; }
  .nav-toggle { display: flex; z-index: 1001; position: relative; }
}

@media (max-width: 768px) {
  .container { padding: 0 24px; }
  .section { padding: 80px 0; }
  .section-cta { padding: 80px 0 !important; }
  .section-header { margin-bottom: 48px; }

  .split-section,
  .split-section.reverse {
    flex-direction: column;
    gap: 36px;
  }
  /* On mobile EVERY split reads copy-then-image (eyebrow + title set context,
     then the visual) — regardless of desktop left/right orientation or DOM order.
     Using `order` instead of column/column-reverse makes this consistent across
     all sections, normal or reversed. */
  .split-content { order: 0; }
  .split-image { order: 1; }
  .split-image img { height: 300px; }
  .production-slideshow { height: 300px; }
  .venue-card { flex: 0 0 260px; height: 50vh; }
  .venue-card:hover { flex: 0 0 85vw; }
  .venue-gallery-scroll { padding: 0 24px 36px; }
  .venue-gallery-header { flex-direction: column; gap: 4px; margin-bottom: 16px; }
  .venue-lightbox-content { padding: 60px 20px; }
  .venue-lightbox-prev { left: 8px; }
  .venue-lightbox-next { right: 8px; }

  .stats-grid {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
  }
  .stat-card { margin: 0; }
  .stat-divider { width: 60px; height: 1px; margin: 0 auto; }

  .pillars-grid { grid-template-columns: 1fr; }
  .process-card { flex-direction: column; gap: 12px; }
  .process-card h4 { min-width: unset; padding-top: 0; }
  .highlight-cards { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; gap: 48px; }
  .task-flow { grid-template-columns: 1fr; gap: 40px; }
  .imax-stats-row { grid-template-columns: 1fr; gap: 24px; }
  .imax-example { flex-direction: column; align-items: flex-start; gap: 4px; }
  .imax-film-result { text-align: left; }
  .imax-track-record { padding: 28px; }

  .parallax-content { padding: 40px 24px; }
  .panama-stats { grid-template-columns: 1fr; }
  .panama-stat { border-bottom: 1px solid rgba(26,23,20,0.08); }

  .footer-inner { flex-direction: column; gap: 12px; text-align: center; }
}

@media (max-width: 480px) {
  .hero-content { padding: 0 20px; }
  .team-photo { width: 130px; height: 130px; }
}

/* ============================================================
   BATCH 2 — New sections (VR Gallery, Restaurant, Venue map, IMAX movie grid)
   ============================================================ */

/* ---------- IMAX Movie Grid (Why IMAX section) ---------- */
.imax-track-record-sub {
  font-size: 14px;
  color: #6B655C;
  text-align: center;
  max-width: 600px;
  margin: 0 auto 32px;
  line-height: 1.6;
}
.movie-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  margin-top: 24px;
}
.movie-card {
  display: flex;
  flex-direction: column;
  border-radius: 8px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(26,23,20,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.movie-card:hover {
  transform: none;
  box-shadow: 0 8px 24px rgba(26,23,20,0.12);
}
.movie-card-poster {
  aspect-ratio: 2 / 3;
  background: var(--dark);
  position: relative;
  overflow: hidden;
}
.movie-card-poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.movie-card-imax {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 4px;
  color: var(--gold);
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}
.movie-card-title {
  font-family: var(--font-serif);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.3;
  color: #F5EFE3;
  position: relative;
  z-index: 1;
}
.movie-card-meta {
  padding: 14px 12px 18px;
  text-align: center;
}
.movie-card-name {
  font-family: var(--font-serif);
  font-size: 14px;
  font-weight: 500;
  color: var(--dark);
  margin: 0 0 8px !important;
  line-height: 1.25;
  /* Reserve 2 lines worth of height in absolute px so single-line and
     two-line titles align across all 6 cards regardless of breakpoint. */
  min-height: 35px;
}
.movie-card-meta p {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  color: #6B655C;
  margin: 0;
  line-height: 1.6;
}
.movie-card-bo {
  color: var(--dark) !important;
  font-weight: 600 !important;
}
.movie-card-source {
  font-size: 9px !important;
  color: #B5AFA6 !important;
  font-style: italic;
  letter-spacing: 0.2px;
  margin-top: 8px !important;
  text-transform: none;
}

/* ---------- VR 360 Gallery — supporting strip ---------- */
.vr-gallery-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 64px;
}
.vr-gallery-strip-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 16 / 10;
  cursor: default;
}
.vr-gallery-strip-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.vr-gallery-strip-item:hover img { transform: scale(1.04); }
.vr-gallery-strip-item span {
  position: absolute;
  left: 16px;
  bottom: 14px;
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-shadow: 0 2px 12px rgba(0,0,0,0.6);
  z-index: 1;
}
.vr-gallery-strip-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.55) 0%, transparent 50%);
  pointer-events: none;
}

/* ---------- Pillar Hero pattern (Voyager + VR Gallery + Restaurant) ---------- */
.section-rooftop,
.section-vrgallery,
.section-voyager { background: var(--off-white); }
.rooftop-hero,
.gallery-hero {
  position: relative;
  width: 100%;
  height: 85vh;
  min-height: 560px;
  overflow: hidden;
}
.rooftop-hero img,
.gallery-hero img,
.parallax-bg img {
  animation: rooftopKenBurns 16s ease-in-out infinite alternate;
  transform-origin: center 60%;
  will-change: transform;
}
.rooftop-hero img,
.gallery-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
@keyframes rooftopKenBurns {
  0%   { transform: scale(1.02) translate(0, 0); }
  100% { transform: scale(1.14) translate(-2%, -2%); }
}
@media (prefers-reduced-motion: reduce) {
  .rooftop-hero img,
  .gallery-hero img,
  .parallax-bg img { animation: none; transform: none; }
}

/* Center the couple-dining image so both faces are visible */
.section-rooftop .split-image img {
  object-position: 65% center;
}
.rooftop-hero-overlay,
.gallery-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.15) 50%, rgba(0,0,0,0.4) 100%);
}
.rooftop-hero-content,
.gallery-hero-content {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 64px;
  padding: 0 32px;
  text-align: center;
  color: var(--white);
}
.rooftop-eyebrow,
.gallery-hero-eyebrow {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.rooftop-title,
.gallery-hero-title {
  font-family: var(--font-serif);
  font-size: clamp(32px, 4.5vw, 48px);
  font-weight: 500;
  line-height: 1.1;
  margin-bottom: 14px;
  text-shadow: 0 2px 24px rgba(0,0,0,0.4);
}
.rooftop-subtitle,
.gallery-hero-subtitle {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(14px, 1.8vw, 18px);
  letter-spacing: 0.5px;
  color: rgba(255,255,255,0.9);
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.4;
}

/* ---------- Venue map split + placeholder note ---------- */
.venue-map-wrap {
  position: relative;
  overflow: hidden;
  background: var(--white);
  padding: 8px;
  border: 1px solid rgba(26,23,20,0.08);
}
.venue-map-image {
  position: relative;
  aspect-ratio: 1 / 1;
  width: 100%;
  transform: scale(1.15);
  transform-origin: center;
}
.venue-map-image picture {
  display: block;
  width: 100%;
  height: 100%;
}
.venue-map-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
/* Venue marker: red pulsing ring (primary, "in this area") */
.venue-map-marker {
  position: absolute;
  top: 44%;
  left: 31%;
  width: 10%;
  aspect-ratio: 1;
  border: 3px solid #C44535;
  border-radius: var(--radius-full);
  background: rgba(196, 69, 53, 0.20);
  box-shadow: 0 0 0 4px rgba(196, 69, 53, 0.10);
  pointer-events: none;
  transform: translate(-50%, -50%);
  animation: venue-marker-pulse 2.4s ease-in-out infinite;
  z-index: 3;
}
/* Acropolis halo: wider, matching thickness, wraps the full label */
.venue-map-acropolis-halo {
  position: absolute;
  top: 58%;
  left: 49%;
  width: 23%;
  aspect-ratio: 1;
  border: 3px solid rgba(200, 165, 94, 0.70);
  border-radius: var(--radius-full);
  background: rgba(200, 165, 94, 0.10);
  pointer-events: none;
  transform: translate(-50%, -50%);
  animation: acropolis-halo-pulse 3s ease-in-out infinite;
  z-index: 3;
}
@keyframes venue-marker-pulse {
  0%, 100% { transform: translate(-50%, -50%) scale(1);    opacity: 1;    }
  50%      { transform: translate(-50%, -50%) scale(1.12); opacity: 0.65; }
}
@keyframes acropolis-halo-pulse {
  0%, 100% { transform: translate(-50%, -50%) scale(1);    opacity: 0.90; }
  50%      { transform: translate(-50%, -50%) scale(1.08); opacity: 0.55; }
}
@media (prefers-reduced-motion: reduce) {
  .venue-map-marker,
  .venue-map-acropolis-halo { animation: none; }
}
/* (legacy .placeholder-note gold-stroke rule removed; styling lives in invest.css) */

/* ---------- Responsive: tablet ---------- */
@media (max-width: 1024px) {
  .movie-grid { grid-template-columns: repeat(3, 1fr); gap: 14px; }
  .vr-gallery-strip { gap: 16px; }
}

/* ---------- Responsive: mobile ---------- */
@media (max-width: 768px) {
  .movie-grid { grid-template-columns: repeat(2, 1fr); }
  .vr-gallery-strip { grid-template-columns: 1fr; gap: 16px; margin-top: 40px; }
  .rooftop-hero,
  .gallery-hero { height: 70vh; min-height: 460px; }
  .rooftop-hero-content,
  .gallery-hero-content { bottom: 40px; padding: 0 24px; }
}

@media (max-width: 480px) {
  .movie-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .movie-card-title { font-size: 13px; }
  /* Scope the smaller-text override to stats / box-office / source only,
     so .movie-card-name keeps its declared 14px and 35px min-height holds. */
  .movie-card-meta p:not(.movie-card-name) { font-size: 11px; }
}

/* ---------- WAITLIST (consumer pages) ---------- */
.waitlist-desc {
  font-family: var(--font-sans);
  font-size: 15px;
  color: var(--text-body);
  line-height: 1.7;
  max-width: 460px;
  margin: 0 auto 32px;
}
.waitlist-form {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 520px;
  margin: 0 auto;
}
.waitlist-input {
  flex: 1 1 260px;
  min-width: 0;
  padding: 17px 20px;
  font-family: var(--font-sans);
  font-size: 15px;
  color: var(--dark);
  background: var(--white);
  border: 1px solid rgba(26,23,20,0.18);
  border-radius: var(--radius-sm);
  transition: border-color 0.3s, box-shadow 0.3s;
}
.waitlist-input::placeholder { color: var(--text-subtle); }
.waitlist-input:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(200,165,94,0.18);
}
.waitlist-btn { border: none; cursor: pointer; flex: 0 0 auto; }
.waitlist-success {
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 600;
  color: var(--dark);
  margin: 24px auto 0;
}
@media (max-width: 600px) {
  .waitlist-form { flex-direction: column; align-items: stretch; }
  /* In a column the 260px flex-basis would become the input's HEIGHT — pin it to auto */
  .waitlist-input { flex: 0 0 auto; }
  .waitlist-btn { width: 100%; }
}

/* ============================================================
   PHASE 2–3 — EDITORIAL REDESIGN (home + ksa) · 2026-06-06
   De-cards boxed grids + adds bespoke editorial moments.
   ============================================================ */

/* Four themes → numbered editorial sequence (Story) */
.story-intro { margin-bottom: 8px; }
.theme-sequence { margin-top: 64px; border-top: 1px solid var(--border-strong); }
.theme-row {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 32px;
  align-items: baseline;
  padding: 34px 4px;
  border-bottom: 1px solid var(--border-strong);
  transition: background 0.4s var(--ease);
}
.theme-row:hover { background: rgba(200,165,94,0.04); }
.theme-num {
  font-family: var(--font-serif);
  font-size: clamp(32px, 4vw, 50px);
  font-weight: 500;
  color: var(--gold-link);
  line-height: 1;
  letter-spacing: -0.5px;
}
.theme-detail h4 {
  font-family: var(--font-serif);
  font-size: clamp(22px, 2.6vw, 30px);
  font-weight: 500;
  color: var(--dark);
  margin: 0 0 8px;
}
.theme-detail p {
  font-family: var(--font-sans);
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-body);
  max-width: 640px;
  margin: 0;
}
@media (max-width: 768px) {
  .theme-sequence { margin-top: 40px; }
  .theme-row { grid-template-columns: 50px 1fr; gap: 18px; padding: 26px 2px; }
}

/* De-card Panama highlight cards → open editorial columns */
.highlight-cards { gap: 48px; }
.highlight-card {
  padding: 28px 0 0;
  background: none;
  border: none;
  border-top: 1px solid var(--border-strong);
  border-radius: 0;
  box-shadow: none;
  text-align: left;
}
.highlight-card:hover { box-shadow: none; border-color: var(--gold); }
.highlight-icon { margin: 0 0 18px; }

/* Margin metrics (invest): opt back into boxed cards — overrides the de-card above */
.highlight-cards--boxed .highlight-card {
  padding: 44px 32px;
  background: var(--white);
  border: 1px solid rgba(26,23,20,0.06);
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}
.highlight-cards--boxed .highlight-card:hover {
  box-shadow: 0 20px 56px rgba(0,0,0,0.08);
  border-color: rgba(200,165,94,0.3);
}

/* Positron credentials → editorial spec rows */
.tech-credential { border-top: 1px solid var(--border-strong); padding-top: 16px; }

/* Greece gallery → cinematic montage (feature tile + flowing grid) */
.gallery-grid {
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 232px;
  gap: 14px;
}
.gallery-item { aspect-ratio: auto; height: 100%; }
.gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 2; }
@media (max-width: 768px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 150px; gap: 10px; }
  .gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 1; }
}
