/* ===========================================================================
   Sharon Davis Therapy — "Embodied Light"
   Built to concept 01. Palette: warm ivory, dusty rose, muted lavender, soft
   gold. Type: Cormorant Garamond (display serif) + Inter (supporting).
   Layout: spacious sections, curved transitions between them.
   =========================================================================== */

:root {
  /* Ground — aged parchment, per the Embodied Light mockup. */
  --ivory:        #F4EFE4;   /* page ground */
  --ivory-deep:   #EBE2D1;   /* recessed bands */
  --shell:        #FBF8F1;   /* cards */
  --linen:        #EFE7D7;

  /* Accents. The mockup is warm brown + gold over parchment, with the
     spectrum reserved for the energy centres and the connection card. */
  --rose:         #C0A184;   /* warm tan — borders, soft rules */
  --rose-deep:    #8A6A45;   /* warm brown — eyebrows, links */
  --rose-wash:    #F1E8D8;
  --lavender:     #7B6BA0;
  --lavender-wash:#ECE7F1;
  --gold:         #C2A25C;
  --gold-soft:    #E0CB99;

  /* Ink — deep navy, the mockup's button and heading colour. */
  --navy:         #1B2440;
  --navy-hover:   #2A365C;
  --ink:          #212942;
  --ink-soft:     #4E5468;
  --ink-mute:     #8C8797;
  --hairline:     rgba(33, 41, 66, .14);

  /* The seven energy centres, root → crown. */
  --c-root:       #C8443C;
  --c-sacral:     #E2803C;
  --c-solar:      #E0A72E;
  --c-heart:      #4E9E63;
  --c-throat:     #3E8FC1;
  --c-brow:       #4A6FB5;
  --c-crown:      #7B5EA7;

  --wrap: 1140px;
  --gut: clamp(20px, 5vw, 40px);
  --r: 18px;

  --shadow-sm: 0 2px 10px rgba(33, 41, 66, .05);
  --shadow-md: 0 18px 46px -24px rgba(33, 41, 66, .26);

  --serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --prose: "EB Garamond", Georgia, "Times New Roman", serif;
  --sans:  "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

/* --- Reset ---------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
[hidden] { display: none !important; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  background-color: var(--ivory);
  background-image: url("/sharon-davis-therapy/assets/img/textures/parchment-light.webp");
  background-size: 480px auto;
  background-repeat: repeat;
  color: var(--ink-soft);
  font-family: var(--prose);
  font-size: 18.5px;
  line-height: 1.62;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: var(--rose-deep); }
button { font: inherit; }
h1, h2, h3, h4 {
  font-family: var(--serif);
  color: var(--ink);
  font-weight: 500;
  line-height: 1.14;
  letter-spacing: -.01em;
  margin: 0 0 .5em;
}
h1 { font-size: clamp(2.6rem, 6.2vw, 4.4rem); }
h2 { font-size: clamp(2rem, 4.2vw, 3rem); }
h3 { font-size: clamp(1.35rem, 2.2vw, 1.7rem); }
h4 { font-size: 1.12rem; font-family: var(--sans); font-weight: 600; letter-spacing: 0; }
p  { margin: 0 0 1.1em; }
p:last-child { margin-bottom: 0; }
:focus-visible { outline: 2px solid var(--rose-deep); outline-offset: 3px; border-radius: 4px; }

.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: var(--gut); }
.narrow { max-width: 760px; }
.center { text-align: center; }
.skip {
  position: absolute; left: -9999px; top: 0; background: var(--navy); color: var(--ivory);
  padding: 12px 18px; z-index: 200; border-radius: 0 0 8px 0;
}
.skip:focus { left: 0; }

/* --- Shared type helpers -------------------------------------------------- */
.eyebrow {
  font-family: var(--sans);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--rose-deep);
  margin: 0 0 1rem;
  display: block;
}
.lede { font-size: clamp(1.08rem, 1.6vw, 1.24rem); color: var(--ink-soft); }
.script { font-family: var(--serif); font-style: italic; font-weight: 400; }

/* "To be confirmed" — a real fact still needs to go here. Deliberately visible
   so nothing unverified ships to the live domain by accident. */
.tbc {
  color: var(--rose-deep);
  border-bottom: 1px dashed var(--gold);
  font-style: italic;
}

