:root {
  --ivory: #EEE1F1;
  --paper: #fffdf9;
  --rose: #ead8d4;
  --rose-soft: #f3e6e2;
  --sage: #d8e1d8;
  --sage-deep: #718276;
  --clay: #b67869;
  --mauve: #AD89B9;
  --mauve-dark: #74547E;
  --process-wash: #DFE8E2;
  --ink: #302a30;
  --ink-soft: #665d63;
  --line: rgba(72, 57, 65, 0.14);
  --line-strong: rgba(72, 57, 65, 0.22);
  --serif: "Fraunces", Georgia, serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --max-width: 1180px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; scroll-padding-top: 96px; }

body {
  position: relative;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--ivory);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; }
a { color: inherit; text-decoration: none; }
p { color: var(--ink-soft); }

h1, h2, h3, h4 {
  color: var(--ink);
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.025em;
}

h1 { font-size: clamp(3rem, 6vw, 5.55rem); }
h2 { font-size: clamp(2.35rem, 4.3vw, 4.15rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.65rem); line-height: 1.2; }
.h3 { font-size: clamp(1.25rem, 2vw, 1.65rem); line-height: 1.2; }

:focus-visible { outline: 3px solid rgba(173, 137, 185, 0.45); outline-offset: 4px; }

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 0.7rem 1rem;
  transform: translateY(-160%);
  border-radius: 8px;
  background: var(--ink);
  color: white;
  font-weight: 600;
}

.skip-link:focus { transform: none; }

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding-inline: clamp(1.25rem, 4vw, 2.5rem);
}

.section { position: relative; padding: clamp(5rem, 9vw, 8.5rem) 0; }
.section--compact { padding-top: clamp(5rem, 7vw, 7rem); }
.home-disclosure__summary { display: none; }

.eyebrow {
  margin-bottom: 1rem;
  color: var(--mauve-dark);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.section__head { max-width: 760px; margin-bottom: clamp(2.5rem, 5vw, 4.5rem); }
.section__head h2 { max-width: 700px; }
.section__head > p:last-child { max-width: 650px; margin-top: 1.25rem; font-size: 1.08rem; }
.section__head--ages { margin-bottom: 2rem; }
.ages__prompt { max-width: 720px; margin: 0 auto clamp(2.2rem, 4vw, 3.2rem); color: var(--ink); font-family: var(--serif); font-size: clamp(1.2rem, 2vw, 1.55rem); line-height: 1.45; text-align: center; }

/* Soft ambient colour, kept deliberately restrained. */
.bloom-bg { position: fixed; inset: 0; z-index: -1; overflow: hidden; pointer-events: none; }
.blob { position: absolute; border-radius: 50%; filter: blur(90px); opacity: 0.3; animation: drift 34s var(--ease) infinite alternate; }
.blob--1 { width: 54vw; height: 54vw; top: -20vw; left: -18vw; background: var(--rose); }
.blob--2 { width: 42vw; height: 42vw; top: 28%; right: -20vw; background: var(--mauve); animation-delay: -9s; animation-duration: 42s; }
.blob--3 { width: 46vw; height: 46vw; bottom: -22vw; left: 12vw; background: var(--sage); animation-delay: -16s; animation-duration: 48s; }

@keyframes drift {
  from { transform: translate3d(0, 0, 0) scale(0.96); }
  to { transform: translate3d(5vw, -3vw, 0) scale(1.08); }
}

/* Navigation */
.nav { position: fixed; inset: 0 0 auto; z-index: 100; border-bottom: 1px solid transparent; transition: background 0.35s, border-color 0.35s, box-shadow 0.35s; }
.nav.scrolled { border-bottom-color: var(--line); background: rgba(238, 225, 241, 0.92); box-shadow: 0 12px 36px rgba(61, 45, 54, 0.04); backdrop-filter: blur(18px); }
.nav__inner { display: flex; align-items: center; justify-content: space-between; min-height: 94px; }
.nav__brand { display: flex; flex-direction: column; gap: 0.08rem; line-height: 1; }
.nav__brand-name { font-family: var(--serif); font-size: 1.42rem; letter-spacing: -0.02em; }
.nav__brand-role { color: var(--mauve-dark); font-size: 0.58rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; }
.nav__links { display: flex; align-items: center; gap: 1.75rem; }
.nav__links a { font-size: 0.9rem; font-weight: 500; transition: color 0.25s, transform 0.25s, background 0.25s; }
.nav__links a:not(.nav__cta):hover { color: var(--mauve-dark); }
.nav__cta { padding: 0.72rem 1.2rem; border-radius: 999px; background: var(--mauve); color: var(--ink) !important; }
.nav__cta:hover { transform: translateY(-2px); background: var(--ink); color: #fff !important; }
.nav__toggle { display: none; flex-direction: column; gap: 5px; padding: 8px; border: 0; background: transparent; cursor: pointer; }
.nav__toggle span { display: block; width: 25px; height: 2px; border-radius: 2px; background: var(--ink); transition: transform 0.3s, opacity 0.3s; }

/* Hero */
.hero { position: relative; display: flex; align-items: center; min-height: 94svh; padding: 138px 0 96px; }
.hero__grid { display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr); gap: clamp(3rem, 7vw, 7rem); align-items: center; }
.hero__copy { max-width: 740px; }
.hero__eyebrow { opacity: 0; animation: enter 0.8s var(--ease) 0.05s forwards; }
.hero h1 { max-width: 760px; opacity: 0; animation: enter 0.95s var(--ease) 0.15s forwards; }
.hero__lead { max-width: 650px; margin-top: 1.75rem; font-size: clamp(1.08rem, 1.5vw, 1.25rem); opacity: 0; animation: enter 0.9s var(--ease) 0.3s forwards; }
.hero__actions { display: flex; flex-wrap: wrap; align-items: center; gap: 1.6rem; margin-top: 2.4rem; opacity: 0; animation: enter 0.9s var(--ease) 0.42s forwards; }

.hero__note {
  position: relative;
  padding: clamp(2rem, 4vw, 3.5rem);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: 46% 46% 28px 28px;
  background: rgba(255, 253, 249, 0.72);
  box-shadow: 0 36px 80px -50px rgba(67, 47, 58, 0.42);
  text-align: center;
  backdrop-filter: blur(16px);
  opacity: 0;
  animation: enter 1s var(--ease) 0.3s forwards;
}

.hero__note::before { content: ""; position: absolute; inset: 14px; border: 1px solid rgba(173, 137, 185, 0.18); border-radius: inherit; pointer-events: none; }
.hero__logo { display: block; width: min(100%, 270px); margin: -2rem auto -0.8rem; }
.hero__note blockquote { position: relative; max-width: 330px; margin: 0 auto; font-family: var(--serif); font-size: clamp(1.3rem, 2.1vw, 1.72rem); font-style: italic; line-height: 1.45; }
.hero__note p { position: relative; margin-top: 1.8rem; padding-top: 1.2rem; border-top: 1px solid var(--line); font-size: 0.78rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; }
.hero__scroll { position: absolute; bottom: 28px; left: 50%; width: 26px; height: 42px; transform: translateX(-50%); border: 1px solid var(--mauve); border-radius: 18px; opacity: 0.55; }
.hero__scroll span { position: absolute; top: 9px; left: 50%; width: 4px; height: 7px; transform: translateX(-50%); border-radius: 4px; background: var(--mauve); animation: scroll-cue 2s infinite; }

@keyframes enter { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: none; } }
@keyframes scroll-cue { 0% { opacity: 0; transform: translate(-50%, -2px); } 40% { opacity: 1; } 80%, 100% { opacity: 0; transform: translate(-50%, 10px); } }

