﻿/* ══════════════════════════════════════════════════════════
   HEAD TO TOE BEAUTY & SPA, PREMIUM ENHANCED STYLESHEET
   ══════════════════════════════════════════════════════════ */

:root {
  --bg:       #F7F5F1;
  --ink:      #1C1C17;
  --forest:   #0F3D2E;
  --forest-lt:#1a5c42;
  --gold:     #C9A84C;
  --gold-lt:  #e2c06a;
  --gold-dk:  #a8872e;
  --ivory:    #F7F5F1;
  --beige:    #EDE9E3;
  --muted:    rgba(28,28,23,0.42);
  --rule:     rgba(28,28,23,0.09);
  --white:    #FDFCFA;

  --serif:    'Cormorant Garamond', Georgia, serif;
  --sans:     'Inter', system-ui, sans-serif;
  --ease:     cubic-bezier(0.16, 1, 0.3, 1);
}

/* ─── RESET ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family:     var(--sans);
  font-weight:     300;
  background:      var(--bg);
  color:           var(--ink);
  overflow-x:      hidden;
  line-height:     1.6;
  -webkit-font-smoothing: antialiased;
  cursor: none;
}
img  { display: block; max-width: 100%; }
a    { text-decoration: none; color: inherit; }
button { font-family: var(--sans); }
::selection { background: rgba(201,168,76,0.2); color: var(--forest); }
:focus-visible { outline: 1px solid var(--gold); outline-offset: 3px; }

/* ─── PARTICLES CANVAS ────────────────────────────────────── */
#particles {
  position: fixed; top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 1;
  opacity: 0.55;
}

/* ─── CURSOR, DOT + RING ─────────────────────────────────── */
.cursor-dot {
  position:       fixed;
  width:          6px; height: 6px;
  background:     var(--gold);
  border-radius:  50%;
  pointer-events: none;
  z-index:        100000;
  transform:      translate(-50%,-50%);
  transition:     opacity .25s, width .2s, height .2s;
  will-change:    left, top;
}
.cursor-dot.hidden { opacity: 0; width: 0; height: 0; }

.cursor-glow {
  position:       fixed;
  width:          38px; height: 38px;
  background:     transparent;
  border:         1.5px solid rgba(201,168,76,0.45);
  border-radius:  50%;
  pointer-events: none;
  z-index:        99999;
  transform:      translate(-50%,-50%);
  transition:     width .45s cubic-bezier(0.16,1,0.3,1),
                  height .45s cubic-bezier(0.16,1,0.3,1),
                  border-color .35s,
                  background .35s;
  will-change:    left, top;
}
.cursor-glow.big {
  width:          68px; height: 68px;
  background:     rgba(201,168,76,0.04);
  border-color:   rgba(201,168,76,0.75);
}
@media (pointer: coarse) {
  .cursor-glow, .cursor-dot { display: none; }
  body { cursor: auto; }
}

/* ─── SCROLL PROGRESS ─────────────────────────────────────── */
.progress {
  position: fixed; top: 0; left: 0;
  height: 2px; width: 0%;
  background: linear-gradient(90deg, var(--gold), var(--gold-lt));
  z-index: 9999;
  transition: width .08s linear;
}

/* ─── REVEAL ANIMATION ────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 1s var(--ease), transform 1s var(--ease);
}
.reveal.in { opacity: 1; transform: none; }
.d1 { transition-delay: .10s; }
.d2 { transition-delay: .20s; }
.d3 { transition-delay: .30s; }
.d4 { transition-delay: .40s; }
.d5 { transition-delay: .50s; }
.d6 { transition-delay: .60s; }
.d7 { transition-delay: .70s; }

/* ─── SHARED COMPONENTS ───────────────────────────────────── */
.eyebrow {
  display:        block;
  font-size:      10px;
  font-weight:    500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color:          var(--gold);
  margin-bottom:  20px;
}
.section-head {
  max-width:     1200px;
  margin:        0 auto 64px;
  padding:       0 48px;
}
.section-head.centered { text-align: center; }
.section-head.centered .section-sub { margin: 0 auto; }
.section-head.dark .section-title,
.section-head.dark .section-sub { color: var(--ivory); }
.section-head.dark .section-sub { color: rgba(247,245,241,0.55); }

.section-title {
  font-family:   var(--serif);
  font-size:     clamp(36px, 5vw, 64px);
  font-weight:   400;
  line-height:   1.15;
  color:         var(--forest);
  margin-bottom: 20px;
}
.section-title em { font-style: italic; color: var(--gold); font-weight: 300; }
.section-sub {
  font-size:   16px;
  font-weight: 300;
  color:       var(--muted);
  max-width:   560px;
  line-height: 1.75;
}

/* ─── BUTTONS ─────────────────────────────────────────────── */
.btn-primary {
  display:         inline-flex;
  align-items:     center;
  gap:             10px;
  padding:         16px 36px;
  background:      var(--forest);
  color:           var(--gold);
  font-size:       11px;
  font-weight:     500;
  letter-spacing:  0.2em;
  text-transform:  uppercase;
  border:          none;
  cursor:          pointer;
  position:        relative;
  overflow:        hidden;
  transition:      color .4s var(--ease);
  text-decoration: none;
}
.btn-primary::before {
  content:    '';
  position:   absolute;
  inset:      0;
  background: var(--gold);
  transform:  translateX(-101%);
  transition: transform .45s var(--ease);
}
.btn-primary:hover { color: var(--forest); }
.btn-primary:hover::before { transform: translateX(0); }
.btn-primary span { position: relative; z-index: 1; }

.btn-ghost {
  display:         inline-flex;
  align-items:     center;
  padding:         15px 36px;
  background:      transparent;
  color:           var(--forest);
  font-size:       11px;
  font-weight:     500;
  letter-spacing:  0.2em;
  text-transform:  uppercase;
  border:          1px solid rgba(15,61,46,0.35);
  cursor:          pointer;
  transition:      all .4s var(--ease);
  text-decoration: none;
}
.btn-ghost:hover { background: var(--forest); color: var(--gold); border-color: var(--forest); }


/* ══════════════════════════════════════════════════════════
   HEADER
   ══════════════════════════════════════════════════════════ */
/* ─── HEADER TOPBAR ───────────────────────────────────────── */
.header-topbar {
  background:    rgba(0,0,0,0.22);
  border-bottom: 1px solid rgba(201,168,76,0.10);
  transition:    height .45s cubic-bezier(0.16,1,0.3,1),
                 opacity .4s ease,
                 border-color .4s;
  overflow:      hidden;
}
.htb-inner {
  max-width:   1440px;
  margin:      0 auto;
  padding:     0 48px;
  height:      36px;
  display:     flex;
  align-items: center;
  justify-content: space-between;
}
.htb-tagline {
  font-size:      9px;
  font-weight:    500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color:          rgba(247,245,241,0.32);
}
.htb-contacts {
  display:     flex;
  align-items: center;
  gap:         16px;
}
.htb-link {
  display:     flex;
  align-items: center;
  gap:         6px;
  font-size:   10px;
  font-weight: 400;
  letter-spacing: 0.04em;
  color:       rgba(247,245,241,0.48);
  transition:  color .3s;
}
.htb-link:hover { color: var(--gold-lt); }
.htb-wa:hover   { color: #6ee7a0; }
.htb-sep { color: rgba(247,245,241,0.12); font-size: 10px; user-select: none; }

/* ─── MAIN HEADER ─────────────────────────────────────────── */
.header {
  position: fixed; top: 0; left: 0; right: 0;
  z-index:  1000;
  background: linear-gradient(135deg, #0F3B2E 0%, #123F33 100%);
  border-bottom: 1px solid rgba(201,168,76,0.10);
  transition: box-shadow .5s;
}
.header.solid {
  box-shadow: 0 2px 40px rgba(0,0,0,0.35);
}

.header-inner {
  max-width:    1440px;
  margin:       0 auto;
  padding:      0 48px;
  height:       100px;
  transition:   height .45s cubic-bezier(0.16,1,0.3,1);
  display:      flex;
  align-items:  center;
  gap:          40px;
}

.header-logo {
  display:     flex;
  align-items: center;
  margin-right: auto;
}
.logo-img {
  height:      90px;
  width:       auto;
  max-width:   280px;
  object-fit:  contain;
  border-radius: 0;
  opacity:     0.95;
  transition:  opacity .4s, height .45s cubic-bezier(0.16,1,0.3,1);
}
.header-logo:hover .logo-img { opacity: 1; }

.header-nav { display: flex; gap: 40px; }
.header-nav a {
  font-size:       10.5px;
  font-weight:     400;
  letter-spacing:  0.16em;
  text-transform:  uppercase;
  color:           rgba(247,245,241,0.72);
  position:        relative;
  transition:      color .3s;
  padding:         6px 0;
  white-space:     nowrap;
}
.header-nav a::after {
  content:    '';
  position:   absolute;
  bottom: 0; left: 0;
  width:      0; height: 1px;
  background: var(--gold);
  transition: width .4s var(--ease);
}
.header-nav a:hover { color: rgba(247,245,241,1); }
.header-nav a:hover::after { width: 100%; }

.header-actions {
  display:     flex;
  align-items: center;
  gap:         14px;
  flex-shrink: 0;
}
.header-call {
  display:     flex;
  align-items: center;
  gap:         7px;
  font-size:   10px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color:       rgba(247,245,241,0.55);
  border:      1px solid rgba(247,245,241,0.15);
  padding:     9px 16px;
  transition:  all .3s var(--ease);
  white-space: nowrap;
}
.header-call:hover {
  color:       rgba(247,245,241,0.95);
  border-color: rgba(247,245,241,0.35);
}
.header-book {
  display:         flex;
  align-items:     center;
  gap:             8px;
  padding:         11px 28px;
  background:      var(--gold);
  color:           #0F3B2E;
  font-size:       10px;
  font-weight:     700;
  letter-spacing:  0.18em;
  text-transform:  uppercase;
  border:          none;
  cursor:          pointer;
  transition:      all .35s var(--ease);
  white-space:     nowrap;
  box-shadow:      0 0 0 0 rgba(201,168,76,0.4);
}
.header-book:hover {
  background:  var(--gold-lt);
  box-shadow:  0 0 24px rgba(201,168,76,0.35);
  transform:   translateY(-1px);
}

.header-menu {
  display:         none;
  flex-direction:  column;
  gap:             5px;
  background:      none;
  border:          none;
  cursor:          pointer;
  padding:         4px;
}
.header-menu span { display: block; width: 22px; height: 1.5px; background: rgba(247,245,241,0.85); transition: all .3s; }

/* ─── DRAWER ──────────────────────────────────────────────── */
.drawer {
  position:   fixed;
  top: 0; right: -100%;
  width:      min(340px,100vw);
  height:     100vh;
  background: var(--forest);
  z-index:    2000;
  padding:    80px 48px 48px;
  display:    flex;
  flex-direction: column;
  transition: right .55s var(--ease);
}
.drawer.open { right: 0; }
.drawer-close {
  position: absolute; top: 24px; right: 24px;
  background: none; border: none;
  font-size: 26px; color: rgba(247,245,241,.35);
  cursor: pointer; transition: color .3s; line-height: 1;
}
.drawer-close:hover { color: var(--gold); }
.drawer-nav { display: flex; flex-direction: column; gap: 4px; margin-bottom: auto; }
.drawer-nav a {
  font-family: var(--serif);
  font-size:   30px;
  font-weight: 300;
  color:       rgba(247,245,241,.65);
  padding:     12px 0;
  border-bottom: 1px solid rgba(247,245,241,.07);
  transition: color .3s;
}
.drawer-nav a:hover { color: var(--gold); }
.drawer-book {
  display:        block;
  text-align:     center;
  padding:        16px;
  border:         1px solid rgba(201,168,76,.4);
  color:          var(--gold);
  font-size:      11px;
  font-weight:    500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-top:     40px;
  transition:     all .4s;
}
.drawer-book:hover { background: var(--gold); color: var(--forest); }
.drawer-veil {
  position: fixed; inset: 0;
  background: rgba(8,20,14,.6);
  z-index: 1999;
  opacity: 0; pointer-events: none;
  transition: opacity .4s;
  backdrop-filter: blur(4px);
}
.drawer-veil.show { opacity: 1; pointer-events: all; }


/* ══════════════════════════════════════════════════════════
   HERO, PREMIUM ENHANCED
   ══════════════════════════════════════════════════════════ */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100vh;
  position: relative;
  overflow: hidden;
}

.hero-left {
  display:        flex;
  flex-direction: column;
  justify-content: center;
  padding:        196px 72px 110px;
  background:     var(--bg);
  position:       relative;
  z-index:        2;
}

.hero-badge {
  font-size:      10px;
  font-weight:    500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color:          var(--gold);
  margin-bottom:  52px;
  display:        block;
}

/* Gold glow orb behind headline */
.hero-glow-orb {
  position:        absolute;
  top:             35%;
  left:            -80px;
  width:           500px;
  height:          500px;
  border-radius:   50%;
  background:      radial-gradient(circle, rgba(201,168,76,0.08) 0%, transparent 68%);
  pointer-events:  none;
  animation:       orbPulse 6s ease-in-out infinite;
}
@keyframes orbPulse {
  0%,100% { opacity: .6; transform: scale(1); }
  50%      { opacity: 1; transform: scale(1.06); }
}

.hero-h1 {
  font-family:   var(--serif);
  font-size:     clamp(52px, 6.5vw, 100px);
  font-weight:   300;
  line-height:   1.07;
  color:         var(--forest);
  margin-bottom: 32px;
  display:       flex;
  flex-direction: column;
  position:      relative;
  z-index:       1;
}
.hero-h1 em { font-style: italic; }
.hero-h1 .gold { color: var(--gold); font-style: italic; }
.h-line { display: block; }

.hero-sub {
  font-size:     17px;
  font-weight:   300;
  font-style:    italic;
  color:         var(--muted);
  line-height:   1.75;
  max-width:     480px;
  margin-bottom: 44px;
  position:      relative;
  z-index:       1;
}

.hero-actions {
  display:       flex;
  gap:           16px;
  flex-wrap:     wrap;
  margin-bottom: 56px;
  position:      relative;
  z-index:       1;
}

.hero-divider {
  width:      56px;
  height:     1px;
  background: linear-gradient(90deg, var(--gold), transparent);
  margin-bottom: 28px;
}

.hero-stats {
  display:     flex;
  align-items: center;
  gap:         28px;
  position:    relative;
  z-index:     1;
}
.hstat { display: flex; flex-direction: column; gap: 3px; }
.hstat-n {
  font-family:  var(--serif);
  font-size:    34px;
  font-weight:  500;
  color:        var(--forest);
  line-height:  1;
}
.hstat-l {
  font-size:      9px;
  font-weight:    500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color:          var(--muted);
}
.hstat-sep { width: 1px; height: 36px; background: var(--rule); }

.hero-right {
  position:   relative;
  overflow:   hidden;
  background: url('Hero%20Section.png') center / cover no-repeat;
}
.hero-right::before {
  content:  '';
  position: absolute; inset: 0;
  background: linear-gradient(
    to right,
    rgba(8, 24, 16, 0.35) 0%,
    rgba(8, 24, 16, 0.15) 100%
  );
  pointer-events: none;
}
.hero-right::after {
  content: none;
}
.hero-img-wrap { position: absolute; inset: 0; }
.hero-img {
  position:   absolute;
  inset:      0;
  width:      100%;
  height:     100%;
  object-fit: cover;
  object-position: center;
}
.hero-img-veil { display: none; }

.hero-float-badge {
  position:   absolute;
  bottom:     40px; left: 36px;
  background: rgba(247,245,241,0.1);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border:     1px solid rgba(201,168,76,0.3);
  padding:    18px 22px;
  display:    flex;
  align-items: center;
  gap:        12px;
}
.hfb-icon { font-size: 20px; color: var(--gold); }
.hfb-text { font-size: 13px; font-style: italic; color: rgba(247,245,241,0.85); line-height: 1.5; }

.hero-scroll {
  position:   absolute;
  bottom:     40px; left: 50%;
  transform:  translateX(-50%);
  display:    flex;
  flex-direction: column;
  align-items: center;
  gap:        10px;
  z-index:    5;
}
.hs-line {
  width:      1px; height: 48px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation:  scrollPulse 2.2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%,100% { opacity: 1; transform: scaleY(1); transform-origin: top; }
  50%      { opacity: .3; transform: scaleY(.5); transform-origin: top; }
}
.hs-label {
  font-size: 9px; font-weight: 600;
  letter-spacing: .22em; text-transform: uppercase;
  color: var(--gold-dk);
}


/* ══════════════════════════════════════════════════════════
   MANIFESTO
   ══════════════════════════════════════════════════════════ */
.manifesto { padding: 180px 48px; text-align: center; }
.manifesto-inner { max-width: 740px; margin: 0 auto; }
.manifesto-quote {
  font-family:   var(--serif);
  font-style:    italic;
  font-weight:   300;
  font-size:     clamp(24px, 3.5vw, 48px);
  line-height:   1.55;
  color:         var(--forest);
  quotes:        none;
  margin-bottom: 44px;
}
.manifesto-rule { width: 48px; height: 1px; background: var(--gold); margin: 0 auto 32px; }
.manifesto-cite {
  display: block; font-style: normal;
  font-size: 10px; font-weight: 500;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--muted);
}


