/* ============================================================
   AMERICAN LASER PLUS — LUXURY MED SPA v4.0
   Feminine · Dark Rose Gold · $50K Premium
   ============================================================ */

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

/* ---- TOKENS ---- */
:root {
  --cream:       #FDFAF7;
  --cream-deep:  #F5EDE3;
  --beige:       #F0E8E0;
  --beige-mid:   #E8DDD3;
  --charcoal:    #181410;
  --charcoal-2:  #221e1a;
  --charcoal-3:  #2c2620;
  --gold:        #C9A882;
  --gold-dark:   #8B7355;
  --gold-light:  #EDD9C0;
  --gold-pale:   #F7EFE6;
  --rose:        #D4A0A0;
  --rose-light:  #F0D4D4;
  --rose-dark:   #9E6B6B;
  --text-warm:   #6B5B4E;
  --text-mid:    #4A3F36;
  --white:       #FFFFFF;
  --footer-text: #C8B49E;
  --star:        #FBBC05;

  --font-serif:  'Playfair Display', 'Cormorant Garamond', Georgia, serif;
  --font-alt:    'Cormorant Garamond', Georgia, serif;
  --font-sans:   'DM Sans', sans-serif;

  --ease:   cubic-bezier(0.32, 0.72, 0, 1);
  --spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --smooth: cubic-bezier(0.25, 0.46, 0.45, 0.94);

  --shadow-gold: 0 12px 48px rgba(201,168,130,0.22);
  --shadow-rose: 0 12px 48px rgba(212,160,160,0.18);
  --shadow-card: 0 2px 20px rgba(24,20,16,0.08);
  --shadow-dark: 0 24px 64px rgba(24,20,16,0.32);

  --radius-sm:   8px;
  --radius-md:   14px;
  --radius-lg:   22px;
  --radius-xl:   32px;
  --radius-pill: 100px;

  --nav-h:   80px;
  --gutter:  5rem;
  --gutter-sm: 1.5rem;
}

/* ---- RESET ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-sans);
  background: var(--cream);
  color: var(--charcoal);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ---- SR-ONLY (never visible) ---- */
.sr-only {
  position: fixed !important;
  top: -9999px !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
  pointer-events: none !important;
  overflow: hidden !important;
  clip: rect(0,0,0,0) !important;
  z-index: -1 !important;
}

/* ---- CURSOR ---- */
@media (hover:hover) and (pointer:fine) {
  body { cursor: none; }
  .cursor-dot {
    width: 5px; height: 5px; background: var(--gold);
    border-radius: 50%; position: fixed; top: 0; left: 0;
    pointer-events: none; z-index: 9999;
    transform: translate(-50%,-50%);
    transition: width .15s, height .15s, background .2s;
    will-change: transform;
  }
  .cursor-ring {
    width: 28px; height: 28px;
    border: 1px solid rgba(201,168,130,0.35);
    border-radius: 50%; position: fixed; top: 0; left: 0;
    pointer-events: none; z-index: 9998;
    transform: translate(-50%,-50%);
    transition: width .4s var(--ease), height .4s var(--ease), border-color .3s;
    will-change: transform; opacity: 0.7;
  }
}

/* ============================================================
   NAVIGATION — Always has background on inner pages
   ============================================================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 1000;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 3rem;
  /* KEY FIX: inner pages always have dark bg, homepage transitions from transparent */
  background: rgba(24,20,16,0.0);
  transition: background 0.5s var(--ease), backdrop-filter 0.5s, box-shadow 0.5s;
  will-change: background;
}
/* All inner pages: nav always dark */
/* Inner pages: nav ALWAYS dark - no JS needed */
body.page-inner .nav,
body:not(.page-home) .nav {
  background: rgba(22,17,12,0.98) !important;
  backdrop-filter: blur(28px) !important;
  -webkit-backdrop-filter: blur(28px) !important;
  box-shadow: 0 1px 0 rgba(201,168,130,0.12), 0 4px 24px rgba(0,0,0,0.3) !important;
}
/* Homepage: dark after scroll */
body.page-home .nav.scrolled {
  background: rgba(24,20,16,0.96);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  box-shadow: 0 1px 0 rgba(201,168,130,0.1);
}

.nav-logo { display: flex; flex-direction: column; text-decoration: none; flex-shrink: 0; }
.nav-logo-main {
  font-family: var(--font-alt);
  font-size: 1.15rem; font-weight: 600;
  color: var(--cream); letter-spacing: 0.02em; line-height: 1;
}
.nav-logo-sub {
  font-size: 0.56rem; font-weight: 400;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold); margin-top: 3px;
}
.nav-center {
  display: flex; align-items: center; gap: 0.15rem;
  position: absolute; left: 50%; transform: translateX(-50%);
}
.nav-link {
  font-size: 0.73rem; font-weight: 500;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: rgba(253,250,247,0.7);
  padding: 0.4rem 0.8rem; border-radius: var(--radius-pill);
  transition: color 0.3s, background 0.3s;
  white-space: nowrap; text-decoration: none; display: inline-block;
}
.nav-link:hover { color: var(--cream); background: rgba(255,255,255,0.06); }
.nav-link.active { color: var(--gold); }
.nav-right { display: flex; align-items: center; gap: 1rem; flex-shrink: 0; }
.nav-phone {
  font-size: 0.73rem; font-weight: 500;
  color: var(--gold); letter-spacing: 0.04em;
  display: flex; align-items: center; gap: 0.4rem;
  text-decoration: none; transition: color 0.3s; white-space: nowrap;
}
.nav-phone:hover { color: var(--gold-light); }
.nav-phone svg { width: 13px; height: 13px; stroke: currentColor; fill: none; stroke-width: 1.5; }
.btn-nav {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--charcoal);
  padding: 0.55rem 1.3rem; border-radius: var(--radius-pill);
  font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.07em; text-transform: uppercase;
  transition: all 0.35s var(--spring);
  white-space: nowrap; text-decoration: none; display: inline-block;
  box-shadow: 0 2px 12px rgba(201,168,130,0.25);
}
.btn-nav:hover {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  transform: scale(1.04); box-shadow: var(--shadow-gold);
}
.nav-burger {
  display: none; flex-direction: column; gap: 5px;
  padding: 8px; cursor: pointer;
}
.nav-burger span {
  width: 22px; height: 1.5px; background: var(--cream);
  display: block; transition: all 0.4s var(--ease);
  border-radius: 2px;
}

/* ---- MOBILE MENU ---- */
.mobile-menu {
  position: fixed; inset: 0;
  background: rgba(15,11,7,0.98);
  backdrop-filter: blur(32px);
  z-index: 999;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 0;
  opacity: 0; pointer-events: none;
  transition: opacity 0.45s var(--ease);
}
.mobile-menu.open { opacity: 1; pointer-events: all; }
.mobile-menu a {
  font-family: var(--font-serif);
  font-size: 2.2rem; font-weight: 400;
  color: var(--cream);
  padding: 0.55rem 0; display: block; text-align: center;
  transform: translateY(20px); opacity: 0;
  transition: all 0.55s var(--ease), color 0.3s;
  text-decoration: none; letter-spacing: 0.02em;
}
.mobile-menu.open a { transform: translateY(0); opacity: 1; }
.mobile-menu a:nth-child(1){transition-delay:.05s}
.mobile-menu a:nth-child(2){transition-delay:.1s}
.mobile-menu a:nth-child(3){transition-delay:.15s}
.mobile-menu a:nth-child(4){transition-delay:.2s}
.mobile-menu a:nth-child(5){transition-delay:.25s}
.mobile-menu a:nth-child(6){transition-delay:.3s}
.mobile-menu a:nth-child(7){transition-delay:.35s}
.mobile-menu a:hover { color: var(--gold); }
.mobile-menu-phone {
  margin-top: 1.5rem !important;
  font-size: 1rem !important;
  color: var(--gold) !important;
  font-family: var(--font-sans) !important;
  font-weight: 500 !important;
  letter-spacing: 0.08em !important;
  opacity: 0 !important; transform: translateY(10px) !important;
  transition: all 0.55s var(--ease) 0.42s !important;
}
.mobile-menu.open .mobile-menu-phone {
  opacity: 1 !important; transform: translateY(0) !important;
}

/* ---- DECORATIVE LINE ---- */
.menu-divider {
  width: 40px; height: 1px; background: rgba(201,168,130,0.25);
  margin: 0.75rem auto;
  opacity: 0; transition: opacity 0.5s 0.38s;
}
.mobile-menu.open .menu-divider { opacity: 1; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; gap: 0.7rem;
  border-radius: var(--radius-pill);
  font-family: var(--font-sans); font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  transition: all 0.4s var(--spring);
  cursor: pointer; white-space: nowrap; text-decoration: none;
}
.btn-icon {
  width: 26px; height: 26px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; transition: transform 0.35s var(--spring);
}
.btn:hover .btn-icon { transform: translate(2px,-2px) scale(1.1); }
.btn-icon svg { width: 11px; height: 11px; stroke: currentColor; fill: none; stroke-width: 2.5; }

