/* ==========================================================================
   Aurelle Aesthetic Studio — Design System
   Bodoni Moda (display) + Jost (body/UI)
   ========================================================================== */

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
}
img, picture, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
input, textarea, select { font: inherit; }
ul, ol { list-style: none; }
h1, h2, h3, h4, h5, h6 { font-weight: 500; line-height: 1.15; }

/* ---------- Design tokens ---------- */
:root {
  /* palette */
  --white:        #ffffff;
  --ivory:        #fbf6ee;
  --ivory-deep:   #f6efe2;
  --sand:         #f0e4d0;
  --champagne:    #e8d3ab;
  --champagne-deep:#dcbf8b;
  --blush:        #f0dcd4;
  --blush-deep:   #e3c1b6;
  --taupe:        #a9866a;
  --taupe-dark:   #6f5642;
  --charcoal:     #2a2019;
  --charcoal-soft:#4a3d33;
  --charcoal-deep:#1a1310;
  --gold:         #a97e46;
  --gold-light:   #c9a06a;
  --line:         #e2d5c0;

  /* semantic */
  --bg-body: var(--ivory);
  --text-body: var(--charcoal);
  --text-muted: var(--charcoal-soft);

  /* type */
  --font-display: "Bodoni Moda", "Times New Roman", serif;
  --font-body: "Jost", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  /* layout */
  --container: 1240px;
  --container-narrow: 820px;
  --radius-sm: 6px;
  --radius-md: 14px;
  --radius-lg: 28px;
  --radius-pill: 999px;

  /* motion */
  --ease: cubic-bezier(.22,.61,.36,1);
  --dur: .5s;

  /* shadow */
  --shadow-soft: 0 20px 60px -25px rgba(42,32,25,.35);
  --shadow-card: 0 12px 34px -18px rgba(42,32,25,.28);
}

body {
  font-family: var(--font-body);
  background: var(--bg-body);
  color: var(--text-body);
  font-size: 16px;
  line-height: 1.65;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
}

/* ---------- Typography ---------- */
.eyebrow {
  font-family: var(--font-body);
  font-size: .72rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--taupe);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: .6em;
}
.eyebrow::before { content: ""; width: 28px; height: 1px; background: var(--gold); display: inline-block; }
.eyebrow.center { justify-content: center; }
.eyebrow.center::before { display: none; }

h1, .h1 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2.6rem, 5.4vw, 4.6rem);
  letter-spacing: -.01em;
  line-height: 1.05;
}
h2, .h2 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2.1rem, 3.6vw, 3.1rem);
  line-height: 1.1;
  letter-spacing: -.005em;
}
h3, .h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.4rem, 2vw, 1.7rem);
  line-height: 1.25;
}
h4, .h4 { font-family: var(--font-display); font-weight: 500; font-size: 1.2rem; }
em, .accent-italic { font-style: italic; color: var(--gold); font-family: var(--font-display); }
p { color: var(--text-muted); }
.lede { font-size: 1.2rem; line-height: 1.6; color: var(--text-muted); font-weight: 300; }
.small { font-size: .875rem; }
.center { text-align: center; }

