/* ============================================================
   Laura Pérez, LMFT — shared design system
   Warm, spacious, compassionate. Sage + clay on warm sand.
   ============================================================ */

:root{
  --sand: oklch(0.967 0.011 78);
  --sand-deep: oklch(0.942 0.015 72);
  --surface: oklch(0.992 0.005 85);
  --ink: oklch(0.30 0.018 52);
  --ink-soft: oklch(0.46 0.018 56);
  --ink-faint: oklch(0.60 0.016 60);
  --sage: oklch(0.50 0.045 158);
  --sage-deep: oklch(0.38 0.04 160);
  --sage-mid: oklch(0.62 0.04 156);
  --sage-tint: oklch(0.93 0.022 152);
  --clay: oklch(0.64 0.098 46);
  --clay-deep: oklch(0.54 0.094 44);
  --blush: oklch(0.88 0.035 40);
  --line: oklch(0.88 0.013 70);
  --line-soft: oklch(0.925 0.01 74);
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --maxw: 1200px;
  --readw: 720px;
}

*{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth;-webkit-text-size-adjust:100%}
@media (prefers-reduced-motion: reduce){html{scroll-behavior:auto}}

body{
  background:var(--sand);
  color:var(--ink);
  font-family:'Inter', system-ui, -apple-system, sans-serif;
  font-size:clamp(1rem, 0.96rem + 0.2vw, 1.075rem);
  line-height:1.7;
  -webkit-font-smoothing:antialiased;
  text-rendering:optimizeLegibility;
}

h1,h2,h3,h4,.serif{font-family:'Fraunces', Georgia, serif;font-weight:450;line-height:1.1;letter-spacing:-0.012em;color:var(--ink)}
em{font-style:italic}

a{color:inherit;text-decoration:none}
img,svg{display:block;max-width:100%}

.wrap{max-width:var(--maxw);margin-inline:auto;padding-inline:clamp(1.25rem, 5vw, 4rem)}
.narrow{max-width:860px;margin-inline:auto}

.eyebrow{
  font-family:'Inter',sans-serif;
  font-size:0.76rem;font-weight:600;letter-spacing:0.18em;
  text-transform:uppercase;color:var(--sage);
  display:inline-block;
}

/* ---------- Buttons ---------- */
.btn{
  display:inline-flex;align-items:center;gap:0.6em;
  font-family:'Inter',sans-serif;font-weight:600;font-size:0.95rem;letter-spacing:0.01em;
  padding:0.9em 1.6em;border-radius:999px;border:none;cursor:pointer;
  transition:transform .5s var(--ease), background-color .35s var(--ease), color .35s var(--ease), box-shadow .5s var(--ease), border-color .35s var(--ease);
}
.btn-primary{background:var(--sage);color:var(--sand);box-shadow:0 2px 4px oklch(0.38 0.04 160 / .2)}
.btn-primary:hover{background:var(--sage-deep);transform:translateY(-2px);box-shadow:0 12px 26px oklch(0.38 0.04 160 / .24)}
.btn-ghost{background:transparent;color:var(--ink);border:1px solid var(--line)}
.btn-ghost:hover{border-color:var(--sage);color:var(--sage);transform:translateY(-2px)}
.btn-clay{background:var(--clay);color:var(--surface)}
.btn-clay:hover{background:var(--clay-deep);transform:translateY(-2px)}
.btn .arrow{transition:transform .5s var(--ease)}
.btn:hover .arrow{transform:translateX(4px)}

.textlink{color:var(--sage-deep);font-weight:600;display:inline-flex;align-items:center;gap:0.45em;transition:gap .4s var(--ease),color .3s var(--ease)}
.textlink:hover{gap:0.75em;color:var(--clay-deep)}

/* ---------- Header ---------- */
header{
  position:sticky;top:0;z-index:60;
  background:oklch(0.967 0.011 78 / 0);
  transition:background-color .4s var(--ease), border-color .4s var(--ease), backdrop-filter .4s var(--ease);
  border-bottom:1px solid transparent;
}
header.scrolled{
  background:oklch(0.967 0.011 78 / .85);
  backdrop-filter:blur(14px) saturate(1.2);
  border-bottom:1px solid var(--line-soft);
}
.nav{display:flex;align-items:center;justify-content:space-between;height:76px;gap:1rem}
.brand{display:flex;align-items:center;gap:0.7em;font-family:'Fraunces',serif;font-weight:500;font-size:1.2rem;letter-spacing:-0.01em;white-space:nowrap}
.brand .sprig{width:27px;height:27px;color:var(--sage);flex-shrink:0}
.brand small{font-family:'Inter',sans-serif;font-size:0.68rem;font-weight:600;letter-spacing:0.14em;color:var(--ink-faint);text-transform:uppercase}
.navlinks{display:flex;align-items:center;gap:2rem}
.navlinks a{font-size:0.92rem;color:var(--ink-soft);position:relative;transition:color .3s var(--ease)}
.navlinks a::after{content:"";position:absolute;left:0;bottom:-6px;width:0;height:1.5px;background:var(--sage);transition:width .4s var(--ease)}
.navlinks a:not(.btn):hover{color:var(--ink)}
.navlinks a:not(.btn):hover::after{width:100%}
.nav-cta{margin-left:0.4rem}
.navlinks a.btn-primary{color:var(--sand)}
.navlinks a.btn-primary::after{display:none}
.menu-toggle{display:none;background:none;border:none;cursor:pointer;padding:8px;color:var(--ink)}
.menu-toggle svg{width:26px;height:26px}

