/* ============================================================================
   TANSEM PSYCHOLOGY — Website prototype v1
   Shared stylesheet · Approved direction: "Warm & Organic"
   One stylesheet links from every page for a consistent system.
   Mobile-first. WCAG AA. Accent colours are for shapes/large UI only —
   body text always uses the dark-brown text tokens.
   ============================================================================ */

/* ----------------------------------------------------------------------------
   1. DESIGN TOKENS
   ------------------------------------------------------------------------- */
:root{
  /* — Colour — */
  --bg:#F6F1E9;            /* page background (cream) */
  --surface:#FBF8F2;       /* cards / raised surfaces */
  --surface-2:#F0E9DC;     /* tertiary warm surface */
  --terracotta:#C2734F;    /* accent — shapes & large UI only */
  --terracotta-deep:#A85A38;/* accent for buttons — AA with white text */
  --terracotta-hover:#9A4F2F;
  --sage:#7E8E6E;          /* secondary accent — shapes/large UI */
  --sage-deep:#5E6E50;     /* secondary, usable on cream for large UI/icons */
  --text:#2E2820;          /* primary text (dark brown) */
  --text-soft:#5A5046;     /* secondary text — AA on cream */
  --on-dark:#FBF8F2;       /* text on dark/photo surfaces */
  --on-dark-soft:rgba(251,248,242,.9);
  --line:#E6DCCB;          /* hairline borders */
  --line-strong:#D9CCB6;
  --scrim:46,40,32;        /* rgb for warm overlays (matches --text) */

  /* — Type — */
  --font-head:"Fraunces",Georgia,"Times New Roman",serif;
  --font-body:"Nunito Sans",system-ui,-apple-system,Segoe UI,Roboto,sans-serif;

  /* — Radius — */
  --radius-xl:36px;
  --radius-lg:28px;
  --radius:20px;
  --radius-sm:14px;
  --radius-pill:999px;

  /* — Spacing scale — */
  --s-1:.25rem; --s-2:.5rem; --s-3:.75rem; --s-4:1rem;
  --s-5:1.5rem; --s-6:2rem; --s-7:3rem; --s-8:4rem; --s-9:6rem;
  --section-y:clamp(48px,8vw,96px);

  /* — Shadows (soft, warm) — */
  --shadow-sm:0 2px 10px -6px rgba(46,40,32,.3);
  --shadow:0 18px 40px -22px rgba(46,40,32,.4);
  --shadow-lg:0 34px 70px -38px rgba(46,40,32,.5);

  /* — Layout — */
  --maxw:1180px;
  --maxw-text:62ch;
  --ease:cubic-bezier(.22,.61,.36,1);
  --tap:44px;              /* minimum touch target */
  --header-h:72px;
}
/* ----------------------------------------------------------------------------
   2. RESET / BASE
   ------------------------------------------------------------------------- */
*,*::before,*::after{box-sizing:border-box}
*{margin:0}
html{scroll-behavior:smooth;-webkit-text-size-adjust:100%}
body{
  background:var(--bg);
  color:var(--text);
  font-family:var(--font-body);
  font-size:17px;
  line-height:1.65;
  -webkit-font-smoothing:antialiased;
  text-rendering:optimizeLegibility;
  overflow-x:hidden;            /* guard against incidental horizontal scroll */
  min-height:100vh;
}
img,video,svg{display:block;max-width:100%}
img,video{height:auto}
a{color:var(--terracotta-deep)}
a:hover{color:var(--terracotta-hover)}
ul[role="list"],ul.reset{list-style:none;padding:0;margin:0}
button{font:inherit;cursor:pointer}
:target{scroll-margin-top:calc(var(--header-h) + 16px)}

/* ----------------------------------------------------------------------------
   3. TYPOGRAPHY
   ------------------------------------------------------------------------- */
h1,h2,h3,h4{font-family:var(--font-head);line-height:1.12;font-weight:600;letter-spacing:-.01em;color:var(--text);text-wrap:balance}
h1{font-size:clamp(2.2rem,5.2vw,3.6rem);line-height:1.08}
h2{font-size:clamp(1.8rem,3.8vw,2.6rem)}
h3{font-size:clamp(1.3rem,2.2vw,1.6rem)}
h4{font-size:1.15rem}
p{max-width:var(--maxw-text)}
.lead{font-size:clamp(1.1rem,1.6vw,1.25rem);color:var(--text-soft)}
.muted{color:var(--text-soft)}
.eyebrow{
  display:inline-flex;align-items:center;gap:.5rem;
  font-family:var(--font-body);font-weight:700;font-size:.8rem;
  letter-spacing:.12em;text-transform:uppercase;color:var(--sage-deep);
  background:rgba(126,142,110,.14);padding:.4rem .9rem;border-radius:var(--radius-pill);
}

/* ----------------------------------------------------------------------------
   4. LAYOUT HELPERS
   ------------------------------------------------------------------------- */
.wrap{max-width:var(--maxw);margin-inline:auto;padding-inline:clamp(18px,4vw,28px);width:100%}
.wrap--narrow{max-width:820px}
.section{padding-block:var(--section-y)}
/* Section separation: a very faint surface tint on alternating bands so each
   section reads as its own zone without hard lines. Pair with .section. */
.section--tint{background:rgba(251,248,242,.55);box-shadow:inset 0 1px 0 rgba(46,40,32,.045),inset 0 -1px 0 rgba(46,40,32,.045)}
.section-head{max-width:60ch;margin-bottom:clamp(28px,4vw,44px)}
.section-head h2{margin-top:.7rem}
.section-head p{margin-top:.7rem}
.stack > * + *{margin-top:var(--s-4)}
.grid{display:grid;gap:clamp(18px,2.5vw,26px)}
@media(min-width:760px){
  .grid--2{grid-template-columns:repeat(2,1fr)}
  .grid--3{grid-template-columns:repeat(3,1fr)}
  .grid--4{grid-template-columns:repeat(2,1fr)}
}
@media(min-width:1024px){
  .grid--4{grid-template-columns:repeat(4,1fr)}
}

/* organic decorative blob (soft sage glow) — decorative only */
.blob-glow{position:absolute;border-radius:50%;background:radial-gradient(circle,rgba(126,142,110,.28),transparent 70%);z-index:0;pointer-events:none}

/* ----------------------------------------------------------------------------
   5. ACCESSIBILITY UTILITIES
   ------------------------------------------------------------------------- */
.skip-link{position:absolute;left:-999px;top:0;z-index:200;background:var(--text);color:var(--on-dark);padding:12px 18px;border-radius:0 0 12px 0;font-weight:700}
.skip-link:focus{left:0}
.sr-only{position:absolute!important;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0 0 0 0);white-space:nowrap;border:0}
:focus-visible{outline:3px solid var(--sage-deep);outline-offset:3px;border-radius:6px}
a:focus-visible,button:focus-visible,.btn:focus-visible{outline:3px solid var(--sage-deep);outline-offset:3px}

/* ----------------------------------------------------------------------------
   6. BUTTONS
   ------------------------------------------------------------------------- */
