/* ============================================================
   MIRARI Plus — Luxury Hair Restoration Clinic
   Design System & Global Stylesheet
   Palette: Deep Emerald • Champagne Gold • Ivory • Cream
   ============================================================ */

/* ---------- 1. DESIGN TOKENS ---------- */
:root {
  /* Brand colours */
  --emerald-900: #0e2a22;
  --emerald-800: #143a2f;
  --emerald-700: #1b4d3e;   /* primary deep emerald */
  --emerald-600: #235f4d;
  --emerald-500: #2f7560;
  --gold-700:   #9c7a36;
  --gold-600:   #b8923f;
  --gold-500:   #c9a24b;    /* champagne gold */
  --gold-400:   #d8b86a;
  --gold-200:   #ecd9a8;
  --ivory:      #fbf9f4;
  --cream:      #f4efe5;
  --beige:      #ece4d4;
  --warm-grey:  #8a8377;
  --ink:        #20271f;    /* dark green-ink text */
  --ink-soft:   #4a5249;
  --white:      #ffffff;

  /* Semantic */
  --bg:           var(--ivory);
  --bg-alt:       var(--cream);
  --text:         var(--ink);
  --text-soft:    var(--ink-soft);
  --primary:      var(--emerald-700);
  --accent:       var(--gold-500);
  --line:         rgba(28,77,62,0.12);
  --gold-line:    linear-gradient(90deg, transparent, var(--gold-500), transparent);

  /* Typography */
  --font-display: "Cormorant Garamond", "Playfair Display", Georgia, serif;
  --font-heading: "Playfair Display", Georgia, serif;
  --font-body:    "Inter", "DM Sans", system-ui, -apple-system, sans-serif;

  /* Spacing scale */
  --sp-1: 0.5rem;  --sp-2: 1rem;   --sp-3: 1.5rem;  --sp-4: 2rem;
  --sp-5: 3rem;    --sp-6: 4rem;   --sp-7: 6rem;    --sp-8: 8rem;

  /* Radius & shadow */
  --r-sm: 8px;  --r-md: 14px;  --r-lg: 22px;  --r-xl: 32px; --r-pill: 999px;
  --shadow-sm: 0 4px 18px rgba(20,58,47,0.06);
  --shadow-md: 0 14px 40px rgba(20,58,47,0.10);
  --shadow-lg: 0 30px 70px rgba(20,58,47,0.16);
  --shadow-gold: 0 10px 30px rgba(201,162,75,0.28);

  --container: 1240px;
  --header-h: 86px;
  --ease: cubic-bezier(.22,.61,.36,1);
}

/* ---------- 2. RESET ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.7;
  font-size: 17px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img, svg, video { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; transition: color .25s var(--ease); }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, textarea, select { font-family: inherit; font-size: 1rem; }
::selection { background: var(--gold-200); color: var(--emerald-800); }

/* ---------- 3. TYPOGRAPHY ---------- */
h1,h2,h3,h4 { font-family: var(--font-heading); font-weight: 600; line-height: 1.12; color: var(--emerald-800); letter-spacing: -0.01em; }
h1 { font-size: clamp(2.4rem, 5.4vw, 4.4rem); font-weight: 700; }
h2 { font-size: clamp(1.9rem, 3.8vw, 3rem); }
h3 { font-size: clamp(1.3rem, 2.2vw, 1.7rem); }
h4 { font-size: 1.15rem; }
p { color: var(--text-soft); }
.serif { font-family: var(--font-display); }

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold-700);
  display: inline-flex; align-items: center; gap: 0.6rem;
}
.eyebrow::before { content:""; width: 28px; height: 1px; background: var(--gold-500); display:inline-block; }
.eyebrow.center::after { content:""; width: 28px; height: 1px; background: var(--gold-500); display:inline-block; }
.eyebrow.center { justify-content: center; }

.lead { font-size: 1.18rem; color: var(--text-soft); }
.text-gold { color: var(--gold-700); }
.text-emerald { color: var(--emerald-700); }