/* ============ LANGUAGE TOGGLE ============ */
.brand{margin-right:auto}
.lang-switch{display:inline-flex;align-items:center;border:1px solid var(--line);border-radius:999px;overflow:hidden;flex-shrink:0}
.lang-switch button{appearance:none;-webkit-appearance:none;background:none;border:0;cursor:pointer;font-family:'Inter',sans-serif;font-size:0.72rem;font-weight:600;letter-spacing:0.06em;color:var(--ink-faint);padding:0.4rem 0.62rem;line-height:1;transition:color .3s var(--ease),background .3s var(--ease)}
.lang-switch button:hover{color:var(--ink)}
html[data-lang="en"] .lang-switch [data-setlang="en"],
html[data-lang="es"] .lang-switch [data-setlang="es"]{background:var(--sage);color:var(--sand)}
@media(max-width:760px){.lang-switch{margin-right:0.4rem}}

/* Bilingual content visibility (default: English; JS sets data-lang) */
.l-es{display:none}
html[data-lang="en"] .l-es{display:none}
html[data-lang="es"] .l-es{display:revert}
html[data-lang="es"] .l-en{display:none}

/* ---------- Section frame ---------- */
section{position:relative}
.section-pad{padding-block:clamp(4.5rem,9vw,8rem)}
.section-head{max-width:64ch}
.section-head.center{margin-inline:auto;text-align:center}
.section-head h2{font-size:clamp(2rem,1.5rem+2vw,3.2rem);margin:0.5em 0 0.5em;font-weight:450}
.section-head p{color:var(--ink-soft);font-size:1.1rem;max-width:56ch}
.section-head.center p{margin-inline:auto}

/* ---------- Hero ---------- */
.hero{position:relative;overflow:hidden;padding-top:clamp(3rem,6vw,5.5rem);padding-bottom:clamp(4rem,9vw,7.5rem);text-align:center}
.hero .wrap{position:relative;z-index:2}
.hero .eyebrow{margin-bottom:1.3rem}
.hero h1{font-size:clamp(2.6rem,1.5rem+4.6vw,5.4rem);font-weight:450;max-width:18ch;margin:0 auto 0.55em;line-height:1.04}
.hero h1 em{color:var(--sage)}
.hero .lede{font-size:clamp(1.1rem,1rem+0.5vw,1.35rem);color:var(--ink-soft);max-width:50ch;margin:0 auto 2.2rem}
.hero-actions{display:flex;flex-wrap:wrap;gap:0.9rem;justify-content:center}
.hero-note{font-size:0.88rem;color:var(--ink-faint);margin-top:1.5rem;display:inline-flex;align-items:center;gap:0.55em}
.hero-note .dot{width:7px;height:7px;border-radius:50%;background:var(--clay)}
.hero-orn{position:absolute;top:0;bottom:0;width:clamp(120px,18vw,260px);color:var(--sage-tint);z-index:1;pointer-events:none;opacity:.9}
.hero-orn.left{left:-3%;transform:scaleX(-1)}
.hero-orn.right{right:-3%}
@media(max-width:720px){.hero-orn{display:none}}

/* ---------- Marquee / trust strip ---------- */
.trust{background:var(--sage-deep);color:oklch(0.9 0.02 110);padding-block:1.1rem}
.trust .wrap{display:flex;flex-wrap:wrap;gap:1rem 2.5rem;justify-content:center;align-items:center;font-size:0.86rem;letter-spacing:0.04em}
.trust span{display:inline-flex;align-items:center;gap:0.5em}
.trust svg{width:16px;height:16px;color:oklch(0.8 0.07 120)}

/* ---------- Statement band ---------- */
.statement{background:var(--sand-deep)}
.statement .wrap{padding-block:clamp(4rem,8vw,7rem)}
.statement p{font-family:'Fraunces',serif;font-weight:430;font-size:clamp(2.9rem,1.8rem+4.6vw,5.4rem);line-height:1.12;letter-spacing:-0.025em;max-width:none;color:var(--ink)}
.statement-grid{display:grid;grid-template-columns:1.25fr 0.75fr;gap:clamp(0.6rem,1vw,1rem);align-items:center}
.statement-img{width:100%;height:clamp(300px,38vw,460px);object-fit:cover;border-radius:26px;border:1px solid var(--line-soft);box-shadow:0 30px 70px -42px oklch(0.38 0.04 160 / .35);display:block}
@media(max-width:760px){.statement-grid{grid-template-columns:1fr}.statement-img{height:clamp(240px,60vw,340px)}}
.statement p .hl{color:var(--clay-deep);font-style:italic}
.band{margin-top:clamp(1.6rem,4vw,2.8rem)}
.band-img{width:100%;height:clamp(240px,30vw,400px);object-fit:cover;border-radius:26px;border:1px solid var(--line-soft);box-shadow:0 30px 70px -42px oklch(0.38 0.04 160 / .35);display:block}
@media(max-width:760px){.band-img{height:clamp(200px,52vw,300px)}}
.story-grid{display:grid;grid-template-columns:1.05fr 0.95fr;gap:clamp(2rem,5vw,4.5rem);align-items:center}
.story-grid .prose-block{max-width:none;margin:0}
.story-img{width:100%;height:clamp(360px,44vw,540px);object-fit:cover;border-radius:26px;border:1px solid var(--line-soft);box-shadow:0 30px 70px -42px oklch(0.38 0.04 160 / .35);display:block}
@media(max-width:860px){.story-grid{grid-template-columns:1fr}.story-img{height:clamp(280px,62vw,400px)}}
.statement .sig{margin-top:1.8rem;font-size:0.95rem;color:var(--ink-faint);font-family:'Inter',sans-serif}

