/* ═══════════════════════════════════════════════
   SAYLORFILMS — Luxury White Edition
   Ivory · Cream · Gold · Navy Accents
═══════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500;1,600&family=DM+Sans:wght@300;400;500;600&family=Cormorant+Garamond:ital,wght@0,300;0,400;1,300;1,400&display=swap');

:root {
  --ivory:       #fbf8f3;
  --cream:       #f5efe6;
  --warm-white:  #fdfcf9;
  --white:       #ffffff;
  --gold:        #b8923c;
  --gold-light:  #d4af67;
  --gold-pale:   #f0e4c4;
  --navy:        #0a1730;
  --navy-mid:    #18243d;
  --charcoal:    #2a2a2a;
  --text:        #1f2937;
  --text-mid:    #4b5563;
  --text-light:  #6b7280;
  --text-soft:   rgba(31,41,55,0.55);
  --border:      rgba(184,146,60,0.18);
  --border-soft: rgba(0,0,0,0.06);
  --transition:  all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--warm-white);
  color: var(--text);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb { background: var(--gold); }
::selection { background: var(--gold); color: var(--white); }

img { max-width: 100%; display: block; }
video { display: block; }

/* ═══════════════════════════════════════════
   NAVIGATION
═══════════════════════════════════════════ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 20px 60px;
  display: flex; align-items: center; justify-content: space-between;
  transition: var(--transition);
  background: rgba(253,252,249,0.0);
}
.nav.scrolled {
  background: rgba(253,252,249,0.97);
  backdrop-filter: blur(20px);
  padding: 14px 60px;
  box-shadow: 0 1px 0 var(--border-soft);
}
/* On dark hero pages, nav text starts white, fades to dark on scroll */
.nav.over-dark .nav-links a,
.nav.over-dark .nav-cta { color: rgba(255,255,255,0.85); }
.nav.over-dark .nav-cta { border-color: rgba(255,255,255,0.5) !important; }
.nav.scrolled .nav-links a,
.nav.scrolled .nav-cta { color: var(--text); }
.nav.scrolled .nav-cta { border-color: var(--gold) !important; color: var(--gold) !important; }

.nav-logo {
  display: flex; align-items: center;
  text-decoration: none;
  transition: opacity 0.3s;
}
.nav-logo:hover { opacity: 0.8; }
.nav-logo { position: relative; min-width: 240px; min-height: 76px; }
.nav-logo img.light { height: 76px; width: auto; display: block; transition: opacity 0.4s, height 0.4s; filter: drop-shadow(0 2px 12px rgba(0,0,0,0.4)); }
.nav-logo img.dark { height: 76px; width: auto; position: absolute; top: 0; left: 0; opacity: 0; pointer-events: none; transition: opacity 0.4s, height 0.4s; }
.nav.scrolled .nav-logo img.light { opacity: 0; }
.nav.scrolled .nav-logo img.dark { opacity: 1; height: 60px; }
.nav.scrolled .nav-logo { min-height: 60px; }

.nav-links {
  display: flex; gap: 38px; list-style: none; align-items: center;
}
.nav-links a {
  text-decoration: none;
  color: var(--text);
  font-size: 12px; font-weight: 500;
  letter-spacing: 2.5px; text-transform: uppercase;
  transition: color 0.3s;
  position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -6px; left: 50%;
  width: 0; height: 1px; background: var(--gold);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}
.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after, .nav-links a.active::after { width: 24px; }
.nav-cta {
  border: 1px solid var(--gold) !important;
  color: var(--gold) !important;
  padding: 11px 26px; border-radius: 0;
  transition: var(--transition) !important;
}
.nav-cta:hover {
  background: var(--gold) !important;
  color: var(--white) !important;
}
.nav-cta::after { display: none !important; }

.nav-hamburger {
  display: none; flex-direction: column; gap: 5px; cursor: pointer;
  background: none; border: none; padding: 4px;
}
.nav-hamburger span {
  display: block; width: 26px; height: 1.5px;
  background: var(--text); transition: var(--transition);
}
.nav.over-dark .nav-hamburger span { background: var(--white); }
.nav.scrolled .nav-hamburger span { background: var(--text); }

