/* ══════════════════════════════════════════════
   HYTENSION EVENTS — Styles
   ══════════════════════════════════════════════ */

:root {
  --black:       #0A0A0E;
  --dark:        #111118;
  --dark-alt:    #15151E;
  --smoke:       #1E1E28;
  --slate:       #2C2C38;
  --gold:        #C9A84C;
  --gold-hover:  #D4B55A;
  --gold-dim:    rgba(201,168,76,0.15);
  --champagne:   #E8DFC0;
  --cream:       #F4F0E8;
  --warm-white:  #F7F5F0;
  --white:       #FAFAF7;
  --text-light:  #DEDAD2;
  --text-mid:    #C8C2BA;
  --text-dim:    #A8A49C;
}

/* ── Reset ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--black);
  color: var(--cream);
  font-family: 'Montserrat', sans-serif;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
::selection { background: rgba(201,168,76,0.2); }

/* ── Shared labels ── */
.section-label {
  font-size: 8px;
  font-weight: 500;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  display: block;
}


/* ══════════════════════════════════════════════
   NAVIGATION
   ══════════════════════════════════════════════ */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0 40px;
  height: 72px;
  display: flex;
  align-items: center;
  background: rgba(10,10,14,0.93);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(212,197,160,0.06);
  transition: all 0.4s ease;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-right: auto;
}

.nav-monogram {
  display: flex;
  align-items: center;
}
.nav-monogram .nm-h {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  font-weight: 300;
  color: var(--cream);
  line-height: 1;
  letter-spacing: -1px;
}
.nav-monogram .nm-e {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  letter-spacing: -1px;
}

.nav-divider {
  width: 1px;
  height: 22px;
  background: rgba(201,168,76,0.2);
}

.nav-brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--champagne);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}
.nav-links a {
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--champagne);
  position: relative;
  padding-bottom: 4px;
  transition: color 0.3s ease;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.4s ease;
}
.nav-links a:hover { color: var(--champagne); }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  font-size: 8px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(201,168,76,0.3);
  padding: 10px 22px;
  transition: all 0.4s ease;
  margin-left: 8px;
  list-style: none;
}
.nav-cta:hover {
  background: rgba(201,168,76,0.08);
  border-color: var(--gold);
}

/* Mobile toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--cream);
  transition: all 0.3s ease;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }


/* ══════════════════════════════════════════════
   HERO
   ══════════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 24px 80px;
  position: relative;
  overflow: hidden;
  background: var(--black);
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(0,0,0,0.72) 0%, rgba(0,0,0,0.62) 50%, rgba(0,0,0,0.80) 100%),
    radial-gradient(ellipse at 50% 90%, rgba(201,168,76,0.08) 0%, transparent 55%);
  pointer-events: none;
}

/* Subtle noise grain */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.025;
  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.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  pointer-events: none;
}

/* Hero video background */
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
  pointer-events: none;
}

/* Now Booking badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 8px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(201,168,76,0.25);
  padding: 8px 20px;
  white-space: nowrap;
  margin-bottom: 32px;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.15s forwards;
}
.hero-badge-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
  animation: pulse-dot 2s ease infinite;
  flex-shrink: 0;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.7); }
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
}

/* Big HE monogram */
.hero-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: 8px;
  position: relative;
  opacity: 0;
  animation: fadeUp 1s ease 0.3s forwards;
}
.hero-logo .hl-h {
  font-family: 'Cormorant Garamond', serif;
  font-size: 110px;
  font-weight: 300;
  color: var(--cream);
  line-height: 1;
  letter-spacing: -3px;
}
.hero-logo .hl-e {
  font-family: 'Cormorant Garamond', serif;
  font-size: 110px;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  letter-spacing: -3px;
}

/* Tie accent decoration */
.tie-accent {
  position: absolute;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
}
.tie-knot {
  width: 8px;
  height: 5px;
  border-bottom: 1px solid var(--text-mid);
  border-radius: 0 0 50% 50%;
}
.tie-line {
  width: 1px;
  height: 22px;
  background: linear-gradient(to bottom, var(--text-mid), transparent);
}

.hero-brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 500;
  letter-spacing: 12px;
  text-transform: uppercase;
  color: var(--champagne);
  margin-bottom: 6px;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.6s forwards;
}

.hero-tagline-small {
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 48px;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.8s forwards;
}