/* ---------- Layout ---------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: 24px; }
.container-narrow { width: 100%; max-width: var(--container-narrow); margin-inline: auto; padding-inline: 24px; }
section { padding-block: clamp(44px, 6vw, 88px); }
.section-tight { padding-block: clamp(32px, 4vw, 56px); }
.section-head { max-width: 680px; margin-bottom: clamp(28px, 3.5vw, 44px); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head .eyebrow { margin-bottom: 18px; }
.section-head h2 { margin-bottom: 18px; }

.bg-ivory { background: var(--ivory); }
.bg-sand { background: var(--sand); }
.bg-champagne { background: linear-gradient(160deg, var(--champagne) 0%, var(--sand) 100%); }
.bg-blush { background: var(--blush); }
.bg-dark { background: var(--charcoal-deep); color: var(--ivory); }
.bg-dark p { color: rgba(251,246,238,.72); }
.bg-dark .eyebrow { color: var(--gold-light); }
.bg-dark h2, .bg-dark h3 { color: var(--white); }

.grid { display: grid; gap: 28px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 980px) { .grid-3, .grid-4 { grid-template-columns: repeat(2, minmax(0,1fr)); } }
@media (max-width: 640px) { .grid-2, .grid-3, .grid-4 { grid-template-columns: minmax(0,1fr); } }

.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 6vw, 88px); align-items: center; }
@media (max-width: 900px) { .split { grid-template-columns: 1fr; gap: 40px; } }
.split.reverse .split-media { order: 2; }
@media (max-width: 900px) { .split.reverse .split-media { order: 0; } }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 34px;
  border-radius: var(--radius-pill);
  font-size: .82rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-weight: 500;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), background .35s var(--ease), color .35s var(--ease), border-color .35s var(--ease);
  white-space: nowrap;
}
.btn-primary { background: var(--charcoal); color: var(--ivory); }
.btn-primary:hover { background: var(--gold); color: var(--charcoal-deep); transform: translateY(-2px); box-shadow: var(--shadow-card); }
.btn-gold { background: linear-gradient(135deg, var(--gold-light), var(--gold)); color: var(--charcoal-deep); }
.btn-gold:hover { transform: translateY(-2px); box-shadow: var(--shadow-card); }
.btn-outline { background: transparent; border: 1px solid var(--charcoal); color: var(--charcoal); }
.btn-outline:hover { background: var(--charcoal); color: var(--ivory); transform: translateY(-2px); }
.btn-outline-light { background: transparent; border: 1px solid rgba(251,246,238,.5); color: var(--ivory); }
.btn-outline-light:hover { background: var(--ivory); color: var(--charcoal-deep); border-color: var(--ivory); }
.btn-ghost { padding: 8px 0; border-radius: 0; border-bottom: 1px solid currentColor; letter-spacing: .1em; text-transform: uppercase; font-size: .78rem; }
.btn-sm { padding: 12px 24px; font-size: .74rem; }
.btn-block { width: 100%; }
.cta-row { display: flex; gap: 16px; flex-wrap: wrap; align-items: center; }

/* ---------- Header / Nav ---------- */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 500;
  padding-block: 22px;
  transition: background .4s var(--ease), box-shadow .4s var(--ease), border-color .4s var(--ease);
  border-bottom: 1px solid transparent;
}
.site-header.is-solid { padding-block: 14px; }
.site-header .container { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.site-header.is-solid { background: rgba(251,246,238,.92); backdrop-filter: blur(14px); padding-block: 14px; border-color: var(--line); box-shadow: 0 8px 30px -22px rgba(42,32,25,.4); }
.site-header.on-dark { color: var(--ivory); }
.site-header.on-dark:not(.is-solid) .logo-mark, .site-header.on-dark:not(.is-solid) .nav-link, .site-header.on-dark:not(.is-solid) .header-call { color: var(--ivory); }
.site-header.is-solid .logo-mark, .site-header.is-solid .nav-link, .site-header.is-solid .header-call { color: var(--charcoal); }

.logo { display: flex; align-items: center; gap: 10px; }
.logo-mark { font-family: var(--font-display); font-size: 1.55rem; letter-spacing: .03em; color: var(--charcoal); transition: color .4s var(--ease); }
.logo-mark em { font-style: italic; }
.logo-sub { display: block; font-size: .58rem; letter-spacing: .26em; text-transform: uppercase; color: var(--gold); margin-top: 2px; }

.nav-desktop { display: flex; align-items: center; gap: 34px; }
.nav-link { font-size: .82rem; letter-spacing: .04em; text-transform: uppercase; color: var(--charcoal); position: relative; padding-block: 4px; transition: color .3s var(--ease); }
.nav-link::after { content: ""; position: absolute; left: 0; right: 0; bottom: -2px; height: 1px; background: var(--gold); transform: scaleX(0); transform-origin: left; transition: transform .35s var(--ease); }
.nav-link:hover::after, .nav-link.is-active::after { transform: scaleX(1); }
.has-dropdown { position: relative; }
.dropdown {
  position: absolute; top: calc(100% + 18px); left: 50%; transform: translateX(-50%) translateY(6px);
  min-width: 300px; background: var(--white); border-radius: var(--radius-md); box-shadow: var(--shadow-soft);
  padding: 14px; opacity: 0; visibility: hidden; transition: opacity .3s var(--ease), transform .3s var(--ease), visibility .3s;
  display: grid; grid-template-columns: 1fr 1fr; gap: 2px;
}
.has-dropdown:hover .dropdown, .has-dropdown:focus-within .dropdown { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.dropdown a { display: block; padding: 11px 14px; border-radius: var(--radius-sm); font-size: .84rem; color: var(--charcoal-soft); }
.dropdown a:hover { background: var(--ivory); color: var(--charcoal); }
.dropdown .dropdown-view-all { grid-column: 1 / -1; margin-top: 6px; padding-top: 12px; border-top: 1px solid var(--line); font-size: .74rem; letter-spacing: .1em; text-transform: uppercase; color: var(--gold); text-align: center; }

.header-actions { display: flex; align-items: center; gap: 18px; }
.header-call { display: flex; align-items: center; gap: 8px; font-size: .84rem; letter-spacing: .02em; color: var(--charcoal); }
.header-call svg { width: 15px; height: 15px; stroke: var(--gold); flex-shrink: 0; }
.nav-toggle { display: none; flex-direction: column; gap: 5px; width: 26px; z-index: 600; }
.nav-toggle span { display: block; height: 1.5px; background: currentColor; transition: transform .3s var(--ease), opacity .3s var(--ease); }
.nav-toggle.is-open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile nav overlay is always fixed + hidden by default so it can never render in normal
   document flow above the collapse breakpoint (previously this was scoped inside the media
   query below, which left it as an unstyled static block on wider viewports). */
.mobile-nav {
  position: fixed; inset: 0; background: var(--ivory); z-index: 550;
  display: flex; flex-direction: column; justify-content: center; padding: 100px 32px 48px;
  visibility: hidden; opacity: 0; transition: opacity .4s var(--ease), visibility .4s;
}
.mobile-nav.is-open { visibility: visible; opacity: 1; }
/* Direct-child combinator (not a plain descendant selector) so this only targets the
   top-level nav links, not the .btn CTAs nested one level deeper in .mobile-nav-footer.
   A descendant selector here previously out-specificity'd .btn and forced the Call /
   Book Consultation buttons to render as 1.9rem serif text overflowing the pills. */
.mobile-nav > a { font-family: var(--font-display); font-size: 1.9rem; padding-block: 12px; border-bottom: 1px solid var(--line); color: var(--charcoal); }
.mobile-nav .mobile-sub { padding-left: 18px; }
.mobile-nav .mobile-sub a { font-family: var(--font-body); font-size: 1rem; text-transform: uppercase; letter-spacing: .05em; border-bottom: none; padding-block: 9px; color: var(--charcoal-soft); }
.mobile-nav-footer { margin-top: 28px; display: flex; flex-direction: column; gap: 14px; }

/* Collapse to hamburger before the desktop nav + call link + book button run out of room.
   1080px left a squeeze zone (~1080-1150px) where nav-desktop still rendered but header-call
   had too little width and wrapped to two lines, inflating and overlapping the header. */
@media (max-width: 1260px) {
  .nav-desktop, .header-call { display: none; }
  .nav-toggle { display: flex; }
}

/* ---------- Sticky mobile CTA bar ---------- */
.mobile-cta-bar {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 480;
  display: none; grid-template-columns: 1fr 1fr; background: var(--charcoal-deep);
  box-shadow: 0 -10px 30px -14px rgba(0,0,0,.35);
}
.mobile-cta-bar a { display: flex; align-items: center; justify-content: center; gap: 8px; padding: 16px 10px; color: var(--ivory); font-size: .78rem; letter-spacing: .08em; text-transform: uppercase; }
.mobile-cta-bar a:first-child { border-right: 1px solid rgba(251,246,238,.15); }
.mobile-cta-bar a.cta-book { background: var(--gold); color: var(--charcoal-deep); font-weight: 500; }
.mobile-cta-bar svg { width: 15px; height: 15px; }
@media (max-width: 1260px) { .mobile-cta-bar { display: grid; } body { padding-bottom: 58px; } }

/* desktop sticky consult pill */
.desktop-sticky-cta {
  position: fixed; right: 28px; bottom: 32px; z-index: 470;
  display: flex; align-items: center; gap: 10px; padding: 14px 22px;
  background: var(--charcoal-deep); color: var(--ivory); border-radius: var(--radius-pill);
  box-shadow: var(--shadow-soft); font-size: .78rem; letter-spacing: .08em; text-transform: uppercase;
  transition: transform .35s var(--ease), background .35s var(--ease);
}
.desktop-sticky-cta:hover { background: var(--gold); color: var(--charcoal-deep); transform: translateY(-3px); }
.desktop-sticky-cta svg { width: 15px; height: 15px; }
@media (max-width: 1260px) { .desktop-sticky-cta { display: none; } }

/* ---------- Promo banner ---------- */
.promo-banner { background: var(--charcoal-deep); color: var(--ivory); text-align: center; padding: 11px 44px 11px 16px; font-size: .8rem; letter-spacing: .04em; position: relative; }
.promo-banner a { text-decoration: underline; text-underline-offset: 3px; color: var(--gold-light); margin-left: 6px; }
.promo-banner .promo-close { position: absolute; right: 14px; top: 50%; transform: translateY(-50%); font-size: 1.1rem; line-height: 1; opacity: .7; }
.promo-banner .promo-close:hover { opacity: 1; }

/* ---------- Hero ---------- */
.hero { position: relative; min-height: 100vh; display: flex; align-items: flex-end; color: var(--ivory); overflow: hidden; }
.hero-media { position: absolute; inset: 0; z-index: 0; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; }
.hero-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(20,15,12,.86) 0%, rgba(20,15,12,.42) 46%, rgba(20,15,12,.18) 100%); }
.hero-glow { position: absolute; top: -10%; right: -6%; width: 55%; height: 65%; background: radial-gradient(circle, rgba(201,160,106,.35), transparent 68%); filter: blur(10px); z-index: 1; pointer-events: none; }
.hero-content { position: relative; z-index: 2; width: 100%; padding-bottom: clamp(14px, 2vw, 22px); padding-top: 56px; }
.hero-content .eyebrow { color: var(--gold-light); }
.hero-content .eyebrow::before { background: var(--gold-light); }
.hero-content h1 { color: var(--white); font-size: clamp(2rem, 4vw, 3.4rem); margin-block: 6px 8px; max-width: 15ch; }
.hero-content .lede { color: rgba(251,246,238,.82); max-width: 46ch; margin-bottom: 10px; }
.hero-proof { display: flex; gap: 16px; flex-wrap: wrap; margin-top: 8px; padding-top: 8px; border-top: 1px solid rgba(251,246,238,.18); }
.hero-proof .proof-item { display: flex; flex-direction: column; }
.hero-proof strong { font-family: var(--font-display); font-size: 1.5rem; color: var(--gold-light); }
.hero-proof span { font-size: .74rem; letter-spacing: .06em; text-transform: uppercase; color: rgba(251,246,238,.68); }