/* ---------- 4. LAYOUT ---------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: clamp(1.2rem, 4vw, 2.5rem); }
.section { padding-block: clamp(3.5rem, 8vw, 7rem); }
.section--tight { padding-block: clamp(2.5rem, 5vw, 4rem); }
.bg-cream { background: var(--cream); }
.bg-beige { background: var(--beige); }
.bg-emerald { background: var(--emerald-800); color: #e9efe9; }
.bg-emerald h1,.bg-emerald h2,.bg-emerald h3 { color: var(--white); }
.bg-emerald p { color: rgba(255,255,255,0.78); }
.bg-grad-emerald { background: radial-gradient(120% 120% at 80% 0%, var(--emerald-700), var(--emerald-900)); color: #eaf1ec; }
.bg-grad-emerald .section-head h1, .bg-grad-emerald .section-head h2, .bg-grad-emerald .section-head h3, .bg-grad-emerald .section-head h4 { color: #fff; }
.bg-grad-emerald .section-head p { color: rgba(255,255,255,0.82); }
.bg-grad-emerald .section-head .eyebrow { color: var(--gold-400); }

.grid { display: grid; gap: clamp(1.4rem, 3vw, 2.4rem); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem,5vw,4.5rem); align-items: center; }

.section-head { max-width: 720px; margin: 0 auto clamp(2rem,4vw,3.2rem); text-align: center; }
.section-head p { margin-top: 1rem; }
.center { text-align: center; }
.mt-1{margin-top:var(--sp-1)} .mt-2{margin-top:var(--sp-2)} .mt-3{margin-top:var(--sp-3)} .mt-4{margin-top:var(--sp-4)}
.divider-gold { height:1px; background: var(--gold-line); border:0; margin: var(--sp-4) 0; }

/* ---------- 5. BUTTONS ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.6rem;
  padding: 0.95rem 1.9rem; border-radius: var(--r-pill);
  font-weight: 600; font-size: 0.97rem; letter-spacing: 0.01em;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), background .3s var(--ease), color .3s;
  cursor: pointer; text-align: center; line-height: 1; border: 1.5px solid transparent;
}
.btn svg { width: 1.05em; height: 1.05em; }
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--emerald-700); color: #fff; box-shadow: var(--shadow-md); }
.btn-primary:hover { background: var(--emerald-800); box-shadow: var(--shadow-lg); }
.btn-gold { background: linear-gradient(135deg, var(--gold-500), var(--gold-700)); color: #fff; box-shadow: var(--shadow-gold); }
.btn-gold:hover { box-shadow: 0 16px 40px rgba(201,162,75,0.4); }
.btn-whatsapp { background: #25d366; color: #fff; box-shadow: 0 10px 26px rgba(37,211,102,0.32); }
.btn-whatsapp:hover { background: #1ebe5b; }
.btn-outline { background: transparent; border-color: var(--emerald-700); color: var(--emerald-700); }
.btn-outline:hover { background: var(--emerald-700); color: #fff; }
.btn-light { background: #fff; color: var(--emerald-800); box-shadow: var(--shadow-sm); }
.btn-light:hover { background: var(--ivory); }
.btn-ghost-light { border-color: rgba(255,255,255,0.4); color:#fff; }
.btn-ghost-light:hover { background: rgba(255,255,255,0.12); }
.btn-lg { padding: 1.1rem 2.4rem; font-size: 1.05rem; }
.btn-block { width: 100%; }
.btn-row { display: flex; gap: 0.9rem; flex-wrap: wrap; }
.btn-row.center { justify-content: center; }

/* ---------- 6. HEADER ---------- */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 1000;
  height: var(--header-h);
  display: flex; align-items: center;
  background: rgba(251,249,244,0.72);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: height .35s var(--ease), background .35s, box-shadow .35s, border-color .35s;
}
.site-header.scrolled { height: 70px; background: rgba(251,249,244,0.96); box-shadow: var(--shadow-sm); border-bottom-color: var(--line); }
.site-header .container { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.brand { display: flex; align-items: center; gap: 0.7rem; }
.brand img { height: 46px; transition: height .35s var(--ease); }
.site-header.scrolled .brand img { height: 38px; }

.nav { display: flex; align-items: center; gap: 0.3rem; }
.nav > li > a {
  display: inline-flex; align-items: center; gap: 0.3rem;
  padding: 0.6rem 0.85rem; font-size: 0.92rem; font-weight: 500; color: var(--ink-soft);
  border-radius: var(--r-sm); position: relative;
}
.nav > li > a:hover { color: var(--emerald-700); }
.nav > li > a[aria-current="page"] { color: var(--emerald-700); }
.has-mega { position: relative; }
.has-mega > a::after { content:"⌄"; font-size:0.85em; opacity:.6; margin-left:2px; }

/* Mega menu */
.mega {
  position: absolute; top: calc(100% + 14px); left: 50%; transform: translateX(-50%) translateY(10px);
  width: min(720px, 92vw);
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg); padding: 1.6rem;
  display: grid; grid-template-columns: 1.4fr 1fr; gap: 1.4rem;
  opacity: 0; visibility: hidden; transition: opacity .3s var(--ease), transform .3s var(--ease);
}
.has-mega:hover .mega, .has-mega:focus-within .mega { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.mega-col h5 { font-family: var(--font-body); font-size: 0.72rem; letter-spacing: .18em; text-transform: uppercase; color: var(--gold-700); margin-bottom: 0.8rem; }
.mega-links { display: grid; gap: 0.15rem; }
.mega-links a { display:flex; flex-direction:column; padding: 0.55rem 0.7rem; border-radius: var(--r-sm); }
.mega-links a:hover { background: var(--cream); }
.mega-links a span { font-weight: 600; color: var(--emerald-800); font-size: 0.95rem; }
.mega-links a small { color: var(--warm-grey); font-size: 0.8rem; }
.mega-feature { background: var(--bg-grad, radial-gradient(120% 120% at 0 0, var(--emerald-700), var(--emerald-900))); border-radius: var(--r-md); padding: 1.4rem; color: #fff; display: flex; flex-direction: column; justify-content: flex-end; }
.mega-feature h4 { color:#fff; font-size: 1.2rem; } .mega-feature p { color: rgba(255,255,255,.8); font-size:.88rem; margin:.5rem 0 1rem; }

.header-cta { display: flex; align-items: center; gap: 0.7rem; }
.header-phone { display:flex; flex-direction:column; line-height:1.1; text-align:right; }
.header-phone small { font-size:.68rem; letter-spacing:.12em; text-transform:uppercase; color:var(--warm-grey); }
.header-phone b { font-family: var(--font-heading); font-size:1.02rem; color: var(--emerald-700); }

.burger { display: none; width: 46px; height: 46px; border-radius: var(--r-sm); flex-direction: column; gap: 5px; align-items: center; justify-content: center; background: transparent; }
.burger span { width: 24px; height: 2px; background: var(--emerald-700); border-radius: 2px; transition: transform .3s var(--ease), opacity .3s; }
.burger.open span:nth-child(1){ transform: translateY(7px) rotate(45deg);}
.burger.open span:nth-child(2){ opacity: 0;}
.burger.open span:nth-child(3){ transform: translateY(-7px) rotate(-45deg);}

/* Mobile drawer */
.mobile-nav { position: fixed; inset: 0; z-index: 1100; visibility: hidden; }
.mobile-nav .scrim { position:absolute; inset:0; background: rgba(14,42,34,0.45); opacity:0; transition:opacity .3s; }
.mobile-nav .panel { position:absolute; top:0; right:0; height:100%; width: min(88vw, 380px); background: var(--ivory); box-shadow: var(--shadow-lg); transform: translateX(100%); transition: transform .4s var(--ease); display:flex; flex-direction:column; padding: 1.4rem; overflow-y:auto; }
.mobile-nav.open { visibility: visible; }
.mobile-nav.open .scrim { opacity:1; }
.mobile-nav.open .panel { transform: translateX(0); }
.mobile-nav .m-head { display:flex; justify-content:space-between; align-items:center; margin-bottom:1rem; }
.mobile-nav .m-head img { height:40px; }
.m-close { font-size:1.8rem; line-height:1; color:var(--emerald-700); width:42px;height:42px;}
.m-links { display:flex; flex-direction:column; }
.m-links a, .m-acc-btn { padding: 0.85rem 0.4rem; border-bottom: 1px solid var(--line); font-weight:500; color:var(--ink); display:flex; justify-content:space-between; align-items:center; width:100%; text-align:left; }
.m-acc-panel { display:none; padding-left:0.8rem; }
.m-acc-panel.open { display:block; }
.m-acc-panel a { font-size:.92rem; color:var(--ink-soft); border-bottom:1px dashed var(--line); }
.m-acc-btn[aria-expanded="true"] .chev { transform: rotate(180deg); }
.chev { transition: transform .3s; }

/* ---------- 7. HERO ---------- */
.hero { position: relative; padding-top: calc(var(--header-h) + clamp(2rem,5vw,4rem)); padding-bottom: clamp(3rem,6vw,5rem); overflow: hidden; background: linear-gradient(180deg, var(--ivory), var(--cream)); }
.hero::before { content:""; position:absolute; top:-20%; right:-10%; width:560px; height:560px; background: radial-gradient(circle, rgba(201,162,75,0.14), transparent 70%); pointer-events:none; }
.hero::after { content:""; position:absolute; bottom:-30%; left:-12%; width:600px; height:600px; background: radial-gradient(circle, rgba(27,77,62,0.10), transparent 70%); pointer-events:none; }
.hero .container { position: relative; z-index: 2; }
.hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(2rem,4vw,3.5rem); align-items: center; }
.hero h1 { margin: 1rem 0 1.2rem; }
.hero h1 .accent { color: var(--gold-600); font-style: italic; font-family: var(--font-display); }
.hero .lead { max-width: 33ch; }
.hero-trust { display:flex; flex-wrap:wrap; gap: 0.6rem 1.4rem; margin-top: 1.6rem; }
.hero-trust span { display:inline-flex; align-items:center; gap:0.45rem; font-size:0.88rem; color: var(--ink-soft); font-weight:500; }
.hero-trust svg { width:18px; height:18px; color: var(--gold-600); }

.hero-visual { position: relative; }
.hero-frame { position: relative; border-radius: var(--r-xl); overflow: hidden; box-shadow: var(--shadow-lg); aspect-ratio: 4/5; background: linear-gradient(160deg, var(--emerald-700), var(--emerald-900)); }
.hero-frame::after { content:""; position:absolute; inset:0; border:1px solid rgba(255,255,255,0.18); border-radius: inherit; }
.float-card { position: absolute; background: rgba(255,255,255,0.92); backdrop-filter: blur(8px); border:1px solid rgba(255,255,255,0.6); border-radius: var(--r-md); padding: 0.9rem 1.1rem; box-shadow: var(--shadow-md); display:flex; align-items:center; gap:0.7rem; }
.float-card .ico { width:38px; height:38px; border-radius:50%; display:grid; place-items:center; background: var(--cream); color: var(--gold-700); flex:none; }
.float-card b { display:block; font-family:var(--font-heading); font-size:1.05rem; color:var(--emerald-800); line-height:1; }
.float-card small { color: var(--warm-grey); font-size:0.78rem; }
.float-card.tl { top: 6%; left: -7%; } .float-card.br { bottom: 8%; right: -6%; }
@media (max-width:520px){ .float-card.tl{left:2%} .float-card.br{right:2%} }

/* ---------- 8. CARDS ---------- */
.card { background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); padding: clamp(1.4rem,3vw,2rem); box-shadow: var(--shadow-sm); transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s; height:100%; }
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: rgba(201,162,75,0.4); }
.card .card-ico { width:58px; height:58px; border-radius: var(--r-md); display:grid; place-items:center; background: linear-gradient(160deg, var(--cream), var(--beige)); color: var(--emerald-700); margin-bottom: 1.1rem; }
.card .card-ico svg { width:28px; height:28px; }
.card h3 { font-size: 1.25rem; margin-bottom: 0.5rem; }
.card p { font-size: 0.95rem; }
.card .card-link { margin-top: 1rem; font-weight:600; font-size:0.9rem; color: var(--gold-700); display:inline-flex; align-items:center; gap:0.4rem; }
.card .card-link svg { width:16px; transition: transform .3s; }
.card:hover .card-link svg { transform: translateX(4px); }

