/* ==========================================================================
   STYLE.CSS — "The Lantern Edit" • Sajan & Sanjana
   Premium Cinematic Wedding Invitation
   Palette: Obsidian Black (#080706), Deep Espresso (#17100C),
            Burnt Brown (#2A170E), Ember Orange (#E86618),
            Lantern Orange (#FF8A2A), Amber (#FFB45A),
            Champagne (#E8D3AE), Warm Ivory (#F4EBDD)
   ========================================================================== */

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

/* ── CSS Variables ── */
:root {
  --obsidian:       #0A0D14;
  --espresso:       #0E1118;
  --burnt:          #1A1520;
  --ember:          #E86618;
  --lantern:        #FF8A2A;
  --amber:          #FFB45A;
  --champagne:      #E8D3AE;
  --ivory:          #F4EBDD;
  --text-dim:       rgba(232,211,174,0.45);
  --text-muted:     rgba(232,211,174,0.6);
  --night-sky-top:  #050810;
  --night-sky-mid:  #0C1220;
  --night-sky-bot:  #14101A;

  --font-serif:     'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --font-sans:      'DM Sans', 'Helvetica Neue', Arial, sans-serif;

  --ease-out-expo:  cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);

  --shadow-glow-sm: 0 0 20px rgba(255,138,42,0.15);
  --shadow-glow-md: 0 0 40px rgba(255,138,42,0.2);
  --shadow-glow-lg: 0 0 80px rgba(232,102,24,0.25);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background: var(--obsidian);
}

body {
  font-family: var(--font-serif);
  background: var(--obsidian);
  color: var(--champagne);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body.locked-scroll { overflow: hidden; }

/* Subtle cinematic grain overlay */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 99999;
  opacity: 0.5;
}

/* ── Typography Helpers ── */
.font-serif  { font-family: var(--font-serif); }
.font-sans   { font-family: var(--font-sans); }
.text-ember  { color: var(--ember) !important; }
.text-lantern{ color: var(--lantern) !important; }
.text-amber  { color: var(--amber) !important; }
.text-champagne { color: var(--champagne) !important; }
.text-ivory  { color: var(--ivory) !important; }
.text-dim    { color: var(--text-dim) !important; }
.text-muted-custom { color: var(--text-muted) !important; }

.letter-spacing-2 { letter-spacing: 2px; }
.letter-spacing-3 { letter-spacing: 3px; }
.letter-spacing-4 { letter-spacing: 4px; }
.letter-spacing-5 { letter-spacing: 5px; }
.letter-spacing-8 { letter-spacing: 8px; }

.eyebrow-text {
  font-family: var(--font-sans);
  font-size: clamp(0.65rem, 1.5vw, 0.78rem);
  font-weight: 500;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--text-muted);
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, 7vw, 5rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--ivory);
  letter-spacing: -0.5px;
}

/* Thin orange animated line */
.orange-line {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--ember), transparent);
  margin: 28px auto;
  max-width: 200px;
}

/* Thin champagne border line */
.champagne-line {
  height: 1px;
  background: rgba(232,211,174,0.2);
}

/* ── Canvas Layers (shared) ── */
.lantern-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

/* ══════════════════════════════════════════════════════════════════════════════
   LOADER
   ══════════════════════════════════════════════════════════════════════════════ */
#cinematic-loader {
  position: fixed;
  inset: 0;
  z-index: 100000;
  background: var(--obsidian);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: opacity 1.2s var(--ease-out-expo);
}

#cinematic-loader.loader-done {
  opacity: 0;
  pointer-events: none;
}

.loader-monogram {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 300;
  letter-spacing: 12px;
  color: var(--ivory);
  margin-bottom: 14px;
}

.loader-tagline {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 20px;
}

.loader-progress-track {
  width: 180px;
  height: 1px;
  background: rgba(232,211,174,0.12);
  position: relative;
  overflow: hidden;
}

.loader-progress-fill {
  position: absolute;
  left: 0; top: 0;
  height: 100%;
  width: 0%;
  background: var(--ember);
  transition: width 0.3s ease;
}