.btn{
  display:inline-flex;align-items:center;justify-content:center;gap:.5rem;
  min-height:var(--tap);padding:.8rem 1.5rem;
  font-family:var(--font-body);font-weight:700;font-size:1rem;line-height:1;
  border:0;border-radius:var(--radius-pill);text-decoration:none;cursor:pointer;
  transition:transform .25s var(--ease),box-shadow .25s var(--ease),background .25s var(--ease),color .25s var(--ease),border-color .25s var(--ease);
}
.btn--primary{background:var(--terracotta-deep);color:#fff;box-shadow:0 10px 22px -10px rgba(168,90,56,.6)}
.btn--primary:hover{background:var(--terracotta-hover);color:#fff;transform:translateY(-2px);box-shadow:0 16px 30px -12px rgba(168,90,56,.7)}
.btn--ghost{background:transparent;color:var(--text);border:1.5px solid var(--line-strong)}
.btn--ghost:hover{border-color:var(--terracotta);color:var(--terracotta-deep)}
.btn--light{background:var(--surface);color:var(--text)}
.btn--light:hover{background:#fff;transform:translateY(-2px)}
/* on dark/photo surfaces */
.on-dark .btn--ghost{color:var(--on-dark);border-color:rgba(251,248,242,.5)}
.on-dark .btn--ghost:hover{border-color:var(--on-dark);background:rgba(251,248,242,.12);color:var(--on-dark)}
.btn .icon{width:1.1em;height:1.1em;flex:0 0 auto}

/* ----------------------------------------------------------------------------
   7. CARDS
   ------------------------------------------------------------------------- */
.card{
  background:var(--surface);border:1px solid var(--line);border-radius:var(--radius-lg);
  padding:clamp(22px,3vw,30px);position:relative;overflow:hidden;
  transition:transform .3s var(--ease),box-shadow .3s var(--ease);
}
.card--link:hover{transform:translateY(-6px);box-shadow:var(--shadow)}
.card__icon{width:56px;height:56px;border-radius:18px;display:grid;place-items:center;margin-bottom:16px;background:rgba(194,115,79,.14);color:var(--terracotta-deep)}
.card__icon svg{width:28px;height:28px}
.card h3{margin-bottom:.4rem}
.card p{color:var(--text-soft)}
.more{display:inline-flex;align-items:center;gap:.4rem;font-weight:700;color:var(--terracotta-deep);text-decoration:none}
.more svg{transition:transform .25s var(--ease)}
.more:hover svg{transform:translateX(4px)}
.card .more{margin-top:1rem}

/* ----------------------------------------------------------------------------
   8. SITE HEADER / PRIMARY NAV
   ------------------------------------------------------------------------- */
/* Utility top bar — address / phone / email. Desktop only (scrolls away; the
   main nav below it is what sticks). */
.topbar{background:var(--text);color:var(--on-dark-soft);font-size:.85rem}
.topbar__inner{display:flex;align-items:center;justify-content:space-between;gap:1rem;min-height:40px;padding-block:7px;max-width:none;padding-inline:clamp(20px,3.5vw,56px)}
.topbar a{color:var(--on-dark-soft);text-decoration:none;display:inline-flex;align-items:center;gap:.45rem;transition:color .2s var(--ease)}
.topbar a:hover{color:#fff}
.topbar svg{width:15px;height:15px;flex:0 0 auto;color:#C9BEAE}
.topbar__right{display:flex;align-items:center;gap:1.6rem}
.topbar__social{padding-left:1.4rem;border-left:1px solid rgba(255,255,255,.16)}
.topbar__social svg{width:16px;height:16px;color:#D8CDBD}
@media(max-width:1039px){.topbar{display:none}}

.site-header{position:sticky;top:0;z-index:100;background:rgba(246,241,233,.9);backdrop-filter:blur(10px);border-bottom:1px solid var(--line)}
.site-header__inner{display:flex;align-items:center;gap:1rem;min-height:var(--header-h);padding-block:10px;max-width:none;padding-inline:clamp(20px,3.5vw,56px)}
.brand{display:inline-flex;align-items:center;gap:.6rem;font-family:var(--font-head);font-weight:600;font-size:1.45rem;color:var(--text);text-decoration:none;flex:0 0 auto;position:relative;z-index:110}
.brand__mark{width:42px;height:42px;flex:0 0 auto;background:url("../img/logo.png") no-repeat;background-size:180% auto;background-position:50% 7%}
.brand:hover{color:var(--text)}

/* .site-nav wraps the links + actions: an inline row on desktop, one
   collapsible panel on mobile (so the two groups never overlap). */
.site-nav{display:flex;align-items:center;gap:clamp(.8rem,2vw,1.6rem);margin-inline-start:auto}
.primary-nav ul{list-style:none;display:flex;gap:clamp(.5rem,1.3vw,1.3rem);margin:0;padding:0}
.primary-nav a{display:inline-flex;align-items:center;min-height:var(--tap);font-weight:600;font-size:1.04rem;color:var(--text-soft);text-decoration:none;padding:.3rem .2rem;position:relative;white-space:nowrap}
.primary-nav a:hover{color:var(--text)}
.primary-nav a[aria-current="page"]{color:var(--text)}
.primary-nav a::after{content:"";position:absolute;left:.2rem;right:.2rem;bottom:2px;height:2px;background:var(--terracotta);border-radius:2px;transform:scaleX(0);transform-origin:left;transition:transform .25s var(--ease)}
.primary-nav a:hover::after,.primary-nav a[aria-current="page"]::after{transform:scaleX(1)}

/* Dropdowns (Services / Resources) — open on hover or keyboard focus */
.primary-nav .has-dropdown{position:relative}
.primary-nav .has-dropdown > a{gap:.3rem}
.primary-nav .caret{width:13px;height:13px;transition:transform .25s var(--ease)}
.has-dropdown:hover > a .caret,.has-dropdown:focus-within > a .caret{transform:rotate(180deg)}
/* invisible bridge so the gap between the link and the panel doesn't drop hover */
.has-dropdown::after{content:"";position:absolute;top:100%;left:0;width:100%;height:14px}

/* Mega-menu panel (icon + title + description, footer row) */
.mega{
  position:absolute;top:100%;left:50%;
  background:var(--surface);border:1px solid var(--line);border-radius:var(--radius);
  box-shadow:var(--shadow-lg);padding:20px;z-index:60;
  opacity:0;visibility:hidden;transform:translate(-50%,10px);
  transition:opacity .22s var(--ease),transform .22s var(--ease),visibility .22s var(--ease);
}
.has-dropdown:hover .mega,.has-dropdown:focus-within .mega{opacity:1;visibility:visible;transform:translate(-50%,0)}
.mega a::after{display:none}
.mega__label{display:block;font-size:.72rem;font-weight:700;letter-spacing:.12em;text-transform:uppercase;color:var(--sage-deep);padding:2px 12px 14px}
.mega__grid{display:grid;gap:10px 14px}
.mega__grid--2{grid-template-columns:repeat(2,minmax(0,1fr));width:620px}
.mega__grid--1{grid-template-columns:1fr;width:340px}
.mega__item{display:flex;gap:.9rem;align-items:flex-start;min-width:0;min-height:0;white-space:normal;padding:13px 14px;border-radius:14px}
.mega__item:hover{background:var(--bg)}
.mega__icon{flex:0 0 auto;width:42px;height:42px;display:grid;place-items:center;border-radius:11px;background:rgba(126,142,110,.14);color:var(--sage-deep);transition:background .2s var(--ease),color .2s var(--ease)}
.mega__item:hover .mega__icon{background:var(--terracotta-deep);color:#fff}
.mega__icon svg{width:21px;height:21px}
.mega__text{display:flex;flex-direction:column;gap:3px;flex:1;min-width:0}
.mega__text strong{font-family:var(--font-head);font-weight:600;font-size:1rem;color:var(--text);line-height:1.2;white-space:normal}
.mega__text > span{font-size:.82rem;font-weight:400;color:var(--text-soft);line-height:1.45;white-space:normal}
.mega__foot{display:flex;align-items:center;justify-content:space-between;gap:1rem;margin-top:12px;padding:14px 12px 2px;border-top:1px solid var(--line);font-size:.82rem;color:var(--text-soft)}
.mega__foot a{display:inline-flex;align-items:center;gap:.35rem;font-weight:700;color:var(--terracotta-deep);white-space:nowrap}
.mega__foot a svg{width:15px;height:15px;transition:transform .2s var(--ease)}
.mega__foot a:hover svg{transform:translateX(3px)}

.site-header__actions{display:flex;align-items:center;gap:.9rem}
.site-phone{display:inline-flex;align-items:center;gap:.4rem;min-height:var(--tap);font-weight:700;color:var(--text);text-decoration:none;white-space:nowrap}
.site-phone svg{width:18px;height:18px;color:var(--sage-deep)}
.site-phone:hover{color:var(--terracotta-deep)}
/* Hamburger that morphs into an X (three bars) */
.nav-toggle{display:none;width:var(--tap);height:var(--tap);align-items:center;justify-content:center;background:transparent;border:1.5px solid var(--line-strong);border-radius:12px;color:var(--text);margin-inline-start:auto;position:relative;z-index:120}
.nav-toggle__box{position:relative;display:block;width:22px;height:16px}
.nav-toggle__bar{position:absolute;left:0;width:100%;height:2px;border-radius:2px;background:currentColor;transition:top .3s var(--ease),transform .3s var(--ease),opacity .15s var(--ease)}
.nav-toggle__bar:nth-child(1){top:0}
.nav-toggle__bar:nth-child(2){top:7px}
.nav-toggle__bar:nth-child(3){top:14px}
.site-header.is-open .nav-toggle__bar:nth-child(1){top:7px;transform:rotate(45deg)}
.site-header.is-open .nav-toggle__bar:nth-child(2){opacity:0}
.site-header.is-open .nav-toggle__bar:nth-child(3){top:7px;transform:rotate(-45deg)}

/* Menu footer (social + copyright) shows only inside the mobile overlay */
.site-nav__footer{display:none}
body.nav-open{overflow:hidden}

/* Full-screen overlay menu below 1040px */
@media(max-width:1039px){
  .nav-toggle{display:inline-flex}
  .site-nav{
    position:fixed;top:0;left:0;right:0;z-index:90;margin:0;
    height:100vh;          /* fallback for browsers without dynamic units */
    height:100dvh;         /* dynamic viewport: tracks the mobile browser chrome */
    flex-direction:column;align-items:stretch;gap:0;
    background:var(--bg);overflow-y:auto;overscroll-behavior:contain;
    padding:calc(var(--header-h) + clamp(24px,6vw,44px)) clamp(22px,7vw,46px) calc(28px + env(safe-area-inset-bottom,0px));
    visibility:hidden;opacity:0;
  }
  html:not(.gsap-enh) .site-nav{transition:opacity .3s var(--ease),visibility .3s var(--ease)}
  .site-header.is-open .site-nav{visibility:visible;opacity:1}
  .primary-nav{width:100%}
  .primary-nav ul{flex-direction:column;gap:0}
  .primary-nav a{min-height:58px;font-family:var(--font-head);font-weight:500;font-size:1.5rem;color:var(--text);border-bottom:1px solid var(--line);padding-block:.4rem}
  .primary-nav a::after{display:none}
  .primary-nav a[aria-current="page"]{color:var(--terracotta-deep)}
  /* Mega menus collapse to a simple indented link list inside the overlay */
  .primary-nav .has-dropdown{position:static}
  .primary-nav .has-dropdown::after{display:none}
  .primary-nav .caret{display:none}
  .mega{position:static;opacity:1;visibility:visible;transform:none;
    background:transparent;border:0;box-shadow:none;padding:0;z-index:auto}
  .mega__label,.mega__foot,.mega__text > span,.mega__icon{display:none}
  .mega__grid{display:flex;flex-direction:column;width:auto;gap:0}
  .mega__item{padding:.4rem 0 .4rem 1.1rem;border-bottom:1px solid var(--line);border-radius:0;min-height:50px;align-items:center;gap:0}
  .mega__text strong{font-family:var(--font-head);font-weight:500;font-size:1.12rem;color:var(--text-soft)}
  .site-header__actions{flex-direction:column;align-items:stretch;gap:.7rem;margin-top:1.5rem}
  .site-header__actions .btn{width:100%;justify-content:center}
  .site-phone{justify-content:center;border:1px solid var(--line-strong);border-radius:var(--radius-pill);min-height:52px}
  .site-nav__footer{display:flex;flex-direction:column;gap:1.1rem;margin-top:auto;padding-top:2rem}
  .site-nav__social{display:flex;gap:.7rem}
  .site-nav__social a{width:44px;height:44px;display:grid;place-items:center;border-radius:50%;border:1px solid var(--line-strong);color:var(--text);transition:background .2s,color .2s,border-color .2s}
  .site-nav__social a:hover{background:var(--terracotta-deep);color:#fff;border-color:var(--terracotta-deep)}
  .site-nav__social svg{width:20px;height:20px}
  .site-nav__copy{color:var(--text-soft);font-size:.8rem;margin:0}
}

/* ----------------------------------------------------------------------------
   9. FRAMED VIDEO BAND  (hero — reuses the approved video-8 treatment)
   Contained band, tall, big rounded corners, warm overlay tuned so the
   headline keeps WCAG AA over the dark/busy forest footage.
   ------------------------------------------------------------------------- */
.video-band-section{padding-top:6px}
.video-band-section > .wrap{max-width:none;padding-inline:clamp(20px,3.5vw,56px)}
.video-band{
  position:relative;margin-block:clamp(18px,3vw,30px) 8px;
  min-height:75vh;                         /* tall band; page peeks below */
  border-radius:var(--radius-xl);overflow:hidden;isolation:isolate;
  display:flex;align-items:center;
  border:1px solid var(--line);box-shadow:var(--shadow-lg);
}
.video-band__media{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;object-position:50% 80%;z-index:-2}
.video-band__scrim{position:absolute;inset:0;z-index:-1;background:
  linear-gradient(100deg,rgba(46,40,32,.64) 0%,rgba(46,40,32,.44) 45%,rgba(46,40,32,.18) 72%,rgba(46,40,32,0) 100%),
  linear-gradient(0deg,rgba(46,40,32,.42) 0%,rgba(46,40,32,0) 58%)}
.video-band__inner{position:relative;z-index:1;padding:clamp(28px,4.5vw,58px);max-width:40rem;color:var(--on-dark)}
.video-band h1{color:var(--on-dark);font-weight:400;text-shadow:0 2px 30px rgba(46,40,32,.55)}
.video-band h1 em{font-style:italic;color:var(--terracotta)}
.video-band p{color:var(--on-dark);max-width:42ch;margin-top:1.15rem;text-shadow:0 1px 16px rgba(46,40,32,.5)}
.video-band__address{
  position:absolute;z-index:1;
  right:clamp(20px,4.5vw,58px);bottom:clamp(18px,3vw,40px);
  font-family:var(--font-body);font-size:.72rem;font-weight:700;
  letter-spacing:.14em;text-transform:uppercase;text-align:right;
  color:rgba(245,240,232,.6);text-shadow:0 1px 10px rgba(46,40,32,.55);
}
.video-band .video-band__actions{display:flex;flex-wrap:wrap;gap:.9rem;align-items:center;margin-top:1.6rem}
@media(max-width:760px){
  .video-band{min-height:58vh;border-radius:var(--radius-lg)}
  .video-band__address{font-size:.6rem;letter-spacing:.1em;max-width:60%;bottom:clamp(12px,3vw,18px)}
}

/* ----------------------------------------------------------------------------
   10. SITE FOOTER
   ------------------------------------------------------------------------- */
.site-footer{background:var(--text);color:#EFE7DA;margin-top:var(--s-8)}
.site-footer a{color:#EFE7DA;text-decoration:none;transition:color .2s var(--ease)}
.site-footer a:hover{color:var(--terracotta)}
.site-footer__grid{display:grid;gap:clamp(34px,4vw,56px);padding-block:clamp(56px,8vw,96px);max-width:none;padding-inline:clamp(20px,3.5vw,56px)}
@media(min-width:640px){.site-footer__grid{grid-template-columns:repeat(2,1fr);align-items:start}}
@media(min-width:1000px){.site-footer__grid{grid-template-columns:1.7fr 1fr 1fr 1.6fr}}
.site-footer__brand{display:inline-flex;align-items:center;gap:.55rem;font-family:var(--font-head);font-size:1.45rem;color:#fff}
.site-footer__brand .brand__mark{width:38px;height:38px}
.site-footer__about{margin-top:1.1rem;color:#C9BEAE;max-width:36ch;line-height:1.7}
.site-footer h4{font-family:var(--font-body);font-size:.82rem;letter-spacing:.1em;text-transform:uppercase;color:#C9BEAE;margin-bottom:1.1rem}
.site-footer ul{list-style:none;display:flex;flex-direction:column;gap:.75rem;margin:0;padding:0}
.site-footer__col a{display:inline-block;color:#D8CDBD}
.site-footer__col a:hover{color:var(--terracotta)}

/* Social icon row */
.site-footer__socials{display:flex;gap:.6rem;margin-top:1.4rem}
.site-footer__socials a{display:inline-flex;align-items:center;justify-content:center;width:44px;height:44px;border:1px solid rgba(255,255,255,.18);border-radius:50%;color:#EFE7DA;transition:background .2s var(--ease),border-color .2s var(--ease),color .2s var(--ease)}
.site-footer__socials a:hover{border-color:var(--terracotta);background:rgba(194,115,79,.16);color:#fff}
.site-footer__socials svg{width:18px;height:18px}

/* Contact column */
.site-footer__contact address{font-style:normal;display:flex;flex-direction:column;gap:.85rem;color:#D8CDBD}
.site-footer__contact address > a,.site-footer__contact address > span{display:inline-flex;align-items:flex-start;gap:.6rem;line-height:1.5}
.site-footer__contact svg{width:17px;height:17px;flex:0 0 auto;color:#C9BEAE;margin-top:.2rem}
.site-footer__directions{display:inline-block;margin-top:.25rem;font-size:.85rem;color:#C9BEAE!important;text-decoration:underline;text-underline-offset:2px}
.site-footer__directions:hover{color:var(--terracotta)!important}

/* Careers callout card */
.site-footer__careers{margin-top:1.6rem;padding:18px 20px;border:1px solid rgba(255,255,255,.14);border-radius:var(--radius);background:rgba(255,255,255,.035)}
.site-footer__careers-label{display:block;font-size:.72rem;font-weight:700;letter-spacing:.12em;text-transform:uppercase;color:var(--terracotta);margin-bottom:.45rem}
.site-footer__careers p{font-size:.9rem;color:#D8CDBD;margin-bottom:.7rem;max-width:34ch}
.site-footer__careers a{display:inline-flex;align-items:center;gap:.5rem;font-weight:700;color:#fff}
.site-footer__careers a:hover{color:var(--terracotta)}
.site-footer__careers svg{width:17px;height:17px;flex:0 0 auto}

/* Bottom bar */
.site-footer__bottom{border-top:1px solid rgba(255,255,255,.12);padding-block:24px;font-size:.9rem;color:#B6AB9B;display:flex;flex-wrap:wrap;gap:.8rem 1.4rem;align-items:center;justify-content:space-between;max-width:none;padding-inline:clamp(20px,3.5vw,56px)}
.site-footer__legal{display:flex;flex-wrap:wrap;gap:.4rem 1.2rem}
.site-footer__legal a{color:#B6AB9B;font-weight:600;text-decoration:none}
.site-footer__legal a:hover{color:var(--terracotta)}
.site-footer__top{display:inline-flex;align-items:center;gap:.4rem;color:#C9BEAE!important;font-weight:600}
.site-footer__top:hover{color:var(--terracotta)!important}
.site-footer__top svg{width:16px;height:16px;transition:transform .2s var(--ease)}
.site-footer__top:hover svg{transform:translateY(-2px)}

/* ----------------------------------------------------------------------------
   11. REVEAL-ON-SCROLL (progressive enhancement — content visible without JS)
   ------------------------------------------------------------------------- */
.reveal-ready [data-reveal]{opacity:0;transform:translateY(22px);transition:opacity .7s var(--ease),transform .7s var(--ease)}
.reveal-ready [data-reveal].is-in{opacity:1;transform:none}

/* ----------------------------------------------------------------------------
   12. REDUCED MOTION — calm, no autoplay/animation; hero shows its poster still
   ------------------------------------------------------------------------- */
@media(prefers-reduced-motion:reduce){
  html{scroll-behavior:auto}
  *,*::before,*::after{animation-duration:.001ms!important;animation-iteration-count:1!important;transition-duration:.001ms!important}
  .reveal-ready [data-reveal]{opacity:1;transform:none}
}

/* ----------------------------------------------------------------------------
   13. PAGE COMPONENTS (interior pages)
   ------------------------------------------------------------------------- */
/* Interior page hero (non-video pages) */
.page-hero{position:relative;overflow:hidden;padding-block:clamp(40px,7vw,84px);background:linear-gradient(180deg,var(--surface),transparent)}
.page-hero::before{content:"";position:absolute;top:-140px;right:-120px;width:380px;height:380px;border-radius:50%;background:radial-gradient(circle,rgba(126,142,110,.22),transparent 70%);z-index:0}
.page-hero > *{position:relative;z-index:1}
.page-hero .eyebrow{margin-bottom:1rem}
.page-hero h1{max-width:20ch}
.page-hero .lead{margin-top:1rem;max-width:54ch}

/* ----------------------------------------------------------------------------
   Service-page polish: breadcrumb, facts strip, process steps, related links.
   Reusable across the service detail pages (and beyond).
   ------------------------------------------------------------------------- */
.breadcrumb{display:flex;flex-wrap:wrap;align-items:center;gap:.45rem;margin-bottom:1rem;font-size:.92rem;color:var(--text-soft)}
.breadcrumb a{color:var(--text-soft);text-decoration:none}
.breadcrumb a:hover{color:var(--terracotta-deep);text-decoration:underline}
.breadcrumb svg{width:14px;height:14px;opacity:.55}
.breadcrumb [aria-current]{color:var(--text);font-weight:600}

.svc-facts{display:flex;flex-wrap:wrap;gap:.6rem;margin-top:1.5rem;padding:0;list-style:none}
.svc-facts li{display:inline-flex;align-items:center;gap:.5rem;background:var(--surface);border:1px solid var(--line);
  border-radius:var(--radius-pill);padding:.5rem .95rem;font-size:.9rem;font-weight:600;color:var(--text)}
.svc-facts svg{width:17px;height:17px;color:var(--terracotta-deep);flex:none}

.steps{display:grid;gap:clamp(18px,2.5vw,26px)}
@media(min-width:760px){.steps--3{grid-template-columns:repeat(3,1fr)}}
.step{position:relative;background:var(--surface);border:1px solid var(--line);border-radius:var(--radius-lg);padding:clamp(22px,3vw,30px)}
.step__n{display:grid;place-items:center;width:42px;height:42px;border-radius:50%;background:rgba(194,115,79,.14);
  color:var(--terracotta-deep);font-family:var(--font-head);font-weight:600;font-size:1.15rem;margin-bottom:14px}
.step h3{margin:0 0 .4rem}
.step p{color:var(--text-soft)}

.related{display:grid;gap:clamp(16px,2vw,22px)}
@media(min-width:600px){.related{grid-template-columns:repeat(3,1fr)}}
.related__card{display:flex;align-items:center;gap:.6rem;justify-content:space-between;background:var(--surface);
  border:1px solid var(--line);border-radius:var(--radius);padding:1rem 1.2rem;text-decoration:none;color:var(--text);
  font-weight:600;transition:border-color .2s,box-shadow .2s,transform .2s}
.related__card:hover{border-color:var(--line-strong);box-shadow:var(--shadow-sm);transform:translateY(-2px)}
.related__card svg{width:18px;height:18px;color:var(--terracotta-deep);flex:none}

/* ----------------------------------------------------------------------------
   Seasonal ambient — four soft, slowly drifting blurred blobs in the right of a
   page intro (tied to the four-season tree logo). Pure CSS, decorative only.
   Drop <div class="seasons" aria-hidden="true">…4 blobs…</div> as the first
   child of any .page-hero. Tweak the four colours via the CSS variables below.
   ------------------------------------------------------------------------- */
.page-hero:has(.seasons)::before{display:none}   /* the blobs replace the single corner glow */
.seasons{
  position:absolute;top:0;right:0;bottom:0;z-index:0;pointer-events:none;
  width:clamp(360px,45%,720px);
  /* --- season colours (easy to tweak) --- */
  --spring:#7E8E6E;   /* sage green   */
  --summer:#A8A55E;   /* golden olive */
  --autumn:#C2734F;   /* terracotta   */
  --winter:#9AA3A8;   /* muted cool   */
  /* feathered radial mask: dissolves on ALL sides (no hard edge) and keeps the
     left, where the heading sits, clean (centre pushed right). */
  -webkit-mask-image:radial-gradient(80% 94% at 57% 50%, #000 40%, transparent 88%);
          mask-image:radial-gradient(80% 94% at 57% 50%, #000 40%, transparent 88%);
}
.seasons__blob{position:absolute;border-radius:50%;filter:blur(46px);will-change:transform}
.seasons__blob--spring{width:280px;height:280px;top:6%;left:32%;background:var(--spring);opacity:.48;animation:season-a 14s ease-in-out infinite}
.seasons__blob--winter{width:260px;height:260px;top:12%;left:74%;background:var(--winter);opacity:.46;animation:season-d 15.5s ease-in-out -3s infinite}
.seasons__blob--summer{width:290px;height:290px;top:64%;left:34%;background:var(--summer);opacity:.46;animation:season-b 13s ease-in-out -8s infinite}
.seasons__blob--autumn{width:330px;height:330px;top:58%;left:70%;background:var(--autumn);opacity:.42;animation:season-c 17s ease-in-out -5s infinite}
@keyframes season-a{0%,100%{transform:translate3d(0,0,0) scale(1)}30%{transform:translate3d(-44px,40px,0) scale(1.16)}64%{transform:translate3d(32px,-28px,0) scale(.88)}}
@keyframes season-b{0%,100%{transform:translate3d(0,0,0) scale(1)}36%{transform:translate3d(40px,-36px,0) scale(.86)}70%{transform:translate3d(-34px,32px,0) scale(1.18)}}
@keyframes season-c{0%,100%{transform:translate3d(0,0,0) scale(1)}42%{transform:translate3d(-46px,-32px,0) scale(1.14)}73%{transform:translate3d(36px,40px,0) scale(.88)}}
@keyframes season-d{0%,100%{transform:translate3d(0,0,0) scale(1)}34%{transform:translate3d(36px,36px,0) scale(1.2)}67%{transform:translate3d(-40px,-24px,0) scale(.85)}}
@media(max-width:900px){.seasons{width:clamp(260px,54%,460px);opacity:.7}}    /* smaller + fainter on tablet */
@media(max-width:600px){.seasons{display:none}}                               /* hidden on phones */
@media(prefers-reduced-motion:reduce){.seasons__blob{animation:none}}          /* freeze in place */

/* ----------------------------------------------------------------------------
   Wave field — reusable decorative WebGL background for a page intro / mini-hero.
   Sits in the RIGHT portion of a .page-hero, behind the content, and dissolves
   into the cream toward the left so the heading stays clean. Driven by
   assets/wavefield.js (lazy-loads Three.js; static gradient fallback otherwise).
   Drop <div class="wavefield" aria-hidden="true"><canvas></canvas></div> as the
   first child of any .page-hero, then load wavefield.js before </body>.
   ------------------------------------------------------------------------- */
.page-hero:has(.wavefield)::before{display:none}   /* the field replaces the corner glow */
.wavefield{
  position:absolute;top:0;right:0;bottom:0;z-index:0;pointer-events:none;
  width:clamp(380px,52%,760px);
  /* feathered mask: dense on the right, fully dissolved on the LEFT (where the
     heading sits) and softened on every other edge — no hard box anywhere. */
  -webkit-mask-image:radial-gradient(118% 132% at 80% 50%, #000 36%, transparent 78%);
          mask-image:radial-gradient(118% 132% at 80% 50%, #000 36%, transparent 78%);
}
.wavefield canvas{display:block;width:100%;height:100%}
/* Static cream fallback (no WebGL / reduced-motion / mobile) — same warm hues,
   masked identically so it reads as the same component, just frozen. */
.wavefield--static{
  background:
    radial-gradient(54% 60% at 72% 58%, rgba(194,115,79,.22), transparent 62%),
    radial-gradient(50% 56% at 84% 36%, rgba(217,160,102,.20), transparent 64%),
    radial-gradient(58% 64% at 62% 80%, rgba(126,142,110,.20), transparent 66%);
}
@media(max-width:600px){.wavefield{display:none}}                              /* hidden on phones */

/* Long-form prose */
.doc-updated{font-size:.9rem;font-style:italic;color:var(--text-soft);margin-bottom:1.6rem}
.prose{max-width:70ch}
.prose > * + *{margin-top:1.1rem}
.prose h2{margin-top:2rem}
.prose h3{margin-top:1.6rem}
.prose ul{padding-left:1.2rem;display:flex;flex-direction:column;gap:.45rem}
.prose li{max-width:66ch}
.prose strong{color:var(--text)}

/* Split (text + organic media) */
.split{display:grid;gap:clamp(24px,4vw,48px);align-items:center}
@media(min-width:880px){.split{grid-template-columns:1.05fr .95fr}.split--reverse > :first-child{order:2}}
@media(min-width:880px){.split--narrow-media{grid-template-columns:minmax(0,290px) 1fr}}
.media-blob{aspect-ratio:4/5;border-radius:46% 54% 48% 52% / 58% 42% 58% 42%;overflow:hidden;background:var(--surface);border:1px solid var(--line);box-shadow:var(--shadow)}
.media-blob img{width:100%;height:100%;object-fit:cover}
.media-blob.placeholder{display:grid;place-items:center;color:var(--text-soft)}
/* Parallax image: scaled up (so overflow:hidden clips it) giving GSAP room to
   translate it vertically without exposing an edge. Scale is unitless, so this
   avoids percentage-height issues inside the aspect-ratio blob. */
.media-blob img[data-parallax]{transform:scale(1.25);object-position:50% 55%;will-change:transform}

/* Office gallery — mosaic of the space with a GSAP staggered entrance */
.gallery-head{display:flex;flex-wrap:wrap;justify-content:space-between;align-items:flex-end;gap:1.2rem 2rem;margin-bottom:clamp(26px,3.5vw,42px)}
.gallery-head h2{margin-top:.7rem}
.gallery-head__desc{color:var(--text-soft);max-width:36ch}
@media(min-width:760px){.gallery-head__desc{text-align:right}}
.gallery-mosaic{display:grid;gap:clamp(12px,1.5vw,18px);grid-template-columns:1fr}
.gallery-item{position:relative;margin:0;overflow:hidden;border-radius:var(--radius-lg);border:1px solid var(--line);box-shadow:var(--shadow-sm);background:var(--surface-2);aspect-ratio:4/3;cursor:pointer}
.gallery-item img{width:100%;height:100%;object-fit:cover;object-position:center;transition:transform .6s var(--ease)}
.gallery-item--lg img{object-position:center 36%}
.gallery-item:hover img{transform:scale(1.05)}
.gallery-item:focus-visible{outline:3px solid var(--sage-deep);outline-offset:3px}
/* hover caption + expand cue */
.gallery-item figcaption{position:absolute;left:0;right:0;bottom:0;z-index:2;display:flex;align-items:center;justify-content:space-between;gap:.6rem;padding:16px 18px;color:#fff;font-weight:600;font-size:.92rem;background:linear-gradient(180deg,rgba(46,40,32,0),rgba(46,40,32,.82));opacity:0;transform:translateY(8px);transition:opacity .3s var(--ease),transform .3s var(--ease)}
.gallery-item figcaption svg{width:20px;height:20px;flex:0 0 auto;opacity:.9}
.gallery-item:hover figcaption,.gallery-item:focus-visible figcaption{opacity:1;transform:none}
@media(min-width:560px){
  .gallery-mosaic{grid-template-columns:1fr 1fr}
  .gallery-item--wide{grid-column:span 2}
}
@media(min-width:880px){
  .gallery-mosaic{grid-template-columns:2fr 1fr 1fr;grid-template-rows:repeat(2,clamp(150px,17vw,232px))}
  .gallery-item{aspect-ratio:auto;height:100%}
  .gallery-item--lg{grid-column:1;grid-row:1 / span 2}
  .gallery-item--wide{grid-column:2 / span 2;grid-row:1}
}

/* Lightbox (gallery full-size viewer) */
.lightbox{position:fixed;inset:0;z-index:300;display:flex;align-items:center;justify-content:center;padding:clamp(16px,4vw,56px);background:rgba(46,40,32,.93);-webkit-backdrop-filter:blur(4px);backdrop-filter:blur(4px);visibility:hidden;opacity:0}
.lightbox.is-open{visibility:visible;opacity:1}
.lightbox__figure{margin:0;display:flex;flex-direction:column;align-items:center;gap:1rem;max-width:min(1080px,92vw)}
.lightbox__img{max-width:100%;max-height:78vh;object-fit:contain;border-radius:var(--radius);box-shadow:var(--shadow-lg)}
.lightbox__cap{color:#EFE7DA;font-size:.95rem;text-align:center}
.lightbox__btn{position:absolute;width:52px;height:52px;display:grid;place-items:center;border-radius:50%;border:1px solid rgba(255,255,255,.28);background:rgba(255,255,255,.08);color:#fff;cursor:pointer;transition:background .2s,border-color .2s,transform .2s}
.lightbox__btn:hover{background:rgba(255,255,255,.2);border-color:#fff;transform:scale(1.05)}
.lightbox__btn svg{width:24px;height:24px}
.lightbox__close{top:clamp(14px,3vw,28px);right:clamp(14px,3vw,28px)}
.lightbox__prev{left:clamp(10px,2vw,24px);top:50%;transform:translateY(-50%)}
.lightbox__next{right:clamp(10px,2vw,24px);top:50%;transform:translateY(-50%)}
.lightbox__prev:hover,.lightbox__next:hover{transform:translateY(-50%) scale(1.05)}
@media(max-width:560px){.lightbox__prev{left:8px}.lightbox__next{right:8px}.lightbox__btn{width:44px;height:44px}}

/* Panels & check-lists (who it's for / what to expect) */
.panel{background:var(--surface);border:1px solid var(--line);border-radius:var(--radius-lg);padding:clamp(22px,3vw,30px)}
.panel h3{margin-bottom:.6rem}
.check-list{list-style:none;padding:0;margin:0;display:flex;flex-direction:column;gap:.6rem}
.check-list li{display:flex;gap:.6rem;align-items:flex-start;color:var(--text-soft)}
.check-list svg{width:20px;height:20px;flex:0 0 auto;color:var(--sage-deep);margin-top:.15rem}

/* Profile detail page — sticky left identity column + scrolling content */
.profile-aside{display:flex;flex-direction:column}
@media(min-width:880px){.profile-aside{position:sticky;top:90px}}
.profile-id{margin-top:1.1rem;text-align:center}
.profile-id__name{display:block;font-family:var(--font-head);font-weight:600;font-size:1.18rem;letter-spacing:.05em;text-transform:uppercase;color:var(--text);line-height:1.2}
.profile-id__role{display:block;margin-top:.35rem;font-size:.7rem;font-weight:700;letter-spacing:.13em;text-transform:uppercase;color:var(--sage-deep)}
.profile-id__status{display:inline-block;margin-top:.6rem;font-size:.7rem;font-weight:700;color:var(--terracotta-deep);background:rgba(194,115,79,.12);padding:.25rem .6rem;border-radius:var(--radius-pill)}
.profile-cta{display:flex;flex-direction:column;gap:.5rem;margin-top:1.2rem}
.profile-cta .btn{width:100%;justify-content:center}
.btn--sm{padding:.62rem 1rem;font-size:.88rem;min-height:0}
.profile-cards{display:grid;gap:16px;margin-top:clamp(28px,4vw,40px)}
.back-link{display:inline-flex;align-items:center;gap:.45rem;font-weight:700;color:var(--text-soft);text-decoration:none;transition:color .2s var(--ease)}
.back-link:hover{color:var(--terracotta-deep)}

/* Chips — areas of focus / approaches */
.chips{display:flex;flex-wrap:wrap;gap:.5rem}
.chip{display:inline-flex;align-items:center;font-size:.85rem;font-weight:600;color:var(--sage-deep);background:rgba(126,142,110,.13);border:1px solid rgba(126,142,110,.24);padding:.35rem .75rem;border-radius:var(--radius-pill)}

/* People (team) */
.people{display:grid;gap:clamp(18px,2.5vw,26px);grid-template-columns:1fr}
@media(min-width:560px){.people{grid-template-columns:repeat(2,1fr)}}
@media(min-width:980px){.people{grid-template-columns:repeat(3,1fr)}}
.person{background:var(--surface);border:1px solid var(--line);border-radius:var(--radius-lg);overflow:hidden;display:flex;flex-direction:column;transition:border-color .2s,box-shadow .2s,transform .2s}
.person:hover{border-color:var(--line-strong);box-shadow:var(--shadow);transform:translateY(-3px)}
.person__link{display:flex;flex-direction:column;flex:1;text-decoration:none;color:inherit}
.person__link:hover .person__name{color:var(--terracotta-deep)}
.person__photo{aspect-ratio:1/1;background:linear-gradient(160deg,#EBE3D4,#E3D8C4);display:grid;place-items:center;color:var(--sage-deep);position:relative}
.person__photo img{width:100%;height:100%;object-fit:cover;object-position:center 28%}
.person__photo svg{width:30%;height:30%;opacity:.45}
.person__body{padding:18px 20px 22px;display:flex;flex-direction:column;flex:1}
.person__name{font-family:var(--font-head);font-size:1.25rem;font-weight:600;color:var(--text)}
.person__role{color:var(--sage-deep);font-weight:700;font-size:.9rem;margin-top:.2rem}
.person__status{align-self:flex-start;margin-top:.55rem;font-size:.76rem;font-weight:700;color:var(--terracotta-deep);background:rgba(194,115,79,.12);padding:.25rem .6rem;border-radius:var(--radius-pill)}
.person__bio{color:var(--text-soft);font-size:.95rem;margin-top:.7rem}
.person__tags{display:flex;flex-wrap:wrap;gap:.4rem;margin-top:auto;padding-top:.9rem}
.person--placeholder{border-style:dashed}
.person--placeholder .person__photo{background:repeating-linear-gradient(135deg,#EFE7DA 0 14px,#EBE3D4 14px 28px)}

/* Featured Director card (highlighted) */
.director-card{position:relative;overflow:hidden;display:grid;grid-template-columns:clamp(240px,32%,340px) 1fr;gap:clamp(28px,4vw,52px);align-items:center;background:linear-gradient(135deg,var(--surface) 0%,var(--bg) 100%);border:1px solid var(--line-strong);border-radius:var(--radius-xl);padding:clamp(22px,3vw,38px);box-shadow:var(--shadow-lg);margin-bottom:clamp(44px,7vw,76px)}
.director-card::after{content:"";position:absolute;top:-90px;right:-70px;width:300px;height:300px;border-radius:50%;background:radial-gradient(circle,rgba(126,142,110,.2),transparent 70%);pointer-events:none}
.director-card__photo{position:relative;z-index:1;border-radius:var(--radius-lg);overflow:hidden;aspect-ratio:4/5;background:var(--surface-2);box-shadow:0 22px 46px -22px rgba(46,40,32,.5)}
.director-card__photo img{width:100%;height:100%;object-fit:cover;object-position:center 18%}
.director-card__photo::after{content:"";position:absolute;inset:0;background:linear-gradient(180deg,transparent 58%,rgba(46,40,32,.22));pointer-events:none}
.director-badge{position:absolute;top:14px;left:14px;z-index:2;display:inline-flex;align-items:center;gap:.4rem;font-size:.72rem;font-weight:700;letter-spacing:.1em;text-transform:uppercase;color:#fff;background:rgba(168,90,56,.9);-webkit-backdrop-filter:blur(6px);backdrop-filter:blur(6px);padding:.36rem .78rem;border-radius:var(--radius-pill);box-shadow:0 8px 18px -8px rgba(46,40,32,.55)}
.director-badge svg{width:14px;height:14px}
/* Director hover leaf burst (GSAP-driven; hidden until hover) */
.dleaf-field{position:absolute;inset:0;z-index:4;pointer-events:none}
.dleaf{position:absolute;background-image:url("../img/falling-green-leaves-natures-graceful-dance.webp");background-repeat:no-repeat;background-size:360px 360px;filter:drop-shadow(0 5px 9px rgba(46,40,32,.28));opacity:0;will-change:transform,opacity}
.director-card__body{position:relative;z-index:1}
.director-card__name{font-size:clamp(1.7rem,3vw,2.3rem);line-height:1.08}
.director-card__role{color:var(--sage-deep);font-weight:700;font-size:.95rem;margin-top:.4rem}
.director-card__bio{color:var(--text-soft);margin-top:1.1rem;max-width:62ch}
.director-card .btn{margin-top:1.6rem}
@media(max-width:640px){.director-card{grid-template-columns:1fr}.director-card__photo{max-width:260px;margin-inline:auto}}

/* Morphism team cards — photo-filled, name over gradient; on hover a frosted
   glass panel fades in to reveal the member's bio + a glass "View profile" pill. */
.tcard{position:relative;display:block;aspect-ratio:3/4;border-radius:22px;overflow:hidden;text-decoration:none;background:var(--surface-2);box-shadow:0 18px 42px -22px rgba(46,40,32,.5);transition:transform .3s var(--ease),box-shadow .3s var(--ease)}
.tcard:hover{transform:translateY(-4px);box-shadow:0 28px 56px -24px rgba(46,40,32,.6)}
.tcard:focus-visible{outline:3px solid var(--terracotta);outline-offset:3px}
.tcard__img{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;object-position:center 18%;transition:transform .6s var(--ease)}
.tcard:hover .tcard__img{transform:scale(1.06)}
.tcard__base{position:absolute;inset:0;z-index:2;display:flex;flex-direction:column;justify-content:flex-end;padding:18px 20px;color:#fff;background:linear-gradient(180deg,rgba(46,40,32,0) 46%,rgba(46,40,32,.84) 100%);transition:opacity .35s var(--ease)}
.tcard:hover .tcard__base{opacity:0}
.tcard__name{font-family:var(--font-head);color:#fff;font-weight:600;font-size:1.22rem;line-height:1.15}
.tcard__role{color:rgba(255,255,255,.86);font-weight:600;font-size:.84rem;margin-top:.2rem}
.tcard__status{align-self:flex-start;margin-bottom:.55rem;font-size:.68rem;font-weight:700;color:#fff;background:rgba(194,115,79,.9);padding:.2rem .55rem;border-radius:var(--radius-pill)}
/* frosted reveal */
.tcard__reveal{position:absolute;inset:0;z-index:3;display:flex;flex-direction:column;justify-content:flex-end;gap:.5rem;padding:20px;color:#fff;background:linear-gradient(180deg,rgba(46,40,32,.32),rgba(46,40,32,.74));-webkit-backdrop-filter:blur(7px) saturate(1.1);backdrop-filter:blur(7px) saturate(1.1);opacity:0;transition:opacity .35s var(--ease)}
.tcard:hover .tcard__reveal{opacity:1}
.tcard__reveal .tcard__name{font-size:1.15rem}
.tcard__role--rev{color:#F0C9A6;font-weight:700;font-size:.8rem;letter-spacing:.02em;margin-bottom:.15rem}
.tcard__bio{font-size:.83rem;line-height:1.5;color:rgba(255,255,255,.93);display:-webkit-box;-webkit-line-clamp:4;line-clamp:4;-webkit-box-orient:vertical;overflow:hidden}
.tcard__more{display:inline-flex;align-items:center;gap:.4rem;align-self:flex-start;margin-top:.45rem;font-weight:700;font-size:.84rem;color:#fff;background:rgba(255,255,255,.18);border:1px solid rgba(255,255,255,.34);-webkit-backdrop-filter:blur(6px);backdrop-filter:blur(6px);padding:.5rem .85rem;border-radius:var(--radius-pill);transition:background .2s var(--ease)}
.tcard:hover .tcard__more{background:rgba(255,255,255,.28)}
.tcard__more svg{width:15px;height:15px}
/* placeholder (no photo yet) */
.tcard--placeholder{background:repeating-linear-gradient(135deg,#EFE7DA 0 14px,#EBE3D4 14px 28px);border:1px dashed var(--line-strong)}
.tcard--placeholder .tcard__ph{position:absolute;inset:0;display:grid;place-items:center;color:var(--sage-deep);opacity:.4}
.tcard--placeholder .tcard__ph svg{width:34%;height:34%}
.tcard--placeholder .tcard__base{background:linear-gradient(180deg,transparent 55%,rgba(46,40,32,.12));color:var(--text)}
.tcard--placeholder .tcard__name{color:var(--text)}
.tcard--placeholder .tcard__role{color:var(--text-soft)}
.tcard--placeholder .tcard__status{background:rgba(126,142,110,.85)}
@media(prefers-reduced-motion:reduce){.tcard__img,.tcard{transition:none}.tcard:hover .tcard__img{transform:none}}

/* Role groups */
.team-group + .team-group{margin-top:clamp(44px,6vw,72px)}
.team-group__head{display:flex;align-items:center;gap:.85rem;margin-bottom:clamp(22px,3vw,30px)}
.team-group__head h2{font-size:clamp(1.35rem,2.4vw,1.8rem);margin:0;white-space:nowrap}
.team-group__count{display:inline-grid;place-items:center;min-width:27px;height:27px;padding:0 .5rem;border-radius:var(--radius-pill);background:rgba(126,142,110,.16);color:var(--sage-deep);font-weight:700;font-size:.82rem}
.team-group__head::after{content:"";flex:1;height:1px;background:var(--line)}

/* Resources page — sticky emergency sidebar + crisis/support directory */
.res-layout{display:grid;gap:clamp(28px,4vw,52px);grid-template-columns:1fr}
@media(min-width:900px){
  .res-layout{grid-template-columns:minmax(280px,320px) 1fr;align-items:start}
  .res-sidebar{position:sticky;top:calc(var(--header-h) + 20px)}
}
/* SOS widget card — big tap-to-call 911 number */
.sos{background:var(--surface);border:1px solid var(--line);border-radius:var(--radius-xl);padding:16px;box-shadow:var(--shadow)}
.sos__head{display:flex;align-items:center;gap:.55rem;padding:4px 6px 14px}
.sos__icon{flex:0 0 auto;width:32px;height:32px;display:grid;place-items:center;border-radius:9px;background:rgba(194,115,79,.14);color:var(--terracotta-deep)}
.sos__icon svg{width:18px;height:18px}
.sos__title{font-weight:700;color:var(--text);font-size:.95rem}
.sos__call{display:block;position:relative;overflow:hidden;text-decoration:none;border-radius:var(--radius-lg);
  background:linear-gradient(155deg,rgba(194,115,79,.16),rgba(194,115,79,.06));
  border:1px solid rgba(194,115,79,.3);padding:18px 20px 20px;
  transition:transform .2s var(--ease),box-shadow .2s var(--ease),border-color .2s var(--ease)}
.sos__call::after{content:"";position:absolute;right:-30px;bottom:-40px;width:130px;height:130px;border-radius:50%;background:radial-gradient(circle,rgba(194,115,79,.22),transparent 70%);pointer-events:none}
.sos__call:hover{transform:translateY(-2px);box-shadow:0 16px 32px -18px rgba(168,90,56,.5);border-color:rgba(194,115,79,.5)}
.sos__label{display:block;color:var(--text-soft);font-size:.85rem;font-weight:600}
.sos__number{display:flex;align-items:center;gap:.7rem;margin-top:.2rem;font-family:var(--font-head);font-weight:600;font-size:clamp(3.2rem,5.5vw,4.2rem);line-height:1;color:var(--terracotta-deep);letter-spacing:-.01em}
.sos__badge{font-family:var(--font-body);font-size:.68rem;font-weight:700;letter-spacing:.06em;color:#fff;background:var(--terracotta-deep);padding:.28rem .55rem;border-radius:var(--radius-pill)}
.sos__note{color:var(--text-soft);font-size:.86rem;line-height:1.55;margin-top:14px;padding-inline:2px}
.sos__alt{width:100%;justify-content:center;margin-top:14px}
.sos__alt svg{width:17px;height:17px}
.res-cat:first-child{margin-top:0}
.res-cat + .res-cat{margin-top:clamp(36px,5vw,56px)}
.res-cat__head{display:flex;align-items:center;gap:.7rem;margin-bottom:clamp(18px,2.5vw,26px)}
.res-cat__head h2{font-size:clamp(1.3rem,2.3vw,1.7rem);margin:0;white-space:nowrap}
.res-cat__icon{flex:0 0 auto;width:38px;height:38px;display:grid;place-items:center;border-radius:11px;background:rgba(126,142,110,.16);color:var(--sage-deep)}
.res-cat__icon svg{width:20px;height:20px}
.res-cat__head::after{content:"";flex:1;height:1px;background:var(--line)}
.resource-grid{display:grid;gap:14px;grid-template-columns:repeat(auto-fill,minmax(248px,1fr))}
.resource{display:flex;align-items:center;gap:.9rem;padding:15px 16px;background:var(--surface);border:1px solid var(--line);border-radius:var(--radius);text-decoration:none;transition:border-color .2s var(--ease),box-shadow .2s var(--ease),transform .2s var(--ease)}
.resource:hover{border-color:var(--line-strong);box-shadow:var(--shadow);transform:translateY(-3px)}
.resource:focus-visible{outline:3px solid var(--sage-deep);outline-offset:3px}
.resource__icon{flex:0 0 auto;width:42px;height:42px;display:grid;place-items:center;border-radius:50%;background:rgba(126,142,110,.14);color:var(--sage-deep);transition:background .2s var(--ease),color .2s var(--ease)}
.resource:hover .resource__icon{background:var(--terracotta-deep);color:#fff}
.resource__icon svg{width:19px;height:19px}
.resource__body{display:flex;flex-direction:column;gap:.12rem;min-width:0}
.resource__name{font-weight:700;color:var(--text);font-size:.92rem;line-height:1.3}
.resource__phone{color:var(--terracotta-deep);font-weight:700;font-size:.9rem}

/* Team carousel — full-bleed Swiper of image cards.
   The carousel sits OUTSIDE .wrap so it spans the full viewport width. */
.team-carousel{margin-top:clamp(24px,3vw,40px);padding-inline:clamp(20px,3.5vw,56px)}
.team-swiper{overflow:hidden;padding-bottom: 56px; padding-top: 20px}
.team-swiper .swiper-slide{height:auto}

/* Image card (name + role + CTA over a darkened photo) */
.team-card{
  position:relative;display:block;aspect-ratio:3/4;border-radius:22px;overflow:hidden;
  text-decoration:none;background:var(--surface-2);
  box-shadow:0 18px 42px -20px rgba(46,40,32,.55);
  transition:transform .3s var(--ease),box-shadow .3s var(--ease);
}
.team-card:hover{transform:translateY(-4px);box-shadow:0 26px 54px -22px rgba(46,40,32,.62)}
.team-card:focus-visible{outline:3px solid var(--terracotta);outline-offset:3px}
.team-card__img{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;object-position:center 22%;transition:transform .6s var(--ease)}
.team-card:hover .team-card__img{transform:scale(1.06)}
.team-card::after{content:"";position:absolute;inset:0;z-index:1;
  background:linear-gradient(180deg,rgba(46,40,32,0) 34%,rgba(46,40,32,.45) 62%,rgba(46,40,32,.88) 100%)}
.team-card__content{position:absolute;left:0;right:0;bottom:0;z-index:2;padding:clamp(16px,1.6vw,22px);color:#fff}
.team-card__name{font-family:var(--font-head);color:#fff;font-weight:600;line-height:1.15;font-size:clamp(1.18rem,1.4vw,1.42rem)}
/* Role badge — seasonal background (from the logo tree), white text */
.team-card__role{
  display:inline-block;margin-top:.55rem;padding:.28rem .66rem;
  border-radius:var(--radius-pill);font-size:.72rem;font-weight:700;
  letter-spacing:.01em;color:#fff;background:rgba(46,40,32,.6);
  box-shadow:0 2px 10px -4px rgba(46,40,32,.6);
}
.team-card__role--spring{background:#5E9A3E}  /* spring growth (green) */
.team-card__role--summer{background:#2E8B5E}  /* summer (deep green) */
.team-card__role--autumn{background:#C2733F}  /* autumn (orange) */
.team-card__role--gold{background:#B98A2E}    /* autumn gold */
.team-card__role--winter{background:#3A7FBE}  /* winter (blue) */
.team-card__cta{
  display:flex;align-items:center;justify-content:space-between;gap:.6rem;
  width:100%;margin-top:1rem;padding:.62rem .95rem;border-radius:var(--radius-pill);
  background:rgba(255,255,255,.16);border:1px solid rgba(255,255,255,.3);
  -webkit-backdrop-filter:blur(6px);backdrop-filter:blur(6px);
  color:#fff;font-weight:700;font-size:.85rem;transition:background .2s,border-color .2s;
}
.team-card:hover .team-card__cta{background:rgba(255,255,255,.27);border-color:rgba(255,255,255,.5)}
.team-card__cta svg{width:18px;height:18px;flex:0 0 auto;transition:transform .2s}
.team-card:hover .team-card__cta svg{transform:translateX(3px)}

/* Carousel navigation + pagination */
.team-carousel__nav{display:flex;align-items:center;justify-content:center;gap:1.1rem;margin-bottom:40px;max-width: 400px; margin-left: auto; margin-right: auto;}
.team-carousel .swiper{padding-bottom: 56px;}
.carousel__btn{
  width:46px;height:46px;flex:0 0 auto;display:grid;place-items:center;
  border-radius:50%;border:1px solid var(--line);background:var(--surface);
  color:var(--text);cursor:pointer;transition:background .2s,border-color .2s,transform .2s;
}
.carousel__btn:hover{background:var(--bg);border-color:var(--terracotta);transform:translateY(-1px)}
.carousel__btn:disabled{opacity:.4;cursor:default;transform:none}
.carousel__btn svg{width:20px;height:20px}
.team-carousel .swiper-pagination{position:static;display:flex;align-items:center;gap:.5rem;width:auto;justify-content: center;}
.team-carousel .swiper-pagination-bullet{width:9px;height:9px;background:rgba(46,40,32,.22);opacity:1;transition:background .2s,transform .2s}
.team-carousel .swiper-pagination-bullet-active{background:var(--terracotta);transform:scale(1.3)}

/* FAQ teaser — intro + contact card beside a card-style accordion */
.faq-layout{display:grid;gap:clamp(28px,4vw,64px);align-items:start;grid-template-columns:1fr}
@media(min-width:900px){.faq-layout{grid-template-columns:0.86fr 1.14fr}.faq-aside{position:sticky;top:96px}}
.faq-aside__lead{color:var(--text-soft);margin-top:1rem;max-width:36ch}
.faq-card{margin-top:clamp(28px,4vw,52px);background:var(--surface);border:1px solid var(--line);border-radius:var(--radius-xl);padding:clamp(24px,3vw,32px)}
.faq-card h3{margin-bottom:.5rem}
.faq-card p{color:var(--text-soft)}
.faq-card .btn{margin-top:1.4rem}

/* Card-style accordion (each item is its own rounded card) */
.faq-accordion{display:flex;flex-direction:column;gap:14px}
.faq-item{background:var(--surface);border:1px solid var(--line);border-radius:var(--radius-lg);transition:border-color .2s,box-shadow .2s}
.faq-item[open]{box-shadow:var(--shadow);border-color:var(--line-strong)}
.faq-item summary{cursor:pointer;list-style:none;display:flex;justify-content:space-between;align-items:center;gap:1rem;padding:clamp(18px,2vw,24px);font-family:var(--font-head);font-weight:600;font-size:clamp(1.02rem,1.5vw,1.2rem);color:var(--text);min-height:var(--tap)}
.faq-item summary::-webkit-details-marker{display:none}
.faq-item__icon{width:38px;height:38px;flex:0 0 auto;border-radius:50%;display:grid;place-items:center;background:var(--bg);border:1px solid var(--line);color:var(--text);transition:background .2s,color .2s,border-color .2s}
.faq-item__icon svg{width:18px;height:18px;transition:transform .25s var(--ease)}
.faq-item[open] .faq-item__icon{background:var(--text);color:#fff;border-color:var(--text)}
.faq-item[open] .faq-item__icon svg{transform:rotate(180deg)}
.faq-item .acc-body{padding:0 clamp(18px,2vw,24px) clamp(20px,2.2vw,26px);margin-top:-.3rem}
.faq-item .acc-body p{color:var(--text-soft)}
.faq-item .acc-body > * + *{margin-top:.7rem}
.faq-item .acc-body ul{padding-left:1.2rem;display:flex;flex-direction:column;gap:.4rem;color:var(--text-soft)}

/* Accordion (FAQ) — native details/summary, accessible, no JS needed */
.accordion{border-top:1px solid var(--line);max-width:80ch}
.accordion details{border-bottom:1px solid var(--line)}
.accordion summary{cursor:pointer;list-style:none;display:flex;justify-content:space-between;align-items:center;gap:1rem;padding:1.1rem 0;font-family:var(--font-head);font-weight:600;font-size:clamp(1.05rem,1.6vw,1.25rem);color:var(--text);min-height:var(--tap)}
.accordion summary::-webkit-details-marker{display:none}
.accordion summary::after{content:"";width:12px;height:12px;flex:0 0 auto;border-right:2.5px solid var(--terracotta-deep);border-bottom:2.5px solid var(--terracotta-deep);transform:rotate(45deg);transition:transform .25s var(--ease)}
.accordion details[open] summary::after{transform:rotate(-135deg)}
.accordion .acc-body{padding-bottom:1.2rem;color:var(--text-soft);max-width:70ch}
.accordion .acc-body > * + *{margin-top:.7rem}

/* Group cards */
.group-card .group-meta{display:flex;flex-wrap:wrap;gap:.5rem;margin:.4rem 0 .9rem}
.group-card .chip{font-size:.78rem;font-weight:700;color:var(--sage-deep);background:rgba(126,142,110,.14);padding:.25rem .7rem;border-radius:var(--radius-pill)}
.group-card .schedule{font-size:.9rem;color:var(--text-soft);margin-top:.8rem;display:flex;align-items:center;gap:.5rem}
.group-card .schedule svg{width:17px;height:17px;color:var(--sage-deep);flex:0 0 auto}

/* Blog */
.post-thumb{aspect-ratio:16/10;border-radius:var(--radius);background:linear-gradient(160deg,#EBE3D4,#E3D8C4);margin-bottom:16px;display:grid;place-items:center;color:var(--sage-deep)}
.post-thumb svg{width:42px;height:42px;opacity:.5}
.post-meta{font-size:.8rem;color:var(--text-soft);letter-spacing:.05em;text-transform:uppercase;font-weight:700}
.post-card h3{margin:.5rem 0 .4rem}

/* Contact form (non-functional prototype) */
.form{display:grid;gap:1rem;max-width:560px}
.field{display:flex;flex-direction:column;gap:.4rem}
.field label{font-weight:700;font-size:.95rem}
.field input,.field textarea,.field select{font:inherit;color:var(--text);background:var(--surface);border:1.5px solid var(--line-strong);border-radius:14px;padding:.7rem .9rem;min-height:var(--tap);width:100%}
.field textarea{min-height:130px;resize:vertical}
.field input:focus-visible,.field textarea:focus-visible,.field select:focus-visible{outline:3px solid var(--sage-deep);outline-offset:2px;border-color:var(--terracotta)}
.form-note{font-size:.92rem;color:var(--text-soft);max-width:52ch}

/* Contact Form 7 — inherit the native .form/.field look */
.form .wpcf7-form{display:grid;gap:1rem}
.form .wpcf7-form-control-wrap{display:block}
.form-hint{font-size:.86rem;color:var(--text-soft);margin:-.3rem 0 0;max-width:52ch}
.form .wpcf7-acceptance .wpcf7-list-item{margin:0}
.form .wpcf7-acceptance label{display:flex;align-items:flex-start;gap:.55rem;font-weight:500;font-size:.92rem;color:var(--text-soft);cursor:pointer}
.form .wpcf7-acceptance input[type=checkbox]{width:1.15rem;height:1.15rem;min-height:0;margin-top:.12rem;accent-color:var(--terracotta-deep);flex:0 0 auto}
.form .wpcf7-not-valid-tip{color:#a3331f;font-size:.82rem;font-weight:600;margin-top:.3rem}
.form .wpcf7-form-control.wpcf7-not-valid{border-color:#a3331f}
.form .wpcf7-submit{justify-self:start}
.form .wpcf7-spinner{margin:.4rem 0 0 .6rem}
.form .wpcf7-response-output{margin:.4rem 0 0;padding:.8rem 1rem;border-radius:12px;font-size:.92rem;border:1.5px solid var(--line-strong);background:var(--surface)}
.wpcf7 form.sent .wpcf7-response-output{border-color:#2a7a4f;background:rgba(46,139,94,.1);color:#1d5e3b}
.wpcf7 form.invalid .wpcf7-response-output,.wpcf7 form.failed .wpcf7-response-output,.wpcf7 form.spam .wpcf7-response-output{border-color:#a3331f;background:rgba(163,51,31,.08);color:#8a2a18}
.form .wpcf7-form-control-wrap[data-name="website-hp"],.form .wpcf7-form-control-wrap.website-hp{position:absolute!important;left:-9999px!important;width:1px;height:1px;overflow:hidden}

/* Highlights / client-managed quote band */
.quote-band{background:linear-gradient(135deg,rgba(126,142,110,.18),rgba(194,115,79,.12));border:1px solid var(--line);border-radius:var(--radius-xl);padding:clamp(30px,5vw,60px);text-align:center;position:relative}
.quote-band blockquote{font-family:var(--font-head);font-style:italic;font-weight:500;font-size:clamp(1.4rem,3vw,2.05rem);line-height:1.35;max-width:26ch;margin-inline:auto;color:var(--text)}
.quote-band figcaption{margin-top:1rem;font-weight:700;color:var(--sage-deep);letter-spacing:.03em}
.managed-note{margin-top:1.5rem;display:inline-flex;align-items:center;gap:.5rem;font-size:.8rem;color:var(--text-soft);background:var(--surface);border:1px dashed var(--line-strong);border-radius:var(--radius-pill);padding:.4rem .9rem}

/* Dark CTA band */
.cta-band{background:var(--text);color:var(--on-dark);border-radius:var(--radius-xl);padding:clamp(30px,5vw,60px);text-align:center}
.cta-band h2{color:var(--on-dark)}
.cta-band p{color:var(--on-dark-soft);max-width:48ch;margin-inline:auto;margin-top:.7rem}
.cta-band .actions{display:flex;flex-wrap:wrap;gap:.8rem;justify-content:center;margin-top:1.6rem}

/* PROPOSED-copy marker — subtle ribbon so the client can spot draft sections */
.proposed{position:relative}
.proposed-tag{display:inline-flex;align-items:center;gap:.4rem;font-size:.74rem;font-weight:700;letter-spacing:.04em;text-transform:uppercase;color:#8A5A2B;background:rgba(216,199,168,.4);border:1px solid var(--line-strong);border-radius:var(--radius-pill);padding:.25rem .7rem;margin-bottom:.8rem}

/* ----------------------------------------------------------------------------
   Decorative leaves — ONE sprite image, each leaf cropped via background-
   position. A few drift over the About section with scroll parallax (moving
   the OPPOSITE direction to the photo) plus a gentle in-place float.
   ------------------------------------------------------------------------- */
#about .split{position:relative}
#about .media-blob{position:relative;z-index:1}      /* photo sits between the two leaf layers */
.leaf-field{position:absolute;inset:0;z-index:2;pointer-events:none}   /* leaves in front of the photo */
.leaf-field--back{z-index:0}                          /* leaves peeking from behind the photo */
.aleaf{position:absolute;display:block;
  background-image:url("../img/falling-green-leaves-natures-graceful-dance.webp");
  background-repeat:no-repeat;background-size:360px 360px;
  filter:drop-shadow(0 5px 8px rgba(46,40,32,.22));
  animation:aleafFloat var(--float,7s) ease-in-out var(--fdelay,0s) infinite;
  will-change:transform,translate,rotate}
@keyframes aleafFloat{0%,100%{translate:0 0;rotate:var(--r0,-5deg)}50%{translate:0 -8px;rotate:var(--r1,6deg)}}
.is-leaf0{width:86px;height:47px;background-position:-127px -116px}
.is-leaf1{width:45px;height:81px;background-position:-186px -188px}
.is-leaf2{width:72px;height:74px;background-position:-64px -180px}
.is-leaf3{width:73px;height:51px;background-position:-216px -38px}
.is-leaf4{width:80px;height:37px;background-position:-85px -65px}
.is-leaf5{width:64px;height:45px;background-position:-212px -290px}
.is-leaf6{width:55px;height:36px;background-position:-156px -18px}
.is-leaf7{width:45px;height:32px;background-position:-208px -155px}
.is-leaf8{width:47px;height:28px;background-position:-276px -85px}
.is-leaf9{width:55px;height:33px;background-position:-65px -120px}
.is-leaf10{width:47px;height:24px;background-position:-80px -279px}
.is-leaf11{width:28px;height:40px;background-position:-141px -283px}
@media(max-width:760px){.leaf-field{display:none}}
@media(prefers-reduced-motion:reduce){.leaf-field{display:none}}

/* ----------------------------------------------------------------------------
   Contact map — Leaflet + OpenStreetMap, recoloured to the Warm & Organic
   palette, with a custom terracotta pin, pulsing ring, and a floating info card.
   ------------------------------------------------------------------------- */
.map-wrap{position:relative;margin-top:1.6rem;border-radius:var(--radius-lg);overflow:hidden;
  border:1px solid var(--line);box-shadow:var(--shadow)}
#map{aspect-ratio:16/10;width:100%;background:var(--surface-2);z-index:0}
/* recolour the raster OSM tiles toward warm cream/sepia so they sit in-palette */
.map-wrap .leaflet-tile-pane{filter:sepia(.46) saturate(.7) brightness(1.05) hue-rotate(-8deg) contrast(.95)}
/* soften Leaflet's chrome */
.map-wrap .leaflet-control-zoom a{background:var(--surface);color:var(--text);border:1px solid var(--line);
  border-radius:9px!important;width:30px;height:30px;line-height:28px;font-weight:700;margin-bottom:6px}
.map-wrap .leaflet-control-zoom a:hover{background:var(--bg);color:var(--terracotta-deep)}
.map-wrap .leaflet-bar{border:none;box-shadow:var(--shadow-sm)}
.map-wrap .leaflet-control-attribution{background:rgba(251,248,242,.82);color:var(--text-soft);
  font-size:10px;border-radius:8px 0 0 0;padding:2px 6px}
.map-wrap .leaflet-control-attribution a{color:var(--terracotta-deep)}

/* custom marker: terracotta teardrop pin + expanding pulse ring */
.map-pin{position:relative;width:30px;height:40px}
.map-pin__svg{position:absolute;inset:0;filter:drop-shadow(0 4px 6px rgba(46,40,32,.5))}
.map-pin__pulse{position:absolute;left:15px;bottom:0;width:12px;height:12px;border-radius:50%;
  transform:translate(-50%,50%);background:rgba(194,115,79,.5);animation:map-pulse 2.4s ease-out infinite}
@keyframes map-pulse{
  0%{box-shadow:0 0 0 0 rgba(194,115,79,.5)}
  70%{box-shadow:0 0 0 24px rgba(194,115,79,0)}
  100%{box-shadow:0 0 0 0 rgba(194,115,79,0)}
}

/* floating info card on the map */
.map-card{position:absolute;left:16px;bottom:16px;z-index:500;max-width:min(78%,300px);
  background:rgba(251,248,242,.93);backdrop-filter:blur(8px);-webkit-backdrop-filter:blur(8px);
  border:1px solid var(--line);border-radius:var(--radius);padding:14px 16px;box-shadow:var(--shadow);
  display:grid;gap:.2rem}
.map-card strong{font-family:var(--font-head);font-size:1.05rem;color:var(--text)}
.map-card span{font-size:.9rem;color:var(--text-soft)}
.map-card a{margin-top:.4rem;display:inline-flex;align-items:center;gap:.35rem;font-weight:700;
  font-size:.9rem;color:var(--terracotta-deep);text-decoration:none}
.map-card a:hover{text-decoration:underline}
.map-card a svg{width:15px;height:15px}

@media(prefers-reduced-motion:reduce){.map-pin__pulse{animation:none}}
@media(max-width:540px){.map-card{left:10px;right:10px;bottom:10px;max-width:none}}

/* FAQ category groups (full FAQ page) + service-page FAQ block */
.faq-groups{display:flex;flex-direction:column;gap:clamp(30px,4vw,46px)}
.faq-cat__title{font-size:clamp(1.12rem,1.7vw,1.4rem);margin-bottom:14px;display:flex;align-items:center;gap:.6rem}
.faq-cat__title svg{width:20px;height:20px;color:var(--terracotta-deep);flex:none}
.faq-accordion--single{max-width:780px;margin-inline:auto}
.faq-more{margin-top:24px;text-align:center}

/* Featured group (Groups page) — currently-running group highlight */
.group-feature{display:grid;gap:clamp(24px,4vw,48px);align-items:center;
  background:linear-gradient(135deg,var(--surface) 0%,var(--bg) 100%);
  border:1px solid var(--line-strong);border-radius:var(--radius-xl);
  padding:clamp(24px,4vw,44px);box-shadow:var(--shadow-lg)}
@media(min-width:820px){.group-feature{grid-template-columns:1.1fr .9fr}}
.group-feature h2{margin:.6rem 0 .4rem}
.group-feature__sub{color:var(--text-soft);max-width:46ch}
.group-feature__actions{display:flex;flex-wrap:wrap;gap:.8rem;margin-top:1.4rem}
.group-feature__poster{margin-top:1rem}
.group-feature__poster a{display:inline-flex;align-items:center;gap:.45rem;font-weight:600;
  color:var(--terracotta-deep);text-decoration:none;font-size:.95rem}
.group-feature__poster a:hover{text-decoration:underline}
.group-feature__poster svg{width:16px;height:16px}
.chip--accent{background:var(--terracotta-deep);color:#fff;border-color:transparent}
.group-facts{list-style:none;margin:0;padding:0;display:flex;flex-direction:column;gap:.95rem;
  background:var(--surface);border:1px solid var(--line);border-radius:var(--radius-lg);padding:clamp(20px,3vw,28px)}
.group-facts li{display:flex;gap:.8rem;align-items:flex-start}
.group-facts li svg{width:22px;height:22px;color:var(--terracotta-deep);flex:none;margin-top:2px}
.group-facts li > span{display:flex;flex-direction:column;line-height:1.35;color:var(--text-soft)}
.group-facts strong{font-family:var(--font-head);font-weight:600;color:var(--text)}