.btn-gold {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: var(--charcoal); padding: 0.95rem 2rem;
  box-shadow: 0 4px 20px rgba(201,168,130,0.22);
}
.btn-gold .btn-icon { background: rgba(24,20,16,0.12); }
.btn-gold:hover {
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
  transform: translateY(-2px); box-shadow: var(--shadow-gold);
  color: var(--charcoal);
}
.btn-outline-gold {
  background: transparent; color: var(--gold);
  border: 1.5px solid rgba(201,168,130,0.4); padding: 0.9rem 1.8rem;
}
.btn-outline-gold:hover {
  background: rgba(201,168,130,0.1); border-color: var(--gold);
  transform: translateY(-1px);
}
.btn-dark { background: var(--charcoal); color: var(--cream); padding: 0.95rem 2rem; }
.btn-dark:hover { background: var(--charcoal-3); transform: translateY(-2px); box-shadow: var(--shadow-dark); }
.btn-rose {
  background: linear-gradient(135deg, var(--rose) 0%, var(--rose-dark) 100%);
  color: var(--white); padding: 0.95rem 2rem;
}
.btn-rose:hover { transform: translateY(-2px); box-shadow: var(--shadow-rose); }
.full-btn { width: 100%; justify-content: center; }

/* ============================================================
   SITE INTRO (homepage, once per session)
   ============================================================ */
.site-intro {
  position: fixed; inset: 0; z-index: 10000;
  background: var(--charcoal);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 1.2rem;
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
.site-intro.done { opacity: 0; pointer-events: none; transform: scale(1.04); }
.intro-name {
  font-family: var(--font-serif); font-size: 2.4rem; font-weight: 400;
  color: var(--cream); letter-spacing: 0.03em;
  opacity: 0; transform: translateY(16px);
  animation: introIn 0.8s var(--ease) 0.3s forwards;
}
.intro-name em { font-style: italic; color: var(--gold); }
.intro-tag {
  font-size: 0.64rem; letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--gold); opacity: 0;
  animation: introIn 0.8s var(--ease) 0.6s forwards;
}
.intro-line {
  display: flex; align-items: center; gap: 1rem;
  opacity: 0; animation: introIn 0.5s var(--ease) 0.88s forwards;
}
.intro-line::before, .intro-line::after {
  content: ''; display: block; width: 60px; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,168,130,0.4));
}
.intro-line::after { transform: scaleX(-1); }
.intro-diamond {
  width: 5px; height: 5px; background: var(--gold);
  transform: rotate(45deg);
  animation: pulse 2s ease-in-out 1.5s infinite;
}
.intro-progress {
  width: 140px; height: 1px;
  background: rgba(201,168,130,0.12); position: relative; overflow: hidden;
  opacity: 0; animation: introIn 0.5s var(--ease) 1s forwards;
}
.intro-progress::after {
  content: ''; position: absolute; top: 0; left: 0; height: 1px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-light));
  animation: progressBar 1.6s var(--ease) 1.1s forwards; width: 0;
}
@keyframes introIn { to { opacity: 1; transform: translateY(0); } }
@keyframes progressBar { to { width: 100%; } }
@keyframes pulse { 0%,100%{opacity:1;transform:rotate(45deg) scale(1)} 50%{opacity:0.3;transform:rotate(45deg) scale(1.5)} }

/* ============================================================
   HERO (Homepage)
   ============================================================ */
.hero {
  position: relative; min-height: 100dvh;
  display: flex; align-items: flex-end;
  overflow: hidden; background: var(--charcoal);
}
.hero-bg { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-bg video, .hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center top; display: block;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    to top,
    rgba(15,10,5,0.96) 0%,
    rgba(15,10,5,0.6) 40%,
    rgba(15,10,5,0.25) 70%,
    rgba(15,10,5,0.1) 100%
  );
}
/* Vignette */
.hero-overlay::after {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 30% 50%, transparent 40%, rgba(15,10,5,0.4) 100%);
}
.hero-content {
  position: relative; z-index: 2;
  padding: 0 var(--gutter) 7rem; width: 100%;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 0.7rem;
  background: rgba(201,168,130,0.08);
  border: 1px solid rgba(201,168,130,0.18);
  border-radius: var(--radius-pill);
  padding: 0.4rem 1.1rem 0.4rem 0.7rem;
  margin-bottom: 1.8rem; backdrop-filter: blur(8px);
}
.pulse-dot {
  width: 6px; height: 6px; border-radius: 50%; background: var(--gold);
  flex-shrink: 0; animation: pulseDot 2.6s ease-in-out infinite;
}
@keyframes pulseDot {
  0%,100%{opacity:1;transform:scale(1);box-shadow:0 0 0 0 rgba(201,168,130,0.4)}
  50%{opacity:0.5;transform:scale(1.3);box-shadow:0 0 0 5px rgba(201,168,130,0)}
}
.hero-eyebrow span {
  font-size: 0.66rem; font-weight: 500; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--gold);
}
.hero-h1 {
  font-family: var(--font-serif);
  font-size: clamp(3.2rem, 7.5vw, 7rem);
  font-weight: 400; line-height: 0.97;
  color: var(--cream); margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}
.hero-h1 em { font-style: italic; color: var(--gold); }
.hero-sub {
  font-size: 1.05rem; color: rgba(253,250,247,0.68);
  line-height: 1.78; max-width: 510px; margin-bottom: 2.75rem;
  font-weight: 300;
}
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; align-items: center; }
.hero-stats { display: flex; gap: 3rem; margin-top: 3.5rem; flex-wrap: wrap; }
.hero-stat-num {
  font-family: var(--font-serif); font-size: 2.4rem;
  font-weight: 400; color: var(--cream); line-height: 1;
}
.hero-stat-num span { color: var(--gold); }
.hero-stat-label {
  font-size: 0.68rem; color: rgba(253,250,247,0.45);
  letter-spacing: 0.1em; text-transform: uppercase; margin-top: 4px;
}
.hero-scroll-line {
  position: absolute; bottom: 2.5rem; right: var(--gutter);
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
  opacity: 0.45;
}
.hero-scroll-line .line { width: 1px; height: 50px; background: var(--gold); animation: lineGrow 2.2s ease-in-out infinite; }
@keyframes lineGrow { 0%{transform:scaleY(0);transform-origin:top;opacity:0} 50%{transform:scaleY(1);opacity:1} 100%{transform:scaleY(0);transform-origin:bottom;opacity:0} }
.hero-scroll-line span { font-size: 0.58rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); writing-mode: vertical-rl; }

/* ============================================================
   PAGE HERO (Inner Pages)
   FIX: proper top padding so content never overlaps nav
   ============================================================ */
.page-hero {
  background: var(--charcoal);
  min-height: 50vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  margin-top: var(--nav-h);
  padding: 4.5rem var(--gutter) 5.5rem;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: 
    radial-gradient(ellipse at 70% 30%, rgba(201,168,130,0.06) 0%, transparent 60%),
    radial-gradient(ellipse at 20% 80%, rgba(212,160,160,0.04) 0%, transparent 50%);
  pointer-events: none;
}
/* Decorative corner accent */
.page-hero::after {
  content: '';
  position: absolute; top: 0; right: 0;
  width: 280px; height: 280px;
  background: radial-gradient(ellipse at top right, rgba(201,168,130,0.07) 0%, transparent 65%);
  pointer-events: none;
}
.page-hero-inner { position: relative; z-index: 2; max-width: 780px; padding-top: 1rem; }
.page-hero-h1 {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 4.5vw, 4.2rem);
  font-weight: 400; color: var(--cream);
  line-height: 1.08; margin-bottom: 1.1rem;
  letter-spacing: -0.01em;
}
.page-hero-h1 em, .page-hero-h1 i { font-style: italic; color: var(--gold); }
.page-hero-p {
  color: rgba(253,250,247,0.65); font-size: 1rem;
  line-height: 1.78; max-width: 540px; margin-bottom: 2.25rem;
  font-weight: 300;
}
.breadcrumb {
  position: absolute; top: 1.5rem; left: var(--gutter);
  z-index: 3; font-size: 0.7rem; color: rgba(253,250,247,0.35);
  display: flex; gap: 0.5rem; align-items: center;
}
.breadcrumb a { color: rgba(201,168,130,0.7); text-decoration: none; transition: color 0.3s; }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { color: rgba(255,255,255,0.15); }

/* ============================================================
   TRUST BAR
   ============================================================ */
