/* ==========================================================================
   Awakened Aesthetics & Coaching
   Palette drawn from brand imagery — warm nude, blush, terracotta, plum
   ========================================================================== */

:root {
  --cream:        #FBF6EF;
  --sand:         #F3E6D7;
  --blush:        #F4DCC6;
  --blush-soft:   #F8E7D6;
  --terracotta:   #C67B58;
  --terracotta-d: #AE6645;
  --plum:         #7A3B45;
  --plum-deep:    #5E2C36;
  --ink:          #2F261D;
  --muted:        #6F6053;
  --line:         rgba(122, 59, 69, .16);
  --line-soft:    rgba(47, 38, 29, .10);
  --white:        #FFFDFA;

  --shadow-sm: 0 4px 18px rgba(47, 38, 29, .06);
  --shadow-md: 0 14px 40px rgba(94, 44, 54, .12);

  --maxw: 1160px;
  --gutter: clamp(1.25rem, 4vw, 3rem);

  --ff-display: "Cormorant Garamond", Georgia, serif;
  --ff-body: "Mulish", system-ui, -apple-system, sans-serif;
  --ff-script: "Sacramento", cursive;

  --r-sm: 10px;
  --r-md: 18px;
  --r-lg: 28px;
  --r-pill: 999px;
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}

body {
  font-family: var(--ff-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.7;
  font-weight: 400;
  font-size: clamp(1rem, .96rem + .2vw, 1.075rem);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; height: auto; }
a { color: var(--plum); text-decoration: none; transition: color .25s ease; }
a:hover { color: var(--terracotta-d); }

/* ---------- type ---------- */
h1, h2, h3, h4 {
  font-family: var(--ff-display);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: .005em;
  color: var(--ink);
}
h1 { font-size: clamp(2.6rem, 1.8rem + 3.4vw, 4.6rem); }
h2 { font-size: clamp(2rem, 1.5rem + 1.9vw, 3rem); }
h3 { font-size: clamp(1.45rem, 1.2rem + .9vw, 1.9rem); }
.script { font-family: var(--ff-script); color: var(--plum); font-weight: 400; line-height: 1; }
.eyebrow {
  font-family: var(--ff-body);
  text-transform: uppercase;
  letter-spacing: .32em;
  font-size: .72rem;
  font-weight: 700;
  color: var(--terracotta-d);
}
p { color: var(--muted); }
p.lead { font-size: 1.18rem; color: var(--ink); }

/* ---------- layout ---------- */
.wrap { width: min(100% - 2 * var(--gutter), var(--maxw)); margin-inline: auto; }
.wrap-narrow { width: min(100% - 2 * var(--gutter), 820px); margin-inline: auto; }
section { padding-block: clamp(3.5rem, 2.5rem + 5vw, 7rem); }
.center { text-align: center; }

/* reveal on scroll — only hide when JS is available (graceful no-JS fallback) */
.js .reveal { opacity: 0; transform: translateY(22px); transition: opacity .8s ease, transform .8s ease; }
.js .reveal.in { opacity: 1; transform: none; }

/* ==========================================================================
   Header / Nav
   ========================================================================== */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: border-color .3s ease, box-shadow .3s ease;
}
.site-header::before {
  content: ""; position: absolute; inset: 0; z-index: -1; pointer-events: none;
  background: rgba(251, 246, 239, .82);
  backdrop-filter: saturate(140%) blur(12px);
  -webkit-backdrop-filter: saturate(140%) blur(12px);
}
.site-header.scrolled { border-bottom-color: var(--line-soft); box-shadow: var(--shadow-sm); }
.nav {
  display: flex; align-items: center; justify-content: space-between;
  padding-block: .85rem;
}
.brand { display: flex; align-items: center; gap: .7rem; color: var(--plum); }
.brand:hover { color: var(--plum); }
.brand svg, .brand .brand-mark { width: 26px; height: auto; color: var(--plum); flex: none; }
.brand-name {
  font-family: var(--ff-display); font-weight: 600; letter-spacing: .02em;
  font-size: 1.28rem; line-height: 1; color: var(--ink);
}
.brand-name small { display: block; font-family: var(--ff-body); font-weight: 600;
  letter-spacing: .26em; text-transform: uppercase; font-size: .54rem; color: var(--terracotta-d); margin-top: .28rem; }