.nav-mobile {
  display: none; position: fixed; inset: 0; z-index: 999;
  background: var(--warm-white); flex-direction: column;
  align-items: center; justify-content: center; gap: 32px;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  font-family: 'Playfair Display', serif;
  font-size: 32px; color: var(--text);
  text-decoration: none; letter-spacing: 1px;
  transition: color 0.3s;
}
.nav-mobile a:hover { color: var(--gold); }
.nav-mobile-close {
  position: absolute; top: 30px; right: 40px;
  background: none; border: none; color: var(--text);
  font-size: 28px; cursor: pointer;
}

/* ═══════════════════════════════════════════
   HERO — VIDEO BACKGROUND
═══════════════════════════════════════════ */
.hero {
  position: relative;
  height: 100vh; min-height: 720px;
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  background: var(--navy);
}
.hero-video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; z-index: 0;
}

/* Multi-video hero rotation */
.hero-video-stack {
  position: absolute; inset: 0; z-index: 0;
  overflow: hidden;
}
.hero-video-stack .hv {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 1.6s ease-in-out, transform 9s ease-out;
  pointer-events: none;
}
.hero-video-stack .hv.active {
  opacity: 1;
  transform: scale(1);
  z-index: 1;
}

/* Progress bars at top of hero */
.hero-progress {
  position: absolute;
  top: 110px; left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex; gap: 6px;
  width: min(560px, 70vw);
}
.hp-bar {
  flex: 1; height: 1.5px;
  background: rgba(255,255,255,0.2);
  position: relative;
  overflow: hidden;
}
.hp-bar::after {
  content: ''; position: absolute;
  top: 0; left: 0; bottom: 0; width: 0%;
  background: var(--gold-light);
  transition: width 0.1s linear;
}
.hp-bar.active::after { width: 100%; transition: width var(--rotate-duration, 6s) linear; }
.hp-bar.done::after { width: 100%; }
.hero-video-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(
    to bottom,
    rgba(10,23,48,0.35) 0%,
    rgba(10,23,48,0.15) 35%,
    rgba(10,23,48,0.55) 100%
  );
}
.hero-content {
  position: relative; z-index: 2;
  text-align: center; padding: 0 40px;
  max-width: 1000px;
  color: var(--white);
}
.hero-eyebrow {
  font-family: 'Cormorant Garamond', serif;
  font-size: 14px; font-weight: 300;
  letter-spacing: 8px; text-transform: uppercase;
  color: var(--gold-light); margin-bottom: 28px;
  opacity: 0; animation: fadeUp 1s 0.5s forwards;
}
.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(56px, 8vw, 112px);
  font-weight: 400; line-height: 1.05;
  letter-spacing: -1.5px; margin-bottom: 32px;
  opacity: 0; animation: fadeUp 1s 0.8s forwards;
  text-shadow: 0 2px 30px rgba(0,0,0,0.3);
}
.hero h1 em { font-style: italic; color: var(--gold-light); font-weight: 400; }
.hero-sub {
  font-size: 16px; font-weight: 300;
  letter-spacing: 2px; color: rgba(255,255,255,0.85);
  margin-bottom: 52px; max-width: 540px; margin-left: auto; margin-right: auto;
  line-height: 1.9;
  opacity: 0; animation: fadeUp 1s 1.1s forwards;
}
.hero-actions {
  display: flex; gap: 20px; justify-content: center; flex-wrap: wrap;
  opacity: 0; animation: fadeUp 1s 1.4s forwards;
}
.hero-scroll {
  position: absolute; bottom: 36px; left: 50%; transform: translateX(-50%);
  z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 10px;
  opacity: 0; animation: fadeUp 1s 2s forwards;
}
.hero-scroll span {
  font-size: 9px; letter-spacing: 5px; text-transform: uppercase;
  color: rgba(255,255,255,0.7);
}
.scroll-line {
  width: 1px; height: 52px;
  background: linear-gradient(to bottom, var(--gold-light), transparent);
  animation: scrollPulse 2.2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.7); }
  50%       { opacity: 1;   transform: scaleY(1); }
}