.trust-bar {
  background: var(--beige);
  border-top: 1px solid rgba(201,168,130,0.25);
  border-bottom: 1px solid rgba(201,168,130,0.25);
  padding: 1.75rem var(--gutter);
  display: flex; align-items: center; justify-content: space-between;
  gap: 1.5rem; flex-wrap: wrap;
}
.trust-item { display: flex; align-items: center; gap: 0.85rem; flex: 1; min-width: 145px; }
.trust-icon {
  width: 40px; height: 40px;
  background: linear-gradient(135deg, var(--gold-pale), var(--beige-mid));
  border-radius: 10px; display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; box-shadow: 0 2px 8px rgba(201,168,130,0.15);
}
.trust-icon svg { width: 18px; height: 18px; stroke: var(--gold-dark); fill: none; stroke-width: 1.5; }
.trust-label { font-size: 0.82rem; font-weight: 600; color: var(--charcoal); line-height: 1.3; }
.trust-sub { font-size: 0.7rem; color: var(--text-warm); margin-top: 1px; }

/* ============================================================
   SECTIONS
   ============================================================ */
.section { padding: 7rem var(--gutter); }
.section-sm { padding: 4rem var(--gutter); }
.section-inner { max-width: 1360px; margin: 0 auto; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-size: 0.65rem; font-weight: 600; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 1rem;
}
.eyebrow::before {
  content: ''; width: 22px; height: 1px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold));
  display: inline-block; flex-shrink: 0;
}
.section-h2 {
  font-family: var(--font-serif);
  font-size: clamp(2.1rem, 3.5vw, 3.2rem);
  font-weight: 500; line-height: 1.15; color: var(--charcoal);
  letter-spacing: -0.01em;
}
.section-h2 em, .section-h2 i { font-style: italic; color: var(--gold); }
.section-h2.light { color: var(--cream); }
.section-h2.light em, .section-h2.light i { color: var(--gold-light); }
.section-lead { font-size: 1rem; color: var(--text-warm); line-height: 1.82; max-width: 560px; font-weight: 300; }
.section-lead.light { color: var(--footer-text); }
.section-header { display: flex; align-items: flex-end; justify-content: space-between; gap: 2rem; margin-bottom: 3.5rem; flex-wrap: wrap; }
.section-header-left { max-width: 520px; }
.divider { width: 40px; height: 1px; background: linear-gradient(90deg, var(--gold-dark), var(--gold)); margin: 1.25rem 0; }
.divider.light { background: linear-gradient(90deg, rgba(201,168,130,0.5), rgba(201,168,130,0.15)); }
.center { text-align: center; }
.center .section-lead { margin: 0 auto; }
.center .eyebrow { justify-content: center; }

/* ============================================================
   SERVICE CARDS — Feminine elevated
   ============================================================ */
.services-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.25rem; }
.service-card {
  background: var(--white);
  border: 1px solid rgba(201,168,130,0.2);
  border-radius: var(--radius-lg); padding: 2.25rem 1.85rem;
  position: relative; overflow: hidden;
  text-decoration: none; color: inherit;
  display: flex; flex-direction: column;
  transition: all 0.45s var(--ease);
}
.service-card::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(160deg, var(--charcoal) 0%, var(--charcoal-2) 100%);
  transform: scaleY(0); transform-origin: bottom;
  transition: transform 0.55s var(--ease); z-index: 0;
}
/* Shimmer line at top */
.service-card::after {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0; transition: opacity 0.45s;
}
.service-card:hover { border-color: transparent; transform: translateY(-5px); box-shadow: var(--shadow-dark); }
.service-card:hover::before { transform: scaleY(1); }
.service-card:hover::after { opacity: 1; }
.service-card:hover .sc-num,.service-card:hover .sc-title,.service-card:hover .sc-desc,.service-card:hover .sc-link { color: var(--cream); }
.service-card:hover .sc-icon { background: rgba(201,168,130,0.1); border-color: rgba(201,168,130,0.2); }
.service-card:hover .sc-num { color: var(--gold); }
.sc-num { font-family: var(--font-alt); font-size: 0.7rem; color: rgba(201,168,130,0.6); letter-spacing: 0.15em; margin-bottom: 1.2rem; position: relative; z-index: 1; transition: color 0.4s; }
.sc-icon { width: 50px; height: 50px; background: var(--beige); border: 1px solid rgba(201,168,130,0.18); border-radius: 14px; display: flex; align-items: center; justify-content: center; margin-bottom: 1.2rem; position: relative; z-index: 1; transition: all 0.4s; }
.sc-icon svg { width: 22px; height: 22px; stroke: var(--gold); fill: none; stroke-width: 1.5; }
.sc-title { font-family: var(--font-serif); font-size: 1.15rem; font-weight: 500; color: var(--charcoal); margin-bottom: 0.65rem; position: relative; z-index: 1; transition: color 0.4s; line-height: 1.3; }
.sc-desc { font-size: 0.83rem; color: var(--text-warm); line-height: 1.72; margin-bottom: 1.2rem; flex: 1; position: relative; z-index: 1; transition: color 0.4s; font-weight: 300; }
.sc-link { font-size: 0.7rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); position: relative; z-index: 1; transition: color 0.4s; }

/* ============================================================
   REVIEWS
   ============================================================ */
.reviews-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.review-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-lg); padding: 2rem;
  position: relative; overflow: hidden;
  transition: border-color 0.3s, transform 0.4s var(--ease);
}
.review-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,168,130,0.15), transparent);
}
.review-card:hover { border-color: rgba(201,168,130,0.2); transform: translateY(-3px); }
.review-top { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1.1rem; }
.reviewer-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: linear-gradient(135deg, rgba(201,168,130,0.15), rgba(212,160,160,0.1));
  border: 1px solid rgba(201,168,130,0.2);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-serif); font-size: 1rem; font-weight: 500; color: var(--gold); flex-shrink: 0;
}
.reviewer-name { font-size: 0.88rem; font-weight: 600; color: var(--cream); }
.review-stars { color: var(--star); font-size: 0.72rem; margin-top: 1px; letter-spacing: 0.05em; }
.google-badge-sm {
  margin-left: auto; width: 24px; height: 24px;
  background: #4285F4; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.58rem; font-weight: 700; color: #fff; flex-shrink: 0;
}
.review-text {
  font-family: var(--font-alt); font-size: 0.95rem; font-style: italic;
  color: rgba(253,250,247,0.75); line-height: 1.78; margin-bottom: 1rem;
}
.review-service { font-size: 0.68rem; color: var(--gold); font-weight: 500; letter-spacing: 0.06em; }
.google-rating-badge {
  display: flex; align-items: center; gap: 0.85rem;
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-md); padding: 0.9rem 1.3rem;
}
.g-logo { width: 34px; height: 34px; background: #4285F4; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.95rem; font-weight: 700; color: #fff; flex-shrink: 0; }
.g-stars { color: var(--star); font-size: 0.92rem; }
.g-text { font-size: 0.73rem; color: var(--footer-text); margin-top: 1px; }
.reviews-header { display: flex; align-items: center; gap: 3rem; margin-bottom: 3rem; flex-wrap: wrap; }

/* ============================================================
   FAQ
   ============================================================ */
.faq-list { display: flex; flex-direction: column; }
.faq-item { border-bottom: 1px solid rgba(201,168,130,0.15); }
.faq-q {
  width: 100%; background: none; border: none;
  padding: 1.35rem 0; text-align: left;
  font-family: var(--font-sans); font-size: 0.9rem; font-weight: 600;
  color: var(--charcoal); cursor: pointer;
  display: flex; justify-content: space-between; align-items: center; gap: 1rem;
  transition: color 0.3s;
}
.faq-q:hover { color: var(--gold-dark); }
.faq-icon {
  width: 24px; height: 24px; border: 1px solid rgba(201,168,130,0.4);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; color: var(--gold); font-size: 0.85rem;
  transition: all 0.4s var(--ease);
}
.faq-item.open .faq-icon {
  transform: rotate(45deg);
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--charcoal); border-color: transparent;
}
.faq-a {
  font-size: 0.875rem; color: var(--text-warm); line-height: 1.82;
  padding: 0 0 1.35rem; max-height: 0; overflow: hidden;
  transition: max-height 0.55s var(--ease);
  font-weight: 300;
}
.faq-item.open .faq-a { max-height: 320px; }

/* ============================================================
   CONTENT BODY + SIDEBAR
   ============================================================ */