.hero-rule {
  width: 40px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 0 auto 48px;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.9s forwards;
}

.hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 68px;
  font-weight: 300;
  line-height: 1.1;
  color: #FFFFFF;
  letter-spacing: 1px;
  margin-bottom: 20px;
  opacity: 0;
  animation: fadeUp 0.8s ease 1.0s forwards;
  text-shadow: 0 2px 24px rgba(0,0,0,0.8);
}
.hero h1 em {
  font-style: italic;
  color: var(--gold);
  font-weight: 300;
}

.hero-sub {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.85;
  color: #FFFFFF;
  max-width: 480px;
  margin: 0 auto 40px;
  opacity: 0;
  animation: fadeUp 0.8s ease 1.15s forwards;
  text-shadow: 0 1px 16px rgba(0,0,0,0.8);
}

.hero-cta-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.8s ease 1.3s forwards;
  margin-bottom: 56px;
}

.hero-cta {
  display: inline-block;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--black);
  background: var(--gold);
  border: 1px solid var(--gold);
  padding: 16px 44px;
  transition: all 0.4s ease;
}
.hero-cta:hover {
  background: var(--gold-hover);
  border-color: var(--gold-hover);
  letter-spacing: 5px;
}

.hero-cta-ghost {
  display: inline-block;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--cream);
  border-bottom: 1px solid rgba(244,240,232,0.3);
  padding-bottom: 2px;
  transition: all 0.4s ease;
}
.hero-cta-ghost:hover {
  color: var(--gold);
  border-color: rgba(201,168,76,0.5);
  letter-spacing: 5px;
}

/* Hero stats strip */
.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  opacity: 0;
  animation: fadeUp 0.8s ease 1.5s forwards;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 28px;
}
.hero-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 32px;
}
.hs-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  font-weight: 400;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 4px;
}
.hs-label {
  font-size: 7px;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-dim);
}
.hero-stat-div {
  width: 1px;
  height: 28px;
  background: rgba(255,255,255,0.12);
  flex-shrink: 0;
}

.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0;
  animation: fadeUp 0.8s ease 1.6s forwards;
}
.hero-scroll span {
  font-size: 7px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-dim);
}
.scroll-line {
  width: 1px;
  height: 28px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; height: 28px; }
  50% { opacity: 1; height: 36px; }
}


/* ══════════════════════════════════════════════
   TRANSITIONS — full-bleed photo breaks
   ══════════════════════════════════════════════ */

/* Section transitions — pure gradient dividers (no photos) */
.transition-dark-to-light,
.transition-light-to-dark,
.transition-testimonial-cta,
.transition-cta-footer {
  height: 80px;
  position: relative;
  display: block;
}

/* Hero (dark) → About (warm-white) */
.transition-dark-to-light {
  height: 340px;
  background-image: url('DSC09669.jpg');
  background-size: cover;
  background-position: center 30%;
  background-attachment: fixed;
}
.transition-dark-to-light::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, var(--black) 0%, rgba(0,0,0,0.3) 40%, rgba(0,0,0,0.3) 60%, var(--warm-white) 100%);
  pointer-events: none;
}

/* Gallery (warm-white) → Services (dark) */
.transition-light-to-dark {
  height: 340px;
  background-image: url('DSC09780.jpg');
  background-size: cover;
  background-position: center 25%;
  background-attachment: fixed;
}
.transition-light-to-dark::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, var(--warm-white) 0%, rgba(0,0,0,0.3) 40%, rgba(0,0,0,0.3) 60%, var(--dark) 100%);
  pointer-events: none;
}

/* Audio/Video (dark-alt) → Booking CTA (warm-white) */
.transition-testimonial-cta {
  height: 340px;
  overflow: hidden;
}
.transition-testimonial-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, var(--dark-alt) 0%, rgba(0,0,0,0.4) 40%, rgba(0,0,0,0.4) 60%, var(--warm-white) 100%);
  pointer-events: none;
  z-index: 1;
}
.transition-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
  pointer-events: none;
}

/* Booking CTA (warm-white) → Footer (black) */
.transition-cta-footer {
  height: 340px;
  background-image: url('hero-bg.jpg');
  background-size: cover;
  background-position: center 30%;
  background-attachment: fixed;
}
.transition-cta-footer::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, var(--warm-white) 0%, rgba(0,0,0,0.35) 40%, rgba(0,0,0,0.35) 60%, var(--black) 100%);
  pointer-events: none;
}