/* ═══════════════════════════════════════════
   BUTTONS
═══════════════════════════════════════════ */
.btn-gold {
  background: var(--gold);
  color: var(--white);
  padding: 17px 42px;
  border: none; cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  font-size: 11px; font-weight: 600;
  letter-spacing: 3.5px; text-transform: uppercase;
  text-decoration: none; display: inline-block;
  transition: var(--transition);
}
.btn-gold:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(184,146,60,0.4);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  padding: 16px 42px;
  border: 1px solid rgba(255,255,255,0.6);
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  font-size: 11px; font-weight: 600;
  letter-spacing: 3.5px; text-transform: uppercase;
  text-decoration: none; display: inline-block;
  transition: var(--transition);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
}
.btn-outline-dark {
  background: transparent;
  color: var(--text);
  padding: 16px 42px;
  border: 1px solid var(--text);
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  font-size: 11px; font-weight: 600;
  letter-spacing: 3.5px; text-transform: uppercase;
  text-decoration: none; display: inline-block;
  transition: var(--transition);
}
.btn-outline-dark:hover {
  background: var(--text);
  color: var(--white);
}

/* ═══════════════════════════════════════════
   SECTION COMMONS
═══════════════════════════════════════════ */
section { padding: 140px 60px; background: var(--warm-white); }
.section-eyebrow {
  font-family: 'Cormorant Garamond', serif;
  font-size: 13px; font-weight: 300;
  letter-spacing: 7px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 20px;
  display: inline-block;
  position: relative; padding-left: 36px;
}
.section-eyebrow::before {
  content: ''; position: absolute; left: 0; top: 50%;
  width: 24px; height: 1px; background: var(--gold);
  transform: translateY(-50%);
}
.section-eyebrow.center { padding-left: 0; }
.section-eyebrow.center::before { display: none; }
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(40px, 5.5vw, 76px);
  font-weight: 400; line-height: 1.1;
  letter-spacing: -1px; color: var(--text);
}
.section-title em { font-style: italic; color: var(--gold); }
.section-body {
  font-size: 16px; line-height: 1.95;
  color: var(--text-mid); font-weight: 400;
  max-width: 580px;
}
.gold-rule {
  width: 60px; height: 1px; background: var(--gold);
  margin: 28px 0;
}
.gold-rule.center { margin-left: auto; margin-right: auto; }
.container { max-width: 1320px; margin: 0 auto; }

/* ═══════════════════════════════════════════
   VIDEO SHOWCASE — POP OUT EFFECT
═══════════════════════════════════════════ */
.video-showcase {
  position: relative;
  background: var(--warm-white);
  padding: 140px 60px;
  overflow: hidden;
}
.video-showcase.dark {
  background: var(--navy);
}
.video-showcase.dark .section-title { color: var(--white); }
.video-showcase.dark .section-body { color: rgba(255,255,255,0.7); }

.showcase-inner {
  max-width: 1400px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 100px; align-items: center;
}
.showcase-inner.reverse { direction: rtl; }
.showcase-inner.reverse > * { direction: ltr; }
.showcase-text { padding: 20px 0; }

.showcase-media {
  position: relative; overflow: hidden;
  aspect-ratio: 4/5;
}
.showcase-media video,
.showcase-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transform: scale(1.08);
  transition: transform 1.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.showcase-media.in-view video,
.showcase-media.in-view img { transform: scale(1.0); }

.showcase-media::after {
  content: ''; position: absolute;
  top: -24px; left: -24px; right: -24px; bottom: -24px;
  border: 1px solid var(--gold);
  z-index: -1; pointer-events: none;
  opacity: 0.4;
}
.showcase-number {
  position: absolute; bottom: -50px; right: -10px;
  font-family: 'Playfair Display', serif;
  font-size: 160px; font-weight: 400; font-style: italic;
  color: rgba(184,146,60,0.12);
  line-height: 1; z-index: 0; pointer-events: none;
  user-select: none;
}
.video-showcase.dark .showcase-number { color: rgba(212,175,103,0.08); }