/* ══════════════════════════════════════════════════════════
   TREATMENTS, CARD GRID
   ══════════════════════════════════════════════════════════ */
.treatments {
  padding: 120px 0 140px;
  background: var(--beige);
}
.treatments .section-head { margin-bottom: 48px; }

/* Category filter */
.cat-filter {
  max-width:    1200px;
  margin:       0 auto 56px;
  padding:      0 48px;
  display:      flex;
  flex-wrap:    wrap;
  gap:          10px;
}
.cat-btn {
  padding:        10px 22px;
  border:         1px solid var(--rule);
  background:     var(--white);
  color:          var(--muted);
  font-size:      11px;
  font-weight:    500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor:         pointer;
  transition:     all .35s var(--ease);
  border-radius:  2px;
}
.cat-btn:hover { border-color: var(--gold); color: var(--gold-dk); }
.cat-btn.active { background: var(--forest); color: var(--gold); border-color: var(--forest); }

/* Service grid */
.services-grid {
  max-width:    1200px;
  margin:       0 auto;
  padding:      0 48px;
  display:      grid;
  grid-template-columns: repeat(3, 1fr);
  gap:          24px;
}
.svc-card {
  background:  var(--white);
  overflow:    hidden;
  cursor:      pointer;
  transition:  transform .5s var(--ease), box-shadow .5s var(--ease), opacity .6s;
}
.svc-card:hover {
  transform:  translateY(-6px);
  box-shadow: 0 20px 60px rgba(15,61,46,0.12);
}
.svc-card.hidden { display: none; }

.svc-card-img {
  position:            relative;
  height:              360px;
  background-image:    var(--bg);
  background-size:     cover;
  background-position: center center;
  background-repeat:   no-repeat;
  overflow:            hidden;
}
[style*="--bg"] .svc-card-img { background-image: var(--bg); }
.svc-card-img::before {
  content: '';
  position: absolute; inset: 0;
  background-image:    var(--bg);
  background-size:     cover;
  background-position: center center;
  background-repeat:   no-repeat;
  transition: transform .7s var(--ease);
}
.svc-card:hover .svc-card-img::before { transform: scale(1.04); }

.svc-card-img {
  transition: all .7s var(--ease);
}
.svc-card:hover .svc-card-img { background-size: cover; }

.svc-card-overlay {
  position:   absolute; inset: 0;
  background: linear-gradient(to top, rgba(15,61,46,0.55), rgba(15,61,46,0.08));
  transition: background .4s;
}
.svc-card:hover .svc-card-overlay { background: linear-gradient(to top, rgba(15,61,46,0.70), rgba(15,61,46,0.15)); }

.svc-card-era {
  position:       absolute;
  top:            16px; left: 16px;
  font-size:      9px;
  font-weight:    600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color:          var(--gold);
  background:     rgba(15,61,46,0.6);
  backdrop-filter: blur(8px);
  padding:        5px 10px;
}

.svc-card-body { padding: 24px; }
.svc-card-cat {
  display:        block;
  font-size:      9px;
  font-weight:    500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color:          var(--gold);
  margin-bottom:  10px;
}
.svc-card-name {
  font-family:   var(--serif);
  font-size:     24px;
  font-weight:   500;
  color:         var(--forest);
  line-height:   1.2;
  margin-bottom: 10px;
}
.svc-card-line {
  font-size:     13px;
  font-weight:   300;
  font-style:    italic;
  color:         var(--muted);
  line-height:   1.6;
  margin-bottom: 18px;
}
.svc-card-btn {
  display:         inline-flex;
  align-items:     center;
  gap:             6px;
  font-size:       10px;
  font-weight:     600;
  letter-spacing:  0.18em;
  text-transform:  uppercase;
  color:           var(--forest);
  background:      none;
  border:          none;
  cursor:          pointer;
  padding:         0;
  transition:      color .3s, gap .3s;
}
.svc-card-btn:hover { color: var(--gold-dk); gap: 10px; }


/* ══════════════════════════════════════════════════════════
   HERITAGE TIMELINE
   ══════════════════════════════════════════════════════════ */
.heritage-section {
  background: var(--forest);
  padding:    120px 0 100px;
  overflow:   hidden;
}

.timeline-wrap {
  position: relative;
  padding:  0 48px;
  max-width: 1400px;
  margin:   0 auto;
}
.timeline-track {
  display:     flex;
  gap:         24px;
  overflow-x:  auto;
  scrollbar-width: none;
  scroll-behavior: smooth;
  cursor:      grab;
  padding-bottom: 8px;
}
.timeline-track:active { cursor: grabbing; }
.timeline-track::-webkit-scrollbar { display: none; }

.tl-card {
  flex-shrink:   0;
  width:         280px;
  border:        1px solid rgba(201,168,76,0.18);
  padding:       36px 28px;
  background:    rgba(255,255,255,0.04);
  position:      relative;
  overflow:      hidden;
  transition:    all .4s var(--ease);
}
.tl-card::before {
  content: ''; position: absolute;
  top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  transform: scaleX(0); transform-origin: left;
  transition: transform .4s var(--ease);
}
.tl-card:hover { background: rgba(201,168,76,0.06); border-color: rgba(201,168,76,0.4); transform: translateY(-4px); }
.tl-card:hover::before { transform: scaleX(1); }

.tl-era {
  font-size:      9px;
  font-weight:    600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color:          var(--gold);
  margin-bottom:  16px;
  display:        block;
}
.tl-icon { font-size: 32px; margin-bottom: 16px; display: block; }
.tl-name {
  font-family:   var(--serif);
  font-size:     22px;
  font-weight:   500;
  color:         var(--ivory);
  margin-bottom: 12px;
}
.tl-desc {
  font-size:   13px;
  font-weight: 300;
  color:       rgba(247,245,241,.55);
  line-height: 1.65;
}

.tl-nav { display: flex; justify-content: center; gap: 12px; margin-top: 40px; }
.tl-btn {
  width:      44px; height: 44px;
  border-radius: 50%;
  border:     1px solid rgba(201,168,76,0.3);
  background: transparent;
  color:      var(--gold);
  cursor:     pointer;
  font-size:  16px;
  transition: all .3s;
}
.tl-btn:hover { background: var(--gold); color: var(--forest); border-color: var(--gold); }


/* ══════════════════════════════════════════════════════════
   RIZELLE METHOD, ENHANCED
   ══════════════════════════════════════════════════════════ */
.rizelle {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 88vh;
}
.riz-image {
  position: relative;
  overflow: hidden;
}
.riz-image img {
  position:   absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: top center;
}
.riz-content {
  display:         flex;
  flex-direction:  column;
  justify-content: center;
  padding:         100px 80px;
  background:      var(--bg);
}
.riz-h2 {
  font-family:   var(--serif);
  font-size:     clamp(34px, 4vw, 58px);
  font-weight:   300;
  line-height:   1.18;
  color:         var(--forest);
  margin-bottom: 28px;
}
.riz-h2 em { font-style: italic; color: var(--gold); }
.riz-body {
  font-size:     16px;
  font-weight:   300;
  color:         var(--muted);
  line-height:   1.85;
  max-width:     440px;
  margin-bottom: 36px;
}