/* ══════════════════════════════════════════════
   WELCOME / INTRO  (dark)
   ══════════════════════════════════════════════ */
.welcome {
  background: var(--dark);
  padding: 100px 24px;
  text-align: center;
}

.welcome-inner {
  max-width: 900px;
  margin: 0 auto;
}

.welcome-statement {
  margin-bottom: 64px;
}

.welcome-statement h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 44px;
  font-weight: 300;
  color: var(--cream);
  line-height: 1.2;
  margin-bottom: 24px;
  letter-spacing: 0.5px;
}

.welcome-statement h2 em {
  font-style: italic;
  color: var(--gold);
}

.welcome-statement p {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.9;
  color: var(--text-light);
  max-width: 620px;
  margin: 0 auto;
}

/* Stats row */
.welcome-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: 64px;
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 40px 0;
}

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

.welcome-stat-divider {
  width: 1px;
  height: 48px;
  background: rgba(255,255,255,0.08);
  flex-shrink: 0;
}

.ws-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 52px;
  font-weight: 300;
  color: var(--cream);
  line-height: 1;
  letter-spacing: -1px;
}

.ws-number em {
  font-style: normal;
  color: var(--gold);
  font-size: 36px;
}

.ws-label {
  font-size: 8px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-dim);
}

/* Service pills */
.welcome-services {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.welcome-service {
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(201,168,76,0.2);
  padding: 12px 24px;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-light);
  transition: all 0.3s ease;
}

.welcome-service:hover {
  border-color: var(--gold);
  color: var(--champagne);
}

.ws-icon {
  color: var(--gold);
  font-size: 10px;
}


/* ══════════════════════════════════════════════
   ABOUT  (light)
   ══════════════════════════════════════════════ */
.about {
  background: var(--warm-white);
  padding: 80px 24px 60px;
  text-align: center;
}

.about-inner {
  max-width: 720px;
  margin: 0 auto;
}

.about h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 52px;
  font-weight: 400;
  color: #2A2A2A;
  letter-spacing: 1px;
  line-height: 1.2;
  margin-bottom: 8px;
}
.about h2 em { font-style: italic; color: var(--gold); }

.about-sub {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
}

.about p {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.9;
  color: #1E1E1E;
  margin-bottom: 0;
}

.about-moment {
  font-family: 'Cormorant Garamond', serif;
  font-size: 36px;
  font-weight: 600;
  font-style: italic;
  color: #4A3200 !important;
  margin-top: 28px !important;
  margin-bottom: 0 !important;
  letter-spacing: 0.5px;
}

.about-full {
  display: none;
  overflow: hidden;
}
.about-full.open {
  display: block;
}

.hiw-read-more {
  display: inline-block;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  border-bottom: 1px solid rgba(201,168,76,0.3);
  padding-bottom: 2px;
  margin-top: 20px;
  margin-bottom: 48px;
  transition: all 0.3s ease;
}
.hiw-read-more:hover {
  letter-spacing: 4px;
  border-color: var(--gold);
}

.about-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-size: 36px;
  font-weight: 600;
  letter-spacing: 3px;
  color: #1A1A1A !important;
  text-transform: uppercase;
  margin-top: 28px !important;
  margin-bottom: 48px !important;
}

.about-pillars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 48px;
  text-align: left;
}

.pillar {
  padding: 28px 24px;
  border: 1px solid rgba(0,0,0,0.07);
  border-radius: 2px;
  background: rgba(255,255,255,0.5);
  transition: all 0.4s ease;
}
.pillar:hover {
  border-color: rgba(201,168,76,0.3);
  background: rgba(255,255,255,0.8);
}

.pillar-icon {
  font-size: 16px;
  color: var(--gold);
  margin-bottom: 14px;
}

.pillar h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 16px;
  font-weight: 500;
  color: #2A2A2A;
  margin-bottom: 8px;
  letter-spacing: 0.5px;
}

.pillar p {
  font-size: 13px;
  font-weight: 400;
  line-height: 1.7;
  color: #444;
  margin-bottom: 0;
}

/* Shared dark button for light sections */
.btn-dark {
  display: inline-block;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--warm-white);
  background: #2A2A2A;
  padding: 14px 40px;
  transition: all 0.4s ease;
}
.btn-dark:hover {
  background: var(--gold);
  color: var(--black);
}