.content-body h2 { font-family: var(--font-serif); font-size: 1.65rem; font-weight: 500; color: var(--charcoal); margin: 2.75rem 0 1rem; line-height: 1.25; }
.content-body h2 em { font-style: italic; color: var(--gold); }
.content-body h3 { font-family: var(--font-serif); font-size: 1.2rem; font-weight: 500; color: var(--charcoal); margin: 2.25rem 0 0.8rem; }
.content-body p { font-size: 0.92rem; color: var(--text-warm); line-height: 1.88; margin-bottom: 1rem; font-weight: 300; }
.content-body ul { margin: 1rem 0 1.5rem; display: flex; flex-direction: column; }
.content-body ul li { font-size: 0.92rem; color: var(--text-warm); line-height: 1.72; padding: 0.5rem 0; border-bottom: 1px solid rgba(201,168,130,0.12); display: flex; gap: 0.8rem; font-weight: 300; }
.content-body ul li::before { content: '→'; color: var(--gold); flex-shrink: 0; font-weight: 500; }
.callout-box { background: linear-gradient(135deg, var(--beige), var(--cream-deep)); border-left: 3px solid var(--gold); border-radius: 0 var(--radius-md) var(--radius-md) 0; padding: 1.5rem 1.85rem; margin: 2.25rem 0; }
.callout-box p { margin: 0; font-size: 0.9rem; color: var(--charcoal); }
.callout-box strong { color: var(--gold-dark); }

.sticky-sidebar { position: sticky; top: calc(var(--nav-h) + 28px); display: flex; flex-direction: column; gap: 1.5rem; }
.sidebar-cta-card {
  background: linear-gradient(160deg, var(--charcoal-2) 0%, var(--charcoal) 100%);
  border-radius: var(--radius-lg); padding: 2.25rem;
  position: relative; overflow: hidden;
  border: 1px solid rgba(201,168,130,0.12);
}
.sidebar-cta-card::before { content: ''; position: absolute; top: -50%; right: -20%; width: 220px; height: 220px; background: radial-gradient(circle, rgba(201,168,130,0.07) 0%, transparent 70%); pointer-events: none; }
.sidebar-cta-card h3 { font-family: var(--font-serif); font-size: 1.25rem; font-weight: 500; color: var(--cream); margin-bottom: 0.75rem; line-height: 1.3; }
.sidebar-cta-card p { font-size: 0.84rem; color: var(--footer-text); line-height: 1.68; margin-bottom: 1.5rem; font-weight: 300; }
.sidebar-info-card { background: linear-gradient(135deg, var(--beige), var(--cream-deep)); border: 1px solid rgba(201,168,130,0.2); border-radius: var(--radius-lg); padding: 1.75rem; }
.sidebar-info-card h4 { font-size: 0.65rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); margin-bottom: 1rem; }
.sidebar-info-row { display: flex; gap: 0.75rem; align-items: flex-start; margin-bottom: 0.75rem; font-size: 0.84rem; color: var(--text-warm); font-weight: 300; }
.sidebar-info-row a { color: var(--gold); text-decoration: none; }
.sidebar-services-list { background: var(--white); border: 1px solid rgba(201,168,130,0.18); border-radius: var(--radius-lg); overflow: hidden; }
.sidebar-services-list h4 { font-size: 0.65rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); padding: 1.25rem 1.5rem 0.75rem; border-bottom: 1px solid rgba(201,168,130,0.1); }
.sidebar-services-list a { display: flex; align-items: center; justify-content: space-between; padding: 0.75rem 1.5rem; font-size: 0.83rem; color: var(--text-warm); border-bottom: 1px solid rgba(201,168,130,0.08); transition: all 0.3s; text-decoration: none; font-weight: 300; }
.sidebar-services-list a:last-child { border-bottom: none; }
.sidebar-services-list a:hover { background: var(--beige); color: var(--charcoal); padding-left: 1.85rem; }
.sidebar-services-list a span { color: var(--gold); font-size: 0.75rem; }

/* ============================================================
   BEFORE/AFTER
   ============================================================ */
.ba-card { border-radius: var(--radius-lg); overflow: hidden; background: var(--charcoal-2); border: 1px solid rgba(201,168,130,0.1); }
.ba-placeholder { height: 260px; background: linear-gradient(135deg, var(--charcoal), var(--charcoal-2)); display: flex; align-items: center; justify-content: center; position: relative; }
.ba-placeholder svg { width: 36px; height: 36px; stroke: rgba(201,168,130,0.2); fill: none; stroke-width: 1; }
.ba-badge { position: absolute; top: 1rem; left: 1rem; background: linear-gradient(135deg, var(--gold), var(--gold-dark)); color: var(--charcoal); font-size: 0.63rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; padding: 0.3rem 0.8rem; border-radius: var(--radius-pill); }
.ba-body { padding: 1.25rem 1.5rem; }
.ba-title { font-family: var(--font-serif); font-size: 0.95rem; font-weight: 500; color: var(--cream); margin-bottom: 0.25rem; }
.ba-sub { font-size: 0.73rem; color: var(--footer-text); font-weight: 300; }

/* ============================================================
   EXPERT BLOCK
   ============================================================ */
.expert-block { background: linear-gradient(160deg, var(--charcoal-2) 0%, var(--charcoal) 100%); border: 1px solid rgba(201,168,130,0.15); border-radius: var(--radius-lg); padding: 2.75rem; position: relative; overflow: hidden; }
.expert-block::before { content: ''; position: absolute; top: -40%; right: -10%; width: 300px; height: 300px; background: radial-gradient(circle, rgba(201,168,130,0.05) 0%, transparent 70%); pointer-events: none; }
.expert-tag { display: inline-flex; align-items: center; gap: 0.5rem; background: rgba(201,168,130,0.08); border: 1px solid rgba(201,168,130,0.2); border-radius: var(--radius-pill); padding: 0.3rem 0.9rem; font-size: 0.63rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.1rem; }
.expert-block h3 { font-family: var(--font-serif); font-size: 1.25rem; font-weight: 500; color: var(--cream); margin-bottom: 0.85rem; line-height: 1.35; }
.expert-block > p { font-size: 0.88rem; color: var(--footer-text); line-height: 1.78; margin-bottom: 1.75rem; font-weight: 300; font-style: italic; }
.compare-row { display: flex; gap: 1.25rem; flex-wrap: wrap; margin-bottom: 1.5rem; }
.compare-item { flex: 1; min-width: 150px; background: rgba(255,255,255,0.03); border-radius: var(--radius-md); padding: 1.35rem; }
.compare-item.highlight { border: 1px solid rgba(201,168,130,0.18); background: rgba(201,168,130,0.04); }
.compare-item .ci-icon { font-size: 1.25rem; margin-bottom: 0.5rem; }
.compare-item .ci-label { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.4rem; }
.compare-item .ci-text { font-size: 0.83rem; color: var(--footer-text); line-height: 1.58; font-weight: 300; }
.compare-item .ci-text strong { color: var(--cream); font-weight: 500; }
.verdict-bar { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; background: rgba(201,168,130,0.05); border: 1px solid rgba(201,168,130,0.1); border-radius: var(--radius-md); padding: 0.9rem 1.2rem; font-size: 0.8rem; }
.verdict-bar .v-label { font-weight: 600; color: var(--footer-text); }
.verdict-bar .v-wax { color: rgba(253,250,247,0.3); text-decoration: line-through; }
.verdict-bar .v-sep { color: rgba(201,168,130,0.2); }
.verdict-bar .v-laser { color: var(--gold); font-weight: 600; }
.verdict-bar .v-tag { background: linear-gradient(135deg, var(--gold), var(--gold-dark)); color: var(--charcoal); font-size: 0.63rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; padding: 0.25rem 0.8rem; border-radius: var(--radius-pill); margin-left: auto; }

/* ============================================================
   PILL TAG
   ============================================================ */
.pill-tag { display: inline-flex; align-items: center; background: var(--gold-pale); border: 1px solid rgba(201,168,130,0.25); color: var(--text-warm); font-size: 0.72rem; font-weight: 500; padding: 0.3rem 0.9rem; border-radius: var(--radius-pill); text-decoration: none; transition: all 0.3s; }
.pill-tag:hover { background: linear-gradient(135deg, var(--gold), var(--gold-dark)); color: var(--charcoal); border-color: transparent; }

/* ============================================================
   CITY SERVICE PILLS
   ============================================================ */
.city-service-pill { background: var(--white); border: 1px solid rgba(201,168,130,0.2); border-radius: var(--radius-md); padding: 0.95rem 1.25rem; display: flex; align-items: center; gap: 0.75rem; font-size: 0.87rem; font-weight: 500; color: var(--charcoal); text-decoration: none; transition: all 0.3s; }
.city-service-pill:hover { background: linear-gradient(135deg, var(--gold-pale), var(--beige)); border-color: var(--gold); transform: translateX(3px); }
.city-service-pill::before { content: '→'; color: var(--gold); font-size: 0.78rem; }

/* ============================================================
   FLOATING ELEMENTS
   ============================================================ */