/* ═══════════════════════════════════════════
   THE "FIREWORKS" — VIDEOS REVEALING UNDER TEXT
   This is the Amari scroll effect Cal loves.
═══════════════════════════════════════════ */
.fireworks-section {
  position: relative;
  background: var(--navy);
  padding: 0;
  overflow: hidden;
}
.fireworks-slot {
  position: relative;
  min-height: 90vh;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.fireworks-slot video,
.fireworks-slot img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0;
  transform: scale(1.1);
  transition: opacity 1.5s ease, transform 2s ease;
}
.fireworks-slot.in-view video,
.fireworks-slot.in-view img {
  opacity: 1; transform: scale(1.02);
}
.fireworks-slot::before {
  content: ''; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(
    180deg,
    rgba(10,23,48,0.45) 0%,
    rgba(10,23,48,0.25) 50%,
    rgba(10,23,48,0.6) 100%
  );
}
.fireworks-text {
  position: relative; z-index: 2;
  text-align: center; padding: 0 40px;
  color: var(--white); max-width: 900px;
}
.fireworks-text .section-eyebrow {
  color: var(--gold-light);
  padding-left: 0;
}
.fireworks-text .section-eyebrow::before { display: none; }
.fireworks-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(44px, 6vw, 88px);
  font-weight: 400; line-height: 1.1;
  letter-spacing: -1px; color: var(--white);
  margin: 16px 0 24px;
}
.fireworks-text h2 em { font-style: italic; color: var(--gold-light); }
.fireworks-text p {
  font-size: 17px; line-height: 1.9;
  max-width: 580px; margin: 0 auto 36px;
  color: rgba(255,255,255,0.88);
}

/* ═══════════════════════════════════════════
   SERVICES / FEATURES
═══════════════════════════════════════════ */
.feature-cards {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border-soft);
}
.feature-card {
  background: var(--warm-white);
  padding: 70px 50px;
  text-align: center;
  transition: var(--transition);
}
.feature-card:hover {
  background: var(--cream);
  transform: translateY(-4px);
}
.feature-icon {
  width: 64px; height: 64px;
  margin: 0 auto 28px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--gold);
  border-radius: 50%;
  color: var(--gold);
  font-size: 22px;
}
.feature-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 24px; font-weight: 400;
  color: var(--text); margin-bottom: 16px;
}
.feature-card p {
  font-size: 14px; line-height: 1.85;
  color: var(--text-mid);
}

/* ═══════════════════════════════════════════
   VIDEO TILE GRID — for wedding portfolio
═══════════════════════════════════════════ */
.video-tile-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 90px;
  gap: 4px;
  background: var(--warm-white);
}
.video-tile {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  background: var(--navy);
}
.video-tile video,
.video-tile img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.2s cubic-bezier(0.25,0.46,0.45,0.94);
}
.video-tile:hover video,
.video-tile:hover img { transform: scale(1.06); }
.video-tile-overlay {
  position: absolute; inset: 0; z-index: 2;
  background: linear-gradient(to top, rgba(10,23,48,0.85) 0%, transparent 55%);
  display: flex; flex-direction: column;
  justify-content: flex-end; padding: 26px 28px;
  opacity: 0;
  transition: opacity 0.4s;
}
.video-tile:hover .video-tile-overlay { opacity: 1; }
.video-tile-eyebrow {
  font-size: 10px; letter-spacing: 4px; text-transform: uppercase;
  color: var(--gold-light); margin-bottom: 6px;
}
.video-tile-title {
  font-family: 'Playfair Display', serif;
  font-size: 22px; color: var(--white); font-weight: 400;
}
.video-tile-play {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%,-50%) scale(0.75);
  width: 64px; height: 64px; border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.7);
  background: rgba(255,255,255,0.1); backdrop-filter: blur(6px);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; z-index: 2;
  transition: all 0.5s cubic-bezier(0.25,0.46,0.45,0.94);
  pointer-events: none;
}
.video-tile-play svg { width: 18px; height: 18px; fill: var(--white); margin-left: 3px; }
.video-tile:hover .video-tile-play { transform: translate(-50%,-50%) scale(1); opacity: 1; }

/* tile spans */
.t-2x2 { grid-column: span 6; grid-row: span 5; }
.t-1x1 { grid-column: span 3; grid-row: span 3; }
.t-2x1 { grid-column: span 6; grid-row: span 3; }
.t-1x2 { grid-column: span 4; grid-row: span 5; }
.t-3x1 { grid-column: span 4; grid-row: span 3; }
.t-2x3 { grid-column: span 8; grid-row: span 4; }
.t-1x3 { grid-column: span 4; grid-row: span 4; }
.t-wide { grid-column: span 12; grid-row: span 4; }