/* ══════════════════════════════════════════════
   GALLERY (light)
   ══════════════════════════════════════════════ */
.gallery {
  background: var(--warm-white);
  padding: 0 24px 80px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  max-width: 960px;
  margin: 0 auto;
}

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

.gi-placeholder {
  aspect-ratio: 3/4;
  width: 100%;
  transition: transform 0.6s ease;
}

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

.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid rgba(201,168,76,0);
  border-radius: 2px;
  transition: border-color 0.4s ease;
  pointer-events: none;
}
.gallery-item:hover::after { border-color: rgba(201,168,76,0.4); }

.gi-1 { background: linear-gradient(145deg, #C8BB9E, #A89680); }
.gi-2 { background: linear-gradient(145deg, #8E857A, #6E625A); }
.gi-3 { background: linear-gradient(145deg, #BCAF98, #9E9282); }
.gi-4 { background: linear-gradient(145deg, #D6CAB0, #BEB498); }

.gi-label {
  position: absolute;
  bottom: 12px;
  left: 14px;
  font-size: 8px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  opacity: 0;
  transform: translateY(4px);
  transition: all 0.4s ease;
}
.gallery-item:hover .gi-label {
  opacity: 1;
  transform: translateY(0);
}


/* ══════════════════════════════════════════════
   SERVICES (dark)
   ══════════════════════════════════════════════ */
.services {
  background: var(--dark);
  padding: 100px 24px;
  position: relative;
}

.services::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(201,168,76,0.03) 0%, transparent 60%);
  pointer-events: none;
}

.services-inner {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  text-align: center;
}

.services h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 36px;
  font-weight: 400;
  color: var(--cream);
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.services-sub {
  font-size: 14px;
  font-weight: 400;
  color: var(--text-light);
  margin-bottom: 52px;
  line-height: 1.7;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 64px;
  text-align: left;
}

.service-card {
  border: 1px solid rgba(255,255,255,0.04);
  border-radius: 2px;
  background: rgba(255,255,255,0.015);
  transition: all 0.4s ease;
  overflow: hidden;
}
.service-card:hover {
  border-color: rgba(201,168,76,0.2);
  background: rgba(201,168,76,0.025);
}

.service-card-img {
  width: 100%;
  height: 200px;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}
.service-card-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 40%, rgba(10,10,14,0.7) 100%);
}
.service-card:hover .service-card-img {
  filter: brightness(1.08);
}

.service-card-body {
  padding: 28px 28px 32px;
}

.service-icon {
  font-size: 16px;
  color: var(--gold);
  margin-bottom: 18px;
  display: block;
  opacity: 0.7;
  transition: opacity 0.4s ease;
}
.service-card:hover .service-icon { opacity: 1; }

.service-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 500;
  color: var(--cream);
  margin-bottom: 10px;
  letter-spacing: 0.5px;
}

.service-card > p {
  font-size: 13px;
  font-weight: 400;
  line-height: 1.75;
  color: var(--text-light);
  margin-bottom: 18px;
}

.service-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.service-list li {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.5px;
  color: var(--text-mid);
  display: flex;
  align-items: center;
  gap: 8px;
}
.service-list li::before {
  content: '—';
  color: var(--gold);
  opacity: 0.5;
  font-size: 9px;
}

/* Add-ons */
.services-add-ons {
  border-top: 1px solid rgba(255,255,255,0.05);
  padding-top: 60px;
  margin-top: 60px;
  text-align: center;
}

.add-ons-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 36px;
  font-weight: 300;
  color: var(--cream);
  margin-bottom: 16px;
  letter-spacing: 0.5px;
}

.add-ons-title em {
  font-style: italic;
  color: var(--gold);
}

.add-ons-intro {
  font-size: 14px;
  font-weight: 400;
  color: var(--text-light);
  line-height: 1.8;
  max-width: 580px;
  margin: 0 auto 40px;
}

.add-ons-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  text-align: left;
  margin-bottom: 48px;
}

.add-ons-cta {
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.add-ons-cta p {
  font-size: 13px;
  font-weight: 400;
  color: var(--text-mid);
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.btn-gold {
  display: inline-block;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--black);
  background: var(--gold);
  border: 1px solid var(--gold);
  padding: 14px 36px;
  transition: all 0.3s ease;
}

.btn-gold:hover {
  background: var(--gold-hover);
  border-color: var(--gold-hover);
  letter-spacing: 5px;
}

.add-on {
  display: flex;
  flex-direction: column;
  gap: 0;
  background: var(--smoke);
  border-top: 2px solid var(--gold);
  padding: 32px 28px 28px;
  transition: border-color 0.3s;
}

.add-on:hover {
  border-color: color-mix(in srgb, var(--gold) 100%, white 20%);
}

.add-on-icon {
  font-size: 18px;
  color: var(--gold);
  margin-bottom: 16px;
  opacity: 0.85;
  line-height: 1;
}

.add-on h5 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 500;
  color: var(--cream);
  margin-bottom: 10px;
  letter-spacing: 0.3px;
}

.add-on p {
  font-size: 13px;
  font-weight: 400;
  line-height: 1.75;
  color: var(--text-light);
}


/* ══════════════════════════════════════════════
   WHY CHOOSE US
   ══════════════════════════════════════════════ */
.why-us {
  background: var(--dark-alt);
  padding: 100px 24px;
  text-align: center;
}
.why-us-inner {
  max-width: 960px;
  margin: 0 auto;
}
.why-us h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 48px;
  font-weight: 300;
  color: var(--cream);
  line-height: 1.2;
  margin-bottom: 56px;
}
.why-us h2 em { color: var(--gold); font-style: italic; }
.why-us-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  margin-bottom: 0;
}
.why-us-card {
  background: var(--smoke);
  padding: 40px 28px;
  text-align: left;
  transition: background 0.3s ease;
}
.why-us-card:hover {
  background: var(--slate);
}
.why-us-icon {
  font-size: 18px;
  color: var(--gold);
  margin-bottom: 20px;
}
.why-us-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 500;
  color: var(--cream);
  margin-bottom: 12px;
  letter-spacing: 0.3px;
  line-height: 1.3;
}
.why-us-card p {
  font-size: 13px;
  line-height: 1.8;
  color: var(--text-mid);
}
@media (max-width: 900px) {
  .why-us-grid { grid-template-columns: 1fr 1fr; }
  .why-us h2 { font-size: 36px; }
}
@media (max-width: 600px) {
  .why-us-grid { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════════════════
   HOW IT WORKS
   ══════════════════════════════════════════════ */
.how-it-works {
  background: var(--dark);
  padding: 100px 24px;
  text-align: center;
}
.hiw-inner {
  max-width: 860px;
  margin: 0 auto;
}
.how-it-works h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 48px;
  font-weight: 300;
  color: var(--cream);
  line-height: 1.2;
  margin-bottom: 64px;
}
.how-it-works h2 em { color: var(--gold); font-style: italic; }
.hiw-steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  margin-bottom: 56px;
}
.hiw-step {
  flex: 1;
  text-align: left;
  padding: 0 40px;
}
.hiw-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 56px;
  font-weight: 300;
  color: rgba(201,168,76,0.2);
  line-height: 1;
  margin-bottom: 16px;
}
.hiw-body h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 500;
  color: var(--cream);
  margin-bottom: 12px;
  letter-spacing: 0.5px;
}
.hiw-body p {
  font-size: 14px;
  line-height: 1.8;
  color: var(--text-mid);
}
.hiw-divider {
  width: 1px;
  height: 120px;
  background: linear-gradient(to bottom, transparent, rgba(201,168,76,0.3), transparent);
  flex-shrink: 0;
  margin-top: 16px;
}
@media (max-width: 700px) {
  .hiw-steps { flex-direction: column; align-items: center; gap: 40px; }
  .hiw-step { padding: 0 8px; text-align: center; }
  .hiw-divider { width: 40px; height: 1px; background: linear-gradient(to right, transparent, rgba(201,168,76,0.3), transparent); margin: 0; }
  .how-it-works h2 { font-size: 34px; }
}