.riz-pillars { display: flex; flex-direction: column; gap: 20px; margin-bottom: 40px; }
.riz-pillar { display: flex; gap: 16px; align-items: flex-start; }
.rp-icon {
  color:     var(--gold);
  font-size: 14px;
  margin-top: 3px;
  flex-shrink: 0;
}
.riz-pillar h4 {
  font-family:   var(--serif);
  font-size:     18px;
  font-weight:   500;
  color:         var(--forest);
  margin-bottom: 4px;
}
.riz-pillar p { font-size: 13px; color: var(--muted); line-height: 1.65; }

.riz-stats { display: flex; align-items: center; gap: 24px; margin-bottom: 40px; }
.riz-stat { display: flex; flex-direction: column; gap: 3px; }
.rsn { font-family: var(--serif); font-size: 30px; font-weight: 500; color: var(--forest); line-height: 1; }
.rsl { font-size: 9px; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted); }
.riz-sdiv { width: 1px; height: 32px; background: var(--rule); }

.riz-link {
  display:     inline-flex;
  align-items: center;
  gap:         8px;
  font-family: var(--serif);
  font-size:   18px;
  font-style:  italic;
  color:       var(--forest);
  width:       fit-content;
  position:    relative;
  transition:  color .4s;
}
.riz-link::after {
  content: ''; position: absolute;
  bottom: -3px; left: 0;
  width: 100%; height: 1px;
  background: var(--forest);
  transform: scaleX(0.3); transform-origin: left;
  transition: transform .4s var(--ease), background .4s;
}
.riz-link:hover { color: var(--gold-dk); }
.riz-link:hover::after { transform: scaleX(1); background: var(--gold); }
.riz-link span { font-style: normal; transition: transform .4s var(--ease); }
.riz-link:hover span { transform: translateX(5px); }


/* ══════════════════════════════════════════════════════════
   WHAT WE SOLVE
   ══════════════════════════════════════════════════════════ */
.solve-section { padding: 140px 0; background: var(--beige); }
.solve-section .section-head { margin-bottom: 64px; }

.solve-grid {
  max-width: 1200px;
  margin:    0 auto;
  padding:   0 48px;
  display:   grid;
  grid-template-columns: repeat(3, 1fr);
  gap:       2px;
}
.solve-card {
  background: var(--white);
  padding:    40px 32px;
  position:   relative;
  overflow:   hidden;
  transition: all .45s var(--ease);
}
.solve-card::after {
  content: ''; position: absolute;
  bottom: 0; left: 0; right: 0; height: 3px;
  background: var(--gold);
  transform: scaleX(0); transform-origin: left;
  transition: transform .45s var(--ease);
}
.solve-card:hover { background: var(--bg); transform: translateY(-3px); }
.solve-card:hover::after { transform: scaleX(1); }

.sc-num {
  font-family:   var(--serif);
  font-size:     52px;
  font-weight:   300;
  color:         rgba(15,61,46,0.07);
  line-height:   1;
  margin-bottom: 20px;
}
.sc-title {
  font-family:   var(--serif);
  font-size:     22px;
  font-weight:   500;
  color:         var(--forest);
  margin-bottom: 12px;
  line-height:   1.25;
}
.sc-body {
  font-size:     14px;
  font-weight:   300;
  color:         var(--muted);
  line-height:   1.7;
  margin-bottom: 20px;
}
.sc-treat {
  display:        block;
  font-size:      10px;
  font-weight:    500;
  letter-spacing: 0.1em;
  color:          var(--gold-dk);
  font-style:     italic;
}


/* ══════════════════════════════════════════════════════════
   SIGNATURE PACKAGES
   ══════════════════════════════════════════════════════════ */
.packages-section { background: var(--forest); padding: 140px 0; }
.pkg-grid {
  max-width:    1200px;
  margin:       64px auto 0;
  padding:      0 48px;
  display:      grid;
  grid-template-columns: repeat(3,1fr);
  gap:          24px;
  align-items:  stretch;
}
.pkg-card {
  border:     1px solid rgba(201,168,76,0.2);
  padding:    40px 32px;
  background: rgba(255,255,255,0.04);
  position:   relative;
  transition: all .45s var(--ease);
  display:    flex;
  flex-direction: column;
}
.pkg-card:hover { background: rgba(201,168,76,0.06); border-color: rgba(201,168,76,0.5); transform: translateY(-4px); }
.pkg-card.featured { border-color: var(--gold); background: rgba(201,168,76,0.06); transform: translateY(-10px); }
.pkg-card.featured:hover { transform: translateY(-14px); }
.pkg-featured-tag {
  position: absolute; top: -14px; left: 50%;
  transform: translateX(-50%);
  background: var(--gold); color: var(--forest);
  font-size: 9px; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
  padding: 5px 16px; white-space: nowrap;
}
.pkg-tier {
  font-size: 9px; font-weight: 700;
  letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 10px;
}
.pkg-name {
  font-family:   var(--serif);
  font-size:     28px;
  font-weight:   400;
  color:         var(--ivory);
  margin-bottom: 8px;
}
.pkg-duration { font-size: 12px; color: rgba(247,245,241,.4); margin-bottom: 20px; }
.pkg-divider { width: 36px; height: 1px; background: var(--gold); opacity: .5; margin-bottom: 20px; }
.pkg-list { list-style: none; margin-bottom: 24px; flex: 1; }
.pkg-list li {
  font-size:     13px;
  color:         rgba(247,245,241,.65);
  padding:       9px 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
  line-height:   1.5;
}
.pkg-list li:last-child { border-bottom: none; }
.pkg-list li::before { content: ' '; color: var(--gold); font-weight: 300; }
.pkg-philosophy {
  font-family:  var(--serif);
  font-style:   italic;
  font-size:    14px;
  color:        rgba(201,168,76,.65);
  border-left:  2px solid rgba(201,168,76,.25);
  padding:      10px 16px;
  margin-bottom: 28px;
  line-height:  1.6;
}
.pkg-btn {
  display:         block;
  text-align:      center;
  padding:         13px 24px;
  border:          1px solid rgba(201,168,76,.5);
  color:           var(--gold);
  font-size:       10px;
  font-weight:     600;
  letter-spacing:  0.18em;
  text-transform:  uppercase;
  transition:      all .35s;
  text-decoration: none;
}
.pkg-btn:hover { background: var(--gold); color: var(--forest); border-color: var(--gold); }
.pkg-card.featured .pkg-btn { background: var(--gold); color: var(--forest); }
.pkg-card.featured .pkg-btn:hover { background: var(--gold-lt); border-color: var(--gold-lt); }


/* ══════════════════════════════════════════════════════════
   PRICING SECTION
   ══════════════════════════════════════════════════════════ */
.pricing-section {
  position:   relative;
  padding:    140px 0 120px;
  background: #0a1f14;
  overflow:   hidden;
}

.pricing-bg-pattern {
  position:   absolute; inset: 0;
  background-image:
    radial-gradient(circle at 15% 20%, rgba(201,168,76,0.06) 0%, transparent 50%),
    radial-gradient(circle at 85% 75%, rgba(201,168,76,0.05) 0%, transparent 50%),
    radial-gradient(circle at 50% 50%, rgba(15,61,46,0.4) 0%, transparent 70%);
  pointer-events: none;
}

.pricing-section .section-head { position: relative; z-index: 1; }
.pricing-section .eyebrow { color: var(--gold); }
.pricing-section .section-title { color: var(--ivory); }
.pricing-section .section-title em { color: var(--gold); font-style: italic; }
.pricing-section .section-sub { color: rgba(247,245,241,0.55); }

.pricing-promo {
  display:         flex;
  align-items:     center;
  justify-content: center;
  gap:             18px;
  margin:          32px auto 64px;
  font-family:     var(--sans);
  font-size:       0.85rem;
  letter-spacing:  0.12em;
  text-transform:  uppercase;
  color:           rgba(247,245,241,0.7);
  position:        relative; z-index: 1;
}
.pricing-promo strong { color: var(--gold); font-weight: 600; }
.pricing-promo-icon { color: var(--gold); font-size: 0.6rem; opacity: 0.7; }

.pricing-grid {
  display:               grid;
  grid-template-columns: 1fr 1fr;
  gap:                   32px;
  max-width:             1160px;
  margin:                0 auto;
  padding:               0 40px;
  position:              relative; z-index: 1;
}

.pricing-category {
  display:        flex;
  flex-direction: column;
  gap:            12px;
}

.pricing-cat-header {
  padding-bottom: 16px;
  border-bottom:  1px solid rgba(201,168,76,0.25);
  margin-bottom:  4px;
}
.pricing-cat-label {
  font-family:    var(--sans);
  font-size:      0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color:          var(--gold);
  font-weight:    500;
}

.pricing-card {
  border:        1px solid rgba(201,168,76,0.12);
  border-radius: 3px;
  background:    rgba(255,255,255,0.03);
  transition:    background 0.3s var(--ease), border-color 0.3s var(--ease), transform 0.3s var(--ease);
}
.pricing-card:hover {
  background:    rgba(201,168,76,0.05);
  border-color:  rgba(201,168,76,0.3);
  transform:     translateY(-2px);
}
.pricing-card-inner {
  padding: 22px 26px;
}

.pricing-name {
  font-family:    var(--serif);
  font-size:      1.18rem;
  font-weight:    400;
  color:          var(--ivory);
  letter-spacing: 0.01em;
  margin-bottom:  16px;
  line-height:    1.35;
}

.pricing-tiers {
  display:               grid;
  grid-template-columns: repeat(3, 1fr);
  gap:                   8px;
}
.pricing-tier {
  display:         flex;
  flex-direction:  column;
  align-items:     flex-start;
  gap:             3px;
  padding:         10px 12px;
  background:      rgba(255,255,255,0.03);
  border:          1px solid rgba(255,255,255,0.06);
  border-radius:   2px;
  transition:      background 0.25s;
}
.pricing-card:hover .pricing-tier {
  background: rgba(201,168,76,0.06);
}
.tier-dur {
  font-size:      0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color:          rgba(247,245,241,0.4);
  font-family:    var(--sans);
}
.tier-price {
  font-family:    var(--serif);
  font-size:      1.15rem;
  color:          var(--gold);
  font-weight:    500;
  letter-spacing: 0.02em;
}

.pricing-note {
  display:         flex;
  align-items:     center;
  justify-content: center;
  gap:             24px;
  margin-top:      72px;
  padding:         0 40px;
  position:        relative; z-index: 1;
}
.pricing-note p {
  font-size:      0.78rem;
  letter-spacing: 0.08em;
  color:          rgba(247,245,241,0.35);
  text-align:     center;
  white-space:    nowrap;
}
.pricing-note-line {
  flex:             1;
  max-width:        200px;
  height:           1px;
  background:       linear-gradient(to right, transparent, rgba(201,168,76,0.25));
}
.pricing-note-line:last-child {
  background: linear-gradient(to left, transparent, rgba(201,168,76,0.25));
}

@media (max-width: 768px) {
  .pricing-grid { grid-template-columns: 1fr; padding: 0 20px; gap: 40px; }
  .pricing-tiers { grid-template-columns: repeat(3,1fr); gap: 6px; }
  .pricing-card-inner { padding: 18px 16px; }
  .pricing-note p { white-space: normal; }
}

/* ══════════════════════════════════════════════════════════
   20% OFF OFFER POPUP
   ══════════════════════════════════════════════════════════ */
.offer-veil {
  position:        fixed; inset: 0;
  background:      rgba(8,20,14,0.75);
  backdrop-filter: blur(6px);
  z-index:         4000;
  opacity:         0;
  pointer-events:  none;
  transition:      opacity .45s var(--ease);
}
.offer-veil.open { opacity: 1; pointer-events: all; }

.offer-popup {
  position:    fixed;
  top:         50%; left: 50%;
  transform:   translate(-50%, -46%) scale(0.94);
  z-index:     4001;
  width:       min(840px, 94vw);
  display:     grid;
  grid-template-columns: 220px 1fr;
  background:  #0a1f14;
  border:      1px solid rgba(201,168,76,0.22);
  border-radius: 4px;
  overflow:    hidden;
  opacity:     0;
  pointer-events: none;
  transition:  opacity .45s var(--ease), transform .45s var(--ease);
  box-shadow:  0 40px 100px rgba(0,0,0,0.6), 0 0 0 1px rgba(201,168,76,0.08);
}
.offer-popup.open {
  opacity:        1;
  pointer-events: all;
  transform:      translate(-50%, -50%) scale(1);
}