/* ---------- Education & training ---------- */
.edu-list{list-style:none;margin:clamp(1.6rem,3vw,2.6rem) 0 0;padding:0;max-width:720px}
.edu-list li{display:flex;gap:1.1rem;align-items:flex-start;padding:1.2rem 0;border-top:1px solid var(--line-soft)}
.edu-list li:last-child{border-bottom:1px solid var(--line-soft)}
.edu-mark{flex-shrink:0;width:8px;height:8px;margin-top:0.55rem;border-radius:50%;background:var(--sage);box-shadow:0 0 0 4px var(--sage-tint)}
.edu-title{display:block;font-family:'Fraunces',Georgia,serif;font-weight:500;font-size:clamp(1.05rem,1rem+0.4vw,1.25rem);line-height:1.32;color:var(--ink)}
.edu-org{display:block;margin-top:0.28rem;font-size:0.92rem;color:var(--ink-soft)}

/* ---------- Prose block (narrative sections) ---------- */
.prose-block{max-width:700px}
.prose-block h2{margin:0.5rem 0 1.2rem}
.prose-block p{color:var(--ink-soft);font-size:1.08rem;line-height:1.78;margin-bottom:1.15rem;max-width:68ch}
.prose-block p:last-child{margin-bottom:0}

/* ---------- Split (alternating image/text) ---------- */
.split{display:grid;grid-template-columns:1fr 1fr;gap:clamp(2rem,6vw,5rem);align-items:center}
.split.reverse .split-media{order:2}
.split-body .eyebrow{margin-bottom:1rem}
.split-body h2{font-size:clamp(1.8rem,1.4rem+1.6vw,2.8rem);margin-bottom:1rem;font-weight:450}
.split-body p{color:var(--ink-soft);margin-bottom:1.1rem}
.split-body p.lead{font-size:1.18rem;color:var(--ink);line-height:1.55}
.media-frame{
  position:relative;border-radius:26px;overflow:hidden;aspect-ratio:4/5;
  background:linear-gradient(155deg, var(--sage-tint), var(--blush));
  border:1px solid var(--line);display:flex;align-items:flex-end;justify-content:center;
  box-shadow:0 30px 70px -40px oklch(0.38 0.04 160 / .35);
}
.media-frame .botanical{position:absolute;inset:0;width:100%;height:100%;color:oklch(0.55 0.06 156 / .45)}
.media-frame .photo{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;object-position:center 22%}
.media-frame.has-photo{background:var(--sage-tint)}
.media-frame.has-photo::after{content:"";position:absolute;inset:0;background:linear-gradient(to top,oklch(0.30 0.04 160 / .42),transparent 42%)}
.media-frame.has-photo .cap{z-index:2;background:oklch(0.99 0.005 85 / .9)}
.media-frame .cap{position:relative;z-index:1;background:oklch(0.99 0.005 85 / .92);backdrop-filter:blur(4px);margin:1.1rem;padding:0.9rem 1.2rem;border-radius:14px;text-align:center;width:calc(100% - 2.2rem)}
.media-frame .cap strong{display:block;font-family:'Fraunces',serif;font-size:1.1rem;font-weight:500;color:var(--ink)}
.media-frame .cap span{font-size:0.85rem;color:var(--ink-soft)}
.chips{display:flex;flex-wrap:wrap;gap:0.55rem;margin-top:1.5rem}
.chip{font-size:0.82rem;font-weight:500;color:var(--sage-deep);background:var(--sage-tint);padding:0.5em 1em;border-radius:999px}
.credentials{display:flex;align-items:center;gap:clamp(1.1rem,3vw,1.8rem);flex-wrap:wrap;margin-top:1.8rem;padding-top:1.6rem;border-top:1px solid var(--line-soft)}
.credentials img{height:62px;width:auto;display:block}
.credentials img[alt^="Certified Grief"]{height:92px}
.credentials img[alt^="Trauma Recovery"]{height:52px}

/* ---------- Services (editorial numbered) ---------- */
.services{background:var(--sage-deep);color:var(--sand)}
.services .eyebrow{color:oklch(0.82 0.07 130)}
.services .section-head h2{color:var(--sand)}
.services .section-head p{color:oklch(0.88 0.02 110)}
.consent-note{margin-top:1.1rem;max-width:46ch;font-size:0.85rem;line-height:1.6;color:var(--ink-faint)}
.consent-note a{color:var(--sage-deep);text-decoration:underline;text-underline-offset:2px}
.svc-hint{margin-top:clamp(1.2rem,2.5vw,2rem);font-size:0.9rem;letter-spacing:0.02em;color:oklch(0.82 0.04 130)}
.svc-list{margin-top:1rem;border-top:1px solid oklch(0.5 0.045 160)}
.svc{border-bottom:1px solid oklch(0.5 0.045 160)}
.svc>summary{
  display:grid;grid-template-columns:auto 1fr auto auto;gap:1.6rem;align-items:baseline;
  padding:1.7rem 0;cursor:pointer;list-style:none;
  transition:padding-left .5s var(--ease);
}
.svc>summary::-webkit-details-marker{display:none}
.svc>summary:hover{padding-left:0.8rem}
.svc>summary:focus-visible{outline:2px solid oklch(0.82 0.07 130);outline-offset:4px;border-radius:4px}
.svc .idx{font-family:'Fraunces',serif;font-size:0.95rem;color:oklch(0.78 0.08 120)}
.svc .name{font-family:'Fraunces',serif;font-size:clamp(1.4rem,1.1rem+1vw,2.1rem);font-weight:450;color:var(--sand)}
.svc .desc{font-size:0.95rem;color:oklch(0.86 0.02 110);max-width:40ch;text-align:right}
.svc-chev{align-self:center;width:1.5rem;height:1.5rem;flex-shrink:0;position:relative;color:oklch(0.82 0.07 130)}
.svc-chev::before,.svc-chev::after{content:"";position:absolute;inset:0;margin:auto;background:currentColor;border-radius:2px}
.svc-chev::before{width:0.95rem;height:1.6px}
.svc-chev::after{width:1.6px;height:0.95rem;transition:transform .4s var(--ease)}
.svc[open] .svc-chev::after{transform:scaleY(0)}
.svc-more{padding:0 0 1.9rem;max-width:62ch;color:oklch(0.88 0.02 110);font-size:1rem;line-height:1.7;animation:svcReveal .5s var(--ease)}
.svc-more p+p{margin-top:0.9rem}
.svc-more a{color:oklch(0.82 0.07 130);text-decoration:underline;text-underline-offset:3px}
@keyframes svcReveal{from{opacity:0;transform:translateY(-6px)}to{opacity:1;transform:none}}
@media(max-width:760px){.svc>summary{grid-template-columns:auto 1fr auto}.svc .desc{grid-column:1/-1;text-align:left;margin-top:0.4rem}}

