/* =============================================================================
   Wald Psychology — main.css
   Shared design system + base for all pages. "Warm Sanctuary" direction.
   Page agents: append PAGE-SPECIFIC sections after the sentinel at the very
   bottom of this file, inside a `/* ---- page: <name> ---- *​/` block. Do NOT
   edit the shared blocks above the sentinel.
   ========================================================================== */

/* -----------------------------------------------------------------------------
   1. TOKENS (design custom properties — from DESIGN.md)
   -------------------------------------------------------------------------- */
:root {
  /* palette */
  --linen:      #F4F0E6;   /* page background */
  --linen-2:    #EDE7D9;   /* alternate section band */
  --ivory:      #FBF8F1;   /* cards, form fields, text on sage */
  --ink:        #2E3A2E;   /* headlines, near-black green */
  --body:       #4C574B;   /* body text */
  --sage:       #8A9B7D;   /* mid sage: bands, icons */
  --sage-deep:  #66795A;   /* buttons, footer, links */
  --sage-tint:  #E6E8D9;   /* pale sage section tint */
  --terracotta: #C0764F;   /* RARE accent only */
  --line:       #D9D2C0;   /* hairline rules */

  /* type families */
  --serif: "EB Garamond", Georgia, "Times New Roman", serif;
  --sans:  "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  /* rhythm */
  --section-y: clamp(64px, 9vw, 120px);   /* vertical section padding */
  --gutter:    clamp(20px, 5vw, 64px);    /* horizontal page gutter */
  --maxw:      1200px;                    /* content max width */
  --maxw-narrow: 760px;                   /* prose / centered headers */
  --radius:    14px;

  /* motion */
  --ease: cubic-bezier(.22, .61, .36, 1);
}

/* -----------------------------------------------------------------------------
   2. RESET
   -------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html, body {
  overflow-x: hidden;              /* mobile: never allow horizontal scroll */
  max-width: 100%;
}
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
img, picture, svg, video { display: block; max-width: 100%; }
img { height: auto; }
button, input, select, textarea { font: inherit; color: inherit; }
button { cursor: pointer; background: none; border: none; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; padding: 0; }
h1, h2, h3, h4 { font-weight: 500; }

/* -----------------------------------------------------------------------------
   3. BASE TYPOGRAPHY
   -------------------------------------------------------------------------- */
body {
  font-family: var(--sans);
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--body);
  background: var(--linen);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
h1, h2, h3 {
  font-family: var(--serif);
  color: var(--ink);
  line-height: 1.12;
  font-weight: 500;
  letter-spacing: .002em;
}
h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
h2 { font-size: clamp(1.9rem, 3.2vw, 2.6rem); }
h3 { font-size: clamp(1.3rem, 2vw, 1.6rem); }
p { color: var(--body); }
p + p { margin-top: 1.1em; }
.caption { font-size: .9375rem; }
strong { font-weight: 600; color: var(--ink); }

/* eyebrow kicker */
.eyebrow {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .18em;
  color: var(--sage-deep);
}

/* -----------------------------------------------------------------------------
   4. LAYOUT HELPERS
   -------------------------------------------------------------------------- */
.wrap {                                   /* standard content container */
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.wrap-narrow { max-width: var(--maxw-narrow); }
.section { padding-block: var(--section-y); }
.section-tight { padding-block: clamp(48px, 6vw, 80px); }
.bleed { width: 100%; }                   /* full-bleed band */

/* responsive grid helpers */
.grid { display: grid; gap: clamp(24px, 4vw, 56px); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 72px); align-items: center; }
@media (max-width: 860px) {
  .grid-2, .grid-3, .grid-4, .split { grid-template-columns: 1fr; }
}

/* -----------------------------------------------------------------------------
   5. SECTION HEADER PATTERN (eyebrow -> serif title -> hairline/leaf divider)
   -------------------------------------------------------------------------- */
.section-head { text-align: center; max-width: 720px; margin-inline: auto; }
.section-head .eyebrow { display: block; margin-bottom: 14px; }
.section-head h2 { margin-bottom: 0; }
.section-head p { margin-top: 18px; color: var(--body); }