/* ═══════════════════════════════════════════
   IMAGE PORTFOLIO MASONRY
═══════════════════════════════════════════ */
.portfolio-masonry {
  columns: 3;
  column-gap: 4px;
}
.portfolio-masonry-item {
  break-inside: avoid;
  margin-bottom: 4px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.portfolio-masonry-item img {
  width: 100%; display: block;
  transition: transform 0.9s cubic-bezier(0.25,0.46,0.45,0.94);
}
.portfolio-masonry-item:hover img { transform: scale(1.04); }
.portfolio-masonry-item::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,23,48,0.4) 0%, transparent 40%);
  opacity: 0; transition: opacity 0.4s;
}
.portfolio-masonry-item:hover::after { opacity: 1; }

/* ═══════════════════════════════════════════
   TESTIMONIALS
═══════════════════════════════════════════ */
.testimonial-section {
  background: var(--cream);
  text-align: center;
  position: relative;
  padding: 160px 60px;
}
.testimonial-quote {
  font-family: 'Playfair Display', serif;
  font-size: clamp(24px, 3.2vw, 42px);
  font-style: italic; font-weight: 400;
  line-height: 1.55; color: var(--text);
  max-width: 920px; margin: 0 auto 40px;
  position: relative;
}
.testimonial-quote::before {
  content: '\201C';
  font-size: 140px; line-height: 0;
  color: var(--gold); opacity: 0.5;
  position: absolute; top: 38px; left: -50px;
  font-family: 'Playfair Display', serif;
}
.testimonial-author {
  font-size: 12px; letter-spacing: 5px;
  text-transform: uppercase; color: var(--gold);
  font-weight: 500;
}
.testimonial-dots {
  display: flex; gap: 10px; justify-content: center;
  margin-top: 44px;
}
.t-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: rgba(184,146,60,0.3); cursor: pointer;
  transition: all 0.3s;
}
.t-dot.active { background: var(--gold); transform: scale(1.4); }

/* ═══════════════════════════════════════════
   STATS BAR
═══════════════════════════════════════════ */
.stats-bar {
  background: var(--warm-white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 100px 60px;
}
.stats-grid {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 60px; max-width: 1100px; margin: 0 auto;
  text-align: center;
}
.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 72px; font-weight: 400; font-style: italic;
  color: var(--gold); line-height: 1;
  margin-bottom: 16px;
}
.stat-label {
  font-size: 11px; letter-spacing: 4px;
  text-transform: uppercase; color: var(--text-light);
  font-weight: 500;
}

/* ═══════════════════════════════════════════
   MARQUEE
═══════════════════════════════════════════ */
.marquee-wrap {
  overflow: hidden;
  padding: 28px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--ivory);
}
.marquee-track {
  display: flex; gap: 70px;
  animation: marquee 32s linear infinite;
  white-space: nowrap;
}
.marquee-track span {
  font-family: 'Playfair Display', serif;
  font-size: 14px; font-style: italic;
  letter-spacing: 5px; color: var(--text-light);
  text-transform: uppercase;
  font-weight: 400;
}
.marquee-track .dot {
  color: var(--gold); font-style: normal;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ═══════════════════════════════════════════
   FULL-BLEED CTA WITH VIDEO BG
═══════════════════════════════════════════ */
.cta-section {
  position: relative; overflow: hidden;
  padding: 200px 60px; text-align: center;
}
.cta-video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; z-index: 0;
}
.cta-section::after {
  content: ''; position: absolute; inset: 0;
  background: rgba(10,23,48,0.65); z-index: 1;
}
.cta-content { position: relative; z-index: 2; color: var(--white); }
.cta-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(44px, 6vw, 88px);
  font-weight: 400; margin-bottom: 28px; line-height: 1.05;
  color: var(--white);
}
.cta-content h2 em { font-style: italic; color: var(--gold-light); }
.cta-content p {
  font-size: 17px; color: rgba(255,255,255,0.88);
  margin-bottom: 52px; max-width: 580px; margin-left: auto; margin-right: auto;
  line-height: 1.85;
}

/* ═══════════════════════════════════════════
   PROCESS / TIMELINE
═══════════════════════════════════════════ */
.process-steps {
  max-width: 920px; margin: 0 auto;
  display: flex; flex-direction: column;
}
.process-step {
  display: grid; grid-template-columns: 100px 1fr;
  gap: 50px; padding: 60px 0;
  border-bottom: 1px solid var(--border);
  align-items: start;
}
.process-step:last-child { border-bottom: none; }
.process-step-num {
  font-family: 'Playfair Display', serif;
  font-size: 72px; font-weight: 400; font-style: italic;
  color: var(--gold); opacity: 0.4;
  line-height: 1;
}
.process-step-content h3 {
  font-family: 'Playfair Display', serif;
  font-size: 32px; font-weight: 400;
  color: var(--text); margin-bottom: 18px;
}
.process-step-content p {
  font-size: 15px; color: var(--text-mid);
  line-height: 1.95; max-width: 580px;
}