.offer-close {
  position:   absolute; top: 16px; right: 18px;
  background: none; border: none;
  font-size:  18px;
  color:      rgba(247,245,241,0.3);
  cursor:     pointer;
  line-height: 1;
  transition: color .25s;
  z-index:    1;
}
.offer-close:hover { color: var(--gold); }

.offer-left {
  background:      linear-gradient(160deg, #0f3d2e 0%, #071a0e 100%);
  display:         flex;
  flex-direction:  column;
  align-items:     center;
  justify-content: center;
  gap:             12px;
  padding:         48px 24px;
  border-right:    1px solid rgba(201,168,76,0.15);
  position:        relative;
  overflow:        hidden;
}
.offer-left::before {
  content:       '';
  position:      absolute; inset: 0;
  background:    radial-gradient(circle at 50% 40%, rgba(201,168,76,0.12) 0%, transparent 65%);
  pointer-events: none;
}
.offer-badge {
  display:        flex;
  flex-direction: column;
  align-items:    center;
  line-height:    1;
}
.offer-pct {
  font-family:  var(--serif);
  font-size:    5.5rem;
  font-weight:  600;
  color:        var(--gold);
  letter-spacing: -0.02em;
  line-height:  1;
}
.offer-pct-sign {
  font-size:    3rem;
  vertical-align: super;
}
.offer-off {
  font-family:    var(--sans);
  font-size:      0.75rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color:          rgba(201,168,76,0.7);
  margin-top:     4px;
}
.offer-star {
  font-size:   1rem;
  color:       rgba(201,168,76,0.4);
  margin-top:  8px;
}

.offer-right {
  padding:  52px 44px 44px;
  display:  flex;
  flex-direction: column;
  gap:      0;
}
.offer-eyebrow {
  font-family:    var(--sans);
  font-size:      0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color:          var(--gold);
  display:        block;
  margin-bottom:  16px;
}
.offer-title {
  font-family:  var(--serif);
  font-size:    2.4rem;
  font-weight:  400;
  color:        var(--ivory);
  line-height:  1.2;
  margin-bottom: 18px;
}
.offer-title em {
  color:       var(--gold);
  font-style:  italic;
}
.offer-sub {
  font-size:    0.88rem;
  line-height:  1.7;
  color:        rgba(247,245,241,0.55);
  margin-bottom: 32px;
}
.offer-cta {
  display:         inline-flex;
  align-items:     center;
  padding:         14px 28px;
  background:      var(--gold);
  color:           #0a1f14;
  font-family:     var(--sans);
  font-size:       0.8rem;
  font-weight:     600;
  letter-spacing:  0.12em;
  text-transform:  uppercase;
  border-radius:   2px;
  text-decoration: none;
  transition:      background .3s, transform .3s;
  align-self:      flex-start;
  margin-bottom:   18px;
}
.offer-cta:hover {
  background: var(--gold-lt);
  transform:  translateY(-2px);
}
.offer-dismiss {
  font-size:   0.75rem;
  color:       rgba(247,245,241,0.25);
  cursor:      pointer;
  transition:  color .25s;
  text-decoration: underline;
  text-underline-offset: 3px;
  align-self:  flex-start;
}
.offer-dismiss:hover { color: rgba(247,245,241,0.5); }

@media (max-width: 620px) {
  .offer-popup { grid-template-columns: 1fr; }
  .offer-left {
    padding:      36px 24px 28px;
    border-right: none;
    border-bottom: 1px solid rgba(201,168,76,0.15);
  }
  .offer-pct { font-size: 4rem; }
  .offer-right { padding: 32px 24px 36px; }
  .offer-title { font-size: 1.9rem; }
}

/* ══════════════════════════════════════════════════════════
   PRICING TABS
   ══════════════════════════════════════════════════════════ */
.ptabs-wrap {
  max-width:    1160px;
  margin:       0 auto 48px;
  padding:      0 40px;
  position:     relative; z-index: 1;
}
.ptabs {
  display:                    flex;
  gap:                        8px;
  overflow-x:                 auto;
  scrollbar-width:            none;
  -webkit-overflow-scrolling: touch;
  padding-bottom:             2px;
}
.ptabs::-webkit-scrollbar { display: none; }

.ptab {
  flex-shrink:    0;
  padding:        11px 22px;
  background:     transparent;
  border:         1px solid rgba(201,168,76,0.22);
  border-radius:  2px;
  color:          rgba(247,245,241,0.45);
  font-family:    var(--sans);
  font-size:      0.74rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  cursor:         pointer;
  transition:     all .3s var(--ease);
  white-space:    nowrap;
}
.ptab:hover {
  border-color: rgba(201,168,76,0.5);
  color:        rgba(247,245,241,0.85);
}
.ptab.active {
  background:   var(--gold);
  border-color: var(--gold);
  color:        #0a1f14;
  font-weight:  600;
}

/* ── Tab panels ──────────────────────────────────────────── */
.ptab-panel { display: none; }
.ptab-panel.active {
  display:   block;
  animation: ptabFadeIn .35s var(--ease) both;
}
@keyframes ptabFadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: none; }
}

/* ══════════════════════════════════════════════════════════
   BEAUTY PRICE ROWS
   ══════════════════════════════════════════════════════════ */
.beauty-wrap {
  max-width: 1160px;
  margin:    0 auto;
  padding:   0 40px;
  position:  relative; z-index: 1;
}
.beauty-head {
  text-align:    center;
  margin-bottom: 44px;
}
.beauty-h3 {
  font-family:   var(--serif);
  font-size:     2rem;
  font-weight:   400;
  color:         var(--ivory);
  margin-bottom: 10px;
  letter-spacing: 0.01em;
}
.beauty-sub {
  font-size:   0.88rem;
  color:       rgba(247,245,241,0.45);
  line-height: 1.7;
  max-width:   560px;
  margin:      0 auto;
}

.beauty-grid {
  display:               grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap:                   18px;
}

.beauty-cat-card {
  background:    rgba(255,255,255,0.03);
  border:        1px solid rgba(201,168,76,0.13);
  border-radius: 3px;
  overflow:      hidden;
}
.beauty-cat-title {
  padding:        14px 20px;
  background:     rgba(201,168,76,0.07);
  border-bottom:  1px solid rgba(201,168,76,0.14);
  font-family:    var(--sans);
  font-size:      0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color:          var(--gold);
  font-weight:    500;
}
.beauty-row {
  display:         flex;
  justify-content: space-between;
  align-items:     center;
  padding:         13px 20px;
  gap:             16px;
  border-bottom:   1px solid rgba(255,255,255,0.04);
  transition:      background .2s;
}
.beauty-row:hover   { background: rgba(201,168,76,0.04); }
.beauty-row.last    { border-bottom: none; }
.beauty-name {
  font-family: var(--serif);
  font-size:   0.98rem;
  color:       rgba(247,245,241,0.82);
  line-height: 1.35;
}
.beauty-price {
  font-family: var(--serif);
  font-size:   1.05rem;
  color:       var(--gold);
  font-weight: 500;
  white-space: nowrap;
  flex-shrink: 0;
}

/* ══════════════════════════════════════════════════════════
   FLOATING PRICE LIST BUTTON
   ══════════════════════════════════════════════════════════ */
.price-float {
  position:       fixed;
  bottom:         90px; right: 32px;
  display:        flex;
  align-items:    center;
  gap:            8px;
  padding:        0 16px 0 12px;
  height:         44px;
  background:     #0a1f14;
  border:         1px solid rgba(201,168,76,0.45);
  border-radius:  2px;
  color:          var(--gold);
  font-family:    var(--sans);
  font-size:      0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight:    500;
  cursor:         pointer;
  z-index:        500;
  opacity:        0;
  transform:      translateY(12px);
  pointer-events: none;
  transition:     opacity .4s var(--ease), transform .4s var(--ease), background .25s, color .25s, box-shadow .25s;
  box-shadow:     0 4px 20px rgba(0,0,0,0.45), 0 0 0 1px rgba(201,168,76,0.08);
}
.price-float.show { opacity: 1; transform: none; pointer-events: all; }
.price-float:hover {
  background:  var(--gold);
  color:       #0a1f14;
  box-shadow:  0 6px 28px rgba(201,168,76,0.28);
}
.price-float:hover svg { stroke: #0a1f14; }
.price-float svg { transition: stroke .25s; }

/* ══════════════════════════════════════════════════════════
   HERO PRICE LINK
   ══════════════════════════════════════════════════════════ */
.hero-price-link {
  display:         inline-flex;
  align-items:     center;
  gap:             8px;
  font-family:     var(--sans);
  font-size:       0.7rem;
  letter-spacing:  0.18em;
  text-transform:  uppercase;
  color:           rgba(201,168,76,0.6);
  margin-top:      16px;
  text-decoration: none;
  transition:      color .3s, gap .3s;
}
.hero-price-link:hover { color: var(--gold); gap: 12px; }
.hero-price-link svg   { transition: stroke .3s; }
.hero-price-link:hover svg { stroke: var(--gold); }

/* ══════════════════════════════════════════════════════════
   DRAWER PRICE ELEMENTS
   ══════════════════════════════════════════════════════════ */
.drawer-nav-price {
  color:       var(--gold) !important;
  font-weight: 500;
}
.drawer-price-cta {
  display:         flex;
  align-items:     center;
  gap:             10px;
  margin:          8px 24px 20px;
  padding:         13px 18px;
  background:      rgba(201,168,76,0.08);
  border:          1px solid rgba(201,168,76,0.25);
  border-radius:   2px;
  color:           var(--gold);
  font-family:     var(--sans);
  font-size:       0.74rem;
  letter-spacing:  0.12em;
  text-transform:  uppercase;
  font-weight:     500;
  text-decoration: none;
  transition:      background .25s;
}
.drawer-price-cta:hover { background: rgba(201,168,76,0.15); }

/* ══════════════════════════════════════════════════════════
   RESPONSIVE, PRICING & BEAUTY
   ══════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  .ptabs-wrap  { padding: 0 20px; margin-bottom: 32px; }
  .beauty-wrap { padding: 0 20px; }
  .beauty-grid { grid-template-columns: 1fr; }
  .beauty-h3   { font-size: 1.6rem; }
}
@media (max-width: 680px) {
  .ptabs-wrap   { padding: 0 16px; }
  .ptab         { font-size: 0.68rem; padding: 9px 14px; }
  .beauty-wrap  { padding: 0 16px; }
  .beauty-grid  { gap: 12px; }
  .beauty-row   { padding: 12px 16px; }
  .beauty-name  { font-size: 0.9rem; }
  .price-float  { bottom: 132px; right: 20px; height: 40px; font-size: 0.64rem; padding: 0 14px 0 10px; }
  .pricing-grid { padding: 0 16px; }

  /* Mobile pricing section overrides */
  .pricing-section  { padding: 72px 0 60px; }
  .pricing-tiers    { grid-template-columns: 1fr; gap: 6px; }
  .pricing-tier     { flex-direction: row; justify-content: space-between; align-items: center; padding: 8px 10px; }
  .tier-dur         { font-size: 0.7rem; letter-spacing: 0.1em; }
  .tier-price       { font-size: 1rem; }
  .pricing-card-inner { padding: 16px 14px; }
  .pricing-promo    { margin-bottom: 36px; flex-wrap: wrap; gap: 10px; }
  .pricing-note     { margin-top: 40px; padding: 0 16px; }
  .pricing-note p   { font-size: 0.72rem; }
}

/* ══════════════════════════════════════════════════════════
   EXPERIENCE JOURNEY
   ══════════════════════════════════════════════════════════ */
.journey-section { padding: 140px 0; background: var(--bg); }
.journey-steps {
  max-width:    1100px;
  margin:       0 auto;
  padding:      0 48px;
  display:      flex;
  align-items:  flex-start;
  gap:          0;
  flex-wrap:    wrap;
}
.j-step {
  flex:     1;
  min-width: 140px;
  text-align: center;
  padding:  0 20px;
  position: relative;
}
.j-num {
  font-family:   var(--serif);
  font-size:     11px;
  font-weight:   400;
  letter-spacing: 0.2em;
  color:         var(--muted);
  margin-bottom: 12px;
}
.j-icon {
  font-size:     22px;
  color:         var(--gold);
  margin-bottom: 16px;
  display:       block;
}
.j-title {
  font-family:   var(--serif);
  font-size:     20px;
  font-weight:   500;
  color:         var(--forest);
  margin-bottom: 10px;
}
.j-body { font-size: 13px; font-weight: 300; color: var(--muted); line-height: 1.65; }

