@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;1,400&family=Jost:wght@300;400;500;600&display=swap');

@font-face {
  font-family: 'Mistrully';
  src: url('../fonts/Mistrully.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Cormorant Garamond';
  src: url('../fonts/CormorantGaramond-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
}

:root {
  --cream: #e6d3c2;
  --cream-light: #f7f3ee;
  --white: #fffdfb;
  --ink: #2b2b2b;
  --ink-soft: #363d29;
  /* Same sage hue as the original brand green (#6f7a63), lightened as far
     as it can go while still clearing the WCAG AA 4.5:1 text-contrast
     minimum against --cream — that's the tightest spot this color is used
     in as text (eyebrow labels sitting directly on tan section
     backgrounds). #545d4b was the prior, more conservative shade. */
  --gold: #58604e;
  --gold-light: #b7a99a;
  --maroon: #363d29;
  --line: #e6d3c2;
  --max-width: 1160px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background:
    radial-gradient(circle at 12% -10%, rgba(169,128,90,.14), transparent 42%),
    radial-gradient(circle at 90% 8%, rgba(74,17,25,.07), transparent 45%),
    radial-gradient(circle at 50% 100%, rgba(46,40,35,.05), transparent 55%),
    var(--cream-light);
  background-attachment: fixed;
  color: var(--ink);
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  line-height: 1.7;
  font-size: 17px;
}

h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  font-weight: 500;
  margin: 0 0 .4em;
  color: var(--maroon);
  letter-spacing: .02em;
}

h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); font-weight: 600; }
h2 { font-size: clamp(1.7rem, 3.4vw, 2.4rem); }
h3 { font-size: 1.3rem; }

.script {
  font-family: 'Mistrully', cursive;
  color: #8c6d52;
  font-weight: 400;
  font-size: 52px;
  line-height: 1;
}

p { margin: 0 0 1em; color: var(--ink-soft); }

a { color: inherit; text-decoration: none; }

.eyebrow {
  display: block;
  font-family: 'Jost', sans-serif;
  letter-spacing: .22em;
  text-transform: uppercase;
  font-size: .78rem;
  color: var(--gold);
  margin-bottom: .6em;
}

.eyebrow-script {
  display: block;
  font-family: 'Mistrully', cursive;
  font-size: 1.7rem;
  color: #8c6d52;
  margin-bottom: .3em;
}

img { max-width: 100%; display: block; }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 28px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: .85em 2em;
  border: 1px solid var(--ink);
  color: var(--ink);
  font-size: .82rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  text-align: center;
  transition: background .25s ease, color .25s ease, border-color .25s ease;
}
.btn:hover { background: var(--ink); color: var(--cream-light); }

.btn-solid {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
}
.btn-solid:hover { background: var(--ink); border-color: var(--ink); }

.btn-light {
  border-color: var(--cream-light);
  color: var(--cream-light);
}
.btn-light:hover { background: var(--cream-light); color: var(--ink); }

/* ---------- Top bar ---------- */
.topbar {
  background: #e6d3c2;
  color: var(--ink);
  font-size: .78rem;
  letter-spacing: .05em;
}
.topbar .container {
  display: flex;
  justify-content: space-between;
  gap: 2.2em;
  padding: .6em 28px;
  flex-wrap: wrap;
}
/* var(--gold), not --gold-light — the topbar background is light (cream),
   and --gold-light only reaches ~2:1 contrast there, well under WCAG AA. */
.topbar a:hover { color: var(--gold); }