/* ═══════════════════════════════════════════
   PACKAGES
═══════════════════════════════════════════ */
.packages-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 1px;
  background: var(--border-soft);
  max-width: 1300px; margin: 0 auto;
}
.package-card {
  background: var(--warm-white);
  padding: 60px 48px;
  position: relative;
  display: flex; flex-direction: column;
  transition: var(--transition);
}
.package-card:hover { background: var(--ivory); }
.package-card.featured {
  background: var(--navy);
  color: var(--white);
  transform: scale(1.04);
  z-index: 2;
  box-shadow: 0 30px 80px rgba(10,23,48,0.2);
}
.package-card.featured .package-name,
.package-card.featured .package-price { color: var(--white); }
.package-card.featured .package-features li { color: rgba(255,255,255,0.78); border-bottom-color: rgba(212,175,103,0.18); }
.package-card.featured .package-price span { color: rgba(255,255,255,0.6); }

.package-badge {
  font-size: 9px; letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  font-weight: 600;
}
.package-name {
  font-family: 'Playfair Display', serif;
  font-size: 32px; font-weight: 400;
  color: var(--text); margin-bottom: 10px;
}
.package-name em { font-style: italic; }
.package-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 56px; color: var(--gold);
  margin: 24px 0 32px;
  font-weight: 300;
}
.package-price span { font-size: 16px; color: var(--text-light); }
.package-features {
  list-style: none;
  margin-bottom: 40px;
  flex: 1;
}
.package-features li {
  padding: 14px 0;
  border-bottom: 1px solid var(--border-soft);
  font-size: 14px; color: var(--text-mid);
  display: flex; align-items: center; gap: 14px;
}
.package-features li::before {
  content: '✦';
  color: var(--gold);
  font-size: 10px;
  flex-shrink: 0;
}
.package-features li:last-child { border-bottom: none; }

/* ═══════════════════════════════════════════
   PAGE HEROES (inner pages)
═══════════════════════════════════════════ */
.page-hero {
  height: 70vh; min-height: 540px;
  display: flex; align-items: center; justify-content: center;
  padding: 60px; position: relative; overflow: hidden;
  text-align: center;
}
.page-hero-video, .page-hero-bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; z-index: 0;
}
.page-hero-bg { background-size: cover; background-position: center; }
.page-hero::after {
  content: ''; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(10,23,48,0.4) 0%, rgba(10,23,48,0.65) 100%);
}
.page-hero-content { position: relative; z-index: 2; color: var(--white); }
.page-hero-content .section-eyebrow { color: var(--gold-light); padding-left: 0; }
.page-hero-content .section-eyebrow::before { display: none; }
.page-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(56px, 7vw, 104px);
  font-weight: 400; line-height: 1.05;
  color: var(--white);
  margin-top: 16px;
}
.page-hero h1 em { font-style: italic; color: var(--gold-light); }

/* ═══════════════════════════════════════════
   ABOUT PAGE
═══════════════════════════════════════════ */
.about-grid {
  display: grid; grid-template-columns: 1fr 1.1fr;
  gap: 100px; align-items: center;
}
.about-img-wrap { position: relative; }
.about-img-wrap img {
  width: 100%; aspect-ratio: 3/4;
  object-fit: cover; object-position: top center;
}
.about-img-accent {
  position: absolute; bottom: -32px; right: -32px;
  width: 200px; height: 200px;
  border: 1px solid var(--gold); z-index: -1;
}

/* ═══════════════════════════════════════════
   FORM
═══════════════════════════════════════════ */
.form-group { margin-bottom: 28px; }
.form-group label {
  display: block; font-size: 10px;
  letter-spacing: 3px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 12px;
  font-weight: 600;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; background: transparent;
  border: none; border-bottom: 1px solid var(--border-soft);
  color: var(--text); padding: 14px 0;
  font-family: 'DM Sans', sans-serif; font-size: 16px;
  outline: none; transition: border-color 0.3s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-bottom-color: var(--gold); }
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-soft); }
.form-group textarea { resize: none; height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }

/* ═══════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════ */
footer {
  background: var(--navy);
  color: rgba(255,255,255,0.7);
  padding: 100px 60px 40px;
  position: relative;
  overflow: hidden;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 70px; margin-bottom: 70px;
  position: relative; z-index: 1;
}
.footer-brand-logo {
  height: 100px; width: auto;
  margin-bottom: 32px;
  display: block;
}
.footer-brand-desc {
  font-size: 14px; color: rgba(255,255,255,0.7);
  line-height: 2; max-width: 320px;
}
.footer-social {
  display: flex; gap: 18px; margin-top: 28px;
}
.footer-social a {
  width: 42px; height: 42px;
  border: 1px solid rgba(212,175,103,0.3);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.7); text-decoration: none;
  transition: var(--transition);
}
.footer-social a:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(184,146,60,0.1);
}
.footer-col h4 {
  font-size: 11px; letter-spacing: 4px;
  text-transform: uppercase; color: var(--gold-light);
  margin-bottom: 24px;
  font-weight: 600;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.footer-col a {
  font-size: 14px; color: rgba(255,255,255,0.65);
  text-decoration: none; transition: color 0.3s;
}
.footer-col a:hover { color: var(--gold-light); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 32px;
  display: flex; align-items: center; justify-content: space-between;
  font-size: 12px; color: rgba(255,255,255,0.4);
}
.footer-bottom a { color: var(--gold-light); text-decoration: none; }

.anchor-watermark {
  position: absolute;
  bottom: 30px; right: 30px;
  height: 240px; width: auto;
  opacity: 0.05;
  pointer-events: none;
  z-index: 0;
}

/* ═══════════════════════════════════════════
   CHATBOT
═══════════════════════════════════════════ */
.chat-btn {
  position: fixed; bottom: 36px; right: 36px; z-index: 900;
  width: 62px; height: 62px;
  background: var(--gold);
  border: none; border-radius: 50%;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 36px rgba(184,146,60,0.4);
  transition: var(--transition);
}
.chat-btn:hover { background: var(--gold-light); transform: scale(1.08); }
.chat-btn svg { width: 26px; height: 26px; fill: var(--white); }
.chat-window {
  position: fixed; bottom: 115px; right: 36px; z-index: 900;
  width: 380px; max-height: 560px;
  background: var(--warm-white);
  border: 1px solid var(--border);
  box-shadow: 0 30px 80px rgba(10,23,48,0.25);
  display: flex; flex-direction: column;
  transform: translateY(20px) scale(0.96);
  opacity: 0; pointer-events: none;
  transition: all 0.4s cubic-bezier(0.25,0.46,0.45,0.94);
}
.chat-window.open { transform: translateY(0) scale(1); opacity: 1; pointer-events: all; }
.chat-header {
  background: var(--navy);
  padding: 22px 24px;
  display: flex; align-items: center; gap: 14px;
  color: var(--white);
}
.chat-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--gold); overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
}
.chat-header-info { flex: 1; }
.chat-header-name {
  font-family: 'Playfair Display', serif;
  font-size: 16px; margin-bottom: 2px;
}
.chat-header-status {
  font-size: 11px; color: var(--gold-light);
  display: flex; align-items: center; gap: 6px;
}
.chat-header-status::before {
  content: ''; width: 6px; height: 6px;
  border-radius: 50%; background: #4caf50;
}
.chat-close {
  background: none; border: none; color: rgba(255,255,255,0.6);
  font-size: 22px; cursor: pointer; padding: 4px;
}
.chat-close:hover { color: var(--white); }
.chat-messages {
  flex: 1; overflow-y: auto; padding: 22px;
  display: flex; flex-direction: column; gap: 16px;
  background: var(--warm-white);
}
.chat-msg {
  max-width: 88%; font-size: 14px; line-height: 1.7;
}
.chat-msg.bot {
  background: var(--cream);
  padding: 14px 18px;
  border-left: 2px solid var(--gold);
  color: var(--text);
}
.chat-msg.user {
  background: var(--gold);
  color: var(--white);
  padding: 12px 18px;
  margin-left: auto;
}
.chat-quick-replies {
  display: flex; flex-wrap: wrap; gap: 8px;
  padding: 0 22px 14px;
}
.chat-quick-reply {
  border: 1px solid var(--border);
  background: var(--warm-white);
  color: var(--gold);
  padding: 8px 14px; font-size: 12px;
  cursor: pointer;
  transition: var(--transition);
  font-family: 'DM Sans', sans-serif;
}
.chat-quick-reply:hover { background: var(--gold); color: var(--white); }
.chat-input-row {
  padding: 16px 22px;
  border-top: 1px solid var(--border-soft);
  display: flex; gap: 10px;
}
.chat-input {
  flex: 1; background: var(--ivory);
  border: 1px solid var(--border-soft);
  color: var(--text); padding: 11px 14px;
  font-family: 'DM Sans', sans-serif; font-size: 13px;
  outline: none;
}
.chat-input:focus { border-color: var(--gold); }
.chat-send {
  background: var(--gold); border: none;
  width: 44px; height: 44px; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.3s; flex-shrink: 0;
}
.chat-send:hover { background: var(--gold-light); }
.chat-send svg { width: 16px; height: 16px; fill: var(--white); }