.j-connector {
  flex-shrink: 0;
  width:       40px;
  height:      1px;
  background:  linear-gradient(90deg, var(--gold), rgba(201,168,76,0.3));
  margin-top:  72px;
  align-self:  flex-start;
}


/* ══════════════════════════════════════════════════════════
   TRUST SECTION
   ══════════════════════════════════════════════════════════ */
.trust-section { background: var(--beige); padding: 120px 0; }
.trust-inner { max-width: 1200px; margin: 0 auto; padding: 0 48px; }
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 2px;
  margin-bottom: 60px;
}
.trust-item {
  background:  var(--white);
  padding:     40px 28px;
  text-align:  center;
  transition:  all .4s var(--ease);
  cursor:      default;
}
.trust-item:hover { background: var(--bg); transform: translateY(-3px); }
.ti-icon { font-size: 22px; color: var(--gold); margin-bottom: 16px; }
.ti-title {
  font-family:   var(--serif);
  font-size:     20px;
  font-weight:   500;
  color:         var(--forest);
  margin-bottom: 12px;
}
.ti-body { font-size: 13px; color: var(--muted); line-height: 1.65; }

.trust-quote {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}
.trust-quote blockquote {
  font-family:   var(--serif);
  font-style:    italic;
  font-size:     clamp(18px, 2.5vw, 26px);
  color:         var(--forest);
  line-height:   1.6;
  margin-bottom: 16px;
}
.trust-quote cite {
  font-size:      11px;
  font-weight:    500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color:          var(--gold-dk);
  font-style:     normal;
}


/* ══════════════════════════════════════════════════════════
   FAQ
   ══════════════════════════════════════════════════════════ */
.faq-section { background: var(--bg); padding: 140px 0; }
.faq-inner {
  max-width: 1200px;
  margin:    0 auto;
  padding:   0 48px;
  display:   grid;
  grid-template-columns: 1fr 1.5fr;
  gap:       80px;
  align-items: start;
}
.faq-title {
  font-family:   var(--serif);
  font-size:     clamp(32px,4vw,52px);
  font-weight:   400;
  line-height:   1.2;
  color:         var(--forest);
  margin-bottom: 20px;
}
.faq-title em { font-style: italic; color: var(--gold); }
.faq-sub {
  font-size:   15px;
  font-weight: 300;
  color:       var(--muted);
  line-height: 1.7;
  margin-bottom: 28px;
}
.faq-wa {
  display:         inline-flex;
  font-size:       12px;
  font-weight:     500;
  letter-spacing:  0.12em;
  text-transform:  uppercase;
  color:           var(--forest);
  text-decoration: none;
  transition:      color .3s;
}
.faq-wa:hover { color: var(--gold-dk); }

.faq-list { border-top: 1px solid var(--rule); }
.faq-item { border-bottom: 1px solid var(--rule); }
.faq-q {
  width:     100%;
  display:   flex;
  align-items: center;
  justify-content: space-between;
  gap:       16px;
  padding:   22px 0;
  background: none; border: none;
  cursor:    pointer;
  text-align: left;
  font-family: var(--serif);
  font-size:   18px;
  font-weight: 400;
  color:       var(--forest);
  transition:  color .3s;
}
.faq-q:hover { color: var(--gold-dk); }
.faq-icon {
  font-size:   18px;
  color:       var(--gold);
  flex-shrink: 0;
  transition:  transform .4s var(--ease);
  line-height: 1;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow:   hidden;
  transition: max-height .55s var(--ease);
}
.faq-item.open .faq-a { max-height: 400px; }
.faq-a p {
  font-size:   15px;
  font-weight: 300;
  color:       var(--muted);
  line-height: 1.8;
  padding-bottom: 22px;
}


/* ══════════════════════════════════════════════════════════
   CONTACT, WITH BOOKING FORM
   ══════════════════════════════════════════════════════════ */
.contact { position: relative; min-height: 100vh; display: flex; align-items: center; }
.contact-image { position: absolute; inset: 0; }
.contact-image img { width: 100%; height: 100%; object-fit: cover; object-position: center 35%; }
.contact-veil { position: absolute; inset: 0; background: rgba(10,28,20,0.88); }

.contact-content {
  position:   relative; z-index: 2;
  max-width:  1300px;
  margin:     0 auto;
  padding:    100px 48px;
  width:      100%;
  display:    grid;
  grid-template-columns: 1fr 1fr;
  gap:        80px;
  align-items: center;
}

.contact-h2 {
  font-family:   var(--serif);
  font-size:     clamp(40px,6vw,84px);
  font-weight:   300;
  line-height:   1.12;
  color:         rgba(247,245,241,0.92);
  margin-bottom: 20px;
}
.contact-h2 em { font-style: italic; color: var(--gold); }
.contact-sub { font-size: 17px; font-style: italic; color: rgba(247,245,241,0.4); margin-bottom: 40px; font-weight: 300; }

.contact-details { display: flex; flex-direction: column; gap: 16px; margin-bottom: 36px; }
.cd-item { display: flex; flex-direction: column; gap: 3px; transition: opacity .3s; }
.cd-item:hover { opacity: .8; }
.cd-label { font-size: 9px; font-weight: 600; letter-spacing: 0.24em; text-transform: uppercase; color: var(--gold); }
.cd-val { font-size: 14px; font-weight: 300; color: rgba(247,245,241,.65); }

.contact-wa-btn {
  display:         inline-block;
  padding:         14px 32px;
  background:      var(--gold);
  color:           var(--forest);
  font-size:       11px;
  font-weight:     600;
  letter-spacing:  0.18em;
  text-transform:  uppercase;
  transition:      all .4s var(--ease);
  text-decoration: none;
}
.contact-wa-btn:hover { background: var(--gold-lt); transform: translateY(-2px); }

/* Booking form */
.booking-form {
  background: rgba(247,245,241,0.06);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(201,168,76,0.2);
  padding: 40px;
}
.bf-title {
  font-family:   var(--serif);
  font-size:     24px;
  font-weight:   400;
  color:         rgba(247,245,241,.85);
  margin-bottom: 28px;
}
.bf-field { margin-bottom: 20px; }
.bf-field label {
  display:        block;
  font-size:      9px;
  font-weight:    600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color:          rgba(201,168,76,.7);
  margin-bottom:  8px;
}
.bf-field input,
.bf-field select,
.bf-field textarea {
  width:       100%;
  background:  rgba(255,255,255,0.05);
  border:      1px solid rgba(201,168,76,0.18);
  padding:     12px 16px;
  font-family: var(--sans);
  font-size:   14px;
  font-weight: 300;
  color:       rgba(247,245,241,.8);
  outline:     none;
  transition:  border-color .3s;
  appearance:  none;
}
.bf-field input::placeholder,
.bf-field textarea::placeholder { color: rgba(247,245,241,.25); }
.bf-field select option { background: var(--forest); color: var(--ivory); }
.bf-field input:focus,
.bf-field select:focus,
.bf-field textarea:focus { border-color: rgba(201,168,76,0.5); }
.bf-field textarea { resize: vertical; }
.bf-submit {
  width:           100%;
  padding:         15px;
  background:      var(--gold);
  color:           var(--forest);
  font-size:       11px;
  font-weight:     600;
  letter-spacing:  0.2em;
  text-transform:  uppercase;
  border:          none;
  cursor:          pointer;
  transition:      all .4s var(--ease);
  margin-top:      4px;
}
.bf-submit:hover { background: var(--gold-lt); transform: translateY(-2px); }
.bf-note {
  font-size:   11px;
  color:       rgba(247,245,241,.25);
  text-align:  center;
  margin-top:  12px;
  font-style:  italic;
}