/* ---------- Header / Nav ---------- */
.site-header {
  background: var(--cream-light);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 50;
  box-shadow: 0 12px 24px -18px rgba(46,40,35,.35);
}
.nav-wrap {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 1.1em 28px;
}
.nav-wrap .logo { grid-column: 2; justify-self: center; }
.nav-wrap .nav-cta { grid-column: 3; justify-self: end; min-width: 0; }
.logo {
  display: flex;
  align-items: center;
  gap: 1em;
}
.logo svg { width: 30px; height: 38px; flex-shrink: 0; }
.logo-img { height: 110px; width: auto; display: block; }
.logo-text {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  letter-spacing: .14em;
  font-size: 46px;
  line-height: 1.1;
  color: var(--maroon);
}
.logo-text .logo-script {
  display: block;
  font-family: 'Mistrully', cursive;
  font-size: 52px;
  line-height: 1;
  letter-spacing: 0;
  color: #8c6d52;
  margin: -.12em 0 0 .05em;
}
.logo-text .sub {
  display: block;
  font-family: 'Jost', sans-serif;
  font-size: .58rem;
  letter-spacing: .32em;
  color: var(--gold);
  margin-top: 0;
}
.nav-cta { display: flex; flex-direction: column; align-items: flex-end; gap: .5em; }
.nav-cta .btn { padding: .22em 1.1em; font-size: .6rem; letter-spacing: .12em; }
.nav-social { display: flex; gap: .5em; }
.nav-social a {
  width: 22px; height: 22px;
  border: 1px solid var(--maroon);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--maroon);
  transition: border-color .2s ease, color .2s ease;
}
.nav-social a:hover { border-color: var(--gold); color: var(--gold); }
.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.6rem;
  cursor: pointer;
  color: var(--maroon);
}
.nav-backdrop, .nav-close { display: none; }
/* Locks background scroll while the mobile drawer is open. */
html.menu-open, body.menu-open { overflow: hidden; }
.nav-bar {
  background: var(--ink);
}
.nav-bar .menu-toggle { color: var(--cream-light); }
.nav-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5em;
}
nav.main-nav {
  display: flex;
  align-items: center;
  gap: 1.8em;
  padding: 1.05em 0;
}
nav.main-nav a {
  font-size: .76rem;
  font-weight: 400;
  letter-spacing: .07em;
  text-transform: uppercase;
  position: relative;
  white-space: nowrap;
  color: var(--cream-light);
}
nav.main-nav a.active { color: var(--gold-light); }
nav.main-nav a:hover { color: var(--gold-light); }

/* "Book Consultation" / "Schedule an Appointment" duplicated into the
   mobile dropdown menu (see nav.main-nav markup) so they can be pulled out
   of the sticky header on small screens. Hidden by default — desktop's
   nav.main-nav is a permanent horizontal bar, not a dropdown, so this must
   stay off there and only switch on inside the ≤1080px dropdown below. */
.mobile-nav-cta { display: none; }