/* ═══════════════════════════════════════════
   LIGHTBOX (films)
═══════════════════════════════════════════ */
.lightbox {
  position: fixed; inset: 0; z-index: 2000;
  background: rgba(10,23,48,0.97);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s;
}
.lightbox.open { opacity: 1; pointer-events: all; }
.lightbox video {
  max-width: 95vw; max-height: 95vh;
  background: #000;
}
.lightbox-close {
  position: absolute; top: 30px; right: 40px;
  background: none; border: none;
  color: var(--white); font-size: 32px; cursor: pointer;
}

/* ═══════════════════════════════════════════
   ANIMATIONS
═══════════════════════════════════════════ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(36px); }
  to   { opacity: 1; transform: translateY(0); }
}
.reveal { opacity: 0; transform: translateY(40px); transition: opacity 1s ease, transform 1s ease; }
.reveal.in-view { opacity: 1; transform: translateY(0); }
.reveal-left { opacity: 0; transform: translateX(-40px); transition: opacity 1s ease, transform 1s ease; }
.reveal-left.in-view { opacity: 1; transform: translateX(0); }
.reveal-right { opacity: 0; transform: translateX(40px); transition: opacity 1s ease, transform 1s ease; }
.reveal-right.in-view { opacity: 1; transform: translateX(0); }

/* ═══════════════════════════════════════════
   MOBILE
═══════════════════════════════════════════ */
@media (max-width: 1024px) {
  .feature-cards { grid-template-columns: 1fr; }
  .packages-grid { grid-template-columns: 1fr; }
  .package-card.featured { transform: none; }
}
@media (max-width: 768px) {
  section { padding: 80px 24px; }
  .nav { padding: 18px 24px; }
  .nav.scrolled { padding: 12px 24px; }
  .nav-logo { min-width: 180px; min-height: 56px; }
  .nav-logo img.light,
  .nav-logo img.dark { height: 56px; }
  .nav.scrolled .nav-logo img.dark { height: 48px; }
  .nav.scrolled .nav-logo { min-height: 48px; }
  .hero-progress { top: 90px; width: calc(100% - 60px); }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .showcase-inner { grid-template-columns: 1fr; gap: 50px; }
  .showcase-inner.reverse { direction: ltr; }
  .video-showcase { padding: 80px 24px; }
  .fireworks-slot { min-height: 70vh; }
  .about-grid { grid-template-columns: 1fr; gap: 50px; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 50px; }
  .footer-bottom { flex-direction: column; gap: 14px; text-align: center; }
  .video-tile-grid { grid-template-columns: repeat(6, 1fr); grid-auto-rows: 100px; }
  .t-2x2 { grid-column: span 6; grid-row: span 4; }
  .t-1x1, .t-1x2, .t-3x1, .t-1x3 { grid-column: span 3; grid-row: span 3; }
  .t-2x1, .t-2x3 { grid-column: span 6; grid-row: span 3; }
  .t-wide { grid-column: span 6; grid-row: span 3; }
  .portfolio-masonry { columns: 2; }
  .chat-window { width: calc(100vw - 30px); right: 15px; bottom: 100px; }
  .cta-section { padding: 120px 24px; }
  .page-hero { padding: 40px 24px; }
  .process-step { grid-template-columns: 1fr; gap: 10px; padding: 40px 0; }
  .process-step-num { font-size: 48px; }
  .testimonial-quote::before { display: none; }
}
