/* ==========================================================================
   ENTHEON SOUND HEALING — MAIN STYLESHEET
   Design System: Black / White / Cream (#E8DCC8)
   Typography: Playfair Display (headings) + Inter (body)
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. CSS CUSTOM PROPERTIES
   -------------------------------------------------------------------------- */
:root {
  --black: #08070c;
  --white: #ffffff;
  --cream: #E8DCC8;
  --cream-dim: rgba(232, 220, 200, 0.15);
  --muted: rgba(255, 255, 255, 0.55);
  --muted-low: rgba(255, 255, 255, 0.25);
  --muted-xlow: rgba(255, 255, 255, 0.08);
  --card-bg: rgba(10, 10, 10, 0.85);
  --card-border: rgba(255, 255, 255, 0.08);
  --card-border-hover: rgba(255, 255, 255, 0.2);
  --overlay-dark: rgba(0, 0, 0, 0.72);
  --overlay-hero: rgba(0, 0, 0, 0.42);

  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Inter', system-ui, -apple-system, sans-serif;

  --ease-out: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);

  --container: 1400px;
  --section-v: 130px;
  --gap: 40px;
  --radius-sm: 8px;
  --radius: 16px;
  --radius-lg: 24px;
}

/* --------------------------------------------------------------------------
   2. RESET & BASE
   -------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-sans);
  font-weight: 300;
  background-color: #08070c;
  color: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, video { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
ul, ol { list-style: none; }
input, textarea, select { font-family: inherit; }

/* Screen reader only */
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* Skip to content */
.skip-link {
  position: absolute;
  top: -100px;
  left: 24px;
  background: var(--white);
  color: var(--black);
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  z-index: 9999;
  transition: top 0.2s;
}
.skip-link:focus { top: 24px; }

/* --------------------------------------------------------------------------
   3. TYPOGRAPHY
   -------------------------------------------------------------------------- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.01em;
}

.display-xl {
  font-size: clamp(56px, 9vw, 120px);
  font-family: var(--font-serif);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: -0.02em;
}

.display-lg {
  font-size: clamp(40px, 5.5vw, 72px);
  font-family: var(--font-serif);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.display-md {
  font-size: clamp(32px, 3.5vw, 56px);
  font-family: var(--font-serif);
  font-weight: 400;
  line-height: 1.1;
}

.display-sm {
  font-size: clamp(24px, 2.5vw, 36px);
  font-family: var(--font-serif);
  font-weight: 400;
  line-height: 1.2;
}

.eyebrow {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--cream);
}

.body-lg {
  font-size: 18px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--muted);
}

.body-md {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.75;
  color: var(--muted);
}

.caption {
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--muted-low);
}

/* --------------------------------------------------------------------------
   4. LAYOUT UTILITIES
   -------------------------------------------------------------------------- */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 48px;
}

.section {
  padding: var(--section-v) 0;
}

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: var(--gap); align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--gap); }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--gap); }

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

/* --------------------------------------------------------------------------
   5. SCROLL ANIMATIONS
   -------------------------------------------------------------------------- */
/* Default: visible. JS adds .js-ready to <html> which enables animations. */
.fade-up, .fade-in, .fade-left, .fade-right {
  opacity: 1;
  transform: none;
}

.js-ready .fade-up {
  opacity: 0;
  transform: translateY(48px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}
.js-ready .fade-up.visible { opacity: 1; transform: translateY(0); }

.js-ready .fade-in {
  opacity: 0;
  transition: opacity 1s var(--ease-out);
}
.js-ready .fade-in.visible { opacity: 1; }

.js-ready .fade-left {
  opacity: 0;
  transform: translateX(-48px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}
.js-ready .fade-left.visible { opacity: 1; transform: translateX(0); }

.js-ready .fade-right {
  opacity: 0;
  transform: translateX(48px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}
.js-ready .fade-right.visible { opacity: 1; transform: translateX(0); }

/* Staggered children */
.stagger > *:nth-child(1) { transition-delay: 0ms; }
.stagger > *:nth-child(2) { transition-delay: 100ms; }
.stagger > *:nth-child(3) { transition-delay: 200ms; }
.stagger > *:nth-child(4) { transition-delay: 300ms; }
.stagger > *:nth-child(5) { transition-delay: 400ms; }

/* --------------------------------------------------------------------------
   6. NAVIGATION
   -------------------------------------------------------------------------- */
#site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  padding: 28px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: padding 0.5s var(--ease-out), background 0.5s var(--ease-out),
              border-color 0.5s, box-shadow 0.5s;
  border-bottom: 1px solid transparent;
  /* liquid glass — always active */
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(28px) saturate(160%);
  -webkit-backdrop-filter: blur(28px) saturate(160%);
}

#site-header.scrolled {
  padding: 16px 48px;
  background: rgba(14, 11, 20, 0.55);
  backdrop-filter: blur(40px) saturate(200%);
  -webkit-backdrop-filter: blur(40px) saturate(200%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.04),
    0 4px 32px rgba(0, 0, 0, 0.4);
}

.nav-logo {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--white);
  flex-shrink: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 48px;
}

.nav-link {
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.25s;
  position: relative;
  padding-bottom: 2px;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--white);
  transition: width 0.3s var(--ease-out);
}

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

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

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 100px;
  padding: 10px 28px;
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--white);
  transition: all 0.3s var(--ease-out);
}