/* ---------- Approach steps ---------- */
.steps{display:grid;grid-template-columns:repeat(3,1fr);gap:clamp(1.2rem,3vw,2.4rem);counter-reset:step}
.step{padding-top:1.5rem;border-top:2px solid var(--sage)}
.step .num{counter-increment:step;font-family:'Fraunces',serif;font-size:0.9rem;color:var(--clay);font-weight:600}
.step .num::before{content:"0" counter(step)}
.step h3{font-size:1.4rem;margin:0.7rem 0 0.5rem;font-weight:500}
.step p{color:var(--ink-soft);font-size:0.98rem}

/* ---------- Blog ---------- */
.blog-head{display:flex;justify-content:space-between;align-items:flex-end;gap:1.5rem;flex-wrap:wrap;margin-bottom:clamp(2rem,4vw,3rem)}
.blog-grid{display:grid;grid-template-columns:1.4fr 1fr;gap:clamp(1.5rem,3vw,2.2rem)}
.post-card{
  display:flex;flex-direction:column;background:var(--surface);border:1px solid var(--line-soft);
  border-radius:22px;overflow:hidden;transition:transform .5s var(--ease), box-shadow .5s var(--ease);
}
.post-card:hover{transform:translateY(-4px);box-shadow:0 24px 50px -32px oklch(0.38 0.04 160 / .35)}
.post-thumb{aspect-ratio:16/10;position:relative;overflow:hidden;display:flex;align-items:center;justify-content:center}
.post-thumb svg{position:absolute;inset:0;width:100%;height:100%}
.post-thumb img,.article-cover img{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;display:block}
.post-card:hover .post-thumb img{transform:scale(1.04)}
.post-thumb img{transition:transform .7s var(--ease)}
.post-body{padding:1.5rem 1.6rem 1.7rem;display:flex;flex-direction:column;gap:0.6rem;flex:1}
.post-cat{font-size:0.72rem;font-weight:700;letter-spacing:0.12em;text-transform:uppercase;color:var(--clay-deep)}
.post-card h3{font-size:clamp(1.25rem,1.05rem+0.7vw,1.7rem);font-weight:500;line-height:1.18}
.post-card p{color:var(--ink-soft);font-size:0.96rem;margin-bottom:0.3rem}
.post-meta{margin-top:auto;font-size:0.83rem;color:var(--ink-faint);display:flex;gap:0.7rem;align-items:center}
.post-meta .read{color:var(--sage-deep);font-weight:600}
/* featured large card layout */
.post-card.feature{grid-row:span 2}
.post-card.feature .post-thumb{aspect-ratio:16/11}
.post-card.feature h3{font-size:clamp(1.6rem,1.2rem+1.4vw,2.4rem)}
.post-card.feature .post-body{padding:1.8rem 2rem 2.1rem}
.secondary-stack{display:grid;gap:clamp(1.5rem,3vw,2.2rem)}
.post-card.row{flex-direction:row}
.post-card.row .post-thumb{aspect-ratio:1;width:40%;flex-shrink:0}
.post-card.row .post-body{padding:1.3rem 1.4rem}
@media(max-width:860px){
  .blog-grid{grid-template-columns:1fr}
  .post-card.feature{grid-row:auto}
  .post-card.row{flex-direction:column}
  .post-card.row .post-thumb{width:100%;aspect-ratio:16/10}
}

/* thumb palettes */
.t-sage{background:linear-gradient(150deg,var(--sage-tint),oklch(0.84 0.04 150))}
.t-clay{background:linear-gradient(150deg,var(--blush),oklch(0.82 0.06 40))}
.t-dusk{background:linear-gradient(150deg,oklch(0.88 0.03 280),oklch(0.84 0.04 250))}
.t-gold{background:linear-gradient(150deg,oklch(0.91 0.04 90),oklch(0.85 0.06 70))}
.thumb-leaf{color:oklch(0.5 0.06 156 / .4)}

/* ---------- Testimonial band ---------- */
.testi{background:var(--clay);color:var(--surface);text-align:center}
.testi .wrap{padding-block:clamp(4rem,8vw,6.5rem)}
.testi .quote-mark{font-family:'Fraunces',serif;font-size:4rem;line-height:0.5;color:oklch(0.82 0.06 50);display:block;margin-bottom:0.6rem}
.testi blockquote{font-family:'Fraunces',serif;font-style:italic;font-weight:430;font-size:clamp(1.5rem,1.1rem+1.8vw,2.4rem);line-height:1.35;max-width:24ch;margin:0 auto 1.5rem}
.testi cite{font-style:normal;font-size:0.92rem;letter-spacing:0.06em;color:oklch(0.94 0.02 60)}