/* ══════════════════════════════════════════════════════════════════════════════
   NAVIGATION
   ══════════════════════════════════════════════════════════════════════════════ */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 9990;
  padding: 22px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.5s var(--ease-out-expo);
}

.site-nav.nav-scrolled {
  background: rgba(10,13,20,0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(232,211,174,0.08);
  padding: 14px 32px;
}

.nav-monogram {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 4px;
  color: var(--ivory);
  text-decoration: none;
  border: 1px solid rgba(232,211,174,0.25);
  padding: 6px 14px;
  transition: all 0.4s ease;
}

.nav-monogram:hover {
  border-color: var(--ember);
  color: var(--ember);
}

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

.nav-links a {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-muted);
  text-decoration: none;
  position: relative;
  transition: color 0.3s ease;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--ember);
  transition: width 0.4s var(--ease-out-expo);
}

.nav-links a:hover { color: var(--ivory); }
.nav-links a:hover::after { width: 100%; }

/* Hamburger */
.nav-hamburger {
  display: none;
  background: none; border: none;
  cursor: pointer;
  width: 32px; height: 24px;
  position: relative;
  z-index: 10001;
}

.nav-hamburger span {
  display: block;
  width: 100%; height: 1.5px;
  background: var(--ivory);
  position: absolute; left: 0;
  transition: all 0.4s var(--ease-out-expo);
}

.nav-hamburger span:nth-child(1) { top: 0; }
.nav-hamburger span:nth-child(2) { top: 50%; transform: translateY(-50%); }
.nav-hamburger span:nth-child(3) { bottom: 0; }

.nav-hamburger.active span:nth-child(1) { top: 50%; transform: translateY(-50%) rotate(45deg); }
.nav-hamburger.active span:nth-child(2) { opacity: 0; }
.nav-hamburger.active span:nth-child(3) { bottom: 50%; transform: translateY(50%) rotate(-45deg); }

/* Fullscreen Mobile Menu */
.mobile-menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 9989;
  background: rgba(10,13,20,0.96);
  backdrop-filter: blur(20px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s var(--ease-out-expo);
}

.mobile-menu-overlay.menu-open {
  opacity: 1;
  pointer-events: auto;
}

.mobile-menu-overlay canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.mobile-menu-links {
  list-style: none;
  padding: 0; margin: 0;
  text-align: center;
}

.mobile-menu-links li {
  margin-bottom: 20px;
}

.mobile-menu-links a {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 6vw, 3.2rem);
  font-weight: 300;
  color: var(--ivory);
  text-decoration: none;
  letter-spacing: 4px;
  transition: color 0.3s ease;
}

.mobile-menu-links a:hover {
  color: var(--lantern);
}

@media (max-width: 992px) {
  .nav-links { display: none; }
  .nav-hamburger { display: block; }
}

/* ══════════════════════════════════════════════════════════════════════════════
   SCENE 02 — HERO
   ══════════════════════════════════════════════════════════════════════════════ */
.hero-section {
  position: relative;
  width: 100%;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    180deg,
    var(--night-sky-top) 0%,
    var(--night-sky-mid) 40%,
    var(--night-sky-bot) 75%,
    var(--espresso) 100%
  );
  overflow: hidden;
}

/* Dark landscape silhouette at bottom */
.hero-landscape {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 120px;
  background: linear-gradient(to top, var(--espresso) 0%, transparent 100%);
  z-index: 2;
}

.hero-landscape::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 60px;
  background: var(--espresso);
  clip-path: polygon(
    0% 100%, 0% 80%, 5% 65%, 12% 55%, 18% 50%, 25% 45%, 30% 55%,
    35% 50%, 40% 40%, 45% 50%, 50% 45%, 55% 35%, 60% 45%, 65% 50%,
    70% 40%, 75% 50%, 80% 55%, 85% 45%, 90% 55%, 95% 65%, 100% 70%, 100% 100%
  );
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 20px;
}