.nav-cta:hover {
  background: var(--white);
  color: var(--black);
  border-color: var(--white);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
  z-index: 950;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--white);
  transition: all 0.35s var(--ease-out);
  transform-origin: center;
}

.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile Nav Overlay */
#mobile-nav {
  position: fixed;
  inset: 0;
  background: #08070c;
  z-index: 800;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.45s var(--ease-out);
}

#mobile-nav.open {
  opacity: 1;
  pointer-events: all;
}

.mobile-nav-link {
  font-family: var(--font-serif);
  font-size: 40px;
  font-weight: 400;
  color: var(--white);
  transition: color 0.25s;
  letter-spacing: -0.01em;
}

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

.mobile-nav-cta {
  margin-top: 16px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 100px;
  padding: 14px 40px;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--white);
}

/* --------------------------------------------------------------------------
   7. BUTTONS
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 17px 48px;
  border-radius: var(--radius-sm);
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  transition: all 0.3s var(--ease-out);
  cursor: pointer;
  white-space: nowrap;
  border: none;
}

.btn-primary {
  background: var(--white);
  color: var(--black);
}

.btn-primary:hover {
  transform: scale(1.04);
  box-shadow: 0 8px 32px rgba(255, 255, 255, 0.22);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.4);
}

.btn-secondary:hover {
  background: var(--white);
  color: var(--black);
  border-color: var(--white);
  transform: scale(1.04);
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  padding: 0;
  font-size: 11px;
  letter-spacing: 0.2em;
  gap: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 0;
  padding-bottom: 4px;
  transition: border-color 0.3s;
}
.btn-ghost:hover { border-color: var(--white); }

.btn-pill {
  border-radius: 100px;
}

.btn-group {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* --------------------------------------------------------------------------
   8. HERO SECTION
   -------------------------------------------------------------------------- */
#hero {
  position: relative;
  height: 100svh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform-origin: center;
  /* Promote to GPU layer for tear-free playback */
  transform: translateZ(0);
  -webkit-transform: translateZ(0);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  will-change: transform;
}

.hero-fallback {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: none;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: var(--overlay-hero);
  z-index: 1;
}

.hero-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.15) 0%,
    transparent 30%,
    transparent 55%,
    rgba(0,0,0,0.65) 100%
  );
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 0 24px;
  max-width: 1100px;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(52px, 10vw, 130px);
  font-weight: 400;
  line-height: 0.92;
  letter-spacing: -0.025em;
  margin-bottom: 12px;
  color: var(--white);
}

.hero-subtitle {
  font-family: var(--font-serif);
  font-size: clamp(26px, 3.5vw, 48px);
  font-weight: 400;
  font-style: italic;
  color: var(--cream);
  margin-bottom: 28px;
  line-height: 1.2;
}

.hero-tagline {
  font-size: clamp(15px, 1.6vw, 19px);
  font-weight: 300;
  color: rgba(255, 255, 255, 0.72);
  max-width: 640px;
  margin: 0 auto 52px;
  line-height: 1.8;
}

.hero-scroll {
  position: absolute;
  bottom: 48px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  opacity: 0.5;
  animation: heroScrollBounce 2s ease-in-out infinite;
}

.hero-scroll span {
  font-size: 9px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.35em;
}

.hero-scroll-line {
  width: 1px;
  height: 56px;
  background: linear-gradient(to bottom, var(--white), transparent);
}

@keyframes heroScrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* --------------------------------------------------------------------------
   9. ABOUT SECTION (HOME)
   -------------------------------------------------------------------------- */
.about-image-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 5/6;
}

.about-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(30%);
  transition: filter 1.2s var(--ease-out), transform 1.2s var(--ease-out);
}

.about-image-wrap:hover img {
  filter: grayscale(0%);
  transform: scale(1.03);
}

.about-image-accent {
  position: absolute;
  bottom: -60px;
  right: -60px;
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, rgba(232,220,200,0.12) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.about-text .eyebrow { margin-bottom: 20px; display: block; }

.about-lead {
  font-size: clamp(32px, 3.8vw, 52px);
  font-family: var(--font-serif);
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: 36px;
  letter-spacing: -0.015em;
}

.about-body p {
  font-size: 17px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.85;
  margin-bottom: 22px;
}

.about-credentials {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 36px;
}

.credential-pill {
  background: var(--muted-xlow);
  border: 1px solid var(--card-border);
  border-radius: 100px;
  padding: 8px 20px;
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--muted);
  transition: all 0.3s;
}

.credential-pill:hover {
  border-color: var(--cream);
  color: var(--cream);
}

/* --------------------------------------------------------------------------
   10. SERVICES / TREATMENTS CARDS
   -------------------------------------------------------------------------- */
.services-header { margin-bottom: 72px; }
.services-header .eyebrow { display: block; margin-bottom: 18px; }

.service-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
  cursor: pointer;
  transition: transform 0.5s var(--ease-out);
}

.service-card:hover {
  transform: translateY(-10px);
}

.service-card-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease-out);
}

.service-card:hover .service-card-img { transform: scale(1.08); }

.service-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.88) 0%,
    rgba(0,0,0,0.4) 50%,
    rgba(0,0,0,0.15) 100%
  );
  transition: background 0.5s;
}