@media (max-width: 1080px) {
  /* minmax(0, ...) lets each track shrink below its content's natural
     width instead of "blowing out" the row when the logo text can't fit at
     full size — without this, narrow phones were pushing things past the
     right edge of the screen. */
  .nav-wrap { grid-template-columns: minmax(0, auto) minmax(0, 1fr); padding: .65em 18px; align-items: center; }
  .nav-wrap .logo { grid-column: 1; justify-self: start; min-width: 0; }
  .nav-wrap .nav-cta { grid-column: 2; justify-self: end; }
  /* Logo artwork is capped so it never grows taller than the "SkinArt
     Aesthetics" text logo beside it — the two-line text block (22px line +
     26px script line, see below) renders at roughly 46px tall, so 40px
     keeps the image comfortably at or under that. */
  .logo-img { height: 40px; width: auto; max-width: 120px; }
  .logo-text { font-size: 22px; line-height: 1.05; }
  .logo-text .logo-script { font-size: 26px; }
  /* The two CTA buttons no longer live in the header itself on mobile —
     they've moved into .mobile-nav-cta inside the dropdown below, so the
     header row only has to fit the social icons + hamburger on one line. */
  .nav-cta { flex-direction: row; align-items: center; gap: .6em; }
  .nav-cta > .btn { display: none; }
  .nav-social { justify-content: flex-end; align-items: center; gap: .4em; }
  /* Bigger tap targets for accessibility — was 22px/19px, well under the
     ~24-44px touch-target guidelines. */
  .nav-social a { width: 38px; height: 38px; }
  .nav-social a svg { width: 16px; height: 16px; }
  /* Slide-out drawer from the right edge, with a dimming backdrop behind
     it. Stays in the DOM (not display:none) so the transform transition
     can animate it; translateX(100%) parks it fully off-screen when
     closed. */
  .nav-backdrop {
    display: block;
    position: fixed;
    inset: 0;
    background: rgba(20, 16, 14, .5);
    backdrop-filter: blur(2px);
    opacity: 0;
    visibility: hidden;
    transition: opacity .35s ease, visibility .35s ease;
    z-index: 150;
  }
  .nav-backdrop.open { opacity: 1; visibility: visible; }
  nav.main-nav {
    display: flex;
    position: fixed;
    top: 0;
    right: 0;
    /* height is content-driven (not a forced top:0/bottom:0 full-height
       panel), so the gradient background ends right after the last link
       (Policies) instead of stretching empty color down to the bottom of
       the screen. max-height + overflow-y keeps it scrollable if content
       ever exceeds the viewport on a short phone. */
    max-height: 100vh;
    width: 80%;
    min-width: 260px;
    background: linear-gradient(165deg, var(--cream-light) 0%, var(--cream) 140%);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 0;
    box-shadow: -20px 0 40px -18px rgba(46,40,35,.45);
    transform: translateX(100%);
    transition: transform .4s cubic-bezier(.16,1,.3,1);
    z-index: 200;
    overflow-y: auto;
  }
  nav.main-nav.open { transform: translateX(0); }
  .nav-close {
    display: flex;
    align-items: center;
    justify-content: center;
    align-self: flex-end;
    width: 36px;
    height: 36px;
    margin: 20px 22px 4px 0;
    background: transparent;
    border: 1px solid var(--gold-light);
    border-radius: 50%;
    font-size: 1.25rem;
    line-height: 1;
    color: var(--ink);
    cursor: pointer;
    flex-shrink: 0;
    transition: border-color .25s ease, color .25s ease, transform .25s ease;
  }
  .nav-close:hover {
    border-color: var(--gold);
    color: var(--gold);
    transform: rotate(90deg);
  }
  /* Primary call-to-action panel pinned to the top of the dropdown,
     visually set apart from the plain page links below it. */
  .mobile-nav-cta {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: .7em;
    padding: .6em 26px 1.4em;
    border-bottom: 1px solid var(--line);
  }
  .mobile-nav-cta .btn {
    width: 100%;
    text-align: center;
    padding: .85em 1em;
    font-size: .76rem;
    letter-spacing: .1em;
    /* nav.main-nav a (below) is more specific than .btn-solid's base
       color rule, so without this override these buttons silently
       rendered with dark ink text on the green button — ~2.16:1
       contrast, failing WCAG AA. Restore the intended light text. */
    color: var(--white);
  }
  nav.main-nav a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: .82rem;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--ink);
    padding: 1em 26px;
    width: 100%;
    border-top: 1px solid var(--line);
    transition: color .2s ease, padding-left .2s ease, background .2s ease;
  }
  nav.main-nav a::after {
    content: '\203A';
    font-size: 1.05rem;
    color: var(--gold-light);
    opacity: 0;
    transform: translateX(-4px);
    transition: opacity .2s ease, transform .2s ease;
  }
  nav.main-nav a:hover,
  nav.main-nav a:focus-visible {
    color: var(--gold);
    padding-left: 32px;
    background: rgba(110, 122, 99, .07);
  }
  /* Same specificity collision as above: the generic plain-link hover/
     focus state (and its arrow glyph) would otherwise bleed into these
     buttons too, replacing the solid button look with a near-invisible
     wash and gold-on-cream text. Restore the intended button hover. */
  .mobile-nav-cta .btn:hover,
  .mobile-nav-cta .btn:focus-visible {
    color: var(--white);
    background: var(--ink);
    padding-left: 1em;
  }
  .mobile-nav-cta .btn::after { content: none; }
  nav.main-nav a:hover::after,
  nav.main-nav a:focus-visible::after {
    opacity: 1;
    transform: translateX(0);
  }
  nav.main-nav a.active { color: var(--gold); font-weight: 500; }
  nav.main-nav a.active::after { content: '\2022'; opacity: 1; color: var(--gold); }
  .menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    flex-shrink: 0;
  }
}