/* ---------- FAQ ---------- */
.faq-list{max-width:800px;margin-inline:auto}
.faq{border-bottom:1px solid var(--line)}
.faq summary{
  list-style:none;cursor:pointer;padding:1.5rem 0;display:flex;justify-content:space-between;gap:1.5rem;align-items:center;
  font-family:'Fraunces',serif;font-size:clamp(1.1rem,1rem+0.5vw,1.4rem);font-weight:500;color:var(--ink);
  transition:color .3s var(--ease);
}
.faq summary::-webkit-details-marker{display:none}
.faq summary:hover{color:var(--sage)}
.faq .ico{flex-shrink:0;width:24px;height:24px;position:relative;transition:transform .5s var(--ease)}
.faq .ico::before,.faq .ico::after{content:"";position:absolute;background:var(--sage);border-radius:2px}
.faq .ico::before{left:0;top:50%;width:100%;height:2px;transform:translateY(-50%)}
.faq .ico::after{top:0;left:50%;height:100%;width:2px;transform:translateX(-50%)}
.faq[open] .ico{transform:rotate(135deg)}
.faq .answer{overflow:hidden;color:var(--ink-soft);padding-right:2.5rem}
.faq .answer p{padding-bottom:1.5rem}

/* ---------- Contact / CTA ---------- */
.contact{background:var(--sand-deep);position:relative;overflow:hidden}
.contact-inner{display:grid;grid-template-columns:1.05fr 0.95fr;gap:clamp(2rem,5vw,4rem);align-items:center}
.contact h2{font-size:clamp(2rem,1.5rem+2vw,3.4rem);margin-bottom:0.5em;max-width:16ch;font-weight:450}
.contact h2 em{color:var(--sage)}
.contact p.sub{color:var(--ink-soft);font-size:1.1rem;max-width:46ch;margin-bottom:2rem}
.contact-card{background:var(--surface);border:1px solid var(--line-soft);border-radius:24px;padding:2.2rem;box-shadow:0 30px 70px -42px oklch(0.38 0.04 160 / .4)}
.contact-row{display:flex;gap:1rem;align-items:flex-start;padding:1.1rem 0;border-bottom:1px solid var(--line-soft)}
.contact-row:last-of-type{border-bottom:none}
.contact-row .ci{flex-shrink:0;width:44px;height:44px;border-radius:13px;background:var(--sage-tint);display:grid;place-items:center;color:var(--sage-deep)}
.contact-row .ci svg{width:20px;height:20px}
.contact-row .label{font-size:0.76rem;text-transform:uppercase;letter-spacing:0.1em;color:var(--ink-faint);font-weight:600}
.contact-row .val{display:block;font-size:1.05rem;color:var(--ink);font-weight:500}
.contact-row .val + .val{margin-top:0.2rem}
.contact-row a.val{transition:color .3s var(--ease)}
.contact-row a.val:hover{color:var(--sage)}
.full-btn{width:100%;justify-content:center;margin-top:1.5rem}

/* ---------- Footer ---------- */
footer{background:oklch(0.52 0.052 159);color:oklch(0.94 0.018 150);padding-block:clamp(2.5rem,5vw,4rem)}
.foot-grid{display:flex;flex-wrap:wrap;justify-content:space-between;gap:2.5rem}
.foot-brand{display:flex;align-items:center;gap:0.7em;font-family:'Fraunces',serif;font-size:1.25rem;color:oklch(0.97 0.012 150)}
.foot-brand .sprig{width:24px;height:24px;color:oklch(0.86 0.05 150)}
.foot-cols{display:flex;gap:3.5rem;flex-wrap:wrap}
.foot-col h4{font-family:'Inter',sans-serif;font-size:0.74rem;letter-spacing:0.12em;text-transform:uppercase;color:oklch(0.84 0.035 150);margin-bottom:0.9rem;font-weight:600}
.foot-col a{display:block;font-size:0.92rem;color:oklch(0.92 0.02 150);padding:0.27rem 0;transition:color .3s var(--ease)}
.foot-col a:hover{color:oklch(0.99 0.005 150)}
.foot-col a.ig-link{display:inline-flex;align-items:center;gap:0.45em}
.ig-ico{width:16px;height:16px;flex:none}
.bg-sage{background:var(--sage-deep);color:oklch(0.9 0.02 130)}
.bg-sage-soft{background:var(--sage-tint)}
.bg-sage-mid{background:oklch(0.52 0.052 159);color:oklch(0.94 0.018 150)}
.statement.bg-sage-mid p{color:oklch(0.96 0.015 150)}
.statement.bg-sage-mid .hl{color:oklch(0.88 0.07 75)}
.statement.bg-sage-mid .sig{color:oklch(0.85 0.025 150)}
.bg-sage .eyebrow{color:oklch(0.82 0.07 130)}
.bg-sage h2,.bg-sage .loc-address,.bg-sage .edu-title{color:var(--sand)}
.bg-sage h2 em{color:inherit}
.bg-sage .section-head p,.bg-sage .sub,.bg-sage .edu-org{color:oklch(0.86 0.02 120)}
.bg-sage .edu-mark{background:var(--sand);box-shadow:0 0 0 4px oklch(0.7 0.05 150 / .4)}
.bg-sage .btn-primary{background:var(--sand);color:var(--sage-deep)}
.bg-sage .btn-primary:hover{background:oklch(0.99 0.005 85)}
.statement.bg-sage p{color:oklch(0.95 0.015 130)}
.statement.bg-sage .hl{color:oklch(0.86 0.085 72)}
.statement.bg-sage .sig{color:oklch(0.82 0.03 130)}
.foot-bottom{margin-top:2.6rem;padding-top:1.5rem;border-top:1px solid oklch(0.66 0.045 156);display:flex;flex-wrap:wrap;justify-content:space-between;gap:1rem;font-size:0.82rem;color:oklch(0.86 0.025 150)}
.foot-bottom a{color:oklch(0.96 0.012 150)}
.disclaimer{max-width:62ch;font-size:0.8rem;color:oklch(0.85 0.022 150);line-height:1.55;margin-top:0.6rem}