.nav-links { display: flex; align-items: center; gap: clamp(1rem, 2.2vw, 2.1rem); list-style: none; }
.nav-links a {
  font-weight: 600; font-size: .94rem; color: var(--ink); letter-spacing: .01em;
  position: relative; padding-block: .3rem;
}
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 1.5px; width: 0;
  background: var(--terracotta); transition: width .3s ease;
}
.nav-links a:hover, .nav-links a[aria-current="page"] { color: var(--plum); }
.nav-links a:hover::after, .nav-links a[aria-current="page"]::after { width: 100%; }
.nav-cta {
  background: var(--plum); color: var(--white) !important; padding: .6rem 1.25rem;
  border-radius: var(--r-pill); font-weight: 700; letter-spacing: .02em;
}
.nav-cta::after { display: none; }
.nav-cta:hover { background: var(--plum-deep); color: var(--white) !important; }

.nav-toggle {
  display: none; background: none; border: 0; cursor: pointer; padding: .4rem;
  width: 44px; height: 44px; color: var(--plum);
}
.nav-toggle span { display: block; width: 24px; height: 2px; background: currentColor; border-radius: 2px; margin: 5px auto; transition: transform .3s ease, opacity .3s ease; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 860px) {
  .nav-toggle { display: block; position: relative; z-index: 102; }
  .nav-links {
    position: fixed; inset: 0 0 0 auto; width: min(82vw, 340px); z-index: 101;
    flex-direction: column; align-items: flex-start; justify-content: center;
    gap: 1.4rem; padding: 2rem 2.2rem;
    background: var(--cream); box-shadow: -20px 0 60px rgba(47,38,29,.18);
    transform: translateX(100%); transition: transform .38s cubic-bezier(.45,0,.15,1);
  }
  .nav-links.open { transform: translateX(0); }
  .nav-links a { font-size: 1.25rem; font-family: var(--ff-display); font-weight: 500; }
  .nav-cta { margin-top: .4rem; }
  .nav-backdrop {
    position: fixed; inset: 0; background: rgba(47,38,29,.4); opacity: 0; pointer-events: none;
    transition: opacity .35s ease; z-index: 100;
  }
  .nav-backdrop.show { opacity: 1; pointer-events: auto; }
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
  display: inline-flex; align-items: center; gap: .55rem;
  font-family: var(--ff-body); font-weight: 700; letter-spacing: .02em; font-size: .95rem;
  padding: .85rem 1.7rem; border-radius: var(--r-pill); border: 1.5px solid transparent;
  cursor: pointer; transition: all .28s ease; line-height: 1;
}
.btn-primary { background: var(--plum); color: var(--white); }
.btn-primary:hover { background: var(--plum-deep); color: var(--white); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-ghost { background: transparent; color: var(--plum); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--plum); color: var(--plum); transform: translateY(-2px); }
.btn-block { width: 100%; justify-content: center; }
.btn .arr { transition: transform .28s ease; }
.btn:hover .arr { transform: translateX(4px); }

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  position: relative; overflow: hidden;
  background:
    radial-gradient(120% 90% at 85% -10%, var(--blush) 0%, transparent 55%),
    radial-gradient(110% 90% at 5% 110%, var(--blush-soft) 0%, transparent 50%),
    var(--cream);
  padding-block: clamp(3.5rem, 2rem + 7vw, 7.5rem);
}
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(2rem, 4vw, 4.5rem); align-items: center; }
.hero h1 { margin-bottom: 1.4rem; }
.hero h1 em { font-style: italic; color: var(--plum); }
.hero p.lead { max-width: 38ch; margin-bottom: 2rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .9rem; }
.hero-figure {
  position: relative; aspect-ratio: 4 / 5; border-radius: var(--r-lg) var(--r-lg) 140px 140px;
  overflow: hidden; box-shadow: var(--shadow-md);
  background: linear-gradient(160deg, var(--blush), var(--sand));
}
.hero-figure img { width: 100%; height: 100%; object-fit: cover; }
.hero-watermark {
  position: absolute; right: -40px; top: 50%; transform: translateY(-50%);
  width: 360px; color: var(--plum); opacity: .05; pointer-events: none; z-index: 0;
}
.hero-grid > * { position: relative; z-index: 1; }


@media (max-width: 820px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-figure { max-width: 440px; margin-inline: auto; order: -1; }
  .hero-watermark { display: none; }
}

/* ==========================================================================
   Breathe divider (signature motif)
   ========================================================================== */