.float-whatsapp { position: fixed; bottom: 2rem; right: 2rem; z-index: 500; width: 56px; height: 56px; border-radius: 50%; background: linear-gradient(135deg, #25D366, #128C7E); color: #fff; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 24px rgba(37,211,102,0.4); transition: all 0.35s var(--spring); text-decoration: none; }
.float-whatsapp:hover { transform: scale(1.12); box-shadow: 0 8px 32px rgba(37,211,102,0.55); }
.float-whatsapp svg { width: 26px; height: 26px; fill: currentColor; }
.sticky-book-bar { position: fixed; bottom: 0; left: 0; right: 0; z-index: 490; background: rgba(20,16,12,0.97); backdrop-filter: blur(20px); padding: 0.9rem 2rem; display: none; align-items: center; justify-content: space-between; border-top: 1px solid rgba(201,168,130,0.12); }
.sticky-book-bar.visible { display: flex; }
.sticky-book-bar p { font-size: 0.84rem; color: var(--footer-text); }
.sticky-book-bar p strong { color: var(--cream); }

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal { opacity: 1; transform: translateY(0); transition: opacity 0.85s var(--ease), transform 0.85s var(--ease); }
.reveal.in { opacity: 1; transform: translateY(0); }
/* GSAP handles animation — elements visible by default for fast load */
.reveal-d1{transition-delay:.1s} .reveal-d2{transition-delay:.2s} .reveal-d3{transition-delay:.3s} .reveal-d4{transition-delay:.4s} .reveal-d5{transition-delay:.5s}

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--charcoal); padding: 6rem var(--gutter) 2.5rem; position: relative; overflow: hidden; }
.footer::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, transparent, rgba(201,168,130,0.2), transparent); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 1.4fr; gap: 3.5rem; margin-bottom: 4rem; }
.footer-brand-name { font-family: var(--font-serif); font-size: 1.45rem; font-weight: 500; color: var(--cream); line-height: 1.2; letter-spacing: 0.01em; }
.footer-brand-sub { font-size: 0.58rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); display: block; margin: 5px 0 1.2rem; }
.footer-brand-desc { font-size: 0.83rem; color: var(--footer-text); line-height: 1.75; max-width: 270px; font-weight: 300; }
.footer-col h4 { font-size: 0.62rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.2rem; }
.footer-col ul li { margin-bottom: 0.55rem; }
.footer-col ul li a { font-size: 0.83rem; color: var(--footer-text); transition: color 0.3s; text-decoration: none; font-weight: 300; }
.footer-col ul li a:hover { color: var(--gold); }
.footer-contact-item { font-size: 0.83rem; color: var(--footer-text); line-height: 1.65; margin-bottom: 0.65rem; font-weight: 300; }
.footer-contact-item a { color: var(--gold); text-decoration: none; transition: color 0.3s; }
.footer-contact-item a:hover { color: var(--gold-light); }
.footer-bottom { border-top: 1px solid rgba(201,168,130,0.08); padding-top: 2rem; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; }
.footer-copy { font-size: 0.74rem; color: rgba(200,180,158,0.3); }
.footer-copy a { color: var(--gold); text-decoration: none; }
.footer-badges { display: flex; gap: 0.9rem; align-items: center; flex-wrap: wrap; }
.footer-badge { font-size: 0.66rem; color: rgba(200,180,158,0.35); background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.05); padding: 0.25rem 0.8rem; border-radius: var(--radius-pill); }

/* ============================================================
   UTILITY
   ============================================================ */
.bg-cream { background: var(--cream); }
.bg-beige { background: var(--beige); }
.bg-dark { background: var(--charcoal); }
.bg-dark-2 { background: var(--charcoal-2); }
.gold-border-top { border-top: 1px solid rgba(201,168,130,0.2); }
.gold-border-bottom { border-bottom: 1px solid rgba(201,168,130,0.2); }

/* ============================================================
   RESPONSIVE — Mobile-First Fixes
   ============================================================ */
@media (max-width: 1280px) {
  .services-grid { grid-template-columns: repeat(3,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr 1fr; gap: 2.5rem; }
  .footer-grid > *:first-child { grid-column: span 3; }
}

@media (max-width: 1024px) {
  :root { --gutter: 2rem; }
  .section { padding: 5rem var(--gutter); }
  .section-sm { padding: 3rem var(--gutter); }
  .nav { padding: 0 1.75rem; }
  .nav-center, .nav-phone { display: none; }
  .nav-burger { display: flex; }
  .btn-nav { font-size: 0.68rem; padding: 0.5rem 1.1rem; }
  .page-hero {
    padding: 3.5rem var(--gutter) 4rem;
    min-height: 44vh;
  }
  .breadcrumb { left: var(--gutter); }
  .hero-content { padding: 0 var(--gutter) 5rem; }
  .hero-scroll-line { display: none; }
  .hero-stats { gap: 1.75rem; }
  .trust-bar { padding: 1.75rem var(--gutter); gap: 1.25rem; }
  .footer { padding: 4rem var(--gutter) 2rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer-grid > *:first-child { grid-column: span 2; }
  .services-grid { grid-template-columns: repeat(2,1fr); }
  .reviews-grid { grid-template-columns: 1fr; }
  .sticky-sidebar { position: static; }
}

@media (max-width: 768px) {
  :root { --gutter: 1.5rem; }
  .section { padding: 4rem var(--gutter); }
  .hero-h1 { font-size: clamp(2.8rem,10vw,4.5rem); line-height: 1.0; }
  .hero-content { padding: 0 var(--gutter) 4rem; }
  .hero-stats { gap: 1.25rem; }
  .hero-stat-num { font-size: 1.8rem; }
  .page-hero {
    padding: 3rem var(--gutter) 3.5rem;
    min-height: 42vh;
  }
  .page-hero-h1 { font-size: clamp(2rem,7vw,3rem); }
  .trust-bar { flex-direction: column; align-items: flex-start; gap: 1rem; }
  .trust-item { min-width: unset; }
  .services-grid { grid-template-columns: 1fr; gap: 1rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 1.75rem; }
  .footer-grid > *:first-child { grid-column: span 1; }
}

@media (max-width: 640px) {
  .hero-btns { flex-direction: column; align-items: flex-start; gap: 0.85rem; }
  .hero-btns .btn { width: 100%; justify-content: center; }
  .btn-nav { display: none; }
  .sticky-book-bar { padding: 0.85rem 1.5rem; }
  .page-hero { min-height: 36vh; padding: 2.5rem var(--gutter) 3rem; }
}

/* Contact page standalone grid */
.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 5rem;
  align-items: start;
  padding: 5rem var(--gutter);
  max-width: 1300px;
  margin: 0 auto;
}
@media (max-width: 1024px) {
  .contact-grid { grid-template-columns: 1fr !important; gap: 3rem !important; padding: 4rem var(--gutter) !important; }
}
@media (max-width: 640px) {
  .contact-grid { padding: 3rem var(--gutter) !important; }
}


/* ============================================================
   EXIT INTENT POPUP
   ============================================================ */
.exit-popup-overlay {
  position: fixed; inset: 0; z-index: 9000;
  background: rgba(15,10,6,0.88);
  backdrop-filter: blur(12px);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity 0.45s var(--ease);
  padding: 1.5rem;
}
.exit-popup-overlay.show { opacity: 1; pointer-events: all; }
.exit-popup-card {
  background: var(--cream);
  border-radius: var(--radius-xl);
  max-width: 480px; width: 100%;
  padding: 3rem 2.5rem;
  text-align: center;
  position: relative;
  animation: popIn 0.5s var(--spring);
  box-shadow: 0 32px 80px rgba(0,0,0,0.4);
}
@keyframes popIn { from{transform:scale(0.88) translateY(20px);opacity:0} to{transform:scale(1) translateY(0);opacity:1} }
.exit-popup-close {
  position: absolute; top: 1rem; right: 1rem;
  width: 32px; height: 32px; border-radius: 50%;
  background: rgba(24,20,16,0.08); border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; color: var(--text-warm); transition: all 0.2s;
}
.exit-popup-close:hover { background: rgba(24,20,16,0.15); }
.exit-popup-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: linear-gradient(135deg, rgba(201,168,130,0.15), rgba(212,160,160,0.1));
  border: 1px solid rgba(201,168,130,0.3);
  border-radius: var(--radius-pill); padding: 0.35rem 1rem;
  font-size: 0.65rem; font-weight: 600; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--gold-dark); margin-bottom: 1.25rem;
}
.exit-popup-h2 {
  font-family: var(--font-serif); font-size: 1.85rem;
  font-weight: 400; color: var(--charcoal); margin-bottom: 0.75rem;
  line-height: 1.2;
}
.exit-popup-h2 em { font-style: italic; color: var(--gold); }
.exit-popup-p {
  font-size: 0.9rem; color: var(--text-warm); line-height: 1.72;
  margin-bottom: 1.75rem; font-weight: 300;
}
.exit-popup-btns { display: flex; flex-direction: column; gap: 0.75rem; }
.exit-popup-skip {
  font-size: 0.76rem; color: var(--text-warm); opacity: 0.6;
  cursor: pointer; background: none; border: none;
  transition: opacity 0.2s; padding: 0.25rem;
}
.exit-popup-skip:hover { opacity: 1; }
.exit-popup-urgency {
  display: flex; align-items: center; justify-content: center; gap: 0.5rem;
  font-size: 0.72rem; color: var(--rose-dark); font-weight: 600;
  margin-top: 0.75rem;
}
.urgency-dot {
  width: 6px; height: 6px; border-radius: 50%; background: var(--rose-dark);
  animation: pulseDot 1.5s ease-in-out infinite;
}