.service-card:hover .service-card-overlay {
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.92) 0%,
    rgba(0,0,0,0.5) 55%,
    rgba(0,0,0,0.2) 100%
  );
}

.service-card-inner {
  position: absolute;
  inset: 0;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.service-tag {
  font-size: 10px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--cream);
  display: inline-block;
}

.service-card-body h3 {
  font-family: var(--font-serif);
  font-size: clamp(24px, 2.2vw, 32px);
  font-weight: 400;
  margin-bottom: 12px;
  line-height: 1.15;
}

.service-card-body p {
  font-size: 14px;
  font-weight: 300;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  margin-bottom: 24px;
}

.service-price {
  font-size: 24px;
  font-weight: 600;
  letter-spacing: -0.01em;
  display: block;
  margin-bottom: 4px;
}

.service-price-note {
  font-size: 10px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--muted-low);
}

/* --------------------------------------------------------------------------
   11. STATISTICS SECTION
   -------------------------------------------------------------------------- */
.stats-section {
  position: relative;
  overflow: hidden;
  padding: 100px 0;
  background: #08070c;
}

.stats-bg-text {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  overflow: hidden;
}

.stats-bg-text span {
  font-size: 18vw;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgba(255,255,255,0.025);
  white-space: nowrap;
  user-select: none;
}

.stat-item { text-align: center; }

.stat-number {
  font-family: var(--font-serif);
  font-size: clamp(64px, 8vw, 110px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--white);
  display: block;
  margin-bottom: 12px;
}

.stat-label {
  font-size: 10px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--muted-low);
}

/* --------------------------------------------------------------------------
   12. TESTIMONIALS CAROUSEL
   -------------------------------------------------------------------------- */
.testimonials-section {
  padding: var(--section-v) 0;
  background: #08070c;
  overflow: hidden;
}

.testimonial-track {
  position: relative;
  min-height: 260px;
  overflow: hidden;
}

.testimonial-slide {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 24px;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
  pointer-events: none;
}

.testimonial-slide.active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}

.testimonial-quote {
  font-family: var(--font-serif);
  font-size: clamp(20px, 2.4vw, 30px);
  font-weight: 400;
  font-style: italic;
  line-height: 1.55;
  color: var(--white);
  max-width: 800px;
  margin-bottom: 32px;
}

.testimonial-author {
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--cream);
}

.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  margin-top: 56px;
}

.carousel-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.18);
  color: var(--white);
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s var(--ease-out);
  cursor: pointer;
  background: transparent;
}

.carousel-btn:hover {
  background: var(--white);
  color: var(--black);
  border-color: var(--white);
}

.carousel-dots {
  display: flex;
  gap: 10px;
  align-items: center;
}

.carousel-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.25);
  cursor: pointer;
  transition: all 0.3s var(--ease-out);
  border: none;
}

.carousel-dot.active {
  background: var(--white);
  transform: scale(1.4);
}

/* --------------------------------------------------------------------------
   13. BENEFITS / OUTCOMES SECTION
   -------------------------------------------------------------------------- */
.benefits-section {
  position: relative;
  padding: var(--section-v) 0;
  overflow: hidden;
}

.benefits-bg {
  position: absolute;
  inset: 0;
}

.benefits-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.2;
}

.benefits-bg-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.78);
  backdrop-filter: blur(2px);
}

.benefit-card {
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: 52px 44px;
  transition: all 0.4s var(--ease-out);
  position: relative;
  overflow: hidden;
}

.benefit-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--cream), transparent);
  opacity: 0;
  transition: opacity 0.4s;
}

.benefit-card:hover {
  background: rgba(255,255,255,0.07);
  border-color: var(--card-border-hover);
  transform: translateY(-6px);
}

.benefit-card:hover::before { opacity: 0.5; }

.benefit-icon {
  width: 48px;
  height: 48px;
  border: 1px solid rgba(232,220,200,0.25);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  color: var(--cream);
  font-size: 22px;
}

.benefit-card h3 {
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 400;
  margin-bottom: 16px;
  color: var(--white);
}

.benefit-card p {
  font-size: 15px;
  font-weight: 300;
  color: rgba(255,255,255,0.55);
  line-height: 1.75;
}

/* --------------------------------------------------------------------------
   14. CONTACT SECTION
   -------------------------------------------------------------------------- */
.contact-section { padding: var(--section-v) 0; }

.contact-info .eyebrow { display: block; margin-bottom: 24px; }

.contact-email {
  font-family: var(--font-serif);
  font-size: clamp(22px, 2.5vw, 32px);
  font-weight: 400;
  color: var(--white);
  display: block;
  margin-bottom: 12px;
  transition: color 0.25s;
}

.contact-email:hover { color: var(--cream); }

.contact-location {
  font-size: 12px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--muted-low);
  margin-bottom: 48px;
}

