/* ==========================================================================
   35mm_film._ | LUXURY WEDDING CINEMATOGRAPHY & PHOTOGRAPHY
   Design System: Midnight Obsidian Noir & Champagne Gold
   ========================================================================== */

/* --- CSS Variables & Design Tokens --- */
:root {
  /* Color Palette */
  --bg-obsidian: #0a0a0a;
  --bg-midnight: #121212;
  --bg-charcoal: #161616;
  --bg-charcoal-elevated: #1c1c1c;
  --bg-glass: rgba(10, 10, 10, 0.82);
  --bg-glass-card: rgba(22, 22, 22, 0.75);

  /* Gold Palette */
  --gold-champagne: #c5a880;
  --gold-vintage: #d4af37;
  --gold-bright: #e7c77c;
  --gold-dark: #917548;
  --gold-glow: rgba(212, 175, 55, 0.22);
  --gold-glow-subtle: rgba(197, 168, 128, 0.12);
  --gold-border: rgba(197, 168, 128, 0.35);
  --gold-gradient: linear-gradient(135deg, #e7c77c 0%, #c5a880 50%, #917548 100%);
  --gold-gradient-hover: linear-gradient(135deg, #f5d88f 0%, #d4af37 50%, #a68551 100%);

  /* Borders */
  --border-subtle: #2a2a2a;
  --border-card: #242424;
  --border-gold-fine: 1px solid rgba(197, 168, 128, 0.3);
  --border-gold-accent: 1px solid rgba(212, 175, 55, 0.6);

  /* Typography Colors */
  --text-ivory: #f5f4f0;
  --text-white: #ffffff;
  --text-muted: #a8a5a0;
  --text-dim: #73706c;

  /* Typography Stacks */
  --font-serif-luxury: "Cormorant Garamond", "Playfair Display", Georgia, serif;
  --font-serif-display: "Playfair Display", "Cormorant Garamond", Georgia, serif;
  --font-sans: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  /* Layout */
  --container-max-width: 1360px;
  --header-height: 84px;
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 14px;
  --radius-pill: 9999px;

  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-smooth: 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-slow: 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--bg-obsidian);
  color: var(--text-ivory);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  max-width: 100%;
}

body.film-dark-theme {
  font-family: var(--font-sans);
  background-color: var(--bg-obsidian);
  color: var(--text-ivory);
  line-height: 1.65;
  overflow-x: hidden;
  max-width: 100%;
  width: 100%;
  position: relative;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-fast);
}

button,
input,
select,
textarea {
  font-family: inherit;
}

button {
  cursor: pointer;
  border: none;
  background: none;
}

ul {
  list-style: none;
}

/* --- Subtle Film Grain Texture Simulation --- */
.film-grain-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 999;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

/* --- Ambient Glow Effects --- */
.ambient-glow {
  position: absolute;
  pointer-events: none;
  border-radius: 50%;
  filter: blur(140px);
  z-index: 0;
}

.glow-top {
  top: -120px;
  right: 10%;
  width: 500px;
  height: 400px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.12) 0%, transparent 70%);
}

.glow-mid {
  top: 35%;
  left: -150px;
  width: 600px;
  height: 500px;
  background: radial-gradient(circle, rgba(197, 168, 128, 0.08) 0%, transparent 70%);
}

/* --- Common Layout & Typography --- */
.container {
  width: 100%;
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 28px;
  position: relative;
  z-index: 2;
}

.gold-italic-accent {
  font-family: var(--font-serif-luxury);
  font-style: italic;
  font-weight: 400;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.gold-text {
  color: var(--gold-vintage) !important;
}

.section-badge-wrapper {
  display: flex;
  margin-bottom: 20px;
}

.section-eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-vintage);
  font-weight: 600;
  padding: 6px 14px;
  border-left: 2px solid var(--gold-vintage);
  background: rgba(212, 175, 55, 0.06);
}

.section-header-center {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 38px auto;
}

.section-header-center .section-eyebrow {
  border-left: none;
  border-bottom: 2px solid var(--gold-vintage);
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-serif-display);
  font-size: clamp(2.3rem, 3.8vw, 3.2rem);
  font-weight: 500;
  color: var(--text-ivory);
  letter-spacing: -0.01em;
  line-height: 1.2;
  margin-bottom: 12px;
}

.section-desc {
  font-size: 1.05rem;
  color: var(--text-muted);
  font-weight: 300;
  line-height: 1.7;
}

/* --- Filigree Dividers & Ornaments --- */
.filigree-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin: 28px auto;
  max-width: 480px;
}

.filigree-divider.mini {
  margin: 20px auto 0 auto;
  max-width: 240px;
  gap: 12px;
}

.filigree-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.4), transparent);
}

.filigree-motif {
  width: 48px;
  height: 16px;
}

.gold-diamond {
  width: 6px;
  height: 6px;
  background-color: var(--gold-vintage);
  transform: rotate(45deg);
  box-shadow: 0 0 10px var(--gold-glow);
}

/* --- Luxury Buttons --- */
.btn-gold-solid {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--gold-gradient);
  color: #0c0a07;
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 16px 36px;
  border-radius: var(--radius-pill);
  box-shadow: 0 6px 24px rgba(212, 175, 55, 0.28);
  transition: all var(--transition-smooth);
}

.btn-gold-solid:hover {
  background: var(--gold-gradient-hover);
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(212, 175, 55, 0.45);
}

.btn-ghost-gold {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: rgba(22, 22, 22, 0.6);
  border: 1px solid var(--gold-champagne);
  color: var(--text-ivory);
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 16px 34px;
  border-radius: var(--radius-pill);
  backdrop-filter: blur(10px);
  transition: all var(--transition-smooth);
}

.btn-ghost-gold:hover {
  background: rgba(197, 168, 128, 0.15);
  border-color: var(--gold-bright);
  color: #ffffff;
  transform: translateY(-2px);
}

.btn-gold-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(18, 18, 18, 0.85);
  border: 1px solid var(--gold-champagne);
  color: var(--gold-champagne);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 10px 22px;
  border-radius: var(--radius-pill);
  transition: all var(--transition-fast);
}

.btn-gold-pill:hover {
  background: var(--gold-gradient);
  color: #0c0a07;
  border-color: transparent;
  box-shadow: 0 4px 20px var(--gold-glow);
}

.btn-gold-pill.mini {
  padding: 8px 18px;
  font-size: 0.78rem;
}

.full-width {
  width: 100%;
}

/* ==========================================================================
   1. NAVIGATION BAR (Sticky Glassmorphism)
   ========================================================================== */
.luxury-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  z-index: 1000;
  background: var(--bg-glass);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: background var(--transition-fast), border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.luxury-header.scrolled {
  background: rgba(10, 10, 10, 0.94);
  border-bottom: 1px solid rgba(197, 168, 128, 0.2);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
}

.nav-container {
  max-width: var(--container-max-width);
  height: 100%;
  margin: 0 auto;
  padding: 0 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Brand Wordmark & Badge */
.brand-link {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand-badge {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(26, 26, 26, 0.8);
  border: 1px solid rgba(212, 175, 55, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--transition-fast), border-color var(--transition-fast);
}

.brand-link:hover .brand-badge {
  transform: rotate(45deg);
  border-color: var(--gold-bright);
}

.aperture-icon {
  width: 22px;
  height: 22px;
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-family: var(--font-serif-luxury);
  font-size: 1.45rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--text-ivory);
  line-height: 1.1;
}

.brand-sub {
  font-size: 0.62rem;
  letter-spacing: 0.32em;
  color: var(--gold-vintage);
  font-weight: 500;
}

/* Nav Menu */
.desktop-nav .nav-menu {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-link {
  font-size: 0.88rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  position: relative;
  padding: 8px 0;
  transition: color var(--transition-fast);
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold-vintage);
  transition: width var(--transition-fast);
}

.nav-link:hover,
.nav-link.active {
  color: var(--gold-champagne);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.icon-whatsapp-tiny {
  width: 16px;
  height: 16px;
}

/* Mobile Toggle & Drawer */
.mobile-menu-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 8px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.04);
}

.hamburger-bar {
  width: 100%;
  height: 2px;
  background-color: var(--text-ivory);
  transition: transform var(--transition-fast), opacity var(--transition-fast);
}