.breathe-rule {
  display: flex; align-items: center; justify-content: center; gap: 1.1rem;
  color: var(--plum); margin-block: 0;
}
.breathe-rule .ln { height: 1px; width: min(120px, 22vw); background: var(--line); }
.breathe-rule .pause { font-family: var(--ff-display); font-size: 1.4rem; letter-spacing: .1em; color: var(--plum); opacity: .7; }
.breathe-quote {
  background:
    radial-gradient(80% 120% at 50% 0%, var(--blush-soft) 0%, transparent 70%),
    var(--sand);
  text-align: center;
}
.breathe-quote .mark { width: 54px; margin: 0 auto 1.4rem; color: var(--plum); opacity: .85; }
.breathe-quote blockquote {
  font-family: var(--ff-display); font-style: italic; font-weight: 500;
  font-size: clamp(1.5rem, 1.1rem + 1.8vw, 2.4rem); line-height: 1.3; color: var(--ink);
  max-width: 22ch; margin-inline: auto;
}
.breathe-quote cite { display: block; margin-top: 1.4rem; font-style: normal; font-family: var(--ff-body);
  letter-spacing: .26em; text-transform: uppercase; font-size: .7rem; font-weight: 700; color: var(--terracotta-d); }

/* ==========================================================================
   Section heads
   ========================================================================== */
.sec-head { max-width: 640px; margin-bottom: 3rem; }
.sec-head.center { margin-inline: auto; text-align: center; }
.sec-head .eyebrow { display: inline-block; margin-bottom: .9rem; }
.sec-head p { margin-top: 1rem; font-size: 1.1rem; }

/* ==========================================================================
   Pillars / values
   ========================================================================== */
.pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem; }
.pillar {
  background: var(--white); border: 1px solid var(--line-soft); border-radius: var(--r-md);
  padding: 2rem 1.8rem; box-shadow: var(--shadow-sm);
}
.pillar .num { font-family: var(--ff-display); font-size: 1.1rem; color: var(--terracotta-d); letter-spacing: .12em; }
.pillar h3 { margin: .7rem 0 .6rem; }
.pillar p { font-size: .98rem; }
@media (max-width: 760px) { .pillars { grid-template-columns: 1fr; } }

/* ==========================================================================
   Services
   ========================================================================== */
.svc-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.6rem; }
.svc-card {
  background: var(--white); border: 1px solid var(--line-soft); border-radius: var(--r-md);
  padding: clamp(1.6rem, 1.2rem + 1vw, 2.3rem); box-shadow: var(--shadow-sm);
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
  display: flex; flex-direction: column;
}
.svc-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: var(--line); }
.svc-card .svc-top { display: flex; align-items: baseline; justify-content: space-between; gap: 1rem; }
.svc-card h3 { color: var(--ink); }
.svc-card .price { font-family: var(--ff-display); font-size: 1.5rem; font-weight: 600; color: var(--plum); white-space: nowrap; }
.svc-card .price.free { color: var(--terracotta-d); font-style: italic; }
.svc-card .dur {
  display: inline-flex; align-items: center; gap: .4rem; margin: .7rem 0 1rem;
  font-size: .76rem; letter-spacing: .12em; text-transform: uppercase; font-weight: 700; color: var(--terracotta-d);
}
.svc-card p { font-size: .98rem; flex: 1; }
.svc-card ul { margin: .8rem 0 0; padding-left: 1.1rem; color: var(--muted); font-size: .96rem; }
.svc-card ul li { margin-bottom: .25rem; }
@media (max-width: 720px) { .svc-grid { grid-template-columns: 1fr; } }

/* compact pricing list */
.pricelist { background: var(--blush-soft); border-radius: var(--r-lg); padding: clamp(2rem, 1.4rem + 3vw, 3.5rem); }
.pricelist .price-rows { display: grid; gap: .2rem; max-width: 620px; margin-inline: auto; }
.price-row { display: flex; align-items: baseline; gap: 1rem; padding: .85rem 0; border-bottom: 1px dashed var(--line); }
.price-row:last-child { border-bottom: 0; }
.price-row .nm { font-family: var(--ff-display); font-size: 1.32rem; font-weight: 500; color: var(--ink); }
.price-row .ln { flex: 1; border-bottom: 1px dotted var(--line); transform: translateY(-4px); }
.price-row .pr { font-family: var(--ff-display); font-size: 1.32rem; font-weight: 600; color: var(--plum); white-space: nowrap; }

/* ==========================================================================
   About
   ========================================================================== */
