/* ═══════════════════════════════════════════
   BLEU MEDSPA — v6 — Light Blue Luxury
═══════════════════════════════════════════ */

/* ─── RESET ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; -webkit-font-smoothing: antialiased; }
body { font-family: var(--sans); font-weight: 300; background: var(--cream); color: var(--ink); overflow-x: hidden; }
img, video { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
address { font-style: normal; }
button { font-family: inherit; }

/* ─── TOKENS ─── */
:root {
  --ink:      #081420;         /* deepened navy ink */
  --charcoal: #081828;         /* dark section bg (was grey, now true navy dark) */
  --deep:     #0D2240;         /* medium dark navy */
  --navy-dk:  #050F1C;         /* deepest sections */
  --blue:     #4A8CC4;         /* brighter for dark-bg legibility */
  --sky:      #89C0D9;         /* accent blue */
  --gold:     #C4A97A;
  --gold-lt:  #E8D5B0;
  --pale:     #D4E8F8;         /* richer pale blue (was pastel) */
  --mist:     #C4D8F0;         /* deeper mist — no longer clinical pale */
  --white:    #F5EFE8;         /* warm off-white */
  --cream:    #EFEAD1;
  --tan:      #E2D8C4;
  --sand:     #E6DDD0;
  --stone:    #7A8898;         /* cooler neutral stone */
  --border:   rgba(10,20,36,.10);
  --border-lt: rgba(10,20,36,.06);
  --serif: 'Cormorant Garant', Georgia, serif;
  --sans:  'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  --max:    1360px;
  --gutter: clamp(24px, 5.5vw, 88px);
  --section: clamp(80px, 10vw, 140px);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease:     cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ─── LAYOUT ─── */
.container { max-width: var(--max); margin: 0 auto; padding: 0 var(--gutter); }
.section    { padding: var(--section) 0; }
.section-sm { padding: clamp(48px,7vw,96px) 0; }
.bg-white  { background: var(--white); }
.bg-mist   { background: var(--mist); }
.bg-cream  { background: var(--cream); }
.bg-pale   { background: var(--pale); }
.bg-deep   { background: var(--deep); }

/* ─── NOISE ─── */
.noise {
  position: fixed; inset: 0; pointer-events: none; z-index: 9999; opacity: .018;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ─── PROGRESS BAR ─── */
#progressBar { position: fixed; top: 0; left: 0; height: 1.5px; width: 0%; background: var(--blue); z-index: 10000; }

/* ══════════════════════════════════════════
   NAVIGATION
══════════════════════════════════════════ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: #ffffff;
  backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(14,17,23,.08);
  transition: box-shadow .3s;
}
.nav.scrolled { box-shadow: 0 4px 28px rgba(14,17,23,.07); }
/* Nav links — always dark, always consistent */
.nav-link { color: var(--stone) !important; }
.nav-link:hover { color: var(--ink) !important; }
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100px; padding: 0 var(--gutter);
  max-width: var(--max); margin: 0 auto;
  gap: 32px;
}
.nav-logo {
  display: flex; align-items: center; gap: 12px; text-decoration: none;
  flex-shrink: 0;
}
.nav-logo img { height: 84px; width: auto; display: block; }
.nav-logo-text {
  font-family: var(--serif); font-size: 1.45rem; font-weight: 300;
  letter-spacing: .01em; color: var(--ink); line-height: 1;
}
.nav-logo-text em { font-style: italic; color: var(--blue); }

/* Nav right side: book button + hamburger */
.nav-right { display: flex; align-items: center; gap: 16px; flex-shrink: 0; }
/* nav-links (homepage) and nav-center (service pages) */
.nav-links,
.nav-center { display: flex; align-items: center; gap: 32px; flex: 1; justify-content: center; }
.nav-item { position: relative; }
.nav-link {
  font-size: .66rem; font-weight: 400; letter-spacing: .12em;
  text-transform: uppercase; color: var(--stone); transition: color .2s; cursor: pointer;
}
.nav-link:hover { color: var(--ink); }
.nav-dropdown {
  display: none; position: absolute;
  top: calc(100% + 8px); left: 50%; transform: translateX(-50%);
  background: rgba(247,243,238,.98); border: 1px solid var(--border);
  border-radius: 2px; padding: 10px 0; min-width: 200px;
  box-shadow: 0 16px 48px rgba(14,17,23,.12);
  backdrop-filter: blur(12px);
}
.nav-item:hover .nav-dropdown { display: block; }
/* Bridge gap so dropdown stays open while moving mouse from link → dropdown */
.nav-item::after {
  content: ''; position: absolute; left: 0; right: 0;
  top: 100%; height: 16px; /* matches dropdown offset */
}
.nav-dropdown a {
  display: block; padding: 10px 22px; font-size: .68rem;
  letter-spacing: .08em; text-transform: uppercase; color: var(--stone) !important; transition: color .2s;
}
.nav-dropdown a:hover { color: var(--blue) !important; }
.nav-book {
  font-size: .66rem; font-weight: 500; letter-spacing: .13em; text-transform: uppercase;
  color: #ffffff; background: #1A2C40;
  padding: 10px 22px; border-radius: 1px; transition: background .2s, transform .2s;
}
.nav-book:hover { background: #5089B8; transform: translateY(-1px); }
.nav-toggle { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.nav-toggle span { display: block; width: 22px; height: 1px; background: var(--ink); transition: all .3s; }
.nav-mobile {
  position: fixed; inset: 0; background: var(--white); z-index: 1100;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px;
  transform: translateX(100%); transition: transform .45s var(--ease-out);
}
.nav-mobile.open { transform: translateX(0); }
.nav-mobile-close {
  position: absolute; top: 22px; right: var(--gutter);
  background: none; border: none; color: var(--ink); font-size: 1.3rem; cursor: pointer;
}
.nav-mobile-links {
  display: flex; flex-direction: column; align-items: center; gap: 2px; margin-bottom: 36px;
}
.nav-mobile-links a {
  font-family: var(--serif); font-size: 2.2rem; font-weight: 300;
  color: var(--ink); padding: 7px 0; transition: color .2s;
}
.nav-mobile-links a:hover { color: var(--blue); }
.nav-mobile-cta {
  font-size: .68rem; font-weight: 500; letter-spacing: .14em; text-transform: uppercase;
  color: var(--white); background: var(--ink); padding: 14px 36px; border-radius: 1px;
}

/* ══════════════════════════════════════════
   HERO — split: navy text left / photo fills right
══════════════════════════════════════════ */
.hero { position: relative; min-height: 100vh; overflow: hidden; }

.hero-inner {
  display: grid;
  grid-template-columns: 44fr 56fr;
  min-height: 100vh;
}

/* Left — solid navy, text */
.hero-left {
  background: #0E1E35;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: clamp(120px,14vw,160px) clamp(48px,5vw,80px) clamp(72px,8vw,100px) var(--gutter);
  position: relative; z-index: 2;
}

/* Text colors on dark bg */
.hero-left .hero-eyebrow { color: var(--sky); }
.hero-title { color: #ffffff; }
.hero-title em { color: var(--sky); }
.hero-sub { color: rgba(247,243,238,.70); }
.hero-badge span { color: rgba(247,243,238,.45); }
.hero-badge-line { background: var(--gold); }
.hero-scroll span { color: rgba(247,243,238,.45); }
.hero-scroll-line { background: rgba(247,243,238,.25); }

/* Right — photo with slight padding top/bottom to pull back zoom */
.hero-right {
  position: relative;
  overflow: hidden;
  background: #0E1E35;
  padding: 64px 0;
}

.hero-photo {
  position: absolute;
  inset: 64px 0;
  width: 100%;
  height: calc(100% - 128px);
  object-fit: cover;
  object-position: center 15%;
}


.hero-eyebrow {
  font-size: .62rem; font-weight: 400; letter-spacing: .22em;
  text-transform: uppercase; color: var(--blue); margin-bottom: 28px;
  opacity: 0; transition: opacity .9s var(--ease-out);
}
.hero-eyebrow.in { opacity: 1; }

/* Line-by-line clip reveal */
.hero-title {
  font-family: var(--serif);
  font-size: clamp(52px, 6.5vw, 96px);
  font-weight: 300; line-height: 1.04;
  letter-spacing: -.015em; color: var(--ink);
  margin-bottom: 28px;
}
.hero-title em { font-style: italic; color: var(--sky); }
.line-wrap { display: block; overflow: hidden; }
.line-inner {
  display: block;
  transform: translateY(108%);
  transition: transform 1s var(--ease-out);
}
.in .line-inner { transform: translateY(0); }
.in .line-wrap:nth-child(2) .line-inner { transition-delay: .1s; }
.in .line-wrap:nth-child(3) .line-inner { transition-delay: .2s; }

.hero-sub {
  font-size: .84rem; font-weight: 300; line-height: 1.85; color: var(--stone);
  max-width: 400px; margin-bottom: 44px;
  opacity: 0; transform: translateY(14px);
  transition: opacity .9s var(--ease-out) .35s, transform .9s var(--ease-out) .35s;
}
.hero-sub.in { opacity: 1; transform: translateY(0); }

.hero-actions {
  display: flex; gap: 14px; flex-wrap: wrap;
  opacity: 0; transform: translateY(12px);
  transition: opacity .9s var(--ease-out) .48s, transform .9s var(--ease-out) .48s;
}
.hero-actions.in { opacity: 1; transform: translateY(0); }

.hero-badge {
  display: flex; align-items: center; gap: 12px; margin-top: 52px;
  opacity: 0; transition: opacity .9s var(--ease-out) .62s;
}
.hero-badge.in { opacity: 1; }
.hero-badge-line { width: 24px; height: 1px; background: var(--gold); }
.hero-badge span { font-size: .6rem; letter-spacing: .16em; text-transform: uppercase; color: var(--stone); }

.hero-scroll {
  position: absolute; bottom: 32px; left: var(--gutter);
  display: flex; align-items: center; gap: 10px; z-index: 3;
}
.hero-scroll span { font-size: .6rem; letter-spacing: .18em; text-transform: uppercase; color: var(--stone); }
.hero-scroll-line { width: 28px; height: 1px; background: var(--stone); }

/* ══════════════════════════════════════════
   SHARED TEXT
══════════════════════════════════════════ */
.eyebrow {
  font-size: .6rem; font-weight: 400; letter-spacing: .22em;
  text-transform: uppercase; color: var(--blue); display: block; margin-bottom: 12px;
}
.eyebrow-dk { color: rgba(250,250,248,.5); }

.section-title {
  font-family: var(--serif); font-size: clamp(36px,4vw,58px);
  font-weight: 300; line-height: 1.08; letter-spacing: -.01em; color: var(--ink);
}
.section-title em { font-style: italic; color: var(--blue); }
.section-title-lt { color: rgba(250,250,248,.92); }
.section-title-lt em { color: var(--sky); }

.rule {
  font-size: .58rem; font-weight: 400; letter-spacing: .22em;
  text-transform: uppercase; color: var(--blue);
  display: flex; align-items: center; gap: 12px; margin-bottom: 14px;
}
.rule::before { content: ''; width: 22px; height: 1px; background: var(--blue); flex-shrink: 0; }
.rule-lt { color: rgba(250,250,248,.45); }
.rule-lt::before { background: rgba(250,250,248,.45); }
.rule-center { justify-content: center; }
.rule-center::before { display: none; }
.body-lg { font-size: .9rem; font-weight: 300; line-height: 1.88; color: var(--stone); }
.body-sm { font-size: .78rem; font-weight: 300; line-height: 1.88; color: var(--stone); }
.d3 { font-family: var(--serif); font-size: clamp(22px,3vw,36px); font-weight: 300; }
.serif { font-family: var(--serif); }
.mt-0 { margin-top: 0; } .mt-8 { margin-top: 48px; }

/* ══════════════════════════════════════════
   BUTTONS
══════════════════════════════════════════ */
.btn {
  display: inline-flex; align-items: center; gap: 8px; font-family: var(--sans);
  font-size: .65rem; font-weight: 500; letter-spacing: .14em; text-transform: uppercase;
  padding: 14px 28px; border-radius: 1px; transition: all .25s var(--ease);
  cursor: pointer; border: none; white-space: nowrap;
}
.btn-dark { background: var(--ink); color: var(--white); }
.btn-dark:hover { background: var(--deep); transform: translateY(-1px); }
.btn-blue { background: var(--blue); color: var(--white); }
.btn-blue:hover { background: var(--deep); transform: translateY(-1px); }
.btn-outline { background: transparent; color: var(--ink); border: 1px solid var(--border); }
.btn-outline:hover { background: var(--ink); color: var(--white); border-color: var(--ink); }
.btn-outline-lt { background: transparent; color: rgba(250,250,248,.88); border: 1px solid rgba(250,250,248,.22); }
.btn-outline-lt:hover { background: rgba(250,250,248,.1); }

/* ══════════════════════════════════════════
   PLACEHOLDER IMAGES
══════════════════════════════════════════ */
.ph {
  position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.ph-blue { background: linear-gradient(160deg,#1E3A5C,#0F1F35); }
.ph-mist { background: linear-gradient(160deg,#C8D9E8,#A8C0D4); }
.ph-sand { background: linear-gradient(160deg,#D4C4A0,#B8A880); }
.ph-pale { background: var(--pale); }
/* Service hero placeholder — elegant blue-to-pale for light svc-hero */
.ph-svc  { background: linear-gradient(155deg, var(--pale) 0%, #C4D8E8 40%, var(--sky) 80%, #7EAAC4 100%); }
.ph-label {
  position: absolute; bottom: 14px; left: 50%; transform: translateX(-50%);
  font-size: .54rem; letter-spacing: .16em; text-transform: uppercase;
  color: rgba(17,24,40,.28); white-space: nowrap;
}
.ph-icon { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); opacity: .35; }

/* Clip reveal for images */
.clip-reveal { clip-path: inset(100% 0 0 0); }
.clip-reveal.in { clip-path: inset(0% 0 0 0); transition: clip-path 1.2s var(--ease-out); }

/* ══════════════════════════════════════════
   SERVICES SECTION (light)
══════════════════════════════════════════ */
.services-section { padding: var(--section) 0; background: var(--sand); }
.services-header {
  display: flex; align-items: flex-end; justify-content: space-between;
  margin-bottom: clamp(36px,5vw,56px); gap: 24px; flex-wrap: wrap;
}
.services-grid {
  display: grid; grid-template-columns: repeat(5,1fr);
  gap: 1px; background: var(--border); border: 1px solid var(--border);
}
.svc-card { background: var(--sand); transition: background .3s; }
.svc-card:hover { background: var(--white); }
.svc-card-link { display: block; padding: 30px 24px 28px; position: relative; height: 100%; }
.svc-card-cat { font-size: .57rem; font-weight: 400; letter-spacing: .18em; text-transform: uppercase; color: var(--blue); margin-bottom: 10px; }
.svc-card-name { font-family: var(--serif); font-size: 1.45rem; font-weight: 300; color: var(--ink); line-height: 1.15; margin-bottom: 9px; }
.svc-card-line { font-size: .74rem; font-weight: 300; font-style: italic; color: var(--stone); line-height: 1.65; margin-bottom: 18px; }
.svc-card-meta { font-size: .62rem; letter-spacing: .08em; color: var(--stone); }
.svc-card-arrow { position: absolute; bottom: 28px; right: 24px; font-size: .72rem; color: var(--blue); opacity: 0; transform: translateX(-6px); transition: opacity .2s, transform .2s; }
.svc-card:hover .svc-card-arrow { opacity: 1; transform: translateX(0); }

/* Reveal variants */
/* Reveal — GSAP handles animation via premium.js (fromTo)
   CSS provides fallback for no-JS, and .in class for CSS-only path */
[data-reveal], .reveal {
  will-change: opacity, transform;
}
[data-reveal].in, .reveal.in {
  opacity: 1 !important; transform: translateY(0) !important;
}
/* no-js fallback: show everything */
.no-js [data-reveal], .no-js .reveal { opacity: 1; transform: none; }

/* Attribute delays */
[data-reveal-delay="1"] { transition-delay: .10s; }
[data-reveal-delay="2"] { transition-delay: .20s; }
[data-reveal-delay="3"] { transition-delay: .32s; }
[data-reveal-delay="4"] { transition-delay: .44s; }
[data-reveal-delay="5"] { transition-delay: .58s; }

/* Class delays (data-delay attr) */
.reveal[data-delay=".1"]  { transition-delay: .10s; }
.reveal[data-delay=".15"] { transition-delay: .15s; }
.reveal[data-delay=".2"]  { transition-delay: .20s; }
.reveal[data-delay=".3"]  { transition-delay: .30s; }
.reveal[data-delay=".4"]  { transition-delay: .40s; }

/* ══════════════════════════════════════════
   FACIALS SECTION (pale blue-white)
══════════════════════════════════════════ */
.facials-section { padding: var(--section) 0; background: var(--mist); }
.facials-header { display: flex; align-items: flex-end; justify-content: space-between; flex-wrap: wrap; gap: 24px; margin-bottom: clamp(40px,5vw,64px); }
.facials-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: var(--border); border: 1px solid var(--border); }

.facial-card {
  background: var(--white); display: flex; flex-direction: column;
  transition: background .3s;
  position: relative; overflow: hidden;
}
.facial-card:hover { background: var(--mist); }
.facial-img {
  height: 280px; overflow: hidden; position: relative;
  background: var(--pale);
}
/* Art illustration variant */
.facial-img--art {
  background: var(--white);
  display: flex; align-items: center; justify-content: center;
  overflow: visible;
}
.facial-img--dark {
  background: linear-gradient(155deg, #162848 0%, #0E1E3A 45%, #070F22 100%);
}
/* The SVG fills the card */
.facial-art {
  width: 100%; height: 100%;
  display: block;
  will-change: transform;
}
/* Dark card: drop-shadow glow */
.facial-img--dark .facial-art {
  filter: drop-shadow(0 0 22px rgba(74,123,168,0.20));
}
/* Prevent CSS hover transform from fighting GSAP 3D tilt */
.facial-card:hover .facial-img--art .facial-art,
.facial-card:hover .facial-img--dark .facial-art { transform: none !important; }

/* Background ambient glow pulse — CSS only, always running */
.facial-img--art::before,
.facial-img--dark::before {
  content: '';
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 180px; height: 180px; border-radius: 50%;
  background: radial-gradient(circle, rgba(74,123,168,0.10) 0%, transparent 70%);
  animation: art-glow-pulse 6.0s ease-in-out infinite;
  pointer-events: none; z-index: 0;
}
.facial-img--dark::before {
  background: radial-gradient(circle, rgba(74,123,168,0.16) 0%, transparent 65%);
}
@keyframes art-glow-pulse {
  0%, 100% { opacity: 0.30; transform: translate(-50%,-50%) scale(0.92); }
  50%       { opacity: 0.65; transform: translate(-50%,-50%) scale(1.08); }
}
.facial-img .ph, .facial-img img {
  width: 100%; height: 100%;
  transition: transform .7s var(--ease-out);
}
.facial-img img { object-fit: cover; }
.facial-card:hover .facial-img img,
.facial-card:hover .facial-img .ph { transform: scale(1.04); }
.facial-badge {
  position: absolute; top: 16px; left: 16px;
  background: var(--blue); color: white;
  font-size: .53rem; font-weight: 500; letter-spacing: .14em; text-transform: uppercase;
  padding: 5px 11px; border-radius: 100px;
}
.facial-body { padding: 30px 28px 28px; flex: 1; display: flex; flex-direction: column; }
.facial-cat { font-size: .57rem; font-weight: 400; letter-spacing: .18em; text-transform: uppercase; color: var(--blue); margin-bottom: 10px; }
.facial-name { font-family: var(--serif); font-size: 1.65rem; font-weight: 300; color: var(--ink); line-height: 1.12; margin-bottom: 14px; }
.facial-desc { font-size: .78rem; font-weight: 300; line-height: 1.82; color: var(--stone); margin-bottom: 24px; flex: 1; }
.facial-foot { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 10px; padding-top: 20px; border-top: 1px solid var(--border-lt); }
.facial-meta { font-size: .62rem; letter-spacing: .08em; color: var(--stone); }
/* ── Facial card expanded content (dark-theme classes — only used in .facials-section) ── */
.facial-tagline { font-size: .8rem; font-style: italic; font-family: var(--serif); color: rgba(250,250,248,.28); margin-bottom: 18px; margin-top: -6px; }
.facial-chips { display: flex; flex-wrap: wrap; gap: 7px; margin-bottom: 24px; }
.facial-chip { font-size: .55rem; font-weight: 500; letter-spacing: .1em; color: rgba(250,250,248,.32); border: 1px solid rgba(255,255,255,.09); padding: 5px 12px; border-radius: 100px; }
.facial-price-block { border-top: 1px solid rgba(255,255,255,.07); padding-top: 18px; margin-bottom: 24px; }
.facial-price-row { display: flex; justify-content: space-between; align-items: baseline; padding: 6px 0; border-bottom: 1px solid rgba(255,255,255,.04); }
.facial-price-row:last-child { border-bottom: none; }
.facial-price-label { font-size: .63rem; color: rgba(250,250,248,.26); letter-spacing: .06em; }
.facial-price-val { font-family: var(--serif); font-size: 1.45rem; font-weight: 300; color: rgba(250,250,248,.85); }
.facial-price-val-sm { font-family: var(--serif); font-size: .95rem; font-weight: 300; color: rgba(250,250,248,.42); }

/* ══════════════════════════════════════════
   BRAND STATEMENT
══════════════════════════════════════════ */
.brand-stmt { padding: clamp(80px,12vw,160px) 0; background: var(--charcoal); text-align: center; position: relative; overflow: hidden; }
.brand-stmt::before { content: ''; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 640px; height: 640px; background: radial-gradient(circle, rgba(196,169,122,.06) 0%, transparent 65%); pointer-events: none; }
.brand-stmt-text { font-family: var(--serif); font-size: clamp(26px,3.8vw,52px); font-weight: 300; line-height: 1.45; letter-spacing: -.01em; color: rgba(247,243,238,.88); max-width: 860px; margin: 0 auto; position: relative; z-index: 1; }
.brand-stmt-text em { font-style: italic; color: var(--gold); }
.brand-stmt-text .word { display: inline-block; opacity: .08; }
.brand-stmt-attr { margin-top: 44px; font-size: .58rem; letter-spacing: .22em; text-transform: uppercase; color: rgba(247,243,238,.18); position: relative; z-index: 1; }

/* ══════════════════════════════════════════
   ABOUT
══════════════════════════════════════════ */
.about-section { padding: var(--section) 0; background: var(--white); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px,6vw,100px); align-items: center; }
.about-img {
  aspect-ratio: 3/4; overflow: hidden; border-radius: 1px;
  position: relative;
}
.about-img .ph { width: 100%; height: 100%; }
.about-img img,
.about-photo img { width: 100%; height: 100%; object-fit: cover; }
.about-photo {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.about-photo figcaption {
  font-size: .6rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--stone);
}
.bio-photo {
  border-radius: 2px;
  overflow: hidden;
  background: var(--mist);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.bio-photo figcaption {
  font-size: .6rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--stone);
}
.bio-photo img { width: 100%; height: 100%; object-fit: cover; }
.about-quote { font-family: var(--serif); font-size: clamp(22px,3vw,36px); font-weight: 300; font-style: italic; line-height: 1.42; color: var(--ink); margin-bottom: 22px; }
.about-body { font-size: .82rem; font-weight: 300; line-height: 1.9; color: var(--stone); margin-bottom: 34px; }
.about-byline { display: flex; align-items: center; gap: 14px; margin-bottom: 32px; }
.about-byline-line { width: 28px; height: 1px; background: var(--blue); }
.about-byline span { font-size: .62rem; letter-spacing: .14em; text-transform: uppercase; color: var(--blue); }

/* ══════════════════════════════════════════
   STUDIO GALLERY
══════════════════════════════════════════ */
.studio-section { padding: var(--section) 0; background: var(--cream); }
.studio-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: clamp(32px,4vw,56px);
}
.studio-sub {
  max-width: 360px;
  font-size: .82rem;
  color: var(--stone);
  line-height: 1.8;
}
.studio-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 18px;
}
.studio-card {
  position: relative;
  border-radius: 2px;
  overflow: hidden;
  background: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 240px;
  box-shadow: 0 24px 60px rgba(8,20,32,0.08);
}
.studio-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.studio-card figcaption {
  font-size: .58rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(8,20,32,0.6);
  padding: 14px 18px;
  background: rgba(255,255,255,0.9);
}
.studio-card--tall { grid-row: span 2; }
.studio-card--wide { grid-column: span 2; }

@media (max-width: 1024px) {
  .studio-grid { grid-template-columns: repeat(2,1fr); }
  .studio-card--tall { grid-row: auto; }
  .studio-card--wide { grid-column: span 2; }
}
@media (max-width: 640px) {
  .studio-grid { grid-template-columns: 1fr; }
  .studio-card--wide { grid-column: auto; }
}

/* ══════════════════════════════════════════
   TESTIMONIALS
══════════════════════════════════════════ */
.testimonials-section { padding: var(--section) 0; background: var(--cream); overflow: hidden; }
.marquee-wrap { position: relative; overflow: hidden; margin-top: 44px; }
.marquee-wrap::before, .marquee-wrap::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 0;
  z-index: 2;
  pointer-events: none;
  background: transparent;
}
.marquee { display: flex; gap: 16px; animation: marquee 30s linear infinite; width: max-content; }
.marquee:hover { animation-play-state: paused; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.testi-card { width: 360px; flex-shrink: 0; background: var(--white); border: 1px solid var(--border); padding: 30px 28px; }
.testi-stars { font-size: .65rem; color: var(--blue); letter-spacing: 4px; margin-bottom: 14px; }
.testi-text { font-family: var(--serif); font-size: 1.05rem; font-weight: 300; font-style: italic; line-height: 1.65; color: var(--ink); margin-bottom: 18px; }
.testi-author { font-size: .6rem; letter-spacing: .12em; text-transform: uppercase; color: var(--stone); }

/* ══════════════════════════════════════════
   MEMBERSHIP — editorial, no icons
══════════════════════════════════════════ */
.membership-section { padding: var(--section) 0; background: var(--pale); }
.membership-inner { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px,7vw,100px); align-items: start; }
.membership-price-display { font-family: var(--serif); font-size: clamp(44px,6vw,80px); font-weight: 300; color: var(--ink); line-height: 1; margin: 16px 0; }
.membership-price-display sub { font-size: .38em; vertical-align: baseline; color: var(--stone); }
.membership-note { font-size: .8rem; font-weight: 300; color: var(--stone); line-height: 1.8; margin-bottom: 36px; max-width: 380px; }
.benefit-list { display: flex; flex-direction: column; border-top: 1px solid var(--border); }
.benefit-item {
  display: grid; grid-template-columns: 44px 1fr;
  gap: 24px; align-items: start;
  padding: 24px 0; border-bottom: 1px solid var(--border);
}
.benefit-num { font-family: var(--serif); font-size: 1.1rem; font-weight: 300; color: var(--blue); padding-top: 2px; }
.benefit-content {}
.benefit-title { font-family: var(--serif); font-size: 1.3rem; font-weight: 300; color: var(--ink); margin-bottom: 5px; }
.benefit-sub { font-size: .74rem; font-weight: 300; color: var(--stone); line-height: 1.65; }

/* ══════════════════════════════════════════
   BOOK CTA
══════════════════════════════════════════ */
.book-section { padding: clamp(100px,14vw,180px) 0; background: linear-gradient(160deg, var(--deep) 0%, #152C44 100%); text-align: center; position: relative; overflow: hidden; }
.book-section::before { content: ''; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 600px; height: 600px; background: radial-gradient(circle, rgba(137,192,217,.12) 0%, transparent 65%); pointer-events: none; }
.book-title { font-family: var(--serif); font-size: clamp(48px,6.5vw,92px); font-weight: 300; line-height: 1.04; letter-spacing: -.015em; color: rgba(250,250,248,.92); margin-bottom: 20px; position: relative; z-index: 1; }
.book-title em { font-style: italic; color: var(--sky); }
.book-sub { font-size: .82rem; font-weight: 300; color: rgba(250,250,248,.42); line-height: 1.8; max-width: 440px; margin: 0 auto; position: relative; z-index: 1; }
.book-address { font-size: .58rem; color: rgba(250,250,248,.16); margin-top: 52px; letter-spacing: .16em; text-transform: uppercase; position: relative; z-index: 1; }

/* ══════════════════════════════════════════
   FOOTER
══════════════════════════════════════════ */
.review-banner {
  background: linear-gradient(135deg, #0d1d2f 0%, #050b16 70%);
  padding: clamp(56px,8vw,100px) 0;
  position: relative;
}
.review-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 80%, rgba(137,192,217,.12), transparent 50%),
              radial-gradient(circle at 15% 20%, rgba(137,192,217,.14), transparent 42%);
  pointer-events: none;
}
.review-banner-inner {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  padding: 0 20px;
}
.review-card {
  background: #fff;
  color: var(--ink);
  border-radius: 24px;
  padding: clamp(36px,5vw,52px) clamp(32px,5vw,56px);
  max-width: 620px;
  width: 100%;
  box-shadow: 0 32px 80px rgba(5,11,23,.3), 0 0 0 1px rgba(137,192,217,.12);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.review-card::after {
  content: '';
  position: absolute;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(137,192,217,.22), transparent 70%);
  border-radius: 50%;
  top: -80px; right: -60px;
  pointer-events: none;
}
.review-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .58rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--blue);
  background: rgba(74,140,196,.08);
  border: 1px solid rgba(74,140,196,.2);
  border-radius: 999px;
  padding: 6px 16px;
  margin-bottom: 20px;
}
.review-stars {
  font-size: 1.4rem;
  letter-spacing: .22em;
  color: #89C0D9;
  margin-bottom: 18px;
  display: block;
}
.review-quote {
  font-family: var(--serif);
  font-size: clamp(22px,3vw,32px);
  font-style: italic;
  color: #0b1625;
  margin: 0 0 16px;
  line-height: 1.3;
}
.review-copy {
  font-size: .88rem;
  color: rgba(8,13,22,.6);
  line-height: 1.85;
  max-width: 420px;
  margin: 0 auto 4px;
}
.review-note {
  font-size: .65rem;
  color: rgba(8,13,22,.35);
  margin-top: 14px;
}
.review-btn {
  margin: 24px auto 0;
  display: block;
  width: fit-content;
}

.footer { background: var(--ink); padding: clamp(56px,7vw,100px) 0 40px; border-top: 1px solid rgba(250,250,248,.06); }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 56px; }
.footer-logo { font-family: var(--serif); font-size: 1.4rem; font-weight: 300; color: rgba(250,250,248,.9); margin-bottom: 14px; }
.footer-logo em { font-style: italic; color: var(--sky); }
.footer-desc { font-size: .74rem; color: rgba(250,250,248,.35); line-height: 1.78; margin-bottom: 18px; }
.footer-addr { font-size: .7rem; color: rgba(250,250,248,.32); line-height: 2.1; }
.footer-addr a { color: rgba(250,250,248,.32); transition: color .2s; }
.footer-addr a:hover { color: rgba(250,250,248,.85); }
.footer-social { display: flex; gap: 12px; margin-top: 20px; }
.footer-social a { width: 32px; height: 32px; border: 1px solid rgba(250,250,248,.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: rgba(250,250,248,.32); transition: all .2s; }
.footer-social a:hover { border-color: var(--sky); color: var(--sky); }
.footer-col-h { display: block; font-size: .58rem; font-weight: 500; letter-spacing: .2em; text-transform: uppercase; color: rgba(250,250,248,.3); margin-bottom: 18px; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: .74rem; color: rgba(250,250,248,.28); transition: color .2s; }
.footer-links a:hover { color: rgba(250,250,248,.85); }
.footer-bottom { border-top: 1px solid rgba(250,250,248,.06); padding-top: 28px; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.footer-bottom span, .footer-bottom div { font-size: .62rem; color: rgba(250,250,248,.16); letter-spacing: .06em; }
.footer-bottom a { color: rgba(250,250,248,.25); transition: color .2s; }
.footer-bottom a:hover { color: var(--sky); }

/* ══════════════════════════════════════════
   SERVICE PAGE STYLES
══════════════════════════════════════════ */
/* ── Service page hero — light luxury editorial ── */
.svc-hero {
  padding-top: 100px; /* match nav height */
  background: var(--white);
  min-height: 72vh; display: flex; align-items: center;
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.svc-hero-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(40px,6vw,80px); align-items: center;
  padding: clamp(60px,8vw,110px) 0;
}
.svc-hero-inner h1 {
  font-family: var(--serif); font-size: clamp(46px,5.8vw,82px);
  font-weight: 300; line-height: 1.06; letter-spacing: -.015em;
  color: var(--ink); margin: 16px 0 22px;
}
.svc-hero-inner h1 em { font-style: italic; color: var(--blue); }
.svc-hero-inner p {
  font-size: .88rem; font-weight: 300; line-height: 1.82;
  color: var(--stone); max-width: 420px; margin-bottom: 36px;
}
/* Animate hero content in on load */
.svc-hero .svc-hero-tag { animation: fadeUp .7s var(--ease-out) both; }
.svc-hero h1            { animation: fadeUp .85s var(--ease-out) .10s both; }
.svc-hero p             { animation: fadeUp .85s var(--ease-out) .20s both; }
.svc-hero .btn          { animation: fadeUp .7s var(--ease-out) .32s both; }
.svc-hero .svc-hero-img { animation: fadeIn 1.1s var(--ease-out) .18s both; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.svc-tag { font-size: .6rem; letter-spacing: .2em; text-transform: uppercase; color: var(--sky); }
.svc-hero-img { aspect-ratio: 4/5; overflow: hidden; border-radius: 1px; }
.svc-hero-img .ph { width: 100%; height: 100%; }
.svc-layout { display: grid; grid-template-columns: 1fr 380px; gap: 60px; align-items: start; }
.svc-sidebar { position: sticky; top: 100px; display: flex; flex-direction: column; gap: 16px; }
.ben-list { display: flex; flex-direction: column; gap: 26px; margin-top: 30px; }
.ben-item { display: flex; gap: 18px; align-items: flex-start; }
.ben-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--blue); flex-shrink: 0; margin-top: 8px; }
.ben-item h4 { font-family: var(--serif); font-size: 1.1rem; font-weight: 300; color: var(--ink); margin-bottom: 6px; }
.ben-item p { font-size: .78rem; color: var(--stone); line-height: 1.8; }
.faq { display: flex; flex-direction: column; margin-top: 20px; border-top: 1px solid var(--border); }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q { display: flex; justify-content: space-between; align-items: center; padding: 18px 0; font-size: .8rem; color: var(--ink); cursor: pointer; gap: 12px; }
.faq-icon { font-size: 1.1rem; font-weight: 300; color: var(--blue); flex-shrink: 0; transition: transform .2s; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-a { display: none; font-size: .78rem; color: var(--stone); line-height: 1.8; padding-bottom: 18px; }
.faq-item.open .faq-a { display: block; }
.price-card { background: var(--deep); border: 1px solid rgba(250,250,248,.07); border-radius: 2px; padding: 28px; }
.price-card h3 { font-family: var(--serif); font-size: 1.4rem; font-weight: 300; color: rgba(250,250,248,.9); margin-bottom: 20px; }
.price-row { display: flex; justify-content: space-between; align-items: baseline; padding: 14px 0; border-top: 1px solid rgba(250,250,248,.07); }
.price-row-lbl { font-size: .72rem; color: rgba(250,250,248,.38); }
.price-row-val { font-family: var(--serif); font-size: 1.5rem; font-weight: 300; color: rgba(250,250,248,.9); }
.dur-chip { display: inline-flex; align-items: center; gap: 6px; font-size: .62rem; letter-spacing: .1em; color: var(--sky); background: rgba(74,123,168,.12); border: 1px solid rgba(74,123,168,.2); padding: 6px 12px; border-radius: 100px; margin: 14px 0 18px; }
.addons-card { background: var(--pale); border: 1px solid var(--border); border-radius: 2px; padding: 22px; }
.addons-card h4 { font-size: .58rem; letter-spacing: .18em; text-transform: uppercase; color: var(--blue); margin-bottom: 16px; }
.addon-row { display: flex; justify-content: space-between; align-items: center; padding: 10px 0; border-bottom: 1px solid var(--border); font-size: .74rem; color: var(--stone); }
.addon-row:last-child { border-bottom: none; }
.addon-price { color: var(--ink); font-weight: 400; }
.related-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.related-card { background: var(--white); border: 1px solid var(--border); overflow: hidden; transition: transform .3s var(--ease-out); }
.related-card:hover { transform: translateY(-3px); }
.related-img { height: 180px; overflow: hidden; }
.related-body { padding: 18px 16px; }
.related-cat { font-size: .57rem; letter-spacing: .18em; text-transform: uppercase; color: var(--blue); margin-bottom: 6px; }
.related-name { font-family: var(--serif); font-size: 1.2rem; font-weight: 300; color: var(--ink); }

/* ══════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════ */
@media (max-width: 1100px) {
  .services-grid { grid-template-columns: repeat(3,1fr); }
  .membership-inner { grid-template-columns: 1fr; }
  .svc-layout { grid-template-columns: 1fr; }
  .svc-sidebar { position: static; }
  .svc-hero-inner { grid-template-columns: 1fr; }
  .svc-hero-img { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-right { display: none; }
  .hero-left { padding: clamp(100px,12vw,130px) var(--gutter) clamp(60px,8vw,100px); }
  .facials-grid { grid-template-columns: 1fr 1fr; }
  .about-grid { grid-template-columns: 1fr; row-gap: 32px; }
  .about-img { aspect-ratio: unset !important; height: auto !important; max-width: 100%; margin: 0 0 32px; overflow: visible; }
  .about-img img { width: 100%; height: auto !important; object-fit: contain; object-position: center top; }
}
@media (max-width: 640px) {
  /* Katie photo wrapper — always visible, full picture */
  .about-katie-wrap { display: flex !important; }
}
@media (max-width: 768px) {
  .nav-links, .nav-center, .nav-book { display: none; }
  .nav-toggle { display: flex; }
  .nav-inner { grid-template-columns: 1fr auto; }
  .nav-right { gap: 0; }
  .facials-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .related-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .services-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
}


/* ══════════════════════════════════════════
   AUTO-GENERATED ADDITIONS
══════════════════════════════════════════ */
/* ── PAGE HERO ── */
.page-hero {
  background: var(--pale);
  padding: clamp(100px, 14vw, 160px) var(--gutter) clamp(60px, 8vw, 100px);
  padding-top: calc(100px + clamp(40px, 6vw, 80px)); /* nav + breathing room */
  text-align: center;
  min-height: 320px;
  display: flex;
  align-items: center;
}
.page-hero .container { width: 100%; }
.page-hero h1 { font-family: var(--serif); font-size: clamp(2.4rem, 6vw, 4rem); font-weight: 300; color: var(--navy); margin: 16px 0 20px; line-height: 1.12; }
.page-hero p { font-size: .9rem; font-weight: 300; color: var(--stone); max-width: 520px; margin: 0 auto; line-height: 1.75; }
/* ── SVC HERO TAG ── */
.svc-hero-tag {
  display: inline-block;
  font-size: .58rem;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 18px;
}
/* ── BENEFIT ── */
.benefits { display: flex; flex-direction: column; gap: 24px; margin-top: 8px; }
.benefit { display: flex; gap: 16px; align-items: flex-start; }
.benefit-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--blue); flex-shrink: 0; margin-top: 8px; }
.benefit h4 { font-family: var(--serif); font-size: 1.05rem; font-weight: 400; color: var(--navy); margin-bottom: 4px; }
.benefit p { font-size: .78rem; color: var(--stone); line-height: 1.65; margin: 0; }
/* ── CONTACT FORM ── */
.contact-form { display: flex; flex-direction: column; gap: 18px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-label { font-size: .68rem; font-weight: 500; letter-spacing: .1em; text-transform: uppercase; color: var(--stone); }
.form-input { padding: 13px 16px; border: 1px solid var(--border); border-radius: 2px; font-family: var(--sans); font-size: .84rem; color: var(--ink); background: var(--white); outline: none; transition: border-color .2s; }
.form-input:focus { border-color: var(--blue); }
textarea.form-input { min-height: 120px; resize: vertical; }
select.form-input { appearance: none; cursor: pointer; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236B8A9E' stroke-width='1.5' fill='none'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 38px; }
/* ── INFO BLOCK ── */
.info-block { display: flex; flex-direction: column; gap: 24px; }
.info-item { display: flex; gap: 18px; align-items: flex-start; }
.info-icon { font-size: 1.4rem; flex-shrink: 0; margin-top: 2px; }
.info-item h4 { font-size: .68rem; font-weight: 500; letter-spacing: .14em; text-transform: uppercase; color: var(--stone); margin-bottom: 4px; }
.info-item p, .info-item a { font-size: .84rem; color: var(--ink); line-height: 1.6; text-decoration: none; }
.info-item a:hover { color: var(--blue); }
/* ── BEFORE & AFTER GRID ── */
.before-after-section { padding: clamp(60px, 8vw, 100px) var(--gutter); }
.before-after-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; max-width: 900px; margin: 0 auto; }
.before-after-card { text-align: center; }
@media (max-width: 768px) {
  .before-after-grid { grid-template-columns: 1fr; max-width: 360px; }
}
@media (max-width: 900px) {
  .before-after-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ══════════════════════════════════════════
   CONSOLIDATED SERVICE PAGES — v2
══════════════════════════════════════════ */

/* ── Service Category Hero ── */
.cat-hero {
  padding-top: 100px;
  background: linear-gradient(160deg, var(--mist) 0%, var(--white) 60%);
  min-height: 60vh; display: flex; align-items: center;
  position: relative; overflow: hidden;
  border-bottom: 1px solid var(--border-lt);
}
.cat-hero::before {
  content: ''; position: absolute; top: -20%; right: -8%;
  width: 560px; height: 560px; border-radius: 50%;
  background: radial-gradient(circle, rgba(137,192,217,.14) 0%, transparent 65%);
  pointer-events: none;
}
.cat-hero-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(48px,6vw,96px); align-items: center;
  padding: clamp(60px,8vw,110px) 0;
}
.cat-hero-content { position: relative; z-index: 2; }
.cat-hero-eyebrow {
  font-size: .58rem; font-weight: 500; letter-spacing: .22em;
  text-transform: uppercase; color: var(--blue);
  display: flex; align-items: center; gap: 12px; margin-bottom: 22px;
}
.cat-hero-eyebrow::before { content: ''; width: 22px; height: 1px; background: var(--blue); }
.cat-hero h1 {
  font-family: var(--serif); font-size: clamp(44px,5.5vw,80px);
  font-weight: 300; line-height: 1.04; letter-spacing: -.015em;
  color: var(--ink); margin-bottom: 22px;
}
.cat-hero h1 em { font-style: italic; color: var(--blue); }
.cat-hero-desc {
  font-size: .88rem; font-weight: 300; line-height: 1.88;
  color: var(--stone); max-width: 440px; margin-bottom: 38px;
}
.cat-hero-img {
  aspect-ratio: 4/5;
  overflow: hidden;
  border-radius: 2px;
  position: relative;
  box-shadow: 0 30px 70px rgba(6,12,24,0.25);
}
.cat-hero-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.cat-hero-img-grad {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5,10,20,0.15) 0%, rgba(5,10,20,0.5) 90%);
}

/* ── Service Treatment Items ── */
.treatment-section { padding: var(--section) 0; }
.treatment-section:nth-child(even) { background: var(--sand); }
.treatment-section:nth-child(odd)  { background: var(--white); }

.treatment-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(48px,6vw,100px); align-items: center;
}
.treatment-grid.reverse { direction: rtl; }
.treatment-grid.reverse > * { direction: ltr; }

.treatment-img {
  aspect-ratio: 4/5; overflow: hidden; border-radius: 2px;
  background: linear-gradient(155deg, var(--pale) 0%, var(--mist) 100%);
  position: relative;
}
.treatment-img img { width: 100%; height: 100%; object-fit: cover; }

.treatment-content {}
.treatment-tag {
  font-size: .56rem; font-weight: 500; letter-spacing: .2em; text-transform: uppercase;
  color: var(--blue); display: flex; align-items: center; gap: 10px; margin-bottom: 16px;
}
.treatment-tag::before { content: ''; width: 18px; height: 1px; background: var(--sky); }
.treatment-content h2 {
  font-family: var(--serif); font-size: clamp(32px,3.6vw,52px);
  font-weight: 300; line-height: 1.1; letter-spacing: -.01em;
  color: var(--ink); margin-bottom: 18px;
}
.treatment-content h2 em { font-style: italic; color: var(--blue); }
.treatment-content p {
  font-size: .84rem; font-weight: 300; line-height: 1.92;
  color: var(--stone); margin-bottom: 28px;
}
.treatment-meta {
  display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 32px;
}
.meta-chip {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: .62rem; letter-spacing: .1em;
  color: var(--blue); background: rgba(80,137,184,.08);
  border: 1px solid rgba(80,137,184,.18);
  padding: 7px 14px; border-radius: 100px;
}

/* ── Price Panel ── */
.price-panel {
  background: var(--mist); border: 1px solid var(--border);
  border-radius: 3px; padding: 28px; margin-bottom: 28px;
}
.price-panel-title {
  font-size: .58rem; font-weight: 500; letter-spacing: .18em; text-transform: uppercase;
  color: var(--stone); margin-bottom: 16px;
}
.price-line {
  display: flex; justify-content: space-between; align-items: baseline;
  padding: 12px 0; border-bottom: 1px solid var(--border-lt);
}
.price-line:last-child { border-bottom: none; }
.price-line-label { font-size: .78rem; color: var(--stone); }
.price-line-val {
  font-family: var(--serif); font-size: 1.4rem; font-weight: 300; color: var(--ink);
}
.price-panel-dark {
  background: var(--deep); border: none; border-radius: 3px; padding: 28px; margin-bottom: 28px;
}
.price-panel-dark .price-panel-title { color: rgba(250,250,248,.38); }
.price-panel-dark .price-line { border-bottom-color: rgba(250,250,248,.07); }
.price-panel-dark .price-line-label { color: rgba(250,250,248,.38); }
.price-panel-dark .price-line-val { color: rgba(250,250,248,.9); }

/* ── Differentiator / Callout ── */
.differentiator {
  background: linear-gradient(135deg, var(--pale) 0%, var(--mist) 100%);
  border-left: 3px solid var(--blue);
  padding: 22px 26px; border-radius: 0 3px 3px 0; margin: 24px 0;
}
.differentiator p { font-size: .82rem; color: var(--stone); line-height: 1.75; margin: 0; }
.differentiator strong { color: var(--ink); font-weight: 500; }

/* ── Benefits strip ── */
.benefits-strip {
  padding: clamp(48px,6vw,80px) 0; background: var(--tan);
  border-top: 1px solid var(--border-lt); border-bottom: 1px solid var(--border-lt);
}
.benefits-strip-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 40px; align-items: start;
}
.benefit-strip-item { text-align: center; }
.benefit-strip-icon {
  font-family: var(--serif); font-size: 2.2rem; color: var(--blue);
  margin-bottom: 14px; line-height: 1;
}
.benefit-strip-title { font-family: var(--serif); font-size: 1.3rem; font-weight: 300; color: var(--ink); margin-bottom: 8px; }
.benefit-strip-text { font-size: .76rem; color: var(--stone); line-height: 1.75; }

/* ── FAQ on service pages ── */
.svc-faq { padding: var(--section) 0; background: var(--white); }
.svc-faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px,6vw,80px); align-items: start; }
.svc-faq-lede { position: sticky; top: 120px; }
.svc-faq-lede h2 { font-family: var(--serif); font-size: clamp(32px,3.8vw,52px); font-weight: 300; color: var(--ink); margin-bottom: 16px; }
.svc-faq-lede h2 em { font-style: italic; color: var(--blue); }
.svc-faq-lede p { font-size: .82rem; color: var(--stone); line-height: 1.88; }

/* ── About provider strip ── */
.provider-strip {
  padding: clamp(64px,8vw,100px) 0;
  background: var(--mist);
}
.provider-strip-inner {
  display: grid; grid-template-columns: 240px 1fr; gap: 52px; align-items: center;
}
.provider-photo {
  aspect-ratio: 3/4; overflow: hidden; border-radius: 2px;
  background: linear-gradient(160deg, var(--pale), var(--sky));
}
.provider-photo img { width: 100%; height: 100%; object-fit: cover; }
.provider-quote {
  font-family: var(--serif); font-size: clamp(20px,2.4vw,30px);
  font-weight: 300; font-style: italic; line-height: 1.45; color: var(--ink);
  margin-bottom: 18px;
}
.provider-byline {
  display: flex; align-items: center; gap: 14px;
  font-size: .62rem; letter-spacing: .14em; text-transform: uppercase; color: var(--blue);
}
.provider-byline::before { content: ''; width: 24px; height: 1px; background: var(--sky); }

/* ── Treatment nav pill bar ── */
.treatment-nav {
  position: sticky; top: 100px; z-index: 50;
  background: rgba(250,250,248,.94); backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border-lt);
  padding: 0 var(--gutter);
}
.treatment-nav-inner {
  max-width: var(--max); margin: 0 auto;
  display: flex; gap: 4px; align-items: center;
  height: 52px; overflow-x: auto;
}
.treatment-nav a {
  font-size: .62rem; font-weight: 500; letter-spacing: .14em; text-transform: uppercase;
  color: var(--stone); padding: 8px 16px; border-radius: 100px;
  white-space: nowrap; transition: all .2s;
}
.treatment-nav a:hover { color: var(--ink); background: var(--mist); }
.treatment-nav a.active { color: var(--white); background: var(--blue); }

/* ══════════════════════════════════════════
   PREMIUM GSAP ANIMATION CLASSES
══════════════════════════════════════════ */

/* Horizontal slide-in from left */
[data-slide-left] {
  opacity: 0; transform: translateX(-48px);
  transition: opacity .9s var(--ease-out), transform .9s var(--ease-out);
}
[data-slide-left].in { opacity: 1; transform: translateX(0); }

/* Horizontal slide-in from right */
[data-slide-right] {
  opacity: 0; transform: translateX(48px);
  transition: opacity .9s var(--ease-out), transform .9s var(--ease-out);
}
[data-slide-right].in { opacity: 1; transform: translateX(0); }

/* Scale-up reveal */
[data-scale] {
  opacity: 0; transform: scale(.96);
  transition: opacity .9s var(--ease-out), transform .9s var(--ease-out);
}
[data-scale].in { opacity: 1; transform: scale(1); }

/* Clip reveal from bottom */
[data-clip] {
  clip-path: inset(0 0 100% 0);
  transition: clip-path 1.1s var(--ease-out);
}
[data-clip].in { clip-path: inset(0 0 0% 0); }

/* Staggered children — apply via JS */
.stagger-parent > * { opacity: 0; transform: translateY(20px); }
.stagger-parent.in > * {
  opacity: 1; transform: translateY(0);
  transition: opacity .75s var(--ease-out), transform .75s var(--ease-out);
}
.stagger-parent.in > *:nth-child(1) { transition-delay: 0s; }
.stagger-parent.in > *:nth-child(2) { transition-delay: .08s; }
.stagger-parent.in > *:nth-child(3) { transition-delay: .16s; }
.stagger-parent.in > *:nth-child(4) { transition-delay: .24s; }
.stagger-parent.in > *:nth-child(5) { transition-delay: .32s; }

/* Parallax image wrapper */
.parallax-wrap { overflow: hidden; }
.parallax-inner { will-change: transform; }

/* Number counter pop */
.stat-num {
  font-family: var(--serif); font-size: clamp(40px,6vw,80px);
  font-weight: 300; color: var(--blue); line-height: 1;
  opacity: 0; transform: translateY(20px);
  transition: opacity .7s var(--ease-out), transform .7s var(--ease-out);
}
.stat-num.in { opacity: 1; transform: translateY(0); }

/* ══════════════════════════════════════════
   ABOUT PAGE — FULL STYLES
══════════════════════════════════════════ */
.about-hero {
  padding-top: 100px;
  background: linear-gradient(160deg, var(--cream) 0%, var(--white) 65%);
  min-height: 55vh; display: flex; align-items: center;
  position: relative; overflow: hidden;
  border-bottom: 1px solid var(--border-lt);
}
.about-hero::after {
  content: ''; position: absolute; bottom: 0; right: 0;
  width: 50%; height: 100%;
  background: linear-gradient(160deg, var(--pale) 0%, var(--mist) 100%);
  clip-path: polygon(12% 0, 100% 0, 100% 100%, 0% 100%);
}
.about-hero-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(40px,5vw,80px); align-items: center;
  padding: clamp(72px,10vw,130px) 0;
  position: relative; z-index: 2;
}
.about-hero-content {}
.about-hero h1 {
  font-family: var(--serif); font-size: clamp(44px,5.5vw,78px);
  font-weight: 300; line-height: 1.06; letter-spacing: -.015em;
  color: var(--ink); margin: 18px 0 22px;
}
.about-hero h1 em { font-style: italic; color: var(--blue); }
.about-hero-desc {
  font-size: .88rem; font-weight: 300; line-height: 1.88;
  color: var(--stone); max-width: 420px;
}
.about-hero-img {
  aspect-ratio: 3/4; overflow: hidden; border-radius: 2px;
  background: linear-gradient(160deg, var(--pale), var(--sky));
  position: relative; z-index: 2;
}
.about-hero-img img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }

/* Stats row on about */
.about-stats {
  padding: clamp(44px,5vw,70px) 0;
  background: var(--tan);
  border-top: 1px solid var(--border-lt);
}
.about-stats-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 40px; text-align: center;
}
.about-stat-num {
  font-family: var(--serif); font-size: clamp(40px,5vw,68px);
  font-weight: 300; color: var(--blue); line-height: 1; margin-bottom: 8px;
}
.about-stat-label {
  font-size: .68rem; font-weight: 400; letter-spacing: .18em;
  text-transform: uppercase; color: var(--stone);
}

/* Philosophy section */
.philosophy-section {
  padding: var(--section) 0; background: var(--white);
}
.philosophy-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(40px,6vw,100px); align-items: center;
}
.philosophy-img {
  aspect-ratio: 3/4; overflow: hidden; border-radius: 2px;
  background: linear-gradient(160deg, var(--pale), var(--cream));
}
.philosophy-img img { width: 100%; height: 100%; object-fit: cover; }
.philosophy-blockquote {
  font-family: var(--serif); font-size: clamp(22px,2.6vw,34px);
  font-weight: 300; font-style: italic; line-height: 1.42;
  color: var(--ink); border-left: 2px solid var(--sky);
  padding-left: 28px; margin-bottom: 28px;
}