/* --- Buttons -------------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55em;
  font-family: var(--sans); font-size: .84rem; font-weight: 600;
  letter-spacing: .07em; text-transform: uppercase;
  padding: 1.05em 2em; border-radius: 999px; border: 1px solid transparent;
  text-decoration: none; cursor: pointer; transition: .22s ease;
}
.btn svg { width: 17px; height: 17px; flex: none; }
.btn-primary { background: var(--navy); color: #F6F2E8; }
.btn-primary:hover { background: var(--navy-hover); transform: translateY(-1px); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--hairline); }
.btn-ghost:hover { border-color: var(--navy); color: var(--navy); }
.btn-light { background: rgba(255,255,255,.92); color: var(--ink); }
.btn-light:hover { background: #fff; }
.btn-lg { padding: 1.2em 2.4em; font-size: .88rem; }

.textlink {
  display: inline-flex; align-items: center; gap: .5em;
  font-weight: 600; font-size: .93rem; color: var(--rose-deep); text-decoration: none;
}
.textlink svg { width: 15px; height: 15px; transition: transform .22s ease; }
.textlink:hover svg { transform: translateX(3px); }

/* --- Header --------------------------------------------------------------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(251, 247, 242, .9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--hairline);
}
.header-inner { display: flex; align-items: center; gap: 24px; min-height: 82px; }
.brand {
  display: flex; align-items: center; gap: 12px;
  text-decoration: none; margin-right: auto; line-height: 1.1;
}
.brand-mark { width: 42px; height: 42px; flex: none; }
.brand-text { display: flex; flex-direction: column; }
.brand-name { font-family: var(--serif); font-size: 1.5rem; color: var(--ink); letter-spacing: .01em; }
.brand-kicker {
  font-size: .58rem; letter-spacing: .22em; text-transform: uppercase;
  color: var(--ink-mute); font-weight: 600; margin-top: 4px;
}
.main-nav { display: flex; align-items: center; gap: 26px; }
.nav-link {
  font-size: .82rem; font-weight: 500; letter-spacing: .04em;
  color: var(--ink-soft); text-decoration: none; padding: 6px 0;
  border-bottom: 1px solid transparent; transition: .2s;
}
.nav-link:hover { color: var(--ink); border-bottom-color: var(--rose); }
.nav-link[aria-current="page"] { color: var(--ink); border-bottom-color: var(--gold); }
.nav-cta { margin-left: 6px; }
.hamburger {
  display: none; width: 42px; height: 42px; background: none;
  border: 1px solid rgba(33, 41, 66, .32);
  border-radius: 50%; cursor: pointer; padding: 0; position: relative;
}
.hamburger span {
  display: block; width: 17px; height: 2px; background: var(--navy);
  margin: 3.5px auto; transition: .2s; border-radius: 2px;
}

@media (max-width: 980px) {
  .hamburger { display: block; }
  .main-nav {
    position: fixed; inset: 82px 0 auto; flex-direction: column; align-items: stretch;
    gap: 0; background: var(--shell); padding: 8px var(--gut) 26px;
    border-bottom: 1px solid var(--hairline); box-shadow: var(--shadow-md);
    transform: translateY(-140%); transition: transform .28s ease; max-height: calc(100vh - 82px);
    overflow-y: auto;
  }
  .main-nav.open { transform: translateY(0); }
  .nav-link { padding: 15px 0; border-bottom: 1px solid var(--hairline); font-size: .95rem; }
  .nav-link:hover { border-bottom-color: var(--hairline); }
  .nav-cta { margin: 20px 0 0; }
}

/* --- Placeholder slots ---------------------------------------------------- */
/* Every image Jacob has not supplied yet renders as one of these: a neutral,
   labelled box at the right aspect. Never fill one with invented art. */
.ph {
  display: flex; align-items: center; justify-content: center; text-align: center;
  background:
    repeating-linear-gradient(135deg, rgba(59,51,64,.028) 0 12px, transparent 12px 24px),
    var(--ivory-deep);
  border: 1px dashed rgba(59, 51, 64, .26);
  border-radius: var(--r);
  color: var(--ink-mute);
  padding: 24px;
  min-height: 180px;
}
.ph__label {
  font-family: var(--sans); font-size: .66rem; font-weight: 600;
  letter-spacing: .16em; text-transform: uppercase; line-height: 1.7;
  max-width: 28ch;
}
.ph--hero { min-height: min(74vh, 620px); border-radius: 0; border: none;
  align-items: flex-start; justify-content: flex-end; padding: 22px 26px;
  background:
    repeating-linear-gradient(135deg, rgba(59,51,64,.03) 0 14px, transparent 14px 28px),
    linear-gradient(150deg, var(--rose-wash), var(--ivory-deep) 45%, var(--lavender-wash));
}
.ph--portrait { aspect-ratio: 4 / 5; min-height: 0; }
.ph--wide { aspect-ratio: 16 / 9; min-height: 0; }
.ph--square { aspect-ratio: 1 / 1; min-height: 0; }
.ph--tall { aspect-ratio: 3 / 4; min-height: 0; }