/* Mobile Drawer Backdrop Overlay */
.mobile-drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.78);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-smooth);
}

.mobile-drawer-backdrop.active {
  opacity: 1;
  pointer-events: auto;
}

.mobile-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 84%;
  max-width: 360px;
  height: 100vh;
  height: 100dvh;
  background: #111111;
  border-left: 1px solid rgba(197, 168, 128, 0.25);
  padding: 24px 22px;
  padding-bottom: max(24px, env(safe-area-inset-bottom));
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  z-index: 1001;
  transition: right var(--transition-smooth);
  box-shadow: -12px 0 45px rgba(0, 0, 0, 0.95);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  touch-action: manipulation;
}

.mobile-drawer.open {
  right: 0;
}

.drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--border-subtle);
  flex-shrink: 0;
}

.drawer-close-btn {
  width: 44px;
  height: 44px;
  min-width: 44px;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  color: var(--text-muted);
  line-height: 1;
  background: transparent;
  border: none;
  cursor: pointer;
  touch-action: manipulation;
  transition: color var(--transition-fast);
}

.drawer-close-btn:hover,
.drawer-close-btn:active {
  color: var(--gold-vintage);
}

.mobile-nav-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 32px 0;
}

.mobile-nav-link {
  font-family: var(--font-serif-display);
  font-size: 1.35rem;
  color: var(--text-ivory);
  display: block;
}

.mobile-nav-link:hover {
  color: var(--gold-champagne);
}

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

.drawer-phone {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ==========================================================================
   2. HERO SECTION (100vh Full Bleed)
   ========================================================================== */
.hero-section {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: calc(var(--header-height) + 40px) 24px 60px 24px;
  overflow: hidden;
}

.hero-background-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  transform: scale(1.03);
  animation: heroKenBurns 18s ease-in-out infinite alternate;
}

@keyframes heroKenBurns {
  0% {
    transform: scale(1.02) translateY(0);
  }

  100% {
    transform: scale(1.08) translateY(-10px);
  }
}

.hero-vignette-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, rgba(10, 10, 10, 0.35) 0%, rgba(10, 10, 10, 0.82) 75%, #0a0a0a 100%);
}

.hero-gradient-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(10, 10, 10, 0.7) 0%, rgba(10, 10, 10, 0.2) 40%, rgba(10, 10, 10, 0.75) 80%, #0a0a0a 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-meta-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(22, 22, 22, 0.7);
  border: 1px solid rgba(212, 175, 55, 0.3);
  padding: 8px 18px;
  border-radius: var(--radius-pill);
  margin-bottom: 26px;
  backdrop-filter: blur(8px);
}

.film-indicator-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #d4af37;
  box-shadow: 0 0 10px #d4af37;
  animation: pulseDot 2s infinite ease-in-out;
}

@keyframes pulseDot {

  0%,
  100% {
    opacity: 0.6;
    transform: scale(0.9);
  }

  50% {
    opacity: 1;
    transform: scale(1.15);
  }
}

.meta-label {
  font-size: 0.72rem;
  letter-spacing: 0.24em;
  color: var(--gold-champagne);
  font-weight: 600;
}

.hero-headline {
  font-family: var(--font-serif-display);
  font-size: clamp(2.8rem, 6.2vw, 5.2rem);
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: -0.015em;
  color: var(--text-ivory);
  margin-bottom: 20px;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.8);
}

.hero-subtitle {
  font-size: clamp(1.05rem, 2vw, 1.28rem);
  color: #d6d3cd;
  max-width: 680px;
  font-weight: 300;
  line-height: 1.7;
  margin-bottom: 16px;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.7);
}

.hero-cta-group {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 18px;
  flex-wrap: wrap;
}

.btn-arrow {
  width: 18px;
  height: 18px;
  transition: transform var(--transition-fast);
}

.btn-gold-solid:hover .btn-arrow {
  transform: translateX(4px);
}

.hero-scroll-cue {
  margin-top: 50px;
}

.hero-scroll-cue a {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  opacity: 0.75;
  transition: opacity var(--transition-fast);
}

.hero-scroll-cue a:hover {
  opacity: 1;
}

.scroll-text {
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  color: var(--gold-champagne);
}

.mouse-scroll-icon {
  width: 22px;
  height: 36px;
  border: 1px solid rgba(197, 168, 128, 0.5);
  border-radius: 12px;
  display: flex;
  justify-content: center;
  padding-top: 6px;
}

.scroll-wheel {
  width: 3px;
  height: 8px;
  background-color: var(--gold-vintage);
  border-radius: 2px;
  animation: mouseWheel 2s infinite ease-in-out;
}

@keyframes mouseWheel {
  0% {
    transform: translateY(0);
    opacity: 1;
  }

  100% {
    transform: translateY(12px);
    opacity: 0;
  }
}

/* ==========================================================================
   3. ABOUT SECTION ("ABOUT THE OWNER & 35mm_film._")
   ========================================================================== */
.section-about {
  padding: 85px 0;
  position: relative;
  background: linear-gradient(180deg, #0a0a0a 0%, #111111 50%, #0a0a0a 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.03);
  overflow: hidden;
}

.section-about::before {
  content: "";
  position: absolute;
  top: 10%;
  right: -100px;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.06) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

/* Owner Top Tag: "@abhi_mani_ • OWNER" */
.owner-top-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(18, 18, 18, 0.9);
  border: 1px solid rgba(212, 175, 55, 0.45);
  padding: 8px 22px;
  border-radius: var(--radius-pill);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.6), 0 0 15px rgba(212, 175, 55, 0.15);
  backdrop-filter: blur(12px);
  margin-bottom: 8px;
  transition: transform var(--transition-fast), border-color var(--transition-fast);
}

.owner-top-tag:hover {
  transform: translateY(-2px);
  border-color: rgba(212, 175, 55, 0.7);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.7), 0 0 20px rgba(212, 175, 55, 0.25);
}

.owner-status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--gold-vintage);
  box-shadow: 0 0 10px var(--gold-vintage);
  animation: pulseDot 2s infinite ease-in-out;
}

.owner-handle {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: 0.04em;
  color: var(--text-ivory);
}

.owner-separator {
  color: var(--gold-champagne);
  font-size: 0.75rem;
  opacity: 0.7;
}

.owner-role-title {
  font-family: var(--font-sans);
  font-size: 0.74rem;
  letter-spacing: 0.22em;
  color: var(--gold-vintage);
  font-weight: 700;
}

.about-header {
  margin-bottom: 45px;
  position: relative;
  z-index: 1;
}

.about-editorial-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 55px;
  align-items: center;
  position: relative;
  z-index: 1;
}

/* Film Strip Frame Visual for Owner */
.film-strip-frame {
  position: relative;
  background: #141414;
  border: 1px solid #282828;
  border-radius: var(--radius-md);
  padding: 18px 18px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7), 0 0 0 1px rgba(197, 168, 128, 0.15);
}

.owner-film-frame {
  max-width: 500px;
  margin: 0 auto;
}

.film-strip-header,
.film-strip-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 10px;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  color: var(--text-dim);
}

.film-perforations {
  display: flex;
  gap: 8px;
}

.film-perforations span {
  display: block;
  width: 8px;
  height: 12px;
  background: #090909;
  border: 1px solid #222;
  border-radius: 2px;
}

.about-image-wrapper {
  position: relative;
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.8);
}

.owner-image-wrapper {
  background: #0d0d0d;
}

.about-portrait-img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.owner-portrait-img {
  aspect-ratio: 731 / 1024;
  object-fit: cover;
  object-position: center top;
  filter: contrast(1.03) brightness(0.98);
}

.film-strip-frame:hover .about-portrait-img {
  transform: scale(1.02);
}

/* Floating Top Badge on Image */
.owner-floating-badge-top {
  position: absolute;
  top: 14px;
  right: 14px;
  background: rgba(12, 12, 12, 0.88);
  border: 1px solid rgba(212, 175, 55, 0.45);
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.6);
  z-index: 2;
}

.owner-floating-badge-top .badge-icon {
  font-size: 0.85rem;
}

.owner-floating-badge-top .badge-text {
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  font-weight: 700;
  color: var(--gold-vintage);
}