/* ══════════════════════════════════════════════
   TESTIMONIALS (dark-alt)
   ══════════════════════════════════════════════ */
.testimonials {
  background: var(--dark-alt);
  padding: 100px 24px;
  text-align: center;
  position: relative;
}

/* Large decorative quote mark */
.testimonials::before {
  content: '"';
  font-family: 'Cormorant Garamond', serif;
  font-size: 180px;
  font-weight: 300;
  color: rgba(201,168,76,0.05);
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  line-height: 1;
  pointer-events: none;
}

.testimonials-inner {
  max-width: 660px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.testimonial-slider {
  min-height: 160px;
  position: relative;
  margin-bottom: 40px;
}

.testimonial-slide {
  display: none;
  flex-direction: column;
  align-items: center;
  animation: fadeSlide 0.5s ease;
}
.testimonial-slide.active {
  display: flex;
}

@keyframes fadeSlide {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}

.testimonial-slide blockquote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-weight: 300;
  font-style: italic;
  line-height: 1.65;
  color: var(--cream);
  margin-bottom: 24px;
}

.testimonial-slide cite {
  font-family: 'Montserrat', sans-serif;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  font-style: normal;
}

.testimonial-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.t-btn {
  background: none;
  border: 1px solid rgba(201,168,76,0.2);
  color: var(--text-mid);
  width: 38px;
  height: 38px;
  cursor: pointer;
  font-size: 14px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.t-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.t-dots { display: flex; gap: 8px; }
.t-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgba(201,168,76,0.2);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}
.t-dot.active {
  background: var(--gold);
  transform: scale(1.3);
}