@media (max-width: 480px) {
  /* Phone-width header: keep the row compact and tap targets ample, with
     the logo still capped to the text logo's height (text block now ~37px
     tall at these smaller sizes, so the 32px image stays under it). */
  .nav-wrap { padding: .55em 14px; }
  .logo { gap: .5em; }
  .logo-img { height: 32px; max-width: 90px; }
  .logo-text { font-size: 18px; }
  .logo-text .logo-script { font-size: 21px; }
  .logo-text, .logo-text .logo-script { overflow-wrap: anywhere; }
  .nav-social a { width: 34px; height: 34px; }
  .nav-social a svg { width: 14px; height: 14px; }
  .menu-toggle { width: 34px; height: 34px; font-size: 1.4rem; }
  .mobile-nav-cta { padding: 1em 18px 1.2em; gap: .5em; }
  .mobile-nav-cta .btn { font-size: .72rem; padding: .7em 1em; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background:
    radial-gradient(circle at 80% 0%, rgba(169,128,90,.12), transparent 50%),
    linear-gradient(180deg, var(--cream) 0%, var(--cream-light) 100%);
  box-shadow: 0 3px 10px -3px rgba(46,40,35,.22), 0 34px 64px -26px rgba(46,40,35,.42);
  padding: 5em 0;
  overflow: hidden;
  box-shadow: inset 0 -18px 24px -22px rgba(46,40,35,.18);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 2.2em;
  align-items: center;
  max-width: 980px;
  margin: 0 auto;
}
.hero-inner { max-width: 560px; margin: 0; position: relative; z-index: 2; text-align: left; }
.hero h1 { margin-bottom: .3em; }
.hero .lede { font-size: 1.05rem; max-width: 480px; margin: 0 0 2em; }
.hero-actions { display: flex; gap: 1em; justify-content: flex-start; flex-wrap: wrap; }
.hero-photo {
  max-width: 380px;
  margin-left: auto;
  aspect-ratio: 3 / 4;
}
/* Opt-in: photos marked .pin-photo (photo-first sections, e.g. "Meet Your
   Esthetician" on the homepage) stay pinned just below the sticky header
   while their section's text scrolls past underneath — an Apple.com-style
   pinned reveal. Only applied where a section is explicitly marked for it.
   top: 210px clears the desktop header (110px logo + nav-bar row); the
   ≤860px override below uses the shorter mobile header height instead. */
.pin-photo { position: sticky; top: 150px; z-index: 1; }
@media (max-width: 860px) {
  .hero-grid { grid-template-columns: 1fr; gap: 2.5em; text-align: center; }
  .hero-inner { max-width: 100%; margin: 0 auto; text-align: center; }
  .hero .lede { margin: 0 auto 2em; }
  .hero-actions { justify-content: center; }
  .hero-photo { margin: 0 auto; max-width: 280px; }
  .pin-photo { top: 50px; }
}

.page-hero {
  position: relative;
  overflow: hidden;
  color: var(--cream-light);
  text-align: center;
  padding: 4.5em 0 3em;
}
/* Photo lives on its own layer (slightly overscanned via inset:-15%) so it
   can be nudged with a translateY on mobile (see js/parallax.js) without
   ever exposing empty space at the top/bottom edges. */
.page-hero::before {
  content: '';
  position: absolute;
  inset: -15% 0;
  background-image: var(--hero-img, none);
  background-size: cover;
  background-position: var(--hero-pos, center);
  z-index: 0;
  transform: translateY(var(--parallax-offset, 0px));
  will-change: transform;
}
/* Darkening tint + gold accent sit above the photo layer, below the text. */
.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 85% 0%, rgba(169,128,90,.22), transparent 55%),
    linear-gradient(160deg, rgba(54,48,42,.88) 0%, rgba(28,24,20,.9) 100%);
  background-position: 85% 0%, center;
  background-repeat: no-repeat, no-repeat;
  box-shadow: inset 0 -22px 30px -26px rgba(0,0,0,.5);
  z-index: 1;
}
.page-hero > .container { position: relative; z-index: 2; }
.page-hero h1 { color: var(--cream-light); }
.page-hero p { color: var(--line); }
/* Eyebrow + script accents need a lighter, warmer tone on this dark
   background — the standard --gold / .script brown is too low-contrast here. */
.page-hero .eyebrow { color: var(--gold-light); }
.page-hero h1 .script { color: #d9b98e; }

/* ---------- Sections ---------- */
section { padding: 4.5em 0; }
.section-head { text-align: center; max-width: 640px; margin: 0 auto 3em; }
.alt-bg {
  background: var(--cream);
  box-shadow:
    inset 0 14px 18px -16px rgba(46,40,35,.16),
    inset 0 -14px 18px -16px rgba(46,40,35,.16);
}

.divider {
  width: 90px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-light), transparent);
  margin: 1.4em auto;
}

/* ---------- Image framing / editorial photos ---------- */
.img-frame {
  position: relative;
  display: block;
}
.img-frame::after {
  content: '';
  position: absolute;
  top: 16px; left: 16px; right: -16px; bottom: -16px;
  border: 1px solid var(--gold-light);
  z-index: 0;
}
.img-frame img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  box-shadow: 0 3px 10px -3px rgba(46,40,35,.22), 0 34px 64px -26px rgba(46,40,35,.42);
}
@media (max-width: 600px) {
  .img-frame::after { top: 10px; left: 10px; right: -10px; bottom: -10px; }
}

.img-banner {
  position: relative;
  padding: 0;
  min-height: 460px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}