.about-image-badge {
  position: absolute;
  bottom: 18px;
  left: 18px;
  background: rgba(12, 12, 12, 0.85);
  backdrop-filter: blur(10px);
  border-left: 2px solid var(--gold-vintage);
  padding: 10px 16px;
  display: flex;
  flex-direction: column;
}

.owner-info-badge {
  bottom: 12px;
  left: 12px;
  right: auto;
  max-width: calc(100% - 24px);
  background: rgba(12, 12, 12, 0.82);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-left: 3px solid var(--gold-vintage);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.65);
}

.badge-year {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  color: var(--gold-vintage);
  font-weight: 600;
}

.owner-info-badge .badge-year {
  font-size: 0.92rem;
  color: var(--text-ivory);
  letter-spacing: 0.04em;
  font-weight: 700;
}

.badge-title {
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  color: var(--text-ivory);
}

.owner-info-badge .badge-title {
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  color: var(--gold-champagne);
  font-weight: 600;
  margin-top: 1px;
}

/* Owner Meta Strip Below Frame */
.owner-meta-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
  justify-content: center;
}

.owner-meta-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(22, 22, 22, 0.8);
  border: 1px solid var(--border-subtle);
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  font-size: 0.76rem;
  color: var(--text-muted);
  transition: all var(--transition-fast);
}

.owner-meta-pill:hover,
.owner-insta-link:hover {
  border-color: rgba(212, 175, 55, 0.5);
  color: var(--gold-champagne);
  transform: translateY(-2px);
  background: rgba(28, 28, 28, 0.95);
}

.meta-pill-icon {
  width: 14px;
  height: 14px;
  color: var(--gold-vintage);
  flex-shrink: 0;
}

.owner-insta-link {
  color: var(--gold-vintage);
  border-color: rgba(212, 175, 55, 0.3);
  font-weight: 600;
}

/* Owner Roles Banner */
.owner-roles-banner {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}

.owner-role-tag {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  padding: 5px 12px;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-muted);
  font-weight: 500;
  text-transform: uppercase;
}

.owner-role-tag.gold-tag {
  background: rgba(212, 175, 55, 0.12);
  border-color: rgba(212, 175, 55, 0.45);
  color: var(--gold-vintage);
  font-weight: 700;
}

/* Narrative Column */
.editorial-heading {
  font-family: var(--font-serif-display);
  font-size: clamp(2.2rem, 3.8vw, 3.2rem);
  font-weight: 500;
  line-height: 1.2;
  color: var(--text-ivory);
  margin-bottom: 20px;
}

.ornate-separator-left {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
}

.gold-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold-vintage);
}

.gold-divider-line {
  width: 80px;
  height: 1px;
  background: linear-gradient(90deg, var(--gold-vintage), transparent);
}

.about-narrative-copy {
  font-size: 1.05rem;
  color: #c0bdb7;
  line-height: 1.8;
  font-weight: 300;
  margin-bottom: 18px;
}

.about-narrative-copy strong {
  color: var(--text-ivory);
  font-weight: 600;
}

/* Cinematography Craft 3-Card Grid */
.cinematography-craft-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin: 24px 0 28px 0;
}

.craft-mini-card {
  background: rgba(22, 22, 22, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-md);
  padding: 16px 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: all var(--transition-fast);
}

.craft-mini-card:hover {
  border-color: rgba(212, 175, 55, 0.35);
  background: rgba(26, 26, 26, 0.85);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.craft-icon-wrap {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-vintage);
}

.craft-icon-wrap svg {
  width: 18px;
  height: 18px;
}

.craft-title {
  font-family: var(--font-serif-display);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-ivory);
  margin-bottom: 4px;
  line-height: 1.25;
}

.craft-text {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.45;
}

.about-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding: 22px 0;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  margin-bottom: 26px;
}

.stat-card {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-family: var(--font-serif-display);
  font-size: 2.3rem;
  font-weight: 600;
  color: var(--gold-champagne);
  line-height: 1.1;
}

.stat-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 4px;
}

.about-quote-box {
  padding-left: 18px;
  border-left: 2px solid var(--gold-vintage);
  margin-bottom: 24px;
}

.quote-text {
  font-family: var(--font-serif-luxury);
  font-style: italic;
  font-size: 1.15rem;
  color: #e2dfd7;
  line-height: 1.55;
}

.quote-signature {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  color: var(--gold-vintage);
  margin-top: 8px;
  text-transform: uppercase;
  font-weight: 600;
}

/* Owner CTA Group */
.owner-cta-group {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ==========================================================================
   4. CORE SERVICES GRID (6 Cards: 3 Desktop, 1 Mobile)
   ========================================================================== */
.section-services {
  padding: 75px 0;
  background-color: var(--bg-obsidian);
  position: relative;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.service-card {
  position: relative;
  background: var(--bg-charcoal);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 44px 34px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: transform var(--transition-smooth), border-color var(--transition-smooth), box-shadow var(--transition-smooth);
}

.service-card-border {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold-vintage), transparent);
  opacity: 0;
  transition: opacity var(--transition-smooth);
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(197, 168, 128, 0.45);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.7), 0 0 25px var(--gold-glow-subtle);
}

.service-card:hover .service-card-border {
  opacity: 1;
}

.service-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 26px;
}

.service-number {
  font-family: var(--font-serif-luxury);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--gold-dark);
  letter-spacing: 0.05em;
}

.service-icon-box {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(197, 168, 128, 0.08);
  border: 1px solid rgba(197, 168, 128, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-champagne);
  transition: background var(--transition-fast), color var(--transition-fast), transform var(--transition-fast);
}

.service-icon-box svg {
  width: 24px;
  height: 24px;
}

.service-card:hover .service-icon-box {
  background: var(--gold-gradient);
  color: #0c0a07;
  transform: scale(1.08);
}

.service-title {
  font-family: var(--font-serif-display);
  font-size: 1.55rem;
  font-weight: 500;
  color: var(--text-ivory);
  line-height: 1.3;
  margin-bottom: 14px;
}

.service-body {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 24px;
  flex-grow: 1;
}

.service-footer-tag {
  font-size: 0.74rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-champagne);
  opacity: 0.85;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 18px;
}

/* ==========================================================================
   5. OUR APPROACH ("REAL. EMOTIONAL. CINEMATIC.")
   ========================================================================== */
.section-approach {
  position: relative;
  padding: 75px 0;
  background: #0d0d0d;
  overflow: hidden;
}

.approach-bg-accent {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 600px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

.approach-content-wrapper {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.approach-pill {
  display: inline-block;
  font-size: 0.78rem;
  letter-spacing: 0.35em;
  color: var(--gold-vintage);
  padding: 8px 22px;
  border: 1px solid rgba(212, 175, 55, 0.35);
  border-radius: var(--radius-pill);
  background: rgba(212, 175, 55, 0.04);
  margin-bottom: 28px;
}

.approach-headline {
  font-family: var(--font-serif-display);
  font-size: clamp(2.4rem, 4.8vw, 3.8rem);
  font-weight: 500;
  line-height: 1.25;
  color: var(--text-ivory);
  margin-bottom: 60px;
}

.approach-staggered-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  text-align: left;
  max-width: 760px;
  margin: 0 auto 54px auto;
}

.approach-item {
  display: flex;
  align-items: flex-start;
  gap: 28px;
  padding: 24px 30px;
  background: rgba(22, 22, 22, 0.6);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  backdrop-filter: blur(8px);
  transition: transform var(--transition-fast), border-color var(--transition-fast), background var(--transition-fast);
}

.approach-item:hover {
  transform: translateX(10px);
  border-color: rgba(197, 168, 128, 0.4);
  background: rgba(26, 26, 26, 0.85);
}

.approach-counter {
  font-family: var(--font-serif-luxury);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--gold-dark);
  min-width: 38px;
  line-height: 1.1;
}

.approach-counter.highlight {
  color: var(--gold-vintage);
}

.approach-text-wrapper {
  flex: 1;
}

.moment-title {
  font-family: var(--font-serif-luxury);
  font-size: 1.38rem;
  font-weight: 500;
  color: var(--text-ivory);
  margin-bottom: 6px;
}

.moment-desc {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.approach-subtext-box {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
}

.gold-line-decor {
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-vintage), transparent);
}