/* ══════════════════════════════════════════════
   BOOKING / CTA (light)
   ══════════════════════════════════════════════ */
.book-section {
  background: var(--warm-white);
  padding: 80px 24px 100px;
}

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

.book-section h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 38px;
  font-weight: 400;
  color: #2A2A2A;
  margin-bottom: 12px;
  line-height: 1.2;
}
.book-section h2 em { font-style: italic; color: var(--gold); }

.book-section > .book-inner > p {
  font-size: 14px;
  font-weight: 400;
  color: #333;
  margin-bottom: 48px;
  line-height: 1.8;
}

/* HoneyBook widget wrapper */
.honeybook-wrap {
  width: 100%;
  max-width: 680px;
  margin: 0 auto;
}

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

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

.form-group label {
  display: block;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #333;
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: white;
  border: 1px solid rgba(0,0,0,0.1);
  border-radius: 0;
  padding: 12px 16px;
  color: #2A2A2A;
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 400;
  transition: all 0.3s ease;
  outline: none;
  appearance: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: #bbb; }

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: rgba(201,168,76,0.5);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.06);
}

.form-group select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23aaa' stroke-width='1.5'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 16px;
  padding-right: 36px;
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
  line-height: 1.6;
}

.btn-submit {
  display: block;
  width: 100%;
  font-family: 'Montserrat', sans-serif;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--black);
  background: var(--gold);
  border: none;
  padding: 18px;
  cursor: pointer;
  transition: all 0.4s ease;
  margin-top: 8px;
}
.btn-submit:hover {
  background: var(--gold-hover);
  letter-spacing: 5px;
}
.btn-submit:disabled {
  opacity: 0.6;
  cursor: default;
  letter-spacing: 4px;
}

.form-success {
  margin-top: 20px;
  padding: 16px 20px;
  border: 1px solid rgba(201,168,76,0.4);
  background: rgba(201,168,76,0.06);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 2px;
  color: #444;
  text-align: center;
}


/* ══════════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════════ */
footer {
  background: var(--black);
  padding: 64px 40px 40px;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 960px;
  margin: 0 auto 48px;
  flex-wrap: wrap;
  gap: 40px;
}

.footer-brand { max-width: 260px; }

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}
.footer-logo .fl-h {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-weight: 300;
  color: var(--cream);
  letter-spacing: -1px;
}
.footer-logo .fl-e {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-weight: 300;
  color: var(--gold);
  letter-spacing: -1px;
}
.footer-logo .fl-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--champagne);
}

.footer-brand > p {
  font-size: 12px;
  font-weight: 400;
  line-height: 1.7;
  color: var(--text-mid);
  margin-bottom: 20px;
}

.footer-social {
  display: flex;
  gap: 12px;
}
.footer-social a {
  width: 34px; height: 34px;
  border: 1px solid rgba(255,255,255,0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-dim);
  transition: all 0.3s ease;
}
.footer-social a svg { width: 15px; height: 15px; }
.footer-social a:hover {
  border-color: rgba(201,168,76,0.3);
  color: var(--gold);
}

.footer-col h4 {
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--champagne);
  margin-bottom: 20px;
}