/* Contact Form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

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

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

.form-group label {
  font-size: 10px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--muted-low);
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  font-size: 15px;
  font-weight: 300;
  color: var(--white);
  transition: all 0.3s var(--ease-out);
  appearance: none;
  -webkit-appearance: none;
}

.form-input::placeholder,
.form-textarea::placeholder { color: rgba(255,255,255,0.25); }

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  outline: none;
  border-color: rgba(255,255,255,0.5);
  background: rgba(255,255,255,0.07);
}

.form-input.error,
.form-textarea.error { border-color: rgba(255, 100, 100, 0.6); }

.form-error-msg {
  font-size: 11px;
  color: rgba(255, 120, 120, 0.9);
  display: none;
}

.form-error-msg.visible { display: block; }

.form-textarea { resize: vertical; min-height: 140px; }

.form-submit {
  width: 100%;
  background: var(--white);
  color: var(--black);
  border: none;
  border-radius: var(--radius-sm);
  padding: 18px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  cursor: pointer;
  transition: all 0.3s var(--ease-out);
}

.form-submit:hover:not(:disabled) {
  transform: scale(1.02);
  box-shadow: 0 8px 28px rgba(255,255,255,0.18);
}

.form-submit:disabled { opacity: 0.6; cursor: not-allowed; }

.form-submit.success {
  background: var(--cream);
  color: var(--black);
}

/* --------------------------------------------------------------------------
   15. FOOTER
   -------------------------------------------------------------------------- */
footer {
  padding: 64px 48px;
  border-top: 1px solid rgba(255,255,255,0.08);
  background: #08070c;
}

.footer-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 32px;
}

.footer-logo {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--white);
}

.footer-nav {
  display: flex;
  align-items: center;
  gap: 40px;
}

.footer-link {
  font-size: 10px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.35);
  transition: color 0.25s;
}

.footer-link:hover { color: var(--white); }

.footer-right {
  text-align: right;
}

.footer-copy {
  font-size: 10px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(255,255,255,0.2);
}

/* --------------------------------------------------------------------------
   16. TREATMENTS PAGE — DETAILED SECTIONS
   -------------------------------------------------------------------------- */
.page-hero {
  padding-top: calc(100px + var(--section-v));
  padding-bottom: var(--section-v);
  text-align: center;
}

.treatment-section {
  padding: var(--section-v) 0;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.treatment-section:first-of-type { border-top: none; }

.treatment-section .eyebrow { display: block; margin-bottom: 20px; }

.treatment-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

/* Reverse: content left, image right — use HTML order + no hack needed */
.treatment-grid.reverse { direction: ltr; }

.treatment-img-wrap {
  position: sticky;
  top: 110px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 3/4;
}

.treatment-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.treatment-badge {
  position: absolute;
  top: 24px;
  left: 24px;
  background: rgba(0,0,0,0.75);
  backdrop-filter: blur(12px);
  border: 1px solid var(--card-border);
  border-radius: 100px;
  padding: 8px 20px;
  font-size: 10px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--cream);
}

.treatment-content h2 {
  font-size: clamp(36px, 4vw, 56px);
  margin-bottom: 20px;
}

.treatment-content .body-lg {
  margin-bottom: 36px;
}

.treatment-price-block {
  display: inline-flex;
  align-items: baseline;
  gap: 12px;
  background: var(--muted-xlow);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-sm);
  padding: 20px 28px;
  margin-bottom: 40px;
}

.treatment-price-main {
  font-family: var(--font-serif);
  font-size: 36px;
  font-weight: 400;
}

.treatment-price-detail {
  font-size: 12px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

/* Session flow steps */
.session-flow {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin: 32px 0;
}

.flow-step {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 24px;
  align-items: start;
  padding: 24px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.flow-step:last-child { border-bottom: none; }

.flow-number {
  font-family: var(--font-serif);
  font-size: 32px;
  font-weight: 400;
  color: rgba(255,255,255,0.15);
  line-height: 1;
  padding-top: 4px;
}

.flow-step h4 {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 8px;
  color: var(--white);
}

.flow-step p {
  font-size: 14px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.7;
}

/* Outcomes list */
.outcomes-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 24px 0;
}

.outcome-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 15px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.6;
}

.outcome-item::before {
  content: '·';
  color: var(--cream);
  flex-shrink: 0;
  margin-top: 2px;
  font-size: 20px;
  line-height: 1;
}

/* Who it's for / included */
.info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin: 32px 0;
}

.info-block {
  background: var(--muted-xlow);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 28px;
}

.info-block h4 {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--cream);
  margin-bottom: 16px;
}

.info-block ul { display: flex; flex-direction: column; gap: 10px; }

.info-block li {
  font-size: 14px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.6;
  padding-left: 18px;
  position: relative;
}

.info-block li::before {
  content: '·';
  position: absolute;
  left: 0;
  color: var(--cream);
  font-size: 20px;
  line-height: 1;
  top: 0;
}

/* --------------------------------------------------------------------------
   17. FAQ SECTION
   -------------------------------------------------------------------------- */
.faq-section {
  padding: var(--section-v) 0;
  background: #040404;
}

.faq-list { display: flex; flex-direction: column; }

.faq-item {
  border-bottom: 1px solid rgba(255,255,255,0.07);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 0;
  cursor: pointer;
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 400;
  color: var(--white);
  text-align: left;
  background: transparent;
  border: none;
  gap: 24px;
  transition: color 0.25s;
}

.faq-question:hover { color: var(--cream); }

.faq-icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  transition: all 0.35s var(--ease-out);
  color: var(--white);
}

.faq-item.open .faq-icon {
  background: var(--white);
  color: var(--black);
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s var(--ease-out), padding 0.45s var(--ease-out);
}

.faq-item.open .faq-answer { max-height: 400px; }

.faq-answer-inner {
  padding-bottom: 28px;
  font-size: 15px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.8;
  max-width: 760px;
}