.about-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.about-figure {
  position: relative; aspect-ratio: 3 / 4; border-radius: 180px 180px var(--r-lg) var(--r-lg);
  overflow: hidden; box-shadow: var(--shadow-md); background: linear-gradient(160deg, var(--blush), var(--sand));
}
.about-figure img { width: 100%; height: 100%; object-fit: cover; }
.about-body h2 { margin-bottom: 1.4rem; }
.about-body p { margin-bottom: 1.1rem; }
.about-body p:first-of-type::first-letter {
  font-family: var(--ff-display); font-size: 3.4rem; line-height: .8; float: left;
  padding: .3rem .5rem .1rem 0; color: var(--plum); font-weight: 600;
}
.signoff { font-family: var(--ff-script); font-size: 2.4rem; color: var(--plum); margin-top: 1rem; }
@media (max-width: 820px) { .about-grid { grid-template-columns: 1fr; } .about-figure { max-width: 380px; margin-inline: auto; } }

/* ==========================================================================
   Gallery
   ========================================================================== */
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.gallery-grid figure {
  position: relative; overflow: hidden; border-radius: var(--r-md); aspect-ratio: 1;
  background: linear-gradient(160deg, var(--blush), var(--sand)); box-shadow: var(--shadow-sm);
}
.gallery-grid figure.tall { aspect-ratio: 1 / 1.4; grid-row: span 2; }
.gallery-grid img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.gallery-grid figure:hover img { transform: scale(1.05); }
.gallery-grid .placeholder {
  display: flex; align-items: center; justify-content: center; width: 100%; height: 100%;
  color: var(--plum); opacity: .4; flex-direction: column; gap: .6rem; text-align: center; padding: 1rem;
}
.gallery-grid .placeholder svg { width: 40px; }
.gallery-grid .placeholder span { font-size: .78rem; letter-spacing: .1em; text-transform: uppercase; font-weight: 700; }
@media (max-width: 860px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } .gallery-grid figure.tall { grid-row: span 1; aspect-ratio: 1; } }
@media (max-width: 480px) { .gallery-grid { grid-template-columns: 1fr; } }

/* ==========================================================================
   CTA band
   ========================================================================== */
.cta-band {
  position: relative; overflow: hidden; text-align: center;
  background: linear-gradient(135deg, var(--plum) 0%, var(--plum-deep) 100%); color: var(--cream);
  border-radius: var(--r-lg); padding: clamp(2.6rem, 2rem + 4vw, 5rem) var(--gutter);
}
.cta-band h2 { color: var(--white); margin-bottom: 1rem; }
.cta-band p { color: rgba(251,246,239,.82); max-width: 48ch; margin: 0 auto 2rem; }
.cta-band .btn-primary { background: var(--cream); color: var(--plum); }
.cta-band .btn-primary:hover { background: var(--white); color: var(--plum-deep); }
.cta-band .wm { position: absolute; opacity: .07; color: var(--cream); width: 280px; right: -60px; bottom: -60px; pointer-events: none; }

/* ==========================================================================
   Contact
   ========================================================================== */
.contact-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(2rem, 4vw, 3.5rem); align-items: start; }
.contact-info { background: var(--blush-soft); border-radius: var(--r-lg); padding: clamp(1.8rem, 1.4rem + 2vw, 2.8rem); }
.contact-info h3 { margin-bottom: 1.2rem; }
.info-item { display: flex; gap: .9rem; margin-bottom: 1.4rem; align-items: flex-start; }
.info-item svg { width: 22px; color: var(--plum); flex: none; margin-top: 3px; }
.info-item .lbl { font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; font-weight: 700; color: var(--terracotta-d); }
.info-item .val { font-size: 1.02rem; color: var(--ink); }
.info-item .val a { color: var(--ink); }
.info-item .val a:hover { color: var(--plum); }