/* ============================================================
   MOBILE STICKY PHONE BAR (bottom of screen on mobile)
   ============================================================ */
.mobile-phone-bar {
  display: none;
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 480;
  background: var(--charcoal);
  border-top: 1px solid rgba(201,168,130,0.15);
  padding: 0.75rem 1rem;
  gap: 0.6rem;
}
@media (max-width: 768px) {
  .mobile-phone-bar { display: flex; }
  .float-whatsapp { bottom: 5.5rem; }
  .sticky-book-bar { display: none !important; }
}
.mob-bar-btn {
  flex: 1; padding: 0.85rem 0.5rem;
  border-radius: var(--radius-md); border: none; cursor: pointer;
  font-family: var(--font-sans); font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.05em; text-align: center; text-decoration: none;
  display: flex; align-items: center; justify-content: center; gap: 0.4rem;
  transition: all 0.25s;
}
.mob-bar-call {
  background: rgba(255,255,255,0.08); color: var(--gold);
  border: 1px solid rgba(201,168,130,0.25);
}
.mob-bar-book {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--charcoal);
}
.mob-bar-btn svg { width:14px; height:14px; stroke:currentColor; fill:none; stroke-width:2; }

/* ============================================================
   TRUST STRIP (above fold on inner pages)
   ============================================================ */
.trust-strip {
  background: var(--charcoal);
  border-bottom: 1px solid rgba(201,168,130,0.12);
  padding: 0.55rem var(--gutter);
  display: flex; align-items: center; justify-content: center;
  gap: 2rem; flex-wrap: wrap; margin-top: var(--nav-h);
}
.trust-strip-item {
  font-size: 0.66rem; font-weight: 500; letter-spacing: 0.08em;
  color: rgba(201,168,130,0.8); text-transform: uppercase;
  display: flex; align-items: center; gap: 0.4rem;
}
.trust-strip-item::before { content:"✓"; color:var(--gold); font-size:0.7rem; }

/* ============================================================
   PERFORMANCE: Nav transition on mobile
   ============================================================ */
.nav { transition: background 0.5s var(--ease), backdrop-filter 0.5s, box-shadow 0.5s, transform 0.35s var(--ease); }

/* ============================================================
   URGENCY SECTION
   ============================================================ */
.urgency-banner {
  background: linear-gradient(135deg, var(--charcoal) 0%, #2a1a10 100%);
  border-top: 1px solid rgba(201,168,130,0.2);
  border-bottom: 1px solid rgba(201,168,130,0.2);
  padding: 1.25rem var(--gutter);
  display: flex; align-items: center; justify-content: center;
  gap: 1.5rem; flex-wrap: wrap; text-align: center;
}
.urgency-banner p { font-size: 0.88rem; color: var(--footer-text); }
.urgency-banner strong { color: var(--gold); }
.urgency-pulse {
  width: 8px; height: 8px; border-radius: 50%; background: var(--rose);
  animation: pulseDot 2s ease-in-out infinite; flex-shrink: 0;
}


/* ============================================================
   GSAP ANIMATION HELPERS
   ============================================================ */
/* GSAP will control opacity/transform - hide by default */
.hero-content > * { will-change: transform; }
.service-card { will-change: transform; }
.btn-gold, .btn-nav { will-change: transform; }

/* prefers-reduced-motion safety */
@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-d1, .reveal-d2, .reveal-d3, .reveal-d4, .reveal-d5 {
    opacity: 1 !important; transform: none !important;
    transition: none !important;
  }
  .site-intro { animation: none !important; transition: none !important; }
  * { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

/* ============================================================
   PERFORMANCE ENHANCEMENTS
   ============================================================ */
/* Lazy image placeholder */
img[loading="lazy"] { background: var(--beige); }

/* Font display swap */
@font-face { font-display: swap; }

/* Video element optimization */
.hero-bg video { 
  will-change: transform;
  transform: translateZ(0);
}

/* ============================================================
   ENHANCED INTRO ANIMATIONS
   ============================================================ */
.intro-line {
  display: flex; align-items: center; gap: 1rem;
  opacity: 0; animation: introIn 0.5s var(--ease) 0.88s forwards;
}
.intro-line::before, .intro-line::after {
  content: ''; display: block; width: 60px; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,168,130,0.4));
}
.intro-line::after { transform: scaleX(-1); }
.intro-diamond {
  width: 6px; height: 6px; background: var(--gold);
  transform: rotate(45deg);
  animation: pulse 2s ease-in-out 1.5s infinite;
}

/* ============================================================
   PREMIUM ANIMATION SYSTEM v7 — $50K Design Level
   Stitch Design Taste × High-End Visual Design × GSAP
   ============================================================ */

/* Remove all old broken mobile bars */
.mobile-phone-bar, .sticky-book-bar { display: none !important; }
.float-whatsapp { display: none !important; }

/* ---- CLEAN MOBILE CTA BAR ---- */
.mob-cta-bar {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 490;
  background: rgba(22,17,12,0.97);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-top: 1px solid rgba(201,168,130,0.15);
  padding: 0.75rem 1.25rem;
  gap: 0.7rem;
  align-items: center;
  /* Safe area for iPhone home bar */
  padding-bottom: max(0.75rem, env(safe-area-inset-bottom));
}
@media (max-width: 768px) {
  .mob-cta-bar { display: flex; }
}
.mob-cta-phone {
  display: flex; align-items: center; gap: 0.5rem;
  padding: 0.8rem 1.1rem;
  background: rgba(201,168,130,0.08);
  border: 1px solid rgba(201,168,130,0.2);
  border-radius: var(--radius-pill);
  color: var(--gold);
  font-size: 0.78rem; font-weight: 600; letter-spacing: 0.06em;
  text-decoration: none; white-space: nowrap;
  transition: all 0.3s var(--ease);
}
.mob-cta-phone:hover, .mob-cta-phone:active {
  background: rgba(201,168,130,0.18); color: var(--gold-light);
}
.mob-cta-book {
  flex: 1;
  display: flex; align-items: center; justify-content: center;
  padding: 0.85rem 1rem;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  border-radius: var(--radius-pill);
  color: var(--charcoal);
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.07em;
  text-transform: uppercase; text-decoration: none;
  transition: all 0.35s var(--spring);
  box-shadow: 0 2px 16px rgba(201,168,130,0.25);
}
.mob-cta-book:hover, .mob-cta-book:active {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  transform: scale(1.02);
}

/* ---- PREMIUM TEXT GRADIENT ---- */
.text-gold-grad {
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 50%, var(--gold-dark) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ---- GSAP SPLIT TEXT HELPERS ---- */
.char-wrap { overflow: hidden; display: inline-block; }
.char { display: inline-block; will-change: transform; }

/* ---- AMBIENT GLOW on cards ---- */
.service-card::after {
  content: '';
  position: absolute; bottom: -30px; left: 50%;
  transform: translateX(-50%);
  width: 60%; height: 30px;
  background: radial-gradient(ellipse, rgba(201,168,130,0.12) 0%, transparent 70%);
  filter: blur(8px);
  pointer-events: none;
  opacity: 0; transition: opacity 0.4s;
}
.service-card:hover::after { opacity: 1; }

/* ---- SCROLL PROGRESS BAR ---- */
.scroll-progress {
  position: fixed; top: 0; left: 0; height: 2px; z-index: 9999;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-light));
  transform-origin: left; transform: scaleX(0);
  will-change: transform;
}

/* ---- LOCATION HERO GRADIENT ---- */
.loc-hero-grad {
  background: linear-gradient(160deg, var(--charcoal) 0%, #1a0f08 60%, var(--charcoal) 100%);
}

/* ---- STAT COUNTER CARDS ---- */
.stat-card-premium {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(201,168,130,0.12);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  position: relative; overflow: hidden;
  transition: border-color 0.3s, transform 0.4s var(--ease);
}
.stat-card-premium::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0; transition: opacity 0.4s;
}
.stat-card-premium:hover { border-color: rgba(201,168,130,0.25); transform: translateY(-4px); }
.stat-card-premium:hover::before { opacity: 1; }