/* --------------------------------------------------------------------------
   18. COMMUNITY CALLOUT
   -------------------------------------------------------------------------- */
.community-callout {
  background: linear-gradient(135deg, rgba(232,220,200,0.08) 0%, rgba(255,255,255,0.03) 100%);
  border: 1px solid rgba(232,220,200,0.18);
  border-radius: var(--radius-lg);
  padding: 64px 72px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.community-callout::before {
  content: '';
  position: absolute;
  top: -1px; left: 20%; right: 20%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--cream), transparent);
  opacity: 0.5;
}

/* --------------------------------------------------------------------------
   19. ABOUT PAGE
   -------------------------------------------------------------------------- */
.about-hero-text {
  padding-top: calc(100px + var(--section-v));
  padding-bottom: var(--section-v);
}

.credentials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 64px;
}

.credential-card {
  background: var(--muted-xlow);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: all 0.4s var(--ease-out);
}

.credential-card:hover {
  border-color: var(--card-border-hover);
  transform: translateY(-4px);
}

.credential-card-icon {
  font-size: 28px;
  margin-bottom: 20px;
}

.credential-card h3 {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--cream);
  margin-bottom: 12px;
}

.credential-card p {
  font-size: 14px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.7;
}

.tools-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.tool-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  background: var(--muted-xlow);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-sm);
  transition: all 0.35s;
}

.tool-item:hover {
  border-color: var(--card-border-hover);
  background: rgba(255,255,255,0.07);
}

.tool-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(232,220,200,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.tool-info h4 {
  font-size: 13px;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 2px;
}

.tool-info p {
  font-size: 12px;
  font-weight: 300;
  color: var(--muted);
}

/* Philosophy quote */
.philosophy-quote {
  padding: var(--section-v) 0;
  text-align: center;
}

.blockquote-text {
  font-family: var(--font-serif);
  font-size: clamp(26px, 3.5vw, 44px);
  font-weight: 400;
  font-style: italic;
  line-height: 1.45;
  color: var(--white);
  max-width: 920px;
  margin: 0 auto 32px;
}

.blockquote-source {
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--cream);
}

/* --------------------------------------------------------------------------
   20. CONTACT PAGE
   -------------------------------------------------------------------------- */
.contact-page-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 100px;
  align-items: start;
  padding-top: calc(100px + 80px);
  padding-bottom: var(--section-v);
}

.contact-detail-block {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 28px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.contact-detail-block:last-of-type { border-bottom: none; }

.contact-detail-icon {
  width: 44px;
  height: 44px;
  border: 1px solid var(--card-border);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 18px;
}

.contact-detail-text h3 {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--muted-low);
  margin-bottom: 6px;
}

.contact-detail-text p,
.contact-detail-text a {
  font-size: 16px;
  font-weight: 300;
  color: var(--white);
  line-height: 1.6;
  transition: color 0.25s;
}

.contact-detail-text a:hover { color: var(--cream); }

/* GDPR Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(10, 10, 10, 0.96);
  backdrop-filter: blur(20px);
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 48px;
  z-index: 800;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  transform: translateY(100%);
  transition: transform 0.5s var(--ease-out);
}

.cookie-banner.visible { transform: translateY(0); }

.cookie-banner p {
  font-size: 13px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.6;
  max-width: 640px;
}

.cookie-banner a { color: var(--cream); text-decoration: underline; }

.cookie-actions { display: flex; gap: 12px; flex-shrink: 0; }

.cookie-btn {
  padding: 10px 24px;
  border-radius: var(--radius-sm);
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  cursor: pointer;
  border: none;
  transition: all 0.3s;
}

.cookie-accept {
  background: var(--white);
  color: var(--black);
}

.cookie-accept:hover { background: var(--cream); }

.cookie-decline {
  background: transparent;
  color: var(--muted);
  border: 1px solid rgba(255,255,255,0.15);
}

.cookie-decline:hover { border-color: rgba(255,255,255,0.4); color: var(--white); }

/* --------------------------------------------------------------------------
   21. PAGE LOADER
   -------------------------------------------------------------------------- */
#page-loader {
  position: fixed;
  inset: 0;
  background: #08070c;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s var(--ease-out);
  /* CSS fallback: auto-dismiss after 2.5s even if JS fails */
  animation: loaderDismiss 0.7s ease-out 2.5s forwards;
}

@keyframes loaderDismiss {
  to { opacity: 0; pointer-events: none; visibility: hidden; }
}

#page-loader.hidden {
  opacity: 0;
  pointer-events: none;
  animation: none;
}

.loader-logo {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--white);
  animation: loaderPulse 1.2s ease-in-out infinite alternate;
}

@keyframes loaderPulse {
  from { opacity: 0.3; }
  to { opacity: 1; }
}

/* --------------------------------------------------------------------------
   22. SECTION DIVIDERS
   -------------------------------------------------------------------------- */
.divider {
  border: none;
  border-top: 1px solid rgba(255,255,255,0.07);
}

.section-label {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 72px;
}

.section-label::before,
.section-label::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(255,255,255,0.08);
}

/* --------------------------------------------------------------------------
   23. UTILITY CLASSES
   -------------------------------------------------------------------------- */