/* ══════════════════════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════════════════════ */
.footer { background: linear-gradient(180deg, #0F3B2E 0%, #123F33 100%); }
.footer-top {
  max-width: 1200px;
  margin:    0 auto;
  padding:   80px 48px 60px;
  display:   grid;
  grid-template-columns: 1fr 2fr;
  gap:       80px;
  border-bottom: 1px solid rgba(255,255,255,.05);
}
.ft-brand { display: flex; align-items: flex-start; padding-top: 8px; }
.ft-logo {
  height:        110px;
  width:         auto;
  max-width:     300px;
  object-fit:    contain;
  border-radius: 0;
  opacity:       0.88;
  transition:    opacity .4s;
}
.ft-logo:hover { opacity: 1; }
.ft-tagline {
  font-family: var(--serif);
  font-style:  italic;
  font-size:   15px;
  color:       rgba(247,245,241,.35);
  line-height: 1.7;
}
.ft-links { display: grid; grid-template-columns: repeat(3,1fr); gap: 40px; }
.ftl-col h5 {
  font-size:      9px;
  font-weight:    700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color:          var(--gold);
  margin-bottom:  20px;
}
.ftl-col a {
  display:     block;
  font-size:   13px;
  font-weight: 300;
  color:       rgba(247,245,241,.35);
  margin-bottom: 10px;
  transition:  color .3s;
}
.ftl-col a:hover { color: var(--gold); }
.footer-bottom {
  max-width: 1200px;
  margin:    0 auto;
  padding:   24px 48px;
  display:   flex;
  justify-content: space-between;
  align-items: center;
  font-size:  11px;
  color:      rgba(247,245,241,.18);
}
.ft-craft { font-style: italic; }


/* ══════════════════════════════════════════════════════════
   FLOATING ELEMENTS
   ══════════════════════════════════════════════════════════ */
.call-float {
  position:    fixed; bottom: 100px; left: 32px;
  width:       56px; height: 56px;
  border-radius: 50%;
  background:  var(--forest);
  color:       #fff;
  display:     flex;
  align-items: center;
  justify-content: center;
  z-index:     500;
  box-shadow:  0 4px 24px rgba(15,61,46,0.45);
  transition:  transform .3s var(--ease), box-shadow .3s, opacity .4s;
  opacity:     0; transform: translateY(12px); pointer-events: none;
  border:      1.5px solid rgba(201,168,76,0.25);
}
.call-float.show  { opacity: 1; transform: none; pointer-events: all; }
.call-float:hover { transform: scale(1.1); box-shadow: 0 6px 32px rgba(15,61,46,0.65); }

.wa-float {
  position: fixed; bottom: 32px; left: 32px;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  z-index: 500;
  box-shadow: 0 4px 24px rgba(37,211,102,0.35);
  transition: transform .3s var(--ease), box-shadow .3s;
  opacity: 0; transform: translateY(12px); pointer-events: none;
}
.wa-float.show { opacity: 1; transform: none; pointer-events: all; }
.wa-float:hover { transform: scale(1.1); box-shadow: 0 6px 32px rgba(37,211,102,0.55); }
.wa-pulse {
  position:  absolute; inset: -4px;
  border:    2px solid rgba(37,211,102,0.4);
  border-radius: 50%;
  animation: waPulse 2.4s ease-out infinite;
}
@keyframes waPulse {
  0%   { transform: scale(1); opacity: .7; }
  100% { transform: scale(1.5); opacity: 0; }
}

.back-top {
  position: fixed; bottom: 32px; right: 32px;
  width: 44px; height: 44px;
  background: var(--forest);
  color: var(--gold);
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 2px;
  font-size: 18px;
  cursor: pointer;
  z-index: 500;
  opacity: 0; transform: translateY(12px); pointer-events: none;
  transition: all .4s var(--ease);
}
.back-top.show { opacity: 1; transform: none; pointer-events: all; }
.back-top:hover { background: var(--gold); color: var(--forest); }

.sticky-cta {
  display: none;
  position: fixed; bottom: 0; left: 0; right: 0;
  z-index: 400;
  transform: translateY(100%);
  transition: transform .4s var(--ease);
}
.sticky-cta.show { transform: none; }
.sticky-cta a {
  display:         block;
  text-align:      center;
  padding:         16px;
  background:      var(--forest);
  color:           var(--gold);
  font-size:       12px;
  font-weight:     600;
  letter-spacing:  0.18em;
  text-transform:  uppercase;
  text-decoration: none;
}


/* ══════════════════════════════════════════════════════════
   SERVICE MODAL
   ══════════════════════════════════════════════════════════ */
.modal-veil {
  position: fixed; inset: 0;
  background: rgba(8,20,14,.72);
  z-index: 3000; opacity: 0; pointer-events: none;
  transition: opacity .5s;
  backdrop-filter: blur(8px);
}
.modal-veil.open { opacity: 1; pointer-events: all; }

.svc-modal {
  position: fixed;
  top: 0; right: -100%;
  width: min(640px,100vw); height: 100vh;
  background: var(--forest);
  z-index: 3001;
  overflow-y: auto;
  transition: right .6s var(--ease);
  scrollbar-width: thin;
  scrollbar-color: rgba(201,168,76,.3) transparent;
}
.svc-modal.open { right: 0; }
.svc-modal::-webkit-scrollbar { width: 4px; }
.svc-modal::-webkit-scrollbar-thumb { background: rgba(201,168,76,.25); border-radius: 2px; }

.svc-close {
  position:       sticky; top: 0;
  display:        block; width: 100%;
  padding:        22px 40px;
  background:     rgba(15,61,46,.97);
  border:         none; border-bottom: 1px solid rgba(201,168,76,.12);
  text-align:     right;
  font-size:      9px; font-weight: 600;
  letter-spacing: 0.28em; text-transform: uppercase;
  color:          rgba(247,245,241,.3);
  cursor:         pointer;
  transition:     color .3s; z-index: 10;
}
.svc-close:hover { color: var(--gold); }

.svc-inner { padding: 20px 52px 72px; }
.svc-era {
  font-size: 9px; font-weight: 600;
  letter-spacing: 0.28em; text-transform: uppercase;
  color: rgba(201,168,76,.6); margin-bottom: 14px; display: block;
}
.svc-title {
  font-family: var(--serif);
  font-size: clamp(32px,5vw,52px);
  font-weight: 300;
  color: rgba(247,245,241,.92);
  line-height: 1.1;
  margin-bottom: 20px;
}
.svc-rule { width: 44px; height: 1px; background: var(--gold); margin-bottom: 40px; opacity: .6; }
.svc-section { margin-bottom: 32px; }
.svc-slabel {
  display:        block;
  font-size:      9px; font-weight: 600;
  letter-spacing: 0.3em; text-transform: uppercase;
  color:          var(--gold); margin-bottom: 10px; opacity: .8;
}
.svc-stext {
  font-size:   15px; font-weight: 300;
  color:       rgba(247,245,241,.6); line-height: 1.85;
}
.svc-book-btn {
  display:         inline-block;
  padding:         15px 36px;
  background:      var(--gold); color: var(--forest);
  font-size:       11px; font-weight: 600;
  letter-spacing:  0.18em; text-transform: uppercase;
  margin-top:      12px;
  transition:      all .4s var(--ease);
  text-decoration: none;
}
.svc-book-btn:hover { background: var(--gold-lt); transform: translateY(-2px); }


/* ══════════════════════════════════════════════════════════
   HEADER, SHRINK ON SCROLL
   ══════════════════════════════════════════════════════════ */
.header.shrunk .header-inner { height: 72px; }
.header.shrunk .logo-img      { height: 68px; }
.header.shrunk .header-topbar { height: 0; overflow: hidden; border: none; }

/* topbar extras */
.htb-left-group {
  display:     flex;
  align-items: center;
  gap:         12px;
}
.htb-sep-left { color: rgba(247,245,241,0.12); }
.htb-location, .htb-hours {
  display:     flex;
  align-items: center;
  gap:         5px;
  font-size:   9px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color:       rgba(247,245,241,0.32);
}

/* active nav link */
.header-nav a.nav-active {
  color:          rgba(247,245,241,1);
}
.header-nav a.nav-active::after { width: 100%; }


/* ══════════════════════════════════════════════════════════
   BODY MAP
   ══════════════════════════════════════════════════════════ */
.body-map-section { padding: 140px 0; background: var(--beige); }
.body-map-section .section-head { margin-bottom: 72px; }

.body-map-wrap {
  max-width:   1200px;
  margin:      0 auto;
  padding:     0 48px;
  display:     grid;
  grid-template-columns: 1fr 200px 1fr;
  gap:         48px;
  align-items: start;
}

.body-zones {
  display:        flex;
  flex-direction: column;
  gap:            12px;
  padding-top:    32px;
}
.bz-btn {
  display:     flex;
  align-items: center;
  gap:         12px;
  background:  none;
  border:      1px solid rgba(28,28,23,0.12);
  padding:     14px 20px;
  font-family: var(--sans);
  font-size:   13px;
  font-weight: 400;
  color:       rgba(28,28,23,0.6);
  cursor:      pointer;
  transition:  all .35s var(--ease);
  text-align:  left;
}
.bz-btn:hover, .bz-btn.active {
  border-color: var(--gold);
  color:        var(--forest);
  background:   rgba(201,168,76,0.06);
}
.bz-dot {
  width:       8px; height: 8px;
  border-radius: 50%;
  border:      1.5px solid var(--gold);
  flex-shrink: 0;
  transition:  background .3s;
}
.bz-btn.active .bz-dot { background: var(--gold); }

.body-map-figure {
  position:   relative;
  display:    flex;
  flex-direction: column;
  align-items: center;
  gap:         16px;
}
.bm-svg { width: 100%; max-width: 160px; }
.bm-part {
  fill:            rgba(201,168,76,0.06);
  stroke:          rgba(201,168,76,0.3);
  stroke-width:    1.5;
  transition:      fill .35s, stroke .35s;
  cursor:          pointer;
}
.bm-part.highlighted, .bm-part:hover {
  fill:   rgba(201,168,76,0.22);
  stroke: rgba(201,168,76,0.8);
}
.bm-hint-text {
  font-size:      10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color:          var(--muted);
  text-align:     center;
}

.body-map-panel {
  padding-top:  32px;
  min-height:   320px;
}
.bmp-default {
  display:        flex;
  flex-direction: column;
  align-items:    center;
  justify-content: center;
  text-align:     center;
  padding:        48px 24px;
  border:         1px dashed rgba(28,28,23,0.12);
  height:         100%;
  min-height:     280px;
}
.bmp-placeholder-icon { font-size: 36px; color: var(--gold); margin-bottom: 20px; opacity: .5; }
.bmp-default p { font-size: 14px; color: var(--muted); line-height: 1.7; max-width: 220px; }

.bmp-result { animation: fadeUp .4s var(--ease) both; }
.bmp-zone-label {
  font-size:      9px;
  font-weight:    700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color:          var(--gold);
  margin-bottom:  12px;
}
.bmp-desc {
  font-family:   var(--serif);
  font-size:     18px;
  font-style:    italic;
  color:         var(--ink);
  margin-bottom: 24px;
  line-height:   1.5;
}
.bmp-treatments {
  list-style: none;
  margin-bottom: 28px;
}
.bmp-treatments li {
  font-size:   13px;
  color:       var(--ink);
  padding:     8px 0;
  border-bottom: 1px solid rgba(28,28,23,0.08);
  display:     flex;
  align-items: center;
  gap:         10px;
}
.bmp-treatments li::before { content: '→'; color: var(--gold); }
.bmp-cta {
  background:  var(--forest);
  color:       var(--gold);
  border:      none;
  padding:     12px 24px;
  font-family: var(--sans);
  font-size:   10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor:      pointer;
  transition:  all .35s;
}
.bmp-cta:hover { background: var(--gold); color: var(--forest); }


/* ══════════════════════════════════════════════════════════
   BENTO GRID
   ══════════════════════════════════════════════════════════ */
.bento-section { padding: 140px 0; background: var(--bg); }
.bento-section .section-head { margin-bottom: 64px; }
.bento-grid {
  max-width: 1200px;
  margin:    0 auto;
  padding:   0 48px;
  display:   grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto;
  gap:       16px;
}
.bento-card {
  padding:   36px 32px;
  border:    1px solid var(--rule);
  background: var(--white);
  position:  relative;
  overflow:  hidden;
  transition: all .4s var(--ease);
}
.bento-card::before {
  content:  '';
  position: absolute; top: 0; left: 0; right: 0;
  height:   2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  transform: scaleX(0); transform-origin: left;
  transition: transform .45s var(--ease);
}
.bento-card:hover { border-color: rgba(201,168,76,0.35); transform: translateY(-3px); box-shadow: 0 12px 40px rgba(15,61,46,0.08); }
.bento-card:hover::before { transform: scaleX(1); }

.bc-large  { grid-column: span 2; grid-row: span 2; }
.bc-medium { grid-column: span 2; }
.bc-small  { grid-column: span 1; }
.bc-wa     { grid-column: span 1; background: var(--forest); border-color: var(--forest); }
.bc-uae    { grid-column: span 1; }
.bc-stat   { grid-column: span 1; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; background: var(--beige); min-height: 160px; }
.bc-stat-gold { background: var(--forest); }
.bc-dark   { background: var(--forest); border-color: var(--forest); }

.bc-eyebrow {
  font-size:      9px; font-weight: 700;
  letter-spacing: 0.28em; text-transform: uppercase;
  color:          var(--gold); margin-bottom: 16px;
}
.bento-card h3 {
  font-family:   var(--serif);
  font-size:     clamp(20px,2vw,26px);
  font-weight:   400;
  color:         var(--ink);
  margin-bottom: 12px;
  line-height:   1.25;
}
.bc-dark h3, .bc-wa h3 { color: var(--ivory); }
.bento-card p {
  font-size:   13px;
  font-weight: 300;
  color:       var(--muted);
  line-height: 1.7;
}
.bc-dark p, .bc-wa p { color: rgba(247,245,241,.5); }
.bc-link {
  display:        inline-block;
  margin-top:     24px;
  font-size:      10px;
  font-weight:    600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color:          var(--gold);
  transition:     opacity .3s;
}
.bc-link:hover { opacity: .7; }
.bc-icon-lg { font-size: 32px; margin-bottom: 16px; color: var(--gold); }
.bc-stat-num {
  font-family:   var(--serif);
  font-size:     clamp(44px,5vw,64px);
  font-weight:   300;
  color:         var(--forest);
  line-height:   1;
}
.bc-stat-gold .bc-stat-num { color: var(--gold); }
.bc-stat-plus { font-size: 24px; color: var(--gold); }
.bc-stat-label { font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); margin-top: 6px; }
.bc-stat-gold .bc-stat-label { color: rgba(247,245,241,.5); }
.bc-badge {
  display:     inline-block;
  margin-top:  16px;
  padding:     4px 12px;
  border:      1px solid rgba(201,168,76,.4);
  font-size:   9px; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase;
  color:       var(--gold);
}
.bc-flag { font-size: 32px; margin-bottom: 12px; }
.bc-wa-icon { margin-bottom: 16px; color: #4ade80; }
.bc-wa-btn {
  display:        inline-block;
  margin-top:     20px;
  font-size:      10px; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase;
  color:          #4ade80; transition: opacity .3s;
}
.bc-wa-btn:hover { opacity: .7; }


/* ══════════════════════════════════════════════════════════
   TESTIMONIALS
   ══════════════════════════════════════════════════════════ */
.testimonials-section { background: var(--forest); padding: 140px 0 80px; }
.testimonials-section .section-head { margin-bottom: 48px; }
.testimonials-section .section-head .eyebrow { color: rgba(201,168,76,0.8); }
.testimonials-section .section-title { color: var(--ivory); }
.testimonials-section .section-title em { color: var(--gold); }

.rating-badge {
  display:        flex;
  align-items:    center;
  justify-content: center;
  gap:            18px;
  margin:         0 auto 64px;
  padding:        16px 32px;
  border:         1px solid rgba(201,168,76,0.2);
  max-width:      600px;
  background:     rgba(201,168,76,0.04);
}
.rb-stars { color: var(--gold); font-size: 18px; letter-spacing: 2px; }
.rb-info  { display: flex; flex-direction: column; align-items: center; line-height: 1.2; }
.rb-score { font-family: var(--serif); font-size: 28px; font-weight: 300; color: var(--gold); }
.rb-label { font-size: 9px; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(247,245,241,.4); }
.rb-sep   { color: rgba(247,245,241,0.15); }
.rb-trust, .rb-private { font-size: 11px; color: rgba(247,245,241,.4); letter-spacing: 0.06em; }

.tc-outer {
  max-width:  1000px;
  margin:     0 auto;
  padding:    0 48px;
  overflow:   hidden;
}
.tc-track {
  display:    flex;
  gap:        24px;
  transition: transform .5s var(--ease);
}
.tc-card {
  flex-shrink: 0;
  width:       100%;
  border:      1px solid rgba(201,168,76,0.18);
  padding:     48px;
  background:  rgba(255,255,255,0.03);
  position:    relative;
}
.tc-card::before {
  content:  '"';
  position: absolute; top: 24px; left: 40px;
  font-family: var(--serif);
  font-size: 80px; color: rgba(201,168,76,0.12);
  line-height: 1;
}
.tc-stars { color: var(--gold); font-size: 14px; letter-spacing: 3px; margin-bottom: 24px; }
.tc-text  {
  font-family:  var(--serif);
  font-style:   italic;
  font-size:    clamp(17px,2vw,22px);
  color:        rgba(247,245,241,.85);
  line-height:  1.75;
  margin-bottom: 32px;
  position:     relative;
  z-index:      1;
}
.tc-author { display: flex; flex-direction: column; gap: 4px; }
.tc-name   { font-size: 12px; font-weight: 600; letter-spacing: 0.12em; color: var(--gold); text-transform: uppercase; }
.tc-loc    { font-size: 11px; color: rgba(247,245,241,.35); }
.tc-nav {
  display:         flex;
  align-items:     center;
  justify-content: center;
  gap:             20px;
  margin-top:      48px;
}
.tc-btn {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(201,168,76,0.3);
  background: transparent;
  color: var(--gold);
  cursor: pointer;
  font-size: 15px;
  transition: all .3s;
}
.tc-btn:hover { background: var(--gold); color: var(--forest); border-color: var(--gold); }
.tc-dots { display: flex; gap: 8px; }
.tc-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgba(201,168,76,0.25);
  cursor: pointer;
  transition: all .3s;
}
.tc-dot.active { background: var(--gold); width: 20px; border-radius: 3px; }


/* ══════════════════════════════════════════════════════════
   CONSULTATION SECTION
   ══════════════════════════════════════════════════════════ */
.consult-section { background: var(--beige); padding: 140px 0; }
.consult-inner {
  max-width:   1100px;
  margin:      0 auto;
  padding:     0 48px;
  display:     grid;
  grid-template-columns: 1fr 1fr;
  gap:         80px;
  align-items: center;
}
.consult-h2 {
  font-family:   var(--serif);
  font-size:     clamp(36px,4vw,58px);
  font-weight:   300;
  color:         var(--ink);
  line-height:   1.15;
  margin-bottom: 20px;
}
.consult-h2 em { font-style: italic; color: var(--forest); }
.consult-sub {
  font-size:   16px;
  color:       var(--muted);
  line-height: 1.75;
  margin-bottom: 36px;
  max-width:   400px;
}
.consult-promises { list-style: none; }
.consult-promises li {
  display:     flex;
  align-items: center;
  gap:         12px;
  font-size:   14px;
  color:       rgba(28,28,23,0.65);
  padding:     10px 0;
  border-bottom: 1px solid rgba(28,28,23,0.08);
}
.cp-dot { color: var(--gold); flex-shrink: 0; }
.consult-form-wrap {
  background: var(--white);
  border:     1px solid var(--rule);
  padding:    48px 40px;
  box-shadow: 0 16px 48px rgba(15,61,46,0.06);
}
.cf-title {
  font-family:   var(--serif);
  font-size:     24px;
  font-weight:   400;
  color:         var(--forest);
  margin-bottom: 28px;
}
.cf-field { margin-bottom: 20px; }
.cf-field label {
  display:        block;
  font-size:      10px;
  font-weight:    600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color:          var(--muted);
  margin-bottom:  8px;
}
.cf-field input, .cf-field select {
  width:       100%;
  padding:     13px 16px;
  background:  var(--bg);
  border:      1px solid rgba(28,28,23,0.12);
  font-family: var(--sans);
  font-size:   14px;
  font-weight: 300;
  color:       var(--ink);
  appearance:  none;
  transition:  border .3s;
  outline:     none;
}
.cf-field input:focus, .cf-field select:focus { border-color: var(--forest); }
.cf-submit {
  width:          100%;
  display:        flex;
  align-items:    center;
  justify-content: center;
  gap:            10px;
  padding:        16px 24px;
  background:     var(--forest);
  color:          var(--gold);
  border:         none;
  font-family:    var(--sans);
  font-size:      10px;
  font-weight:    700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor:         pointer;
  transition:     all .35s var(--ease);
  margin-top:     8px;
}
.cf-submit:hover { background: var(--gold); color: var(--forest); }
.cf-note { text-align: center; font-size: 11px; color: var(--muted); margin-top: 12px; font-style: italic; }


/* ══════════════════════════════════════════════════════════
   SMART BOOKING MODAL
   ══════════════════════════════════════════════════════════ */
.bm-veil {
  position: fixed; inset: 0;
  background: rgba(15,61,46,0.65);
  backdrop-filter: blur(8px);
  z-index: 3000;
  opacity: 0; pointer-events: none;
  transition: opacity .4s;
}
.bm-veil.open { opacity: 1; pointer-events: all; }

.booking-modal {
  position:   fixed;
  top:        50%; left: 50%;
  transform:  translate(-50%, -48%) scale(0.96);
  z-index:    3001;
  width:      min(680px, 95vw);
  max-height: 90vh;
  overflow-y: auto;
  background: var(--white);
  opacity:    0; pointer-events: none;
  transition: opacity .4s, transform .4s var(--ease);
}
.booking-modal.open {
  opacity:   1; pointer-events: all;
  transform: translate(-50%, -50%) scale(1);
}
.bm-inner { padding: 52px 48px 40px; position: relative; }
.bm-close {
  position:   absolute; top: 20px; right: 20px;
  background: none; border: none;
  font-size:  24px; color: var(--muted);
  cursor:     pointer; line-height: 1;
  transition: color .3s;
}
.bm-close:hover { color: var(--ink); }
.bm-steps {
  display:     flex;
  align-items: center;
  margin-bottom: 40px;
}
.bm-step {
  display:    flex;
  flex-direction: column;
  align-items: center;
  gap:         6px;
}
.bms-num {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--rule);
  display:    flex; align-items: center; justify-content: center;
  font-size:  11px; font-weight: 600;
  color:      var(--muted);
  transition: all .3s;
}
.bm-step.active .bms-num { background: var(--forest); color: var(--gold); }
.bm-step.done   .bms-num { background: var(--gold); color: var(--forest); }
.bms-label { font-size: 9px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); white-space: nowrap; }
.bm-step.active .bms-label { color: var(--forest); font-weight: 600; }
.bm-step-line { flex: 1; height: 1px; background: var(--rule); margin: 0 8px; margin-bottom: 12px; }
.bm-title {
  font-family:   var(--serif);
  font-size:     clamp(24px,3vw,32px);
  font-weight:   300;
  color:         var(--ink);
  margin-bottom: 8px;
}
.bm-sub { font-size: 14px; color: var(--muted); margin-bottom: 32px; }
.bm-panel { display: none; }
.bm-panel.active { display: block; animation: fadeUp .35s var(--ease) both; }
.bm-goals {
  display:   grid;
  grid-template-columns: repeat(auto-fill, minmax(180px,1fr));
  gap:       12px;
}
.bm-goal {
  display:        flex;
  flex-direction: column;
  align-items:    flex-start;
  gap:            6px;
  padding:        20px 18px;
  background:     none;
  border:         1px solid var(--rule);
  cursor:         pointer;
  text-align:     left;
  transition:     all .3s;
  font-family:    var(--sans);
}
.bm-goal:hover, .bm-goal.selected {
  border-color: var(--gold);
  background:   rgba(201,168,76,0.05);
}
.bmg-icon  { font-size: 22px; color: var(--gold); }
.bmg-label { font-size: 13px; font-weight: 600; color: var(--ink); }
.bmg-desc  { font-size: 11px; color: var(--muted); line-height: 1.4; }
.bm-rec {
  border:      1px solid rgba(15,61,46,0.15);
  padding:     28px;
  margin-bottom: 24px;
  background:  rgba(15,61,46,0.02);
}
.bm-rec-title { font-family: var(--serif); font-size: 22px; color: var(--forest); margin-bottom: 4px; }
.bm-rec-dur   { font-size: 11px; letter-spacing: 0.12em; color: var(--gold); text-transform: uppercase; margin-bottom: 12px; }
.bm-rec-desc  { font-size: 13px; color: var(--muted); line-height: 1.65; margin-bottom: 16px; }
.bm-rec-list  { list-style: none; }
.bm-rec-list li { font-size: 12px; color: var(--ink); padding: 5px 0; border-bottom: 1px solid var(--rule); }
.bm-rec-list li::before { content: ' '; color: var(--gold); }
.bm-p2-btns { display: flex; gap: 12px; }
.bm-back-btn {
  background: none; border: 1px solid var(--rule);
  padding: 10px 20px;
  font-family: var(--sans); font-size: 11px; font-weight: 500;
  color: var(--muted); cursor: pointer; transition: all .3s;
}
.bm-back-btn:hover { border-color: var(--forest); color: var(--forest); }
.bm-next-btn {
  flex: 1;
  background: var(--gold); color: var(--forest); border: none;
  padding: 12px 24px;
  font-family: var(--sans); font-size: 11px; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase;
  cursor: pointer; transition: all .3s;
}
.bm-next-btn:hover { background: var(--gold-lt); }
.bm-selected {
  background:    rgba(15,61,46,0.04);
  border:        1px solid rgba(15,61,46,0.1);
  padding:       14px 18px;
  font-size:     13px; color: var(--forest);
  font-weight:   500; margin-bottom: 20px;
}
.bm-field { margin-bottom: 16px; }
.bm-field label { display: block; font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); margin-bottom: 6px; font-weight: 600; }
.bm-field input {
  width: 100%; padding: 13px 14px;
  background: var(--bg); border: 1px solid rgba(28,28,23,0.12);
  font-family: var(--sans); font-size: 14px; font-weight: 300; color: var(--ink);
  outline: none; transition: border .3s;
}
.bm-field input:focus { border-color: var(--forest); }
.bm-submit {
  width: 100%; padding: 15px;
  background: var(--forest); color: var(--gold); border: none;
  font-family: var(--sans); font-size: 11px; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  cursor: pointer; transition: all .35s; margin-top: 8px;
}
.bm-submit:hover { background: var(--gold); color: var(--forest); }
.bm-note { text-align: center; font-size: 11px; color: var(--muted); margin-top: 10px; font-style: italic; }
.bm-back-top { display: block; margin-top: 12px; width: 100%; }