/* ---- LOCATION MAP EMBED ---- */
.map-wrap {
  border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid rgba(201,168,130,0.18);
  box-shadow: var(--shadow-gold);
}
.map-wrap iframe { display: block; }

/* ---- LOCATION SERVICE PILLS (premium hover) ---- */
.loc-service-pill {
  display: flex; align-items: center; gap: 0.65rem;
  background: var(--white);
  border: 1px solid rgba(201,168,130,0.18);
  border-radius: var(--radius-md);
  padding: 0.9rem 1.2rem;
  font-size: 0.87rem; font-weight: 500;
  color: var(--charcoal); text-decoration: none;
  transition: all 0.35s var(--ease);
  position: relative; overflow: hidden;
}
.loc-service-pill::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(201,168,130,0.08), rgba(201,168,130,0.03));
  opacity: 0; transition: opacity 0.3s;
}
.loc-service-pill:hover {
  border-color: var(--gold);
  transform: translateX(4px);
  box-shadow: 0 4px 20px rgba(201,168,130,0.12);
}
.loc-service-pill:hover::before { opacity: 1; }
.loc-service-pill-arrow {
  color: var(--gold); font-size: 0.72rem;
  transition: transform 0.3s var(--spring);
  margin-left: auto;
}
.loc-service-pill:hover .loc-service-pill-arrow { transform: translateX(4px); }

/* ---- REVIEW SECTION DARK ---- */
.review-grid-dark {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 1.25rem;
}
@media(max-width:1024px) { .review-grid-dark { grid-template-columns:1fr!important; } }

/* ---- PAGE TRANSITIONS (GSAP controlled) ---- */
.page-transition-overlay {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--charcoal);
  transform: scaleY(0); transform-origin: bottom;
  pointer-events: none;
}

/* ---- LOCATION TWO COL ---- */
.loc-two-col {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 5rem; align-items: start;
}
@media(max-width:1024px) {
  .loc-two-col { grid-template-columns: 1fr !important; gap: 2.5rem !important; }
}

/* ---- CONTENT SECTION LAYOUT ---- */
.content-with-sidebar {
  display: grid; grid-template-columns: 1fr 380px;
  gap: 5rem; align-items: start;
}
@media(max-width:1200px) {
  .content-with-sidebar { grid-template-columns: 1fr 320px; gap: 3rem; }
}
@media(max-width:1024px) {
  .content-with-sidebar { grid-template-columns: 1fr !important; gap: 2.5rem !important; }
}

/* ---- THREE BENEFIT COLS ---- */
.three-benefits {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 1.5rem;
}
@media(max-width:1024px) { .three-benefits { grid-template-columns:1fr!important; } }

/* ---- ENSURE FOOTER NOT PUSHED DOWN BY MOB BAR ---- */
@media(max-width:768px) {
  body { padding-bottom: 80px; }
}

/* ============================================================
   VIDEO REVIEW SECTION — Premium cinema-style
   ============================================================ */
.video-review-section { position: relative; }
.video-review-section::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,168,130,0.25), transparent);
}

.video-review-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: center;
}
@media (max-width: 1024px) {
  .video-review-layout { grid-template-columns: 1fr !important; gap: 2.5rem; }
}

/* Double-bezel video frame — premium look */
.video-outer-shell {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(201,168,130,0.18);
  border-radius: 26px;
  padding: 6px;
  box-shadow:
    0 0 0 1px rgba(201,168,130,0.06),
    0 32px 64px rgba(0,0,0,0.45),
    inset 0 1px 1px rgba(255,255,255,0.06);
}
.video-inner-core {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 9/16;
  background: var(--charcoal-2);
  max-height: 580px;
}
@media (max-width: 768px) {
  .video-inner-core { max-height: 420px; }
}

/* Play overlay */
.video-play-overlay {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  transition: opacity 0.4s var(--ease);
  z-index: 2;
}
.video-play-bg {
  position: absolute; inset: 0;
  background: linear-gradient(
    to top,
    rgba(15,10,6,0.8) 0%,
    rgba(15,10,6,0.3) 50%,
    rgba(15,10,6,0.2) 100%
  );
}
.video-play-btn {
  position: relative; z-index: 3;
  width: 74px; height: 74px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  color: var(--charcoal);
  box-shadow: 0 8px 40px rgba(201,168,130,0.45), 0 0 0 0 rgba(201,168,130,0.3);
  transition: all 0.35s var(--spring);
  animation: playPulse 2.8s ease-in-out infinite;
}
@keyframes playPulse {
  0%,100% { box-shadow: 0 8px 40px rgba(201,168,130,0.45), 0 0 0 0 rgba(201,168,130,0.25); }
  50%     { box-shadow: 0 8px 40px rgba(201,168,130,0.45), 0 0 0 18px rgba(201,168,130,0); }
}
.video-play-btn:hover {
  transform: scale(1.1);
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
  animation: none;
  box-shadow: 0 12px 48px rgba(201,168,130,0.6);
}
.video-play-label {
  position: relative; z-index: 3;
  display: flex; flex-direction: column; align-items: center;
  gap: 0.4rem; margin-top: 1.25rem;
}
.video-lang-badge {
  background: rgba(201,168,130,0.15);
  border: 1px solid rgba(201,168,130,0.3);
  border-radius: var(--radius-pill);
  padding: 0.3rem 0.85rem;
  font-size: 0.68rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--gold);
  backdrop-filter: blur(8px);
}
.video-duration {
  font-size: 0.65rem; color: rgba(253,250,247,0.55);
  letter-spacing: 0.08em; text-transform: uppercase;
}

/* Context card */
.video-review-context { display: flex; flex-direction: column; gap: 1.5rem; }
.video-review-quote-mark {
  font-family: var(--font-serif); font-size: 5rem; line-height: 1;
  color: rgba(201,168,130,0.2); margin-bottom: -1.5rem;
  font-style: italic; font-weight: 400;
}
.video-review-quote {
  font-family: var(--font-alt); font-style: italic;
  font-size: 1.1rem; color: rgba(253,250,247,0.82);
  line-height: 1.78; margin: 0;
  border-left: 2px solid rgba(201,168,130,0.3);
  padding-left: 1.25rem;
}
.video-review-meta {
  display: flex; align-items: center; gap: 0.9rem;
  padding: 1.1rem 1.35rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(201,168,130,0.12);
  border-radius: var(--radius-md);
}
.video-review-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, rgba(201,168,130,0.2), rgba(201,168,130,0.06));
  border: 1px solid rgba(201,168,130,0.22);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; flex-shrink: 0;
}
.video-review-name {
  font-size: 0.9rem; font-weight: 600; color: var(--cream);
}
.video-review-service {
  font-size: 0.72rem; color: var(--footer-text); margin-top: 1px;
}
.video-review-stars {
  color: var(--star); font-size: 0.78rem; margin-top: 3px; letter-spacing: 0.05em;
}
.video-review-tags {
  display: flex; flex-wrap: wrap; gap: 0.5rem;
}
.v-tag {
  background: rgba(201,168,130,0.07);
  border: 1px solid rgba(201,168,130,0.18);
  border-radius: var(--radius-pill);
  padding: 0.28rem 0.8rem;
  font-size: 0.66rem; font-weight: 500;
  color: rgba(201,168,130,0.8); letter-spacing: 0.05em;
}
.video-review-cta { margin-top: 0.5rem; }

/* ============================================================
   PRICING SECTION
   ============================================================ */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 2.5rem;
}
@media (max-width: 1024px) { .pricing-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 640px)  { .pricing-grid { grid-template-columns: 1fr; } }

.price-card {
  background: var(--white);
  border: 1px solid rgba(201,168,130,0.2);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  display: flex; flex-direction: column;
  position: relative; overflow: hidden;
  transition: all 0.4s var(--ease);
}
.price-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0; transition: opacity 0.4s;
}
.price-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-gold);
  border-color: rgba(201,168,130,0.4);
}
.price-card:hover::before { opacity: 1; }

.price-card-icon {
  width: 48px; height: 48px;
  background: linear-gradient(135deg, var(--gold-pale), var(--beige));
  border: 1px solid rgba(201,168,130,0.2);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.1rem;
  transition: all 0.4s;
}
.price-card-icon svg { width: 22px; height: 22px; stroke: var(--gold-dark); }
.price-card:hover .price-card-icon {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
}
.price-card:hover .price-card-icon svg { stroke: var(--charcoal); }