.hero-scroll-cue { position: absolute; bottom: 28px; right: 40px; z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 10px; color: rgba(251,246,238,.6); }
.hero-scroll-cue span { font-size: .65rem; letter-spacing: .2em; text-transform: uppercase; writing-mode: vertical-rl; }
.hero-scroll-cue .cue-line { width: 1px; height: 46px; background: rgba(251,246,238,.4); position: relative; overflow: hidden; }
.hero-scroll-cue .cue-line::after { content: ""; position: absolute; top: -100%; left: 0; width: 100%; height: 100%; background: var(--gold-light); animation: cueDrop 2.2s ease-in-out infinite; }
@keyframes cueDrop { 0% { top: -100%; } 60%, 100% { top: 100%; } }
@media (max-width: 640px) { .hero-scroll-cue { display: none; } }

/* Page (inner) hero — full viewport height on every page, same as the homepage hero.
   The heading is still a step down in size from the homepage h1 so a 2-line title
   never forces extra scroll before the section's own bottom edge is reached. */
.page-hero { position: relative; min-height: 100vh; display: flex; align-items: flex-end; color: var(--ivory); overflow: hidden; }
.page-hero .hero-content { padding-top: 116px; padding-bottom: 28px; }
.page-hero h1 { max-width: 24ch; font-size: clamp(1.9rem, 3.4vw, 3rem); margin-block: 10px 12px; }
.page-hero .lede { margin-bottom: 0; }
.breadcrumb-row { position: relative; z-index: 2; }
.breadcrumb { display: flex; gap: 8px; flex-wrap: wrap; font-size: .74rem; letter-spacing: .04em; text-transform: uppercase; color: rgba(251,246,238,.7); margin-bottom: 18px; }
.breadcrumb a { color: rgba(251,246,238,.7); }
.breadcrumb a:hover { color: var(--gold-light); }
.breadcrumb span.sep { opacity: .5; }
.breadcrumb span[aria-current] { color: var(--gold-light); }

