:root {
  --ink: #292329;
  --muted: #6f666d;
  --paper: #f6f1eb;
  --paper-2: #eee5dc;
  --white: #fffdf9;
  --plum: #56324f;
  --plum-dark: #35212f;
  --rose: #d9a9ac;
  --clay: #c97e68;
  --sage: #83988a;
  --line: rgba(41, 35, 41, .14);
  --radius: 1.4rem;
  --serif: Georgia, 'Times New Roman', serif;
  --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --shell: min(1180px, calc(100% - 3rem));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 6rem; }
body { margin: 0; color: var(--ink); background: var(--paper); font-family: var(--sans); font-size: 16px; line-height: 1.6; }
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
button { color: inherit; }
address { font-style: normal; }
h1, h2, h3, p { margin-top: 0; }
h1, h2 { font-family: var(--serif); font-weight: 400; line-height: .98; letter-spacing: -.045em; }
h1 { margin-bottom: 1.8rem; font-size: clamp(3.4rem, 7.5vw, 7.3rem); }
h2 { margin-bottom: 1.5rem; font-size: clamp(2.5rem, 5vw, 5rem); }
h1 em, h2 em { color: var(--plum); font-weight: 400; }
.shell { width: var(--shell); margin-inline: auto; }
.section { position: relative; padding: 8rem 0; }
.section-light { background: var(--white); }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }
.skip-link { position: fixed; z-index: 100; top: .75rem; left: .75rem; padding: .75rem 1rem; background: var(--ink); color: white; transform: translateY(-200%); }
.skip-link:focus { transform: none; }

.site-header { position: fixed; z-index: 50; top: 0; left: 0; width: 100%; border-bottom: 1px solid transparent; transition: background .25s, border .25s, backdrop-filter .25s; }
.site-header.scrolled { border-color: var(--line); background: rgba(246, 241, 235, .9); backdrop-filter: blur(16px); }
.header-inner { height: 5.5rem; display: flex; align-items: center; justify-content: space-between; }
.brand { position: relative; display: inline-flex; align-items: baseline; font-family: var(--serif); font-size: 1.45rem; letter-spacing: -.04em; }
.brand-mon { color: var(--ink); font-style: italic; }
.brand-therapy { color: var(--plum); font-family: var(--sans); font-size: .82em; font-weight: 700; letter-spacing: -.055em; }
.brand-dot { width: .38rem; height: .38rem; margin-left: .35rem; border-radius: 50%; background: var(--clay); }
.site-nav { display: flex; align-items: center; gap: 2rem; font-size: .88rem; font-weight: 600; }
.site-nav > a:not(.nav-cta) { position: relative; }
.site-nav > a:not(.nav-cta)::after { content: ''; position: absolute; left: 0; bottom: -.4rem; width: 100%; height: 1px; background: currentColor; transform: scaleX(0); transform-origin: right; transition: transform .25s; }
.site-nav > a:hover::after, .site-nav > a:focus-visible::after { transform: scaleX(1); transform-origin: left; }
.nav-cta { padding: .72rem 1rem; border: 1px solid var(--ink); border-radius: 99px; }
.nav-cta span { margin-left: .4rem; }
.menu-toggle { display: none; width: 2.75rem; height: 2.75rem; border: 0; background: transparent; }
.menu-toggle > span:not(.sr-only) { display: block; width: 1.5rem; height: 1px; margin: .42rem auto; background: currentColor; transition: transform .25s; }