/* --- Sections & curved transitions --------------------------------------- */
.section { padding: clamp(64px, 9vw, 116px) 0; position: relative; }
.section--shell { background: var(--shell); }
.section--linen { background: var(--linen); }
.section--rose  { background: var(--rose-wash); }
.section--lav   { background: var(--lavender-wash); }

/* The gentle arc the concept calls for: the section lifts into the one above
   it on a wide, shallow curve. Pure CSS — no decorative artwork. */
.arc-top    { border-radius: 50% 50% 0 0 / clamp(28px, 5vw, 74px) clamp(28px, 5vw, 74px) 0 0; margin-top: clamp(-74px, -5vw, -28px); position: relative; z-index: 2; }
.arc-bottom { border-radius: 0 0 50% 50% / 0 0 clamp(28px, 5vw, 74px) clamp(28px, 5vw, 74px); margin-bottom: clamp(-74px, -5vw, -28px); position: relative; z-index: 2; }

.section-head { max-width: 720px; margin: 0 auto clamp(40px, 5vw, 64px); text-align: center; }
.section-head.left { margin-inline: 0; text-align: left; }
.rule { width: 46px; height: 1px; background: var(--gold); margin: 0 auto 26px; }
.section-head.left .rule { margin-inline: 0; }

/* --- Hero ----------------------------------------------------------------- */
.hero { position: relative; background: #F3EDDF; }
.hero-media { position: relative; }
.hero-media img { width: 100%; height: min(74vh, 620px); object-fit: cover; }
.hero-scrim {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(59,51,64,.52) 0%, rgba(59,51,64,.16) 46%, rgba(59,51,64,0) 72%);
  pointer-events: none;
}
.hero-copy {
  position: absolute; left: 0; right: 0; bottom: clamp(34px, 5vw, 68px);
}
.hero-copy .eyebrow { color: var(--gold-soft); }
.hero-copy h1 { color: #FFFCF9; max-width: 15ch; text-shadow: 0 2px 26px rgba(59,51,64,.34); }
.hero-sub {
  color: rgba(255, 252, 249, .93); max-width: 52ch; font-size: clamp(1.05rem, 1.7vw, 1.22rem);
  text-shadow: 0 1px 18px rgba(59,51,64,.4); margin-bottom: 2rem;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }
/* While the hero photo is a placeholder the copy needs dark text to stay legible. */
.hero--placeholder .hero-copy h1,
.hero--placeholder .hero-sub { color: var(--ink); text-shadow: none; }
.hero--placeholder .hero-copy .eyebrow { color: var(--rose-deep); }
.hero--placeholder .hero-scrim { display: none; }
.hero--placeholder .btn-light { background: var(--shell); border-color: var(--hairline); }

/* Embodied Light illustration hero: copy left, transparent art right. */
.hero--illustrated {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(24px, 4vw, 56px);
  align-items: center;
  padding: clamp(40px, 6vw, 72px) var(--gut);
  max-width: calc(var(--wrap) + var(--gut) * 2);
  margin-inline: auto;
  background-color: #F3EDDF;
  background-image:
    url("/sharon-davis-therapy/assets/img/textures/spectrum-wash-desktop.webp"),
    url("/sharon-davis-therapy/assets/img/textures/parchment-light.webp");
  background-size: cover, 480px auto;
  background-position: center, 0 0;
  background-repeat: no-repeat, repeat;
}
.hero--illustrated .hero-copy {
  position: static;
  order: 1;
}
.hero--illustrated .hero-copy .wrap { padding-inline: 0; max-width: none; }
.hero--illustrated .hero-copy .eyebrow { color: var(--rose-deep); }
.hero--illustrated .hero-copy h1 {
  color: var(--ink); max-width: 12ch; text-shadow: none;
}
.hero--illustrated .hero-sub {
  color: var(--ink-soft); text-shadow: none; max-width: 38ch;
}
.hero--illustrated .hero-media {
  order: 2;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}
.hero--illustrated .hero-scrim { display: none; }
.hero--illustrated .hero-art,
.hero--illustrated .hero-art img {
  width: 100%;
  max-width: 520px;
  height: auto;
  object-fit: contain;
}
.hero--illustrated .btn-light { background: var(--shell); border-color: var(--hairline); }
@media (max-width: 900px) {
  .hero--illustrated {
    grid-template-columns: 1fr;
    padding-block: clamp(32px, 6vw, 48px);
    background-image:
      url("/sharon-davis-therapy/assets/img/textures/spectrum-wash-mobile.webp"),
      url("/sharon-davis-therapy/assets/img/textures/parchment-light.webp");
  }
  .hero--illustrated .hero-copy { order: 1; }
  .hero--illustrated .hero-media { order: 2; }
  .hero--illustrated .hero-art,
  .hero--illustrated .hero-art img { max-width: 420px; }
}

/* Illustration cards / media (transparent WebP over parchment) */
.card-art {
  aspect-ratio: 1 / 1;
  margin: -8px -8px 18px;
  border-radius: calc(var(--r) - 4px);
  background: #F3EDDF;
  display: grid;
  place-items: center;
  overflow: hidden;
}
.card-art img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 10px;
}
.media--art {
  background: #F3EDDF;
  border-radius: var(--r);
  display: grid;
  place-items: center;
  overflow: hidden;
}
.media--art img {
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 0;
}
.media--art.ph--tall { aspect-ratio: 3 / 4; }
.media--art.ph--portrait { aspect-ratio: 4 / 5; }
.media--art.ph--wide { aspect-ratio: 16 / 9; }
.media--art.ph--square { aspect-ratio: 1 / 1; }