.img-banner img {
  position: absolute;
  top: -15%;
  left: 0;
  width: 100%;
  height: 130%;
  object-fit: cover;
  z-index: 0;
  will-change: transform;
}
.img-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  /* Darkened further so text stays legible no matter how bright the
     underlying photo is in that spot. */
  background: linear-gradient(180deg, rgba(20,17,14,.55), rgba(20,17,14,.72));
  z-index: 1;
}
.img-banner .banner-text {
  position: relative;
  z-index: 2;
  color: var(--cream-light);
  max-width: 620px;
  padding: 0 28px;
}
/* Lighter gold + a soft shadow so the script accent reads clearly against
   any photo, not just the darkest parts of it. */
.img-banner .banner-text .script {
  color: #d9b98e;
  font-size: 2rem;
  display: block;
  margin-bottom: .2em;
  text-shadow: 0 2px 10px rgba(0,0,0,.55);
}
.img-banner .banner-text p { color: var(--line); margin: 0; text-shadow: 0 1px 6px rgba(0,0,0,.4); }
@media (max-width: 600px) {
  .img-banner { min-height: 480px; }
}

/* ---------- Scroll reveal ---------- */
/* Apple-like ease-out curve plus a subtle scale, used everywhere
   (desktop and mobile) instead of the old plain linear-feeling ease. */
.reveal {
  opacity: 0;
  transform: translateY(28px) scale(.97);
  transition: opacity .9s cubic-bezier(.16,1,.3,1), transform .9s cubic-bezier(.16,1,.3,1);
}
.reveal.in { opacity: 1; transform: translateY(0) scale(1); }
#privacy-policy, #terms-and-conditions { scroll-margin-top: 150px; }

/* Anyone with "Reduce Motion" turned on gets the content instantly, with
   no scroll-driven movement at all — this overrides the smooth-scroll,
   reveal, parallax (js/parallax.js bails out too) and sticky-photo effects. */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
  .page-hero::before, .cta-band::before, .img-banner img { transform: none !important; }
  .pin-photo { position: static !important; }
}

/* ---------- Grids ---------- */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2em;
}
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3em;
  align-items: center;
}
.welcome-grid { align-items: stretch; }
.welcome-grid > div:first-child { display: flex; flex-direction: column; justify-content: space-between; }
.welcome-grid > div:first-child .btn { align-self: flex-start; }
@media (max-width: 860px) {
  .grid-3 { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
}

/* ---------- Cards ---------- */
.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 3px;
  padding: 2.4em 2em;
  text-align: center;
  box-shadow: 0 2px 8px -2px rgba(46,40,35,.16), 0 34px 54px -30px rgba(46,40,35,.38);
}
.card .icon { width: 46px; height: 46px; margin: 0 auto 1em; color: var(--gold); }
.card h3 { margin-bottom: .5em; }

.feature-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 3px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 2px 8px -2px rgba(46,40,35,.16), 0 34px 54px -30px rgba(46,40,35,.38);
  transition: transform .4s ease, box-shadow .4s ease;
}
.feature-card:hover { transform: translateY(-6px); box-shadow: 0 4px 10px -2px rgba(46,40,35,.2), 0 40px 64px -28px rgba(46,40,35,.42); }
.feature-card .ph {
  background: var(--cream);
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
  overflow: hidden;
}
.feature-card .ph svg { width: 60px; height: 60px; }
.feature-card .ph img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}
.feature-card:hover .ph img { transform: scale(1.06); }
.feature-card .body { padding: 1.8em 1.6em 2.2em; flex: 1; display: flex; flex-direction: column; }
.feature-card .price-row {
  display: flex;
  justify-content: space-between;
  font-family: 'Jost', sans-serif;
  letter-spacing: .05em;
  font-size: .85rem;
  color: var(--gold);
  margin-bottom: .6em;
  text-transform: uppercase;
}
.feature-card .best-for {
  margin-top: auto;
  padding-top: 1em;
  border-top: 1px solid var(--line);
  font-size: .85rem;
}
.feature-card .best-for strong { color: var(--gold); text-transform: uppercase; font-size: .75rem; letter-spacing: .08em; }