.form-card { background: var(--white); border: 1px solid var(--line-soft); border-radius: var(--r-lg); padding: clamp(1.8rem, 1.4rem + 2vw, 2.8rem); box-shadow: var(--shadow-sm); }
.field { margin-bottom: 1.25rem; }
.field label { display: block; font-size: .82rem; letter-spacing: .04em; font-weight: 700; color: var(--ink); margin-bottom: .45rem; }
.field input, .field select, .field textarea {
  width: 100%; font-family: var(--ff-body); font-size: 1rem; color: var(--ink);
  background: var(--cream); border: 1.5px solid var(--line-soft); border-radius: var(--r-sm);
  padding: .8rem 1rem; transition: border-color .2s ease, box-shadow .2s ease;
}
.field textarea { resize: vertical; min-height: 130px; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--plum); box-shadow: 0 0 0 3px rgba(122,59,69,.12);
}
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.consent { display: flex; gap: .7rem; align-items: flex-start; font-size: .9rem; color: var(--muted); }
.consent input { width: auto; margin-top: 4px; accent-color: var(--plum); }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.form-alert { padding: 1rem 1.2rem; border-radius: var(--r-sm); margin-bottom: 1.5rem; font-size: .96rem; }
.form-alert.ok { background: #eef4ec; color: #355e3b; border: 1px solid #cfe3cc; }
.form-alert.err { background: #fbecea; color: #8a3b32; border: 1px solid #f0ccc6; }
@media (max-width: 820px) { .contact-grid { grid-template-columns: 1fr; } }
@media (max-width: 480px) { .field-row { grid-template-columns: 1fr; } }

/* ==========================================================================
   Legal pages
   ========================================================================== */
.legal { background: var(--cream); }
.legal h1 { margin-bottom: .6rem; }
.legal .updated { color: var(--muted); font-size: .9rem; margin-bottom: 2.5rem; }
.legal h2 { font-size: 1.5rem; margin: 2.2rem 0 .8rem; }
.legal h3 { font-size: 1.2rem; margin: 1.6rem 0 .6rem; }
.legal p, .legal li { color: var(--muted); margin-bottom: .9rem; }
.legal ul { padding-left: 1.3rem; }

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer { background: var(--ink); color: rgba(251,246,239,.7); padding-block: clamp(3rem, 2rem + 3vw, 4.5rem) 2rem; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 2.5rem; margin-bottom: 3rem; }
.footer-brand { display: flex; align-items: center; gap: .7rem; color: var(--blush); margin-bottom: 1.1rem; }
.footer-brand .brand-mark { width: 24px; color: var(--blush); }
.footer-brand .brand-name { color: var(--cream); font-size: 1.2rem; }
.site-footer p { color: rgba(251,246,239,.6); font-size: .95rem; max-width: 36ch; }
.footer-col h4 { color: var(--cream); font-family: var(--ff-body); font-weight: 700; font-size: .78rem; letter-spacing: .18em; text-transform: uppercase; margin-bottom: 1.1rem; }
.footer-col ul { list-style: none; display: grid; gap: .6rem; }
.footer-col a { color: rgba(251,246,239,.72); font-size: .96rem; }
.footer-col a:hover { color: var(--blush); }
.footer-social { display: flex; gap: .8rem; margin-top: .3rem; }
.footer-social a { width: 38px; height: 38px; border-radius: 50%; border: 1px solid rgba(251,246,239,.2); display: grid; place-items: center; color: var(--blush); }
.footer-social a:hover { background: var(--plum); border-color: var(--plum); }
.footer-social svg { width: 18px; }
.footer-bottom { border-top: 1px solid rgba(251,246,239,.14); padding-top: 1.6rem; display: flex; flex-wrap: wrap; gap: .8rem 1.6rem; justify-content: space-between; align-items: center; }
.footer-bottom p { font-size: .85rem; margin: 0; }
.footer-credit { display: inline-flex; align-items: center; gap: .55rem; opacity: .72; transition: opacity .25s ease; }
.footer-credit:hover { opacity: 1; }
.footer-credit span { font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; color: rgba(251,246,239,.6); }
.footer-credit img { height: 18px; width: auto; display: block; }
.footer-bottom .legal-links { display: flex; gap: 1.2rem; flex-wrap: wrap; }
.footer-bottom .legal-links a { font-size: .85rem; }
.footer-disclaimer { margin-top: 1.2rem !important; font-size: .78rem !important; color: rgba(251,246,239,.4) !important; max-width: none !important; }
@media (max-width: 760px) { .footer-grid { grid-template-columns: 1fr; gap: 2rem; } }

/* ==========================================================================
   Cookie banner
   ========================================================================== */
.cookie-banner {
  position: fixed; left: 50%; bottom: 1.2rem; transform: translateX(-50%) translateY(160%);
  width: min(100% - 2rem, 720px); z-index: 200;
  background: var(--white); border: 1px solid var(--line); border-radius: var(--r-md);
  box-shadow: var(--shadow-md); padding: 1.3rem 1.5rem;
  display: flex; flex-wrap: wrap; align-items: center; gap: 1rem 1.4rem;
  transition: transform .5s cubic-bezier(.45,0,.15,1);
}
.cookie-banner.show { transform: translateX(-50%) translateY(0); }
.cookie-banner p { font-size: .9rem; color: var(--muted); flex: 1 1 320px; margin: 0; }
.cookie-banner p a { font-weight: 700; }
.cookie-actions { display: flex; gap: .6rem; flex: 0 0 auto; }
.cookie-actions .btn { padding: .6rem 1.2rem; font-size: .85rem; }
.btn-text { background: none; border: 0; color: var(--muted); font-weight: 700; font-size: .85rem; cursor: pointer; padding: .6rem .8rem; }
.btn-text:hover { color: var(--plum); }
@media (max-width: 520px) { .cookie-actions { width: 100%; } .cookie-actions .btn, .cookie-banner .btn-sm { flex: 1; justify-content: center; } }

/* skip link */
.skip { position: absolute; left: -999px; top: 0; background: var(--plum); color: var(--white); padding: .7rem 1.2rem; z-index: 999; border-radius: 0 0 var(--r-sm) 0; }
.skip:focus { left: 0; color: var(--white); }

/* page hero (interior) */
.page-hero {
  background:
    radial-gradient(110% 120% at 90% -20%, var(--blush) 0%, transparent 55%),
    var(--sand);
  text-align: center; padding-block: clamp(3rem, 2rem + 5vw, 5.5rem);
}
.page-hero .eyebrow { display: inline-block; margin-bottom: 1rem; }
.page-hero h1 { margin-bottom: 1rem; }
.page-hero p { max-width: 56ch; margin-inline: auto; font-size: 1.12rem; }
.crumbs { font-size: .82rem; color: var(--muted); margin-bottom: 1.4rem; letter-spacing: .04em; }
.crumbs a { color: var(--muted); }
.crumbs a:hover { color: var(--plum); }

/* ==========================================================================
   Credentials chips (About)
   ========================================================================== */
.creds { display: flex; flex-wrap: wrap; gap: .6rem; margin: .2rem 0 1.5rem; }
.cred {
  display: inline-flex; align-items: center; gap: .5rem; padding: .5rem .95rem;
  border: 1px solid var(--line); border-radius: var(--r-pill); background: var(--white);
  font-size: .82rem; font-weight: 700; color: var(--plum); letter-spacing: .01em;
}
.cred svg { width: 16px; height: 16px; color: var(--terracotta); flex: none; }

/* ==========================================================================
   Prysm iO band
   ========================================================================== */
.prysm { background: var(--blush-soft); }
.prysm-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(2rem, 5vw, 4.2rem); align-items: center; }
.prysm-media { position: relative; display: flex; align-items: center; justify-content: center; }
.prysm-media svg { width: min(100%, 360px); height: auto; }
.prysm-chip {
  position: absolute; bottom: 6%; left: 50%; transform: translateX(-50%);
  background: var(--plum); color: var(--white); font-size: .68rem; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase; padding: .4rem .9rem;
  border-radius: var(--r-pill); box-shadow: var(--shadow-sm); white-space: nowrap;
}
.prysm-body h2 { margin-bottom: .6rem; }
.ticks { list-style: none; margin: 1.2rem 0 1.9rem; display: grid; gap: .75rem; }
.ticks li { position: relative; padding-left: 1.9rem; color: var(--ink); }
.ticks li::before { content: ""; position: absolute; left: 0; top: .2em; width: 1.15rem; height: 1.15rem; border-radius: 50%; background: var(--plum); }
.ticks li::after { content: ""; position: absolute; left: .4rem; top: .42em; width: .28rem; height: .55rem; border: solid #fff; border-width: 0 2px 2px 0; transform: rotate(45deg); }

/* ==========================================================================
   Skincare products band
   ========================================================================== */
.products-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4.2rem); align-items: center; }
.products-media { display: flex; gap: 1rem; }
.products-media img { width: 50%; aspect-ratio: 3/4; object-fit: cover; border-radius: var(--r-md); box-shadow: var(--shadow-md); }
.products-media .pm-b { margin-top: 2rem; }
.product-tags { display: flex; flex-wrap: wrap; gap: .5rem; margin: .2rem 0 1.6rem; }
.product-tags span { padding: .4rem .9rem; border: 1px solid var(--line); border-radius: var(--r-pill); font-size: .8rem; font-weight: 700; color: var(--terracotta-d); background: var(--white); }
.btn-row { display: flex; flex-wrap: wrap; gap: .8rem; }