.el-icon {
  width: 56px; height: 56px; margin-bottom: 18px;
  display: grid; place-items: center;
}
.el-icon img { width: 48px; height: 48px; }

.page-hero { padding: clamp(56px, 7vw, 92px) 0 clamp(40px, 5vw, 64px); background: var(--ivory-deep); }
.page-hero h1 { max-width: 18ch; }
.page-hero .lede { max-width: 60ch; }

/* --- Trust strip ---------------------------------------------------------- */
.trust {
  background: var(--ink); color: rgba(255, 252, 249, .88);
  padding: 22px 0; font-size: .82rem;
}
.trust-inner { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px 38px; }
.trust-item { display: flex; align-items: center; gap: .6em; letter-spacing: .02em; }
.trust-item svg { width: 15px; height: 15px; color: var(--gold-soft); flex: none; }

/* --- Grids & cards -------------------------------------------------------- */
.grid { display: grid; gap: clamp(20px, 2.6vw, 30px); }
.grid > *, .split > *, .split-aside > * { min-width: 0; }
.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: 900px) { .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; } }

.card {
  background: var(--shell); border: 1px solid var(--hairline); border-radius: var(--r);
  padding: clamp(26px, 3vw, 36px); box-shadow: var(--shadow-sm);
  transition: .24s ease;
}
.card p:last-child { margin-bottom: 0; }
.card--link:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: rgba(192,138,131,.42); }
.card-icon {
  width: 46px; height: 46px; border-radius: 50%; display: grid; place-items: center;
  background: var(--rose-wash); color: var(--rose-deep); margin-bottom: 20px;
}
.card-icon svg { width: 21px; height: 21px; }
.card-icon.lav { background: var(--lavender-wash); color: var(--lavender); }
.card-icon.gold { background: #F6EEDC; color: #A8873F; }
.card h3, .card h4 { margin-bottom: .5em; }
.card-num {
  font-family: var(--serif); font-size: 2.4rem; color: var(--gold);
  line-height: 1; margin-bottom: 14px;
}

/* --- Split (media + copy) ------------------------------------------------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(30px, 5vw, 72px); align-items: center; }
.split--narrow-media { grid-template-columns: .85fr 1fr; }
.split img { border-radius: var(--r); }
@media (max-width: 860px) {
  .split, .split--narrow-media { grid-template-columns: 1fr; }
  .split .media { order: -1; }
}

/* --- Pill list ------------------------------------------------------------ */
.pills { display: flex; flex-wrap: wrap; gap: 10px; padding: 0; margin: 0; list-style: none; }
.pills li {
  background: var(--shell); border: 1px solid var(--hairline); border-radius: 999px;
  padding: .62em 1.15em; font-size: .88rem; color: var(--ink);
}

.ticks { list-style: none; padding: 0; margin: 0; display: grid; gap: 14px; }
.ticks li { display: flex; gap: .8em; align-items: flex-start; }
.ticks svg { width: 17px; height: 17px; color: var(--gold); flex: none; margin-top: 5px; }

/* --- Quote / pull --------------------------------------------------------- */
.pull {
  font-family: var(--serif); font-size: clamp(1.5rem, 3vw, 2.15rem); line-height: 1.4;
  color: var(--ink); font-style: italic; max-width: 24ch; margin: 0;
}

/* --- Accordion (FAQs) ----------------------------------------------------- */
.faq { border-top: 1px solid var(--hairline); }
.faq details { border-bottom: 1px solid var(--hairline); }
.faq summary {
  cursor: pointer; list-style: none; padding: 26px 44px 26px 0; position: relative;
  font-family: var(--serif); font-size: clamp(1.15rem, 1.9vw, 1.4rem); color: var(--ink);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: ""; position: absolute; right: 8px; top: 50%; width: 10px; height: 10px;
  border-right: 1.5px solid var(--rose-deep); border-bottom: 1.5px solid var(--rose-deep);
  transform: translateY(-70%) rotate(45deg); transition: transform .22s ease;
}
.faq details[open] summary::after { transform: translateY(-30%) rotate(-135deg); }
.faq .faq-body { padding: 0 44px 28px 0; max-width: 68ch; }

/* --- Body map / energy list ---------------------------------------------- */
.region-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 2px; }
.region-list li {
  display: grid; grid-template-columns: 150px 1fr; gap: 20px; align-items: baseline;
  padding: 20px 0; border-bottom: 1px solid var(--hairline);
}
.region-list li:first-child { border-top: 1px solid var(--hairline); }
.region-name { font-family: var(--serif); font-size: 1.28rem; color: var(--ink); }
@media (max-width: 620px) { .region-list li { grid-template-columns: 1fr; gap: 6px; } }