.hero { min-height: 100svh; padding-top: 10.5rem; padding-bottom: 2.25rem; overflow: hidden; display: flex; flex-direction: column; justify-content: space-between; }
.hero::before { content: ''; position: absolute; inset: 0; opacity: .22; pointer-events: none; background-image: radial-gradient(rgba(86, 50, 79, .28) .6px, transparent .6px); background-size: 7px 7px; mask-image: linear-gradient(to right, black, transparent 65%); }
.hero-grid { position: relative; display: grid; grid-template-columns: minmax(0, 1.45fr) minmax(280px, .55fr); gap: clamp(3rem, 7vw, 8rem); align-items: end; }
.hero-copy { position: relative; z-index: 2; }
.eyebrow { display: flex; gap: .7rem; align-items: center; margin-bottom: 1.5rem; color: var(--plum); font-size: .8rem; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; }
.eyebrow span { width: 2.4rem; height: 1px; background: currentColor; }
.hero-lead { max-width: 640px; margin-bottom: 2.25rem; color: var(--muted); font-size: clamp(1.05rem, 1.4vw, 1.25rem); }
.hero-actions { display: flex; align-items: center; gap: 2rem; }
.button { display: inline-flex; align-items: center; justify-content: center; gap: 1rem; min-height: 3.5rem; padding: .85rem 1.25rem; border: 1px solid transparent; border-radius: 99px; cursor: pointer; font-size: .86rem; font-weight: 700; transition: transform .2s, background .2s, color .2s; }
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--plum); color: white; }
.button-primary:hover { background: var(--plum-dark); }
.button-light { background: var(--white); color: var(--plum-dark); }
.text-link { padding-bottom: .25rem; border-bottom: 1px solid var(--line); font-size: .88rem; font-weight: 700; }
.text-link span { margin-left: .5rem; }
.hero-card { position: relative; z-index: 2; border: 1px solid var(--line); border-radius: var(--radius); background: rgba(255, 253, 249, .72); backdrop-filter: blur(12px); overflow: hidden; box-shadow: 0 2rem 5rem rgba(53, 33, 47, .09); }
.hero-card-top { display: flex; align-items: center; gap: .7rem; padding: 1rem 1.25rem; border-bottom: 1px solid var(--line); font-size: .8rem; font-weight: 700; }
.availability-dot { width: .5rem; height: .5rem; border-radius: 50%; background: #66896f; box-shadow: 0 0 0 .25rem rgba(102, 137, 111, .14); }
.hero-card-main { padding: 2.4rem 1.7rem 2.8rem; }
.micro-label { margin-bottom: 2.4rem; color: var(--muted); font-size: .8rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.hero-card h2 { margin-bottom: 1.2rem; font-size: 2.7rem; }
.hero-card-main > p:last-child { margin-bottom: 0; color: var(--muted); font-size: .9rem; }
.hero-card-bottom { display: grid; grid-template-columns: 1fr 1fr; border-top: 1px solid var(--line); }
.hero-card-bottom div { padding: 1.1rem 1.2rem; }
.hero-card-bottom div + div { border-left: 1px solid var(--line); }
.hero-card-bottom span, .hero-card-bottom strong { display: block; }
.hero-card-bottom span { margin-bottom: .25rem; color: var(--muted); font-size: .8rem; text-transform: uppercase; }
.hero-card-bottom strong { font-size: .8rem; }
.hero-butterfly { position: absolute; z-index: 1; top: 5rem; right: 23%; width: min(24vw, 310px); opacity: .12; transform: rotate(16deg); animation: float 8s ease-in-out infinite; }
.hero-orb { position: absolute; border-radius: 50%; filter: blur(1px); }
.hero-orb-one { width: 28rem; height: 28rem; right: -8rem; top: 4rem; background: rgba(217, 169, 172, .28); }
.hero-orb-two { width: 18rem; height: 18rem; left: -7rem; bottom: 5rem; background: rgba(131, 152, 138, .16); }
.trust-row { position: relative; z-index: 2; display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 5rem; border-top: 1px solid var(--line); }
.trust-row > span { display: flex; gap: 1.2rem; padding-top: 1.5rem; color: var(--rose); font-family: var(--serif); font-style: italic; font-size: .8rem; }
.trust-row strong { color: var(--ink); font-family: var(--sans); font-style: normal; font-size: .8rem; letter-spacing: .08em; text-transform: uppercase; }

.section-heading { display: grid; grid-template-columns: 1.5fr .55fr; gap: 4rem; align-items: end; margin-bottom: 4rem; }
.section-heading h2 { margin-bottom: 0; }
.section-heading > p { margin-bottom: .5rem; color: var(--muted); }
.service-feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.service-feature { position: relative; min-height: 32rem; padding: 1.6rem; border-radius: var(--radius); display: flex; flex-direction: column; overflow: hidden; color: white; }
.service-feature::after { content: ''; position: absolute; width: 17rem; height: 17rem; right: -6rem; top: -5rem; border: 1px solid rgba(255,255,255,.18); border-radius: 50%; box-shadow: 0 0 0 2.8rem rgba(255,255,255,.035), 0 0 0 6rem rgba(255,255,255,.025); }
.service-feature-plum { background: var(--plum); }
.service-feature-clay { background: var(--clay); }
.service-feature-sage { background: var(--sage); }
.service-number { position: relative; z-index: 1; font-family: var(--serif); font-style: italic; font-size: .85rem; opacity: .65; }
.service-icon { position: relative; z-index: 1; width: 5rem; height: 5rem; margin: auto auto 2rem; border: 1px solid rgba(255,255,255,.4); border-radius: 50%; display: grid; place-items: center; }
.service-icon svg { width: 2.6rem; fill: none; stroke: currentColor; stroke-width: 1.2; }
.service-feature h3 { position: relative; z-index: 1; margin-bottom: .7rem; font-family: var(--serif); font-size: 1.8rem; font-weight: 400; }
.service-feature p { position: relative; z-index: 1; min-height: 4.5rem; margin-bottom: 1.8rem; color: rgba(255,255,255,.82); font-size: .9rem; }
.service-open { position: relative; z-index: 1; padding: 1rem 0 0; border: 0; border-top: 1px solid rgba(255,255,255,.25); background: transparent; display: flex; justify-content: space-between; cursor: pointer; color: white; font-size: .8rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.service-open span { font-size: 1.1rem; font-weight: 400; }
.therapy-list { margin-top: 4rem; padding-top: 2rem; border-top: 1px solid var(--line); display: grid; grid-template-columns: 1fr 3fr; gap: 2rem; }
.therapy-list-label { color: var(--muted); font-size: .8rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.therapy-tags { display: flex; flex-wrap: wrap; gap: .65rem; }
.therapy-tags span { padding: .55rem .9rem; border: 1px solid var(--line); border-radius: 99px; font-size: .8rem; }

.approach { background: var(--plum-dark); color: white; }
.approach::after { content: ''; position: absolute; inset: 0; opacity: .07; background: radial-gradient(circle at 20% 10%, white 0 1px, transparent 1.5px); background-size: 11px 11px; pointer-events: none; }
.approach-grid { position: relative; z-index: 1; display: grid; grid-template-columns: .8fr 1.2fr; gap: 9rem; }
.approach-sticky { align-self: start; position: sticky; top: 8rem; }
.eyebrow-light { color: var(--rose); }
.approach h2 { font-size: clamp(3rem, 5vw, 5.5rem); }
.approach-sticky > p:not(.eyebrow) { max-width: 28rem; margin-bottom: 2rem; color: rgba(255,255,255,.65); }
.process-list { margin: 0; padding: 0; list-style: none; }
.process-list li { display: grid; grid-template-columns: 4rem 1fr; gap: 2rem; padding: 2.2rem 0; border-top: 1px solid rgba(255,255,255,.16); }
.process-list li:last-child { border-bottom: 1px solid rgba(255,255,255,.16); }
.process-list > li > span { color: var(--rose); font-family: var(--serif); font-style: italic; }
.process-list h3 { margin-bottom: .55rem; font-family: var(--serif); font-size: 2rem; font-weight: 400; }
.process-list p { max-width: 35rem; margin: 0; color: rgba(255,255,255,.6); }

.section-about { background: var(--paper-2); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(3rem, 8vw, 8rem); align-items: center; }
.about-media { position: relative; }
.about-media::before { content: ''; position: absolute; inset: -1rem auto auto -1rem; width: 40%; height: 45%; border: 1px solid rgba(86, 50, 79, .3); border-radius: var(--radius) 0 0 0; }
.about-media img { position: relative; width: 100%; max-height: 680px; aspect-ratio: 4 / 5; object-fit: cover; object-position: 54% center; border-radius: var(--radius); filter: saturate(.78) contrast(.97); }
.about-caption { position: absolute; right: 0; bottom: 0; padding: 1rem 1.3rem; background: var(--white); }
.about-caption span, .about-caption strong { display: block; }
.about-caption span { color: var(--muted); font-size: .8rem; text-transform: uppercase; }
.about-caption strong { font-family: var(--serif); font-weight: 400; }
.about-copy h2 { font-size: clamp(2.8rem, 4.8vw, 5rem); }
.about-lead { padding-left: 1.3rem; border-left: 2px solid var(--rose); color: var(--plum); font-family: var(--serif); font-size: 1.28rem; font-style: italic; }
.about-copy > p:not(.eyebrow):not(.about-lead) { color: var(--muted); }
.credentials { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-top: 2rem; padding-top: 1.5rem; border-top: 1px solid var(--line); }
.credentials div { display: flex; align-items: center; gap: .8rem; }
.credentials strong { color: var(--plum); font-family: var(--serif); font-size: 2.7rem; font-weight: 400; line-height: 1; }
.credentials span { max-width: 9rem; color: var(--muted); font-size: .8rem; line-height: 1.35; }
.qualifications { margin-top: 5rem; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.qualifications-toggle { width: 100%; padding: 1.5rem 0; border: 0; background: transparent; display: flex; justify-content: space-between; cursor: pointer; text-align: left; font-weight: 700; }
.toggle-symbol { font-size: 1.3rem; font-weight: 400; transition: transform .25s; }
.qualifications-toggle[aria-expanded="true"] .toggle-symbol { transform: rotate(45deg); }
.qualifications-panel { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .35s ease; }
.qualifications-panel.open { grid-template-rows: 1fr; }
.timeline { overflow: hidden; }
.timeline > div { display: grid; grid-template-columns: 10rem 1fr; padding: 1rem 0; border-top: 1px solid var(--line); }
.timeline time { color: var(--plum); font-family: var(--serif); font-style: italic; }
.timeline p { margin: 0; color: var(--muted); }

.section-pricing { background: var(--white); }
.pricing-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
.price-card { min-height: 20rem; padding: 2rem; border: 1px solid var(--line); border-radius: var(--radius); background: var(--paper); display: flex; flex-direction: column; }
.price-card.featured { background: var(--plum); color: white; }
.price-kicker { margin-bottom: auto; font-size: .8rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.price { display: flex; gap: .6rem; align-items: baseline; margin-top: 2.3rem; }
.price strong { font-family: var(--serif); font-size: 4.6rem; font-weight: 400; line-height: 1; letter-spacing: -.05em; }
.price span { font-size: .9rem; font-weight: 700; }
.price-card > p:not(.price-kicker) { margin-bottom: 1.5rem; color: var(--muted); }
.featured > p:not(.price-kicker) { color: rgba(255,255,255,.7); }
.price-meta { margin-top: auto; padding-top: 1rem; border-top: 1px solid var(--line); display: flex; justify-content: space-between; gap: 1rem; font-size: .8rem; }
.featured .price-meta { border-color: rgba(255,255,255,.22); }
.compact-prices { margin: 2rem 0 0; padding: 0; list-style: none; }
.compact-prices li { display: flex; justify-content: space-between; gap: 1rem; padding: .75rem 0; border-top: 1px solid var(--line); font-size: .83rem; }
.compact-prices strong { white-space: nowrap; }
.pricing-note { margin: 1.5rem 0 0; color: var(--muted); font-size: .8rem; text-align: center; }

.faq-section { background: var(--paper); }
.faq-grid { display: grid; grid-template-columns: .75fr 1.25fr; gap: 7rem; }
.faq-intro h2 { font-size: clamp(2.7rem, 4.2vw, 4.5rem); }
.faq-item { border-top: 1px solid var(--line); }
.faq-item:last-child { border-bottom: 1px solid var(--line); }
.faq-item button { width: 100%; padding: 1.5rem 0; border: 0; background: transparent; display: flex; justify-content: space-between; gap: 2rem; cursor: pointer; text-align: left; font-weight: 700; }
.faq-item button span:last-child { font-size: 1.2rem; font-weight: 400; transition: transform .25s; }
.faq-item button[aria-expanded="true"] span:last-child { transform: rotate(45deg); }
.faq-answer { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .3s ease; }
.faq-answer p { overflow: hidden; margin: 0; color: var(--muted); }
.faq-item.open .faq-answer { grid-template-rows: 1fr; }
.faq-item.open .faq-answer p { padding-bottom: 1.5rem; }

.contact-section { background: var(--plum-dark); color: white; overflow: hidden; }
.contact-section::before { content: ''; position: absolute; width: 36rem; height: 36rem; left: -15rem; bottom: -22rem; border: 1px solid rgba(255,255,255,.1); border-radius: 50%; box-shadow: 0 0 0 5rem rgba(255,255,255,.02), 0 0 0 10rem rgba(255,255,255,.015); }
.contact-grid { position: relative; display: grid; grid-template-columns: .85fr 1.15fr; gap: 7rem; }
.contact-copy h2 { font-size: clamp(3rem, 5vw, 5.3rem); }
.contact-copy h2 em { color: var(--rose); }
.contact-copy > p:not(.eyebrow) { max-width: 30rem; color: rgba(255,255,255,.6); }
.contact-direct { margin-top: 3rem; }
.contact-direct a { display: block; padding: 1rem 0; border-top: 1px solid rgba(255,255,255,.16); }
.contact-direct a:last-child { border-bottom: 1px solid rgba(255,255,255,.16); }
.contact-direct span, .contact-direct strong { display: block; }
.contact-direct span { color: var(--rose); font-size: .8rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.contact-direct strong { font-family: var(--serif); font-size: 1.25rem; font-weight: 400; }
.contact-form { padding: 2.2rem; border-radius: var(--radius); background: rgba(255,255,255,.07); }
.contact-form label { display: block; margin-bottom: 1.4rem; color: rgba(255,255,255,.72); font-size: .8rem; font-weight: 700; }
.contact-form label > span { color: var(--rose); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.contact-form input, .contact-form textarea { width: 100%; margin-top: .45rem; padding: .75rem 0; border: 0; border-bottom: 1px solid rgba(255,255,255,.28); border-radius: 0; outline: 0; background: transparent; color: white; resize: vertical; }
.contact-form input:focus, .contact-form textarea:focus { border-color: var(--rose); }
.contact-form input:-webkit-autofill,
.contact-form input:-webkit-autofill:hover,
.contact-form input:-webkit-autofill:focus,
.contact-form textarea:-webkit-autofill,
.contact-form textarea:-webkit-autofill:hover,
.contact-form textarea:-webkit-autofill:focus {
  -webkit-text-fill-color: white;
  caret-color: white;
  box-shadow: 0 0 0 1000px var(--plum-dark) inset;
  transition: background-color 9999s ease-out;
}
.contact-form input:autofill,
.contact-form textarea:autofill { background: var(--plum-dark); color: white; }
.form-footer { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; }
.form-footer p { max-width: 18rem; margin: 0; color: rgba(255,255,255,.55); font-size: .8rem; }
.contact-form button:disabled { cursor: wait; opacity: .6; transform: none; }
.form-status { min-height: 1.5rem; margin: 1.2rem 0 0; color: #bed5c5; font-size: .85rem; }
.form-status.error { color: #f0b6b6; }

.site-footer { padding: 4.5rem 0 1.5rem; background: #241a22; color: rgba(255,255,255,.66); }
.footer-main { display: grid; grid-template-columns: 1.6fr repeat(3, 1fr); gap: 3rem; }
.footer-main .brand-footer { margin-bottom: 1rem; font-size: 2.7rem; }
.brand-footer .brand-mon { color: white; }
.brand-footer .brand-therapy { color: var(--rose); }
.footer-main p, .footer-main address, .footer-main a { font-size: .8rem; }
.footer-main > div:first-child p { max-width: 19rem; }
.footer-label { color: white; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.footer-main > div:not(:first-child) a { display: block; margin-bottom: .35rem; }
.footer-main > div:not(:first-child) a:hover,
.footer-bottom a:hover { text-decoration: underline; text-underline-offset: .2em; }
.anpc-link { display: block; width: min(100%, 260px); margin-top: 1.2rem; }
.anpc-link img { width: 100%; height: auto; border-radius: .5rem; }
.footer-bottom { margin-top: 4rem; padding-top: 1.2rem; border-top: 1px solid rgba(255,255,255,.1); display: flex; justify-content: space-between; gap: 2rem; }
.footer-bottom p, .footer-bottom a { margin: 0; font-size: .8rem; }

.pricing-summary { padding: 1.5rem; border: 1px solid var(--line); border-radius: var(--radius); display: grid; grid-template-columns: 1fr 1fr auto; gap: 2rem; align-items: center; background: var(--paper); }
.pricing-summary div { display: flex; flex-direction: column; }
.pricing-summary span { color: var(--muted); font-size: .8rem; }
.pricing-summary strong { font-family: var(--serif); font-size: 1.65rem; font-weight: 400; }

.inner-page .site-header { background: rgba(246, 241, 235, .92); backdrop-filter: blur(16px); border-color: var(--line); }
.inner-hero { padding-top: 11rem; padding-bottom: 5rem; overflow: hidden; }
.inner-hero::after { content: ''; position: absolute; width: 30rem; height: 30rem; top: 2rem; right: -8rem; border-radius: 50%; background: rgba(217, 169, 172, .22); }
.inner-hero .shell { position: relative; z-index: 1; }
.inner-hero h1 { max-width: 950px; margin-bottom: 1.5rem; }
.inner-hero-lead { max-width: 700px; color: var(--muted); font-size: 1.1rem; }
.breadcrumbs { display: flex; gap: .65rem; margin-bottom: 2rem; color: var(--muted); font-size: .8rem; }
.breadcrumbs a { color: var(--plum); font-weight: 700; }

.therapy-jump-wrap { position: sticky; z-index: 20; top: 5.5rem; padding: .9rem 0; border-block: 1px solid var(--line); background: rgba(255, 253, 249, .95); backdrop-filter: blur(12px); }
.therapy-jump { display: flex; gap: .6rem; overflow-x: auto; scrollbar-width: thin; }
.therapy-jump a { flex: 0 0 auto; padding: .5rem .8rem; border: 1px solid var(--line); border-radius: 99px; font-size: .8rem; font-weight: 700; }
.therapy-jump a:hover { background: var(--plum); color: white; }
.therapy-content { background: var(--white); }
.therapy-section { padding: 6rem 0; scroll-margin-top: 9rem; }
.therapy-section + .therapy-section { border-top: 1px solid var(--line); }
.therapy-section-header { display: grid; grid-template-columns: 4rem minmax(0, 1fr); gap: 2rem; margin-bottom: 3rem; }
.therapy-index { color: var(--rose); font-family: var(--serif); font-size: 1rem; font-style: italic; }
.therapy-section h2 { margin-bottom: 1rem; font-size: clamp(2.8rem, 5vw, 5.2rem); }
.therapy-section-intro { max-width: 760px; color: var(--muted); font-size: 1.05rem; }
.therapy-accordions { margin-left: 6rem; border-top: 1px solid var(--line); }
.therapy-accordion { border-bottom: 1px solid var(--line); }
.therapy-accordion-toggle { width: 100%; padding: 1.35rem 0; border: 0; background: transparent; display: flex; align-items: center; justify-content: space-between; gap: 2rem; cursor: pointer; text-align: left; font-family: var(--serif); font-size: 1.35rem; }
.therapy-accordion-toggle span:last-child { font-family: var(--sans); font-size: 1.2rem; transition: transform .25s; }
.therapy-accordion.open .therapy-accordion-toggle span:last-child { transform: rotate(45deg); }
.therapy-accordion-panel { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .35s ease; }
.therapy-accordion.open .therapy-accordion-panel { grid-template-rows: 1fr; }
.therapy-accordion-body { overflow: hidden; color: var(--muted); }
.therapy-accordion.open .therapy-accordion-body { padding-bottom: 1.6rem; }
.therapy-accordion-body p { max-width: 820px; }
.therapy-accordion-body ul { columns: 2; max-width: 920px; padding-left: 1.2rem; }
.therapy-accordion-body li { break-inside: avoid; margin-bottom: .4rem; }
.therapy-disclaimer { padding: 1.2rem 1.4rem; border-left: 3px solid var(--clay); background: var(--paper); color: var(--muted); font-size: .85rem; }

.page-pricing { background: var(--white); }
.page-pricing .pricing-grid { margin-top: 1rem; }
.page-cta { padding: 3rem; border-radius: var(--radius); background: var(--plum); color: white; display: flex; align-items: center; justify-content: space-between; gap: 3rem; }
.page-cta h2 { margin: 0; font-size: clamp(2.3rem, 4vw, 4rem); }
.page-cta p { max-width: 420px; margin: 0; color: rgba(255,255,255,.68); }
.page-cta .button { flex: 0 0 auto; width: max-content; white-space: nowrap; }

.legal-content { min-height: 55vh; background: var(--white); }
.legal-card { max-width: 850px; }
.legal-card h2 { margin-top: 3rem; font-size: 2.2rem; }
.legal-card p, .legal-card li { color: var(--muted); }
.legal-placeholder { padding: 1.2rem 1.4rem; border-left: 3px solid var(--clay); background: var(--paper); }

.service-dialog { width: min(640px, calc(100% - 2rem)); max-height: min(80vh, 720px); padding: 3rem; border: 0; border-radius: var(--radius); background: var(--white); color: var(--ink); box-shadow: 0 3rem 8rem rgba(0,0,0,.3); }
.service-dialog::backdrop { background: rgba(35, 25, 33, .72); backdrop-filter: blur(6px); }
.service-dialog h2 { font-size: 3.3rem; }
.service-dialog h3 { margin-top: 2rem; font-family: var(--serif); font-size: 1.5rem; font-weight: 400; }
.service-dialog p, .service-dialog li { color: var(--muted); }
.service-dialog ul { padding-left: 1.2rem; }
.dialog-close { position: absolute; top: 1.2rem; right: 1.2rem; width: 2.5rem; height: 2.5rem; border: 1px solid var(--line); border-radius: 50%; background: transparent; cursor: pointer; font-size: 1.4rem; }

.newsletter-section { padding: 5.5rem 0; background: var(--plum-dark); color: white; }
.newsletter-inner { display: grid; grid-template-columns: minmax(0, .9fr) minmax(360px, 1.1fr); gap: clamp(3rem, 8vw, 8rem); align-items: center; }
.newsletter-copy h2 { margin-bottom: 1.2rem; color: white; font-size: clamp(2.7rem, 5vw, 4.6rem); }
.newsletter-copy h2 em { color: var(--rose); }
.newsletter-copy > p:last-child { max-width: 520px; margin-bottom: 0; color: rgba(255,255,255,.67); }
.newsletter-form { position: relative; padding: 1.6rem; border: 1px solid rgba(255,255,255,.16); border-radius: var(--radius); background: rgba(255,255,255,.055); }
.newsletter-form > label:first-of-type:not(.newsletter-honeypot) { display: block; margin-bottom: .55rem; color: rgba(255,255,255,.72); font-size: .78rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.newsletter-field { display: grid; grid-template-columns: 1fr auto; overflow: hidden; border: 1px solid rgba(255,255,255,.28); border-radius: 99px; background: rgba(255,255,255,.08); }
.newsletter-field:focus-within { border-color: var(--rose); box-shadow: 0 0 0 3px rgba(217,169,172,.16); }
.newsletter-field input { min-width: 0; padding: .9rem 1.2rem; border: 0; outline: 0; background: transparent; color: white; }
.newsletter-field input::placeholder { color: rgba(255,255,255,.42); }
.newsletter-field button { padding: .9rem 1.25rem; border: 0; border-radius: 99px; background: var(--white); color: var(--plum-dark); cursor: pointer; font-size: .82rem; font-weight: 800; }
.newsletter-consent { display: flex; gap: .7rem; align-items: flex-start; margin-top: 1rem; color: rgba(255,255,255,.6); font-size: .75rem; line-height: 1.5; }
.newsletter-consent input { flex: 0 0 auto; margin-top: .18rem; accent-color: var(--rose); }
.newsletter-consent a { color: white; text-decoration: underline; text-underline-offset: .16em; }
.newsletter-message { margin: 1rem 0 0; font-size: .82rem; font-weight: 700; }
.newsletter-message.success { color: #b8dfc3; }
.newsletter-message.error { color: #ffc4c4; }
.newsletter-honeypot { position: absolute !important; width: 1px; height: 1px; overflow: hidden; clip: rect(0, 0, 0, 0); }

.blog-hero { padding-bottom: 6.5rem; }
.blog-listing { min-height: 32rem; }
.blog-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 2rem; }
.blog-card { display: flex; min-width: 0; flex-direction: column; border: 1px solid var(--line); border-radius: var(--radius); background: var(--paper); overflow: hidden; }
.blog-card-media { display: block; aspect-ratio: 16 / 10; overflow: hidden; background: var(--paper-2); }
.blog-card-media > img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease; }
.blog-card:hover .blog-card-media > img { transform: scale(1.025); }
.blog-card-placeholder { display: grid; width: 100%; height: 100%; place-items: center; background: radial-gradient(circle at 50% 35%, rgba(217,169,172,.35), transparent 58%), var(--paper-2); }
.blog-card-placeholder img { width: 5rem; opacity: .48; }
.blog-card-body { display: flex; flex: 1; flex-direction: column; align-items: flex-start; padding: 1.6rem; }
.blog-card time, .blog-article-header time { margin-bottom: .9rem; color: var(--muted); font-size: .76rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.blog-card h2 { margin-bottom: 1rem; font-size: 2rem; line-height: 1.08; letter-spacing: -.035em; }
.blog-card h2 a:hover { color: var(--plum); }
.blog-card p { margin-bottom: 1.5rem; color: var(--muted); }
.blog-card .text-link { margin-top: auto; }
.blog-empty { max-width: 760px; padding: 4rem; border: 1px solid var(--line); border-radius: var(--radius); background: var(--paper); }
.blog-empty h2 { font-size: clamp(2.6rem, 5vw, 4.2rem); }
.blog-pagination { display: grid; grid-template-columns: 1fr auto 1fr; gap: 1rem; align-items: center; margin-top: 4rem; padding-top: 1.5rem; border-top: 1px solid var(--line); font-size: .85rem; font-weight: 700; }
.blog-pagination > :last-child { text-align: right; }
.blog-pagination [aria-disabled="true"] { color: var(--muted); opacity: .55; }
.blog-article-shell { max-width: 820px; }
.blog-article-header h1 { font-size: clamp(2.8rem, 6vw, 4rem); }
.blog-article-header time { display: block; }
.blog-featured-image { position: relative; z-index: 2; max-width: 1080px; margin-top: -2rem; margin-bottom: 5rem; }
.blog-featured-image img { width: 100%; max-height: 680px; border-radius: var(--radius); object-fit: cover; box-shadow: 0 2rem 5rem rgba(53, 33, 47, .12); }
.prose { color: #403940; font-family: var(--serif); font-size: clamp(1.08rem, 1.4vw, 1.22rem); line-height: 1.85; }
.prose > * { max-width: 100%; }
.prose h2, .prose h3 { margin-top: 2.5em; margin-bottom: .75em; color: var(--ink); }
.prose h2 { font-size: clamp(2.2rem, 4vw, 3.2rem); }
.prose h3 { font-family: var(--sans); font-size: 1.25rem; letter-spacing: -.02em; }
.prose p, .prose ul, .prose ol, .prose blockquote { margin-bottom: 1.4em; }
.prose a { color: var(--plum); text-decoration: underline; text-underline-offset: .2em; }
.prose blockquote { margin-inline: 0; padding: .5rem 0 .5rem 1.5rem; border-left: 3px solid var(--rose); color: var(--plum); font-size: 1.18em; font-style: italic; }
.prose img { margin-block: 2rem; border-radius: .8rem; }
.blog-back { margin-top: 4rem; padding-top: 2rem; border-top: 1px solid var(--line); }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .65s ease, transform .65s ease; }
.reveal.visible { opacity: 1; transform: none; }
@keyframes float { 0%, 100% { transform: rotate(16deg) translateY(0); } 50% { transform: rotate(13deg) translateY(-12px); } }

@media (max-width: 900px) {
  :root { --shell: min(100% - 2rem, 720px); }
  .section { padding: 6rem 0; }
  .menu-toggle { display: block; position: relative; z-index: 3; }
  .menu-toggle[aria-expanded="true"] > span:nth-child(2) { transform: translateY(4px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] > span:nth-child(3) { transform: translateY(-4px) rotate(-45deg); }
  .site-nav { position: fixed; inset: 0; padding: 7rem 1.5rem 2rem; background: var(--paper); flex-direction: column; align-items: stretch; gap: 0; transform: translateX(100%); transition: transform .35s ease; }
  .site-nav.open { transform: none; }
  .site-nav a { padding: 1rem 0; border-bottom: 1px solid var(--line); font-family: var(--serif); font-size: 2rem; font-weight: 400; }
  .site-nav .nav-cta { margin-top: auto; padding: 1rem; border: 0; border-radius: 0; background: var(--plum); color: white; text-align: center; font-family: var(--sans); font-size: .9rem; font-weight: 700; }
  .hero { min-height: auto; padding-top: 9rem; }
  .hero-grid, .section-heading, .approach-grid, .about-grid, .faq-grid, .contact-grid { grid-template-columns: 1fr; }
  .hero-grid { gap: 4rem; }
  .hero-card { max-width: 520px; }
  .hero-butterfly { top: 7rem; right: -2rem; width: 14rem; }
  .section-heading { gap: 1.5rem; }
  .service-feature-grid { grid-template-columns: 1fr; }
  .service-feature { min-height: 26rem; }
  .approach-grid { gap: 4rem; }
  .approach-sticky { position: static; }
  .about-grid { gap: 4rem; }
  .about-media { max-width: 560px; }
  .pricing-grid { grid-template-columns: 1fr; }
  .faq-grid, .contact-grid { gap: 3.5rem; }
  .footer-main { grid-template-columns: 1fr 1fr; }
  .footer-main > div:first-child { grid-column: 1 / -1; }
  .pricing-summary { grid-template-columns: 1fr 1fr; }
  .pricing-summary .button { grid-column: 1 / -1; }
  .therapy-section-header { grid-template-columns: 3rem minmax(0, 1fr); gap: 1rem; }
  .therapy-accordions { margin-left: 4rem; }
  .page-cta { align-items: flex-start; flex-direction: column; }
  .newsletter-inner { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 600px) {
  :root { --shell: calc(100% - 1.5rem); }
  .section { padding: 5rem 0; }
  h1 { font-size: clamp(3.2rem, 15vw, 4.6rem); }
  h2 { font-size: 2.9rem; }
  .hero { padding-top: 8rem; }
  .hero-actions { align-items: stretch; flex-direction: column; gap: 1rem; }
  .button { width: 100%; }
  .text-link { align-self: flex-start; }
  .hero-card-main { padding: 2rem 1.3rem; }
  .hero-card h2 { font-size: 2.25rem; }
  .hero-card-bottom { grid-template-columns: 1fr; }
  .hero-card-bottom div + div { border-left: 0; border-top: 1px solid var(--line); }
  .trust-row { grid-template-columns: 1fr; gap: 1rem; margin-top: 3rem; }
  .trust-row > span { padding-top: 1rem; border-top: 1px solid var(--line); }
  .trust-row > span:first-child { border-top: 0; }
  .therapy-list { grid-template-columns: 1fr; }
  .process-list li { grid-template-columns: 2.4rem 1fr; gap: 1rem; }
  .about-media img { aspect-ratio: 3 / 4; }
  .credentials { grid-template-columns: 1fr; }
  .timeline > div { grid-template-columns: 1fr; gap: .3rem; }
  .price-card { min-height: 18rem; padding: 1.4rem; }
  .compact-prices li { align-items: start; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .contact-form { padding: 1.4rem; }
  .form-footer { flex-direction: column; align-items: stretch; }
  .footer-main { grid-template-columns: 1fr 1fr; }
  .footer-main > div:first-child { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; }
  .service-dialog { padding: 2rem 1.4rem; }
  .service-dialog h2 { font-size: 2.5rem; }
  .pricing-summary { grid-template-columns: 1fr; gap: 1.2rem; }
  .pricing-summary .button { grid-column: auto; }
  .therapy-section { padding: 4.5rem 0; }
  .therapy-section-header { grid-template-columns: 1fr; }
  .therapy-accordions { margin-left: 0; }
  .therapy-accordion-body ul { columns: 1; }
  .page-cta { padding: 2rem 1.4rem; }
  .newsletter-section { padding: 4rem 0; }
  .newsletter-form { padding: 1.2rem; }
  .newsletter-field { grid-template-columns: 1fr; border-radius: 1rem; }
  .newsletter-field button { margin: .3rem; }
  .blog-grid { grid-template-columns: 1fr; }
  .blog-empty { padding: 2rem 1.4rem; }
  .blog-pagination { grid-template-columns: 1fr 1fr; }
  .blog-pagination > span:nth-child(2) { display: none; }
  .blog-featured-image { margin-bottom: 2rem; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

/* Location and consent-controlled Google Maps */
.location-section { background: #f6f1eb; }
.location-grid { display: grid; grid-template-columns: minmax(0, .78fr) minmax(0, 1.22fr); gap: clamp(2rem, 6vw, 6rem); align-items: center; }
.location-copy h2 { margin: 1rem 0 1.5rem; }
.location-copy > p { max-width: 34rem; color: var(--muted); font-size: 1.08rem; line-height: 1.75; }
.location-copy .location-note { margin: 1rem 0 1.8rem; font-size: .95rem; }
.map-consent { position: relative; min-height: 28rem; overflow: hidden; border: 1px solid var(--line); border-radius: 1.8rem; background: #e9dfd8; box-shadow: 0 1.5rem 4rem rgba(67, 41, 58, .1); }
.map-consent iframe { display: block; width: 100%; height: 28rem; border: 0; }
.map-consent iframe[hidden], .map-placeholder[hidden] { display: none; }
.map-placeholder { display: flex; min-height: 28rem; padding: 2.5rem; align-items: center; justify-content: center; flex-direction: column; text-align: center; background: radial-gradient(circle at 50% 15%, #fffaf6 0, #eee3dc 72%); }
.map-placeholder > span { display: grid; width: 4rem; height: 4rem; margin-bottom: 1rem; place-items: center; border: 1px solid var(--line); border-radius: 50%; color: var(--plum); font-size: 2rem; }
.map-placeholder h3 { margin: 0 0 .65rem; font-family: var(--serif); font-size: 1.75rem; font-weight: 500; }
.map-placeholder p { max-width: 27rem; margin: 0 0 1.4rem; color: var(--muted); line-height: 1.6; }

/* GDPR cookie preferences */
.privacy-panel { position: fixed; z-index: 1000; right: 1.25rem; bottom: 1.25rem; left: 1.25rem; display: grid; width: min(72rem, calc(100% - 2.5rem)); margin: 0 auto; padding: 1.5rem; grid-template-columns: minmax(0, 1fr) auto; gap: 2rem; align-items: center; border: 1px solid rgba(255,255,255,.14); border-radius: 1.4rem; color: #fff; background: #3f2937; box-shadow: 0 1.4rem 4rem rgba(32, 17, 27, .3); }
.privacy-panel[hidden] { display: none; }
.privacy-panel-copy h2 { margin: .25rem 0 .45rem; color: #fff; font-size: clamp(1.45rem, 3vw, 2rem); }
.privacy-panel-copy p { max-width: 50rem; margin: 0; color: rgba(255,255,255,.78); line-height: 1.55; }
.privacy-panel-copy a { color: #fff; text-underline-offset: .2em; }
.cookie-kicker { margin: 0; color: #cba9bd !important; font-size: .7rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.cookie-actions, .cookie-dialog-actions { display: flex; gap: .65rem; align-items: center; flex-wrap: wrap; }
.cookie-button { min-height: 2.8rem; padding: .7rem 1rem; border: 1px solid rgba(111,73,97,.28); border-radius: 999px; color: var(--plum); background: transparent; font: inherit; font-size: .86rem; font-weight: 700; cursor: pointer; }
.privacy-panel .cookie-button { color: #fff; border-color: rgba(255,255,255,.3); }
.cookie-button-primary, .privacy-panel .cookie-button-primary { border-color: #b78ca5; color: #fff; background: #8c617b; }
.cookie-button:hover, .cookie-button:focus-visible { transform: translateY(-1px); border-color: #b78ca5; }
.cookie-settings-link { display: block; margin: 0 0 .35rem; padding: 0; border: 0; color: inherit; background: transparent; font: inherit; font-size: .8rem; text-align: left; cursor: pointer; }
.cookie-settings-link:hover, .cookie-settings-link:focus-visible { text-decoration: underline; text-underline-offset: .2em; }
.cookie-dialog { width: min(42rem, calc(100% - 2rem)); max-width: none; padding: 0; border: 0; border-radius: 1.5rem; color: var(--ink); background: #fffdfb; box-shadow: 0 2rem 6rem rgba(32,17,27,.35); }
.cookie-dialog::backdrop { background: rgba(31, 19, 27, .65); backdrop-filter: blur(4px); }
.cookie-dialog-card { padding: 2rem; }
.cookie-dialog-header { display: flex; gap: 1rem; justify-content: space-between; align-items: start; }
.cookie-dialog-header h2 { margin: .35rem 0 1.5rem; font-size: 2rem; }
.cookie-dialog-close { width: 2.5rem; height: 2.5rem; border: 1px solid var(--line); border-radius: 50%; color: var(--ink); background: transparent; font-size: 1.5rem; cursor: pointer; }
.cookie-option { display: flex; padding: 1.2rem 0; gap: 1.5rem; justify-content: space-between; align-items: center; border-top: 1px solid var(--line); }
.cookie-option strong { display: block; margin-bottom: .25rem; }
.cookie-option p { margin: 0; color: var(--muted); font-size: .9rem; line-height: 1.5; }
.cookie-option input { width: 1.3rem; height: 1.3rem; accent-color: #7d526d; flex: 0 0 auto; }
.cookie-required { flex: 0 0 auto; color: #6c8768; font-size: .75rem; font-weight: 800; text-transform: uppercase; }
.cookie-dialog-actions { padding-top: 1.3rem; justify-content: flex-end; border-top: 1px solid var(--line); }

@media (max-width: 800px) {
  .location-grid { grid-template-columns: 1fr; }
  .map-consent, .map-consent iframe, .map-placeholder { min-height: 23rem; height: 23rem; }
  .privacy-panel { grid-template-columns: 1fr; gap: 1.2rem; }
}

@media (max-width: 600px) {
  .privacy-panel { right: .65rem; bottom: .65rem; left: .65rem; width: calc(100% - 1.3rem); padding: 1.15rem; border-radius: 1rem; }
  .cookie-actions { align-items: stretch; flex-direction: column; }
  .cookie-actions .cookie-button { width: 100%; }
  .cookie-dialog-card { padding: 1.3rem; }
  .cookie-option { align-items: flex-start; }
  .cookie-required { white-space: nowrap; }
  .cookie-dialog-actions { align-items: stretch; flex-direction: column-reverse; }
  .cookie-dialog-actions .cookie-button { width: 100%; }
}