/* ---------- Article pages ---------- */
.article-hero{padding-top:clamp(2.5rem,5vw,4rem);padding-bottom:clamp(1.5rem,3vw,2.5rem)}
.crumb{font-size:0.85rem;color:var(--ink-faint);margin-bottom:1.5rem;display:flex;gap:0.5em;align-items:center}
.crumb a:hover{color:var(--sage)}
.article-hero .post-cat{display:block;margin-bottom:1rem}
.article-hook{font-family:'Fraunces',Georgia,serif;font-style:italic;font-weight:450;font-size:clamp(1.5rem,1.2rem+1.4vw,2.2rem);line-height:1.25;color:var(--sage-deep);max-width:24ch;margin-bottom:1rem}
.article-hero h1{font-size:clamp(2.1rem,1.5rem+2.6vw,3.6rem);font-weight:450;max-width:18ch;margin-bottom:1.1rem;line-height:1.08}
.article-hero .standfirst{font-size:clamp(1.15rem,1rem+0.6vw,1.4rem);color:var(--ink-soft);max-width:60ch;line-height:1.5}
.byline{display:flex;align-items:center;gap:0.8rem;margin-top:1.8rem;font-size:0.9rem;color:var(--ink-soft)}
.byline .av{width:42px;height:42px;border-radius:50%;background:var(--sage-tint);display:grid;place-items:center;color:var(--sage-deep);font-family:'Fraunces',serif;font-weight:600}
.byline strong{color:var(--ink);font-weight:600}
.article-cover{height:clamp(220px,34vw,420px);border-radius:24px;margin-block:clamp(1.5rem,3vw,2.5rem);position:relative;overflow:hidden;display:flex;align-items:center;justify-content:center}
.article-cover svg{position:absolute;inset:0;width:100%;height:100%}

.prose{max-width:var(--readw);margin-inline:auto}
.prose > *{margin-bottom:1.4rem}
.prose p{color:var(--ink-soft);font-size:1.1rem;line-height:1.78}
.prose p.lead{font-size:1.3rem;color:var(--ink);line-height:1.6}
.prose h2{font-size:clamp(1.6rem,1.3rem+1vw,2.2rem);font-weight:500;margin-top:2.6rem;margin-bottom:1rem}
.prose h3{font-size:1.35rem;font-weight:500;margin-top:1.8rem;margin-bottom:0.6rem;color:var(--ink)}
.prose ul,.prose ol{padding-left:1.3rem;color:var(--ink-soft)}
.prose li{margin-bottom:0.6rem;font-size:1.08rem;line-height:1.7;padding-left:0.3rem}
.prose li::marker{color:var(--sage)}
.prose blockquote{
  border-top:2px solid var(--sage);border-bottom:2px solid var(--sage);
  padding:1.4rem 0;margin-block:2rem;
  font-family:'Fraunces',serif;font-style:italic;font-size:clamp(1.3rem,1.1rem+1vw,1.7rem);
  line-height:1.4;color:var(--ink);
}
.prose strong{color:var(--ink);font-weight:600}
.prose a{color:var(--sage-deep);text-decoration:underline;text-underline-offset:3px;text-decoration-color:var(--line)}
.prose a:hover{text-decoration-color:var(--sage)}
.callout{
  background:var(--sage-tint);border-radius:18px;padding:1.6rem 1.8rem;margin-block:2rem;
}
.callout h4{font-family:'Fraunces',serif;font-size:1.2rem;font-weight:600;margin-bottom:0.5rem;color:var(--sage-deep)}
.callout p{color:var(--ink-soft);font-size:1rem;margin:0}
.article-foot{max-width:var(--readw);margin:clamp(2.5rem,5vw,4rem) auto 0;padding-top:2rem;border-top:1px solid var(--line)}
.article-cta{background:var(--surface);border:1px solid var(--line-soft);border-radius:22px;padding:2rem 2.2rem;display:flex;flex-wrap:wrap;justify-content:space-between;align-items:center;gap:1.5rem}
.article-cta h3{font-size:1.4rem;font-weight:500;margin-bottom:0.3rem}
.article-cta p{color:var(--ink-soft);font-size:0.98rem;max-width:38ch}

.related{margin-top:clamp(3rem,6vw,5rem)}
.related h2{font-size:1.6rem;font-weight:500;margin-bottom:1.5rem;text-align:center}