/* --- Form ----------------------------------------------------------------- */
.form-shell {
  background: var(--shell); border: 1px solid var(--hairline); border-radius: var(--r);
  padding: clamp(26px, 4vw, 46px); box-shadow: var(--shadow-md);
}
.steps { display: flex; gap: 8px; margin-bottom: 32px; }
.step-dot { flex: 1; height: 3px; border-radius: 3px; background: var(--linen); transition: .3s; }
.step-dot.on { background: var(--rose); }
.step-label {
  font-size: .7rem; font-weight: 600; letter-spacing: .16em; text-transform: uppercase;
  color: var(--ink-mute); margin-bottom: 10px;
}
.fieldset { border: 0; margin: 0; padding: 0; }
.fieldset[hidden] { display: none; }
.field { margin-bottom: 20px; }
.field label { display: block; font-size: .82rem; font-weight: 600; color: var(--ink); margin-bottom: 8px; }
.field .hint { font-weight: 400; color: var(--ink-mute); }
.field input, .field select, .field textarea {
  width: 100%; padding: .92em 1.05em; font: inherit; font-size: .96rem; color: var(--ink);
  background: var(--ivory); border: 1px solid var(--hairline); border-radius: 10px;
  transition: .2s;
}
.field textarea { min-height: 130px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--rose); background: #fff;
  box-shadow: 0 0 0 3px rgba(192, 138, 131, .16);
}
.field.err input, .field.err select, .field.err textarea { border-color: #B4564C; }
.err-msg { display: none; color: #B4564C; font-size: .8rem; margin-top: 6px; }
.field.err .err-msg { display: block; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
@media (max-width: 620px) { .field-row { grid-template-columns: 1fr; } }

.choices { display: grid; gap: 10px; grid-template-columns: repeat(2, 1fr); }
@media (max-width: 620px) { .choices { grid-template-columns: 1fr; } }
.choice { position: relative; }
.choice input { position: absolute; inset: 0; width: 100%; height: 100%; opacity: 0; pointer-events: none; margin: 0; }
.choice span {
  display: block; padding: .85em 1.1em; border: 1px solid var(--hairline);
  border-radius: 10px; font-size: .92rem; cursor: pointer; transition: .18s; background: var(--ivory);
}
.choice input:checked + span { border-color: var(--rose); background: var(--rose-wash); color: var(--ink); font-weight: 500; }
.choice input:focus-visible + span { outline: 2px solid var(--rose-deep); outline-offset: 2px; }

.form-actions { display: flex; gap: 12px; margin-top: 30px; flex-wrap: wrap; }
.form-note { font-size: .82rem; color: var(--ink-mute); margin-top: 20px; }
.form-success { text-align: center; padding: 20px 0; }
.form-success .card-icon { margin-inline: auto; }

/* Demo-only banner on anything that would need a backend to be real. */
.demo-note {
  display: flex; gap: .7em; align-items: flex-start;
  background: #F6EEDC; border: 1px solid var(--gold-soft); border-radius: 10px;
  padding: 14px 16px; font-size: .82rem; color: #7A6427; margin-bottom: 26px;
}
.demo-note svg { width: 16px; height: 16px; flex: none; margin-top: 3px; }

/* --- CTA band ------------------------------------------------------------- */
.cta-band { background: var(--navy); color: rgba(255, 252, 249, .84); text-align: center; }
.cta-band h2 { color: #FFFCF9; }
.cta-band .lede { color: rgba(255, 252, 249, .8); max-width: 54ch; margin-inline: auto; }
.cta-band .rule { background: var(--gold); }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-top: 34px; }

/* --- Footer --------------------------------------------------------------- */
.site-footer { background: var(--ivory-deep); padding: clamp(50px, 6vw, 76px) 0 34px; font-size: .9rem; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 40px; }
@media (max-width: 800px) { .footer-grid { grid-template-columns: 1fr; gap: 32px; } }
.footer-grid h4 {
  font-size: .7rem; letter-spacing: .16em; text-transform: uppercase;
  color: var(--ink-mute); margin-bottom: 16px;
}
.footer-links { list-style: none; margin: 0; padding: 0; display: grid; gap: 11px; }
.footer-links a { color: var(--ink-soft); text-decoration: none; overflow-wrap: anywhere; }
.footer-links a:hover { color: var(--rose-deep); }
.footer-bottom {
  margin-top: 44px; padding-top: 24px; border-top: 1px solid var(--hairline);
  display: flex; flex-wrap: wrap; gap: 12px 26px; justify-content: space-between;
  font-size: .8rem; color: var(--ink-mute);
}
.crisis {
  background: var(--shell); border: 1px solid var(--hairline); border-left: 3px solid var(--rose);
  border-radius: 10px; padding: 16px 18px; font-size: .84rem; color: var(--ink-soft);
}

/* --- Reveal --------------------------------------------------------------- */
.js [data-reveal] { opacity: 0; transform: translateY(16px); transition: opacity .7s ease, transform .7s ease; }
.js [data-reveal].in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  .js [data-reveal] { opacity: 1; transform: none; }
}

/* --- Form page: form + sidebar ------------------------------------------- */
.split-aside { display: grid; grid-template-columns: 1.25fr .75fr; gap: clamp(30px, 4vw, 56px); align-items: start; }
@media (max-width: 900px) { .split-aside { grid-template-columns: 1fr; } }
.split-aside aside { display: grid; gap: 22px; }
.split-aside .footer-links li { display: flex; align-items: center; gap: .6em; }
.split-aside .footer-links svg { width: 15px; height: 15px; color: var(--rose-deep); flex: none; }

/* ===========================================================================
   HOMEPAGE — built to the Embodied Light mockup, section for section.
   Parchment ground, navy ink, gold hairlines, the spectrum reserved for the
   energy centres and the connection card.
   =========================================================================== */

/* --- Hero: copy left, the figure right with its centres labelled ---------- */
.hero-mock {
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  background: linear-gradient(180deg, rgba(251,248,241,.5), rgba(235,226,209,.45));
  padding: clamp(34px, 4.5vw, 60px) 0 0;
}
.hero-mock .wrap {
  display: grid; grid-template-columns: 1fr 1.05fr auto;
  gap: clamp(20px, 3vw, 44px); align-items: center;
}
.hero-mock h1 {
  font-size: clamp(2.6rem, 5.4vw, 4.1rem);
  font-weight: 400; line-height: 1.08; max-width: 11ch; margin-bottom: 0;
}
.hero-rule { width: 74px; height: 1px; background: var(--gold); margin: 1.7rem 0; }
.hero-mock .hero-lede {
  font-family: var(--prose); font-size: clamp(1.05rem, 1.5vw, 1.18rem);
  color: var(--ink-soft); max-width: 32ch; margin-bottom: 2rem;
}
.hero-figure { position: relative; display: flex; justify-content: center; align-items: flex-end; }
.hero-figure img { width: 100%; max-width: 470px; height: auto; }

/* The annotation that points into the figure from the left. */
.hero-note {
  position: absolute; left: 0; top: 34%; max-width: 11ch;
  font-family: var(--prose); font-size: .78rem; font-style: italic;
  line-height: 1.45; color: var(--ink-mute); text-align: right;
}
.hero-note::after {
  content: ""; position: absolute; right: -30px; top: 50%;
  width: 26px; height: 1px; background: var(--hairline);
}

/* Root → crown, read down the right-hand side of the figure. */
.centres { list-style: none; margin: 0; padding: 0; display: grid; gap: clamp(10px, 1.5vw, 20px); }
.centres li { display: grid; grid-template-columns: 16px 1fr; gap: 12px; align-items: baseline; }
.centres .tick { height: 1px; background: currentColor; margin-top: .62em; opacity: .8; }
.centres .cname {
  display: block; font-family: var(--serif); font-size: 1.02rem; color: var(--ink); line-height: 1.2;
}
.centres .cmeaning { display: block; font-size: .78rem; color: var(--ink-mute); font-family: var(--sans); }
.centres li:nth-child(1) { color: var(--c-crown); }
.centres li:nth-child(2) { color: var(--c-brow); }
.centres li:nth-child(3) { color: var(--c-throat); }
.centres li:nth-child(4) { color: var(--c-heart); }
.centres li:nth-child(5) { color: var(--c-solar); }
.centres li:nth-child(6) { color: var(--c-sacral); }
.centres li:nth-child(7) { color: var(--c-root); }

.hero-ground {
  height: clamp(26px, 4vw, 54px);
  background: radial-gradient(70% 100% at 50% 0%, rgba(138,106,69,.20), transparent 72%);
  border-top: 1px solid rgba(138,106,69,.22);
}

@media (max-width: 1080px) {
  .hero-mock .wrap { grid-template-columns: 1fr 1fr; }
  .centres { grid-column: 1 / -1; grid-template-columns: repeat(4, 1fr); margin-top: 8px; }
}
@media (max-width: 940px) {
  .hero-mock .wrap { grid-template-columns: 1fr; }
  .hero-copy-col { order: 1; }
  .hero-figure { order: 2; }
  .centres { order: 3; grid-template-columns: 1fr 1fr; margin-top: 20px; }
  .hero-note { display: none; }
  .hero-figure img { max-width: 340px; }
}
@media (max-width: 520px) { .centres { grid-template-columns: 1fr; } }

/* --- Centred heading with the mockup's flourish rules -------------------- */
.flourish { text-align: center; margin: 0 auto clamp(30px, 4vw, 46px); max-width: 760px; }
.flourish h2 { font-weight: 400; margin-bottom: .35em; }
.flourish .sub {
  font-family: var(--sans); font-size: .74rem; letter-spacing: .16em;
  text-transform: uppercase; color: var(--ink-mute);
}
.flourish .flourish-rule {
  display: flex; align-items: center; justify-content: center; gap: 14px;
  margin-bottom: 1rem; color: var(--gold);
}
.flourish .flourish-rule::before, .flourish .flourish-rule::after {
  content: ""; height: 1px; width: clamp(40px, 12vw, 130px);
  background: linear-gradient(90deg, transparent, var(--gold));
}
.flourish .flourish-rule::after { background: linear-gradient(90deg, var(--gold), transparent); }

/* --- Framework cards ----------------------------------------------------- */
.frame-card { text-align: center; background: rgba(251,248,241,.62); padding-inline: clamp(16px, 1.6vw, 22px); }
.frame-card h3 { font-weight: 400; font-size: clamp(1.25rem, 2vw, 1.5rem); margin-bottom: 1rem; }
.frame-card .art { margin: 0 0 1.1rem; }
.frame-card .art img { width: 100%; height: auto; }
.frame-card p { font-size: .96rem; color: var(--ink-soft); max-width: 30ch; margin-inline: auto; }

/* --- Psychology / Spirituality ------------------------------------------- */
.intersect { display: grid; grid-template-columns: 1.7fr .9fr; gap: clamp(24px, 3vw, 40px); align-items: start; }
.intersect-panel {
  background: rgba(251,248,241,.62); border: 1px solid var(--hairline);
  border-radius: var(--r); padding: clamp(24px, 3vw, 38px);
}
.intersect-panel h2 { font-weight: 400; margin-bottom: clamp(18px, 2.5vw, 28px); max-width: 16ch; }
.intersect-split { display: grid; grid-template-columns: 1fr 1.35fr 1fr; gap: clamp(14px, 2vw, 26px); align-items: center; }
.intersect-split .art img { width: 100%; height: auto; }
.col-head { font-family: var(--serif); font-size: 1.3rem; color: var(--ink); margin-bottom: .3rem; }
.col-sub { font-size: .88rem; color: var(--rose-deep); font-style: italic; margin-bottom: .7rem; }
.intersect-split p { font-size: .9rem; }

/* The connection card: the mockup's spectrum panel. */
.connection {
  border-radius: var(--r); border: 1px solid var(--hairline); overflow: hidden;
  background-color: #F3EDDF;
  background-image:
    linear-gradient(rgba(251,248,241,.62), rgba(251,248,241,.62)),
    url("/sharon-davis-therapy/assets/img/textures/spectrum-wash-desktop.webp");
  background-size: cover, cover; background-position: center, center;
  padding: clamp(24px, 3vw, 34px);
}
.connection h3 { font-weight: 400; font-size: clamp(1.4rem, 2.2vw, 1.75rem); margin-bottom: 1.1rem; }
.connection .art img { width: 100%; height: auto; margin-bottom: .6rem; }
.connection ul { list-style: none; margin: 0 0 1.2rem; padding: 0; display: grid; gap: .55rem; }
.connection li {
  display: flex; align-items: center; gap: .7em;
  font-family: var(--serif); font-size: 1.2rem; color: var(--ink);
}
.connection li::before {
  content: ""; width: 9px; height: 9px; border-radius: 50%; flex: none;
  background: var(--dot); box-shadow: 0 0 0 3px rgba(255,255,255,.62);
}
.connection li:nth-child(1) { --dot: var(--c-crown); }
.connection li:nth-child(2) { --dot: var(--c-brow); }
.connection li:nth-child(3) { --dot: var(--c-throat); }
.connection li:nth-child(4) { --dot: var(--c-heart); }
.connection li:nth-child(5) { --dot: var(--c-solar); }
.connection li:nth-child(6) { --dot: var(--c-sacral); }
.connection .note {
  font-size: .95rem; font-style: italic; color: var(--ink);
  border-top: 1px solid rgba(33,41,66,.2); padding-top: .9rem; margin: 0;
}
@media (max-width: 900px) { .intersect { grid-template-columns: 1fr; } .intersect-split { grid-template-columns: 1fr; } }

/* --- Bringing the hidden into awareness ---------------------------------- */
.hidden-band { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(24px, 4vw, 54px); align-items: center; }
.hidden-band h2 { font-weight: 400; max-width: 14ch; }
.hidden-band .art img { width: 100%; height: auto; }
@media (max-width: 860px) { .hidden-band { grid-template-columns: 1fr; } }

/* --- The four elements ---------------------------------------------------- */
.element { background: rgba(251,248,241,.62); text-align: left; align-self: start; }
.element .art {
  margin: 0 0 1rem;
  border-radius: calc(var(--r) - 4px);
  overflow: hidden;
  background: #0a0a0a;
  aspect-ratio: 3 / 2;
}
.element .art img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.element .el-head { display: flex; align-items: center; gap: .6em; margin-bottom: .55rem; }
.element .el-name { font-family: var(--serif); font-size: 1.2rem; color: var(--ink); line-height: 1.2; }
.element .el-name b { font-weight: 400; }
.element p { font-size: .92rem; margin: 0; }
.element:nth-child(1) .el-name b { color: #9A6A45; }
.element:nth-child(2) .el-name b { color: #3E8FC1; }
.element:nth-child(3) .el-name b { color: #E2803C; }
.element:nth-child(4) .el-name b { color: #7B8FA8; }

/* --- Breath regulates ---------------------------------------------------- */
.breath-band { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: clamp(20px, 3vw, 44px); align-items: center; }
.breath-band h2 { font-weight: 400; font-size: clamp(1.7rem, 3vw, 2.3rem); }
.breath-band .art img { width: 100%; height: auto; }
.gesture { font-family: var(--prose); }
.gesture .gesture-label {
  font-family: var(--sans); font-size: .72rem; letter-spacing: .16em;
  text-transform: uppercase; color: var(--ink-mute); margin-bottom: .7rem;
}
.gesture ol { list-style: none; margin: 0; padding: 0; display: grid; gap: .4rem; }
.gesture li { font-family: var(--serif); font-size: 1.2rem; color: var(--ink); }
@media (max-width: 860px) { .breath-band { grid-template-columns: 1fr; text-align: center; } .breath-band .art { order: -1; } }

/* --- Licence band -------------------------------------------------------- */
.license {
  position: relative;
  text-align: center;
  padding: clamp(56px, 7vw, 96px) 0 clamp(72px, 9vw, 120px);
  border-top: 1px solid var(--hairline);
  overflow: hidden;
}
.license .wrap { position: relative; z-index: 1; }
.license-deco {
  position: absolute;
  bottom: 0;
  width: clamp(180px, 28vw, 360px);
  height: auto;
  pointer-events: none;
  user-select: none;
  mix-blend-mode: multiply;
  opacity: .92;
}
.license-deco--left { left: 0; transform-origin: bottom left; }
.license-deco--right { right: 0; transform-origin: bottom right; }
@media (max-width: 720px) {
  .license-deco { width: clamp(120px, 42vw, 200px); opacity: .7; }
}
.license .flourish-rule {
  display: flex; align-items: center; justify-content: center; gap: 16px;
  color: var(--gold); margin-bottom: .4rem;
}
.license .flourish-rule::before, .license .flourish-rule::after {
  content: ""; height: 1px; width: clamp(50px, 16vw, 180px);
  background: linear-gradient(90deg, transparent, var(--gold));
}
.license .flourish-rule::after { background: linear-gradient(90deg, var(--gold), transparent); }
.license .lic-title { font-family: var(--serif); font-size: clamp(1.2rem, 2.2vw, 1.5rem); color: var(--ink); }
.license .lic-no {
  font-family: var(--sans); font-size: .74rem; letter-spacing: .18em;
  text-transform: uppercase; color: var(--ink-mute); margin: .5rem 0 1.9rem;
}

/* Header lockup replaces the old two-line wordmark. */
.brand-lockup { width: clamp(190px, 20vw, 250px); height: auto; }
.hero-mock .hero-copy-col { align-self: center; }