/* hairline rule divider (44px) */
.rule { width: 44px; height: 2px; background: var(--sage); border: 0; margin: 20px auto 0; }
.rule-terra { background: var(--terracotta); }        /* rare accent variant */

/* small botanical leaf divider (svg baked as background) */
.leaf-divider {
  width: 40px; height: 22px; margin: 18px auto 0;
  background: no-repeat center/contain url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 60 26' fill='none' stroke='%238A9B7D' stroke-width='1.5' stroke-linecap='round'%3E%3Cpath d='M30 24V8'/%3E%3Cpath d='M30 13c-4-4-9-4-13-3 1 5 6 8 13 6z'/%3E%3Cpath d='M30 13c4-4 9-4 13-3-1 5-6 8-13 6z'/%3E%3Cpath d='M30 8a3 3 0 1 1 0-6 3 3 0 0 1 0 6z' fill='%238A9B7D' stroke='none'/%3E%3C/svg%3E");
}

/* -----------------------------------------------------------------------------
   6. BUTTONS
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5em;
  font-family: var(--sans); font-size: .95rem; font-weight: 500;
  letter-spacing: .01em;
  color: var(--ivory);
  background: var(--sage-deep);
  padding: 14px 30px;
  border-radius: 6px;
  transition: background .25s var(--ease), transform .25s var(--ease);
  border: 1px solid transparent;
}
.btn:hover { background: #58694c; transform: translateY(-1px); }
.btn-ghost {
  color: var(--sage-deep);
  background: transparent;
  border: 1px solid var(--sage);
}
.btn-ghost:hover { background: rgba(138,155,125,.12); color: var(--ink); transform: translateY(-1px); }
/* ghost button on a sage band */
.on-sage .btn-ghost { color: var(--ivory); border-color: rgba(255,255,255,.5); }
.on-sage .btn-ghost:hover { background: rgba(255,255,255,.12); color: var(--ivory); }
.text-link {                              /* underlined inline call/link */
  color: var(--sage-deep);
  border-bottom: 1px solid var(--sage);
  padding-bottom: 1px;
  transition: color .2s var(--ease), border-color .2s var(--ease);
}
.text-link:hover { color: var(--ink); border-color: var(--ink); }

/* -----------------------------------------------------------------------------
   7. HEADER (sticky) + MOBILE FULL-SCREEN MENU
   -------------------------------------------------------------------------- */
.site-header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(244,240,230,.96);
  backdrop-filter: saturate(1.2) blur(10px);
  -webkit-backdrop-filter: saturate(1.2) blur(10px);
  border-bottom: 1px solid transparent;
  transition: box-shadow .3s var(--ease), border-color .3s var(--ease);
}
.site-header.scrolled {
  border-bottom-color: var(--line);
  box-shadow: 0 6px 20px rgba(46,58,46,.05);      /* < 24px blur per contract */
}
.header-inner {
  max-width: var(--maxw); margin-inline: auto;
  padding: 16px var(--gutter);
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
/* brand mark */
.brand { display: flex; align-items: center; gap: 10px; }
.brand svg { width: 26px; height: 26px; flex: none; }
.brand-name { font-family: var(--serif); font-size: 22px; color: var(--ink); line-height: 1; font-weight: 500; }
.brand-sub { display: block; font-family: var(--sans); font-size: 10px; letter-spacing: .16em; text-transform: uppercase; color: var(--sage-deep); margin-top: 3px; }

/* desktop nav */
.nav { display: flex; align-items: center; gap: 26px; }
.nav-links { display: flex; align-items: center; gap: 22px; }
.nav-links a {
  font-family: var(--sans); font-size: 15px; color: var(--body);
  padding-bottom: 2px; position: relative;
  transition: color .2s var(--ease);
}
.nav-links a:hover { color: var(--ink); }
/* active nav item: 2px sage underline, offset 6px */
.nav-links a[aria-current="page"] {
  color: var(--ink);
  box-shadow: inset 0 -2px 0 var(--sage);
  padding-bottom: 6px;
}
.nav .btn { padding: 10px 20px; font-size: .9rem; }

/* hamburger (hidden on desktop) */
.nav-toggle { display: none; width: 42px; height: 42px; align-items: center; justify-content: center; }
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  content: ""; display: block; width: 22px; height: 1.5px; background: var(--ink);
  transition: transform .3s var(--ease), opacity .2s var(--ease); position: relative;
}
.nav-toggle span::before { position: absolute; top: -7px; }
.nav-toggle span::after  { position: absolute; top: 7px; }
body.menu-open .nav-toggle span { background: transparent; }
body.menu-open .nav-toggle span::before { transform: translateY(7px) rotate(45deg); }
body.menu-open .nav-toggle span::after  { transform: translateY(-7px) rotate(-45deg); }