/* blog listing hero */
.list-hero{text-align:center;padding-top:clamp(3rem,6vw,5rem);padding-bottom:clamp(1rem,2vw,2rem)}
.list-hero h1{font-size:clamp(2.4rem,1.6rem+3vw,4rem);font-weight:450;margin-bottom:0.6rem}
.list-hero p{color:var(--ink-soft);font-size:1.15rem;max-width:50ch;margin-inline:auto}
.filterbar{display:flex;flex-wrap:wrap;gap:0.6rem;justify-content:center;margin-top:2rem}
.filterbar .tag{font-family:inherit;font-size:0.85rem;font-weight:500;padding:0.5em 1.1em;border-radius:999px;border:1px solid var(--line);color:var(--ink-soft);background:var(--surface);cursor:pointer;transition:all .3s var(--ease)}
.filterbar .tag.active,.filterbar .tag:hover{background:var(--sage);border-color:var(--sage);color:var(--sand)}
.list-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:clamp(1.5rem,3vw,2.2rem)}
@media(max-width:900px){.list-grid{grid-template-columns:repeat(2,1fr)}}
@media(max-width:600px){.list-grid{grid-template-columns:1fr}}

/* ---------- Reveal ---------- */
.reveal{opacity:0;transform:translateY(26px);transition:opacity .9s var(--ease), transform .9s var(--ease)}
.reveal.in{opacity:1;transform:none}
@media (prefers-reduced-motion: reduce){.reveal{opacity:1;transform:none;transition:none}}

/* ---------- Responsive ---------- */
@media(max-width:900px){
  .split{grid-template-columns:1fr}
  .split.reverse .split-media{order:0}
  .media-frame{max-width:420px;margin-inline:auto;aspect-ratio:5/4}
  .steps{grid-template-columns:1fr}
  .contact-inner{grid-template-columns:1fr}
}
@media(max-width:760px){
  .navlinks{
    position:fixed;inset:76px 0 auto 0;background:var(--sand);
    flex-direction:column;align-items:flex-start;gap:0;padding:1rem clamp(1.25rem,5vw,4rem) 2rem;
    border-bottom:1px solid var(--line);
    transform:translateY(-120%);transition:transform .5s var(--ease);
    box-shadow:0 20px 40px -20px oklch(0.3 0.02 60 / .2);
  }
  .navlinks.open{transform:translateY(0)}
  .navlinks a:not(.btn){width:100%;padding:0.9rem 0;border-bottom:1px solid var(--line-soft);font-size:1.05rem}
  .nav-cta{margin:1rem 0 0;width:100%;justify-content:center}
  .menu-toggle{display:block}
  .blog-head{flex-direction:column;align-items:flex-start}
}

/* ============ LOGO MARK ============ */
.brand .logomark{width:42px;height:42px;flex-shrink:0;display:block}
.logomark{overflow:visible}
.lm-ring{fill:none;stroke:var(--sage);stroke-width:2;opacity:.85}
.lm-stem{fill:none;stroke:var(--sage);stroke-width:2;stroke-linecap:round;opacity:.7}
.lm-leaf path{fill:var(--sage);opacity:.45}
.lm-dot-a{fill:var(--clay)}
.lm-dot-b{fill:var(--sage-mid)}
.lm-l{fill:var(--sage-mid)}
.lm-p{fill:var(--sage-deep)}
.brand .logomark .lm-l,.brand .logomark .lm-p,
.brand .logomark .lm-ring,.brand .logomark .lm-stem,
.brand .logomark .lm-leaf path,.brand .logomark .lm-dot-a,.brand .logomark .lm-dot-b{
  transition:opacity .4s var(--ease)}
.brand:hover .logomark .lm-ring{opacity:1}
.foot-brand .logomark{width:40px;height:40px;flex-shrink:0;display:block}
.foot-brand .lm-ring,.foot-brand .lm-stem{stroke:oklch(0.88 0.045 150);opacity:.85}
.foot-brand .lm-leaf path{fill:oklch(0.88 0.045 150);opacity:.55}
.foot-brand .lm-l{fill:oklch(0.97 0.012 150)}
.foot-brand .lm-p{fill:oklch(0.90 0.04 150)}
.foot-brand .lm-dot-a{fill:var(--clay)}
.foot-brand .lm-dot-b{fill:oklch(0.86 0.05 150)}

/* ============ MAP ============ */
.contact-row .val-sub{font-size:0.9rem;color:var(--ink-faint);margin-top:0.15rem}
.map-wrap{position:relative;margin-top:clamp(2rem,4vw,3.5rem);border-radius:24px;overflow:hidden;border:1px solid var(--line-soft);box-shadow:0 30px 70px -42px oklch(0.38 0.04 160 / .35);line-height:0}
.map{width:100%;height:400px;border:0;display:block}
.map-link{position:absolute;right:1rem;bottom:1rem;display:inline-flex;align-items:center;gap:0.45em;background:var(--surface);color:var(--sage-deep);font-family:'Inter',sans-serif;font-size:0.92rem;font-weight:600;line-height:1;padding:0.7rem 1.1rem;border-radius:999px;box-shadow:0 8px 22px -10px oklch(0.3 0.02 60 / .4);transition:transform .4s var(--ease),color .3s var(--ease)}
.map-link:hover{transform:translateY(-2px);color:var(--clay-deep)}
.map-link .arrow{transition:transform .4s var(--ease)}
.map-link:hover .arrow{transform:translateX(3px)}
@media(max-width:760px){.map{height:300px}}