.btn { display: inline-flex; align-items: center; justify-content: center; min-height: 54px; padding: 0.9rem 1.55rem; border: 1px solid transparent; border-radius: 999px; font: 500 0.94rem/1.2 var(--sans); cursor: pointer; transition: transform 0.3s var(--ease), box-shadow 0.3s, background 0.3s; }
.btn--primary { background: var(--mauve); color: var(--ink); box-shadow: 0 18px 34px -20px rgba(116, 84, 126, 0.8); }
.btn--primary:hover { transform: translateY(-3px); background: var(--ink); color: #fff; box-shadow: 0 24px 40px -20px rgba(48, 42, 48, 0.72); }
.btn--full { width: 100%; }
.text-link { display: inline-flex; align-items: center; gap: 0.5rem; color: var(--mauve-dark); font-size: 0.94rem; font-weight: 600; }
.text-link span { transition: transform 0.25s; }
.text-link:hover span { transform: translateX(5px); }

/* Trust */
.trust { border-block: 1px solid var(--line); background: rgba(255, 253, 249, 0.6); }
.trust__grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.trust__item { display: flex; flex-direction: column; justify-content: center; min-height: 134px; padding: 1.5rem 2rem; border-left: 1px solid var(--line); }
.trust__item:last-child { border-right: 1px solid var(--line); }
.trust__item strong { color: var(--ink); font-family: var(--serif); font-size: 1.2rem; font-weight: 500; line-height: 1.25; }
.trust__item span { margin-top: 0.35rem; color: var(--ink-soft); font-size: 0.77rem; line-height: 1.5; }

/* Service pathways */
.ages__grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 1.15rem; }
.age-card { grid-column: span 4; display: flex; flex-direction: column; min-height: 310px; padding: 1.9rem; border: 1px solid var(--line); border-radius: 20px; background: rgba(255, 253, 249, 0.72); transition: transform 0.4s var(--ease), border-color 0.3s, box-shadow 0.4s, background 0.3s; }
.age-card:nth-child(4), .age-card:nth-child(5) { grid-column: span 6; }
.age-card:hover { transform: translateY(-7px); border-color: rgba(173, 137, 185, 0.42); background: var(--paper); box-shadow: 0 28px 58px -38px rgba(70, 50, 61, 0.44); }
.age-card__top { display: flex; align-items: center; justify-content: space-between; margin-bottom: auto; }
.age-card__index { color: var(--mauve-dark); font-family: var(--serif); font-size: 1.05rem; }
.age-card__arrow { display: grid; width: 38px; height: 38px; place-items: center; border: 1px solid var(--line); border-radius: 50%; color: var(--mauve-dark); transition: transform 0.3s, background 0.3s; }
.age-card:hover .age-card__arrow { transform: translate(2px, -2px); background: var(--rose-soft); }
.age-card__ages { margin-top: 2.4rem; color: var(--mauve-dark); font-size: 0.68rem; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; }
.age-card h3 { margin: 0.45rem 0 0.8rem; }
.age-card > p:last-of-type { font-size: 0.93rem; }
.age-card__more { margin-top: 1.2rem; color: var(--ink); font-size: 0.82rem; font-weight: 600; }