/* full-screen mobile overlay menu */
.mobile-menu {
  position: fixed; inset: 0; z-index: 55;
  background: var(--linen);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 6px; padding: 80px 24px 40px;
  opacity: 0; visibility: hidden; transition: opacity .35s var(--ease), visibility .35s var(--ease);
}
body.menu-open .mobile-menu { opacity: 1; visibility: visible; }
.mobile-menu a {
  font-family: var(--serif); font-size: clamp(1.6rem, 7vw, 2.1rem); color: var(--ink);
  padding: 10px 0; opacity: 0; transform: translateY(12px);
}
body.menu-open .mobile-menu a { animation: menuIn .5s var(--ease) forwards; }
.mobile-menu a[aria-current="page"] { color: var(--sage-deep); }
.mobile-menu .btn { margin-top: 22px; opacity: 0; transform: translateY(12px); font-size: 1rem; }
body.menu-open .mobile-menu .btn { animation: menuIn .5s var(--ease) forwards; animation-delay: .34s; }
@keyframes menuIn { to { opacity: 1; transform: none; } }

@media (max-width: 1024px) {
  .nav-links, .nav > .btn { display: none; }
  .nav-toggle { display: flex; }
}
@media (prefers-reduced-motion: reduce) {
  .mobile-menu a, .mobile-menu .btn { animation: none !important; opacity: 1; transform: none; }
}

/* -----------------------------------------------------------------------------
   8. FOOTER (uniform, all pages)
   -------------------------------------------------------------------------- */
.site-footer { background: var(--sage-deep); color: var(--ivory); }
.footer-top {
  max-width: var(--maxw); margin-inline: auto; padding: clamp(48px, 6vw, 72px) var(--gutter);
  display: grid; grid-template-columns: 1.6fr 1fr 1.2fr 1.2fr; gap: 40px;
}
.site-footer a { color: var(--ivory); opacity: .92; transition: opacity .2s var(--ease); }
.site-footer a:hover { opacity: 1; text-decoration: underline; text-underline-offset: 3px; }
.footer-brand .brand-name { color: var(--ivory); }
.footer-brand p { color: rgba(251,248,241,.82); font-size: .95rem; margin-top: 14px; max-width: 30ch; }
.footer-col h4 {
  font-family: var(--sans); font-size: 12px; text-transform: uppercase; letter-spacing: .16em;
  color: rgba(251,248,241,.7); font-weight: 600; margin-bottom: 16px;
}
.footer-col li { margin-bottom: 10px; font-size: .95rem; color: rgba(251,248,241,.9); }
.footer-legal {
  border-top: 1px solid rgba(255,255,255,.18);
}
.footer-legal-inner {
  max-width: var(--maxw); margin-inline: auto; padding: 20px var(--gutter);
  display: flex; flex-wrap: wrap; gap: 8px 20px; align-items: center; justify-content: space-between;
  font-size: .85rem; color: rgba(251,248,241,.8);
}
.footer-legal-inner nav { display: flex; flex-wrap: wrap; gap: 8px 18px; }
@media (max-width: 860px) {
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px 24px; }
}
@media (max-width: 520px) {
  .footer-top { grid-template-columns: 1fr; }
}