/* ============ OFFICE GALLERY ============ */
.loc-grid{display:grid;grid-template-columns:1fr 1fr;gap:clamp(1.6rem,4vw,3rem);margin-top:clamp(1.8rem,4vw,2.8rem)}
.loc-item .map-wrap{margin-top:1rem}
.loc-item .map{height:clamp(260px,28vw,340px)}
.loc-address{font-family:'Fraunces',serif;font-size:clamp(1.3rem,1.05rem+1vw,1.8rem);font-weight:450;line-height:1.25;letter-spacing:-0.01em;color:var(--ink);margin:0}
@media(max-width:760px){.loc-grid{grid-template-columns:1fr}}
.office-section{margin-top:clamp(2.5rem,5vw,4.5rem)}
.office-section h2{margin:0.4rem 0 0.6rem}
.office-section .sub{color:var(--ink-soft);font-size:1.02rem;line-height:1.6;max-width:54ch;margin-bottom:clamp(1.4rem,3vw,2rem)}
.office-grid{display:grid;grid-template-columns:1fr 1fr;gap:clamp(0.9rem,2vw,1.4rem)}
.office-grid img{width:100%;height:clamp(220px,30vw,360px);object-fit:cover;border-radius:24px;border:1px solid var(--line-soft);box-shadow:0 26px 60px -42px oklch(0.38 0.04 160 / .4);display:block}
@media(max-width:680px){.office-grid{grid-template-columns:1fr}.office-grid img{height:clamp(220px,56vw,320px)}}

/* ============ BOOKING ============ */
.booking{margin-top:clamp(2.5rem,5vw,4.5rem)}
.booking-head{max-width:40ch;margin-bottom:clamp(1.6rem,3vw,2.4rem)}
.booking-head h2{margin:0.4rem 0 0.7rem}
.booking-head .sub{color:var(--ink-soft);font-size:1.02rem;line-height:1.65}
.booking-placeholder{display:flex;flex-direction:column;align-items:center;text-align:center;gap:0.85rem;padding:clamp(2.4rem,5vw,3.6rem) clamp(1.4rem,4vw,3rem);border-radius:24px;background:var(--sand-deep);border:1px dashed var(--line)}
.bp-icon{display:grid;place-items:center;width:56px;height:56px;border-radius:16px;background:var(--sage-tint);color:var(--sage-deep)}
.bp-icon svg{width:28px;height:28px}
.bp-title{font-family:'Fraunces',Georgia,serif;font-size:1.2rem;color:var(--ink);margin:0}
.bp-note{max-width:46ch;font-size:0.95rem;line-height:1.6;color:var(--ink-soft);margin:0}
.booking-placeholder .btn{margin-top:0.6rem}
.bp-alt{font-size:0.9rem;color:var(--ink-soft);text-decoration:underline;text-underline-offset:3px;transition:color .3s var(--ease)}
.bp-alt:hover{color:var(--sage-deep)}

/* ============ MULTIPAGE NAV + CTA ============ */
.navlinks a[aria-current="page"]:not(.btn){color:var(--ink)}
.navlinks a[aria-current="page"]:not(.btn)::after{width:100%}
.section-cta{margin-top:clamp(2rem,3.5vw,3rem);display:flex;justify-content:center}
.services .textlink{color:oklch(0.85 0.07 130)}
.services .textlink:hover{color:var(--sand)}

/* ============ HOME EXPLORE GRID ============ */
.explore-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:clamp(0.9rem,1.6vw,1.4rem);margin-top:clamp(2rem,3vw,3rem)}
.explore-card{display:flex;flex-direction:column;gap:0.5rem;padding:clamp(1.6rem,2.4vw,2.4rem);background:var(--surface);border:1px solid var(--line);border-radius:18px;color:var(--ink);transition:transform .5s var(--ease),border-color .5s var(--ease),background .5s var(--ease)}
.explore-card:hover{transform:translateY(-4px);border-color:var(--sage);background:var(--sand)}
.explore-card .ec-eyebrow{font-family:"Fraunces",Georgia,serif;font-size:1rem;color:var(--sage-deep);letter-spacing:.04em}
.explore-card h3{font-family:"Fraunces",Georgia,serif;font-weight:500;font-size:clamp(1.3rem,1.1rem+0.9vw,1.7rem);margin:0.1rem 0 0.2rem}
.explore-card p{color:var(--ink-soft);font-size:0.98rem;line-height:1.55;margin:0}
.explore-card .ec-link{margin-top:auto;padding-top:0.9rem;display:inline-flex;align-items:center;gap:0.4rem;color:var(--sage-deep);font-weight:600;font-size:0.95rem}
.explore-card:hover .ec-link .arrow{transform:translateX(4px)}
.explore-card .ec-link .arrow{transition:transform .4s var(--ease)}
@media(max-width:680px){.explore-grid{grid-template-columns:1fr}}

/* ============ HOME · THERAPY CAN ============ */
.therapy-list{display:grid;grid-template-columns:1fr 1fr;gap:0;margin-top:clamp(2rem,3vw,3rem);border-top:1px solid var(--line)}
.tc{display:flex;gap:1rem;align-items:flex-start;padding:clamp(1.3rem,2vw,1.8rem) 0;border-bottom:1px solid var(--line)}
.tc:nth-child(odd){padding-right:clamp(1.2rem,2.5vw,2.6rem)}
.tc:nth-child(even){padding-left:clamp(1.2rem,2.5vw,2.6rem);border-left:1px solid var(--line)}
.tc-mark{flex-shrink:0;width:1.6rem;height:1.6rem;margin-top:0.15rem;border-radius:50%;background:var(--sage-tint);position:relative}
.tc-mark::after{content:"";position:absolute;inset:0;margin:auto;width:0.5rem;height:0.5rem;border-radius:50%;background:var(--sage)}
.tc p{color:var(--ink-soft);font-size:1rem;line-height:1.6;margin:0}
@media(max-width:680px){
  .therapy-list{grid-template-columns:1fr}
  .tc:nth-child(even){padding-left:0;border-left:none}
  .tc:nth-child(odd){padding-right:0}
}