/* ---------- CTA band ---------- */
.cta-band {
  position: relative;
  overflow: hidden;
  color: var(--cream-light);
  text-align: center;
  padding: 4em 0;
}
.cta-band::before {
  content: '';
  position: absolute;
  inset: -15% 0;
  background-image: var(--cta-img, none);
  background-size: cover;
  background-position: var(--cta-pos, center);
  z-index: 0;
  transform: translateY(var(--parallax-offset, 0px));
  will-change: transform;
}
.cta-band::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 15% 100%, rgba(169,128,90,.22), transparent 55%),
    linear-gradient(180deg, rgba(30,26,22,.86) 0%, rgba(28,24,20,.9) 100%);
  background-position: 15% 100%, center;
  background-repeat: no-repeat, no-repeat;
  box-shadow: inset 0 18px 26px -22px rgba(0,0,0,.5);
  z-index: 1;
}
.cta-band > .container { position: relative; z-index: 2; }
.cta-band h2 { color: var(--cream-light); }
.cta-band p { color: var(--line); }

/* ---------- Stats ---------- */
.stats {
  display: flex;
  justify-content: center;
  gap: 4em;
  flex-wrap: wrap;
  text-align: center;
}
.stats .num { font-family: 'Playfair Display', serif; font-size: 2.2rem; color: var(--gold); }
.stats .label { font-size: .8rem; letter-spacing: .1em; text-transform: uppercase; }

/* ---------- Treatments list page ---------- */
.category-block { margin-bottom: 4em; }
.category-title {
  display: flex;
  align-items: baseline;
  gap: 1em;
  margin-bottom: 1.8em;
}
.category-title::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--line);
}
.treat-list { border-top: 1px solid var(--line); }
.treat-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1.6em;
  padding: 1.6em 0;
  border-bottom: 1px solid var(--line);
}
.treat-main { display: flex; align-items: flex-start; gap: 1.3em; flex: 1; min-width: 0; }
.treat-thumb {
  flex-shrink: 0;
  width: 84px;
  height: 84px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 22px -10px rgba(46,40,35,.4);
}
.treat-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.treat-row .info { max-width: 100%; flex: 1; min-width: 0; }
.treat-row h4 { margin-bottom: .3em; }
.treat-row .meta { font-size: .8rem; letter-spacing: .08em; text-transform: uppercase; color: var(--gold); margin-bottom: .5em; }
.treat-row .price { font-family: 'Playfair Display', serif; font-size: 1.2rem; white-space: nowrap; padding-top: .2em; flex-shrink: 0; }
.treat-row .best-for { font-size: .85rem; color: var(--gold); margin-top: .4em; }
.treat-row .addon-list {
  margin-top: .7em;
  padding-top: .6em;
  border-top: 1px dashed var(--line);
  font-size: .85rem;
}
.treat-row .addon-list div { display: flex; justify-content: space-between; gap: 1em; padding: .15em 0; }
.treat-row .addon-list span:last-child { white-space: nowrap; color: var(--ink); font-weight: 600; }
@media (max-width: 600px) {
  .treat-row { flex-direction: column; align-items: flex-start; gap: .9em; }
  .treat-main { width: 100%; }
  .treat-thumb { width: 60px; height: 60px; }
  .treat-row .price { padding-top: 0; }
}

/* ---------- About ---------- */
.bio-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 3px;
  padding: 2.5em;
  box-shadow: 0 2px 8px -2px rgba(46,40,35,.16), 0 34px 54px -30px rgba(46,40,35,.38);
}
.founder-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 3px;
  overflow: hidden;
  box-shadow: 0 2px 8px -2px rgba(46,40,35,.16), 0 34px 54px -30px rgba(46,40,35,.38);
}
.founder-card .photo { aspect-ratio: 4/5; overflow: hidden; }
.founder-card .photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.founder-card .body { padding: 1.8em 1.8em 2.2em; text-align: center; }
.founder-card .body h3 { margin-bottom: .15em; }
.founder-card .body .role { display: block; font-size: .78rem; letter-spacing: .14em; text-transform: uppercase; color: var(--gold); margin-bottom: 1em; }
.story-grid { align-items: stretch; }
.story-grid .bio-card,
.story-grid .founder-card { display: flex; flex-direction: column; height: 100%; }
.story-grid .founder-card .photo { flex-shrink: 0; }
.story-grid .founder-card .body { flex: 1; display: flex; flex-direction: column; justify-content: center; }
.value-list { list-style: none; padding: 0; margin: 0; }
.value-list li {
  display: flex;
  gap: 1em;
  padding: 1em 0;
  border-bottom: 1px solid var(--line);
}
.value-list li:last-child { border-bottom: none; }
.value-list .mark { color: var(--gold); font-family: 'Playfair Display', serif; font-style: italic; }