/* -----------------------------------------------------------------------------
   9. SAGE FULL-BLEED BAND + WHITE VERTICAL DIVIDERS
   -------------------------------------------------------------------------- */
.band-sage { background: var(--sage); color: var(--ivory); }
.band-sage h2, .band-sage h3 { color: var(--ivory); }
.band-sage p { color: rgba(251,248,241,.9); }
.band-sage .eyebrow { color: rgba(251,248,241,.85); }
.band-sage .rule { background: rgba(255,255,255,.55); }
.band-tint { background: var(--sage-tint); }
.band-linen2 { background: var(--linen-2); }

/* columns divided by faint white vertical rules */
.divided-cols { display: grid; }
.divided-cols > * { padding-inline: clamp(16px, 2.5vw, 30px); }
.divided-cols.cols-4 { grid-template-columns: repeat(4, 1fr); }
.divided-cols.cols-3 { grid-template-columns: repeat(3, 1fr); }
.divided-cols > * + * { border-left: 1px solid rgba(255,255,255,.28); }
/* on light tint bands use a warm hairline instead of white */
.band-tint .divided-cols > * + * { border-left-color: var(--line); }
@media (max-width: 860px) {
  .divided-cols.cols-4, .divided-cols.cols-3 { grid-template-columns: 1fr 1fr; gap: 32px 0; }
  .divided-cols.cols-4 > *, .divided-cols.cols-3 > * { padding-block: 8px; }
  .divided-cols > *:nth-child(odd) { border-left: 0; }
}
@media (max-width: 520px) {
  .divided-cols.cols-4, .divided-cols.cols-3 { grid-template-columns: 1fr; }
  .divided-cols > * { border-left: 0 !important; border-top: 1px solid rgba(255,255,255,.24); padding-block: 26px; }
  .band-tint .divided-cols > * { border-top-color: var(--line); }
  .divided-cols > *:first-child { border-top: 0; }
}

/* -----------------------------------------------------------------------------
   10. BOTANICAL ICON + NUMBERED STEP CIRCLES
   -------------------------------------------------------------------------- */
.botanical { width: 40px; height: 40px; margin: 0 auto 14px; }
.botanical svg { width: 100%; height: 100%; stroke: var(--sage); stroke-width: 1.5; fill: none; }
.band-sage .botanical svg { stroke: var(--ivory); }

/* numbered process step */
.step { text-align: center; }
.step-num {
  width: 52px; height: 52px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif); font-size: 1.4rem; color: var(--sage-deep);
  border: 1px solid var(--sage); margin: 0 auto 18px;
}
.step-num.solid { background: var(--sage); border-color: var(--sage); color: var(--ivory); }
.band-sage .step-num { border-color: rgba(255,255,255,.6); color: var(--ivory); }
.step h3 { font-size: 1.25rem; margin-bottom: 8px; }
/* big serif ordinal (01 / 02 / 03) variant */
.ordinal { font-family: var(--serif); font-size: 2.6rem; color: var(--sage); line-height: 1; }

/* -----------------------------------------------------------------------------
   11. QUOTE INTERLUDE
   -------------------------------------------------------------------------- */
.quote { text-align: center; max-width: 820px; margin-inline: auto; position: relative; }
.quote .mark {
  font-family: var(--serif); font-size: 4rem; line-height: .5; color: var(--terracotta);
  display: block; margin-bottom: 10px; height: 34px;
}
.quote blockquote {
  font-family: var(--serif); font-size: clamp(1.5rem, 3vw, 2.1rem); line-height: 1.35; color: var(--ink);
  font-style: italic;
}
.quote cite { display: block; margin-top: 22px; font-family: var(--sans); font-style: normal; font-size: .9rem; letter-spacing: .04em; color: var(--sage-deep); }

/* -----------------------------------------------------------------------------
   12. FAQ ACCORDION
   -------------------------------------------------------------------------- */