/* ==========================================================================
   Reviews / testimonials
   ========================================================================== */
.reviews { background: var(--sand); }
.review-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.review-card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 2rem 1.8rem; position: relative; display: flex; flex-direction: column; gap: .9rem;
  box-shadow: var(--shadow-sm);
}
.review-card .stars { color: var(--terracotta); letter-spacing: .14em; font-size: 1.05rem; }
.review-card blockquote { margin: 0; font-family: var(--ff-display); font-size: 1.34rem; line-height: 1.45; color: var(--ink); }
.review-card figcaption { margin-top: auto; display: flex; flex-direction: column; gap: .1rem; }
.review-card .r-name { font-weight: 800; color: var(--plum); letter-spacing: .01em; }
.review-card .r-detail { font-size: .85rem; color: var(--muted); }
.review-card .r-source { position: absolute; top: 1.4rem; right: 1.6rem; font-size: .68rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); opacity: .7; }

/* ==========================================================================
   Payment-plan notes
   ========================================================================== */
.pay-note {
  max-width: 680px; margin: 1.8rem auto 0; display: flex; align-items: center; gap: 1rem;
  background: var(--white); border: 1px dashed var(--terracotta); border-radius: var(--r-md); padding: 1rem 1.4rem;
}
.pay-note svg { width: 30px; height: 30px; color: var(--plum); flex: none; }
.pay-note p { margin: 0; font-size: .95rem; color: var(--ink); font-weight: 600; }
.info-pay { margin-top: 1rem; font-size: .92rem; font-weight: 700; color: var(--plum); background: var(--blush-soft); border-radius: var(--r-sm); padding: .85rem 1rem; }