.text-cream { color: var(--cream); }
.text-muted { color: var(--muted); }
.text-center { text-align: center; }
.text-right { text-align: right; }
.mb-4 { margin-bottom: 16px; }
.mb-6 { margin-bottom: 24px; }
.mb-8 { margin-bottom: 32px; }
.mb-12 { margin-bottom: 48px; }
.mb-16 { margin-bottom: 64px; }
.mt-6 { margin-top: 24px; }
.mt-8 { margin-top: 32px; }
.mt-12 { margin-top: 48px; }
.relative { position: relative; }
.overflow-hidden { overflow: hidden; }

.line-clamp-3 {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Image aspect ratios */
.aspect-4-5 { aspect-ratio: 4/5; }
.aspect-16-9 { aspect-ratio: 16/9; }
.aspect-square { aspect-ratio: 1; }

/* Separator line */
.cream-line {
  width: 48px;
  height: 1px;
  background: var(--cream);
  opacity: 0.5;
  margin: 28px 0;
}

/* --------------------------------------------------------------------------
   23b. ABOUT PAGE — INTRO SECTION
   -------------------------------------------------------------------------- */
.about-intro-section {
  padding-top: calc(100px + var(--section-v));
}

.about-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.about-intro-img {
  position: sticky;
  top: 120px;
}

.about-credential-badge {
  margin-top: 24px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  padding: 24px 28px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.about-credential-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(232, 220, 200, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}

.about-credential-title {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--cream);
  margin-bottom: 4px;
}

.about-credential-sub {
  font-size: 13px;
  font-weight: 300;
  color: var(--muted);
}

.about-tools-grid  { gap: 80px; align-items: center; }
.about-approach-grid { gap: 80px; align-items: center; }

.about-approach-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
}

.about-approach-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* --------------------------------------------------------------------------
   24. PRINT STYLES
   -------------------------------------------------------------------------- */
@media print {
  #site-header, footer, #page-loader, .cookie-banner,
  .hero-scroll, .carousel-controls { display: none !important; }
  body { color: black; background: white; }
  h1, h2, h3 { color: black; }
  a { color: black; }
  .service-card, .benefit-card { border: 1px solid #ccc; }
}

/* --------------------------------------------------------------------------
   25. SCROLL PROGRESS BAR
   -------------------------------------------------------------------------- */
#scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background: linear-gradient(90deg, rgba(232,220,200,0.7) 0%, rgba(255,255,255,0.9) 100%);
  z-index: 9998;
  pointer-events: none;
  transform-origin: left;
  transition: width 0.08s linear;
}

/* --------------------------------------------------------------------------
   26. CUSTOM CURSOR
   -------------------------------------------------------------------------- */
.cursor-dot {
  position: fixed;
  top: 0;
  left: 0;
  width: 7px;
  height: 7px;
  background: var(--white);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9997;
  transform: translate(-50%, -50%);
  will-change: left, top;
  display: none;
}

.cursor-ring {
  position: fixed;
  top: 0;
  left: 0;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9996;
  transform: translate(-50%, -50%);
  transition: width 0.3s var(--ease-out), height 0.3s var(--ease-out),
              border-color 0.3s var(--ease-out), background 0.3s;
  will-change: left, top;
  display: none;
}

.cursor-ring.hover {
  width: 56px;
  height: 56px;
  border-color: rgba(232, 220, 200, 0.5);
  background: rgba(232, 220, 200, 0.04);
}

/* --------------------------------------------------------------------------
   27. NOISE / GRAIN TEXTURE OVERLAY
   -------------------------------------------------------------------------- */
.noise-overlay {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9500;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 200px 200px;
}

/* --------------------------------------------------------------------------
   28. MARQUEE SCROLLING STRIP
   -------------------------------------------------------------------------- */
.marquee-strip {
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding: 18px 0;
  background: rgba(255, 255, 255, 0.015);
  user-select: none;
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marqueeScroll 36s linear infinite;
  will-change: transform;
}

.marquee-track:hover { animation-play-state: paused; }

.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 28px;
  padding: 0 28px;
  font-family: var(--font-sans);
  font-size: 9.5px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: rgba(255, 255, 255, 0.28);
  white-space: nowrap;
}

.marquee-dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--cream);
  opacity: 0.45;
  flex-shrink: 0;
}

@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* --------------------------------------------------------------------------
   29. PREMIUM TESTIMONIAL CARDS
   -------------------------------------------------------------------------- */
/* Override existing .testimonials-section */
.testimonials-section {
  padding: var(--section-v) 0;
  background: #080610;
  overflow: hidden;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 20px;
  margin-top: 64px;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: 44px;
  position: relative;
  overflow: hidden;
  transition: transform 0.45s var(--ease-out), border-color 0.45s, background 0.45s, box-shadow 0.45s;
}

.testimonial-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 15%;
  right: 15%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(232, 220, 200, 0.25), transparent);
  opacity: 0;
  transition: opacity 0.4s;
}

.testimonial-card:hover {
  transform: translateY(-7px);
  border-color: rgba(255, 255, 255, 0.13);
  background: rgba(255, 255, 255, 0.045);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.06);
}

.testimonial-card:hover::before { opacity: 1; }

/* Featured celebrity card — spans both rows */
.testimonial-card.featured {
  grid-row: 1 / 3;
  display: flex;
  flex-direction: column;
  background: linear-gradient(150deg, rgba(232, 220, 200, 0.055) 0%, rgba(140, 110, 200, 0.03) 60%, rgba(255, 255, 255, 0.015) 100%);
  border-color: rgba(232, 220, 200, 0.14);
}

