/* =====================================================================
   DEEPAK CHOPRA — Luxury Wellness Rebuild
   Design system: Cosmic plum night + Sunrise-gold accents (from logo)
   Vanilla CSS · Glassmorphism · Parallax · 3D · Scroll animations
   ===================================================================== */

/* ----------  Design Tokens  ---------- */
:root {
  /* Sunrise accent (derived from brand logo gradient) */
  --gold: #F5A524;
  --orange: #F97316;
  --coral: #E8452F;
  --sunrise: linear-gradient(135deg, #F7B733 0%, #F97316 48%, #E8452F 100%);
  --sunrise-soft: linear-gradient(135deg, rgba(247,183,51,.18), rgba(232,69,47,.14));

  /* Cosmic night base */
  --ink: #0B0810;
  --ink-2: #120D18;
  --plum: #1A1222;
  --plum-2: #241730;
  --violet: #7C5CBF;
  --violet-glow: rgba(124, 92, 191, .35);

  /* Light / text */
  --cream: #F7F0E6;
  --cream-dim: #D9CFC2;
  --muted: #9E9384;
  --muted-2: #7C7263;
  --line: rgba(247, 240, 230, .12);
  --line-strong: rgba(247, 240, 230, .22);

  /* Glass */
  --glass: rgba(247, 240, 230, .05);
  --glass-2: rgba(247, 240, 230, .08);
  --glass-brd: rgba(247, 240, 230, .14);

  /* Type */
  --serif: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
  --sans: 'Manrope', 'Helvetica Neue', Arial, sans-serif;

  /* Layout */
  --container: 1240px;
  --radius: 22px;
  --radius-sm: 14px;
  --shadow: 0 30px 80px -30px rgba(0,0,0,.7), 0 8px 24px -8px rgba(0,0,0,.5);
  --shadow-gold: 0 20px 60px -18px rgba(249,115,22,.45);

  /* Z-scale */
  --z-bg: 0; --z-base: 10; --z-sticky: 30; --z-nav: 50; --z-modal: 80; --z-toast: 90;

  --ease: cubic-bezier(.22,.61,.36,1);
}

/* ----------  Reset / Base  ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.7;
  color: var(--cream-dim);
  background: var(--ink);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; margin: 0; padding: 0; }
h1,h2,h3,h4 { font-family: var(--serif); color: var(--cream); font-weight: 600; line-height: 1.08; margin: 0 0 .4em; letter-spacing: .3px; }
p { margin: 0 0 1.1em; }
::selection { background: rgba(249,115,22,.35); color: #fff; }

/* Cosmic ambient background */
body::before {
  content: ""; position: fixed; inset: 0; z-index: -2; pointer-events: none;
  background:
    radial-gradient(circle at 15% 12%, rgba(124,92,191,.16), transparent 42%),
    radial-gradient(circle at 88% 8%, rgba(249,115,22,.14), transparent 40%),
    radial-gradient(circle at 50% 120%, rgba(232,69,47,.12), transparent 55%),
    var(--ink);
}
body::after {
  content: ""; position: fixed; inset: 0; z-index: -1; pointer-events: none; opacity: .5;
  background-image: radial-gradient(rgba(247,240,230,.5) 1px, transparent 1px);
  background-size: 3px 3px; mix-blend-mode: overlay; opacity: .04;
}

/* ----------  Layout helpers  ---------- */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.section { position: relative; padding: clamp(72px, 10vw, 140px) 0; }
.section--tight { padding: clamp(48px, 6vw, 84px) 0; }
.center { text-align: center; }
.eyebrow {
  font-family: var(--sans); font-size: 12.5px; font-weight: 700; letter-spacing: 3.5px;
  text-transform: uppercase; color: var(--gold);
  display: inline-flex; align-items: center; gap: 10px; margin-bottom: 18px;
}
.eyebrow::before { content: ""; width: 26px; height: 1px; background: var(--sunrise); display: inline-block; }
.eyebrow.center-line::after { content: ""; width: 26px; height: 1px; background: var(--sunrise); display: inline-block; }
.h-display { font-size: clamp(2.6rem, 6vw, 5rem); font-weight: 500; }
.h-section { font-size: clamp(2rem, 4vw, 3.4rem); font-weight: 500; }
.lead { font-size: clamp(1.05rem, 1.6vw, 1.28rem); color: var(--cream-dim); max-width: 62ch; }
.text-grad { background: var(--sunrise); -webkit-background-clip: text; background-clip: text; color: transparent; }
.max-60 { max-width: 60ch; } .mx-auto { margin-left: auto; margin-right: auto; }

/* ----------  Buttons  ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 15px 30px; border-radius: 100px; font-weight: 700; font-size: 15px;
  letter-spacing: .3px; cursor: pointer; position: relative; overflow: hidden;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), color .3s;
  will-change: transform;
}
.btn svg { width: 18px; height: 18px; }
.btn--primary { background: var(--sunrise); color: #1a0d02; box-shadow: var(--shadow-gold); }
.btn--primary::after {
  content: ""; position: absolute; inset: 0; background: linear-gradient(135deg, #ffd67a, #ff7a45);
  opacity: 0; transition: opacity .3s;
}
.btn--primary span, .btn--primary svg { position: relative; z-index: 1; }
.btn--primary:hover { transform: translateY(-3px); box-shadow: 0 26px 70px -18px rgba(249,115,22,.7); }
.btn--primary:hover::after { opacity: 1; }
.btn--ghost { background: var(--glass); color: var(--cream); border: 1px solid var(--glass-brd); backdrop-filter: blur(8px); }
.btn--ghost:hover { transform: translateY(-3px); border-color: var(--gold); color: #fff; background: var(--glass-2); }
.btn--sm { padding: 11px 22px; font-size: 13.5px; }
.btn:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }

/* ----------  Top Bar  ---------- */
.topbar {
  background: linear-gradient(90deg, var(--plum), var(--plum-2));
  border-bottom: 1px solid var(--line);
  font-size: 13px; color: var(--muted); position: relative; z-index: var(--z-sticky);
}
.topbar__inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; height: 42px; }
.topbar__contact { display: flex; gap: 22px; align-items: center; }
.topbar__contact a { display: inline-flex; gap: 7px; align-items: center; transition: color .2s; }
.topbar__contact a:hover { color: var(--gold); }
.topbar__contact svg { width: 14px; height: 14px; color: var(--gold); }
.topbar__social { display: flex; gap: 6px; align-items: center; }
.topbar__social a {
  width: 30px; height: 30px; display: grid; place-items: center; border-radius: 50%;
  color: var(--cream-dim); transition: all .25s var(--ease);
}
.topbar__social a:hover { background: var(--sunrise); color: #1a0d02; transform: translateY(-2px); }
.topbar__social svg { width: 15px; height: 15px; }

/* ----------  Navbar  ---------- */
.nav {
  position: sticky; top: 0; z-index: var(--z-nav);
  transition: background .4s var(--ease), backdrop-filter .4s, box-shadow .4s, padding .4s;
  padding: 18px 0;
}
.nav.scrolled {
  background: rgba(11,8,16,.72); backdrop-filter: blur(18px) saturate(140%);
  box-shadow: 0 10px 40px -20px rgba(0,0,0,.8); border-bottom: 1px solid var(--line); padding: 10px 0;
}
.nav__inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.nav__logo img { height: 40px; width: auto; transition: height .4s; }
.nav.scrolled .nav__logo img { height: 34px; }
.nav__menu { display: flex; gap: 4px; align-items: center; }
.nav__menu a {
  padding: 10px 15px; font-size: 14.5px; font-weight: 600; color: var(--cream-dim);
  border-radius: 10px; position: relative; transition: color .25s;
}
.nav__menu a::after {
  content: ""; position: absolute; left: 15px; right: 15px; bottom: 6px; height: 1.5px;
  background: var(--sunrise); transform: scaleX(0); transform-origin: left; transition: transform .3s var(--ease);
}
.nav__menu a:hover, .nav__menu a[aria-current="page"] { color: #fff; }
.nav__menu a:hover::after, .nav__menu a[aria-current="page"]::after { transform: scaleX(1); }
.nav__actions { display: flex; align-items: center; gap: 12px; }
.nav__toggle { display: none; width: 44px; height: 44px; border-radius: 12px; color: var(--cream); }
.nav__toggle svg { width: 26px; height: 26px; margin: auto; }

/* Mobile drawer */
.drawer {
  position: fixed; inset: 0 0 0 auto; width: min(88vw, 380px); z-index: var(--z-modal);
  background: linear-gradient(160deg, var(--plum), var(--ink)); border-left: 1px solid var(--line);
  transform: translateX(100%); transition: transform .45s var(--ease); padding: 90px 30px 40px;
  overflow-y: auto; box-shadow: var(--shadow);
}
.drawer.open { transform: translateX(0); }
.drawer a { display: block; padding: 15px 4px; font-family: var(--serif); font-size: 1.5rem; color: var(--cream); border-bottom: 1px solid var(--line); }
.drawer a:hover { color: var(--gold); padding-left: 10px; transition: all .25s; }
.drawer__close { position: absolute; top: 24px; right: 24px; width: 44px; height: 44px; color: var(--cream); }
.drawer__close svg { width: 26px; height: 26px; margin: auto; }
.scrim { position: fixed; inset: 0; background: rgba(5,3,8,.6); backdrop-filter: blur(3px); z-index: var(--z-modal); opacity: 0; visibility: hidden; transition: .35s; }
.scrim.open { opacity: 1; visibility: visible; }

/* ----------  Hero  ---------- */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; padding: 60px 0; overflow: hidden; isolation: isolate; }
.hero .container { position: relative; z-index: 3; }
.hero__parallax { position: absolute; inset: -10% 0; z-index: 0; }

/* Cinematic hero video — clean lotus + gold-dust loop (from original site) */
.hero__video-wrap { position: absolute; left: 0; right: 0; top: -12%; height: 124%; z-index: 0; overflow: hidden; }
.hero__video { width: 100%; height: 100%; object-fit: cover; animation: kenburns 18s ease-in-out infinite alternate; }
@keyframes kenburns { from { transform: scale(1.04); } to { transform: scale(1.13); } }
.hero__overlay {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background:
    linear-gradient(95deg, rgba(11,8,16,.95) 0%, rgba(11,8,16,.85) 28%, rgba(11,8,16,.5) 50%, rgba(11,8,16,.12) 76%, rgba(11,8,16,.34) 100%),
    radial-gradient(120% 85% at 50% 0%, transparent 46%, rgba(11,8,16,.5) 100%),
    linear-gradient(0deg, var(--ink) 1%, transparent 34%);
}
.hero__portrait {
  position: absolute; right: -2%; bottom: 0; height: 108%; width: auto; z-index: -1;
  filter: drop-shadow(0 40px 80px rgba(0,0,0,.6)); -webkit-mask-image: linear-gradient(to right, transparent, #000 22%);
  mask-image: linear-gradient(to right, transparent, #000 22%);
}
.hero__orb {
  position: absolute; border-radius: 50%; filter: blur(60px); opacity: .5; z-index: 2; pointer-events: none;
  animation: float 14s ease-in-out infinite; mix-blend-mode: screen;
}
.hero__orb--1 { width: 520px; height: 520px; background: radial-gradient(circle, rgba(249,115,22,.5), transparent 70%); top: -8%; left: -6%; }
.hero__orb--2 { width: 420px; height: 420px; background: radial-gradient(circle, rgba(124,92,191,.45), transparent 70%); bottom: -10%; left: 30%; animation-delay: -5s; }
.hero__content { max-width: 680px; position: relative; }
.hero h1 { margin-bottom: .3em; }
.hero .lead { margin-bottom: 34px; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 16px; align-items: center; }
.hero__stats { display: flex; gap: 40px; margin-top: 60px; flex-wrap: wrap; }
.hero__stat .num { font-family: var(--serif); font-size: 2.6rem; color: var(--cream); line-height: 1; }
.hero__stat .lbl { font-size: 13px; color: var(--muted); letter-spacing: .5px; }
.scroll-hint { position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%); color: var(--muted); font-size: 11px; letter-spacing: 2px; text-transform: uppercase; display: flex; flex-direction: column; align-items: center; gap: 8px; }
.scroll-hint span { width: 1px; height: 40px; background: linear-gradient(var(--gold), transparent); animation: scrolldot 2s infinite; }

/* ----------  Marquee / logos strip  ---------- */
.marquee { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 26px 0; overflow: hidden; background: rgba(18,13,24,.5); }
.marquee__track { display: flex; gap: 64px; width: max-content; animation: marquee 32s linear infinite; align-items: center; }
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__item { font-family: var(--serif); font-size: 1.5rem; color: var(--muted); white-space: nowrap; font-style: italic; }
.marquee__item::after { content: "✦"; margin-left: 64px; color: var(--gold); font-size: 1rem; }

/* ----------  Cards / grids  ---------- */
.grid { display: grid; gap: 26px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.glass {
  background: var(--glass); border: 1px solid var(--glass-brd); border-radius: var(--radius);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
}

/* Program / offering card with 3D tilt */
.card {
  position: relative; border-radius: var(--radius); overflow: hidden; background: var(--ink-2);
  border: 1px solid var(--line); box-shadow: var(--shadow); transform-style: preserve-3d;
  transition: transform .4s var(--ease), box-shadow .4s, border-color .4s;
}
.card:hover { border-color: var(--line-strong); box-shadow: var(--shadow), var(--shadow-gold); }
.card__media { position: relative; aspect-ratio: 4/3; overflow: hidden; }
.card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.card:hover .card__media img { transform: scale(1.08); }
.card__media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(11,8,16,.9), transparent 55%); }
.card__tag { position: absolute; top: 14px; left: 14px; z-index: 2; padding: 6px 13px; border-radius: 100px; font-size: 11px; font-weight: 700; letter-spacing: .8px; text-transform: uppercase; background: rgba(11,8,16,.6); border: 1px solid var(--glass-brd); backdrop-filter: blur(8px); color: var(--gold); }
.card__body { padding: 26px; transform: translateZ(30px); }
.card__body h3 { font-size: 1.55rem; margin-bottom: .3em; }
.card__body p { font-size: 15px; color: var(--muted); margin-bottom: 1em; }
.card__link { display: inline-flex; align-items: center; gap: 8px; font-weight: 700; font-size: 14px; color: var(--gold); }
.card__link svg { width: 16px; height: 16px; transition: transform .3s; }
.card:hover .card__link svg { transform: translateX(5px); }

/* Feature / value tiles */
.tile { padding: 34px 30px; border-radius: var(--radius); border: 1px solid var(--line); background: var(--glass); backdrop-filter: blur(10px); transition: transform .4s var(--ease), border-color .4s, background .4s; }
.tile:hover { transform: translateY(-6px); border-color: var(--gold); background: var(--glass-2); }
.tile__ic { width: 56px; height: 56px; border-radius: 16px; display: grid; place-items: center; background: var(--sunrise-soft); border: 1px solid var(--glass-brd); margin-bottom: 20px; color: var(--gold); }
.tile__ic svg { width: 26px; height: 26px; }
.tile h3 { font-size: 1.4rem; }
.tile p { font-size: 15px; color: var(--muted); margin: 0; }

/* Split feature */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(30px, 5vw, 80px); align-items: center; }
.split__media { position: relative; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.split__media img { width: 100%; height: 100%; object-fit: cover; }
.split__media::before { content: ""; position: absolute; inset: 0; z-index: 1; background: linear-gradient(120deg, transparent, rgba(124,92,191,.12)); }
.reverse .split__media { order: 2; }

/* ----------  Google Reviews  ---------- */
.reviews__head { display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between; gap: 24px; margin-bottom: 40px; }
.gscore { display: flex; align-items: center; gap: 16px; }
.gscore__badge { display: flex; align-items: center; gap: 12px; padding: 14px 20px; border-radius: 16px; background: var(--glass); border: 1px solid var(--glass-brd); backdrop-filter: blur(10px); }
.gscore__num { font-family: var(--serif); font-size: 2.4rem; color: var(--cream); line-height: 1; }
.gscore__stars { color: var(--gold); font-size: 15px; letter-spacing: 2px; }
.gscore__meta { font-size: 12.5px; color: var(--muted); }
.gscore__g { width: 26px; height: 26px; }

.rev-tabs { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 34px; justify-content: center; }
.rev-tab { padding: 10px 20px; border-radius: 100px; font-size: 14px; font-weight: 600; color: var(--cream-dim); border: 1px solid var(--line); background: var(--glass); transition: all .3s var(--ease); }
.rev-tab:hover { border-color: var(--line-strong); color: #fff; }
.rev-tab.active { background: var(--sunrise); color: #1a0d02; border-color: transparent; box-shadow: var(--shadow-gold); }

.review-card { padding: 28px; border-radius: var(--radius); background: var(--ink-2); border: 1px solid var(--line); transition: transform .4s var(--ease), border-color .4s; height: 100%; }
.review-card:hover { transform: translateY(-6px); border-color: var(--line-strong); }
.review-card__top { display: flex; align-items: center; gap: 14px; margin-bottom: 16px; }
.review-card__av { width: 46px; height: 46px; border-radius: 50%; display: grid; place-items: center; font-weight: 700; color: #1a0d02; background: var(--sunrise); font-size: 16px; }
.review-card__name { font-weight: 700; color: var(--cream); font-size: 15px; }
.review-card__date { font-size: 12.5px; color: var(--muted); }
.review-card__stars { color: var(--gold); letter-spacing: 1px; margin-left: auto; font-size: 14px; }
.review-card p { font-size: 15px; color: var(--cream-dim); margin: 0; }
.review-card__cat { display: inline-block; margin-top: 16px; font-size: 11.5px; font-weight: 700; letter-spacing: .6px; text-transform: uppercase; color: var(--gold); }

/* ----------  Testimonial feature quote  ---------- */
.quote { max-width: 900px; margin: 0 auto; text-align: center; }
.quote__mark { font-family: var(--serif); font-size: 6rem; line-height: .5; color: var(--gold); opacity: .5; }
.quote blockquote { font-family: var(--serif); font-size: clamp(1.6rem, 3.2vw, 2.6rem); font-weight: 500; color: var(--cream); font-style: italic; margin: 0 0 24px; }

/* ----------  Stats band  ---------- */
.stats-band { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.stat { text-align: center; padding: 30px 16px; border-radius: var(--radius); border: 1px solid var(--line); background: var(--glass); }
.stat .num { font-family: var(--serif); font-size: clamp(2.4rem,4vw,3.4rem); background: var(--sunrise); -webkit-background-clip: text; background-clip: text; color: transparent; line-height: 1; }
.stat .lbl { font-size: 13.5px; color: var(--muted); margin-top: 8px; letter-spacing: .4px; }

/* ----------  CTA band  ---------- */
.cta-band { position: relative; overflow: hidden; border-radius: clamp(24px,4vw,40px); padding: clamp(50px,7vw,90px) clamp(30px,5vw,70px); text-align: center; border: 1px solid var(--glass-brd); background: linear-gradient(160deg, var(--plum-2), var(--ink)); }
.cta-band::before { content: ""; position: absolute; width: 600px; height: 600px; border-radius: 50%; background: radial-gradient(circle, rgba(249,115,22,.25), transparent 70%); top: -40%; left: 50%; transform: translateX(-50%); filter: blur(40px); }
.cta-band > * { position: relative; }

/* ----------  Inquiry form  ---------- */
.form-wrap { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(30px,5vw,70px); align-items: center; }
.form { padding: clamp(28px,4vw,44px); border-radius: var(--radius); background: var(--glass); border: 1px solid var(--glass-brd); backdrop-filter: blur(14px); box-shadow: var(--shadow); }
.field { margin-bottom: 18px; }
.field label { display: block; font-size: 13px; font-weight: 600; color: var(--cream-dim); margin-bottom: 8px; letter-spacing: .3px; }
.field input, .field select, .field textarea {
  width: 100%; padding: 14px 16px; border-radius: 12px; background: rgba(11,8,16,.5);
  border: 1px solid var(--line-strong); color: var(--cream); font-family: inherit; font-size: 15px; transition: border-color .25s, box-shadow .25s;
}
.field textarea { resize: vertical; min-height: 120px; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(249,115,22,.15); }
.field input::placeholder, .field textarea::placeholder { color: var(--muted-2); }
.field.invalid input, .field.invalid select, .field.invalid textarea { border-color: var(--coral); }
.field__err { display: none; color: #ff8a6a; font-size: 12.5px; margin-top: 6px; }
.field.invalid .field__err { display: block; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form__success { display: none; text-align: center; padding: 20px; border-radius: 14px; background: rgba(90,180,120,.12); border: 1px solid rgba(120,200,150,.35); color: #b7ecc6; font-weight: 600; margin-top: 8px; }
.form__success.show { display: block; }

/* ----------  FAQ / accordion  ---------- */
.acc { border-top: 1px solid var(--line); }
.acc__item { border-bottom: 1px solid var(--line); }
.acc__q { width: 100%; text-align: left; display: flex; justify-content: space-between; align-items: center; gap: 20px; padding: 26px 4px; font-family: var(--serif); font-size: 1.35rem; color: var(--cream); }
.acc__q:hover { color: var(--gold); }
.acc__ic { flex: none; width: 34px; height: 34px; border-radius: 50%; border: 1px solid var(--line-strong); display: grid; place-items: center; transition: transform .35s var(--ease), background .3s, color .3s; }
.acc__ic svg { width: 18px; height: 18px; }
.acc__item.open .acc__ic { transform: rotate(45deg); background: var(--sunrise); color: #1a0d02; border-color: transparent; }
.acc__a { max-height: 0; overflow: hidden; transition: max-height .4s var(--ease); }
.acc__a p { padding: 0 4px 26px; color: var(--muted); margin: 0; max-width: 70ch; }

/* ----------  Footer  ---------- */
.footer { position: relative; padding-top: clamp(70px,8vw,110px); border-top: 1px solid var(--line); background: linear-gradient(180deg, var(--ink), #060409); overflow: hidden; }
.footer__glow { position: absolute; top: -120px; left: 50%; transform: translateX(-50%); width: 700px; height: 300px; background: radial-gradient(ellipse, rgba(249,115,22,.16), transparent 70%); filter: blur(40px); pointer-events: none; }
.footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 40px; position: relative; }
.footer__brand img { height: 44px; margin-bottom: 20px; }
.footer__brand p { color: var(--muted); font-size: 14.5px; max-width: 34ch; }
.footer__social { display: flex; gap: 10px; margin-top: 22px; }
.footer__social a { width: 40px; height: 40px; border-radius: 50%; display: grid; place-items: center; border: 1px solid var(--line-strong); color: var(--cream-dim); transition: all .3s var(--ease); }
.footer__social a:hover { background: var(--sunrise); color: #1a0d02; transform: translateY(-3px); border-color: transparent; }
.footer__social svg { width: 17px; height: 17px; }
.footer__col h4 { font-family: var(--sans); font-size: 13px; letter-spacing: 1.6px; text-transform: uppercase; color: var(--gold); margin-bottom: 20px; }
.footer__col a { display: block; padding: 7px 0; color: var(--cream-dim); font-size: 14.5px; transition: color .2s, padding-left .2s; }
.footer__col a:hover { color: var(--gold); padding-left: 5px; }
.footer__news { display: flex; gap: 8px; margin-top: 14px; }
.footer__news input { flex: 1; padding: 12px 14px; border-radius: 10px; background: rgba(11,8,16,.6); border: 1px solid var(--line-strong); color: var(--cream); font-family: inherit; font-size: 14px; }
.footer__news input:focus { outline: none; border-color: var(--gold); }
.footer__news button { padding: 0 16px; border-radius: 10px; background: var(--sunrise); color: #1a0d02; display: grid; place-items: center; }
.footer__news button svg { width: 18px; height: 18px; }
.footer__bottom { margin-top: clamp(46px,6vw,70px); border-top: 1px solid var(--line); padding: 26px 0; display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px; font-size: 13.5px; color: var(--muted); position: relative; }
.footer__bottom a { color: var(--cream-dim); }
.footer__credit b { color: var(--cream); font-weight: 700; }
.footer__credit b span { background: var(--sunrise); -webkit-background-clip: text; background-clip: text; color: transparent; }

/* ----------  Mobile sticky call/WhatsApp  ---------- */
.sticky-actions { display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: var(--z-toast); padding: 10px 14px calc(10px + env(safe-area-inset-bottom)); background: rgba(11,8,16,.85); backdrop-filter: blur(16px); border-top: 1px solid var(--line); gap: 12px; }
.sticky-actions a { flex: 1; display: flex; align-items: center; justify-content: center; gap: 10px; padding: 14px; border-radius: 14px; font-weight: 700; font-size: 15px; }
.sticky-actions svg { width: 20px; height: 20px; }
.sa-call { background: var(--sunrise); color: #1a0d02; }
.sa-wa { background: #25D366; color: #05270f; }

/* Floating desktop WhatsApp bubble */
.wa-float { position: fixed; right: 24px; bottom: 24px; z-index: var(--z-toast); width: 60px; height: 60px; border-radius: 50%; background: #25D366; display: grid; place-items: center; box-shadow: 0 14px 40px -8px rgba(37,211,102,.6); transition: transform .3s var(--ease); animation: float 4s ease-in-out infinite; }
.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width: 30px; height: 30px; color: #fff; }

/* ----------  Promo modal (Final Chapter)  ---------- */
.promo { position: fixed; inset: 0; z-index: var(--z-toast); display: grid; place-items: center; padding: 20px; opacity: 0; visibility: hidden; transition: opacity .45s var(--ease), visibility .45s; }
.promo.open { opacity: 1; visibility: visible; }
.promo__backdrop { position: absolute; inset: 0; background: rgba(5,3,8,.72); backdrop-filter: blur(7px); -webkit-backdrop-filter: blur(7px); }
.promo__card {
  position: relative; z-index: 1; width: min(860px, 100%); display: grid; grid-template-columns: .82fr 1.18fr;
  border-radius: clamp(18px, 3vw, 26px); overflow: hidden; background: linear-gradient(160deg, var(--plum-2), var(--ink));
  border: 1px solid var(--glass-brd); box-shadow: var(--shadow), var(--shadow-gold);
  transform: translateY(26px) scale(.96); opacity: 0; transition: transform .55s var(--ease), opacity .55s var(--ease);
}
.promo.open .promo__card { transform: none; opacity: 1; }
.promo__media { position: relative; display: grid; place-items: center; padding: 34px 20px; overflow: hidden; background: radial-gradient(120% 90% at 50% 20%, rgba(249,115,22,.28), transparent 65%); }
.promo__media::before { content: ""; position: absolute; width: 320px; height: 320px; border-radius: 50%; background: radial-gradient(circle, rgba(124,92,191,.4), transparent 70%); top: 40%; left: -20%; filter: blur(30px); }
.promo__media img { position: relative; max-height: 320px; width: auto; border-radius: 8px; box-shadow: 0 30px 70px -22px rgba(0,0,0,.85); transform: rotate(-4deg); transition: transform .6s var(--ease); }
.promo__card:hover .promo__media img { transform: rotate(0) translateY(-4px); }
.promo__body { padding: clamp(28px, 4vw, 46px); display: flex; flex-direction: column; justify-content: center; }
.promo__body h3 { font-size: clamp(1.7rem, 3vw, 2.5rem); margin-bottom: .15em; }
.promo__body .sub { color: var(--gold); font-size: 14px; letter-spacing: .5px; margin-bottom: 16px; font-weight: 600; }
.promo__body p { color: var(--muted); font-size: 15px; margin-bottom: 22px; }
.promo__actions { display: flex; flex-wrap: wrap; gap: 12px; }
.promo__close { position: absolute; top: 14px; right: 14px; z-index: 3; width: 42px; height: 42px; border-radius: 50%; background: rgba(11,8,16,.5); border: 1px solid var(--glass-brd); color: var(--cream); display: grid; place-items: center; backdrop-filter: blur(6px); transition: all .25s var(--ease); }
.promo__close:hover { background: var(--sunrise); color: #1a0d02; transform: rotate(90deg); border-color: transparent; }
.promo__close svg { width: 22px; height: 22px; }
@media (max-width: 640px) {
  .promo__card { grid-template-columns: 1fr; max-width: 400px; }
  .promo__media { padding: 30px 20px 6px; }
  .promo__media img { max-height: 220px; }
  .promo__body { padding: 24px 24px 30px; text-align: center; }
  .promo__actions { justify-content: center; }
}
@media (prefers-reduced-motion: reduce) { .promo__card { transition: opacity .2s; transform: none; } }

/* ----------  Page hero (interior)  ---------- */
.page-hero { position: relative; padding: clamp(120px,16vw,180px) 0 clamp(60px,8vw,90px); text-align: center; overflow: hidden; }
.page-hero__orb { position: absolute; width: 500px; height: 500px; border-radius: 50%; background: radial-gradient(circle, rgba(124,92,191,.3), transparent 70%); top: -20%; left: 50%; transform: translateX(-50%); filter: blur(50px); z-index: -1; }
.breadcrumb { display: flex; gap: 10px; justify-content: center; font-size: 13px; color: var(--muted); margin-top: 18px; }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { color: var(--muted-2); }

/* Article list */
.post { display: grid; grid-template-columns: 260px 1fr; gap: 28px; align-items: center; padding: 24px; border-radius: var(--radius); border: 1px solid var(--line); background: var(--glass); transition: transform .4s var(--ease), border-color .4s; }
.post:hover { transform: translateY(-4px); border-color: var(--line-strong); }
.post__media { border-radius: var(--radius-sm); overflow: hidden; aspect-ratio: 16/10; }
.post__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s; }
.post:hover .post__media img { transform: scale(1.06); }
.post__meta { font-size: 12.5px; color: var(--gold); letter-spacing: .6px; text-transform: uppercase; font-weight: 700; margin-bottom: 10px; }
.post h3 { font-size: 1.5rem; margin-bottom: .4em; }
.post p { color: var(--muted); font-size: 15px; margin-bottom: 1em; }

/* Media / video grid */
.video-card { position: relative; border-radius: var(--radius); overflow: hidden; aspect-ratio: 16/9; border: 1px solid var(--line); cursor: pointer; }
.video-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s; }
.video-card:hover img { transform: scale(1.06); }
.video-card__play { position: absolute; inset: 0; display: grid; place-items: center; background: rgba(11,8,16,.35); transition: background .3s; }
.video-card:hover .video-card__play { background: rgba(11,8,16,.15); }
.video-card__play span { width: 68px; height: 68px; border-radius: 50%; background: var(--sunrise); display: grid; place-items: center; box-shadow: var(--shadow-gold); }
.video-card__play svg { width: 26px; height: 26px; color: #1a0d02; margin-left: 3px; }
.video-card__label { position: absolute; left: 18px; bottom: 16px; z-index: 2; font-weight: 700; color: #fff; text-shadow: 0 2px 10px rgba(0,0,0,.6); }

/* Prose */
.prose { max-width: 72ch; margin: 0 auto; }
.prose p { color: var(--cream-dim); }
.prose h2 { margin-top: 1.6em; }
.prose h3 { margin-top: 1.4em; color: var(--gold); font-family: var(--sans); font-size: 1.1rem; letter-spacing: .5px; }

/* ----------  Scroll reveal  ---------- */
[data-reveal] { opacity: 0; transform: translateY(38px); transition: opacity .9s var(--ease), transform .9s var(--ease); will-change: opacity, transform; }
[data-reveal].in { opacity: 1; transform: none; }
[data-reveal-delay="1"] { transition-delay: .1s; }
[data-reveal-delay="2"] { transition-delay: .2s; }
[data-reveal-delay="3"] { transition-delay: .3s; }
[data-reveal-delay="4"] { transition-delay: .4s; }

/* ----------  Keyframes  ---------- */
@keyframes float { 0%,100% { transform: translateY(0) } 50% { transform: translateY(-22px) } }
@keyframes marquee { to { transform: translateX(-50%) } }
@keyframes scrolldot { 0% { opacity: 0; transform: translateY(-10px) } 50% { opacity: 1 } 100% { opacity: 0; transform: translateY(10px) } }
@keyframes spin { to { transform: rotate(360deg) } }

/* ----------  Responsive  ---------- */
@media (max-width: 1024px) {
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 34px; }
  .grid-4 { grid-template-columns: repeat(2,1fr); }
  .stats-band { grid-template-columns: repeat(2,1fr); }
  .hero__portrait { opacity: .35; }
}
@media (max-width: 860px) {
  .nav__menu { display: none; }
  .nav__toggle { display: grid; place-items: center; }
  .nav__actions .btn--primary { display: none; }
  .topbar__contact a span.hide-sm { display: none; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
  .split { grid-template-columns: 1fr; }
  .reverse .split__media { order: 0; }
  .form-wrap { grid-template-columns: 1fr; }
  .post { grid-template-columns: 1fr; }
  .sticky-actions { display: flex; }
  .wa-float { display: none; }
  body { padding-bottom: 74px; }
  .hero__portrait { display: none; }
  .hero { min-height: 86vh; padding: 40px 0 60px; }
  /* stronger scrim so the gold blob never fights the headline on narrow screens */
  .hero__overlay {
    background:
      linear-gradient(180deg, rgba(11,8,16,.78) 0%, rgba(11,8,16,.5) 40%, rgba(11,8,16,.72) 100%),
      radial-gradient(120% 70% at 80% 30%, transparent 30%, rgba(11,8,16,.4) 100%);
  }
}
@media (max-width: 560px) {
  .grid-4, .stats-band, .footer__grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .topbar__contact { gap: 14px; }
  .hero__stats { gap: 26px; }
  .reviews__head { flex-direction: column; align-items: flex-start; }
}

/* ----------  Reduced motion  ---------- */
@media (prefers-reduced-motion: reduce) {
  * { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; scroll-behavior: auto !important; }
  [data-reveal] { opacity: 1 !important; transform: none !important; }
}