/* ---------- Cards ---------- */
.card { background: var(--white); border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-card); }

.treatment-card { position: relative; border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 4/4.1; display: flex; align-items: flex-end; }
.treatment-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.treatment-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(26,19,16,.88) 0%, rgba(26,19,16,.1) 58%, transparent 100%); transition: background .4s var(--ease); }
.treatment-card:hover img { transform: scale(1.06); }
.treatment-card-body { position: relative; z-index: 2; padding: 26px; color: var(--ivory); width: 100%; }
.treatment-card-body .eyebrow { color: var(--gold-light); font-size: .64rem; }
.treatment-card-body .eyebrow::before { background: var(--gold-light); }
.treatment-card-body h3 { color: var(--white); margin-block: 10px 10px; }
.treatment-card-desc-wrap { display: grid; grid-template-rows: 0fr; opacity: 0; transition: grid-template-rows .45s var(--ease), opacity .35s var(--ease); }
.treatment-card:hover .treatment-card-desc-wrap { grid-template-rows: 1fr; opacity: 1; }
.treatment-card-body p { color: rgba(251,246,238,.78); font-size: .9rem; overflow: hidden; min-height: 0; }
.treatment-card-desc-wrap p { padding-bottom: 0; transition: padding-bottom .45s var(--ease); }
.treatment-card:hover .treatment-card-desc-wrap p { padding-bottom: 10px; }
.treatment-card-link { display: inline-flex; align-items: center; gap: 8px; font-size: .74rem; letter-spacing: .1em; text-transform: uppercase; color: var(--white); }
.treatment-card-link svg { width: 13px; height: 13px; transition: transform .3s var(--ease); }
.treatment-card:hover .treatment-card-link svg { transform: translateX(4px); }