/* ══════════════════════════════════════════════════════════
   MOBILE STICKY 3-BUTTON BAR
   ══════════════════════════════════════════════════════════ */
.sticky-bar {
  display:  none;
  position: fixed; bottom: 0; left: 0; right: 0;
  z-index:  900;
  background: var(--forest);
  border-top: 1px solid rgba(201,168,76,0.2);
  box-shadow: 0 -4px 24px rgba(0,0,0,0.2);
}
.sb-btn {
  flex:           1;
  display:        flex;
  flex-direction: column;
  align-items:    center;
  justify-content: center;
  gap:            4px;
  padding:        10px 0;
  background:     none;
  border:         none;
  border-right:   1px solid rgba(255,255,255,.08);
  font-family:    var(--sans);
  font-size:      9px;
  font-weight:    600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor:         pointer;
  color:          rgba(247,245,241,0.65);
  transition:     background .3s, color .3s;
}
.sb-btn:last-child { border-right: none; }
.sb-btn:hover, .sb-btn:active { background: rgba(255,255,255,.07); color: rgba(247,245,241,1); }
.sb-wa    { color: #6ee7a0; }
.sb-price { color: var(--gold); }
.sb-book  { background: var(--gold); color: var(--forest); font-weight: 700; }
.sb-book:hover, .sb-book:active { background: var(--gold-lt); color: var(--forest); }


/* ══════════════════════════════════════════════════════════
   FOOTER ENHANCEMENTS
   ══════════════════════════════════════════════════════════ */
.footer-cta-strip {
  position:    relative;
  background:  url('Contact%20Section%20Background.png') center / cover no-repeat;
  border-bottom: 1px solid rgba(201,168,76,0.12);
  overflow:    hidden;
}
.footer-cta-strip::before {
  content:  '';
  position: absolute;
  inset:    0;
  background: linear-gradient(135deg,
    rgba(6,22,13,0.96) 0%,
    rgba(12,48,32,0.90) 50%,
    rgba(6,22,13,0.96) 100%);
  z-index: 0;
}
.fcs-inner {
  position:    relative;
  z-index:     1;
  max-width:   1200px;
  margin:      0 auto;
  padding:     48px 48px;
  display:     flex;
  align-items: center;
  justify-content: space-between;
  gap:         32px;
}
.fcs-text h3 {
  font-family:   var(--serif);
  font-size:     22px;
  font-weight:   400;
  color:         var(--ivory);
  margin-bottom: 4px;
}
.fcs-text p { font-size: 12px; color: rgba(247,245,241,.4); letter-spacing: 0.04em; }
.fcs-actions { display: flex; align-items: center; gap: 14px; flex-shrink: 0; }
.fcs-book {
  padding:        12px 28px;
  background:     var(--gold);
  color:          var(--forest);
  border:         none;
  font-family:    var(--sans);
  font-size:      10px; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  cursor:         pointer; transition: all .35s;
}
.fcs-book:hover { background: var(--gold-lt); }
.fcs-wa {
  display:     flex;
  align-items: center;
  gap:         8px;
  font-size:   11px; font-weight: 500;
  color:       #6ee7a0;
  border:      1px solid rgba(110,231,160,0.25);
  padding:     11px 20px;
  transition:  all .3s;
}
.fcs-wa:hover { border-color: #6ee7a0; background: rgba(110,231,160,0.06); }
.footer-main { }
.ft-tagline-new {
  font-family:  var(--serif);
  font-style:   italic;
  font-size:    14px;
  color:        rgba(247,245,241,.3);
  line-height:  1.7;
  margin-top:   16px;
  margin-bottom: 20px;
}
.ft-social { display: flex; gap: 14px; }
.ft-social a {
  color: rgba(247,245,241,.3);
  transition: color .3s;
}
.ft-social a:hover { color: var(--gold); }
.ftl-info {
  display:      block;
  font-size:    12px;
  color:        rgba(247,245,241,.22);
  margin-bottom: 6px;
  font-style:   italic;
}


/* ══════════════════════════════════════════════════════════
   CARD TILT (applied via JS)
   ══════════════════════════════════════════════════════════ */
.svc-card { transform-style: preserve-3d; }

/* ══════════════════════════════════════════════════════════
   ANIMATED COUNTER
   ══════════════════════════════════════════════════════════ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: none; }
}
@keyframes shimmer {
  0%   { background-position: -200% center; }
  100% { background-position:  200% center; }
}
.header-book {
  background-image: linear-gradient(90deg, var(--gold) 0%, var(--gold-lt) 40%, var(--gold) 60%, var(--gold) 100%);
  background-size:  200% auto;
  animation:        shimmer 3s linear infinite;
}
.header-book:hover { animation: none; background: var(--gold-lt); }


/* ══════════════════════════════════════════════════════════
   INSTAGRAM SECTION
   ══════════════════════════════════════════════════════════ */
.instagram-section {
  padding:    120px 0 100px;
  background: var(--bg);
}
.ig-grid {
  display:               grid;
  grid-template-columns: repeat(3, 1fr);
  gap:                   14px;
  max-width:             1160px;
  margin:                64px auto 56px;
  padding:               0 48px;
}
.ig-post {
  display:       block;
  position:      relative;
  aspect-ratio:  1 / 1;
  overflow:      hidden;
  cursor:        pointer;
  text-decoration: none;
  border-radius: 2px;
}
.ig-thumb {
  width:              100%;
  height:             100%;
  background-size:    cover;
  background-position: center;
  background-color:   var(--forest);
  transition:         transform .65s cubic-bezier(0.16,1,0.3,1);
}
.ig-post:hover .ig-thumb { transform: scale(1.08); }
.ig-hover-overlay {
  position:        absolute;
  inset:           0;
  background:      linear-gradient(160deg,
    rgba(6,22,13,0.82) 0%,
    rgba(12,48,32,0.70) 60%,
    rgba(201,168,76,0.15) 100%);
  display:         flex;
  flex-direction:  column;
  align-items:     center;
  justify-content: center;
  gap:             12px;
  opacity:         0;
  transition:      opacity .4s ease;
}
.ig-post:hover .ig-hover-overlay { opacity: 1; }
.ig-hover-overlay svg  { color: var(--gold); filter: drop-shadow(0 2px 8px rgba(201,168,76,.4)); }
.ig-hover-overlay span {
  font-size:      9.5px;
  font-weight:    600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color:          var(--ivory);
}
.ig-post-label {
  position:       absolute;
  bottom:         14px;
  left:           14px;
  font-size:      9px;
  font-weight:    500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color:          rgba(247,245,241,0.55);
  opacity:        1;
  transition:     opacity .3s;
}
.ig-post:hover .ig-post-label { opacity: 0; }
.ig-footer {
  text-align:  center;
  padding:     0 48px;
}
.ig-follow-btn {
  display:        inline-flex;
  align-items:    center;
  gap:            10px;
  padding:        14px 36px;
  background:     var(--forest);
  color:          var(--ivory);
  font-family:    var(--sans);
  font-size:      10px;
  font-weight:    600;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  border:         1px solid transparent;
  transition:     all .4s;
  cursor:         pointer;
}
.ig-follow-btn:hover {
  background:   transparent;
  border-color: var(--forest);
  color:        var(--forest);
}
.ig-handle {
  display:        block;
  margin-top:     18px;
  font-size:      12px;
  color:          var(--muted);
  letter-spacing: 0.06em;
  font-style:     italic;
}


/* ══════════════════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════════════════ */
@media (max-width: 1100px) {
  .header-topbar { display: none; }
  .header-inner  { padding: 0 28px; }
  .header-nav    { display: none; }
  .header-actions { display: none; }
  .header-menu   { display: flex; }

  .bento-grid { grid-template-columns: repeat(2,1fr); }
  .bc-large   { grid-column: span 2; grid-row: span 1; }
  .bc-medium  { grid-column: span 2; }
  .bc-stat    { grid-column: span 1; }
  .bc-wa      { grid-column: span 1; }

  .body-map-wrap { grid-template-columns: 1fr 140px 1fr; gap: 24px; padding: 0 28px; }

  .consult-inner { grid-template-columns: 1fr; gap: 48px; padding: 0 36px; }

  .fcs-inner { flex-direction: column; text-align: center; align-items: center; }

  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-left { padding: 120px 36px 72px; }
  .hero-right { height: 55vw; min-height: 320px; position: relative; }
  .hero-right .hero-img { position: absolute; }
  .hero-scroll { left: 36px; transform: none; }

  .manifesto { padding: 120px 36px; }

  .services-grid { grid-template-columns: repeat(2,1fr); padding: 0 36px; }
  .cat-filter { padding: 0 36px; }
  .treatments .section-head { padding: 0 36px; }

  .solve-grid { grid-template-columns: repeat(2,1fr); padding: 0 36px; }

  .rizelle { grid-template-columns: 1fr; }
  .riz-image { height: 60vw; min-height: 320px; position: relative; }
  .riz-image img { position: absolute; }
  .riz-content { padding: 72px 36px; }

  .pkg-grid { grid-template-columns: 1fr; max-width: 520px; padding: 0 36px; align-items: start; }
  .pkg-card.featured { transform: none; }
  .pkg-list { flex: none; }

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

  .faq-inner { grid-template-columns: 1fr; gap: 48px; padding: 0 36px; }

  .contact-content { grid-template-columns: 1fr; gap: 48px; padding: 80px 36px; }
  .contact-h2 { font-size: clamp(36px,7vw,64px); }

  .footer-top { grid-template-columns: 1fr; gap: 48px; padding: 60px 36px 48px; }
  .ft-links   { grid-template-columns: repeat(3,1fr); }

  .journey-steps { padding: 0 36px; }

  .ig-grid   { padding: 0 36px; gap: 12px; }
  .ig-footer { padding: 0 36px; }
}

@media (max-width: 680px) {
  .header-inner { padding: 0 20px; height: 68px; }
  .logo-img     { height: 60px; }

  .hero-left  { padding: 120px 20px 60px; }
  .hero-right { height: 72vw; }
  .hero-scroll { display: none; }
  .hero-stats { flex-direction: column; align-items: flex-start; gap: 14px; }
  .hstat-sep  { display: none; }

  .manifesto  { padding: 96px 20px; }

  .treatments { padding: 80px 0 100px; }
  .treatments .section-head,
  .solve-section .section-head,
  .packages-section .section-head,
  .journey-section .section-head,
  .faq-inner .faq-left,
  .lineage-top { padding: 0 20px; }
  .services-grid { grid-template-columns: 1fr; padding: 0 20px; }
  .cat-filter { padding: 0 20px; overflow-x: auto; flex-wrap: nowrap; }

  .heritage-section { padding: 80px 0 72px; }
  .timeline-wrap { padding: 0 20px; }
  .tl-card { width: 240px; }

  .riz-image  { height: 80vw; }
  .riz-content { padding: 60px 20px; }
  .riz-pillars { gap: 16px; }

  .solve-grid { grid-template-columns: 1fr; padding: 0 20px; }
  .pkg-grid   { padding: 0 20px; }
  .trust-grid { grid-template-columns: 1fr; }
  .trust-inner { padding: 0 20px; }

  .journey-steps { flex-direction: column; padding: 0 20px; }
  .j-step  { min-width: 0; padding: 0; text-align: left; display: flex; gap: 20px; align-items: flex-start; }
  .j-num   { min-width: 32px; margin-bottom: 0; }
  .j-icon  { display: none; }
  .j-connector { width: 1px; height: 32px; background: var(--rule); margin: 0 16px; }

  .faq-inner  { padding: 0 20px; }
  .booking-form { padding: 28px 20px; }
  .contact-content { padding: 80px 20px; }
  .contact-h2 { font-size: clamp(36px,10vw,56px); }

  .footer-top { padding: 48px 20px 40px; }
  .ft-links   { grid-template-columns: repeat(2,1fr); gap: 24px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; padding: 20px; }
  .fcs-inner  { padding: 28px 20px; }

  .bento-grid   { grid-template-columns: 1fr; padding: 0 20px; }
  .bc-large, .bc-medium, .bc-stat, .bc-wa, .bc-uae, .bc-small { grid-column: span 1; }

  .body-map-wrap  { grid-template-columns: 1fr; padding: 0 20px; }
  .body-map-figure { order: -1; max-width: 120px; margin: 0 auto; }
  .body-zones     { flex-direction: row; flex-wrap: wrap; }
  .bz-btn         { flex: 1 1 45%; }
  .body-map-panel { padding-top: 0; }

  .tc-outer   { padding: 0 20px; }
  .tc-card    { padding: 32px 24px; }

  .rating-badge { flex-wrap: wrap; justify-content: center; padding: 16px 20px; margin: 0 20px 48px; }

  .consult-inner { padding: 0 20px; }
  .consult-form-wrap { padding: 32px 24px; }

  .bm-inner { padding: 36px 24px 28px; }
  .bm-goals { grid-template-columns: 1fr 1fr; }
  .bms-label { display: none; }

  .sticky-bar  { display: flex; }
  .wa-float    { bottom: 80px; }
  .call-float  { bottom: 148px; }
  .back-top    { right: 20px; bottom: 80px; }

  .ig-grid   { grid-template-columns: repeat(2,1fr); padding: 0 20px; gap: 10px; }
  .ig-footer { padding: 0 20px; }
  .instagram-section { padding: 80px 0 72px; }

  .svc-inner  { padding: 12px 24px 56px; }
  .svc-close  { padding: 18px 24px; }
  .svc-title  { font-size: 30px; }
}

/* ─── SCROLLBAR ──────────────────────────────────────────── */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--rule); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: rgba(15,61,46,.25); }