.hero-families-text {
  font-family: var(--font-sans);
  font-size: clamp(0.68rem, 1.5vw, 0.8rem);
  font-weight: 400;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.hero-couple-name {
  font-family: var(--font-serif);
  font-size: clamp(4rem, 12vw, 9rem);
  font-weight: 300;
  line-height: 1.0;
  color: var(--ivory);
  letter-spacing: 4px;
}

.hero-amp {
  font-family: var(--font-sans);
  font-size: clamp(1rem, 3vw, 1.6rem);
  color: var(--text-dim);
  display: block;
  margin: 8px 0;
  letter-spacing: 6px;
}

.hero-invite-text {
  font-family: var(--font-sans);
  font-size: clamp(0.65rem, 1.5vw, 0.78rem);
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 24px;
}

.hero-date {
  font-family: var(--font-sans);
  font-size: clamp(0.8rem, 2vw, 1rem);
  letter-spacing: 8px;
  color: var(--amber);
  margin-top: 12px;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 40px;
  font-family: var(--font-sans);
  font-size: 0.68rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--text-dim);
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.3s ease;
}

.hero-cta:hover { color: var(--lantern); }

.hero-cta .cta-arrow {
  display: inline-block;
  animation: bounceArrow 2s ease-in-out infinite;
}

@keyframes bounceArrow {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(5px); }
}

/* ══════════════════════════════════════════════════════════════════════════════
   SCENE 03 — CINEMATIC TRANSITION
   ══════════════════════════════════════════════════════════════════════════════ */
.transition-scene {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--obsidian);
  overflow: hidden;
  padding: 80px 20px;
}

.transition-title {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 300;
  line-height: 1.15;
  color: var(--ivory);
}

/* ══════════════════════════════════════════════════════════════════════════════
   SCENE 04 — INTRODUCTION
   ══════════════════════════════════════════════════════════════════════════════ */
.intro-section {
  position: relative;
  min-height: 70vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--obsidian);
  padding: 100px 20px;
}

.intro-quote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1.6rem, 4vw, 2.8rem);
  font-weight: 300;
  line-height: 1.5;
  color: var(--champagne);
  max-width: 800px;
  margin-bottom: 32px;
}

.intro-couple-names {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 400;
  letter-spacing: 6px;
  color: var(--ivory);
}

/* ══════════════════════════════════════════════════════════════════════════════
   SCENE 05 — OUR STORY (HORIZONTAL SCROLL)
   ══════════════════════════════════════════════════════════════════════════════ */
.story-section {
  position: relative;
  background: var(--espresso);
  overflow: hidden;
}

.story-horizontal-strip {
  display: flex;
  width: 300%;
  height: 100vh;
}

.story-panel {
  width: 100vw;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 40px;
  flex-shrink: 0;
}

.story-panel-inner {
  display: flex;
  align-items: center;
  gap: 60px;
  max-width: 1100px;
}

.story-panel-photo {
  width: 380px;
  height: 480px;
  flex-shrink: 0;
  overflow: hidden;
  border-radius: 4px;
  box-shadow: var(--shadow-glow-sm);
}

.story-panel-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story-panel-text {
  flex: 1;
}

.story-panel-year {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--ember);
  margin-bottom: 8px;
}

.story-panel-title {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 300;
  color: var(--ivory);
  margin-bottom: 16px;
}

.story-panel-desc {
  font-family: var(--font-serif);
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  font-style: italic;
  color: var(--text-muted);
  line-height: 1.7;
}

@media (max-width: 992px) {
  .story-horizontal-strip {
    display: block;
    width: 100%;
    height: auto;
  }
  .story-panel {
    width: 100%;
    height: auto;
    min-height: 80vh;
    padding: 60px 20px;
  }
  .story-panel-inner {
    flex-direction: column;
    gap: 30px;
    text-align: center;
  }
  .story-panel-photo {
    width: 100%;
    max-width: 360px;
    height: 400px;
  }
}

/* ══════════════════════════════════════════════════════════════════════════════
   SCENE 06 — SIGNATURE LANTERN SCENE
   ══════════════════════════════════════════════════════════════════════════════ */