.info-card { background: var(--white); border-radius: var(--radius-md); padding: 34px 30px; box-shadow: var(--shadow-card); transition: transform .4s var(--ease), box-shadow .4s var(--ease); }
.info-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-soft); }
.info-card .icon-badge { width: 52px; height: 52px; border-radius: 50%; background: var(--champagne); display: flex; align-items: center; justify-content: center; margin-bottom: 20px; }
.info-card .icon-badge svg { width: 24px; height: 24px; stroke: var(--charcoal-deep); }
.info-card h3 { margin-bottom: 10px; font-size: 1.15rem; }
.info-card p { font-size: .92rem; }

.provider-card { text-align: center; }
.provider-photo { border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 3/2.15; margin-bottom: 14px; position: relative; }
.provider-photo img { width: 100%; height: 100%; object-fit: cover; }
.provider-card h3 { margin-bottom: 4px; }
.provider-card .provider-title { color: var(--gold); font-size: .82rem; letter-spacing: .05em; text-transform: uppercase; margin-bottom: 12px; display: block; }
.provider-card p { font-size: .92rem; }

.testimonial-card { background: var(--white); border-radius: var(--radius-md); padding: 32px; box-shadow: var(--shadow-card); }
.testimonial-card .stars { color: var(--gold); letter-spacing: .12em; margin-bottom: 16px; font-size: .95rem; }
.testimonial-card p.quote { font-family: var(--font-display); font-style: italic; font-size: 1.08rem; color: var(--charcoal); line-height: 1.5; margin-bottom: 20px; }
.testimonial-attrib { display: flex; align-items: center; gap: 12px; }
.testimonial-attrib .avatar { width: 42px; height: 42px; border-radius: 50%; overflow: hidden; flex-shrink: 0; }
.testimonial-attrib .avatar img { width: 100%; height: 100%; object-fit: cover; }
.testimonial-attrib strong { display: block; font-size: .9rem; }
.testimonial-attrib span { font-size: .78rem; color: var(--taupe); }

.blog-card { display: block; }
.blog-card-media { border-radius: var(--radius-md); overflow: hidden; aspect-ratio: 4/2.5; margin-bottom: 14px; }
.blog-card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.blog-card:hover .blog-card-media img { transform: scale(1.05); }
.blog-card .blog-meta { display: flex; gap: 12px; font-size: .72rem; letter-spacing: .08em; text-transform: uppercase; color: var(--gold); margin-bottom: 10px; }
.blog-card h3 { font-size: 1.25rem; margin-bottom: 8px; }
.blog-card p { font-size: .92rem; }

/* ---------- Stats ---------- */
.stats-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
@media (max-width: 900px) { .stats-row { grid-template-columns: repeat(2, minmax(0,1fr)); } }
.stat-item { text-align: center; }
.stat-item .stat-num { font-family: var(--font-display); font-size: clamp(2.2rem, 4vw, 3.2rem); color: var(--gold-light); display: block; }
.stat-item .stat-label { font-size: .76rem; letter-spacing: .08em; text-transform: uppercase; color: rgba(251,246,238,.7); margin-top: 6px; }
.bg-ivory .stat-item .stat-num, .bg-sand .stat-item .stat-num { color: var(--gold); }
.bg-ivory .stat-item .stat-label, .bg-sand .stat-item .stat-label { color: var(--taupe-dark); }