.approach-subtext {
  font-family: var(--font-serif-luxury);
  font-style: italic;
  font-size: 1.45rem;
  color: var(--gold-champagne);
}

/* ==========================================================================
   6. WHY 35mm_film._ (Value Props)
   ========================================================================== */
.section-why {
  padding: 75px 0;
  background-color: var(--bg-obsidian);
}

.why-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.why-card {
  background: var(--bg-charcoal);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 38px 28px;
  position: relative;
  transition: transform var(--transition-smooth), border-color var(--transition-smooth), box-shadow var(--transition-smooth);
}

.why-card:hover {
  transform: translateY(-6px);
  border-color: rgba(212, 175, 55, 0.4);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.6);
}

.why-gold-num {
  display: inline-block;
  font-family: var(--font-serif-display);
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--gold-vintage);
  margin-bottom: 20px;
  line-height: 1;
}

.why-card-title {
  font-family: var(--font-serif-display);
  font-size: 1.35rem;
  color: var(--text-ivory);
  margin-bottom: 14px;
  line-height: 1.3;
}

.why-card-text {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ==========================================================================
   7. SELECTED PORTFOLIO & "WATCH OUR FILMS"
   ========================================================================== */
.section-portfolio {
  padding: 75px 0 40px 0;
  background: linear-gradient(180deg, #0a0a0a 0%, #111111 60%, #0a0a0a 100%);
}

.portfolio-filter-tabs {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 34px;
  flex-wrap: wrap;
}

.filter-tab {
  background: rgba(22, 22, 22, 0.7);
  border: 1px solid var(--border-subtle);
  color: var(--text-muted);
  font-size: 0.84rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 10px 22px;
  border-radius: var(--radius-pill);
  transition: all var(--transition-fast);
}

.filter-tab:hover {
  border-color: rgba(197, 168, 128, 0.4);
  color: var(--text-ivory);
}

.filter-tab.active {
  background: var(--gold-vintage);
  border-color: var(--gold-vintage);
  color: #0c0a07;
  font-weight: 600;
  box-shadow: 0 4px 16px var(--gold-glow);
}

/* Gallery Masonry Grid */
.portfolio-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

.portfolio-item-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  background: #141414;
  border: 1px solid #252525;
  transition: transform var(--transition-smooth), box-shadow var(--transition-smooth), opacity var(--transition-fast);
}

.portfolio-item-card.hide {
  display: none;
}

.portfolio-card-inner {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
}

.portfolio-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.portfolio-item-card:hover .portfolio-thumb {
  transform: scale(1.08);
}

.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 20%, rgba(10, 10, 10, 0.7) 60%, rgba(10, 10, 10, 0.95) 100%);
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  opacity: 0.92;
  transition: opacity var(--transition-fast);
}

.portfolio-tag {
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  color: var(--gold-vintage);
  font-weight: 600;
  margin-bottom: 6px;
}

.portfolio-item-title {
  font-family: var(--font-serif-display);
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--text-ivory);
  line-height: 1.25;
  margin-bottom: 4px;
}

.portfolio-item-meta {
  font-size: 0.85rem;
  color: #bfbcb6;
  font-weight: 300;
}

.view-zoom-icon {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(15, 15, 15, 0.75);
  border: 1px solid rgba(197, 168, 128, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-champagne);
  opacity: 0;
  transform: translateY(-8px);
  transition: all var(--transition-fast);
}

.view-zoom-icon svg {
  width: 18px;
  height: 18px;
}

.portfolio-item-card:hover .view-zoom-icon {
  opacity: 1;
  transform: translateY(0);
}

/* "WATCH OUR FILMS" SHOWCASE */
.films-showcase-box {
  background: radial-gradient(circle at center, #181818 0%, #101010 100%);
  border: 1px solid rgba(197, 168, 128, 0.3);
  border-radius: var(--radius-lg);
  padding: 36px 36px 26px 36px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
}

.films-main-heading {
  font-family: var(--font-serif-display);
  font-size: clamp(2rem, 3.2vw, 2.7rem);
  font-weight: 500;
  color: var(--text-ivory);
  margin-top: 6px;
  margin-bottom: 6px;
}

/* ==========================================================================
   7B. INSTAGRAM REELS SHOWCASE ("TRENDING WEDDING REELS")
   ========================================================================== */
.insta-reels-showcase-section {
  margin-top: 0;
  position: relative;
}

.insta-reels-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 20px;
  gap: 16px;
  flex-wrap: wrap;
}

.insta-eyebrow-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-vintage);
  font-weight: 600;
  margin-bottom: 8px;
}

.icon-instagram {
  width: 16px;
  height: 16px;
}

.insta-heading {
  font-family: var(--font-serif-display);
  font-size: clamp(1.8rem, 3.2vw, 2.4rem);
  font-weight: 500;
  color: var(--text-ivory);
  line-height: 1.2;
}

.insta-sub {
  font-size: 0.86rem;
  color: var(--text-muted);
  letter-spacing: 0.02em;
}

.insta-account-bar {
  display: flex;
  align-items: center;
  gap: 14px;
}

.btn-insta-follow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.3);
  color: var(--gold-champagne);
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  transition: all var(--transition-fast);
}

.btn-insta-follow:hover {
  background: var(--gold-vintage);
  color: #0c0a07;
  border-color: var(--gold-vintage);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px var(--gold-glow);
}

.icon-insta-tiny {
  width: 14px;
  height: 14px;
}

.reels-nav-controls {
  display: flex;
  align-items: center;
  gap: 8px;
}

.reels-scroll-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #181818;
  border: 1px solid var(--border-subtle);
  color: var(--gold-vintage);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.reels-scroll-btn:hover {
  background: var(--gold-vintage);
  color: #0c0a07;
  border-color: var(--gold-vintage);
  box-shadow: 0 4px 14px var(--gold-glow);
}

/* Horizontal Reels Slider Track */
.insta-reels-slider-track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  padding: 8px 4px 16px 4px;
  -webkit-overflow-scrolling: touch;
}

.insta-reels-slider-track::-webkit-scrollbar {
  height: 6px;
}

.insta-reels-slider-track::-webkit-scrollbar-track {
  background: rgba(20, 20, 20, 0.8);
  border-radius: 3px;
}

.insta-reels-slider-track::-webkit-scrollbar-thumb {
  background: rgba(212, 175, 55, 0.35);
  border-radius: 3px;
}

.insta-reels-slider-track::-webkit-scrollbar-thumb:hover {
  background: var(--gold-vintage);
}

/* 9:16 Vertical Reel Card */
.insta-reel-card {
  flex: 0 0 270px;
  aspect-ratio: 9 / 16;
  border-radius: 14px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  background: #111111;
  border: 1px solid rgba(197, 168, 128, 0.28);
  scroll-snap-align: start;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease;
}

.insta-reel-card:hover,
.insta-reel-card.is-playing {
  transform: translateY(-8px) scale(1.02);
  border-color: rgba(212, 175, 55, 0.85);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.95), 0 0 30px rgba(212, 175, 55, 0.25);
}

/* Video & Poster */
.reel-media-wrapper {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.reel-poster-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 8s ease, filter 0.5s ease;
}

.insta-reel-card:hover .reel-poster-img,
.insta-reel-card.is-playing .reel-poster-img {
  transform: scale(1.08);
  filter: contrast(1.05) brightness(1.02);
}