/* Process */
.process { background: var(--process-wash); }
.process__inner { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: clamp(3rem, 8vw, 8rem); align-items: start; }
.process__intro { position: sticky; top: 140px; }
.process__intro p:last-child { margin-top: 1.4rem; font-size: 1.06rem; }
.process__steps { list-style: none; border-top: 1px solid var(--line-strong); }
.process__step { display: grid; grid-template-columns: 72px 1fr; gap: 1.25rem; padding: 2rem 0; border-bottom: 1px solid var(--line-strong); }
.process__number { color: var(--mauve-dark); font-family: var(--serif); font-size: 1.1rem; }
.process__step h3 { margin-bottom: 0.55rem; }
.process__step p { max-width: 570px; font-size: 0.95rem; }

/* About */
.about__wrap { display: grid; grid-template-columns: 0.78fr 1.22fr; gap: clamp(3rem, 8vw, 7rem); align-items: center; max-width: 1040px; margin: 0 auto; padding: clamp(2rem, 5vw, 4.5rem); border: 1px solid rgba(255, 255, 255, 0.84); border-radius: 28px; background: rgba(255, 253, 249, 0.66); box-shadow: 0 34px 80px -58px rgba(60, 45, 54, 0.52); backdrop-filter: blur(12px); }
.about__portrait-frame { text-align: center; }
.about__portrait { width: min(100%, 250px); aspect-ratio: 3 / 4; margin: 0 auto; overflow: hidden; border: 10px solid rgba(255, 253, 249, 0.92); border-radius: 48% 48% 22px 22px; background: var(--rose-soft); box-shadow: 0 24px 50px -34px rgba(54, 42, 48, 0.72); }
.about__portrait img { display: block; width: 100%; height: 100%; object-fit: cover; object-position: center 15%; }
.about__portrait-frame > p { max-width: 260px; margin: 1rem auto 0; color: var(--mauve-dark); font-size: 0.67rem; font-weight: 600; letter-spacing: 0.12em; line-height: 1.5; text-transform: uppercase; }
.about__text h2 { max-width: 620px; margin-bottom: 1.35rem; }
.about__text > p { margin-bottom: 1rem; }
.about__lead { color: var(--ink); font-size: 1.08rem; }
.qualification { display: flex; flex-direction: column; margin-top: 1.65rem; padding-top: 1.35rem; border-top: 1px solid var(--line); }
.qualification span { margin-bottom: 0.25rem; color: var(--mauve-dark); font-size: 0.68rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; }
.qualification strong { color: var(--ink); font-size: 0.92rem; font-weight: 500; }

/* Therapy */
.therapy { padding-top: clamp(3rem, 6vw, 6rem); }
.therapy__grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(3rem, 9vw, 9rem); align-items: start; padding-block: clamp(2.5rem, 5vw, 5rem); border-block: 1px solid var(--line); }
.therapy__body { max-width: 620px; }
.therapy__body p + p { margin-top: 1.15rem; }
.therapy__lead { color: var(--ink); font-family: var(--serif); font-size: clamp(1.35rem, 2.3vw, 1.8rem); line-height: 1.45; }

/* Professional registrations */
.accred { padding-top: clamp(3rem, 6vw, 6rem); }
.accred__label { margin-bottom: 1.8rem; color: var(--mauve-dark); font-size: 0.69rem; font-weight: 600; letter-spacing: 0.18em; text-align: center; text-transform: uppercase; }
.logos { display: grid; grid-template-columns: repeat(5, 1fr); border: 1px solid var(--line); border-radius: 18px; overflow: hidden; background: rgba(255, 253, 249, 0.62); }
.logo-badge { display: grid; min-height: 138px; padding: 1.4rem; place-items: center; border-right: 1px solid var(--line); }
.logo-badge:last-child { border-right: 0; }
.logo-badge img { display: block; max-width: 100%; max-height: 86px; object-fit: contain; opacity: 1; transition: transform 0.3s; }
.logo-badge:hover img { transform: scale(1.03); }

/* Fees */
.fees__wrap { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(2.5rem, 6vw, 6rem); padding: clamp(2.25rem, 5vw, 4.5rem); border-radius: 28px; background: var(--mauve); color: var(--ink); }
.fees__intro h2 { color: var(--ink); }
.fees__intro .eyebrow, .fees__wrap p { color: var(--ink); }
.fees__intro > p:not(.eyebrow) { max-width: 580px; margin: 1.3rem 0 1.5rem; }
.fees__intro .text-link { color: var(--ink); }
.fees__details { align-self: end; padding: 1.6rem; border: 1px solid rgba(48, 42, 48, 0.18); border-radius: 18px; background: rgba(255, 255, 255, 0.18); }
.fees__details > p { margin-bottom: 0.9rem; font-weight: 500; }
.detail-list { display: grid; gap: 0.7rem; list-style: none; }
.detail-list li { position: relative; padding-left: 1.5rem; color: var(--ink); font-size: 0.9rem; }
.detail-list li::before { content: ""; position: absolute; top: 0.75em; left: 0; width: 7px; height: 7px; border-radius: 50%; background: var(--rose); }
.insurers { grid-column: 1 / -1; display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; overflow: hidden; border-radius: 14px; background: rgba(255, 255, 255, 0.12); }
.insurer { display: grid; min-height: 106px; padding: 1rem; place-items: center; background: rgba(255, 253, 249, 0.94); }
.insurer img { display: block; max-width: 75%; max-height: 62px; object-fit: contain; opacity: 1; }