.testimonial-list { list-style: none; padding: 0; margin: 0; }
.testimonial-list li { padding: 1.1em 0; border-bottom: 1px solid var(--line); }
.testimonial-list li:last-child { border-bottom: none; }
.testimonial-list .stars { display: block; color: var(--gold); letter-spacing: 2px; font-size: .85em; margin-bottom: .4em; }
.testimonial-list p { margin: 0 0 .4em; font-size: .95rem; font-style: italic; color: var(--ink-soft); }
.testimonial-list .reviewer { font-size: .82rem; font-weight: 600; color: var(--ink); }

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3em;
}
@media (max-width: 860px) { .contact-grid { grid-template-columns: 1fr; } }
.info-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 3px;
  padding: 2.4em;
  box-shadow: 0 2px 8px -2px rgba(46,40,35,.16), 0 34px 54px -30px rgba(46,40,35,.38);
}
.info-card h3 { color: var(--gold); font-size: .85rem; letter-spacing: .12em; text-transform: uppercase; font-family: 'Jost', sans-serif; margin-bottom: .8em; }
.info-card .row { margin-bottom: 1.6em; }
.info-card .row:last-child { margin-bottom: 0; }
.meet-row { display: flex; align-items: center; gap: 1.1em; margin-bottom: 1.8em; padding-bottom: 1.6em; border-bottom: 1px solid var(--line); }
.mini-portrait { width: 64px; height: 64px; border-radius: 50%; overflow: hidden; flex-shrink: 0; border: 1px solid var(--gold-light); }
.mini-portrait img { width: 100%; height: 100%; object-fit: cover; display: block; }
.meet-row p { margin: 0; font-size: .92rem; }
.map-wrap { border: 1px solid var(--line); border-radius: 3px; overflow: hidden; box-shadow: 0 24px 44px -28px rgba(46,40,35,.35); }
.map-wrap iframe { width: 100%; height: 100%; min-height: 320px; border: 0; display: block; }

form.contact-form { display: flex; flex-direction: column; gap: 1.2em; }
form.contact-form label {
  display: block;
  font-size: .78rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: .5em;
  color: var(--ink-soft);
}
form.contact-form input,
form.contact-form select,
form.contact-form textarea {
  width: 100%;
  padding: .8em 1em;
  border: 1px solid var(--line);
  background: var(--white);
  font-family: 'Jost', sans-serif;
  font-size: .95rem;
  color: var(--ink);
  box-shadow: inset 0 2px 4px -2px rgba(46,40,35,.12);
  transition: box-shadow .2s ease, border-color .2s ease;
}
form.contact-form input:focus,
form.contact-form select:focus,
form.contact-form textarea:focus {
  outline: none;
  border-color: var(--gold-light);
  /* Focus ring bumped from .15 to .4 alpha — the old value was barely
     visible, which fails WCAG 2.4.7 (focus must be clearly visible). */
  box-shadow: inset 0 2px 4px -2px rgba(46,40,35,.12), 0 0 0 3px rgba(169,128,90,.4);
}
form.contact-form textarea { resize: vertical; min-height: 110px; }
form.contact-form button { align-self: flex-start; cursor: pointer; }

/* ---------- Post Care / Aftercare ---------- */
.aftercare-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 3px;
  padding: 2.4em 2.4em 2em;
  box-shadow: 0 2px 8px -2px rgba(46,40,35,.16), 0 34px 54px -30px rgba(46,40,35,.38);
  margin-bottom: 3em;
}
.aftercare-card:last-child { margin-bottom: 0; }
.aftercare-card-img { padding: 0; overflow: hidden; }
.aftercare-card-img img { display: block; width: 100%; height: auto; }
.aftercare-card .intro { color: var(--gold); font-style: italic; margin-bottom: 1.6em; }
.aftercare-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.2em;
}
@media (max-width: 700px) { .aftercare-cols { grid-template-columns: 1fr; } }
.care-group { margin-bottom: 1.6em; }
.care-group:last-child { margin-bottom: 0; }
.tag-label {
  display: block;
  font-family: 'Jost', sans-serif;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--maroon);
  margin-bottom: .6em;
}
.care-group ul { list-style: none; padding: 0; margin: 0; }
.care-group ul li {
  position: relative;
  padding: .3em 0 .3em 1.2em;
  font-size: .92rem;
  color: var(--ink-soft);
}
.care-group ul li::before { content: '\2014'; position: absolute; left: 0; color: var(--gold); }
.care-group.reactions ul li::before { content: '\2713'; color: var(--gold); }
.care-group.warning {
  background: var(--cream);
  border-left: 3px solid var(--maroon);
  padding: 1em 1.2em;
  border-radius: 0 3px 3px 0;
}
.care-group.warning .tag-label { color: var(--maroon); }
.aftercare-footer {
  margin-top: 1.8em;
  padding-top: 1.4em;
  border-top: 1px solid var(--line);
  font-size: .9rem;
  color: var(--ink-soft);
}
.aftercare-footer strong { color: var(--maroon); }