.reel-video-element {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.insta-reel-card.has-video.is-playing .reel-video-element {
  opacity: 1;
}

/* Animated Sparkles / Light overlay on playing */
.reel-sparkle-layer {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 40%, rgba(212, 175, 55, 0.15) 0%, transparent 60%);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.insta-reel-card:hover .reel-sparkle-layer,
.insta-reel-card.is-playing .reel-sparkle-layer {
  opacity: 1;
  animation: sparkleFlicker 2s infinite alternate ease-in-out;
}

@keyframes sparkleFlicker {
  0% {
    opacity: 0.6;
  }

  100% {
    opacity: 1;
  }
}

/* Story/Reel Top Progress Bar */
.reel-progress-track {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: rgba(255, 255, 255, 0.2);
  z-index: 6;
}

.reel-progress-fill {
  height: 100%;
  width: 0%;
  background: var(--gold-gradient);
  transition: width 0.1s linear;
}

.insta-reel-card.is-playing .reel-progress-fill {
  animation: reelProgressAnim 8s linear infinite;
}

@keyframes reelProgressAnim {
  0% {
    width: 0%;
  }

  100% {
    width: 100%;
  }
}

/* Top Badges */
.reel-top-badges {
  position: absolute;
  top: 14px;
  left: 14px;
  right: 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 5;
}

.reel-likes-pill,
.reel-views-pill {
  background: rgba(10, 10, 10, 0.82);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(212, 175, 55, 0.25);
  padding: 5px 11px;
  border-radius: var(--radius-pill);
  font-size: 0.72rem;
  font-weight: 600;
  color: #ffffff;
  display: flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.likes-heart-icon {
  width: 13px;
  height: 13px;
  color: #ff334b;
  filter: drop-shadow(0 0 5px rgba(255, 51, 75, 0.6));
  flex-shrink: 0;
}

.views-eye-icon {
  width: 12px;
  height: 12px;
  color: var(--gold-vintage);
}

.reel-tags-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
  flex-wrap: wrap;
}

.reel-collab-badge {
  display: inline-flex;
  align-items: center;
  font-size: 0.62rem;
  letter-spacing: 0.04em;
  color: #f5f4f0;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(212, 175, 55, 0.35);
  backdrop-filter: blur(6px);
  padding: 2px 8px;
  border-radius: 12px;
  font-family: var(--font-sans);
}

.reel-ig-logo-badge {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
  transition: transform var(--transition-fast);
}

.reel-ig-logo-badge svg {
  width: 15px;
  height: 15px;
}

.insta-reel-card:hover .reel-ig-logo-badge {
  transform: rotate(15deg) scale(1.1);
}

/* Center Play Trigger / Preview HUD */
.reel-center-hud {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 5;
  pointer-events: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0.85;
  transition: all 0.3s ease;
}

.reel-play-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(15, 15, 15, 0.8);
  border: 1px solid var(--gold-vintage);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-vintage);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.7);
  transition: all 0.3s ease;
}

.reel-play-icon svg {
  width: 20px;
  height: 20px;
  margin-left: 2px;
}

.insta-reel-card.is-playing .reel-play-icon {
  background: var(--gold-gradient);
  color: #0c0a07;
  transform: scale(1.05);
}

.reel-status-text {
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #ffffff;
  background: rgba(10, 10, 10, 0.85);
  padding: 3px 8px;
  border-radius: 4px;
  opacity: 0;
  transform: translateY(4px);
  transition: all 0.25s ease;
}

.insta-reel-card.is-playing .reel-status-text {
  opacity: 1;
  transform: translateY(0);
}

/* Bottom Information Layer */
.reel-bottom-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 25%, rgba(10, 10, 10, 0.5) 60%, rgba(10, 10, 10, 0.95) 100%);
  pointer-events: none;
  z-index: 3;
}

.reel-info-hud {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 20px 16px 16px 16px;
  z-index: 5;
  display: flex;
  flex-direction: column;
}

.reel-category-pill {
  display: inline-block;
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-vintage);
  font-weight: 600;
  margin-bottom: 4px;
}

.reel-couple-title {
  font-family: var(--font-serif-display);
  font-size: 1.15rem;
  font-weight: 500;
  color: #ffffff;
  line-height: 1.25;
  margin-bottom: 4px;
}

.reel-caption-text {
  font-size: 0.78rem;
  color: #ccc9c2;
  line-height: 1.35;
  margin-bottom: 10px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Audio Track & Equalizer */
.reel-audio-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  color: var(--gold-champagne);
  margin-bottom: 12px;
}

.music-note-icon {
  width: 12px;
  height: 12px;
}

.reel-audio-title {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  flex-grow: 1;
}

.reel-equalizer {
  display: flex;
  align-items: flex-end;
  gap: 2px;
  height: 12px;
}

.reel-equalizer span {
  display: block;
  width: 2px;
  height: 3px;
  background: var(--gold-vintage);
  border-radius: 1px;
}

.insta-reel-card.is-playing .reel-equalizer span {
  animation: eqWave 0.8s infinite alternate ease-in-out;
}

.insta-reel-card.is-playing .reel-equalizer span:nth-child(2) {
  animation-delay: 0.2s;
}

.insta-reel-card.is-playing .reel-equalizer span:nth-child(3) {
  animation-delay: 0.4s;
}

.insta-reel-card.is-playing .reel-equalizer span:nth-child(4) {
  animation-delay: 0.15s;
}

@keyframes eqWave {
  0% {
    height: 2px;
  }

  100% {
    height: 12px;
  }
}

/* Click to Watch CTA Badge */
.reel-click-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 0.74rem;
  letter-spacing: 0.06em;
  font-weight: 700;
  text-transform: uppercase;
  color: #0c0a07;
  background: var(--gold-gradient);
  padding: 8px 14px;
  border-radius: var(--radius-pill);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.6);
  opacity: 0.9;
  transition: all var(--transition-fast);
}

.insta-reel-card:hover .reel-click-cta {
  background: var(--gold-gradient-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
  opacity: 1;
}

.cta-arrow {
  width: 12px;
  height: 12px;
}

/* ==========================================================================
   8. INVESTMENT & PACKAGES (Exact 2-Tier Pricing Cards)
   ========================================================================== */
.section-packages {
  padding: 45px 0 75px 0;
  background-color: var(--bg-obsidian);
  position: relative;
}

.packages-comparison-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 36px;
  max-width: 1080px;
  margin: 0 auto;
  align-items: stretch;
}

.pricing-card {
  background: var(--bg-charcoal);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  transition: transform var(--transition-smooth), border-color var(--transition-smooth), box-shadow var(--transition-smooth);
}

.pricing-card:hover {
  transform: translateY(-6px);
  border-color: rgba(197, 168, 128, 0.4);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8);
}

/* Featured Premium Card Styling */
.pricing-card.featured-card {
  border: 1.5px solid var(--gold-vintage);
  background: linear-gradient(180deg, #191919 0%, #141414 100%);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8), 0 0 35px var(--gold-glow-subtle);
}

.pricing-card.featured-card:hover {
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.9), 0 0 45px var(--gold-glow);
}

.premium-ribbon-tag {
  background: var(--gold-gradient);
  color: #0c0a07;
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  font-weight: 700;
  text-align: center;
  padding: 6px 12px;
  text-transform: uppercase;
}

/* Header Banner */
.package-header-banner {
  background: #1f1f1f;
  border-bottom: 1px solid var(--border-subtle);
  padding: 16px 24px;
  text-align: center;
}

.banner-title {
  font-family: var(--font-serif-display);
  font-size: 1.25rem;
  letter-spacing: 0.15em;
  font-weight: 600;
  color: var(--text-ivory);
}

.package-header-banner.premium-banner {
  background: #24221b;
  border-bottom: 1px solid rgba(212, 175, 55, 0.3);
}

.package-header-banner.premium-banner .banner-title {
  color: var(--gold-bright);
}

/* Price Banner Badge (Top Price Tag) */
.price-banner-badge {
  background: rgba(18, 18, 18, 0.9);
  padding: 30px 24px 22px 24px;
  text-align: center;
  border-bottom: 1px solid var(--border-subtle);
  position: relative;
}

.currency-symbol {
  font-family: var(--font-sans);
  font-size: 1.6rem;
  color: var(--gold-champagne);
  vertical-align: super;
  margin-right: 2px;
}

.price-amount {
  font-family: var(--font-serif-display);
  font-size: 3.4rem;
  font-weight: 700;
  color: var(--text-ivory);
  letter-spacing: -0.02em;
  line-height: 1;
}

.price-terms {
  display: block;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 8px;
}

.price-banner-badge.premium-badge {
  background: rgba(26, 24, 18, 0.95);
  border-bottom: 1px solid rgba(212, 175, 55, 0.25);
}

.price-banner-badge.premium-badge .price-amount {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Card Content & Features List */
.package-card-content {
  padding: 32px 36px 36px 36px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.package-pitch {
  font-size: 0.94rem;
  color: var(--text-muted);
  text-align: center;
  margin-bottom: 24px;
  line-height: 1.6;
}

.package-divider-flourish {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-subtle), transparent);
  margin-bottom: 28px;
}