/* ---------- Process steps ---------- */
.process-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; position: relative; }
@media (max-width: 900px) { .process-row { grid-template-columns: 1fr; gap: 40px; } }
.process-step { position: relative; }
.process-step .step-num { font-family: var(--font-display); font-style: italic; font-size: 2.6rem; color: var(--champagne-deep); margin-bottom: 16px; display: block; }
.process-step h3 { font-size: 1.1rem; margin-bottom: 10px; }
.process-step p { font-size: .9rem; }

/* ---------- FAQ accordion ---------- */
.faq-list { border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-question { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 24px 4px; text-align: left; font-family: var(--font-display); font-size: 1.08rem; color: var(--charcoal); }
.faq-question .faq-icon { flex-shrink: 0; width: 22px; height: 22px; position: relative; }
.faq-question .faq-icon::before, .faq-question .faq-icon::after { content: ""; position: absolute; background: var(--gold); top: 50%; left: 50%; transform: translate(-50%,-50%); transition: transform .3s var(--ease), opacity .3s var(--ease); }
.faq-question .faq-icon::before { width: 14px; height: 1.5px; }
.faq-question .faq-icon::after { width: 1.5px; height: 14px; }
.faq-item.is-open .faq-icon::after { transform: translate(-50%,-50%) rotate(90deg); opacity: 0; }
.faq-answer-wrap { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .4s var(--ease); }
.faq-item.is-open .faq-answer-wrap { grid-template-rows: 1fr; }
.faq-answer { overflow: hidden; min-width: 0; }
.faq-answer p { padding-bottom: 0; padding-right: 40px; font-size: .95rem; transition: padding-bottom .4s var(--ease); }
.faq-item.is-open .faq-answer p { padding-bottom: 24px; }

/* ---------- Gallery / Before-After ---------- */
.gallery-filters { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 40px; }
.filter-btn { padding: 10px 22px; border-radius: var(--radius-pill); border: 1px solid var(--line); font-size: .78rem; letter-spacing: .06em; text-transform: uppercase; color: var(--charcoal-soft); transition: all .3s var(--ease); }
.filter-btn.is-active, .filter-btn:hover { background: var(--charcoal); color: var(--ivory); border-color: var(--charcoal); }

.ba-card { border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-card); background: var(--white); }
.ba-slider { position: relative; aspect-ratio: 4/2.5; overflow: hidden; cursor: ew-resize; user-select: none; }
.ba-slider img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.ba-slider .ba-after { z-index: 1; }
.ba-slider .ba-before-wrap { position: absolute; inset: 0; z-index: 2; overflow: hidden; width: 50%; }
.ba-slider .ba-before-wrap img { width: var(--ba-w, 100vw); max-width: none; height: 100%; }
.ba-handle { position: absolute; top: 0; bottom: 0; left: 50%; width: 2px; background: var(--white); z-index: 3; transform: translateX(-50%); }
.ba-handle::after { content: "↔"; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 42px; height: 42px; background: var(--white); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; color: var(--charcoal); box-shadow: var(--shadow-card); }
.ba-label { position: absolute; top: 14px; z-index: 4; font-size: .68rem; letter-spacing: .1em; text-transform: uppercase; padding: 5px 12px; border-radius: var(--radius-pill); background: rgba(26,19,16,.6); color: var(--ivory); }
.ba-label.before { left: 14px; }
.ba-label.after { right: 14px; }
.ba-caption { padding: 12px 16px; }
.ba-caption h4 { font-size: 1rem; margin-bottom: 4px; }
.ba-caption span { font-size: .78rem; color: var(--taupe); text-transform: uppercase; letter-spacing: .05em; }

.gallery-grid { columns: 3 260px; column-gap: 16px; }
.gallery-grid figure { break-inside: avoid; margin-bottom: 16px; border-radius: var(--radius-md); overflow: hidden; position: relative; cursor: pointer; height: 220px; }
.gallery-grid img { width: 100%; height: 100%; display: block; object-fit: cover; transition: transform .5s var(--ease); }
.gallery-grid figure:hover img { transform: scale(1.04); }
.gallery-grid figcaption { position: absolute; bottom: 0; left: 0; right: 0; padding: 16px; font-size: .78rem; letter-spacing: .04em; color: var(--white); background: linear-gradient(0deg, rgba(26,19,16,.82), transparent); opacity: 0; transition: opacity .3s var(--ease); }
.gallery-grid figure:hover figcaption { opacity: 1; }