/* ==========================================================================
   Map
   ========================================================================== */
.map-section .sec-head { margin-bottom: 2rem; }
.map-section .sec-head p { color: var(--muted); margin-top: .4rem; }
.map-embed {
  width: min(100% - 2 * var(--gutter), var(--maxw)); margin-inline: auto;
  height: clamp(300px, 42vw, 460px); border-radius: var(--r-lg); overflow: hidden;
  box-shadow: var(--shadow-md); border: 1px solid var(--line);
}
.map-embed iframe { width: 100%; height: 100%; border: 0; display: block; filter: grayscale(.12); }

/* ==========================================================================
   WhatsApp chat-bubble widget
   ========================================================================== */
.wa-widget { position: fixed; right: 1.2rem; bottom: 1.3rem; z-index: 120; }

.wa-fab {
  position: relative; width: 58px; height: 58px; border-radius: 50%;
  background: #25D366; color: #fff; border: 0; cursor: pointer;
  display: grid; place-items: center;
  box-shadow: 0 8px 24px rgba(37, 211, 102, .45);
  transition: transform .25s ease, box-shadow .25s ease;
}
.wa-fab:hover { transform: translateY(-2px) scale(1.05); box-shadow: 0 12px 30px rgba(37, 211, 102, .55); }
.wa-fab > .wa-icon-chat, .wa-fab > .wa-icon-close { grid-area: 1 / 1; transition: opacity .2s ease, transform .25s ease; }
.wa-fab .wa-icon-chat { display: flex; }
.wa-fab .wa-icon-chat svg { width: 30px; height: 30px; display: block; }
.wa-fab .wa-icon-close { width: 26px; height: 26px; opacity: 0; transform: rotate(-45deg) scale(.6); }
.wa-widget.is-open .wa-icon-chat { opacity: 0; transform: rotate(45deg) scale(.6); }
.wa-widget.is-open .wa-icon-close { opacity: 1; transform: rotate(0) scale(1); }

.wa-panel {
  position: absolute; bottom: calc(100% + 14px); right: 0; width: min(86vw, 320px);
  background: var(--cream); border-radius: 18px; overflow: hidden;
  box-shadow: 0 18px 50px rgba(47, 38, 29, .28);
  transform-origin: bottom right; transform: scale(.35) translateY(12px); opacity: 0; pointer-events: none;
  transition: transform .3s cubic-bezier(.34, 1.4, .5, 1), opacity .2s ease;
}
.wa-widget.is-open .wa-panel { transform: scale(1) translateY(0); opacity: 1; pointer-events: auto; }