.pricing-card.featured-card .package-divider-flourish {
  background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.3), transparent);
}

.package-features-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 36px;
  flex-grow: 1;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.95rem;
  color: #dfdcd6;
}

.feature-item.highlighted {
  color: var(--text-white);
}

.feature-gold-icon {
  width: 24px;
  height: 24px;
  min-width: 24px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-vintage);
}

.feature-gold-icon svg {
  width: 14px;
  height: 14px;
}

/* Bottom Price & Action Button */
.package-footer-card {
  border-top: 1px solid var(--border-subtle);
  padding-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.package-bottom-price {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.bottom-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-dim);
}

.bottom-amount {
  font-family: var(--font-serif-display);
  font-size: 1.65rem;
  font-weight: 600;
  color: var(--text-ivory);
}

.packages-custom-note {
  text-align: center;
  margin-top: 48px;
  color: var(--text-muted);
  font-size: 0.98rem;
}

.link-gold-underline {
  color: var(--gold-champagne);
  text-decoration: underline;
  text-underline-offset: 4px;
  margin-left: 6px;
  font-weight: 500;
}

.link-gold-underline:hover {
  color: var(--gold-bright);
}

/* ==========================================================================
   9. CONTACT & BOOKING SECTION
   ========================================================================== */
.section-contact {
  padding: 75px 0;
  background: linear-gradient(180deg, #0a0a0a 0%, #121212 50%, #0a0a0a 100%);
}

.contact-card-wrapper {
  background: #141414;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 48px 44px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
}

.contact-header-block {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 50px auto;
}

.contact-headline {
  font-family: var(--font-serif-display);
  font-size: clamp(2.2rem, 3.8vw, 3.2rem);
  font-weight: 500;
  color: var(--text-ivory);
  line-height: 1.2;
  margin-top: 10px;
  margin-bottom: 14px;
}

.contact-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.contact-interactive-grid {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 60px;
  align-items: flex-start;
}

.info-column-title {
  font-family: var(--font-serif-display);
  font-size: 1.45rem;
  color: var(--text-ivory);
  margin-bottom: 8px;
}

.info-column-sub {
  font-size: 0.92rem;
  color: var(--text-muted);
  margin-bottom: 30px;
  line-height: 1.6;
}

.contact-methods-stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 30px;
}

.contact-method-card {
  background: #191919;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 18px 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  transition: all var(--transition-fast);
}

.contact-method-card:hover {
  background: #202020;
  border-color: rgba(197, 168, 128, 0.45);
  transform: translateX(6px);
}

.method-icon-box {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-champagne);
}

.method-icon-box.gold-glow {
  background: rgba(212, 175, 55, 0.15);
  color: var(--gold-vintage);
}

.method-icon-box svg {
  width: 20px;
  height: 20px;
}

.method-details {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.method-label {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dim);
}

.method-value {
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--text-ivory);
}

.method-action-arrow {
  color: var(--gold-vintage);
  font-size: 1.2rem;
  transition: transform var(--transition-fast);
}

.contact-method-card:hover .method-action-arrow {
  transform: translateX(4px);
}

.icon-btn {
  width: 18px;
  height: 18px;
}

/* Interactive Form */
.wedding-inquiry-form {
  background: #191919;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 36px;
}

.form-intro {
  margin-bottom: 24px;
}

.form-title {
  font-family: var(--font-serif-display);
  font-size: 1.4rem;
  color: var(--text-ivory);
  margin-bottom: 6px;
}

.form-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
}

.form-group-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
}

.form-group label {
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  color: #cfccc4;
  font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
  background: #141414;
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--text-ivory);
  padding: 13px 16px;
  border-radius: 8px;
  font-size: 16px;
  /* 16px prevents iOS/Android Chrome auto-zoom */
  width: 100%;
  box-sizing: border-box;
  color-scheme: dark;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.form-group input[type="date"] {
  min-height: 48px;
  color-scheme: dark;
  -webkit-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%23d4af37' stroke-width='2'%3E%3Crect x='3' y='4' width='18' height='18' rx='2' ry='2'%3E%3C/rect%3E%3Cline x1='16' y1='2' x2='16' y2='6'%3E%3C/line%3E%3Cline x1='8' y1='2' x2='8' y2='6'%3E%3C/line%3E%3Cline x1='3' y1='10' x2='21' y2='10'%3E%3C/line%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 18px;
  padding-right: 44px;
}

.form-group input[type="date"]::-webkit-calendar-picker-indicator {
  opacity: 0;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  cursor: pointer;
}

.form-group select {
  min-height: 48px;
  color-scheme: dark;
  -webkit-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23d4af37' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 16px;
  padding-right: 40px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold-vintage);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.15);
}

.form-privacy-note {
  display: block;
  text-align: center;
  font-size: 0.74rem;
  color: var(--text-dim);
  margin-top: 14px;
}

/* ==========================================================================
   10. FOOTER
   ========================================================================== */
.luxury-footer {
  background: #080808;
  border-top: 1px solid #1c1c1c;
  padding: 60px 0 30px 0;
}

.footer-top-row {
  display: grid;
  grid-template-columns: 1.4fr 2fr;
  gap: 60px;
  align-items: flex-start;
  margin-bottom: 50px;
}

.footer-brand-block {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 14px;
}

.footer-aperture {
  width: 28px;
  height: 28px;
}

.footer-brand-title {
  font-family: var(--font-serif-luxury);
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--text-ivory);
}

.footer-motto {
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  color: var(--gold-champagne);
  line-height: 1.8;
  text-transform: uppercase;
  max-width: 360px;
}

.footer-links-group {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.col-heading {
  display: block;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-vintage);
  font-weight: 600;
  margin-bottom: 20px;
}

.footer-nav-col ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-nav-col a {
  font-size: 0.88rem;
  color: var(--text-muted);
  transition: color var(--transition-fast);
}

.footer-nav-col a:hover {
  color: var(--gold-champagne);
}

.footer-bottom-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 30px;
}

.copyright-text {
  font-size: 0.82rem;
  color: var(--text-dim);
}

.back-to-top-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-champagne);
  padding: 8px 14px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(197, 168, 128, 0.3);
  transition: all var(--transition-fast);
}

.back-to-top-btn svg {
  width: 14px;
  height: 14px;
}

.back-to-top-btn:hover {
  background: var(--gold-vintage);
  color: #0c0a07;
  border-color: transparent;
}

/* ==========================================================================
   MODALS: LIGHTBOX & VIDEO PLAYER
   ========================================================================== */
/* Lightbox Modal */
.lightbox-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-fast);
}

.lightbox-modal.active {
  opacity: 1;
  pointer-events: auto;
}

.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 5, 5, 0.95);
  backdrop-filter: blur(14px);
}

.lightbox-container {
  position: relative;
  z-index: 2;
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.lightbox-image-box {
  max-width: 100%;
  max-height: 75vh;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.9), 0 0 0 1px rgba(197, 168, 128, 0.25);
}

.lightbox-active-img {
  max-width: 100%;
  max-height: 75vh;
  object-fit: contain;
}

.lightbox-caption {
  margin-top: 18px;
  text-align: center;
}

.lightbox-title {
  font-family: var(--font-serif-display);
  font-size: 1.4rem;
  color: var(--text-ivory);
}

.lightbox-meta {
  font-size: 0.85rem;
  color: var(--gold-champagne);
  margin-top: 4px;
}

.lightbox-close {
  position: absolute;
  top: -46px;
  right: 0;
  font-size: 2.2rem;
  color: var(--text-ivory);
  line-height: 1;
  transition: color var(--transition-fast);
}

.lightbox-close:hover {
  color: var(--gold-vintage);
}

.lightbox-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.8rem;
  color: var(--text-ivory);
  background: rgba(20, 20, 20, 0.6);
  border: 1px solid var(--border-subtle);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
}

.lightbox-nav-btn:hover {
  background: var(--gold-vintage);
  color: #0c0a07;
  border-color: transparent;
}

.lightbox-nav-btn.prev {
  left: -70px;
}

.lightbox-nav-btn.next {
  right: -70px;
}