.lantern-signature-scene {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--obsidian);
  overflow: hidden;
  padding: 80px 20px;
}

.lantern-signature-text {
  position: relative;
  z-index: 10;
}

.lantern-signature-text h2 {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 8vw, 5.5rem);
  font-weight: 300;
  line-height: 1.2;
  color: var(--ivory);
}

/* ══════════════════════════════════════════════════════════════════════════════
   SCENE 07 — WEDDING DETAILS
   ══════════════════════════════════════════════════════════════════════════════ */
.wedding-details-section {
  position: relative;
  padding: 120px 20px;
  background: var(--obsidian);
  text-align: center;
}

.detail-row {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 0;
  border-bottom: 1px solid rgba(232,211,174,0.08);
}

.detail-row:last-child { border-bottom: none; }

.detail-label {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 8px;
}

.detail-value {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 300;
  color: var(--ivory);
  line-height: 1.2;
}

.detail-value-sub {
  font-family: var(--font-serif);
  font-size: clamp(1.2rem, 3vw, 1.8rem);
  font-weight: 300;
  color: var(--champagne);
  font-style: italic;
}

/* ══════════════════════════════════════════════════════════════════════════════
   SCENE 08 — THE CELEBRATIONS
   ══════════════════════════════════════════════════════════════════════════════ */
.celebrations-section {
  background: var(--espresso);
  padding: 100px 0;
}

.event-editorial-row {
  display: flex;
  align-items: center;
  max-width: 1140px;
  margin: 0 auto;
  padding: 50px 30px;
  border-bottom: 1px solid rgba(232,211,174,0.06);
  position: relative;
  transition: background 0.5s ease;
  cursor: default;
}

.event-editorial-row:hover {
  background: rgba(232,102,24,0.04);
}

.event-number {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 7vw, 5rem);
  font-weight: 300;
  color: rgba(232,211,174,0.1);
  min-width: 100px;
  transition: transform 0.5s var(--ease-out-expo);
}

.event-editorial-row:hover .event-number {
  transform: translateX(-8px);
  color: rgba(232,102,24,0.2);
}

.event-info {
  flex: 1;
  padding: 0 30px;
}

.event-name {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 400;
  color: var(--ivory);
  letter-spacing: 3px;
  margin-bottom: 6px;
}

.event-meta {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 10px;
}

.event-desc {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-style: italic;
  color: var(--text-muted);
}

/* Animated orange line on hover */
.event-orange-line {
  position: absolute;
  bottom: 0; left: 30px;
  height: 1px; width: 0;
  background: var(--ember);
  transition: width 0.6s var(--ease-out-expo);
}

.event-editorial-row:hover .event-orange-line {
  width: calc(100% - 60px);
}

.event-image-col {
  width: 280px;
  height: 200px;
  overflow: hidden;
  border-radius: 4px;
  flex-shrink: 0;
  opacity: 0.7;
  transition: opacity 0.5s ease;
}

.event-editorial-row:hover .event-image-col {
  opacity: 1;
}

.event-image-col img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-out-expo);
}

.event-editorial-row:hover .event-image-col img {
  transform: scale(1.06);
}

@media (max-width: 768px) {
  .event-editorial-row {
    flex-direction: column;
    text-align: center;
    padding: 40px 20px;
  }
  .event-number { min-width: auto; margin-bottom: 10px; }
  .event-info { padding: 0; }
  .event-image-col {
    width: 100%;
    max-width: 320px;
    height: 180px;
    margin-top: 20px;
  }
}

/* ══════════════════════════════════════════════════════════════════════════════
   SCENE 09 — "THE NIGHT OF LIGHTS"
   ══════════════════════════════════════════════════════════════════════════════ */
.night-of-lights-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--obsidian);
  overflow: hidden;
  padding: 80px 20px;
}

.night-of-lights-content {
  position: relative;
  z-index: 10;
}

.night-of-lights-content h2 {
  font-family: var(--font-serif);
  font-size: clamp(2.6rem, 7vw, 4.8rem);
  font-weight: 300;
  color: var(--ivory);
  line-height: 1.2;
  margin-bottom: 20px;
}