.lightbox { position: fixed; inset: 0; z-index: 900; background: rgba(20,15,12,.94); display: none; align-items: center; justify-content: center; padding: 40px; }
.lightbox.is-open { display: flex; }
.lightbox img { max-width: min(900px, 92vw); max-height: 84vh; border-radius: var(--radius-sm); object-fit: contain; }
.lightbox-close { position: absolute; top: 26px; right: 32px; color: var(--ivory); font-size: 1.6rem; }

/* ---------- Membership / pricing ---------- */
.membership-card { background: var(--white); border-radius: var(--radius-lg); padding: 28px 26px; box-shadow: var(--shadow-card); position: relative; display: flex; flex-direction: column; height: 100%; }
.membership-card.is-featured { background: var(--charcoal-deep); color: var(--ivory); transform: scale(1.03); box-shadow: var(--shadow-soft); }
.membership-card.is-featured h3, .membership-card.is-featured .price { color: var(--white); }
.membership-card.is-featured p, .membership-card.is-featured li { color: rgba(251,246,238,.78); }
.membership-card .badge-featured { position: absolute; top: -14px; left: 50%; transform: translateX(-50%); background: var(--gold); color: var(--charcoal-deep); font-size: .68rem; letter-spacing: .1em; text-transform: uppercase; padding: 7px 18px; border-radius: var(--radius-pill); }
.membership-card .price { font-family: var(--font-display); font-size: 2.1rem; margin-block: 6px 2px; }
.membership-card .price span { font-size: .95rem; font-family: var(--font-body); color: var(--taupe); }
.membership-card ul { margin: 16px 0; display: flex; flex-direction: column; gap: 9px; flex-grow: 1; }
.membership-card li { display: flex; align-items: flex-start; gap: 10px; font-size: .9rem; }
.membership-card li svg { width: 16px; height: 16px; stroke: var(--gold); flex-shrink: 0; margin-top: 3px; }

/* ---------- Forms ---------- */
.form-luxury { background: var(--white); border-radius: var(--radius-lg); padding: clamp(28px, 4vw, 48px); box-shadow: var(--shadow-soft); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
@media (max-width: 560px) { .form-row { grid-template-columns: minmax(0,1fr); } }
.field { margin-bottom: 20px; }
.field label { display: block; font-size: .74rem; letter-spacing: .08em; text-transform: uppercase; color: var(--taupe-dark); margin-bottom: 8px; }
.field input, .field select, .field textarea {
  width: 100%; padding: 14px 16px; border: 1px solid var(--line); border-radius: var(--radius-sm);
  background: var(--ivory); color: var(--charcoal); font-size: .95rem; transition: border-color .3s var(--ease), background .3s var(--ease);
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--gold); background: var(--white); }
.field textarea { resize: vertical; min-height: 110px; }
.field-check { display: flex; align-items: flex-start; gap: 10px; font-size: .84rem; color: var(--charcoal-soft); }
.field-check input { width: 16px; height: 16px; margin-top: 3px; accent-color: var(--gold); }
.form-success { display: none; text-align: center; padding: 40px 20px; }
.form-success.is-visible { display: block; }
.form-success svg { width: 52px; height: 52px; stroke: var(--gold); margin: 0 auto 18px; }