/* Video Modal */
.video-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-fast);
}

.video-modal.active {
  opacity: 1;
  pointer-events: auto;
}

.video-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 5, 5, 0.94);
  backdrop-filter: blur(16px);
}

.video-modal-container {
  position: relative;
  z-index: 2;
  width: 90vw;
  max-width: 960px;
  background: #111;
  border: 1px solid rgba(212, 175, 55, 0.35);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.95);
}

.video-modal-close {
  position: absolute;
  top: 14px;
  right: 18px;
  font-size: 2rem;
  color: var(--text-ivory);
  z-index: 10;
  line-height: 1;
}

.video-cinematic-stage {
  position: relative;
  aspect-ratio: 16 / 9;
  background: #000;
  overflow: hidden;
}

.stage-poster-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: cinematicPan 12s infinite alternate ease-in-out;
}

@keyframes cinematicPan {
  0% {
    transform: scale(1.02) translateX(0);
  }

  100% {
    transform: scale(1.08) translateX(-15px);
  }
}

.cinema-playback-layer {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.3) 0%, transparent 50%, rgba(0, 0, 0, 0.85) 100%);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
}

.soundtrack-wave-anim {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  height: 24px;
}

.soundtrack-wave-anim span {
  width: 3px;
  background: var(--gold-vintage);
  animation: waveSound 1.2s infinite ease-in-out alternate;
}

.soundtrack-wave-anim span:nth-child(2) {
  animation-delay: 0.2s;
}

.soundtrack-wave-anim span:nth-child(3) {
  animation-delay: 0.4s;
}

.soundtrack-wave-anim span:nth-child(4) {
  animation-delay: 0.6s;
}

.soundtrack-wave-anim span:nth-child(5) {
  animation-delay: 0.8s;
}

.soundtrack-wave-anim span:nth-child(6) {
  animation-delay: 0.3s;
}

@keyframes waveSound {
  0% {
    height: 4px;
  }

  100% {
    height: 22px;
  }
}

.film-timecode {
  font-family: monospace;
  font-size: 0.88rem;
  color: var(--gold-champagne);
  letter-spacing: 0.15em;
  background: rgba(0, 0, 0, 0.7);
  padding: 4px 10px;
  border-radius: 4px;
  align-self: flex-start;
}

.cinema-title-hud h3 {
  font-family: var(--font-serif-display);
  font-size: 1.4rem;
  color: var(--text-ivory);
}

.cinema-title-hud p {
  font-size: 0.84rem;
  color: var(--gold-champagne);
}

.video-controls-bar {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 18px 24px;
  background: #161616;
  border-top: 1px solid var(--border-subtle);
}

.ctrl-btn {
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-vintage);
  font-weight: 600;
}

.ctrl-progress-bar {
  flex-grow: 1;
  height: 4px;
  background: #2a2a2a;
  border-radius: 2px;
  position: relative;
  overflow: hidden;
}

.ctrl-progress-fill {
  width: 42%;
  height: 100%;
  background: var(--gold-vintage);
  animation: progressAnim 20s linear infinite;
}

@keyframes progressAnim {
  0% {
    width: 0%;
  }

  100% {
    width: 100%;
  }
}

/* Legal Modal */
.legal-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-fast);
}

.legal-modal.active {
  opacity: 1;
  pointer-events: auto;
}

.legal-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.88);
}

.legal-modal-card {
  position: relative;
  z-index: 2;
  background: #161616;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 36px;
  max-width: 580px;
  max-height: 80vh;
  overflow-y: auto;
}

.legal-modal-close {
  position: absolute;
  top: 16px;
  right: 20px;
  font-size: 1.8rem;
  color: var(--text-muted);
}

/* ==========================================================================
   RESPONSIVE DESIGN (Desktop 1440px -> Tablet -> Mobile 390px)
   ========================================================================== */