/* Contact */
.contact { padding-top: clamp(5rem, 9vw, 8rem); }
.contact__head { max-width: 740px; margin-bottom: clamp(2.5rem, 5vw, 4.5rem); }
.contact__head > p:last-child { max-width: 660px; margin-top: 1.25rem; font-size: 1.08rem; }
.contact__direct { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.contact-card { position: relative; display: flex; flex-direction: column; justify-content: space-between; min-height: 290px; padding: clamp(1.7rem, 3.5vw, 2.6rem); overflow: hidden; border: 1px solid var(--line); border-radius: 24px; background: rgba(255, 253, 249, 0.76); box-shadow: 0 28px 60px -46px rgba(60, 45, 54, 0.5); transition: transform 0.4s var(--ease), box-shadow 0.4s, border-color 0.3s; }
.contact-card::before { content: ""; position: absolute; width: 220px; height: 220px; right: -90px; bottom: -110px; border: 1px solid rgba(173, 137, 185, 0.22); border-radius: 50%; box-shadow: 0 0 0 36px rgba(173, 137, 185, 0.08), 0 0 0 72px rgba(173, 137, 185, 0.04); }
.contact-card:hover { transform: translateY(-6px); border-color: rgba(173, 137, 185, 0.46); box-shadow: 0 34px 68px -42px rgba(60, 45, 54, 0.58); }
.contact-card__label { position: relative; color: var(--mauve-dark); font-size: 0.67rem; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; }
.contact-card h3 { margin-bottom: 0.6rem; font-size: clamp(1.9rem, 3.5vw, 3rem); }
.contact-card p { max-width: 390px; margin-bottom: 1.2rem; font-size: 0.9rem; }
.contact-card strong { position: relative; color: var(--ink); font-size: 0.92rem; font-weight: 600; overflow-wrap: anywhere; }
.contact-card__arrow { position: absolute; top: 1.6rem; right: 1.6rem; display: grid; width: 42px; height: 42px; place-items: center; border: 1px solid var(--line); border-radius: 50%; color: var(--mauve-dark); }
.contact-card--phone { border-color: transparent; background: var(--mauve); color: var(--ink); }
.contact-card--phone::before { border-color: rgba(48, 42, 48, 0.16); box-shadow: 0 0 0 36px rgba(255, 255, 255, 0.07), 0 0 0 72px rgba(255, 255, 255, 0.04); }
.contact-card--phone .contact-card__label, .contact-card--phone p { color: var(--ink); }
.contact-card--phone h3, .contact-card--phone strong { color: var(--ink); }
.contact-card--phone .contact-card__arrow { border-color: rgba(48, 42, 48, 0.24); color: var(--ink); }

.contact__practical { display: grid; grid-template-columns: 0.45fr 1.15fr; gap: clamp(2rem, 6vw, 6rem); align-items: start; margin-top: 1.2rem; padding: clamp(1.7rem, 3.5vw, 2.6rem); border: 1px solid var(--line); border-radius: 20px; background: rgba(255, 253, 249, 0.44); }
.contact__hours > span, .contact__locations address > span { display: block; margin-bottom: 0.5rem; color: var(--mauve-dark); font-size: 0.65rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; }
.contact__hours strong, .contact__locations strong { display: block; color: var(--ink); font-family: var(--serif); font-size: 1.15rem; font-weight: 500; line-height: 1.35; }
.contact__hours p { font-size: 0.86rem; }
.contact__locations { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.contact__locations address { color: var(--ink-soft); font-size: 0.82rem; font-style: normal; line-height: 1.65; }
.contact__address + .contact__address { margin-top: 0.9rem; padding-top: 0.9rem; border-top: 1px solid var(--line); }
.contact__privacy { grid-column: 1 / -1; margin-top: -0.4rem; padding-top: 1rem; border-top: 1px solid var(--line); font-size: 0.73rem; }

/* Privacy and confidentiality */
.privacy { border-block: 1px solid var(--line); background: rgba(255, 253, 249, 0.42); }
.privacy__wrap { max-width: 1080px; }
.privacy__intro { max-width: 820px; }
.privacy__intro > p:last-child { margin-top: 1.3rem; font-size: 1rem; }
.privacy__details { margin-top: 2.5rem; overflow: hidden; border: 1px solid var(--line); border-radius: 22px; background: rgba(255, 253, 249, 0.68); box-shadow: 0 28px 60px -52px rgba(55, 42, 49, 0.45); }
.privacy__details summary { position: relative; padding: 1.35rem 4rem 1.35rem 1.6rem; color: var(--ink); cursor: pointer; font-family: var(--serif); font-size: 1.15rem; font-weight: 500; list-style: none; }
.privacy__details summary::-webkit-details-marker { display: none; }
.privacy__details summary::after { content: "+"; position: absolute; top: 50%; right: 1.6rem; color: var(--mauve-dark); font-family: var(--sans); font-size: 1.4rem; font-weight: 300; transform: translateY(-50%); }
.privacy__details[open] summary::after { content: "−"; }
.privacy__content { display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem 3rem; padding: 2.2rem 1.6rem 2.5rem; border-top: 1px solid var(--line); }
.privacy__content h3 { margin-bottom: 0.75rem; font-size: 1.35rem; }
.privacy__content p { font-size: 0.86rem; }
.privacy__content p + p { margin-top: 0.8rem; }
.privacy__content a { color: var(--mauve-dark); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }
.privacy__list { display: grid; gap: 0.55rem; list-style: none; }
.privacy__list li { position: relative; padding-left: 1.25rem; color: var(--ink-soft); font-size: 0.86rem; }
.privacy__list li::before { content: ""; position: absolute; top: 0.7em; left: 0; width: 6px; height: 6px; border-radius: 50%; background: var(--rose); }

/* Footer */
.footer { border-top: 1px solid var(--line); background: rgba(255, 253, 249, 0.42); }
.footer__top { display: flex; align-items: flex-start; justify-content: space-between; gap: 2rem; padding-block: clamp(2.8rem, 5vw, 4.5rem); }
.footer__name { font-family: var(--serif); font-size: 1.6rem; }
.footer__brand p { margin-top: 0.2rem; font-size: 0.76rem; }
.footer__links { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 1.5rem; }
.footer__links a { font-size: 0.85rem; font-weight: 500; }
.footer__legal { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 0.7rem 1.5rem; padding-block: 1.3rem 1.8rem; border-top: 1px solid var(--line); }
.footer__legal > p:first-child { justify-self: start; }
.footer__legal p { font-size: 0.72rem; }
.footer__privacy-note { text-align: center; }
.footer__legal-meta { display: flex; flex-wrap: wrap; justify-content: flex-end; justify-self: end; gap: 0.6rem 1.5rem; text-align: right; }
.footer__legal-meta a { color: var(--ink); font-weight: 600; text-decoration: underline; text-decoration-color: rgba(141, 95, 118, 0.35); text-underline-offset: 3px; transition: color 0.2s, text-decoration-color 0.2s; }
.footer__legal-meta a:hover { color: var(--mauve-dark); text-decoration-color: var(--mauve-dark); }

/* Dedicated service pages */
.service-page {
  --service-accent: #9f6f80;
  --service-wash: #eadde2;
}
.service-page[data-service="pregnancy"] { --service-accent: #aa7167; --service-wash: #edddd7; }
.service-page[data-service="babies"] { --service-accent: #738578; --service-wash: #dce5dd; }
.service-page[data-service="children"] { --service-accent: #9a774b; --service-wash: #ece2cf; }
.service-page[data-service="teens"] { --service-accent: #786f91; --service-wash: #e3dfec; }
.service-page[data-service="parents"] { --service-accent: #657d84; --service-wash: #dbe5e7; }

.backlink { display: inline-flex; align-items: center; gap: 0.5rem; color: var(--mauve-dark); font-size: 0.86rem; font-weight: 600; }
.backlink span { transition: transform 0.25s; }
.backlink:hover span { transform: translateX(-4px); }

.service-hero { position: relative; min-height: 88svh; padding: 132px 0 84px; overflow: hidden; }
.service-hero::after { content: ""; position: absolute; z-index: -1; width: 48vw; height: 48vw; min-width: 520px; min-height: 520px; right: -14vw; bottom: -20vw; border-radius: 50%; background: var(--service-wash); filter: blur(5px); opacity: 0.62; }
.service-hero__back { margin-bottom: clamp(3.5rem, 7vw, 6.5rem); }
.service-hero__grid { display: grid; grid-template-columns: minmax(0, 1.12fr) minmax(330px, 0.88fr); gap: clamp(3rem, 8vw, 8rem); align-items: center; }
.service-hero__copy { max-width: 700px; }
.service-hero__copy h1 { margin-bottom: 1.3rem; }
.service-hero__tag { max-width: 610px; margin-bottom: 2rem; font-size: clamp(1.08rem, 1.7vw, 1.28rem); }

.service-visual { display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; }
.service-visual__graphic { display: grid; place-items: center; }
.service-visual__graphic[hidden], .service-visual__image[hidden] { display: none; }
.service-visual__image { display: block; width: min(38vw, 500px); aspect-ratio: 4 / 3; border: 10px solid rgba(255, 253, 249, 0.72); border-radius: 48% 48% 24px 24px; box-shadow: 0 32px 72px -40px color-mix(in srgb, var(--service-accent) 58%, transparent); object-fit: cover; }
.service-visual__rings { position: relative; display: grid; width: min(34vw, 390px); aspect-ratio: 1; place-items: center; border: 1px solid color-mix(in srgb, var(--service-accent) 34%, transparent); border-radius: 50%; }
.service-visual__rings::before, .service-visual__rings::after { content: ""; position: absolute; border: 1px solid color-mix(in srgb, var(--service-accent) 28%, transparent); border-radius: 50%; }
.service-visual__rings::before { inset: 10%; }
.service-visual__rings::after { inset: 23%; background: rgba(255, 253, 249, 0.38); }
.service-visual__number { position: relative; z-index: 1; color: var(--service-accent); font-family: var(--serif); font-size: clamp(3.5rem, 7vw, 6rem); font-weight: 400; letter-spacing: -0.06em; }
.service-visual > p { max-width: 370px; margin-top: 1.5rem; color: var(--ink); font-family: var(--serif); font-size: 1.15rem; font-style: italic; line-height: 1.45; }

.service-content { padding: clamp(5rem, 9vw, 9rem) 0; background: rgba(255, 253, 249, 0.5); border-top: 1px solid var(--line); }
.service-layout { display: grid; grid-template-columns: minmax(0, 1fr) 320px; gap: clamp(3rem, 8vw, 8rem); align-items: start; }
.service-main { min-width: 0; }
.service-disclosure > summary { display: none; }
.service-section { padding-bottom: clamp(4.5rem, 8vw, 7.5rem); }
.section-marker { margin-bottom: 0.9rem; color: var(--service-accent); font-size: 0.67rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; }
.service-section h2, .service-first-step h2 { max-width: 700px; margin-bottom: 1.5rem; font-size: clamp(2rem, 3.8vw, 3.35rem); }
.service-prose { display: grid; gap: 1rem; max-width: 760px; }
.service-prose p { font-size: 1.03rem; }
.service-intro .service-prose p:first-child { color: var(--ink); font-family: var(--serif); font-size: clamp(1.25rem, 2vw, 1.55rem); line-height: 1.55; }
.service-section__lead { max-width: 730px; margin-bottom: 2rem; font-size: 0.98rem; }
.service-signs__prompt { max-width: 760px; margin: 0 auto 1.4rem; color: var(--ink); font-family: var(--serif); font-size: clamp(1.05rem, 1.8vw, 1.3rem); line-height: 1.5; text-align: center; }

.service-quote { position: relative; margin: 0 0 clamp(5rem, 9vw, 8rem); padding: clamp(2rem, 4vw, 3.2rem); border: 1px solid color-mix(in srgb, var(--service-accent) 22%, transparent); border-radius: 4px 60px 4px 4px; background: color-mix(in srgb, var(--service-wash) 64%, white); color: var(--ink); font-family: var(--serif); font-size: clamp(1.4rem, 2.6vw, 2rem); font-style: italic; line-height: 1.5; }
.service-quote::before { content: "“"; position: absolute; top: -0.4rem; left: 1.4rem; color: var(--service-accent); font-family: var(--serif); font-size: 5rem; font-style: normal; line-height: 1; opacity: 0.18; }

.service-signs { display: grid; grid-template-columns: 1fr 1fr; gap: 0; list-style: none; border-top: 1px solid var(--line); }
.service-signs li { display: grid; grid-template-columns: 42px 1fr; gap: 0.8rem; min-height: 86px; padding: 1.2rem 1rem 1.2rem 0; border-bottom: 1px solid var(--line); color: var(--ink); font-size: 0.9rem; line-height: 1.5; }
.service-signs li:nth-child(odd) { padding-right: 1.5rem; border-right: 1px solid var(--line); }
.service-signs li:nth-child(even) { padding-left: 1.5rem; }
.service-signs li > span:first-child { color: var(--service-accent); font-family: var(--serif); font-size: 0.84rem; }

.service-first-step { display: grid; grid-template-columns: 112px 1fr; gap: 2rem; padding: clamp(2rem, 4vw, 3.2rem); border-radius: 24px; background: var(--service-wash); }
.service-first-step__number { display: grid; width: 88px; height: 88px; place-items: center; border: 1px solid color-mix(in srgb, var(--service-accent) 36%, transparent); border-radius: 50%; color: var(--service-accent); font-family: var(--serif); font-size: 1.5rem; }
.service-first-step h2 { margin-bottom: 1rem; }
.service-first-step p:not(.section-marker) { max-width: 640px; }
.service-first-step .text-link { margin-top: 1.2rem; color: var(--service-accent); }

.service-summary { position: sticky; top: 130px; padding: 1.8rem; border: 1px solid var(--line); border-radius: 20px; background: rgba(255, 253, 249, 0.82); box-shadow: 0 28px 60px -48px rgba(55, 42, 49, 0.5); backdrop-filter: blur(12px); }
.service-summary dl > div { padding: 1rem 0; border-bottom: 1px solid var(--line); }
.service-summary dt { margin-bottom: 0.25rem; color: var(--service-accent); font-size: 0.63rem; font-weight: 600; letter-spacing: 0.13em; text-transform: uppercase; }
.service-summary dd { color: var(--ink); font-size: 0.82rem; line-height: 1.55; }
.service-summary .btn { margin-top: 1.4rem; background: var(--service-accent); }
.service-summary__note { margin-top: 1rem; font-size: 0.72rem; line-height: 1.55; }

.service-explore { padding: clamp(4rem, 7vw, 6.5rem) 0; border-top: 1px solid var(--line); }
.service-nav { display: grid; grid-template-columns: 1fr 1fr; margin-top: 1rem; border: 1px solid var(--line); border-radius: 18px; overflow: hidden; }
.service-nav a { display: flex; flex-direction: column; min-height: 140px; padding: 1.6rem; justify-content: center; transition: background 0.3s; }
.service-nav a + a { align-items: flex-end; border-left: 1px solid var(--line); text-align: right; }
.service-nav a:hover { background: var(--service-wash); }
.service-nav__direction { margin-bottom: 0.45rem; color: var(--service-accent); font-size: 0.64rem; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; }
.service-nav strong { font-family: var(--serif); font-size: clamp(1.1rem, 2vw, 1.45rem); font-weight: 500; }

/* Entry effects */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

@media (max-width: 980px) {
  .nav__inner { min-height: 82px; }
  .nav__toggle { display: flex; }
  .nav__links { position: fixed; inset: 82px 0 auto; display: flex; flex-direction: column; align-items: stretch; gap: 0; padding: 0.75rem clamp(1.25rem, 4vw, 2.5rem) 1.25rem; transform: translateY(-130%); border-bottom: 1px solid var(--line); background: rgba(238, 225, 241, 0.98); box-shadow: 0 24px 44px rgba(55, 42, 49, 0.1); transition: transform 0.35s var(--ease); }
  .nav__links.open { transform: none; }
  .nav__links a { padding: 0.8rem 0; }
  .nav__cta { margin-top: 0.45rem; text-align: center; }
  .nav__toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav__toggle.open span:nth-child(2) { opacity: 0; }
  .nav__toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .hero { min-height: auto; padding-top: 132px; }
  .hero__grid { grid-template-columns: 1fr; }
  .hero__copy { max-width: 800px; }
  .hero__note { width: min(100%, 590px); margin-left: auto; border-radius: 180px 180px 28px 28px; }
  .hero__scroll { display: none; }
  .trust__grid { grid-template-columns: 1fr 1fr; }
  .trust__item:nth-child(2) { border-right: 1px solid var(--line); }
  .trust__item:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .age-card { grid-column: span 6; }
  .age-card:nth-child(5) { grid-column: 4 / span 6; }
  .process__inner, .therapy__grid, .contact__wrap { grid-template-columns: 1fr; }
  .process__intro { position: static; max-width: 720px; }
  .about__wrap { grid-template-columns: 0.65fr 1.35fr; gap: 2.5rem; }
  .logos { grid-template-columns: repeat(3, 1fr); }
  .logo-badge:nth-child(3) { border-right: 0; }
  .logo-badge:nth-child(-n+3) { border-bottom: 1px solid var(--line); }
  .logo-badge:nth-child(4) { grid-column: 1 / span 1; }
  .contact__details { grid-template-columns: 1fr 1fr; }
  .contact__locations { grid-column: 1 / -1; }
  .service-hero { min-height: auto; }
  .service-hero__grid { grid-template-columns: minmax(0, 1fr) minmax(280px, 0.65fr); gap: 3rem; }
  .service-layout { grid-template-columns: 1fr; }
  .service-summary { position: static; display: grid; grid-template-columns: 1fr 1fr; gap: 0 2rem; }
  .service-summary > .section-marker, .service-summary dl { grid-column: 1 / -1; }
  .service-summary .btn { align-self: start; }
  .service-summary__note { align-self: center; margin-top: 1.4rem; }
}

@media (max-width: 680px) {
  html { scroll-padding-top: 82px; }
  body { line-height: 1.68; }
  h1 { font-size: clamp(2.6rem, 13vw, 4rem); }
  h2 { font-size: clamp(2.15rem, 10vw, 3.2rem); }
  .section { padding: 4.75rem 0; }
  [data-home-mobile-disclosure].section { padding: 0; }
  .home-disclosure__summary { display: flex; min-height: 74px; padding-block: 1rem; align-items: center; justify-content: space-between; gap: 1rem; border: 0; background: transparent; color: var(--ink); cursor: pointer; font-family: var(--serif); font-size: 1.22rem; font-weight: 500; line-height: 1.35; text-align: left; }
  .home-disclosure__summary:focus-visible { outline: 2px solid var(--mauve-dark); outline-offset: -4px; }
  .home-disclosure__icon { position: relative; flex: 0 0 30px; width: 30px; height: 30px; border: 1px solid rgba(116, 84, 126, 0.38); border-radius: 50%; }
  .home-disclosure__icon::before, .home-disclosure__icon::after { content: ""; position: absolute; top: 50%; left: 50%; width: 11px; height: 1px; background: var(--mauve-dark); transform: translate(-50%, -50%); transition: transform 0.25s var(--ease); }
  .home-disclosure__icon::after { transform: translate(-50%, -50%) rotate(90deg); }
  [data-home-mobile-disclosure].is-open > .home-disclosure__summary { border-bottom: 1px solid var(--line); }
  [data-home-mobile-disclosure].is-open .home-disclosure__icon::after { transform: translate(-50%, -50%) rotate(0deg); }
  [data-home-mobile-disclosure]:not(.is-open) > .container:not(.home-disclosure__summary) { display: none; }
  [data-home-mobile-disclosure].is-open > .container:not(.home-disclosure__summary) { padding-top: 2.5rem; padding-bottom: 4.75rem; }
  .hero { padding: 122px 0 72px; }
  .hero__grid { gap: 2.6rem; }
  .hero__lead { font-size: 1rem; }
  .hero__actions { align-items: flex-start; flex-direction: column; gap: 1.15rem; }
  .hero__note { padding: 2.4rem 1.6rem; border-radius: 130px 130px 22px 22px; }
  .hero__note::before { inset: 9px; }
  .hero__logo { width: 220px; }
  .trust__grid { grid-template-columns: 1fr; }
  .trust__item { min-height: 108px; padding: 1.25rem 1.5rem; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
  .trust__item:last-child { border-bottom: 0; }
  .ages__grid { display: grid; grid-template-columns: 1fr; }
  .age-card, .age-card:nth-child(4), .age-card:nth-child(5) { grid-column: auto; min-height: 270px; }
  .process__step { grid-template-columns: 50px 1fr; }
  .about__wrap { grid-template-columns: 1fr; padding: 2rem 1.35rem; }
  .about__portrait { width: 210px; }
  .logos { grid-template-columns: 1fr 1fr; }
  .logo-badge, .logo-badge:nth-child(3), .logo-badge:nth-child(4) { grid-column: auto; min-height: 120px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
  .logo-badge:nth-child(even) { border-right: 0; }
  .logo-badge:last-child { grid-column: 1 / -1; border-right: 0; border-bottom: 0; }
  .fees__wrap { grid-template-columns: 1fr; padding: 2rem 1.35rem; }
  .insurers { grid-template-columns: 1fr 1fr; }
  .insurer { min-height: 90px; }
  .contact__direct, .contact__practical, .contact__locations { grid-template-columns: 1fr; }
  .contact__privacy { grid-column: auto; }
  .privacy__content { grid-template-columns: 1fr; gap: 2rem; padding: 1.6rem 1.25rem 2rem; }
  .footer__top { flex-direction: column; }
  .footer__links { justify-content: flex-start; }
  .footer__legal { grid-template-columns: 1fr; justify-items: start; }
  .footer__privacy-note { justify-self: center; width: 100%; text-align: center; }
  .footer__legal-meta { justify-self: start; flex-direction: column; align-items: flex-start; text-align: left; }
  .service-hero { padding: 112px 0 64px; }
  .service-hero__back { margin-bottom: 3rem; }
  .service-hero__grid { grid-template-columns: 1fr; gap: 3.2rem; }
  .service-visual__image { width: min(88vw, 440px); border-width: 7px; }
  .service-visual__rings { width: min(78vw, 310px); }
  .service-content { padding: 4.5rem 0; }
  .service-disclosure { margin-bottom: 0.9rem; overflow: hidden; border: 1px solid color-mix(in srgb, var(--service-accent) 24%, var(--line)); border-radius: 16px; background: rgba(255, 253, 249, 0.68); }
  .service-disclosure > summary { display: flex; min-height: 64px; padding: 1rem 1.15rem; align-items: center; justify-content: space-between; gap: 1rem; color: var(--ink); cursor: pointer; font-family: var(--serif); font-size: 1.13rem; font-weight: 500; line-height: 1.35; list-style: none; }
  .service-disclosure > summary::-webkit-details-marker { display: none; }
  .service-disclosure > summary:focus-visible { outline: 2px solid var(--service-accent); outline-offset: -3px; }
  .service-disclosure > summary span { position: relative; flex: 0 0 30px; width: 30px; height: 30px; border: 1px solid color-mix(in srgb, var(--service-accent) 38%, transparent); border-radius: 50%; }
  .service-disclosure > summary span::before, .service-disclosure > summary span::after { content: ""; position: absolute; top: 50%; left: 50%; width: 11px; height: 1px; background: var(--service-accent); transform: translate(-50%, -50%); transition: transform 0.25s var(--ease); }
  .service-disclosure > summary span::after { transform: translate(-50%, -50%) rotate(90deg); }
  .service-disclosure[open] > summary { border-bottom: 1px solid var(--line); }
  .service-disclosure[open] > summary span::after { transform: translate(-50%, -50%) rotate(0deg); }
  .service-disclosure > .service-section { padding: 1.6rem 1.2rem 2rem; }
  .service-disclosure > .service-first-step { padding: 1.6rem 1.2rem 2rem; border-radius: 0; background: color-mix(in srgb, var(--service-wash) 76%, transparent); }
  .service-disclosure .section-marker { display: none; }
  .service-disclosure .service-section h2, .service-disclosure .service-first-step h2 { margin-bottom: 1rem; font-size: clamp(1.7rem, 8vw, 2.25rem); }
  .service-quote { margin: 1.6rem 0; }
  .service-signs { grid-template-columns: 1fr; }
  .service-signs li, .service-signs li:nth-child(odd), .service-signs li:nth-child(even) { padding: 1.1rem 0; border-right: 0; }
  .service-first-step { grid-template-columns: 1fr; padding: 1.6rem 1.25rem; }
  .service-first-step__number { width: 68px; height: 68px; }
  .service-summary { display: block; padding: 1.4rem; }
  .service-nav { grid-template-columns: 1fr; }
  .service-nav a + a { align-items: flex-start; border-top: 1px solid var(--line); border-left: 0; text-align: left; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
  .reveal, .hero__eyebrow, .hero h1, .hero__lead, .hero__actions, .hero__note { opacity: 1; transform: none; }
}