.price-card-body { flex: 1; }
.price-card-name {
  font-family: var(--font-serif);
  font-size: 1.1rem; font-weight: 500;
  color: var(--charcoal); margin-bottom: 0.4rem; line-height: 1.3;
}
.price-card-desc {
  font-size: 0.82rem; color: var(--text-warm);
  line-height: 1.65; font-weight: 300; margin-bottom: 1.25rem;
}
.price-card-price {
  font-family: var(--font-serif);
  font-size: 2.2rem; font-weight: 400;
  color: var(--gold); line-height: 1;
  margin-bottom: 1.1rem;
}
.price-card-btn {
  display: flex; align-items: center; justify-content: center;
  padding: 0.7rem 1rem;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: var(--charcoal);
  border-radius: var(--radius-pill);
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  text-decoration: none;
  transition: all 0.35s var(--spring);
}
.price-card-btn:hover {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  transform: scale(1.03);
}

/* SPECIAL OFFER BANNER */
.special-offer-banner {
  display: flex; align-items: center;
  gap: 2rem; flex-wrap: wrap;
  background: linear-gradient(135deg, var(--charcoal) 0%, #2a1508 50%, var(--charcoal) 100%);
  border: 1px solid rgba(201,168,130,0.25);
  border-radius: var(--radius-xl);
  padding: 2.25rem 2.75rem;
  position: relative; overflow: hidden;
}
.special-offer-banner::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.special-offer-banner::after {
  content: '';
  position: absolute; top: -40%; right: -5%;
  width: 250px; height: 250px;
  background: radial-gradient(circle, rgba(201,168,130,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.sob-left {
  display: flex; flex-direction: column; align-items: center;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: var(--radius-lg);
  padding: 1.25rem 1.5rem;
  flex-shrink: 0;
}
.sob-pct {
  font-family: var(--font-serif);
  font-size: 3.5rem; font-weight: 400;
  color: var(--charcoal); line-height: 1;
}
.sob-pct span { font-size: 1.5rem; }
.sob-label {
  font-size: 0.72rem; font-weight: 800;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--charcoal); opacity: 0.7;
}
.sob-mid { flex: 1; min-width: 200px; }
.sob-tag {
  display: inline-flex;
  background: rgba(201,168,130,0.1);
  border: 1px solid rgba(201,168,130,0.2);
  border-radius: var(--radius-pill);
  padding: 0.25rem 0.85rem;
  font-size: 0.65rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 0.65rem;
}
.sob-title {
  font-family: var(--font-serif);
  font-size: 1.4rem; font-weight: 500;
  color: var(--cream); margin-bottom: 0.4rem; line-height: 1.3;
}
.sob-title span { color: var(--gold); }
.sob-sub {
  font-size: 0.84rem; color: var(--footer-text);
  line-height: 1.6; font-weight: 300;
}
.sob-right { flex-shrink: 0; text-align: center; }

/* ============================================================
   PRICING SECTION v2 — Clean & Premium
   ============================================================ */
.pricing-v2 { padding: 6rem 0; background: var(--cream); }

.pricing-offer-banner {
  background: linear-gradient(135deg, var(--charcoal) 0%, #220e04 50%, var(--charcoal) 100%);
  border: 1px solid rgba(201,168,130,0.22);
  border-radius: var(--radius-xl);
  padding: 2rem 2.5rem;
  margin-bottom: 3rem;
  display: flex; align-items: center; gap: 2rem; flex-wrap: wrap;
  position: relative; overflow: hidden;
}
.pricing-offer-banner::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,168,130,0.5), transparent);
}
.pob-badge {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  border-radius: var(--radius-md);
  padding: 1rem 1.35rem;
  text-align: center; flex-shrink: 0;
  min-width: 90px;
}
.pob-badge-num {
  font-family: var(--font-serif);
  font-size: 2.6rem; font-weight: 400;
  color: var(--charcoal); line-height: 1;
}
.pob-badge-num sup { font-size: 1.2rem; }
.pob-badge-off {
  font-size: 0.58rem; font-weight: 800;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--charcoal); opacity: 0.65;
}
.pob-text { flex: 1; min-width: 160px; }
.pob-eyebrow {
  display: inline-flex;
  background: rgba(201,168,130,0.1);
  border: 1px solid rgba(201,168,130,0.18);
  border-radius: 100px;
  padding: 0.18rem 0.7rem;
  font-size: 0.6rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 0.45rem;
}
.pob-title {
  font-family: var(--font-serif);
  font-size: 1.25rem; font-weight: 500;
  color: var(--cream); margin-bottom: 0.25rem; line-height: 1.25;
}
.pob-title strong { color: var(--gold); font-weight: 500; }
.pob-sub {
  font-size: 0.82rem; color: rgba(253,250,247,0.45);
  font-weight: 300; line-height: 1.5;
}
@media (max-width: 640px) {
  .pricing-offer-banner { flex-direction: column; text-align: center; padding: 1.5rem; gap: 1.25rem; }
  .pob-text { text-align: left; }
  .pricing-offer-banner .btn { width: 100%; justify-content: center; }
}

/* Cards grid */
.pc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.1rem;
  margin-bottom: 1.25rem;
}
@media (max-width: 1024px) { .pc-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px)  { .pc-grid { grid-template-columns: 1fr; } }

.pc {
  background: var(--white);
  border: 1px solid rgba(201,168,130,0.16);
  border-radius: var(--radius-lg);
  padding: 1.6rem;
  display: flex; flex-direction: column;
  position: relative; overflow: hidden;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s;
}
.pc::after {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0; transition: opacity 0.35s;
}
.pc:hover { transform: translateY(-5px); box-shadow: 0 16px 40px rgba(201,168,130,0.14); border-color: rgba(201,168,130,0.35); }
.pc:hover::after { opacity: 1; }
.pc.featured { background: var(--charcoal); border-color: rgba(201,168,130,0.25); }
.pc.featured::after { opacity: 1; }

.pc-featured-tag {
  display: inline-flex; width: fit-content;
  background: rgba(201,168,130,0.1);
  border: 1px solid rgba(201,168,130,0.2);
  border-radius: 100px;
  padding: 0.18rem 0.65rem;
  font-size: 0.58rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 0.8rem;
}
.pc-icon {
  width: 42px; height: 42px;
  background: rgba(201,168,130,0.08);
  border: 1px solid rgba(201,168,130,0.15);
  border-radius: 11px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1rem;
  transition: background 0.3s;
}
.pc-icon svg { width: 19px; height: 19px; stroke: var(--gold-dark); transition: stroke 0.3s; }
.pc.featured .pc-icon svg { stroke: var(--gold); }
.pc:hover .pc-icon { background: linear-gradient(135deg, var(--gold), var(--gold-dark)); }
.pc:hover .pc-icon svg { stroke: var(--charcoal); }
.pc.featured:hover .pc-icon svg { stroke: var(--charcoal); }

.pc-name {
  font-family: var(--font-serif);
  font-size: 1rem; font-weight: 500; line-height: 1.3;
  color: var(--charcoal); margin-bottom: 0.35rem;
}
.pc.featured .pc-name { color: var(--cream); }

.pc-desc {
  font-size: 0.78rem; color: var(--text-warm);
  line-height: 1.65; font-weight: 300; flex: 1;
  margin-bottom: 1rem;
}
.pc.featured .pc-desc { color: rgba(253,250,247,0.5); }

.pc-price {
  font-family: var(--font-serif);
  font-size: 1.9rem; font-weight: 400;
  color: var(--gold); line-height: 1;
  margin-bottom: 1rem;
}

.pc-btn {
  display: flex; align-items: center; justify-content: center;
  padding: 0.62rem 1rem;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: var(--charcoal);
  border-radius: 100px;
  font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s var(--spring);
}
.pc-btn:hover { background: linear-gradient(135deg, var(--gold-light), var(--gold)); transform: scale(1.03); }

/* Bottom strip */
.pc-bottom-strip {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1rem; margin-top: 0.25rem;
}
.pc-strip-item {
  background: var(--beige);
  border: 1px solid rgba(201,168,130,0.15);
  border-radius: var(--radius-md);
  padding: 1.1rem 1.25rem;
  display: flex; align-items: center; gap: 0.75rem;
}
.pc-strip-icon { font-size: 1.35rem; flex-shrink: 0; }
.pc-strip-text { font-size: 0.8rem; color: var(--text-warm); line-height: 1.5; font-weight: 300; }
.pc-strip-text a { color: var(--gold-dark); font-weight: 600; text-decoration: none; }
.pc-strip-item.dark { background: var(--charcoal); border-color: rgba(201,168,130,0.15); }
.pc-strip-item.dark .pc-strip-text { color: rgba(253,250,247,0.6); }
.pc-strip-item.dark .pc-strip-text a { color: var(--gold); }
@media (max-width: 640px) {
  .pc-bottom-strip { grid-template-columns: 1fr; }
}


/* ============================================================
   COURSE SECTION ISOLATION
   Ensures the course div layout never gets clipped
   ============================================================ */
div[style*="background:#181410"] {
  /* No overflow restriction on course div */
}
/* Guarantee float layouts work inside dark divs */
div[style*="float:right"] {
  position: relative;
}