.wa-head {
  display: flex; align-items: center; gap: .7rem; padding: .9rem 1rem;
  background: linear-gradient(135deg, var(--plum), var(--plum-deep)); color: #fff;
}
.wa-ava {
  width: 40px; height: 40px; border-radius: 50%; background: rgba(255, 255, 255, .16);
  display: flex; align-items: center; justify-content: center; flex: none; color: #fff;
}
.wa-ava svg { width: 20px; height: 26px; }
.wa-head-txt { display: flex; flex-direction: column; line-height: 1.25; flex: 1; min-width: 0; }
.wa-head-txt strong { font-size: .95rem; }
.wa-head-txt span { font-size: .72rem; opacity: .82; }
.wa-close { background: none; border: 0; color: #fff; font-size: 1.6rem; line-height: 1; cursor: pointer; opacity: .85; padding: 0 .15rem; }
.wa-close:hover { opacity: 1; }

.wa-body { padding: 1.1rem 1rem; background: var(--blush-soft); }
.wa-msg {
  background: #fff; border-radius: 4px 14px 14px 14px; padding: .8rem .9rem; max-width: 92%;
  box-shadow: 0 2px 6px rgba(47, 38, 29, .08);
}
.wa-msg p { margin: 0 0 .35rem; font-size: .9rem; color: var(--ink); line-height: 1.4; }
.wa-time { font-size: .65rem; color: var(--muted); display: block; text-align: right; }

.wa-start {
  display: flex; align-items: center; justify-content: center; gap: .5rem;
  padding: .95rem; background: #25D366; color: #fff; font-weight: 700; font-size: .95rem;
  transition: background .2s ease;
}
.wa-start:hover { background: #1da851; color: #fff; }
.wa-start svg { width: 20px; height: 20px; }

/* ==========================================================================
   Responsive — new sections
   ========================================================================== */
@media (max-width: 860px) {
  .prysm-grid, .products-grid { grid-template-columns: 1fr; gap: 2rem; }
  .prysm-media { order: -1; }
  .prysm-media svg { width: min(72%, 280px); }
  .review-grid { grid-template-columns: 1fr; }
}
@media (max-width: 800px) {
  body:has(.cookie-banner.show) .wa-widget { bottom: 9.5rem; }
}

/* ==========================================================================
   Prysm device image + score panel + science note
   ========================================================================== */
.prysm-media img {
  width: 100%; max-width: 460px; aspect-ratio: 4/5; object-fit: cover;
  border-radius: var(--r-lg); box-shadow: var(--shadow-md); display: block; margin-inline: auto;
}

.prysm-score {
  margin-top: clamp(2rem, 4vw, 3.2rem);
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.5rem, 4vw, 3rem); align-items: center;
  background: linear-gradient(135deg, #2a1a1f, #15100e);
  border-radius: var(--r-lg); padding: clamp(1.6rem, 4vw, 2.6rem); box-shadow: var(--shadow-md);
}
.ps-media img { width: 100%; border-radius: var(--r-md); display: block; border: 1px solid rgba(255,255,255,.08); }
.ps-body h3 { color: var(--white); font-size: clamp(1.5rem, 1rem + 1.8vw, 2rem); margin-bottom: .6rem; }
.ps-body p { color: rgba(255,253,250,.86); }
.ps-body em { font-style: normal; color: var(--blush); font-weight: 600; }
.ps-disclaimer { margin-top: 1.1rem; font-size: .78rem; line-height: 1.5; color: rgba(255,253,250,.55) !important; }

.science-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.science-media img {
  width: 100%; max-width: 440px; border-radius: var(--r-lg); display: block; margin-inline: auto;
  background: var(--white); box-shadow: var(--shadow-sm); padding: 1rem;
}

@media (max-width: 860px) {
  .prysm-score, .science-grid { grid-template-columns: 1fr; }
}

/* ==========================================================================
   MASCED accreditation panel
   ========================================================================== */
.masced-inner {
  display: flex; align-items: center; gap: clamp(1.5rem, 4vw, 3rem);
  background: var(--blush-soft); border: 1px solid var(--line);
  border-radius: var(--r-lg); padding: clamp(1.6rem, 4vw, 2.6rem);
}
.masced-badge { flex: none; width: clamp(120px, 18vw, 170px); }
.masced-badge img { width: 100%; height: auto; display: block; }
.masced-text { flex: 1; min-width: 0; }
.masced-text h2 { margin-bottom: .6rem; }
.masced-text p:last-child { margin-bottom: 0; }
@media (max-width: 720px) {
  .masced-inner { flex-direction: column; text-align: center; }
  .masced-badge { width: 130px; }
}

/* ==========================================================================
   Professional membership strip (APC)
   ========================================================================== */
.memberships { padding-block: clamp(2rem, 1.5rem + 2vw, 3.2rem); }
.memberships-inner {
  display: flex; align-items: center; gap: clamp(1.4rem, 4vw, 2.6rem);
  max-width: 760px; margin-inline: auto;
}
.member-badge { flex: none; width: clamp(96px, 14vw, 130px); height: auto; }
.memberships-inner p { margin: 0; font-size: 1.05rem; color: var(--ink); }
@media (max-width: 600px) {
  .memberships-inner { flex-direction: column; text-align: center; }
}