/* Credentials grid */
.credentials-section {
  padding: var(--section) 0; background: var(--sand);
}
.credentials-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 20px; margin-top: 48px;
}
.credential-card {
  background: var(--white); border: 1px solid var(--border);
  padding: 32px 26px; text-align: center; border-radius: 2px;
  transition: transform .3s var(--ease-out), box-shadow .3s;
}
.credential-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(17,24,40,.07); }
.credential-icon { font-family: var(--serif); font-size: 2rem; color: var(--blue); margin-bottom: 14px; }
.credential-title { font-family: var(--serif); font-size: 1.2rem; font-weight: 300; color: var(--ink); margin-bottom: 8px; }
.credential-body { font-size: .76rem; color: var(--stone); line-height: 1.72; }

/* Testimonial grid */
.testimonial-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 16px; margin-top: 44px;
}
.t-card {
  background: var(--white); border: 1px solid var(--border);
  padding: 28px; border-radius: 2px;
}
.t-stars { font-size: .62rem; color: var(--blue); letter-spacing: 3px; margin-bottom: 14px; }
.t-text { font-family: var(--serif); font-size: 1.0rem; font-weight: 300; font-style: italic; line-height: 1.65; color: var(--ink); margin-bottom: 18px; }
.t-author { display: flex; align-items: center; gap: 12px; }
.t-avatar { width: 34px; height: 34px; border-radius: 50%; background: var(--pale); display: flex; align-items: center; justify-content: center; font-family: var(--serif); font-size: .9rem; color: var(--blue); flex-shrink: 0; }
.t-name { font-size: .7rem; font-weight: 500; color: var(--ink); }
.t-service { font-size: .64rem; color: var(--stone); margin-top: 2px; }