/* ---------- Footer ---------- */
.site-footer { background: var(--charcoal-deep); color: rgba(251,246,238,.7); padding-top: clamp(60px, 8vw, 96px); }
.footer-top { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr 1.2fr; gap: 40px; padding-bottom: 56px; border-bottom: 1px solid rgba(251,246,238,.12); }
@media (max-width: 980px) { .footer-top { grid-template-columns: repeat(2, minmax(0,1fr)); } }
@media (max-width: 560px) { .footer-top { grid-template-columns: minmax(0,1fr); } }
.footer-brand .logo-mark { color: var(--ivory); }
.footer-brand p { margin-top: 16px; font-size: .9rem; max-width: 32ch; }
.footer-social { display: flex; gap: 12px; margin-top: 22px; }
.footer-social a { width: 38px; height: 38px; border-radius: 50%; border: 1px solid rgba(251,246,238,.25); display: flex; align-items: center; justify-content: center; transition: all .3s var(--ease); }
.footer-social a:hover { background: var(--gold); border-color: var(--gold); }
.footer-social svg { width: 16px; height: 16px; }
.footer-col h4 { color: var(--ivory); font-size: .78rem; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 20px; font-family: var(--font-body); font-weight: 500; }
.footer-col ul { display: flex; flex-direction: column; gap: 11px; }
.footer-col a { font-size: .88rem; overflow-wrap: anywhere; }
.footer-col a:hover { color: var(--gold-light); }
.footer-hours li { display: flex; justify-content: space-between; font-size: .86rem; gap: 10px; }
.footer-hours span:last-child { color: rgba(251,246,238,.5); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 14px; padding-block: 26px; font-size: .78rem; }
.footer-bottom .legal-links { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-bottom a:hover { color: var(--gold-light); }

/* ---------- Instagram strip ---------- */
.insta-strip { display: grid; grid-template-columns: repeat(6, 1fr); gap: 4px; }
@media (max-width: 900px) { .insta-strip { grid-template-columns: repeat(3, minmax(0,1fr)); } }
.insta-strip a { position: relative; aspect-ratio: 1; overflow: hidden; display: block; }
.insta-strip img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.insta-strip a:hover img { transform: scale(1.08); }
.insta-strip a::after { content: ""; position: absolute; inset: 0; background: rgba(26,19,16,0); transition: background .3s var(--ease); }
.insta-strip a:hover::after { background: rgba(26,19,16,.25); }

/* ---------- Badges / pills ---------- */
.pill-list { display: flex; flex-wrap: wrap; gap: 10px; }
.pill { padding: 9px 18px; border-radius: var(--radius-pill); background: var(--white); border: 1px solid var(--line); font-size: .8rem; color: var(--charcoal-soft); }

/* ---------- Reveal animation ---------- */
.fade-up { opacity: 1; transform: none; transition: opacity .8s var(--ease), transform .8s var(--ease); }
html.js .fade-up { opacity: 0; transform: translateY(28px); }
html.js .fade-up.in-view { opacity: 1; transform: translateY(0); }
.stagger > * { transition-delay: calc(var(--i, 0) * 90ms); }

/* ---------- Misc utility ---------- */
.divider-line { width: 100%; height: 1px; background: var(--line); }
.icon-check { width: 18px; height: 18px; stroke: var(--gold); }
.text-gold { color: var(--gold); }
.mt-0 { margin-top: 0; }
.skip-link { position: absolute; left: -999px; top: 0; background: var(--charcoal); color: var(--ivory); padding: 14px 20px; z-index: 999; }
.skip-link:focus { left: 12px; top: 12px; }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }

/* related treatments row */
.related-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
@media (max-width: 900px) { .related-row { grid-template-columns: minmax(0,1fr); } }
.related-card { display: flex; align-items: center; gap: 16px; background: var(--white); border-radius: var(--radius-md); padding: 16px; box-shadow: var(--shadow-card); transition: transform .3s var(--ease); }
.related-card:hover { transform: translateY(-4px); }
.related-card img { width: 72px; height: 72px; border-radius: 50%; object-fit: cover; flex-shrink: 0; }
.related-card h4 { font-size: 1rem; margin-bottom: 4px; }
.related-card span { font-size: .78rem; color: var(--gold); text-transform: uppercase; letter-spacing: .05em; }

/* timeline */
.timeline { display: flex; flex-direction: column; gap: 0; }
.timeline-item { display: grid; grid-template-columns: 120px 1fr; gap: 24px; padding-block: 22px; border-bottom: 1px solid var(--line); }
@media (max-width: 640px) { .timeline-item { grid-template-columns: minmax(0,1fr); gap: 6px; } }
.timeline-item .tl-when { font-family: var(--font-display); font-style: italic; color: var(--gold); }
.timeline-item h4 { font-size: 1.02rem; margin-bottom: 6px; }
.timeline-item p { font-size: .9rem; }

/* candidate / not-candidate list */
.check-list li, .cross-list li { display: flex; align-items: flex-start; gap: 12px; font-size: .95rem; padding-block: 8px; color: var(--charcoal-soft); }
.check-list svg { stroke: var(--gold); width: 18px; height: 18px; flex-shrink: 0; margin-top: 2px; }
.cross-list svg { stroke: var(--taupe); width: 18px; height: 18px; flex-shrink: 0; margin-top: 2px; }