/* ══════════════════════════════════════════════════════════════════════════════
   SCENE 10 & 11 — COUPLE MOMENTS & GALLERY
   ══════════════════════════════════════════════════════════════════════════════ */
.moments-section {
  background: var(--obsidian);
  padding: 100px 20px;
}

.moment-frame {
  position: relative;
  max-width: 900px;
  margin: 0 auto 80px;
  overflow: hidden;
  border-radius: 4px;
}

.moment-frame img {
  width: 100%;
  height: 75vh;
  object-fit: cover;
  display: block;
}

.moment-label {
  position: absolute;
  bottom: 24px;
  left: 24px;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--ivory);
  background: rgba(10,13,20,0.6);
  backdrop-filter: blur(6px);
  padding: 8px 18px;
}

.gallery-section {
  background: var(--espresso);
  padding: 100px 20px;
}

.gallery-masonry {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 16px;
  max-width: 1200px;
  margin: 0 auto;
}

.gallery-item {
  overflow: hidden;
  border-radius: 4px;
  cursor: pointer;
  position: relative;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.8s var(--ease-out-expo);
}

.gallery-item:hover img { transform: scale(1.05); }

.gi-1 { grid-column: span 7; height: 420px; }
.gi-2 { grid-column: span 5; height: 420px; }
.gi-3 { grid-column: span 4; height: 360px; }
.gi-4 { grid-column: span 4; height: 360px; }
.gi-5 { grid-column: span 4; height: 360px; }
.gi-6 { grid-column: span 12; height: 460px; }

@media (max-width: 768px) {
  .gi-1,.gi-2,.gi-3,.gi-4,.gi-5,.gi-6 {
    grid-column: span 6;
    height: 260px;
  }
}

@media (max-width: 480px) {
  .gi-1,.gi-2,.gi-3,.gi-4,.gi-5,.gi-6 {
    grid-column: span 12;
    height: 280px;
  }
}

/* ══════════════════════════════════════════════════════════════════════════════
   SCENE 12 — VENUE
   ══════════════════════════════════════════════════════════════════════════════ */
.venue-section {
  display: flex;
  align-items: center;
  min-height: 80vh;
  background: var(--obsidian);
  padding: 80px 20px;
}

.venue-inner {
  display: flex;
  align-items: center;
  gap: 60px;
  max-width: 1140px;
  margin: 0 auto;
  width: 100%;
}

.venue-text-col { flex: 1; }
.venue-image-col {
  flex: 1;
  height: 500px;
  overflow: hidden;
  border-radius: 4px;
  box-shadow: var(--shadow-glow-sm);
}

.venue-image-col img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.venue-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 28px;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--ember);
  background: none;
  border: none;
  text-decoration: none;
  cursor: pointer;
  position: relative;
  padding-bottom: 4px;
}

.venue-btn::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--ember);
  transition: width 0.5s var(--ease-out-expo);
}

.venue-btn:hover::after { width: 100%; }
.venue-btn:hover { color: var(--lantern); }

@media (max-width: 768px) {
  .venue-inner {
    flex-direction: column;
    text-align: center;
  }
  .venue-image-col {
    width: 100%;
    height: 340px;
  }
}

/* ══════════════════════════════════════════════════════════════════════════════
   SCENE 13 — COUNTDOWN
   ══════════════════════════════════════════════════════════════════════════════ */
.countdown-section {
  position: relative;
  min-height: 70vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--obsidian);
  overflow: hidden;
  padding: 80px 20px;
  text-align: center;
}

.countdown-grid {
  display: flex;
  gap: 40px;
  margin-top: 40px;
}

.countdown-unit {
  text-align: center;
}

.countdown-number {
  font-family: var(--font-serif);
  font-size: clamp(3.5rem, 10vw, 7rem);
  font-weight: 300;
  color: var(--ivory);
  line-height: 1;
}

.countdown-label {
  font-family: var(--font-sans);
  font-size: 0.68rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-top: 8px;
}

@media (max-width: 576px) {
  .countdown-grid { gap: 20px; }
}