/* ══════════════════════════════════════════
   CONTACT PAGE
══════════════════════════════════════════ */
.contact-hero {
  padding-top: 100px;
  background: linear-gradient(160deg, var(--mist) 0%, var(--cream) 100%);
  min-height: 44vh; display: flex; align-items: center;
  border-bottom: 1px solid var(--border-lt);
}
.contact-hero-inner {
  padding: clamp(60px,8vw,100px) 0;
  text-align: center;
}
.contact-hero h1 {
  font-family: var(--serif); font-size: clamp(40px,5.5vw,72px);
  font-weight: 300; line-height: 1.06; letter-spacing: -.015em; color: var(--ink);
  margin: 16px 0 18px;
}
.contact-hero h1 em { font-style: italic; color: var(--blue); }
.contact-hero p { font-size: .88rem; color: var(--stone); max-width: 440px; margin: 0 auto; line-height: 1.78; }
.contact-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: clamp(40px,6vw,80px); align-items: start; }
.contact-section-bg { padding: var(--section) 0; background: var(--white); }
.contact-section-bg:nth-child(even) { background: var(--sand); }
.contact-info-block { display: flex; flex-direction: column; gap: 28px; }
.contact-info-item { display: flex; gap: 20px; align-items: flex-start; }
.contact-info-icon {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--pale); display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; flex-shrink: 0; color: var(--blue);
}
.contact-info-label { font-size: .62rem; font-weight: 500; letter-spacing: .14em; text-transform: uppercase; color: var(--stone); margin-bottom: 4px; }
.contact-info-value { font-size: .9rem; color: var(--ink); line-height: 1.6; }
.contact-info-value a { color: var(--ink); transition: color .2s; }
.contact-info-value a:hover { color: var(--blue); }

