/* ============================================================
   HAVEN — For Birth & Beyond
   Shared design system: tokens, type, components, page styles.
   Loaded by every page. Editorial, calm, mother-centered.
   ============================================================ */

/* ---- Tokens ---------------------------------------------- */
:root{
  /* Brand palette */
  --ivory:        #F7F3ED;
  --ivory-warm:   #FBF8F2;
  --ivory-deep:   #EFE7DA;
  --forest:       #2E5141;
  --forest-deep:  #223D30;
  --forest-700:   #284736;
  --sage:         #AEB8A7;
  --sage-soft:    #D9DFD2;
  --sage-tint:    #E7EBE1;
  --clay:         #C59A90;
  --clay-soft:    #E5D2CB;
  --clay-tint:    #F0E4DF;
  --honey:        #C7A465;
  --honey-soft:   #E2CC9F;

  /* Ink */
  --ink:          #34362E;
  --ink-soft:     #5C5E54;
  --ink-faint:    #888A7E;
  --on-forest:    #F4EFE6;
  --on-forest-dim:#C3CDBF;

  /* Lines */
  --line:         rgba(46,81,65,.16);
  --line-strong:  rgba(46,81,65,.30);
  --line-on-forest: rgba(244,239,230,.18);

  /* Fonts */
  --serif: "Fraunces", Georgia, "Times New Roman", serif;
  --sans:  "Nunito Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  /* Tweakable */
  --h-scale: 1;
  --section-pad: clamp(72px, 9vw, 130px);
  --band-tint: var(--sage-tint);
  --flourish-display: inline-block;
  --reveal-shift: 18px;
  --reveal-dur: .9s;

  /* Layout */
  --container: 1200px;
  --container-narrow: 880px;
  --radius: 14px;
  --radius-pill: 999px;
}

/* ---- Reset ----------------------------------------------- */
*{box-sizing:border-box;}
html{scroll-behavior:smooth;-webkit-text-size-adjust:100%;}
@media (prefers-reduced-motion: reduce){ html{scroll-behavior:auto;} }
body{
  margin:0;
  overflow-x:hidden;
  background:var(--ivory);
  color:var(--ink);
  font-family:var(--sans);
  font-size:17px;
  line-height:1.72;
  font-weight:400;
  -webkit-font-smoothing:antialiased;
  text-rendering:optimizeLegibility;
}
img{max-width:100%;display:block;}
a{color:inherit;text-decoration:none;}
button{font-family:inherit;}
h1,h2,h3,h4{margin:0;font-family:var(--serif);font-weight:400;color:var(--forest);
  font-optical-sizing:auto;line-height:1.08;letter-spacing:-.01em;text-wrap:balance;}
p{margin:0;text-wrap:pretty;}
::selection{background:var(--honey-soft);color:var(--forest-deep);}

/* ---- Type scale ------------------------------------------ */
.display{ font-size:calc(clamp(2.7rem, 1.6rem + 4.6vw, 5rem) * var(--h-scale)); line-height:1.02; }
.h1{ font-size:calc(clamp(2.3rem, 1.5rem + 3.4vw, 4rem) * var(--h-scale)); }
.h2{ font-size:calc(clamp(1.9rem, 1.3rem + 2.4vw, 3rem) * var(--h-scale)); line-height:1.1; }
.h3{ font-size:calc(clamp(1.35rem, 1.1rem + .9vw, 1.7rem) * var(--h-scale)); line-height:1.18; }
.lede{ font-size:clamp(1.12rem, 1rem + .5vw, 1.4rem); line-height:1.6; color:var(--ink-soft); font-weight:400; }
.serif-italic{ font-style:italic; }