/* ══════════════════════════════════════════════════════════════════════════════
   SCENE 14 — RSVP
   ══════════════════════════════════════════════════════════════════════════════ */
.rsvp-section {
  background: var(--espresso);
  padding: 120px 20px;
}

.rsvp-card {
  max-width: 600px;
  margin: 0 auto;
  background: rgba(23,16,12,0.7);
  border: 1px solid rgba(232,211,174,0.1);
  border-radius: 4px;
  padding: 50px 40px;
  backdrop-filter: blur(8px);
}

.rsvp-group {
  margin-bottom: 28px;
}

.rsvp-label {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.7rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 6px;
}

.rsvp-input {
  width: 100%;
  border: none;
  border-bottom: 1px solid rgba(232,211,174,0.2);
  background: transparent;
  padding: 12px 0;
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--ivory);
  outline: none;
  transition: border-color 0.3s ease;
}

.rsvp-input:focus {
  border-bottom-color: var(--ember);
}

.rsvp-input::placeholder {
  color: rgba(232,211,174,0.25);
}

.attendance-options {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.attendance-option { flex: 1; min-width: 160px; }
.attendance-option input { display: none; }

.attendance-option label {
  display: block;
  border: 1px solid rgba(232,211,174,0.15);
  padding: 14px 16px;
  text-align: center;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  color: var(--text-muted);
  transition: all 0.4s ease;
}

.attendance-option input:checked + label {
  background: var(--ember);
  color: var(--ivory);
  border-color: var(--ember);
}

.rsvp-submit-btn {
  width: 100%;
  padding: 16px;
  border: 1px solid var(--ember);
  background: transparent;
  color: var(--ember);
  font-family: var(--font-sans);
  font-size: 0.78rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.4s ease;
}

.rsvp-submit-btn:hover {
  background: var(--ember);
  color: var(--obsidian);
}

.rsvp-thankyou {
  text-align: center;
  padding: 30px 0;
}

.rsvp-thankyou h3 {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 6vw, 3.8rem);
  font-weight: 300;
  color: var(--ivory);
  margin-bottom: 12px;
}

/* ══════════════════════════════════════════════════════════════════════════════
   SCENE 15 — FINAL CINEMATIC
   ══════════════════════════════════════════════════════════════════════════════ */
.final-scene {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--obsidian);
  overflow: hidden;
  padding: 80px 20px;
}

.final-content {
  position: relative;
  z-index: 10;
}

.final-content h2 {
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, 8vw, 5rem);
  font-weight: 300;
  line-height: 1.2;
  color: var(--ivory);
}

.final-invite-text {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1.2rem, 3vw, 1.8rem);
  color: var(--champagne);
  margin-top: 30px;
}

/* Lightbox Modal */
.gallery-lightbox .modal-content {
  background: transparent;
  border: none;
}

.gallery-lightbox {
  background: rgba(10,13,20,0.95) !important;
  backdrop-filter: blur(10px);
}

.lightbox-img {
  max-height: 85vh;
  object-fit: contain;
  border-radius: 4px;
}

/* ══════════════════════════════════════════════════════════════════════════════
   AUDIO TOGGLE
   ══════════════════════════════════════════════════════════════════════════════ */
#audio-toggle {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9980;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(232,211,174,0.2);
  background: rgba(10,13,20,0.7);
  backdrop-filter: blur(8px);
  color: var(--champagne);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.4s ease;
}

#audio-toggle:hover {
  border-color: var(--ember);
  color: var(--ember);
}

/* ══════════════════════════════════════════════════════════════════════════════
   SCROLL PROGRESS
   ══════════════════════════════════════════════════════════════════════════════ */
#scroll-progress {
  position: fixed;
  top: 0; right: 0;
  width: 2px;
  height: 0%;
  background: var(--ember);
  z-index: 99990;
  transition: height 0.1s linear;
}

/* ══════════════════════════════════════════════════════════════════════════════
   REDUCED MOTION
   ══════════════════════════════════════════════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .hero-cta .cta-arrow { animation: none; }
}