@media (max-width: 1200px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .why-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .portfolio-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

  .mobile-menu-btn {
    display: flex;
  }

  .about-editorial-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .packages-comparison-grid {
    grid-template-columns: 1fr;
    max-width: 560px;
  }

  .contact-interactive-grid {
    grid-template-columns: 1fr;
  }

  .footer-top-row {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .films-header-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .lightbox-nav-btn.prev {
    left: 10px;
  }

  .lightbox-nav-btn.next {
    right: 10px;
  }
}

/* ==========================================================================
   MOBILE & TABLET RESPONSIVE SYSTEM (Mobile-First Polish - Max 768px)
   ========================================================================== */
@media (max-width: 768px) {
  :root {
    --header-height: 68px;
  }

  /* Safe horizontal bounds */
  html, body {
    overflow-x: hidden;
    max-width: 100vw;
  }

  .container {
    padding: 0 16px;
    max-width: 100%;
    box-sizing: border-box;
  }

  /* Header & Mobile Action Bar */
  .luxury-header {
    height: var(--header-height);
  }

  .brand-badge {
    width: 34px;
    height: 34px;
    min-width: 34px;
  }

  .brand-name {
    font-size: 1.18rem;
    letter-spacing: 0.08em;
  }

  .brand-sub {
    font-size: 0.58rem;
    letter-spacing: 0.22em;
  }

  #nav-whatsapp-cta {
    width: 44px;
    height: 44px;
    min-width: 44px;
    min-height: 44px;
    padding: 0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border-color: rgba(212, 175, 55, 0.45);
    touch-action: manipulation;
  }

  #nav-whatsapp-cta span {
    display: none;
  }

  #nav-whatsapp-cta svg {
    margin: 0;
    width: 20px;
    height: 20px;
  }

  .mobile-menu-btn {
    display: flex;
    width: 44px;
    height: 44px;
    min-width: 44px;
    min-height: 44px;
    border: 1px solid rgba(197, 168, 128, 0.35);
    background: rgba(255, 255, 255, 0.06);
    border-radius: 8px;
    align-items: center;
    justify-content: center;
    gap: 5px;
    cursor: pointer;
    touch-action: manipulation;
  }

  /* Hero Section */
  .hero-section {
    min-height: auto;
    padding-top: calc(var(--header-height) + 20px);
    padding-bottom: 34px;
    padding-left: 16px;
    padding-right: 16px;
  }

  .hero-meta-badge {
    padding: 6px 14px;
    margin-bottom: 16px;
    max-width: 96%;
  }

  .meta-label {
    font-size: 0.64rem;
    letter-spacing: 0.14em;
    word-break: break-word;
  }

  .hero-headline {
    font-size: clamp(1.95rem, 8.5vw, 2.65rem);
    line-height: 1.15;
    margin-bottom: 14px;
  }

  .hero-subtitle {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
    padding: 0 4px;
  }

  .hero-cta-group {
    flex-direction: column;
    width: 100%;
    gap: 12px;
    margin-top: 10px;
    align-items: center;
  }

  .hero-cta-group .btn-gold-solid,
  .hero-cta-group .btn-ghost-gold {
    width: 100%;
    max-width: 320px;
    min-height: 48px;
    padding: 13px 20px;
    font-size: 0.86rem;
    justify-content: center;
    touch-action: manipulation;
  }

  .hero-scroll-cue {
    margin-top: 22px;
  }

  /* Section Spacings */
  .section-about,
  .section-services,
  .section-approach,
  .section-why,
  .section-contact {
    padding: 44px 0;
  }

  .section-portfolio {
    padding: 44px 0 20px 0;
  }

  .section-packages {
    padding: 20px 0 44px 0;
  }

  .section-header-center {
    margin: 0 auto 24px auto;
  }

  .section-title {
    font-size: clamp(1.85rem, 6.5vw, 2.35rem);
    margin-bottom: 8px;
  }

  .section-desc {
    font-size: 0.92rem;
    line-height: 1.6;
    padding: 0 4px;
  }

  /* About / Founder Section */
  .about-editorial-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .owner-film-frame {
    max-width: 100%;
    padding: 12px 10px 14px 10px;
  }

  .owner-frame-filmstrip {
    margin-bottom: 8px;
  }

  .owner-portrait-img {
    aspect-ratio: 731 / 1024;
    max-height: 480px;
  }

  .owner-top-tag {
    top: 18px;
    right: 18px;
    padding: 6px 14px;
  }

  .owner-top-tag span {
    font-size: 0.65rem;
  }

  .owner-pill-badge {
    padding: 6px 14px;
  }

  .owner-handle {
    font-size: 0.85rem;
  }

  .owner-role-title {
    font-size: 0.68rem;
  }

  .cinematography-craft-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .craft-card {
    padding: 16px 14px;
  }

  /* Compact 3-Column Luxury Stat Bar on Mobile */
  .about-stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin-top: 18px;
  }

  .stat-card {
    padding: 14px 6px;
    text-align: center;
    background: rgba(22, 22, 22, 0.65);
    border: 1px solid rgba(197, 168, 128, 0.2);
    border-radius: var(--radius-sm);
  }

  .stat-number {
    font-size: clamp(1.35rem, 5.2vw, 1.75rem);
    line-height: 1.1;
    margin-bottom: 4px;
  }

  .stat-label {
    font-size: 0.65rem;
    line-height: 1.25;
    color: var(--text-muted);
  }

  .owner-cta-group {
    flex-direction: column;
    width: 100%;
    gap: 12px;
    align-items: center;
    margin-top: 20px;
  }

  .owner-cta-group .btn-gold-solid,
  .owner-cta-group .btn-ghost-gold {
    width: 100%;
    max-width: 320px;
    min-height: 48px;
    justify-content: center;
    touch-action: manipulation;
  }

  /* Services Grid */
  .services-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .service-card {
    padding: 22px 18px;
  }

  /* Approach Section */
  .approach-steps-container {
    gap: 16px;
  }

  .approach-card {
    padding: 22px 18px;
  }

  /* Why Us Cards */
  .why-cards-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .why-card {
    padding: 22px 18px;
  }

  /* Portfolio Section - Sleek Native App Horizontal Pill Carousel */
  .portfolio-filter-tabs {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 4px 16px 10px 16px;
    margin: 0 -16px 20px -16px;
    gap: 8px;
    justify-content: flex-start;
  }

  .portfolio-filter-tabs::-webkit-scrollbar {
    display: none;
  }

  .filter-tab {
    flex-shrink: 0;
    white-space: nowrap;
    padding: 9px 18px;
    font-size: 0.78rem;
    border-radius: var(--radius-pill);
    touch-action: manipulation;
  }

  .portfolio-gallery-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 24px;
  }

  .portfolio-item-card {
    border-radius: 12px;
  }

  .portfolio-card-inner {
    aspect-ratio: 4 / 3;
  }

  .portfolio-overlay {
    padding: 16px 14px;
    opacity: 1; /* Always legible on touch displays */
    background: linear-gradient(180deg, transparent 15%, rgba(10, 10, 10, 0.6) 55%, rgba(10, 10, 10, 0.94) 100%);
  }

  .portfolio-item-title {
    font-size: 1.2rem;
    line-height: 1.25;
  }

  .view-zoom-icon {
    top: 14px;
    right: 14px;
    width: 38px;
    height: 38px;
  }

  /* Lightbox Modal Responsive System */
  .lightbox-container {
    max-width: 95vw;
    max-height: 88vh;
    padding: 0;
  }

  .lightbox-image-box {
    max-height: 64vh;
  }

  .lightbox-image-box img {
    max-height: 64vh;
    object-fit: contain;
    border-radius: 6px;
  }

  .lightbox-close {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 44px;
    height: 44px;
    min-width: 44px;
    min-height: 44px;
    background: rgba(10, 10, 10, 0.75);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: #ffffff;
    z-index: 20;
    cursor: pointer;
    touch-action: manipulation;
  }

  .lightbox-nav-btn {
    width: 42px;
    height: 42px;
    font-size: 1.4rem;
    background: rgba(10, 10, 10, 0.75);
    border: 1px solid rgba(212, 175, 55, 0.4);
    z-index: 15;
    touch-action: manipulation;
  }

  .lightbox-nav-btn.prev {
    left: 8px;
  }

  .lightbox-nav-btn.next {
    right: 8px;
  }

  .lightbox-caption {
    margin-top: 12px;
    padding: 0 10px;
  }

  .lightbox-title {
    font-size: 1.15rem;
  }

  .lightbox-meta {
    font-size: 0.8rem;
  }

  /* Films & Reels Showcase */
  .films-showcase-box {
    padding: 20px 12px 16px 12px;
    border-radius: 14px;
  }

  .insta-reels-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 14px;
  }

  .insta-account-bar {
    width: 100%;
    justify-content: space-between;
  }

  .insta-reels-slider-track {
    gap: 14px;
    padding: 6px 4px 14px 4px;
    -webkit-overflow-scrolling: touch;
  }

  .insta-reel-card {
    flex: 0 0 240px;
  }

  /* Packages & Pricing */
  .packages-comparison-grid {
    grid-template-columns: 1fr;
    gap: 22px;
    max-width: 100%;
  }

  .pricing-card {
    border-radius: 16px;
  }

  .package-card-content {
    padding: 22px 16px;
  }

  .features-checklist {
    gap: 12px;
    margin: 18px 0;
  }

  .feature-item {
    font-size: 0.85rem;
  }

  .package-bottom-price {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .bottom-amount {
    font-size: 1.55rem;
  }

  .package-footer-card .btn-gold-solid {
    min-height: 48px;
    touch-action: manipulation;
  }

  /* Contact & Booking Section: SINGLE UNIFIED CARD */
  .contact-card-wrapper {
    padding: 22px 14px;
    border-radius: 16px;
    background: #121212;
    border: 1px solid rgba(212, 175, 55, 0.25);
  }

  .contact-header-block {
    margin-bottom: 20px;
  }

  .contact-headline {
    font-size: clamp(1.75rem, 6vw, 2.15rem);
  }

  .contact-interactive-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .contact-methods-stack {
    gap: 12px;
    margin-bottom: 16px;
  }

  .contact-method-card {
    padding: 14px 16px;
    min-height: 52px;
    touch-action: manipulation;
  }

  /* Seamless Form on Mobile */
  .wedding-inquiry-form {
    background: transparent;
    border: none;
    padding: 18px 0 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }

  .form-group-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .form-group {
    margin-bottom: 14px;
  }

  .form-group label {
    font-size: 0.84rem;
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    font-size: 16px; /* Prevents auto-zoom on iOS */
    padding: 12px 14px;
    min-height: 48px;
    border-radius: 8px;
    box-sizing: border-box;
  }

  .form-group select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23C5A880' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    background-size: 14px;
    padding-right: 36px;
    -webkit-appearance: none;
    appearance: none;
  }

  #submitInquiryBtn {
    min-height: 50px;
    touch-action: manipulation;
  }

  /* Video Modal & Legal Modal on Mobile */
  .video-modal-container {
    width: 95vw;
    border-radius: var(--radius-sm);
  }

  .legal-modal-card {
    max-width: 92vw;
    padding: 28px 18px;
    max-height: 82vh;
  }

  /* Footer */
  .luxury-footer {
    padding: 42px 0 25px 0;
  }

  .footer-top-row {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-links-group {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .footer-bottom-bar {
    flex-direction: column-reverse;
    gap: 14px;
    text-align: center;
    padding-bottom: max(16px, env(safe-area-inset-bottom));
  }
}

/* Specific Small Phone Refinements (Max 480px) */
@media (max-width: 480px) {
  .hero-headline {
    font-size: clamp(1.85rem, 8vw, 2.15rem);
  }

  .insta-reel-card {
    flex: 0 0 220px;
  }

  .owner-portrait-img {
    max-height: 440px;
  }

  .about-stats-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
  }

  .stat-card {
    padding: 10px 4px;
  }

  .stat-number {
    font-size: 1.35rem;
  }

  .stat-label {
    font-size: 0.62rem;
  }

  .contact-card-wrapper {
    padding: 18px 12px;
  }

  .wedding-inquiry-form {
    padding: 16px 0 0 0;
  }
}

/* Extra Small Phones (Max 360px) */
@media (max-width: 360px) {
  .hero-headline {
    font-size: 1.7rem;
  }

  .about-stats-grid {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .stat-card {
    padding: 12px 8px;
  }

  .insta-reel-card {
    flex: 0 0 200px;
  }

  .filter-tab {
    padding: 8px 14px;
    font-size: 0.74rem;
  }
}