.footer-col a {
  display: block;
  font-size: 11px;
  font-weight: 300;
  color: var(--text-light);
  margin-bottom: 10px;
  transition: color 0.3s ease;
}
.footer-col a:hover { color: var(--gold); }

.contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 300;
  color: var(--text-light);
  margin-bottom: 10px;
}
.contact-item a { font-size: 11px; color: var(--text-light); transition: color 0.3s ease; }
.contact-item a:hover { color: var(--gold); }
.ci-icon {
  font-size: 8px;
  color: var(--gold);
  flex-shrink: 0;
}

.footer-bottom {
  max-width: 960px;
  margin: 0 auto;
  padding-top: 24px;
  border-top: 1px solid rgba(212,197,160,0.06);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom span {
  font-size: 9px;
  font-weight: 300;
  color: var(--text-dim);
  letter-spacing: 1px;
}
.footer-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-size: 14px;
  font-style: italic;
  color: var(--text-dim);
  letter-spacing: 2px;
}


/* ══════════════════════════════════════════════
   VIDEO MIXES
   ══════════════════════════════════════════════ */
.video-mixes {
  background: var(--black);
  padding: 100px 24px;
  border-top: 1px solid rgba(255,255,255,0.04);
}

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

.video-mixes h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 36px;
  font-weight: 400;
  color: var(--cream);
  letter-spacing: 1px;
  margin-bottom: 12px;
}
.video-mixes h2 em { font-style: italic; color: var(--gold); }

.mixes-sub {
  font-size: 14px;
  font-weight: 400;
  color: var(--text-light);
  margin-bottom: 48px;
  line-height: 1.7;
}

/* 16:9 responsive iframe wrapper */
.video-featured {
  margin-bottom: 20px;
}
.video-embed-wrap {
  position: relative;
  width: 100%;
  padding-top: 56.25%; /* 16:9 */
  background: var(--smoke);
  border: 1px solid rgba(255,255,255,0.06);
}
.video-embed-wrap iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border: none;
}

/* Playlist thumbnails */
.video-playlist {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.video-thumb {
  cursor: pointer;
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 2px;
  overflow: hidden;
  transition: all 0.3s ease;
  text-align: left;
}
.video-thumb:hover,
.video-thumb.active {
  border-color: rgba(201,168,76,0.4);
}

.vt-thumb {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  overflow: hidden;
  background-color: var(--smoke);
  background-size: cover;
  background-position: center;
}
.vt-thumb::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.25);
  transition: background 0.3s ease;
}
.video-thumb:hover .vt-thumb::after,
.video-thumb.active .vt-thumb::after {
  background: rgba(0,0,0,0.1);
}

.vt-play-icon {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 32px; height: 32px;
  background: rgba(201,168,76,0.15);
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  color: var(--gold);
  transition: all 0.3s ease;
  z-index: 1;
}
.video-thumb:hover .vt-play-icon,
.video-thumb.active .vt-play-icon {
  background: rgba(201,168,76,0.35);
  border-color: var(--gold);
}

.vt-info {
  padding: 10px 12px;
}
.vt-tag {
  font-size: 7px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 4px;
}
.vt-info h5 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 13px;
  font-weight: 500;
  color: var(--cream);
  line-height: 1.3;
}


/* ══════════════════════════════════════════════
   AUDIO MIXES
   ══════════════════════════════════════════════ */
.audio-mixes {
  background: var(--dark-alt);
  padding: 100px 24px;
  border-top: 1px solid rgba(255,255,255,0.04);
}

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

.audio-mixes h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 36px;
  font-weight: 400;
  color: var(--cream);
  letter-spacing: 1px;
  margin-bottom: 12px;
}
.audio-mixes h2 em { font-style: italic; color: var(--gold); }

.audio-sub {
  font-size: 14px;
  font-weight: 400;
  color: var(--text-light);
  margin-bottom: 52px;
  line-height: 1.7;
}

.audio-tracks {
  display: flex;
  flex-direction: column;
  gap: 0;
  text-align: left;
}

.audio-track {
  display: grid;
  grid-template-columns: 40px 1fr 60px 1fr;
  align-items: center;
  gap: 20px;
  padding: 20px 24px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: background 0.3s ease;
}
.audio-track:first-child { border-top: 1px solid rgba(255,255,255,0.05); }
.audio-track:hover { background: rgba(201,168,76,0.03); }
.audio-track.playing { background: rgba(201,168,76,0.05); }