/* Eyebrow / section label */
.eyebrow{
  font-family:var(--sans);
  font-size:.72rem; font-weight:700;
  letter-spacing:.2em; text-transform:uppercase;
  color:var(--forest); display:inline-flex; align-items:center; gap:.65em;
}
.eyebrow--honey{ color:#A9853F; }
.eyebrow::before{ content:""; width:26px; height:1px; background:currentColor; opacity:.55; display:inline-block; }
.eyebrow--plain::before{ display:none; }

/* ---- Layout helpers -------------------------------------- */
.container{ width:100%; max-width:var(--container); margin:0 auto; padding:0 clamp(20px,5vw,48px); }
.narrow{ max-width:var(--container-narrow); }
.section{ padding:var(--section-pad) 0; }
.section-sm{ padding:calc(var(--section-pad) * .62) 0; }
.center{ text-align:center; }
.stack-sm > * + *{ margin-top:.9rem; }
.stack > * + *{ margin-top:1.4rem; }

/* Band backgrounds */
.band-ivory{ background:var(--ivory); }
.band-warm{ background:var(--ivory-warm); }
.band-tint{ background:var(--band-tint); }
.band-sage{ background:var(--sage-tint); }
.band-clay{ background:var(--clay-tint); }
.band-forest{ background:var(--forest); color:var(--on-forest); }
.band-forest h1,.band-forest h2,.band-forest h3{ color:var(--on-forest); }
.band-forest .eyebrow{ color:var(--honey-soft); }
.band-forest .lede{ color:var(--on-forest-dim); }

/* Accent emphasis tweak */
[data-accent="minimal"]{ --band-tint: var(--sage-tint); }
[data-accent="minimal"] .band-clay{ background:var(--sage-tint); }
[data-accent="minimal"] .flourish{ opacity:0; }
[data-accent="warm"]{ --band-tint: var(--clay-tint); }

/* Hairline divider */
.hairline{ height:1px; background:var(--line); border:0; margin:0; }
.rule-narrow{ width:100%; max-width:var(--container); margin:0 auto; height:1px; background:var(--line); }

/* Honey flourish (small sprig) */
.flourish{ display:var(--flourish-display); color:var(--honey); line-height:0; }
.flourish svg{ display:block; }
.flourish-row{ display:flex; align-items:center; justify-content:center; gap:14px; color:var(--line-strong); }
.flourish-row::before,.flourish-row::after{ content:""; height:1px; width:min(80px,12vw); background:var(--line); }

/* ---- Buttons --------------------------------------------- */
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:.55em;
  font-family:var(--sans); font-size:.94rem; font-weight:600; letter-spacing:.01em;
  padding:.92em 1.7em; border-radius:var(--radius-pill);
  cursor:pointer; border:1.5px solid transparent;
  transition:background .35s ease, color .35s ease, border-color .35s ease, transform .35s ease, box-shadow .35s ease;
  text-align:center; line-height:1;
}
.btn-primary{ background:var(--forest); color:var(--on-forest); border-color:var(--forest); }
.btn-primary:hover{ background:var(--forest-deep); border-color:var(--forest-deep); transform:translateY(-1px); box-shadow:0 10px 24px -12px rgba(34,61,48,.45); }
.btn-outline{ background:transparent; color:var(--forest); border-color:var(--forest); }
.btn-outline:hover{ background:var(--forest); color:var(--on-forest); transform:translateY(-1px); }
.btn-ghost{ background:transparent; color:var(--forest); border-color:transparent; padding-left:0; padding-right:0; }
.btn-clay{ background:#C59A90; color:#fff; border-color:#C59A90; }
.btn-clay:hover{ background:#b08478; border-color:#b08478; transform:translateY(-1px); box-shadow:0 10px 24px -12px rgba(197,154,144,.5); }
.band-forest .btn-outline{ color:var(--on-forest); border-color:var(--on-forest); }
.band-forest .btn-outline:hover{ background:var(--on-forest); color:var(--forest); }
.band-forest .btn-primary{ background:#C7A164; border-color:#C7A164; color:var(--forest-deep); }
.band-forest .btn-primary:hover{ background:#B89253; border-color:#B89253; }

/* Text link with honey underline */
.tlink{
  display:inline-flex; align-items:center; gap:.5em;
  font-weight:600; color:var(--forest); position:relative;
  padding-bottom:2px;
}
.tlink::after{
  content:""; position:absolute; left:0; right:100%; bottom:0; height:1.5px;
  background:var(--honey); transition:right .4s cubic-bezier(.4,0,.1,1);
}
.tlink:hover::after{ right:0; }
.tlink .arr{ transition:transform .4s ease; }
.tlink:hover .arr{ transform:translateX(4px); }

/* ---- Reveal on scroll ------------------------------------ */
.reveal{ opacity:0; transform:translateY(var(--reveal-shift)); transition:opacity var(--reveal-dur) cubic-bezier(.2,.6,.2,1), transform var(--reveal-dur) cubic-bezier(.2,.6,.2,1); }
.reveal.is-visible{ opacity:1; transform:none; }
[data-motion="off"] .reveal{ opacity:1 !important; transform:none !important; transition:none !important; }
@media (prefers-reduced-motion: reduce){ .reveal{ opacity:1 !important; transform:none !important; } }

/* ---- Icons ----------------------------------------------- */
/* Photo block — replaces ImagePlaceholder once real imagery is placed */
.photo-block{ border-radius:var(--radius); overflow:hidden; position:relative; }
.photo-block img{ width:100%; height:100%; object-fit:cover; display:block; }

/* Brand pillar icons — PNG with circle already drawn in */
.pillar-icon{ width:90px; height:90px; object-fit:contain; display:block; margin-bottom:26px; }

.icon-circle{
  width:88px; height:88px; border-radius:50%;
  border:1px solid var(--line-strong);
  display:flex; align-items:center; justify-content:center;
  color:var(--forest);
  transition:border-color .4s ease, background .4s ease;
}
.icon-circle svg{ width:46px; height:46px; }
.hummingbird{ color:var(--forest); }

/* Brand marks — real PNGs */
.hb-img{ display:inline-block; }
.nav-logo .hb, .footer-logo .hb{ object-fit:contain; }
.nav-logo .wm, .footer-logo .wm{ display:block; width:auto; object-fit:contain; }

/* ============================================================
   NAVBAR
   ============================================================ */
.nav{
  position:fixed; top:0; left:0; right:0; z-index:1000;
  transition:background .4s ease, box-shadow .4s ease, padding .4s ease, border-color .4s ease;
  border-bottom:1px solid transparent;
}
.nav-inner{
  display:flex; align-items:center; justify-content:space-between;
  padding:18px clamp(20px,5vw,48px);
  transition:padding .4s ease;
}
.nav.scrolled{ background:rgba(247,243,237,.86); -webkit-backdrop-filter:blur(14px); backdrop-filter:blur(14px); border-bottom-color:var(--line); }
.nav.scrolled .nav-inner{ padding-top:12px; padding-bottom:12px; }

.nav-logo{ display:flex; align-items:center; gap:11px; }
.nav-logo .hb{ width:54px; height:54px; flex:none; }
.nav-logo .wm{ height:52px; }
.nav-logo .tag{ display:block; font-family:var(--sans); font-size:.5rem; font-weight:700; letter-spacing:.24em; color:var(--ink-soft); text-transform:uppercase; margin-top:2px; }

.nav-links{ display:flex; align-items:center; gap:clamp(18px,2.4vw,34px); list-style:none; margin:0; padding:0; }
.nav-links a{
  font-size:.92rem; font-weight:600; color:var(--forest-700); position:relative; padding:4px 0; letter-spacing:.01em;
}
.nav-links a::after{ content:""; position:absolute; left:0; right:100%; bottom:-2px; height:1.5px; background:var(--honey); transition:right .35s cubic-bezier(.4,0,.1,1); }
.nav-links a:hover::after, .nav-links a[aria-current="page"]::after{ right:0; }
.nav-links a[aria-current="page"]{ color:var(--forest); }

.nav-right{ display:flex; align-items:center; gap:18px; }
.nav-cta{ padding:.7em 1.35em; font-size:.86rem; white-space:nowrap; }

.nav-burger{ display:none; flex-direction:column; gap:5px; background:none; border:0; cursor:pointer; padding:8px; }
.nav-burger span{ width:24px; height:2px; background:var(--forest); border-radius:2px; transition:transform .35s ease, opacity .3s ease; }
.nav-burger.open span:nth-child(1){ transform:translateY(7px) rotate(45deg); }
.nav-burger.open span:nth-child(2){ opacity:0; }
.nav-burger.open span:nth-child(3){ transform:translateY(-7px) rotate(-45deg); }

/* Mobile drawer */
.nav-drawer{
  position:fixed; inset:0; z-index:999;
  background:var(--ivory);
  display:flex; flex-direction:column; justify-content:center;
  padding:96px clamp(28px,8vw,64px) 48px;
  transform:translateY(-100%); opacity:0; pointer-events:none;
  transition:transform .5s cubic-bezier(.6,0,.2,1), opacity .4s ease;
}
.nav-drawer.open{ transform:translateY(0); opacity:1; pointer-events:auto; }
.nav-drawer a{ font-family:var(--serif); font-size:2rem; color:var(--forest); padding:.28em 0; border-bottom:1px solid var(--line); }
.nav-drawer a:last-of-type{ border-bottom:0; }
.nav-drawer .btn{ margin-top:28px; align-self:flex-start; font-family:var(--sans); font-size:.86rem; color:var(--on-forest); padding:.72em 1.3em; border-bottom:none; white-space:nowrap; }
.nav-drawer .drawer-foot{ margin-top:auto; padding-top:32px; color:var(--ink-soft); font-size:.85rem; }

/* spacer below fixed nav */
.nav-spacer{ height:76px; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer{ background:var(--forest); color:var(--on-forest); padding:clamp(64px,8vw,96px) 0 40px; }
.footer .poetic{ font-family:var(--serif); font-style:italic; font-size:clamp(1.4rem, 1.1rem + 1.6vw, 2.2rem); color:var(--on-forest); line-height:1.25; max-width:18ch; }
.footer-grid{ display:grid; grid-template-columns:1.4fr 1fr 1fr; gap:48px; align-items:start; }
.footer-logo{ display:flex; flex-direction:column; align-items:flex-start; gap:8px; }
.footer-logo .hb{ width:62px; height:62px; }
.footer-logo .wm{ height:58px; margin-top:8px; }
.footer-logo .tag{ display:block; font-size:.55rem; font-weight:700; letter-spacing:.24em; color:var(--on-forest-dim); text-transform:uppercase; margin-top:4px; }
.footer h4{ color:var(--on-forest); font-family:var(--sans); font-size:.74rem; font-weight:700; letter-spacing:.18em; text-transform:uppercase; margin-bottom:16px; }
.footer ul{ list-style:none; margin:0; padding:0; }
.footer li{ margin-bottom:10px; }
.footer a, .footer .muted{ color:var(--on-forest-dim); font-size:.95rem; transition:color .3s ease; }
.footer a:hover{ color:var(--on-forest); }
.footer-foot{ margin-top:clamp(48px,6vw,72px); padding-top:28px; border-top:1px solid var(--line-on-forest);
  display:flex; flex-wrap:wrap; justify-content:space-between; gap:16px; align-items:center; color:var(--on-forest-dim); font-size:.82rem; }
.footer-social{ display:flex; gap:16px; }
.footer-social a{ font-size:.82rem; letter-spacing:.04em; }

/* ============================================================
   SHARED PAGE PIECES
   ============================================================ */
/* Page hero (interior pages) */
.page-hero{ padding:clamp(120px,15vw,180px) 0 clamp(56px,7vw,84px); position:relative; }
.page-hero .eyebrow{ margin-bottom:22px; }
.page-hero .lede{ margin-top:24px; max-width:46ch; }

/* Image placeholder */
.ph{
  position:relative; overflow:hidden; border-radius:var(--radius);
  background:
    repeating-linear-gradient(135deg, rgba(46,81,65,.05) 0 2px, transparent 2px 13px),
    var(--sage-tint);
  border:1px solid var(--line);
  display:flex; align-items:flex-end;
  min-height:200px;
}
.ph--clay{ background:repeating-linear-gradient(135deg, rgba(46,81,65,.05) 0 2px, transparent 2px 13px), var(--clay-tint); }
.ph--ivory{ background:repeating-linear-gradient(135deg, rgba(46,81,65,.05) 0 2px, transparent 2px 13px), var(--ivory-deep); }
.ph__tag{
  font-family:var(--sans); font-size:.7rem; letter-spacing:.04em; line-height:1.45;
  color:var(--forest-700); background:rgba(247,243,237,.82); -webkit-backdrop-filter:blur(2px); backdrop-filter:blur(2px);
  border:1px solid var(--line); border-radius:8px; padding:8px 11px; margin:14px;
  font-feature-settings:"tnum"; max-width:80%;
}
.ph__tag b{ display:block; font-weight:700; letter-spacing:.12em; text-transform:uppercase; font-size:.6rem; color:var(--ink-faint); margin-bottom:3px; }
.ph__center{ align-items:center; justify-content:center; }
.ph__center .ph__tag{ text-align:center; }

/* Inline placeholder marker (text fields not yet filled) */
.fill{
  display:inline-block; font-family:var(--sans); font-weight:600; font-size:.82em;
  letter-spacing:.02em; color:#9A7C3C;
  background:rgba(199,164,101,.14); border:1px dashed rgba(199,164,101,.55);
  border-radius:6px; padding:.05em .5em;
}
.fill-block{
  display:block; font-family:var(--sans); font-weight:500; color:var(--ink-soft);
  background:rgba(199,164,101,.08); border:1px dashed rgba(199,164,101,.5);
  border-radius:10px; padding:18px 20px; line-height:1.6;
}
.fill-block b{ display:block; font-weight:700; letter-spacing:.1em; text-transform:uppercase; font-size:.66rem; color:#9A7C3C; margin-bottom:6px; }

/* Pillar card */
.pillars{ display:grid; grid-template-columns:repeat(3,1fr); gap:clamp(20px,3vw,40px); }
.pillar{ text-align:center; display:flex; flex-direction:column; align-items:center; }
.pillar .icon-circle{ margin-bottom:26px; }
.pillar h3{ margin-bottom:6px; }
.pillar .honey-tick{ width:26px; height:2px; background:var(--honey); margin:16px 0; border-radius:2px; }
.pillar p{ color:var(--ink-soft); max-width:30ch; }
.pillar a.tlink{ margin-top:18px; }
.pillar-card{
  background:var(--ivory-warm); border:1px solid var(--line); border-radius:var(--radius);
  padding:clamp(28px,3vw,42px) clamp(22px,2.6vw,34px); align-items:flex-start; text-align:left;
  transition:transform .4s ease, box-shadow .4s ease, border-color .4s ease;
}
.pillar-card:hover{ transform:translateY(-3px); box-shadow:0 24px 48px -32px rgba(34,61,48,.4); border-color:var(--line-strong); }
.pillar-card p{ text-align:left; }
.pillar-card .honey-tick{ margin-left:0; }

/* Split layouts */
.split{ display:grid; grid-template-columns:1fr 1fr; gap:clamp(36px,6vw,90px); align-items:center; }
.split--media-left{ direction:rtl; }
.split--media-left > *{ direction:ltr; }
.split-3-2{ grid-template-columns:1.18fr .82fr; }

/* Quote / testimonial */
.testi-wrap{ position:relative; }
.testi-track{ overflow:hidden; }
.testi-slide{ display:grid; place-items:center; text-align:center; }
.testi-quote{ font-family:var(--serif); font-size:clamp(1.5rem, 1.2rem + 1.4vw, 2.1rem); line-height:1.4; color:var(--forest); font-style:italic; max-width:40ch; margin:0 auto; }
.testi-meta{ margin-top:28px; font-size:.78rem; font-weight:700; letter-spacing:.18em; text-transform:uppercase; color:var(--ink-faint); }
.testi-dots{ display:flex; gap:10px; justify-content:center; margin-top:40px; }
.testi-dots button{ width:9px; height:9px; border-radius:50%; border:1px solid var(--forest); background:transparent; cursor:pointer; padding:0; transition:background .3s ease, transform .3s ease; }
.testi-dots button[aria-selected="true"]{ background:var(--forest); transform:scale(1.15); }
.testi-arrows{ display:flex; gap:12px; justify-content:center; margin-top:8px; }
.testi-arrows button{ width:44px; height:44px; border-radius:50%; border:1px solid var(--line-strong); background:transparent; color:var(--forest); cursor:pointer; display:grid; place-items:center; transition:background .3s ease,border-color .3s ease; }
.testi-arrows button:hover{ background:var(--ivory-warm); border-color:var(--forest); }

/* Stat / intro band */
.intro-band{ text-align:center; }
.intro-band p{ font-family:var(--serif); font-size:clamp(1.65rem, 1.15rem + 2.2vw, 2.6rem); line-height:1.4; color:var(--forest); max-width:30ch; margin:0 auto; }
.intro-band .lede{ font-family:var(--sans); }

/* Service area pills */
.area-list{ display:flex; flex-wrap:wrap; gap:12px; justify-content:center; }
.area-pill{ border:1px solid var(--line-strong); border-radius:var(--radius-pill); padding:.5em 1.1em; font-size:.86rem; font-weight:600; color:var(--forest-700); }

/* CTA band */
.cta-band{ text-align:center; }
.cta-band h2{ max-width:18ch; margin:0 auto 28px; }
.cta-actions{ display:flex; gap:16px; justify-content:center; flex-wrap:wrap; }

/* ============================================================
   SERVICES
   ============================================================ */
.svc-detail{ display:grid; grid-template-columns:auto 1fr; gap:clamp(24px,4vw,56px); align-items:start; padding:clamp(40px,5vw,64px) 0; }
.svc-detail + .svc-detail{ border-top:1px solid var(--line); }
.svc-detail .num{ font-family:var(--serif); font-size:1rem; color:var(--honey); }
.svc-detail ul{ list-style:none; margin:18px 0 0; padding:0; columns:2; column-gap:36px; }
.svc-detail li{ position:relative; padding-left:22px; margin-bottom:11px; color:var(--ink-soft); break-inside:avoid; }
.svc-detail li::before{ content:""; position:absolute; left:0; top:.62em; width:8px; height:8px; border:1px solid var(--forest); border-radius:50%; }

.pkgs{ display:grid; grid-template-columns:repeat(auto-fit,minmax(248px,1fr)); gap:24px; }
.pkg{ background:var(--ivory-warm); border:1px solid var(--line); border-radius:var(--radius); padding:32px 28px; display:flex; flex-direction:column; transition:transform .4s ease, box-shadow .4s ease, border-color .4s ease; }
.pkg:hover{ transform:translateY(-4px); box-shadow:0 26px 52px -34px rgba(34,61,48,.42); }
.pkg--feature{ background:var(--forest); color:var(--on-forest); border-color:var(--forest); }
.pkg--feature h3,.pkg--feature .pkg-name{ color:var(--on-forest); }
.pkg.pkg--feature li{ color:var(--ivory-warm); }
.pkg.pkg--feature li::before{ border-color:var(--honey-soft); }
.pkg--feature .pkg-invest{ color:var(--ivory-warm); border-color:var(--line-on-forest); }
.pkg-badge{ font-size:.64rem; font-weight:700; letter-spacing:.16em; text-transform:uppercase; color:var(--honey); margin-bottom:14px; }
.pkg--feature .pkg-badge{ color:var(--honey-soft); }
.pkg h3{ font-size:1.5rem; margin-bottom:6px; }
.pkg-sub{ font-size:.92rem; color:var(--ink-soft); margin-bottom:14px; }
.pkg--feature .pkg-sub{ color:var(--ivory-warm); }
.pkg-price{ display:flex; align-items:baseline; gap:6px; margin-bottom:20px; padding-bottom:18px; border-bottom:1px solid var(--line); }
.pkg--feature .pkg-price{ border-color:var(--line-on-forest); }
.pkg-amt{ font-family:var(--serif); font-size:2.1rem; line-height:1; color:var(--forest); }
.pkg--feature .pkg-amt{ color:var(--on-forest); }
.pkg-amt--quote{ font-size:1.15rem; font-style:italic; color:var(--ink-faint); }
.pkg--feature .pkg-amt--quote{ color:var(--on-forest-dim); }
.pkg-unit{ font-size:.9rem; color:var(--ink-faint); font-weight:600; }
.pkg--feature .pkg-unit{ color:var(--on-forest-dim); }
.pkg ul{ list-style:none; margin:0 0 24px; padding:0; flex:1; }
.pkg li{ position:relative; padding-left:22px; margin-bottom:11px; color:var(--ink-soft); font-size:.94rem; }
.pkg li::before{ content:""; position:absolute; left:0; top:.6em; width:7px; height:7px; border:1px solid var(--forest); border-radius:50%; }
.pkg-invest{ font-size:.86rem; font-style:italic; color:var(--ink-faint); padding:14px 0; border-top:1px solid var(--line); margin-bottom:20px; font-family:var(--serif); }

/* FAQ accordion */
.faq{ max-width:var(--container-narrow); margin:0 auto; }
.faq-item{ border-bottom:1px solid var(--line); }
.faq-q{ width:100%; background:none; border:0; cursor:pointer; text-align:left;
  display:flex; align-items:center; justify-content:space-between; gap:24px;
  padding:26px 4px; font-family:var(--serif); font-size:clamp(1.3rem, 1.1rem + .7vw, 1.6rem); color:var(--forest); }
.faq-icon{ flex:none; width:24px; height:24px; position:relative; }
.faq-icon::before,.faq-icon::after{ content:""; position:absolute; background:var(--honey); border-radius:2px; transition:transform .4s cubic-bezier(.4,0,.1,1), opacity .3s ease; }
.faq-icon::before{ top:11px; left:2px; right:2px; height:2px; }
.faq-icon::after{ left:11px; top:2px; bottom:2px; width:2px; }
.faq-item.open .faq-icon::after{ transform:scaleY(0); opacity:0; }
.faq-a{ overflow:hidden; max-height:0; transition:max-height .5s cubic-bezier(.4,0,.1,1); }
.faq-a-inner{ padding:0 4px 28px; color:var(--ink-soft); max-width:62ch; }

/* ============================================================
   MATRESCENCE
   ============================================================ */
.def-card{ background:var(--ivory-warm); border:1px solid var(--line); border-radius:var(--radius); padding:clamp(32px,4vw,56px); }
.def-card .term{ font-family:var(--serif); font-size:clamp(2rem, 1.4rem + 2.4vw, 3.2rem); color:var(--forest); }
.def-card .pron{ font-style:italic; color:var(--ink-faint); font-size:clamp(1.1rem, 1rem + .4vw, 1.3rem); margin-left:10px; }
.def-card .pos{ font-size:.8rem; letter-spacing:.16em; text-transform:uppercase; color:var(--honey); font-weight:700; margin:6px 0 18px; }
.parallel{ display:grid; grid-template-columns:1fr 1fr; gap:0; border:1px solid var(--line); border-radius:var(--radius); overflow:hidden; }
.parallel > div{ padding:clamp(28px,3.4vw,44px); }
.parallel > div:first-child{ border-right:1px solid var(--line); background:var(--sage-tint); }
.parallel h3{ font-size:1.3rem; margin-bottom:12px; }
.parallel .small-label{ font-size:.72rem; letter-spacing:.18em; text-transform:uppercase; font-weight:700; color:var(--ink-faint); margin-bottom:14px; }

.dimensions{ display:grid; grid-template-columns:repeat(auto-fit,minmax(186px,1fr)); gap:1px; background:var(--line); border:1px solid var(--line); border-radius:var(--radius); overflow:hidden; }
.dim{ background:var(--ivory-warm); padding:30px 28px; }
.dim .num{ font-family:var(--serif); font-size:1.2rem; color:var(--honey); }
.dim h3{ font-size:1.25rem; margin:8px 0 8px; }
.dim p{ color:var(--ink-soft); font-size:.94rem; }

/* ============================================================
   RESOURCES
   ============================================================ */
.res-grid{ display:grid; grid-template-columns:repeat(auto-fill,minmax(290px,1fr)); gap:clamp(20px,2.6vw,32px); }
.res-card{ background:var(--ivory-warm); border:1px solid var(--line); border-radius:var(--radius); overflow:hidden; display:flex; flex-direction:column; transition:transform .4s ease, box-shadow .4s ease; }
.res-card:hover{ transform:translateY(-3px); box-shadow:0 24px 48px -34px rgba(34,61,48,.4); }
.res-card .ph{ min-height:172px; border-radius:0; border-left:0; border-right:0; border-top:0; }
.res-body{ padding:26px 26px 30px; display:flex; flex-direction:column; flex:1; }
.res-cat{ font-size:.66rem; font-weight:700; letter-spacing:.16em; text-transform:uppercase; color:var(--honey); margin-bottom:12px; }
.res-card h3{ font-size:1.3rem; margin-bottom:10px; }
.res-card p{ color:var(--ink-soft); font-size:.94rem; flex:1; }
.res-soon{ margin-top:20px; font-size:.84rem; font-weight:600; color:var(--ink-faint); display:inline-flex; align-items:center; gap:.5em; }
.res-soon::before{ content:""; width:7px; height:7px; border-radius:50%; background:var(--honey); }
/* Card as link, with read affordance */
a.res-card{ color:inherit; }
a.res-card:hover h3{ color:var(--forest-deep); }
.res-card .photo-block{ border-radius:0; }
.res-card .photo-block img{ transition:transform .6s cubic-bezier(.2,.6,.2,1); }
a.res-card:hover .photo-block img{ transform:scale(1.04); }
.res-link{ margin-top:20px; }
.res-card .tlink::after{ background:var(--honey); }

/* ---- Article (post) page ---- */
.art-head{ padding:clamp(112px,14vw,168px) 0 clamp(28px,4vw,44px); }
.art-back{ display:inline-flex; align-items:center; gap:.5em; font-size:.82rem; font-weight:700; letter-spacing:.12em; text-transform:uppercase; color:var(--ink-faint); transition:color .3s ease; }
.art-back:hover{ color:var(--forest); }
.art-byline{ display:flex; align-items:center; justify-content:center; gap:12px; margin-top:20px; font-size:.78rem; font-weight:700; letter-spacing:.16em; text-transform:uppercase; color:var(--ink-faint); }
.art-byline .dot{ opacity:.6; }
.art-hero-img{ border-radius:var(--radius); overflow:hidden; margin-top:clamp(28px,4vw,48px); max-height:560px; }
.art-hero-img img{ width:100%; height:100%; max-height:560px; object-fit:cover; display:block; }
.art-body{ padding:clamp(40px,5vw,64px) 0 clamp(16px,3vw,32px); }
.art-body .reveal + .reveal{ margin-top:0; }
.art-h{ font-size:clamp(1.5rem,1.2rem + 1.1vw,2rem); color:var(--forest); margin:clamp(34px,4vw,52px) 0 0; }
.art-p{ font-size:1.12rem; line-height:1.78; color:var(--ink); margin-top:1.1em; }
.art-p:first-child{ margin-top:0; }
.art-quote{ margin:clamp(36px,4.5vw,56px) 0; padding:6px 0 6px 28px; border-left:2px solid var(--honey);
  font-family:var(--serif); font-style:italic; font-size:clamp(1.5rem,1.2rem + 1.4vw,2.1rem); line-height:1.34; color:var(--forest); }
.art-listwrap{ margin:clamp(26px,3vw,36px) 0; background:var(--ivory-warm); border:1px solid var(--line); border-radius:var(--radius); padding:clamp(24px,3vw,34px); }
.art-list-label{ font-size:.72rem; font-weight:700; letter-spacing:.16em; text-transform:uppercase; color:#A9853F; margin-bottom:16px; }
.art-list{ list-style:none; margin:0; padding:0; }
.art-list li{ position:relative; padding-left:26px; margin-bottom:13px; color:var(--ink-soft); line-height:1.6; }
.art-list li:last-child{ margin-bottom:0; }
.art-list li::before{ content:""; position:absolute; left:0; top:.62em; width:8px; height:8px; border:1.5px solid var(--forest); border-radius:50%; }
.art-sign{ margin-top:clamp(48px,6vw,72px); padding-top:clamp(32px,4vw,44px); border-top:1px solid var(--line); text-align:center; color:var(--honey); }
.art-sign p{ margin-top:14px; color:var(--ink-soft); font-size:.98rem; }
.art-sign-name{ font-family:var(--serif); font-style:italic; font-size:1.7rem; color:var(--forest); }

/* More reading */
.more-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:clamp(18px,2.4vw,28px); }
.more-card{ background:var(--ivory-warm); border:1px solid var(--line); border-radius:var(--radius); padding:30px 28px; display:flex; flex-direction:column; transition:transform .4s ease, box-shadow .4s ease, border-color .4s ease; }
.more-card:hover{ transform:translateY(-3px); box-shadow:0 24px 48px -34px rgba(34,61,48,.4); border-color:var(--line-strong); }
.more-cat{ font-size:.66rem; font-weight:700; letter-spacing:.16em; text-transform:uppercase; color:var(--honey); margin-bottom:12px; }
.more-card h3{ font-size:1.3rem; margin-bottom:18px; flex:1; }
@media (max-width:860px){
  .more-grid{ grid-template-columns:1fr; }
}

/* Newsletter */
.newsletter{ background:var(--forest); color:var(--on-forest); border-radius:var(--radius); padding:clamp(40px,5vw,64px); text-align:center; }
.newsletter h2{ color:var(--on-forest); max-width:20ch; margin:0 auto 14px; }
.newsletter .lede{ color:var(--on-forest-dim); max-width:46ch; margin:0 auto 30px; }
.newsletter form{ display:flex; gap:12px; max-width:480px; margin:0 auto; flex-wrap:wrap; }
.newsletter input{ flex:1; min-width:200px; }

/* ============================================================
   FORMS (Contact)
   ============================================================ */
.field{ display:flex; flex-direction:column; gap:8px; }
.field label{ font-size:.78rem; font-weight:700; letter-spacing:.08em; text-transform:uppercase; color:var(--forest); }
.field .req{ color:var(--clay); }
.input, .select, .textarea{
  font-family:var(--sans); font-size:1rem; color:var(--ink);
  background:var(--ivory-warm); border:1px solid var(--line-strong); border-radius:11px;
  padding:.85em 1em; width:100%; transition:border-color .3s ease, box-shadow .3s ease, background .3s ease;
}
.input::placeholder,.textarea::placeholder{ color:var(--ink-faint); }
.input:focus,.select:focus,.textarea:focus{ outline:none; border-color:var(--forest); box-shadow:0 0 0 3px rgba(46,81,65,.12); background:#fff; }
.input.invalid,.textarea.invalid{ border-color:var(--clay); box-shadow:0 0 0 3px rgba(197,154,144,.18); }
.textarea{ resize:vertical; min-height:130px; }
.field-error{ font-size:.8rem; color:#A45F52; font-weight:600; }
.field-grid{ display:grid; grid-template-columns:1fr 1fr; gap:22px; }
.checks{ display:grid; grid-template-columns:repeat(3,1fr); gap:12px; }
.check{ display:flex; align-items:center; gap:10px; border:1px solid var(--line-strong); border-radius:11px; padding:.8em 1em; cursor:pointer; transition:border-color .3s ease, background .3s ease; font-size:.92rem; font-weight:600; color:var(--forest-700); }
.check:hover{ border-color:var(--forest); }
.check.on{ background:var(--sage-tint); border-color:var(--forest); }
.check input{ accent-color:var(--forest); width:17px; height:17px; }
.form-card{ background:var(--ivory-warm); border:1px solid var(--line); border-radius:var(--radius); padding:clamp(28px,3.6vw,48px); }

.contact-aside .info-row{ display:flex; gap:16px; padding:22px 0; border-bottom:1px solid var(--line); }
.contact-aside .info-row:last-child{ border-bottom:0; }
.contact-aside .info-ic{ flex:none; width:42px; height:42px; border-radius:50%; border:1px solid var(--line-strong); display:grid; place-items:center; color:var(--forest); }
.contact-aside .info-ic svg{ width:20px; height:20px; }
.contact-aside h4{ font-family:var(--sans); font-size:.74rem; font-weight:700; letter-spacing:.14em; text-transform:uppercase; color:var(--ink-faint); margin-bottom:5px; }
.contact-aside .big{ font-family:var(--serif); font-size:1.3rem; color:var(--forest); }

.steps{ counter-reset:step; display:grid; gap:22px; }
.step{ display:flex; gap:18px; align-items:flex-start; }
.step .step-n{ counter-increment:step; flex:none; width:38px; height:38px; border-radius:50%; border:1px solid var(--forest); color:var(--forest); display:grid; place-items:center; font-family:var(--serif); font-size:1.05rem; }
.step .step-n::before{ content:counter(step); }
.step h4{ font-family:var(--serif); font-weight:400; color:var(--forest); font-size:1.2rem; margin-bottom:4px; }
.step p{ color:var(--ink-soft); font-size:.95rem; }

.success{ text-align:center; padding:clamp(40px,6vw,80px) 20px; }
.success .icon-circle{ margin:0 auto 28px; width:74px; height:74px; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width:980px){
  .footer-grid{ grid-template-columns:1fr 1fr; gap:36px; }
  .footer-logo{ grid-column:1 / -1; }
}
@media (max-width:1080px){
  .nav-links, .nav-right .nav-cta{ display:none; }
  .nav-burger{ display:flex; }
}
@media (max-width:860px){
  .pillars{ grid-template-columns:1fr; max-width:420px; margin:0 auto; }
  .split{ grid-template-columns:1fr; gap:36px; }
  .split--media-left{ direction:ltr; }
  .split-3-2{ grid-template-columns:1fr; }
  .svc-detail{ grid-template-columns:1fr; }
  .svc-detail ul{ columns:1; }
  .parallel{ grid-template-columns:1fr; }
  .parallel > div:first-child{ border-right:0; border-bottom:1px solid var(--line); }
  .field-grid{ grid-template-columns:1fr; }
  .checks{ grid-template-columns:1fr; }
  .contact-split{ grid-template-columns:1fr !important; }
}
@media (max-width:560px){
  .footer-grid{ grid-template-columns:1fr; }
  .footer-foot{ flex-direction:column; align-items:flex-start; }
  .checks{ grid-template-columns:1fr; }
  .nav-logo .tag{ display:none; }
  /* Cap photo heights on small screens so images don't dominate */
  .photo-block{ max-height:280px; }
  /* Tighten testimonial quote size */
  .testi-quote{ font-size:clamp(1.3rem,6vw,1.8rem); }
}