.faq { max-width: 820px; margin-inline: auto; }
.faq-item { border-top: 1px solid var(--line); }
.faq-item:last-child { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%; text-align: left; display: flex; align-items: center; justify-content: space-between; gap: 20px;
  padding: 26px 4px; font-family: var(--serif); font-size: clamp(1.15rem, 2vw, 1.4rem); color: var(--ink);
}
.faq-q .plus { flex: none; width: 22px; height: 22px; position: relative; }
.faq-q .plus::before, .faq-q .plus::after {
  content: ""; position: absolute; inset: 0; margin: auto; background: var(--sage-deep);
  transition: transform .3s var(--ease), opacity .3s var(--ease);
}
.faq-q .plus::before { width: 22px; height: 1.5px; }
.faq-q .plus::after  { width: 1.5px; height: 22px; }
.faq-item.open .faq-q .plus::before { transform: rotate(45deg); }
.faq-item.open .faq-q .plus::after  { transform: rotate(45deg); }
.faq-a { overflow: hidden; max-height: 0; transition: max-height .4s var(--ease); }
.faq-a-inner { padding: 0 4px 26px; color: var(--body); max-width: 68ch; }
@media (prefers-reduced-motion: reduce) { .faq-a { transition: none; } }

/* -----------------------------------------------------------------------------
   13. PHOTO FRAME UTILITIES + PENDING PLACEHOLDER
   -------------------------------------------------------------------------- */
.photo-warm { filter: sepia(.08) saturate(.92); }          /* warm a cool photo */
.frame-arch {                                              /* arched top corners */
  border-radius: 50% 50% 8px 8px / 22% 22% 4px 4px;
  overflow: hidden;
}
.frame-mat {                                               /* editorial ivory mat + hairline */
  background: var(--ivory);
  padding: 14px; border: 1px solid var(--line); border-radius: 4px;
}
.frame-mat img { border-radius: 2px; }
.frame-soft { border-radius: var(--radius); overflow: hidden; }
figure.photo { margin: 0; }
figure.photo figcaption { font-size: .85rem; color: var(--sage-deep); margin-top: 10px; }

/* image not yet in manifest: solid sage-tint placeholder (contract rule 7) */
.img-pending {
  background: var(--sage-tint);
  display: flex; align-items: center; justify-content: center;
  color: var(--sage-deep); font-size: .8rem; letter-spacing: .08em; text-transform: uppercase;
  min-height: 220px;
}
.img-pending::after { content: "photo"; opacity: .5; }

/* aspect helpers for image slots */
.ar-16-7 { aspect-ratio: 16 / 7; }
.ar-21-9 { aspect-ratio: 21 / 9; }
.ar-3-4  { aspect-ratio: 3 / 4; }
.ar-4-3  { aspect-ratio: 4 / 3; }
.cover { width: 100%; height: 100%; object-fit: cover; }

/* -----------------------------------------------------------------------------
   14. REVEAL-ON-SCROLL
   -------------------------------------------------------------------------- */