/* ---------- Shop placeholder ---------- */
.coming-soon {
  text-align: center;
  max-width: 560px;
  margin: 0 auto;
  padding: 3em 0 1em;
}
.coming-soon .icon-ring {
  width: 86px;
  height: 86px;
  border: 1px solid var(--gold-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.6em;
  color: var(--gold);
}
.coming-soon .icon-ring svg { width: 34px; height: 34px; }

/* ---------- Policies ---------- */
.policy-block { margin-bottom: 2.6em; }
.policy-block:last-child { margin-bottom: 0; }
.policy-block h3 { margin-bottom: .5em; }
.policy-block p { margin-bottom: .8em; }

/* ---------- Footer ---------- */
footer.site-footer {
  position: relative;
  background: linear-gradient(165deg, #36302a 0%, var(--ink) 60%, #211c18 100%);
  color: var(--line);
  padding: 4em 0 2em;
  font-size: .9rem;
  box-shadow: inset 0 22px 28px -24px rgba(0,0,0,.55);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 3em;
  margin-bottom: 3em;
}
@media (max-width: 860px) { .footer-grid { grid-template-columns: 1fr; gap: 2em; } }
/* h3, not h4 — every page's main content ends on an h2, so jumping to h4
   here skipped a heading level (WCAG 1.3.1) on every single page. */
footer.site-footer h3 {
  color: var(--cream-light);
  font-size: .8rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-family: 'Jost', sans-serif;
  margin-bottom: 1em;
}
footer.site-footer p { color: var(--line); }
footer.site-footer a:hover { color: var(--gold-light); }
footer.site-footer .footer-links { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: .6em; }
footer.site-footer .footer-links-cols { display: grid; grid-template-columns: 1fr 1fr; column-gap: 1.4em; row-gap: .6em; }
.footer-bottom {
  border-top: 1px solid #45403a;
  padding-top: 1.6em;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1em;
  font-size: .78rem;
  letter-spacing: .03em;
}
.social-row { display: flex; gap: 1em; }
.social-row a {
  width: 34px; height: 34px;
  border: 1px solid #5a544c;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--line);
  transition: border-color .2s ease, color .2s ease;
}
.social-row a:hover { border-color: var(--gold-light); color: var(--gold-light); }

/* ---------- Blog ---------- */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2em;
}
@media (max-width: 860px) { .blog-grid { grid-template-columns: 1fr; } }

.blog-card .category {
  font-family: 'Jost', sans-serif;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-size: .72rem;
  color: var(--gold);
}
.blog-card .blog-date {
  font-family: 'Jost', sans-serif;
  font-size: .78rem;
  /* var(--gold), not --gold-light — this sits on a light card background,
     where --gold-light fails WCAG AA text contrast (~2:1). */
  color: var(--gold);
}
.blog-card .price-row { align-items: baseline; }
.blog-card .body h3 { font-size: 1.18rem; }
.blog-card .read-more {
  margin-top: auto;
  padding-top: 1.2em;
  display: inline-block;
}

.blog-cta-inline {
  text-align: center;
  margin-top: 3.2em;
}

.blog-article-body {
  max-width: 720px;
  margin: 0 auto;
}
.blog-article-body h2 { margin-top: 1.6em; }
.blog-article-body ul { padding-left: 1.3em; color: var(--ink-soft); }
.blog-article-body li { margin-bottom: .6em; }
.blog-meta-row {
  display: flex;
  justify-content: center;
  gap: 1.2em;
  flex-wrap: wrap;
  font-family: 'Jost', sans-serif;
  font-size: .78rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  /* var(--gold), not --gold-light — same light-background contrast issue. */
  color: var(--gold);
  margin-bottom: 1.6em;
}
.blog-back-link {
  display: inline-block;
  margin-top: 2.5em;
  font-size: .85rem;
  letter-spacing: .04em;
  border-bottom: 1px solid var(--gold);
  color: var(--gold);
}
.blog-back-link:hover { color: var(--maroon); border-color: var(--maroon); }