/* ══════════════════════════════════════════
   PAGE HERO UPDATES
══════════════════════════════════════════ */
.page-hero { background: linear-gradient(160deg, var(--mist) 0%, var(--cream) 100%); }

/* ══════════════════════════════════════════
   RESPONSIVE UPDATES
══════════════════════════════════════════ */
@media (max-width: 1000px) {
  .cat-hero-inner { grid-template-columns: 1fr; }
  .cat-hero-img { display: none; }
  .treatment-grid { grid-template-columns: 1fr; }
  .treatment-grid.reverse { direction: ltr; }
  .treatment-img { display: none; }
  .svc-faq-grid { grid-template-columns: 1fr; }
  .svc-faq-lede { position: static; }
  .provider-strip-inner { grid-template-columns: 1fr; }
  .provider-photo { aspect-ratio: 16/9; max-height: 300px; }
  .about-hero-inner { grid-template-columns: 1fr; }
  .about-hero::after { display: none; }
  .about-hero-img { aspect-ratio: 16/9; max-height: 320px; }
  .about-stats-grid { grid-template-columns: 1fr; gap: 24px; }
  .philosophy-grid { grid-template-columns: 1fr; }
  .philosophy-img { aspect-ratio: 16/9; max-height: 340px; }
  .credentials-grid { grid-template-columns: 1fr 1fr; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .credentials-grid { grid-template-columns: 1fr; }
  .benefits-strip-grid { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════
   MARQUEE STRIP
═══════════════════════════════════════════ */
.marquee-strip {
  background: var(--ink);
  overflow: hidden;
  padding: 14px 0;
  border-top: 1px solid rgba(255,255,255,.06);
  border-bottom: 1px solid rgba(255,255,255,.06);
  user-select: none;
  position: relative;
  z-index: 2;
}
.marquee-track {
  display: flex;
  align-items: center;
  gap: 0;
  white-space: nowrap;
  animation: marqueeScroll 38s linear infinite;
  width: max-content;
}
.marquee-strip:hover .marquee-track { animation-play-state: paused; }
.marquee-track span {
  font-size: .6rem;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(247,243,238,.55);
  padding: 0 20px;
  transition: color .3s;
}
.marquee-track span.mx {
  color: rgba(137,192,217,.45);
  padding: 0;
  font-size: .5rem;
  letter-spacing: 0;
}
.marquee-strip:hover .marquee-track span { color: rgba(247,243,238,.8); }
@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ═══════════════════════════════════════════
   DARK NAVY RETHEME — MORPH-INSPIRED
   Services + Facials → deep navy sections
   Testimonials → dark navy
   Hero + About + Membership → warm cream/light
   NAV stays WHITE ✓
═══════════════════════════════════════════ */

/* ── Services section → deep dark navy ── */
.services-section {
  background: #06111E !important;
}
.services-section .section-title {
  color: rgba(245,240,232,0.92);
}
.services-section .section-title em {
  color: var(--sky);
}
.services-section .eyebrow {
  color: rgba(137,192,217,0.52);
}
/* Service cards on dark background */
.services-section .svc-grid { background: transparent; border-color: rgba(255,255,255,0.05); }
.services-section .svc-card { background: rgba(255,255,255,0.04); }
.services-section .svc-card:hover { background: rgba(255,255,255,0.08); }
.services-section .svc-card-cat  { color: var(--sky); }
.services-section .svc-card-name { color: rgba(242,238,230,0.92); }
.services-section .svc-card-line { color: rgba(140,180,215,0.65); }
.services-section .svc-card-meta { color: rgba(140,180,215,0.55); }
.services-section .svc-card-arrow { color: var(--sky); }

/* ── Facials section → rich deep navy blue ── */
.facials-section {
  background: #0A1D34 !important;
}
.facials-section .section-title {
  color: rgba(245,240,232,0.94);
}
.facials-section .section-title em {
  color: var(--sky);
}
.facials-section .eyebrow {
  color: rgba(137,192,217,0.52);
}
.facials-section .facial-card {
  background: rgba(255,255,255,0.04);
  border-color: rgba(255,255,255,0.07);
}
.facials-section .facial-card:hover {
  background: rgba(255,255,255,0.08);
}
/* Typography overrides to match facials.html card style */
.facials-section .facial-cat { color: var(--sky); opacity: .7; }
.facials-section .facial-name { font-size: clamp(24px,2.2vw,38px); color: rgba(250,250,248,.92); line-height: 1.08; }
.facials-section .facial-name em { font-style: italic; color: var(--sky); }
.facials-section .facial-desc { font-size: .79rem; line-height: 1.84; color: rgba(250,250,248,.4); }
.facials-section .facial-meta { color: rgba(137,192,217,0.60); }
.facials-section .facial-foot { border-top-color: rgba(255,255,255,.07); }
.facials-section .btn-outline {
  color: rgba(242,238,230,0.88);
  border-color: rgba(242,238,230,0.22);
}
.facials-section .btn-outline:hover {
  background: rgba(255,255,255,0.10);
  color: rgba(245,240,232,1);
  border-color: rgba(242,238,230,0.40);
}
/* Facial card badge (Signature) */
.facials-section .facial-badge {
  background: rgba(74,140,196,0.22);
  color: var(--sky);
  border-color: rgba(74,140,196,0.25);
}

/* ── Testimonials section → dark navy ── */
.testimonials-section {
  background: #06111E !important;
}
.testimonials-section .section-title {
  color: rgba(245,240,232,0.94);
}
.testimonials-section .section-title em { color: var(--sky); }
.testimonials-section .eyebrow { color: rgba(137,192,217,0.52); }
.testi-card {
  background: rgba(255,255,255,0.05) !important;
  border-color: rgba(255,255,255,0.08) !important;
}
.testi-stars { color: var(--sky) !important; }
.testi-text  { color: rgba(242,238,230,0.85) !important; }
.testi-author { color: rgba(137,192,217,0.55) !important; }

/* ── About section → warm cream (light break) ── */
.about-section {
  background: var(--white);
}

/* ── Membership section → deep navy ── */
.membership-section {
  background: #0A1D34 !important;
}
.membership-section .section-title {
  color: rgba(245,240,232,0.94);
}
.membership-section .section-title em { color: var(--sky); }
.membership-section .eyebrow { color: rgba(137,192,217,0.52); }
.membership-section .membership-price-display { color: rgba(245,240,232,0.96); }
.membership-section .membership-price-display sub { color: rgba(137,192,217,0.65); }
.membership-section .membership-note { color: rgba(140,180,215,0.72); }
/* How-it-works strip on dark bg */
.membership-how-grid {
  background: rgba(255,255,255,0.04) !important;
  border: 1px solid rgba(255,255,255,0.07);
}
/* Membership tier cards on dark */
.membership-tiers-grid > div {
  background: rgba(255,255,255,0.04);
  border-color: rgba(255,255,255,0.08);
}
/* Featured tier (dark card) stays visible */
.membership-section .eyebrow { color: rgba(137,192,217,0.52); }

/* ── Hero stays white/light ── */
.hero { background: #ffffff; }

/* ═══════════════════════════════════════════
   FACIAL CARDS — UPDATED FOR DARK BG
═══════════════════════════════════════════ */
/* All facial illustration cards — dark bg that matches the section */
.facial-img--art,
.facial-img--dark {
  background: #0D2440 !important;
}
/* Ambient glow for dark card bg */
.facial-img--art::before,
.facial-img--dark::before {
  background: radial-gradient(circle, rgba(74,140,196,0.14) 0%, transparent 65%) !important;
}

/* ═══════════════════════════════════════════
   ADD-ONS 2-COL GRID — MOBILE
═══════════════════════════════════════════ */
@media (max-width: 768px) {
  .addons-2col-grid { grid-template-columns: 1fr !important; }
}

/* ═══════════════════════════════════════════
   MEMBERSHIP SECTION — MOBILE RESPONSIVE
═══════════════════════════════════════════ */
@media (max-width: 900px) {
  .membership-how-grid { grid-template-columns: repeat(2,1fr) !important; }
}
@media (max-width: 768px) {
  .membership-tiers-grid { grid-template-columns: 1fr !important; }
  .membership-tiers-grid > div { max-width: 480px; margin: 0 auto; width: 100%; }
}
@media (max-width: 540px) {
  .membership-how-grid { grid-template-columns: 1fr 1fr !important; gap: 12px !important; padding: 20px 16px !important; }
  .membership-tiers-grid > div { padding: 26px 20px !important; }
}