/* content is visible by default (no-JS / crawlers); .js arms the hidden state */
.js .reveal { opacity: 0; transform: translateY(12px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: .08s; }
.reveal-d2 { transition-delay: .16s; }
.reveal-d3 { transition-delay: .24s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* -----------------------------------------------------------------------------
   15. FORMS (shared; used by contact.html)
   -------------------------------------------------------------------------- */
.field { display: block; margin-bottom: 18px; }
.field label { display: block; font-size: .85rem; font-weight: 500; letter-spacing: .04em; color: var(--ink); margin-bottom: 7px; text-transform: uppercase; }
.field input, .field select, .field textarea {
  width: 100%; font-size: 16px;               /* 16px+ prevents iOS auto-zoom */
  background: var(--ivory); border: 1px solid var(--line); border-radius: 6px;
  padding: 13px 14px; color: var(--ink); font-family: var(--sans);
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.field textarea { min-height: 130px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--sage); box-shadow: 0 0 0 3px rgba(138,155,125,.18);
}
.form-note { font-size: .85rem; color: var(--sage-deep); font-style: italic; }

/* =============================================================================
   ===================  PAGE-SPECIFIC SECTIONS BELOW  ==========================
   Page agents append their `/* ---- page: <name> ---- *​/` block after this
   sentinel. Do not edit anything above it.
   ========================================================================== */

/* ---- page: home ---- */
/* Hero: centered wordmark over office photo with a soft curved bottom edge. */
.home-hero { position: relative; text-align: center; overflow: hidden; }
.home-hero .hero-copy {
  position: relative; z-index: 2;
  padding: clamp(40px, 7vw, 76px) var(--gutter) clamp(30px, 5vw, 52px);
  max-width: 760px; margin-inline: auto;
}
.home-hero h1 { font-size: clamp(2.8rem, 7vw, 5.2rem); font-weight: 500; }
.home-hero .hero-sub { font-family: var(--serif); font-size: clamp(1.1rem, 2.4vw, 1.5rem); color: var(--body); margin-top: 8px; }
.home-hero .hero-name { font-family: var(--serif); font-style: italic; font-size: 1.05rem; color: var(--sage-deep); margin-top: 22px; }
.home-hero .btn { margin-top: 22px; }
/* photo band with the soft upward ellipse bottom edge */
.hero-photo { position: relative; width: 100%; }
.hero-photo img { width: 100%; height: clamp(280px, 42vw, 560px); object-fit: cover; display: block; }
.hero-photo::after {                       /* curved linen mask sitting on the photo's bottom */
  content: ""; position: absolute; left: -5%; right: -5%; bottom: -2px; height: 14vw; min-height: 70px;
  background: var(--linen); border-radius: 50% 50% 0 0 / 100% 100% 0 0;
}

/* Meet Dr. Wald split */
.meet-photo { max-width: 460px; }
.meet-text h2 { margin-bottom: 4px; }
.meet-text .rule { margin: 16px 0 24px; }        /* left aligned rule */

/* Thoughtful support band (icon columns on sage-tint) */
.support-col { text-align: center; }
.support-col h3 { font-size: 1.3rem; margin-bottom: 10px; }
.support-col p { font-size: .95rem; }

/* Full-bleed office band */
.office-band img { width: 100%; height: clamp(240px, 34vw, 460px); object-fit: cover; }

/* Support for every part of the journey: white panel + sage panel */
.journey { display: grid; grid-template-columns: 1fr 1fr; align-items: stretch; }
.journey .panel-white { background: var(--ivory); padding: clamp(40px, 5vw, 72px) clamp(28px, 4vw, 56px); }
.journey .panel-white h2 { margin-bottom: 22px; }
.journey .panel-sage { background: var(--sage-tint); padding: clamp(40px, 5vw, 72px) clamp(28px, 4vw, 56px); display: flex; flex-direction: column; justify-content: center; gap: 34px; }
.journey .jrow { display: grid; grid-template-columns: 40px 1fr; gap: 18px; align-items: start; }
.journey .jrow .botanical { margin: 0; width: 34px; height: 34px; }
.journey .jrow h3 { font-size: 1.35rem; color: var(--ink); margin-bottom: 8px; }
.journey .jrow p { font-size: .95rem; }
@media (max-width: 860px) { .journey { grid-template-columns: 1fr; } }

/* Closing CTA band with palm-frond decoration */
.home-cta { position: relative; background: var(--linen-2); text-align: center; overflow: hidden; }
.home-cta .cta-inner { position: relative; z-index: 2; }
.home-cta h2 { margin-bottom: 16px; }
.home-cta .loc { display: inline-flex; align-items: center; gap: 7px; color: var(--sage-deep); font-size: .95rem; margin-bottom: 20px; }
.home-cta .sprig { position: absolute; z-index: 1; pointer-events: none; opacity: .55; }
.home-cta .sprig-tr { right: 0; top: 0; width: min(260px, 34vw); transform: scaleX(1); }
@media (max-width: 620px) { .home-cta .sprig-tr { width: 150px; opacity: .4; } }