.testimonial-card.featured:hover {
  border-color: rgba(232, 220, 200, 0.28);
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.55), 0 0 60px rgba(232, 220, 200, 0.04);
}

.testimonial-card.featured::before {
  background: linear-gradient(90deg, transparent, rgba(232, 220, 200, 0.4), transparent);
}

/* Decorative quote mark */
.quote-mark {
  position: absolute;
  top: 16px;
  right: 28px;
  font-family: var(--font-serif);
  font-size: 140px;
  line-height: 0.85;
  color: rgba(255, 255, 255, 0.04);
  pointer-events: none;
  user-select: none;
  font-style: normal;
}

.testimonial-card.featured .quote-mark {
  color: rgba(232, 220, 200, 0.07);
}

/* Stars */
.testimonial-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 24px;
}

.testimonial-stars span {
  color: var(--cream);
  font-size: 13px;
  opacity: 0.9;
}

/* Quote text */
.testimonial-text {
  font-family: var(--font-serif);
  font-size: clamp(16px, 1.4vw, 19px);
  font-weight: 400;
  font-style: italic;
  line-height: 1.7;
  color: var(--white);
  flex-grow: 1;
  margin-bottom: 36px;
}

.testimonial-card.featured .testimonial-text {
  font-size: clamp(19px, 1.7vw, 24px);
  line-height: 1.65;
}

/* Author row */
.testimonial-author-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: auto;
}

/* Avatar circle */
.testimonial-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  background: linear-gradient(135deg, #2e2640 0%, #1c1630 100%);
  border: 1.5px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: rgba(232, 220, 200, 0.8);
}

.testimonial-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-card.featured .testimonial-avatar {
  width: 58px;
  height: 58px;
  border-color: rgba(232, 220, 200, 0.2);
}

.testimonial-author-info { flex: 1; min-width: 0; }

.testimonial-name-row {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 4px;
}

.testimonial-name {
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 500;
  color: var(--white);
}

/* Instagram-style verified badge */
.verified-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 15px;
  height: 15px;
  background: #1d9bf0;
  border-radius: 50%;
  flex-shrink: 0;
}

.verified-badge svg {
  width: 8px;
  height: 8px;
  fill: white;
}

.testimonial-handle {
  font-size: 12px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.35);
  display: flex;
  align-items: center;
  gap: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.testimonial-platform-tag {
  font-size: 9px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(255, 255, 255, 0.2);
  margin-left: 8px;
  padding: 2px 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 100px;
  flex-shrink: 0;
}

/* --------------------------------------------------------------------------
   30. TRUST / GEOGRAPHY STRIP
   -------------------------------------------------------------------------- */
.trust-strip {
  padding: 52px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  background: #08070c;
  text-align: center;
}

.trust-strip-label {
  display: block;
  font-size: 9.5px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.32em;
  color: rgba(255, 255, 255, 0.18);
  margin-bottom: 28px;
}

.trust-icons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 36px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 10px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: rgba(255, 255, 255, 0.18);
  transition: color 0.3s;
  white-space: nowrap;
}

.trust-item:hover { color: rgba(255, 255, 255, 0.45); }

.trust-item-dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--cream);
  opacity: 0.3;
  flex-shrink: 0;
}

/* --------------------------------------------------------------------------
   31. AMBIENT ORBS — HERO ATMOSPHERE
   -------------------------------------------------------------------------- */
.hero-orbs {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(90px);
  will-change: transform;
}

.orb-1 {
  width: 700px;
  height: 700px;
  top: -200px;
  right: -180px;
  background: radial-gradient(circle at center, rgba(120, 80, 200, 0.18), transparent 65%);
  animation: orbDrift1 18s ease-in-out infinite;
}

.orb-2 {
  width: 500px;
  height: 500px;
  bottom: -100px;
  left: -120px;
  background: radial-gradient(circle at center, rgba(232, 220, 200, 0.1), transparent 65%);
  animation: orbDrift2 14s ease-in-out infinite;
  animation-delay: -6s;
}

@keyframes orbDrift1 {
  0%,  100% { transform: translate(0, 0) scale(1); }
  33%        { transform: translate(-40px, 30px) scale(1.06); }
  66%        { transform: translate(20px, -40px) scale(0.94); }
}

@keyframes orbDrift2 {
  0%,  100% { transform: translate(0, 0) scale(1); }
  50%        { transform: translate(30px, -20px) scale(1.08); }
}

/* --------------------------------------------------------------------------
   32. ENHANCED BUTTON INTERACTIONS — shine sweep
   -------------------------------------------------------------------------- */
.btn-primary,
.btn-secondary,
.nav-cta,
.form-submit {
  position: relative;
  overflow: hidden;
}

.btn-primary::after,
.btn-secondary::after,
.nav-cta::after,
.form-submit::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    110deg,
    transparent 35%,
    rgba(255, 255, 255, 0.12) 50%,
    transparent 65%
  );
  transform: translateX(-100%);
  transition: transform 0.55s var(--ease-out);
  pointer-events: none;
}

.btn-primary:hover::after,
.btn-secondary:hover::after,
.nav-cta:hover::after,
.form-submit:hover:not(:disabled)::after {
  transform: translateX(100%);
}