.service-card { position:relative; overflow:hidden; }
.service-card .tag { position:absolute; top:1.2rem; right:1.2rem; font-size:0.7rem; font-weight:600; letter-spacing:.1em; text-transform:uppercase; color: var(--gold-700); background: var(--cream); padding:0.3rem 0.7rem; border-radius: var(--r-pill); }

/* feature list */
.flist { display:grid; gap: 0.7rem; }
.flist li { display:flex; gap:0.7rem; align-items:flex-start; font-size:0.97rem; color:var(--ink-soft); }
.flist li svg { width:20px; height:20px; color: var(--gold-600); flex:none; margin-top:2px; }
.flist.light li { color: rgba(255,255,255,0.85); } .flist.light li svg { color: var(--gold-400); }

/* pill badges */
.badges { display:flex; flex-wrap:wrap; gap:0.6rem; }
.badge { display:inline-flex; align-items:center; gap:0.4rem; font-size:0.82rem; font-weight:600; padding:0.45rem 0.9rem; border-radius:var(--r-pill); background:#fff; border:1px solid var(--line); color:var(--emerald-700); }
.badge svg{width:15px;height:15px;color:var(--gold-600);}

/* ---------- 9. IMAGE PLACEHOLDERS (luxury gradient art) ---------- */
.img-ph { position: relative; border-radius: var(--r-lg); overflow: hidden; background:
   linear-gradient(135deg, var(--emerald-700), var(--emerald-900)); display:grid; place-items:center; color: rgba(255,255,255,0.5); aspect-ratio: 4/3; }
.img-ph.alt { background: linear-gradient(135deg, var(--beige), var(--cream)); color: var(--warm-grey); }
.img-ph .ph-label { font-family: var(--font-display); font-size:1rem; letter-spacing:.05em; padding:0.5rem 1rem; border:1px solid currentColor; border-radius:var(--r-pill); }
.img-ph .ph-watermark { position:absolute; bottom:8px; right:10px; font-size:0.65rem; letter-spacing:.18em; opacity:.5; text-transform:uppercase; }
.frame-gold { padding: 8px; background: linear-gradient(135deg, var(--gold-400), var(--gold-700)); border-radius: calc(var(--r-lg) + 8px); box-shadow: var(--shadow-md); }
.frame-gold .img-ph { border-radius: var(--r-lg); }

/* ---------- 10. BEFORE / AFTER SLIDER ---------- */
.ba-slider { position: relative; border-radius: var(--r-lg); overflow: hidden; aspect-ratio: 4/3; user-select: none; box-shadow: var(--shadow-md); touch-action: none; }
.ba-slider .ba-img { position:absolute; inset:0; display:grid; place-items:center; font-family:var(--font-display); font-size:1.4rem; letter-spacing:.1em; color:#fff; }
.ba-after { background: linear-gradient(135deg, var(--emerald-600), var(--emerald-800)); }
.ba-before { background: linear-gradient(135deg, #6b6256, #463f36); clip-path: inset(0 50% 0 0); }
.ba-label { position:absolute; bottom:12px; padding:0.3rem 0.8rem; border-radius:var(--r-pill); background:rgba(0,0,0,0.4); font-size:0.72rem; letter-spacing:.12em; text-transform:uppercase; }
.ba-label.l { left:12px; } .ba-label.r { right:12px; }
.ba-handle { position:absolute; top:0; bottom:0; left:50%; width:3px; background:#fff; transform:translateX(-50%); cursor:ew-resize; box-shadow:0 0 0 1px rgba(0,0,0,.1); }
.ba-handle::after { content:"⟺"; position:absolute; top:50%; left:50%; transform:translate(-50%,-50%); width:42px; height:42px; border-radius:50%; background:#fff; color:var(--emerald-700); display:grid; place-items:center; font-size:1rem; box-shadow:var(--shadow-md); }
.ba-range { position:absolute; inset:0; opacity:0; cursor:ew-resize; width:100%; }
/* real-photo sliders */
.ba-slider.ba-portrait { aspect-ratio: 4/5; }
.ba-slider img.ba-base, .ba-slider .ba-before > img {
  position:absolute; inset:0; width:100%; height:100%;
  object-fit:cover; object-position:center top;
}
.ba-slider .ba-before { position:absolute; inset:0; }
.ba-slider.ba-real .ba-before { background:none; }

/* ---------- 11. ACCORDION / FAQ ---------- */
.accordion { max-width: 820px; margin-inline: auto; }
.acc-item { border-bottom: 1px solid var(--line); }
.acc-q { width:100%; display:flex; justify-content:space-between; gap:1rem; align-items:center; padding: 1.25rem 0.2rem; font-family: var(--font-heading); font-size:1.12rem; font-weight:600; color:var(--emerald-800); text-align:left; }
.acc-q .pm { flex:none; width:30px;height:30px; border-radius:50%; border:1px solid var(--gold-500); color:var(--gold-700); display:grid;place-items:center; font-size:1.2rem; transition: transform .3s, background .3s, color .3s; }
.acc-item.open .pm { background: var(--gold-500); color:#fff; transform: rotate(45deg); }
.acc-a { max-height:0; overflow:hidden; transition: max-height .4s var(--ease); }
.acc-a > div { padding: 0 0.2rem 1.3rem; color: var(--ink-soft); }

/* ---------- 12. TIMELINE / JOURNEY ---------- */
.timeline { position:relative; display:grid; gap:1.6rem; }
.timeline::before { content:""; position:absolute; left:27px; top:10px; bottom:10px; width:2px; background: var(--gold-line); background: linear-gradient(var(--gold-400),var(--gold-200)); }
.tl-step { position:relative; display:grid; grid-template-columns:56px 1fr; gap:1.2rem; align-items:flex-start; }
.tl-num { width:56px;height:56px;border-radius:50%; background:#fff; border:2px solid var(--gold-500); color:var(--emerald-700); font-family:var(--font-heading); font-size:1.3rem; font-weight:700; display:grid;place-items:center; box-shadow:var(--shadow-sm); z-index:1; }
.tl-step h4 { font-size:1.2rem; margin-bottom:.3rem; }
.bg-emerald .tl-num { background: var(--emerald-900); color: var(--gold-400); }
.bg-emerald .timeline::before { background: linear-gradient(var(--gold-500),transparent); }

/* steps horizontal */
.steps { display:grid; grid-template-columns:repeat(4,1fr); gap:1.4rem; counter-reset: step; }
.step { position:relative; text-align:center; padding-top:1rem; }
.step .step-no { width:60px;height:60px;margin:0 auto 1rem; border-radius:50%; background:linear-gradient(160deg,var(--emerald-700),var(--emerald-900)); color:#fff; font-family:var(--font-heading); font-size:1.4rem; display:grid;place-items:center; box-shadow:var(--shadow-md); }
.step h4{font-size:1.1rem;margin-bottom:.4rem;} .step p{font-size:.9rem;}

/* ---------- 13. STATS / COUNTERS ---------- */
.stats { display:grid; grid-template-columns:repeat(4,1fr); gap:1.4rem; text-align:center; }
.stat .num { font-family:var(--font-heading); font-size: clamp(2.2rem,4vw,3.2rem); font-weight:700; color: var(--gold-600); line-height:1; }
.stat .lbl { font-size:0.85rem; letter-spacing:.08em; text-transform:uppercase; color: var(--ink-soft); margin-top:0.5rem; }
.bg-emerald .stat .lbl { color: rgba(255,255,255,0.7); }

/* ---------- 14. TESTIMONIALS ---------- */
.testi-track { display:flex; gap:1.5rem; overflow-x:auto; scroll-snap-type:x mandatory; padding-bottom:1rem; scrollbar-width:thin; }
.testi-track::-webkit-scrollbar{height:6px} .testi-track::-webkit-scrollbar-thumb{background:var(--gold-300,#d8b86a);border-radius:9px}
.testi { scroll-snap-align:start; flex: 0 0 min(420px, 85vw); background:#fff; border:1px solid var(--line); border-radius:var(--r-lg); padding:2rem; box-shadow:var(--shadow-sm); }
.testi .stars { color: var(--gold-500); letter-spacing:2px; margin-bottom:0.8rem; }
.testi p { font-family:var(--font-display); font-size:1.2rem; font-style:italic; color:var(--ink); line-height:1.6; }
.testi .who { display:flex; align-items:center; gap:0.8rem; margin-top:1.2rem; }
.testi .who .av { width:46px;height:46px;border-radius:50%; background:linear-gradient(135deg,var(--emerald-600),var(--emerald-800)); color:#fff; display:grid;place-items:center; font-family:var(--font-heading); font-weight:700; }
.testi .who b { color:var(--emerald-800); display:block; line-height:1.2; } .testi .who small{color:var(--warm-grey)}

/* ---------- 15. FLOATING CTAs ---------- */
.fab-whatsapp { position: fixed; right: 20px; bottom: 22px; z-index: 900; width: 60px; height: 60px; border-radius: 50%; background:#25d366; color:#fff; display:grid; place-items:center; box-shadow: 0 12px 30px rgba(37,211,102,0.4); animation: pulse 2.6s infinite; }
.fab-whatsapp svg{width:30px;height:30px;}
@keyframes pulse { 0%{box-shadow:0 0 0 0 rgba(37,211,102,0.5);} 70%{box-shadow:0 0 0 16px rgba(37,211,102,0);} 100%{box-shadow:0 0 0 0 rgba(37,211,102,0);} }
.back-top { position: fixed; right: 24px; bottom: 92px; z-index: 880; width:46px;height:46px;border-radius:50%; background:#fff; border:1px solid var(--line); color:var(--emerald-700); display:grid;place-items:center; box-shadow:var(--shadow-md); opacity:0; visibility:hidden; transform: translateY(12px); transition: all .35s var(--ease); }
.back-top.show { opacity:1; visibility:visible; transform:translateY(0); }

/* sticky mobile bar */
.mobile-bar { position: fixed; left:0; right:0; bottom:0; z-index:910; display:none; grid-template-columns:repeat(3,1fr); background:#fff; border-top:1px solid var(--line); box-shadow:0 -8px 24px rgba(20,58,47,0.08); }
.mobile-bar a { display:flex; flex-direction:column; align-items:center; gap:3px; padding:0.6rem; font-size:0.72rem; font-weight:600; color:var(--ink-soft); }
.mobile-bar a svg{width:22px;height:22px;}
.mobile-bar a.wa{color:#1ebe5b;} .mobile-bar a.book{color:var(--gold-700);} .mobile-bar a.call{color:var(--emerald-700);}
.mobile-bar a + a { border-left:1px solid var(--line); }

/* ---------- 16. FORMS ---------- */
.form-card { background:#fff; border:1px solid var(--line); border-radius:var(--r-lg); padding: clamp(1.5rem,3vw,2.2rem); box-shadow: var(--shadow-md); }
.form-card.on-emerald { box-shadow: var(--shadow-lg); }
.field { margin-bottom: 1rem; }
.field label { display:block; font-size:0.82rem; font-weight:600; color:var(--emerald-800); margin-bottom:0.4rem; }
.field label .req { color:#c0563b; }
.field input, .field select, .field textarea {
  width:100%; padding:0.85rem 1rem; border:1px solid var(--line); border-radius:var(--r-sm);
  background: var(--ivory); color: var(--ink); transition: border-color .25s, box-shadow .25s;
}
.field input:focus, .field select:focus, .field textarea:focus { outline:none; border-color: var(--gold-500); box-shadow: 0 0 0 3px rgba(201,162,75,0.15); background:#fff; }
.field.invalid input, .field.invalid select { border-color:#c0563b; }
.field .err { display:none; color:#c0563b; font-size:0.78rem; margin-top:0.3rem; }
.field.invalid .err { display:block; }
.field-row { display:grid; grid-template-columns:1fr 1fr; gap:1rem; }
.consent { display:flex; gap:0.6rem; align-items:flex-start; font-size:0.85rem; color:var(--ink-soft); }
.consent input{width:auto;margin-top:4px;flex:none;}
.choice-grid { display:grid; grid-template-columns:repeat(auto-fit,minmax(120px,1fr)); gap:0.7rem; }
.choice { position:relative; }
.choice input{ position:absolute; opacity:0; }
.choice label { display:block; text-align:center; padding:0.9rem 0.6rem; border:1.5px solid var(--line); border-radius:var(--r-md); cursor:pointer; font-size:0.9rem; font-weight:500; transition: all .25s; background:var(--ivory); }
.choice input:checked + label { border-color:var(--gold-500); background: var(--cream); color:var(--emerald-800); box-shadow:0 0 0 3px rgba(201,162,75,0.12); }
.form-note { font-size:0.8rem; color:var(--warm-grey); display:flex; align-items:center; gap:0.4rem; margin-top:0.8rem; }
.form-note svg{width:15px;height:15px;color:var(--gold-600);}

/* multi-step */
.steps-bar { display:flex; gap:0.5rem; margin-bottom:1.5rem; }
.steps-bar .dot { flex:1; height:5px; border-radius:9px; background: var(--line); transition: background .3s; }
.steps-bar .dot.active { background: linear-gradient(90deg,var(--gold-500),var(--gold-700)); }
.fstep { display:none; } .fstep.active { display:block; animation: fadeUp .4s var(--ease); }
.step-meta { font-size:0.78rem; letter-spacing:.1em; text-transform:uppercase; color:var(--gold-700); margin-bottom:0.4rem; }

/* form success */
.form-success { display:none; text-align:center; padding:1rem; }
.form-success.show { display:block; animation: fadeUp .4s var(--ease); }
.form-success .check { width:70px;height:70px;border-radius:50%;margin:0 auto 1rem; background:linear-gradient(135deg,var(--emerald-600),var(--emerald-800)); color:#fff; display:grid;place-items:center; }

/* ---------- 17. CTA BANNER ---------- */
.cta-banner { position:relative; overflow:hidden; border-radius: var(--r-xl); padding: clamp(2.5rem,5vw,4rem); background: radial-gradient(120% 140% at 100% 0%, var(--emerald-700), var(--emerald-900)); color:#fff; text-align:center; }
.cta-banner::before{content:"";position:absolute;top:-40%;left:-10%;width:400px;height:400px;background:radial-gradient(circle,rgba(201,162,75,0.22),transparent 70%);}
.cta-banner h2{color:#fff;} .cta-banner p{color:rgba(255,255,255,0.82); max-width:560px;margin:1rem auto 1.8rem;}
.cta-banner .btn-row{position:relative;}

/* ---------- 18. FOOTER ---------- */
.site-footer { background: var(--emerald-900); color: rgba(255,255,255,0.7); padding-top: clamp(3rem,6vw,5rem); }
.footer-top { display:grid; grid-template-columns: 1.4fr 1fr 1fr 1.3fr; gap: 2rem; padding-bottom:2.5rem; }
.footer-brand .logo-mark { font-family:var(--font-heading); font-size:2rem; color:#fff; letter-spacing:.04em; }
.footer-brand .tag { font-family:var(--font-display); font-style:italic; color:var(--gold-400); letter-spacing:.1em; margin-bottom:1rem; }
.footer-brand p{font-size:0.92rem;}
.site-footer h5 { color:#fff; font-family:var(--font-body); font-size:0.78rem; letter-spacing:.16em; text-transform:uppercase; margin-bottom:1rem; }
.site-footer h5 { color: var(--gold-400); }
.footer-links { display:grid; gap:0.55rem; }
.footer-links a { font-size:0.92rem; color:rgba(255,255,255,0.66); }
.footer-links a:hover { color:var(--gold-400); }
.footer-contact li { display:flex; gap:0.6rem; align-items:flex-start; font-size:0.92rem; margin-bottom:0.7rem; }
.footer-contact svg{width:18px;height:18px;color:var(--gold-400);flex:none;margin-top:3px;}
.footer-mini-cta { background: rgba(255,255,255,0.05); border:1px solid rgba(255,255,255,0.1); border-radius:var(--r-md); padding:1.2rem; margin-top:1rem; }
.footer-mini-cta b{color:#fff;display:block;margin-bottom:.6rem;font-family:var(--font-heading);}
.footer-bottom { border-top:1px solid rgba(255,255,255,0.1); padding:1.5rem 0; display:flex; flex-wrap:wrap; justify-content:space-between; gap:1rem; font-size:0.82rem; }
.footer-bottom a{color:rgba(255,255,255,0.6);} .footer-bottom a:hover{color:var(--gold-400);}
.footer-legal{display:flex;gap:1.2rem;flex-wrap:wrap;}
.footer-disclaimer { font-size:0.76rem; color:rgba(255,255,255,0.4); padding-bottom:1.5rem; max-width:none; line-height:1.6; }
.footer-social { display:flex; gap:0.7rem; margin:0.4rem 0 1rem; }
.footer-social a { width:42px; height:42px; border-radius:50%; display:grid; place-items:center; background:rgba(255,255,255,0.06); border:1px solid rgba(255,255,255,0.12); color:#fff; cursor:pointer; transition:all .25s var(--ease); }
.footer-social a:hover { background:var(--gold-500); color:var(--emerald-900); transform:translateY(-3px); }
.footer-social svg { width:20px; height:20px; }

/* ---------- Google reviews ---------- */
.reviews-head { display:flex; align-items:center; justify-content:center; gap:1.2rem; flex-wrap:wrap; margin-bottom:2.2rem; }
.g-rating { display:flex; align-items:center; gap:0.9rem; background:#fff; border:1px solid var(--line); border-radius:var(--r-lg); padding:1rem 1.5rem; box-shadow:var(--shadow-sm); }
.g-rating .g-logo { font-family:var(--font-heading); font-size:1.5rem; font-weight:700; }
.g-rating .g-logo .b{color:#4285F4}.g-rating .g-logo .r{color:#EA4335}.g-rating .g-logo .y{color:#FBBC05}.g-rating .g-logo .g{color:#34A853}
.g-rating .g-score { font-family:var(--font-heading); font-size:2rem; font-weight:700; color:var(--emerald-800); line-height:1; }
.g-rating .g-stars { color:var(--gold-500); letter-spacing:2px; font-size:1.1rem; }
.g-rating small { color:var(--warm-grey); font-size:0.8rem; }
.review-card { background:#fff; border:1px solid var(--line); border-radius:var(--r-lg); padding:1.6rem; box-shadow:var(--shadow-sm); height:100%; display:flex; flex-direction:column; }
.review-card .rc-top { display:flex; align-items:center; gap:0.8rem; margin-bottom:0.8rem; }
.review-card .rc-av { width:46px; height:46px; border-radius:50%; background:linear-gradient(135deg,var(--emerald-600),var(--emerald-800)); color:#fff; display:grid; place-items:center; font-family:var(--font-heading); font-weight:700; flex:none; }
.review-card .rc-name b{ color:var(--emerald-800); display:block; line-height:1.2; }
.review-card .rc-name small{ color:var(--warm-grey); }
.review-card .rc-stars{ color:var(--gold-500); letter-spacing:1px; margin-bottom:0.5rem; }
.review-card p{ font-size:0.95rem; }
.review-card .rc-g{ margin-top:auto; padding-top:0.8rem; font-size:0.78rem; color:var(--warm-grey); display:flex; align-items:center; gap:0.4rem; }
.widget-slot { border:1.5px dashed var(--line); border-radius:var(--r-lg); padding:2rem; text-align:center; color:var(--warm-grey); background:var(--ivory); }

/* ---------- Instagram reels ---------- */
.reels-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:1.4rem; max-width:920px; margin-inline:auto; }
.reel { position:relative; aspect-ratio:9/16; border-radius:var(--r-lg); overflow:hidden; box-shadow:var(--shadow-md); background:linear-gradient(160deg,var(--emerald-700),var(--emerald-900)); display:block; }
.reel img, .reel video { position:absolute; inset:0; width:100%; height:100%; object-fit:cover; }
.reel .reel-ov { position:absolute; inset:0; background:linear-gradient(to top, rgba(14,42,34,0.7), transparent 55%); display:flex; flex-direction:column; justify-content:flex-end; padding:1rem; color:#fff; }
.reel .reel-play { position:absolute; top:50%; left:50%; transform:translate(-50%,-50%); width:58px; height:58px; border-radius:50%; background:rgba(255,255,255,0.92); display:grid; place-items:center; color:var(--emerald-800); transition:transform .3s var(--ease); }
.reel:hover .reel-play{ transform:translate(-50%,-50%) scale(1.08); }
.reel .reel-play svg{ width:24px; height:24px; margin-left:3px; }
.reel .reel-tag{ position:absolute; top:12px; left:12px; display:flex; align-items:center; gap:6px; font-size:0.72rem; font-weight:600; color:#fff; background:rgba(0,0,0,0.35); padding:0.3rem 0.6rem; border-radius:var(--r-pill); }
.reel .reel-cap{ font-size:0.85rem; font-weight:500; line-height:1.3; }
.reels-embed .instagram-media{ margin:0 auto !important; min-width:auto !important; }
@media (max-width:720px){ .reels-grid{ grid-template-columns:1fr; max-width:340px; } }

/* ---------- 19. BREADCRUMBS / PAGE HERO ---------- */
.page-hero { padding-top: calc(var(--header-h) + 2.5rem); padding-bottom: clamp(2rem,4vw,3.5rem); background: radial-gradient(120% 130% at 100% 0%, var(--emerald-700), var(--emerald-900)); color:#fff; position:relative; overflow:hidden; }
.page-hero::before{content:"";position:absolute;top:-30%;right:5%;width:420px;height:420px;background:radial-gradient(circle,rgba(201,162,75,0.18),transparent 70%);}
.page-hero .container{position:relative;z-index:1;}
.page-hero h1{color:#fff; margin:0.8rem 0;}
.page-hero p{color:rgba(255,255,255,0.8); max-width:62ch;}
.breadcrumbs { display:flex; gap:0.5rem; font-size:0.82rem; color:rgba(255,255,255,0.6); flex-wrap:wrap; }
.breadcrumbs a:hover{color:var(--gold-400);} .breadcrumbs .sep{opacity:.5;}
.breadcrumbs [aria-current]{color:var(--gold-400);}

/* ---------- 20. CONTENT (blog / legal) ---------- */
.prose { max-width: 760px; }
.prose > * + * { margin-top: 1.2rem; }
.prose h2 { margin-top:2.2rem; } .prose h3 { margin-top:1.6rem; }
.prose p, .prose li { color: var(--ink-soft); }
.prose ul { padding-left:1.2rem; list-style: none; }
.prose ul li { position:relative; padding-left:1.2rem; margin-top:0.6rem; }
.prose ul li::before { content:""; position:absolute; left:0; top:11px; width:7px;height:7px;border-radius:50%; background:var(--gold-500); }
.prose blockquote { border-left:3px solid var(--gold-500); padding:0.6rem 0 0.6rem 1.4rem; font-family:var(--font-display); font-style:italic; font-size:1.3rem; color:var(--emerald-800); }
.prose a { color: var(--gold-700); text-decoration: underline; text-underline-offset:3px; }
.inline-cta { background: var(--cream); border:1px solid var(--line); border-left:4px solid var(--gold-500); border-radius:var(--r-md); padding:1.4rem 1.6rem; margin:2rem 0; }
.inline-cta h4{margin-bottom:0.5rem;}

.read-progress { position:fixed; top:0; left:0; height:3px; width:0; background:linear-gradient(90deg,var(--gold-500),var(--emerald-600)); z-index:1001; transition: width .1s; }

.post-card { display:flex; flex-direction:column; background:#fff; border:1px solid var(--line); border-radius:var(--r-lg); overflow:hidden; box-shadow:var(--shadow-sm); transition: transform .4s var(--ease), box-shadow .4s; height:100%; }
.post-card:hover{transform:translateY(-6px); box-shadow:var(--shadow-md);}
.post-card .thumb{aspect-ratio:16/10;}
.post-card .body{padding:1.4rem; display:flex;flex-direction:column;flex:1;}
.post-card .cat{font-size:0.72rem;letter-spacing:.12em;text-transform:uppercase;color:var(--gold-700);font-weight:600;}
.post-card h3{font-size:1.2rem;margin:0.5rem 0;}
.post-card .meta{margin-top:auto;font-size:0.82rem;color:var(--warm-grey);padding-top:0.8rem;}

/* comparison table */
.cmp-table { width:100%; border-collapse:collapse; background:#fff; border-radius:var(--r-lg); overflow:hidden; box-shadow:var(--shadow-sm); }
.cmp-table th, .cmp-table td { padding:1rem 1.2rem; text-align:left; border-bottom:1px solid var(--line); font-size:0.95rem; }
.cmp-table thead th { background: var(--emerald-800); color:#fff; font-family:var(--font-heading); }
.cmp-table tbody tr:nth-child(even){background:var(--ivory);}
.cmp-table td:first-child{font-weight:600;color:var(--emerald-800);}

/* tabs */
.tabs { display:flex; gap:0.5rem; flex-wrap:wrap; justify-content:center; margin-bottom:2rem; }
.tab { padding:0.6rem 1.3rem; border-radius:var(--r-pill); border:1px solid var(--line); font-weight:600; font-size:0.9rem; color:var(--ink-soft); background:#fff; transition:all .25s; }
.tab.active { background: var(--emerald-700); color:#fff; border-color:var(--emerald-700); }

/* gallery */
.gallery-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:1.4rem; }
.ba-case .ba-meta { display:flex; justify-content:space-between; align-items:center; margin-top:0.9rem; }
.ba-case .ba-meta b{color:var(--emerald-800);font-family:var(--font-heading);} .ba-case .ba-meta small{color:var(--warm-grey);}

/* doctor card */
.doc-card { display:grid; grid-template-columns: 0.9fr 1.1fr; gap:0; background:#fff; border:1px solid var(--line); border-radius:var(--r-xl); overflow:hidden; box-shadow:var(--shadow-md); }
.doc-card .doc-photo{background:linear-gradient(160deg,var(--emerald-700),var(--emerald-900)); min-height:420px; display:grid;place-items:center;color:rgba(255,255,255,0.4);}
.doc-card .doc-body{padding:clamp(1.6rem,3vw,2.6rem);}

/* note box */
.note-box { background:var(--cream); border:1px solid var(--line); border-radius:var(--r-lg); padding:1.6rem 1.8rem; display:flex; gap:1.2rem; }
.note-box .qi{width:50px;height:50px;border-radius:50%;flex:none; background:#fff; border:1px solid var(--gold-500); color:var(--gold-700); display:grid;place-items:center;font-family:var(--font-display);font-size:1.6rem;font-style:italic;}

/* ---------- 21. ANIMATIONS ---------- */
@keyframes fadeUp { from{opacity:0;transform:translateY(20px);} to{opacity:1;transform:translateY(0);} }
@keyframes fadeIn { from{opacity:0;} to{opacity:1;} }
.reveal { opacity:0; transform: translateY(28px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity:1; transform:none; }
.reveal.d1{transition-delay:.08s} .reveal.d2{transition-delay:.16s} .reveal.d3{transition-delay:.24s} .reveal.d4{transition-delay:.32s}
.logo-load { animation: fadeIn 1s var(--ease); }

/* social proof popup */
.proof-pop { position:fixed; left:20px; bottom:22px; z-index:870; max-width:300px; background:#fff; border:1px solid var(--line); border-radius:var(--r-md); box-shadow:var(--shadow-lg); padding:0.9rem 1rem; display:flex; gap:0.8rem; align-items:center; transform:translateY(140%); transition: transform .5s var(--ease); }
.proof-pop.show{transform:translateY(0);}
.proof-pop .pi{width:40px;height:40px;border-radius:50%;flex:none;background:var(--cream);color:var(--gold-700);display:grid;place-items:center;}
.proof-pop b{color:var(--emerald-800);font-size:0.9rem;} .proof-pop small{color:var(--warm-grey);font-size:0.78rem;}
.proof-pop .px{position:absolute;top:6px;right:8px;color:var(--warm-grey);font-size:1rem;}

/* exit popup */
.modal { position:fixed; inset:0; z-index:1200; display:none; place-items:center; padding:1.2rem; }
.modal.open{display:grid;}
.modal .scrim{position:absolute;inset:0;background:rgba(14,42,34,0.55);backdrop-filter:blur(3px);}
.modal .box{position:relative;background:var(--ivory);border-radius:var(--r-xl);max-width:480px;width:100%;padding:clamp(1.8rem,4vw,2.6rem);box-shadow:var(--shadow-lg);text-align:center;animation:fadeUp .4s var(--ease);}
.modal .mx{position:absolute;top:14px;right:16px;font-size:1.6rem;color:var(--warm-grey);line-height:1;}
.modal .box .em{font-family:var(--font-display);font-size:3rem;color:var(--gold-600);}

/* lightbox */
.lightbox{position:fixed;inset:0;z-index:1300;background:rgba(14,42,34,0.92);display:none;place-items:center;padding:2rem;}
.lightbox.open{display:grid;}
.lightbox .lb-content{max-width:900px;width:100%;}
.lightbox .lbx{position:absolute;top:20px;right:26px;color:#fff;font-size:2rem;}

/* skeleton */
.skeleton{background:linear-gradient(100deg,var(--cream) 30%,var(--beige) 50%,var(--cream) 70%);background-size:200% 100%;animation:shimmer 1.4s infinite;border-radius:var(--r-md);}
@keyframes shimmer{from{background-position:200% 0}to{background-position:-200% 0}}

/* ---------- 22. RESPONSIVE ---------- */
@media (max-width: 1080px){
  .nav, .header-phone { display:none; }
  .burger { display:flex; }
  .header-cta .btn-primary { display:none; }   /* Book stays in drawer + sticky bottom bar */
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual{order:-1; max-width:420px; margin-inline:auto;}
  .footer-top{grid-template-columns:1fr 1fr;}
}
@media (max-width: 860px){
  .grid-3,.grid-4{grid-template-columns:repeat(2,1fr);}
  .split{grid-template-columns:1fr;}
  .steps{grid-template-columns:repeat(2,1fr);}
  .stats{grid-template-columns:repeat(2,1fr);}
  .gallery-grid{grid-template-columns:repeat(2,1fr);}
  .doc-card{grid-template-columns:1fr;}
  .doc-card .doc-photo{min-height:280px;}
  .mega{display:none !important;}
  .float-card{display:none;}        /* avoid overlap with hero copy on mobile */
  body{padding-bottom:62px;}
  .mobile-bar{display:grid;}
  .fab-whatsapp{bottom:74px;} .back-top{bottom:144px;}
  .proof-pop{display:none;}
}
@media (max-width: 560px){
  .grid-2,.grid-3,.grid-4{grid-template-columns:1fr;}
  .stats{grid-template-columns:repeat(2,1fr);}
  .field-row{grid-template-columns:1fr;}
  .btn{width:100%;} .btn-row{flex-direction:column;}
  .btn-row.keep-row{flex-direction:column;} .btn-row.keep-row .btn{width:100%;flex:auto;}
  h1{font-size:2.2rem;}
  .footer-top{grid-template-columns:1fr;}
  .footer-bottom{flex-direction:column;}
}

/* RTL ready */
[dir="rtl"] .eyebrow::before{order:2;} [dir="rtl"] .hero .lead{margin-left:auto;}
[dir="rtl"] .fab-whatsapp{right:auto;left:20px;} [dir="rtl"] .back-top{right:auto;left:24px;}

/* reduced motion */
@media (prefers-reduced-motion: reduce){
  *{animation-duration:.001ms !important; transition-duration:.001ms !important; scroll-behavior:auto !important;}
  .reveal{opacity:1;transform:none;}
}

/* print */
@media print{ .site-header,.fab-whatsapp,.mobile-bar,.back-top,.proof-pop{display:none !important;} }

/* ---------- 23. CUSTOM CURSOR (fine pointers only) ---------- */
@media (pointer:fine){
  body.cursor-on, body.cursor-on a, body.cursor-on button, body.cursor-on .btn,
  body.cursor-on input, body.cursor-on select, body.cursor-on textarea, body.cursor-on label { cursor:none; }
  .cursor-dot,.cursor-ring{ position:fixed; top:0; left:0; border-radius:50%; pointer-events:none; z-index:2000; transform:translate(-50%,-50%); mix-blend-mode:normal; }
  .cursor-dot{ width:7px; height:7px; background:var(--gold-600); }
  .cursor-ring{ width:34px; height:34px; border:1.5px solid var(--gold-500); transition:width .25s var(--ease), height .25s var(--ease), background .25s, border-color .25s, opacity .3s; }
  .cursor-ring.hover{ width:56px; height:56px; background:rgba(201,162,75,0.12); border-color:var(--gold-600); }
  .cursor-ring.down{ width:24px; height:24px; }
}

/* ---------- 24. PRELOADER (load progress) ---------- */
.preloader{ position:fixed; inset:0; z-index:3000; background:var(--ivory); display:grid; place-items:center; transition:opacity .6s var(--ease), visibility .6s; }
.preloader.done{ opacity:0; visibility:hidden; }
.pl-inner{ text-align:center; width:min(300px,72vw); }
.pl-logo{ height:62px; width:auto; margin:0 auto 1.5rem; animation:fadeIn .8s var(--ease); }
.pl-bar{ height:2px; background:var(--line); border-radius:9px; overflow:hidden; }
.pl-bar span{ display:block; height:100%; width:0; background:linear-gradient(90deg,var(--gold-500),var(--emerald-600)); transition:width .15s linear; }
.pl-meta{ display:flex; justify-content:space-between; align-items:center; margin-top:.8rem; font-size:.78rem; letter-spacing:.16em; text-transform:uppercase; color:var(--warm-grey); }
.pl-pct{ font-family:var(--font-heading); color:var(--gold-700); font-weight:700; letter-spacing:.1em; }

/* ---------- 25. GROWTH TIMELINE ---------- */
.gtimeline{ display:grid; grid-template-columns:repeat(4,1fr); gap:1.4rem; position:relative; }
.gtimeline::before{ content:""; position:absolute; left:10%; right:10%; top:38px; height:2px; background:linear-gradient(90deg,var(--gold-400),var(--emerald-500)); z-index:0; }
.gt-step{ text-align:center; position:relative; padding:0 .3rem; }
.gt-dot{ width:78px; height:78px; margin:0 auto 1.1rem; border-radius:50%; background:#fff; border:2px solid var(--gold-500); color:var(--emerald-700); font-family:var(--font-heading); font-weight:700; font-size:1rem; display:grid; place-items:center; box-shadow:var(--shadow-sm); position:relative; z-index:1; transition:transform .4s var(--ease), box-shadow .4s; }
.gt-step:hover .gt-dot{ transform:translateY(-5px); box-shadow:var(--shadow-md); border-color:var(--gold-600); }
.gt-dot{ white-space:nowrap; padding:0 6px; }
.gt-dot small{ display:block; font-family:var(--font-body); font-weight:600; font-size:.62rem; letter-spacing:.08em; text-transform:uppercase; color:var(--warm-grey); margin-top:2px; }
.gt-step h3{ font-size:1.15rem; margin-bottom:.4rem; }
.gt-step p{ font-size:.9rem; }
.bg-cream .gt-dot{ background:#fff; }
.gtimeline.cols-3{ grid-template-columns:repeat(3,1fr); }
.gtimeline.cols-4{ grid-template-columns:repeat(4,1fr); }
.gtimeline.cols-3::before{ left:16%; right:16%; }
@media (max-width:760px){ .gtimeline, .gtimeline.cols-3, .gtimeline.cols-4{ grid-template-columns:1fr 1fr; } .gtimeline::before{ display:none; } }
@media (max-width:440px){ .gtimeline, .gtimeline.cols-3, .gtimeline.cols-4{ grid-template-columns:1fr; } }

/* recovery period badge */
.period-badge{ display:inline-block; font-family:var(--font-heading); font-weight:700; font-size:.9rem; letter-spacing:.04em; color:var(--gold-700); background:var(--cream); border:1px solid var(--gold-200); padding:.4rem 1rem; border-radius:var(--r-pill); margin-bottom:.9rem; }

/* result image frame */
.result-img{ position:relative; border-radius:var(--r-lg); overflow:hidden; aspect-ratio:4/5; box-shadow:var(--shadow-md); }
.result-img img{ width:100%; height:100%; object-fit:cover; object-position:center top; }
.result-img .ri-tag{ position:absolute; bottom:12px; left:12px; background:rgba(14,42,34,.55); color:#fff; font-size:.72rem; letter-spacing:.1em; text-transform:uppercase; padding:.35rem .8rem; border-radius:var(--r-pill); }

/* ---------- 26. RESPONSIVE LAYOUTS (replace inline grids) ---------- */
.hero-quickform{ display:grid; grid-template-columns:repeat(4,1fr); gap:1rem; align-items:end; }
.hero-quickform .field{ margin:0; }
.article-grid{ display:grid; grid-template-columns:1fr 340px; gap:clamp(2rem,5vw,4rem); align-items:flex-start; }

@media (max-width:1024px){
  .hero-quickform{ grid-template-columns:1fr 1fr; }
}
@media (max-width:980px){
  .article-grid{ grid-template-columns:1fr; }
  .article-grid aside{ position:static !important; }
}
@media (max-width:600px){
  .header-cta .btn-primary{ display:none; }    /* Book stays in drawer + sticky bottom bar */
  .hero-quickform{ grid-template-columns:1fr; }
  .reviews-head{ flex-direction:column; }
  .reviews-head .g-rating, .reviews-head .btn{ width:100%; justify-content:center; }
}
/* Mobile homepage reorder: lead with real results + video proof (desktop unchanged) */
@media (max-width:860px){
  body.home main{ display:flex; flex-direction:column; }
  body.home main > section{ order:5; }
  body.home .hero{ order:1; }
  body.home #results{ order:2; }   /* before/after showcase right after hero */
  body.home #why{ order:3; }       /* Why MIRARI Plus */
  body.home #reels{ order:4; }     /* Instagram reels, right after Why MIRARI Plus */
  body.home #ba-preview{ display:none; }  /* redundant once full showcase is at top */
  body.home #growth-timeline{ display:none; }  /* trim one text-only section on mobile */
}

@media (max-width:480px){
  .steps{ grid-template-columns:1fr; }
  .testi{ flex-basis:88vw; padding:1.5rem; }
  .cta-banner{ padding:2rem 1.3rem; }
  h1{ font-size:2rem; }
}
@media (max-width:360px){
  body{ font-size:16px; }
  .btn{ padding:0.85rem 1.2rem; }
}

/* utilities */
.hide{display:none!important;} .nowrap{white-space:nowrap;}
.maxw-sm{max-width:540px;} .mx-auto{margin-inline:auto;}