.track-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 300;
  color: var(--text-dim);
  line-height: 1;
}
.audio-track.playing .track-num { color: var(--gold); }

.track-info h5 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-weight: 500;
  color: var(--cream);
  margin-bottom: 4px;
  letter-spacing: 0.3px;
}
.track-tag {
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.8;
}

.track-dur {
  font-size: 11px;
  font-weight: 400;
  color: var(--text-dim);
  letter-spacing: 1px;
  text-align: right;
  font-variant-numeric: tabular-nums;
}

.track-player {
  display: flex;
  align-items: center;
  gap: 14px;
}

.track-play {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: none;
  border: 1px solid rgba(201,168,76,0.3);
  color: var(--gold);
  cursor: pointer;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
.track-play:hover,
.audio-track.playing .track-play {
  background: rgba(201,168,76,0.12);
  border-color: var(--gold);
}
.track-play svg { width: 16px; height: 16px; }

.track-progress {
  flex: 1;
  cursor: pointer;
  padding: 8px 0; /* larger click target */
}
.track-bar {
  height: 2px;
  background: rgba(255,255,255,0.08);
  border-radius: 2px;
  position: relative;
  overflow: hidden;
}
.track-fill {
  height: 100%;
  width: 0%;
  background: var(--gold);
  border-radius: 2px;
  transition: width 0.25s linear;
}

/* No-src state hint */
.audio-track[data-no-src] .track-play {
  opacity: 0.35;
  cursor: not-allowed;
}


/* ══════════════════════════════════════════════
   ANIMATIONS
   ══════════════════════════════════════════════ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Scroll-reveal */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-d1 { transition-delay: 0.1s; }
.reveal-d2 { transition-delay: 0.2s; }
.reveal-d3 { transition-delay: 0.3s; }


/* ══════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════ */
@media (max-width: 900px) {
  .services-grid { grid-template-columns: 1fr; }
  .add-ons-grid { grid-template-columns: 1fr 1fr; gap: 20px; }
  .about-pillars { grid-template-columns: 1fr 1fr; gap: 16px; }
  .welcome-stats { flex-wrap: wrap; gap: 0; }
  .welcome-stat { flex: 1 1 40%; padding: 24px 0; }
  .welcome-stat-divider { display: none; }
  .welcome-statement h2 { font-size: 32px; }
}

@media (max-width: 768px) {
  nav { padding: 0 20px; height: 64px; }
  .nav-brand { display: none; }
  .nav-divider { display: none; }
  .nav-toggle { display: flex; }

  .nav-links {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(10,10,14,0.97);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    z-index: 99;
    overflow-y: auto;
    padding: 80px 24px 40px;
  }
  .nav-links.open { display: flex; }
  .nav-toggle { z-index: 100; }
  .nav-links a { font-size: 12px; letter-spacing: 4px; }
  .nav-cta { font-size: 11px; margin-left: 0; padding: 12px 32px; }

  .hero h1 { font-size: 48px; }
  .hero-logo .hl-h, .hero-logo .hl-e { font-size: 80px; }
  .hero-brand { letter-spacing: 8px; }
  .hero-stat { padding: 0 18px; }
  .hs-num { font-size: 22px; }

  .about h2, .book-section h2 { font-size: 30px; }
  .services h2 { font-size: 28px; }
  .testimonial-slide blockquote { font-size: 20px; }

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

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

  .audio-track { grid-template-columns: 36px 1fr 1fr; }
  .track-dur { display: none; }

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

  .footer-top { flex-direction: column; gap: 36px; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 8px; }

  /* Disable parallax fixed on mobile — not supported on iOS */
  .transition-dark-to-light,
  .transition-light-to-dark,
  .transition-testimonial-cta,
  .transition-cta-footer {
    height: 220px;
    background-attachment: scroll;
  }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 36px; }
  .hero-logo .hl-h, .hero-logo .hl-e { font-size: 60px; }
  .hero-stats { gap: 0; }
  .hero-stat { padding: 0 12px; }
  .hs-num { font-size: 18px; }
  .hs-label { font-size: 6px; }
  .hero-stat-div { height: 20px; }
  .hero-cta-row { gap: 20px; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .add-ons-grid { grid-template-columns: 1fr; }
  .about-pillars { grid-template-columns: 1fr; }
  footer { padding: 48px 20px 32px; }
}