/* Magnetic wrapper for buttons */
.btn-wrap {
  display: inline-block;
  will-change: transform;
}

/* --------------------------------------------------------------------------
   33. STAGGER DELAY UTILITIES
   -------------------------------------------------------------------------- */
.stagger > *:nth-child(1) { transition-delay: 0ms; }
.stagger > *:nth-child(2) { transition-delay: 120ms; }
.stagger > *:nth-child(3) { transition-delay: 240ms; }
.stagger > *:nth-child(4) { transition-delay: 360ms; }
.stagger > *:nth-child(5) { transition-delay: 480ms; }
.stagger > *:nth-child(6) { transition-delay: 600ms; }

/* --------------------------------------------------------------------------
   34. RESPONSIVE — TESTIMONIAL GRID
   -------------------------------------------------------------------------- */
@media (max-width: 1199px) {
  .testimonials-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .testimonial-card.featured {
    grid-column: 1 / 3;
    grid-row: auto;
  }
}

@media (max-width: 767px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 16px;
  }
  .testimonial-card.featured {
    grid-column: auto;
    grid-row: auto;
  }
  .testimonial-card {
    padding: 32px 28px;
  }
  .trust-icons {
    gap: 20px;
  }
  .marquee-item { padding: 0 20px; }
}

/* --------------------------------------------------------------------------
   35. BOOKING CTA — full-width pre-footer section
   -------------------------------------------------------------------------- */
.booking-cta-section {
  background: linear-gradient(160deg, #0e0b18 0%, #08070c 60%);
  overflow: hidden;
}

.booking-cta-inner {
  position: relative;
  text-align: center;
  padding: 120px 40px;
  max-width: 860px;
  margin: 0 auto;
}

/* Decorative radiating lines */
.booking-cta-lines {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.booking-cta-lines span {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 1px;
  height: 120%;
  background: linear-gradient(to bottom, transparent, rgba(232,220,200,0.07), transparent);
  transform-origin: top center;
}
.booking-cta-lines span:nth-child(1) { transform: translateX(-50%) rotate(-25deg); }
.booking-cta-lines span:nth-child(2) { transform: translateX(-50%) rotate(0deg); }
.booking-cta-lines span:nth-child(3) { transform: translateX(-50%) rotate(25deg); }

.booking-cta-heading {
  margin: 0 auto 28px;
  max-width: 700px;
}

.booking-cta-sub {
  max-width: 580px;
  margin: 0 auto 52px;
  color: var(--muted);
  line-height: 1.75;
}

.booking-cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 52px;
  flex-wrap: wrap;
}

.booking-cta-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted-low);
}

.booking-cta-meta span {
  display: flex;
  align-items: center;
  gap: 8px;
}

@media (max-width: 767px) {
  .booking-cta-inner { padding: 80px 24px; }
  .booking-cta-actions { flex-direction: column; align-items: stretch; }
  .booking-cta-actions .btn-wrap { width: 100%; }
  .booking-cta-actions .btn { width: 100%; justify-content: center; }
  .booking-cta-meta { flex-direction: column; gap: 12px; }
}

/* --------------------------------------------------------------------------
   EVENTS & APPEARANCES SECTION
   -------------------------------------------------------------------------- */
.events-section {
  background: var(--black);
  border-top: 1px solid var(--card-border);
}

.events-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px 64px;
  align-items: end;
  margin-bottom: 64px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--card-border);
}

.events-header .eyebrow { grid-column: 1 / -1; }
.events-header h2 { margin: 0; }

.events-subhead {
  font-size: 15px;
  line-height: 1.7;
  color: var(--muted);
  margin: 0;
  max-width: 400px;
}

.events-list {
  display: flex;
  flex-direction: column;
}

.event-row {
  display: grid;
  grid-template-columns: 110px 1fr 1fr 60px;
  align-items: center;
  gap: 24px;
  padding: 28px 0;
  border-bottom: 1px solid var(--card-border);
  cursor: default;
  transition: background 0.25s var(--ease-out);
  border-radius: 4px;
}

.event-row:first-child { border-top: 1px solid var(--card-border); }

.event-row:hover { background: rgba(255,255,255,0.03); }
.event-row:hover .event-row-name { color: var(--cream); }

.event-row-tag {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cream);
  border: 1px solid rgba(232, 220, 200, 0.35);
  border-radius: 20px;
  padding: 5px 14px;
  white-space: nowrap;
  width: fit-content;
}

.event-row-name {
  font-family: var(--font-serif);
  font-size: clamp(22px, 2.5vw, 32px);
  font-weight: 600;
  color: var(--white);
  margin: 0;
  transition: color 0.25s var(--ease-out);
}

.event-row-location {
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}

.event-row-num {
  font-family: var(--font-serif);
  font-size: 13px;
  color: var(--muted-low);
  letter-spacing: 0.1em;
  text-align: right;
}

@media (max-width: 900px) {
  .events-header { grid-template-columns: 1fr; }
  .event-row { grid-template-columns: 90px 1fr; grid-template-rows: auto auto; gap: 8px 16px; }
  .event-row-location { grid-column: 2; color: var(--muted); }
  .event-row-num { display: none; }
}

@media (max-width: 540px) {
  .event-row { grid-template-columns: 1fr; gap: 8px; padding: 24px 0; }
  .event-row-tag { margin-bottom: 4px; }
}
