/* =========================================================================
   Holisthea — core stylesheet
   Design tokens extracted from Figma ("Holisthea -Testing")
   ========================================================================= */

/* ---- Proxima Nova (licensed, supplied by client) ---- */
@font-face{
  font-family:"Proxima Nova"; font-weight:400; font-style:normal; font-display:swap;
  src:url("../fonts/ProximaNovaRegular.woff") format("woff");
}
@font-face{
  font-family:"Proxima Nova"; font-weight:700; font-style:normal; font-display:swap;
  src:url("../fonts/ProximaNovaBold.woff") format("woff");
}
@font-face{
  font-family:"Proxima Nova"; font-weight:900; font-style:normal; font-display:swap;
  src:url("../fonts/ProximaNovaBlack.woff") format("woff");
}

/* ---------------------------------------------------------------- Tokens */
:root{
  /* Brand greens */
  --green-900:#0D3D38;
  --green-800:#134A45;
  --green-700:#23322D;
  --teal:#508883;
  /* Accent / CTA */
  --terracotta:#BF4E30;
  --terracotta-hover:#A63F24;
  /* Neutrals / paper */
  --cream:#FEFEFD;
  --paper:#F8F4F2;
  --paper-2:#EDE5DA;
  --ink:#191919;
  --ink-soft:#3A4440;
  --line:#E4DED6;
  /* Category pastels */
  --cat-purple:#83039C;
  --cat-lavender:#CF8DDE;
  --cat-lavender-100:#E9C6F1;
  --cat-blue:#96C9E9;
  --cat-blue-100:#CFE5F3;
  --cat-green:#2E964B;
  --cat-mustard:#E0B84B;
  --cat-beige:#EDE5DA;

  /* Fonts */
  --f-display:"Syne", sans-serif;
  --f-serif:"Playfair Display", Georgia, serif;
  --f-body:"Quicksand", sans-serif;
  --f-proxima:"Proxima Nova", "Quicksand", sans-serif;

  /* Layout */
  --wrap:1240px;
  --gutter:2.5rem;
  --radius:12px;
  --radius-lg:24px;
  --header-h:174px;
}

/* ----------------------------------------------------------------- Reset */
*,*::before,*::after{box-sizing:border-box}
html{scroll-behavior:smooth;-webkit-text-size-adjust:100%}
body{
  margin:0;
  font-family:var(--f-body);
  font-size:18px;
  line-height:1.6;
  color:var(--ink);
  background:var(--cream);
  -webkit-font-smoothing:antialiased;
}
img,svg{max-width:100%;display:block}
a{color:inherit;text-decoration:none}
button{font-family:inherit;cursor:pointer}
h1,h2,h3,h4{margin:0;font-family:var(--f-display);color:var(--green-800);line-height:1.12;font-weight:600}
p{margin:0}

.wrap{width:min(var(--wrap), 100% - (var(--gutter) * 2));margin-inline:auto}
.eyebrow{font-family:var(--f-body);font-weight:700;letter-spacing:.18em;text-transform:uppercase;
  font-size:.72rem;color:var(--teal);display:flex;align-items:center;gap:.6rem}
.eyebrow::before{content:"";width:26px;height:1px;background:var(--teal)}

/* --------------------------------------------------------------- Buttons */
/* Figma "Primary button": pad 15/33, r12, Quicksand 700 20px/lh25 -> 55px tall */
.btn{display:inline-flex;align-items:center;justify-content:center;gap:.5rem;
  font-family:var(--f-body);font-weight:700;font-size:20px;line-height:25px;
  padding:15px 33px;border-radius:12px;border:0;
  transition:background .18s ease,color .18s ease,transform .18s ease}
.btn:active{transform:translateY(1px)}
.btn--primary{background:var(--terracotta);color:#fff}
.btn--primary:hover{background:var(--terracotta-hover)}
.btn--ghost{background:transparent;color:var(--green-800);border-color:var(--green-800)}
.btn--ghost:hover{background:var(--green-800);color:#fff}

/* ---------------------------------------------------------------- Header */
/* Figma Header: 1440x174 (pt50 pb24), logo 240x99, nav items Quicksand 400 18px/lh22 #23322D,
   item pad 12/8 r24, gap 18 */
/* Figma has no sticky header — the page scrolls as one flow, the header scrolls away.
   relative + z-index keeps the dropdowns layered above the content. */
.site-header{position:relative;z-index:50;background:#FEFEFD}
.site-header__inner{display:flex;align-items:center;justify-content:space-between;
  gap:1.5rem;height:var(--header-h);padding-top:26px;padding-bottom:24px}
.brand{display:flex;align-items:center;flex:0 0 auto}
/* natural size is 240x99 — never let flex shrink it, which would scale it non-uniformly */
.brand img{height:99px;width:240px;flex:0 0 auto}
.nav{display:flex;align-items:center;gap:18px}
.nav__item{position:relative}
.nav__link{position:relative;display:inline-flex;align-items:center;gap:10px;font-family:var(--f-body);
  font-weight:400;font-size:18px;line-height:22px;color:#23322D;
  padding:12px 8px;border-radius:24px;background:none;border:0;transition:font-weight .1s}
/* chevron box is 16px wide in Figma -> shim the width so item widths match (130/158/129/92) */
.nav__link .chev{width:10px;height:10px;margin-right:6px;border-right:2px solid currentColor;
  border-bottom:2px solid currentColor;transform:rotate(45deg) translateY(-2px);transition:transform .2s}
.nav__item:hover .chev,.nav__item:focus-within .chev{transform:rotate(225deg) translateY(1px)}
/* open/hover state: bold + terracotta underline (Figma "Hover" variant + prototype underline) */
.nav__link:hover,.nav__item:hover>.nav__link,.nav__item:focus-within>.nav__link{font-weight:700;color:#23322D}
.nav__link::after{content:"";position:absolute;left:8px;right:8px;bottom:2px;height:3px;
  background:var(--terracotta);border-radius:2px;opacity:0;transition:opacity .18s ease}
.nav__item:hover>.nav__link::after,.nav__item:focus-within>.nav__link::after{opacity:1}

/* Dropdowns */
/* Figma "Overlay ind" 4033:12336 — panel 300w, #0D3D38, r8, padding 16/18, drop shadow;
   rows 48h (pad 12/6, gap 10), text Quicksand 400 18/22 #EDE5DA, cream divider after each row
   except the last one; email 16px underlined; socials 40x40 filled cream, gap 16 */
.dropdown{position:absolute;top:calc(100% + .5rem);left:0;width:300px;
  background:#0D3D38;border:0;border-radius:8px;
  box-shadow:0 18px 40px -14px rgba(13,61,56,.55);padding:16px 18px;
  opacity:0;visibility:hidden;transform:translateY(8px);transition:.2s;list-style:none;margin:0}
.nav__item:hover .dropdown,.nav__item:focus-within .dropdown{opacity:1;visibility:visible;transform:translateY(0)}
.dropdown > li{border-bottom:1px solid #EDE5DA}
.dropdown > li.dd-last,.dropdown > li.dropdown__foot,.dropdown > li:last-child{border-bottom:0}
.dropdown a{display:flex;align-items:center;gap:10px;padding:12px 6px;border-radius:6px;
  font-family:var(--f-body);font-weight:400;font-size:18px;line-height:22px;color:#EDE5DA}
.dropdown a:hover{background:rgba(237,229,218,.12);color:#fff}
.dd-ico{width:24px;height:24px;flex:0 0 24px;color:#EDE5DA}
.dropdown a:hover .dd-ico{color:#fff}
.dropdown__foot{padding:12px 6px 0}
.dropdown__mail{display:inline-block;color:#EDE5DA;font-weight:400;font-size:16px;line-height:20px;
  text-decoration:underline;padding:0 0 16px}
.dropdown__mail:hover{color:#fff}
.dropdown__social{display:flex;gap:16px}
.dropdown__social a{width:40px;height:40px;padding:0;display:flex;align-items:center;justify-content:center;
  border-radius:12px;border:0;background:#EDE5DA;color:#134A45}
.dropdown__social a:hover{background:#fff;color:#0D3D38}
.dropdown__social svg{width:20px;height:20px}

.header-cta{white-space:nowrap;margin-left:14px}   /* 18 + 14 = Figma's 32px gap before the CTA */
.nav-toggle{display:none;background:none;border:0;width:44px;height:44px;flex-direction:column;
  justify-content:center;gap:5px}
.nav-toggle span{display:block;height:2.5px;width:24px;background:var(--green-800);border-radius:2px;transition:.25s}

/* ------------------------------------------------------------------ Hero */
.hero{padding:64px 0 0}
.hero__grid{display:grid;grid-template-columns:1.05fr .85fr;gap:clamp(2rem,5vw,4.5rem);align-items:center}
.hero__title{font-family:var(--f-display);font-weight:500;color:var(--green-800);
  font-size:clamp(2.6rem,5.2vw,4rem);line-height:1.08;letter-spacing:-.5px}
.hero__title .serif{font-family:var(--f-serif);font-style:italic;font-weight:600;color:var(--green-800)}
.hero__lead{margin-top:1.4rem;max-width:44ch;font-size:clamp(1.1rem,1.9vw,1.5rem);
  color:var(--green-900);line-height:1.55}
.hero__actions{margin-top:2.2rem}
.hero__art{justify-self:center}
.hero__art img{width:100%;max-width:420px}

/* -------------------------------------------------------- Sections base */
.section{padding:clamp(3rem,6vw,5.5rem) 0}
.section--tight{padding:clamp(1.5rem,3vw,2.5rem) 0}
.center{text-align:center;display:flex;flex-direction:column;align-items:center}
.eyebrow--center{justify-content:center}
.section-title{font-family:var(--f-display);font-weight:500;color:var(--green-800);
  font-size:clamp(2rem,4.2vw,3.35rem);line-height:1.12;margin-top:.9rem}
.section-sub{margin-top:.7rem;color:var(--ink-soft);font-size:clamp(1.05rem,1.5vw,1.25rem);max-width:46ch}
.serif-i{font-family:var(--f-serif);font-style:italic;font-weight:500}

/* ------------------------------------------------------------- Problem */
.stat-panel{border:1.5px solid var(--line);border-radius:var(--radius-lg);
  background:var(--paper);padding:clamp(1.6rem,3.2vw,3rem)}
.stat-hero{display:grid;grid-template-columns:auto minmax(0,1fr) auto;align-items:center;
  gap:clamp(1rem,3vw,2.5rem);text-align:center;margin:0 auto 2.4rem;
  padding-bottom:1.8rem;border-bottom:1.5px solid var(--line)}
.stat-hero__illus{width:clamp(84px,11vw,150px);height:auto}
.stat-hero__mid{max-width:44ch;margin:0 auto}
.stat-hero__num{display:block;font-family:var(--f-serif);font-weight:700;color:var(--green-800);
  font-size:clamp(3.2rem,7vw,5rem);line-height:1}
.stat-hero__desc{margin-top:.4rem;font-size:1.08rem;color:var(--green-900)}
.stat-hero__desc strong{color:var(--green-800);font-weight:700}
.stat-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:1.4rem}
.stat-card{background:#EBD2F0;border-radius:var(--radius-lg);padding:1.5rem 1.6rem}
.stat-card__num{display:inline-block;font-family:var(--f-serif);font-weight:700;
  color:var(--green-800);font-size:2.1rem;line-height:1}
.stat-card__label{font-weight:700;text-transform:uppercase;letter-spacing:.08em;
  font-size:.82rem;color:var(--green-800);margin-left:.4rem}
.stat-card p{margin-top:.7rem;font-size:.94rem;color:var(--green-900);line-height:1.55}
.root-cause{text-align:center;max-width:min(1180px,92%);margin:clamp(2.5rem,5vw,4rem) auto 0}
.root-cause__body{max-width:70ch;margin-inline:auto}
.root-cause__title{font-family:var(--f-serif);font-weight:500;color:var(--green-700);
  font-size:clamp(1.5rem,2.9vw,2.25rem);line-height:1.3}
.hl-purple{color:var(--cat-purple);font-weight:700}
.root-cause__body{margin-top:1.3rem;color:var(--ink-soft);line-height:1.7}

/* --------------------------------------------------------- Dimension card */
.dimension-card{background:#EBD2F0;border:1px solid #23322D;
  border-radius:24px;padding:clamp(1.75rem,4.5vw,4rem);max-width:1240px;margin-inline:auto;
  display:grid;grid-template-columns:auto 1fr auto;gap:clamp(1.5rem,3.5vw,3rem);align-items:center}
.dimension-card__art img{width:clamp(180px,18vw,260px);height:auto}
.dimension-card__title{font-family:var(--f-display);font-weight:500;color:#23322D;
  font-size:clamp(1.6rem,3vw,2.25rem);margin-bottom:.9rem}
.dimension-card__body p{color:#0D3D38;line-height:1.35;font-size:clamp(1.05rem,1.4vw,1.25rem);max-width:34ch}
.dimension-card__tags{list-style:none;margin:0;padding:0;display:flex;flex-direction:column;gap:1rem}
.dimension-card__tags li{background:#CF8DDE;color:#23322D;font-weight:500;
  padding:.7rem 1.3rem;border-radius:12px;white-space:nowrap;font-size:clamp(1rem,1.3vw,1.15rem)}
.dimension-card{transition:background .5s ease}
.dimension-card__body p{min-height:7.5em}

/* Generic auto-rotator fade + dots */
.is-fading{opacity:.15;transition:opacity .26s ease}
.dimension-card,.testimonial-card{transition:opacity .26s ease,background .5s ease}
.rot-dots{display:flex;gap:.55rem;justify-content:center;margin-top:1.3rem}
.rot-dot{width:9px;height:9px;padding:0;border:0;border-radius:50%;cursor:pointer;
  background:rgba(35,50,45,.22);transition:background .2s ease,transform .2s ease}
.rot-dot:hover{background:rgba(35,50,45,.45)}
.rot-dot.is-active{background:var(--teal);transform:scale(1.25)}

/* Service card hover-reveal stats */
.service-card{position:relative}
.svc-stats{position:absolute;inset:0;display:flex;flex-direction:column;justify-content:flex-end;
  gap:.7rem;padding:1.3rem;background:linear-gradient(to top,rgba(19,74,69,.94) 45%,rgba(19,74,69,.55) 75%,transparent);
  opacity:0;transform:translateY(12px);transition:opacity .28s ease,transform .28s ease;pointer-events:none}
.service-card:hover .svc-stats,.service-card:focus-visible .svc-stats{opacity:1;transform:none}
.svc-stat{color:#fff;line-height:1.25;font-size:.9rem}
.svc-stat b{display:block;font-family:var(--f-serif);font-weight:700;font-size:1.9rem;color:#F6E6C9;margin-bottom:.1rem}

/* -------------------------------------------------------------- Services */
.services__scroller{display:flex;gap:1.4rem;overflow-x:auto;padding:.5rem .2rem 1.4rem;
  scroll-snap-type:x mandatory;scrollbar-width:thin}
.service-card{flex:0 0 300px;scroll-snap-align:start;border-radius:var(--radius-lg);
  overflow:hidden;transition:transform .2s ease,box-shadow .2s ease}
.service-card img{width:100%;height:auto;display:block}
.service-card:hover{transform:translateY(-6px);box-shadow:0 20px 34px -20px rgba(19,74,69,.45)}
.services__tagline{text-align:center;font-family:"Aboreto",var(--f-serif);
  font-size:clamp(1.7rem,4vw,3rem);line-height:1.2;color:var(--green-800);margin-top:1.6rem}
.services__tagline em{color:var(--terracotta);font-style:normal}

@media (max-width:820px){
  .stat-grid{grid-template-columns:1fr}
  .stat-hero{grid-template-columns:1fr}
  .stat-hero__illus{display:none}
  .dimension-card{grid-template-columns:1fr;text-align:center;justify-items:center}
  .dimension-card__tags{flex-direction:row;flex-wrap:wrap;justify-content:center}
  .dimension-card__body p{margin-inline:auto}
}

/* --------------------------------------------------- What makes different */
.different .eyebrow{margin-bottom:2.2rem}
.different__grid{display:grid;grid-template-columns:460px 1fr;gap:clamp(2rem,4vw,3.5rem);align-items:start}
.different__intro{position:sticky;top:calc(var(--header-h) + 1.5rem)}
.different__illus{width:100%;max-width:360px}
.different__title{font-family:var(--f-display);font-weight:400;color:#0D3D38;
  font-size:clamp(2.4rem,4.2vw,3.375rem);margin-top:1.2rem;line-height:1.2}
.different__title .serif-i{font-weight:800}
.different__cards{display:flex;flex-direction:column;gap:1.4rem}
.feature{display:flex;gap:1.9rem;align-items:center;background:#FEFEFD;
  border:1px solid #0D3D38;border-radius:10px;padding:1.5rem;
  transition:box-shadow .2s ease,transform .2s ease}
.feature:hover{box-shadow:0 16px 30px -20px rgba(19,74,69,.4);transform:translateY(-3px)}
.feature__icon{width:84px;height:auto;flex:0 0 84px}
.feature__title{font-family:"Syne",var(--f-display);font-weight:500;color:#0D3D38;
  font-size:2rem;line-height:1.15;margin-bottom:.5rem}
.feature__title .fx-serif{font-family:"Playfair Display",var(--f-serif);font-weight:800;font-style:italic}
.feature p{color:#1a1a1a;font-size:1rem;line-height:1.5;max-width:52ch}

@media (max-width:900px){
  .different__grid{grid-template-columns:1fr}
  .different__intro{position:static;text-align:center;display:flex;flex-direction:column;align-items:center}
}
@media (max-width:520px){
  .feature{flex-direction:column;align-items:center;text-align:center}
}

/* -------------------------------------------------- Section head (dot+line) */
.sec-head{display:flex;align-items:center;gap:1rem;margin-bottom:2.4rem}
.sec-head__dot{width:16px;height:16px;border-radius:50%;background:var(--cat-purple);flex:0 0 auto}
.sec-head__label{font-family:var(--f-display);font-weight:500;letter-spacing:.04em;
  text-transform:uppercase;font-size:clamp(1.05rem,1.6vw,1.35rem);color:var(--green-900);white-space:nowrap}
.sec-head__line{height:0;border-top:2px dotted #CFC8BE;flex:1;align-self:center}
/* organizations.html: Figma has teal (not purple) eyebrow dots at 24px, sitewide dot
   default (16px purple) is unverified elsewhere so scope this override to the page. */
.page-org .sec-head__dot{width:24px;height:24px;background:var(--teal)}
.page-org .sec-head__line{border-top:1px dashed var(--teal);opacity:.8}
/* Figma: "Why Wellbeing Matters?" / "Services" headings are left-aligned, Syne 400 54/64.8,
   subtext Quicksand 400 20/25 at full content width (not the generic centered 46ch). */
.page-org .section-title{font-weight:400;font-size:54px;line-height:1.2}
.page-org .section-sub{font-size:20px;line-height:1.25;max-width:none}
/* Figma stat illustrations: 320px icons, Quicksand (not display font) for the heading. */
.page-org .stat-illus img{max-width:320px}
.page-org .stat-illus h3{font-family:var(--f-body);font-weight:600;font-size:24px;line-height:1.25}
.page-org .stat-illus p{font-size:20px;line-height:1.25}
/* Figma: only 56px total between the hero row and the "Solution" eyebrow — the hero's
   own bottom padding was removed above, so this first section carries that 56px alone
   instead of stacking with the generic .section top padding (~88px, meant for pages). */
.page-org main>section.section:first-of-type{padding:56px 0 0}
/* Figma: only 96px between the stat-illustration row and the next "Solution" eyebrow —
   the .section generic padding was double-stacking (~173px) across the two sections. */
.page-org .page-org__services{padding-top:96px;padding-bottom:0}
.page-org section.packages{padding-bottom:0}
.page-org section.org-cases{padding-top:64px;padding-bottom:0}
.page-org section.process{padding-top:64px}
/* Figma "Frame 653" process row: five fixed 240px columns across 1240px (10px gaps),
   175px circular icons centred, then 24px to a centred Quicksand Bold 20/25 title and
   24px more to left-aligned Quicksand REGULAR 20/25 body (the node's top-level Bold is
   overridden per-character — same trap as the case-study headings). No step numbers. */
.page-org .process__steps{grid-template-columns:repeat(5,240px);justify-content:space-between;gap:0}
.page-org .pstep{width:240px;text-align:left}
.page-org .pstep__icon{width:175px;height:175px;margin:0 auto;display:block}
.page-org .pstep__num{display:none}
.page-org .pstep__title{font-family:var(--f-body);font-weight:700;font-size:20px;line-height:1.25;
  color:#0D3D38;text-align:center;margin:24px 0 0}
.page-org .pstep__here{color:var(--terracotta);font-weight:700;text-decoration:underline;
  text-underline-offset:3px}
.page-org .pstep p{margin-top:24px;font-family:var(--f-body);font-weight:400;font-size:20px;
  line-height:1.25;color:#000}
.page-org .process__head{margin-bottom:52px}
@media (max-width:1280px){
  .page-org .process__steps{grid-template-columns:repeat(5,1fr);gap:16px}
  .page-org .pstep{width:auto}
  .page-org .pstep__icon{width:100%;height:auto;max-width:175px}
  .page-org .pstep__title,.page-org .pstep p{font-size:17px}
}
@media (max-width:980px){
  .page-org .process__steps{grid-template-columns:repeat(auto-fit,minmax(180px,1fr));gap:28px}
}
/* Figma: 148px between the last service-card row and the "Aspects of Holisthea" eyebrow —
   was stacking with the generic .section top padding (~86px) for ~173px total. */
.page-org section.different{padding:148px 0 0}
/* Figma: only 80px between the last Aspects card and the "Wellness Packages" eyebrow. */
.page-org section.packages{padding-top:80px}
/* Figma "Explore our / Wellness Packages": Syne 400 54/64.8 + Playfair ExtraBold(800) Italic,
   not the generic clamp()'d split__title used on the home page's split sections. */
.page-org .split__title{font-weight:400;font-size:54px;line-height:1.2}
.page-org .split__title .serif-i{font-weight:800}
.page-org .split__sub{font-size:20px;line-height:1.25;color:var(--ink)}
/* Figma price cards: purple price, "Holisthea …" 2-line underlined title, Quicksand body. */
.page-org .package-card{border-width:2px}
.page-org .package-card__name{font-size:24px;line-height:1.33;color:#000}
.page-org .package-card__from{font-family:var(--f-body);font-weight:400;font-size:16px;color:#000}
.page-org .package-card__price{color:var(--cat-purple);font-family:var(--f-body);font-weight:700;font-size:24px}
.page-org .package-card__price span{color:var(--cat-purple);font-size:12px;font-weight:700}
.page-org .package-card__desc{font-family:var(--f-body);font-size:16px;text-align:left;color:#000}

/* ===================== Organizations · Case Studies ===================== */
.org-case-row{width:1240px;margin:0 auto;display:flex;gap:40px;overflow-x:auto;padding-bottom:.5rem;
  scrollbar-width:none;-ms-overflow-style:none}
.org-case-row::-webkit-scrollbar{width:0;height:0;display:none}
.org-case{position:relative;flex:0 0 1000px;background:#fff;border:2px solid var(--accent);border-radius:32px;padding:40px}
/* Figma "Frame 79970": a 920x81 row — title on the left, logo badge (81px tall) on the
   right. Real 2-column flex (not an absolutely-positioned logo): once the card goes fluid
   below the desktop canvas the title column narrows past 704px and an absolute logo pinned
   right:0 slid straight over the heading text. flex + gap keeps them apart at every width. */
.org-case__head{position:relative;min-height:81px;display:flex;align-items:center;gap:32px}
/* logo is first in the DOM but sits on the right (order:2); title:flex-grow pushes it flush right */
.org-case__logo{height:81px;width:auto;flex:0 0 auto;order:2}
/* Figma character overrides: the plain runs are Syne REGULAR 400 (each node's top-level
   "Bold" is fully overridden and never actually renders); only the programme phrases are
   Playfair Display Bold Italic. Rendering the plain run as Bold was over-widening these
   headings and forcing a third line. */
.org-case__title{font-family:var(--f-display);font-weight:400;font-size:32px;line-height:1.2;
  color:#23322D;margin:0;flex:1 1 auto;min-width:0}
.org-case__title .it{font-family:var(--f-serif);font-style:italic;font-weight:700}
.org-case__desc{margin-top:24px;font-family:var(--f-body);font-size:20px;line-height:1.25;color:#23322D}
/* Figma pill row: 4 pills across 920px (280/200/173/234) with ~11px gaps, 82px tall,
   r8, 12px padding — a single row that never wraps. */
.org-case__pills{margin-top:24px;display:flex;flex-wrap:nowrap;gap:11px}
.org-case__pill{border:1.5px solid var(--accent);color:var(--accent);border-radius:8px;
  min-height:82px;padding:12px;display:inline-flex;align-items:center;justify-content:center;
  text-align:center;box-sizing:border-box;font-family:var(--f-body);font-weight:500;font-size:20px;
  line-height:1.25;text-decoration:underline;text-underline-offset:3px;white-space:nowrap}
.org-case__quote{margin-top:24px;text-align:center;font-family:var(--f-body);font-weight:600;
  font-size:24px;line-height:1.25;color:#23322D}
.org-case__outcomes{margin-top:24px;display:grid;grid-template-columns:repeat(3,1fr);gap:16px}
.org-case__outcomes--2{grid-template-columns:repeat(2,1fr)}
.org-case__outcome{background:var(--accent);border:1px solid #EDE5DA;border-radius:8px;
  padding:8px 16px;color:#EDE5DA;font-family:var(--f-body);font-size:16px;line-height:1.25}
/* Figma: heading + body are ONE continuous text block (Bold 20/25 then Regular 16/20),
   so there is no gap between the two. */
.org-case__outcome b{display:block;margin:0;font-weight:700;font-size:20px;line-height:1.25}
@media (max-width:1280px){ .org-case-row{width:auto;padding-left:var(--gutter);padding-right:var(--gutter)} }
@media (max-width:640px){
  .org-case{flex-basis:88vw;padding:1.6rem}
  .org-case__outcomes,.org-case__outcomes--2{grid-template-columns:1fr}
}
.different__grid{grid-template-columns:474px 1fr}
.page-org__services-cta{margin-top:36px;margin-bottom:64px}

/* Split layout (intro + content) */
.split{display:grid;grid-template-columns:1fr 1.15fr;gap:clamp(2rem,4vw,3.5rem);align-items:center}
.split__intro{max-width:460px}
.split__illus{width:clamp(160px,20vw,240px);margin-bottom:1.2rem}
.split__title{font-family:var(--f-display);font-weight:600;color:var(--green-800);
  font-size:clamp(1.9rem,3.4vw,2.8rem);line-height:1.1}
.split__sub{margin-top:.9rem;color:var(--ink-soft);font-size:1.08rem}

/* Testimonial card */
.testimonial-card{margin:0;background:#fff;border:1.5px solid var(--teal);
  border-radius:var(--radius-lg);padding:clamp(1.6rem,3vw,2.6rem)}
.testimonial-card__title{font-family:var(--f-serif);font-weight:700;color:var(--green-800);
  font-size:clamp(1.3rem,2.4vw,1.7rem);margin-bottom:1rem}
.testimonial-card__quote{margin:0;color:var(--ink-soft);line-height:1.7;font-size:1.02rem}
.testimonial-card__author{margin-top:1.3rem;font-weight:700;color:var(--teal);text-align:right}

/* Package cards */
.package-grid{display:grid;grid-template-columns:1fr 1fr;gap:1.2rem}
.package-card{background:#fff;border:1.5px solid var(--teal);border-radius:var(--radius-lg);
  padding:1.6rem 1.5rem;text-align:center;transition:transform .2s ease,box-shadow .2s ease}
.package-card:hover{transform:translateY(-4px);box-shadow:0 20px 36px -22px rgba(19,74,69,.4)}
.package-card__name{font-family:var(--f-serif);font-weight:700;color:var(--green-800);
  font-size:1.25rem;text-decoration:underline;text-underline-offset:4px;text-decoration-thickness:1.5px}
.package-card__from{margin-top:.7rem;font-size:.9rem;color:var(--ink-soft)}
.package-card__price{font-family:var(--f-display);font-weight:700;color:var(--green-800);
  font-size:1.6rem;line-height:1;margin-top:.1rem}
.package-card__price span{font-size:.9rem;color:var(--ink-soft);font-weight:600}
.package-card__desc{margin-top:.9rem;font-size:.9rem;color:var(--ink-soft);line-height:1.5;text-align:left}

@media (max-width:860px){
  .split{grid-template-columns:1fr;gap:2rem}
  .split__intro{max-width:none;text-align:center;display:flex;flex-direction:column;align-items:center}
}
@media (max-width:520px){ .package-grid{grid-template-columns:1fr} }

/* --------------------------------------------------------------- Process */
.process__head{margin-bottom:2.8rem}
.process__steps{list-style:none;margin:0;padding:0;display:grid;grid-template-columns:repeat(5,1fr);gap:1.6rem}
.pstep{text-align:left}
.pstep__icon{width:104px;height:104px;object-fit:contain;margin:0 0 .6rem;display:block}
.pstep__num{display:inline-block;font-family:var(--f-display);font-weight:700;color:var(--terracotta);
  font-size:.85rem;letter-spacing:.14em}
.pstep__title{font-family:var(--f-display);font-weight:600;color:var(--green-800);font-size:1.05rem;margin:.25rem 0 .5rem}
.pstep p{font-size:.87rem;color:var(--ink-soft);line-height:1.5}

/* ------------------------------------------------------------ Case studies */
.case-scroller{display:flex;gap:1.6rem;overflow-x:auto;scroll-snap-type:x mandatory;
  padding:.4rem .2rem 1.5rem;scrollbar-width:thin;scroll-padding:0}
/* Figma spec: card 1104x506, figure panel 320x424, content 664, 40px padding/gaps */
.case-card{--accent:var(--cat-purple);
  flex:0 0 min(1104px,90%);scroll-snap-align:start;
  display:grid;grid-template-columns:320px 1fr;gap:2.5rem;align-items:stretch;
  background:#fff;border:1.5px solid var(--accent);border-radius:32px;
  padding:2.5rem}
.case-card--purple{--accent:#83039C}
.case-card--brown{--accent:#8B6B5C}
.case-card--teal{--accent:#3E8079}
.case-card__art{border-radius:20px;overflow:hidden;align-self:stretch;min-height:424px}
.case-card__art img{width:100%;height:100%;object-fit:cover;display:block}
.case-card__title{font-family:var(--f-display);font-weight:700;color:#23322D;
  font-size:clamp(1.6rem,2.3vw,2rem);line-height:1.22;margin-bottom:1.5rem}
.case-card__title span{color:inherit}
.case-card__title em{font-family:var(--f-serif);font-style:italic;font-weight:600}
.case-card__cols{display:flex;flex-direction:column;gap:1.5rem;margin-bottom:1.5rem}
.chip-list{list-style:none;margin:0;padding:0;display:flex;flex-wrap:wrap;gap:.6rem}
.chip-list li{background:#fff;border:1.5px solid var(--accent);color:var(--accent);
  font-size:1.15rem;font-weight:500;padding:.5rem 1rem;border-radius:8px;
  text-align:center;line-height:1.15;text-decoration:underline;text-underline-offset:3px}
.chip-list--cond{display:grid;grid-template-columns:1fr 1fr;gap:.6rem}
.chip-list--cond li{background:var(--accent);color:#F5F2EC;border:none;line-height:1.3;
  text-align:left;text-decoration:none;font-weight:400;font-size:1.1rem}
.case-card__outcome{color:#23322D;line-height:1.5;font-size:1.15rem;font-weight:500}
.case-card__outcome strong{color:var(--accent);font-weight:700}

/* ----------------------------------------------------------------- About */
.about{background:var(--green-800);color:#F2EFE8}
.sec-head--light .sec-head__label{color:#EDE5DA}
.sec-head--light .sec-head__line{background:rgba(255,255,255,.22)}
.about__heading{font-family:var(--f-display);font-weight:600;color:#fff;
  font-size:clamp(2rem,3.6vw,2.8rem);margin:.3rem 0 1.1rem}
.about__statement{font-family:var(--f-display);font-weight:500;font-size:clamp(1.4rem,2.7vw,2.05rem);
  line-height:1.4;max-width:52ch;color:#F5F2EC;margin-bottom:clamp(2.5rem,5vw,3.5rem)}
.about__statement .hl{font-weight:700;color:#fff}
.about__statement em{font-family:var(--f-serif);font-style:italic;font-weight:500;color:#EDE7DC}
.founder{display:grid;grid-template-columns:300px 1fr;gap:clamp(1.5rem,3vw,3rem);align-items:start}
.founder__photo img{width:100%;border-radius:var(--radius);filter:grayscale(1)}
.founder__name{font-family:var(--f-serif);font-weight:700;font-size:1.9rem;color:#fff;margin-bottom:1rem}
.founder__creds{list-style:none;margin:0 0 1.3rem;padding:0;display:flex;flex-direction:column;gap:.6rem}
.founder__creds li{padding-left:1.4rem;position:relative;color:#E1DBD1;font-size:.95rem;line-height:1.45}
.founder__creds li::before{content:"";position:absolute;left:0;top:.5em;width:8px;height:8px;border-radius:50%;background:var(--terracotta)}
.founder__creds strong{color:#fff;font-weight:700}
.founder__bio{color:#D2CCC2;line-height:1.75;font-size:.97rem}

/* ------------------------------------------------------------------ FAQs */
.faqs__grid{display:grid;grid-template-columns:.85fr 1.15fr;gap:clamp(2rem,4vw,3.5rem);align-items:start;margin-top:1rem}
.faqs__intro{position:sticky;top:calc(var(--header-h) + 1.5rem)}
.faqs__intro .section-sub a{color:var(--terracotta);font-weight:600}
.faqs__list{display:flex;flex-direction:column;gap:.9rem}
.faq{border:none;border-radius:16px;background:#EDE5DA;overflow:hidden}
.faq summary{list-style:none;cursor:pointer;padding:1.1rem 1.4rem;font-weight:600;color:var(--green-800);
  display:flex;justify-content:space-between;align-items:center;gap:1rem}
.faq summary::-webkit-details-marker{display:none}
.faq__ico{width:11px;height:11px;border-right:2px solid var(--teal);border-bottom:2px solid var(--teal);
  transform:rotate(45deg);transition:transform .2s;flex:0 0 auto}
.faq[open] .faq__ico{transform:rotate(-135deg)}
.faq__a{padding:0 1.3rem 1.2rem;color:var(--ink-soft);line-height:1.6}

/* --------------------------------------------------------------- Booking */
.booking__grid{display:grid;grid-template-columns:.85fr 1.15fr;gap:clamp(2rem,4vw,3rem);align-items:center}
.booking__widget{border-radius:var(--radius-lg);overflow:hidden;border:1px solid var(--line);background:#fff;min-height:640px}

@media (max-width:980px){ .process__steps{grid-template-columns:repeat(auto-fit,minmax(150px,1fr))} }
@media (max-width:860px){
  .faqs__grid,.booking__grid{grid-template-columns:1fr}
  .faqs__intro{position:static}
}
@media (max-width:760px){
  .case-card{grid-template-columns:1fr;padding:1.5rem;gap:1.5rem}
  .case-card__art{min-height:0;max-width:260px;aspect-ratio:320/380;margin:0 auto}
  .case-card__title{font-size:1.5rem}
  .chip-list li,.chip-list--cond li,.case-card__outcome{font-size:1rem}
  .chip-list--cond{grid-template-columns:1fr}
  .founder{grid-template-columns:1fr;justify-items:center;text-align:center}
  .founder__photo img{max-width:240px}
  .founder__creds li{text-align:left}
}

/* ===================== ABOUT PAGE ===================== */
/* Placeholder for illustrations pending Figma export */
.ph{display:flex;align-items:center;justify-content:center;border:2px dashed #CBB7D6;
  border-radius:var(--radius-lg);background:var(--paper);color:var(--teal);
  font-weight:600;font-size:.85rem;letter-spacing:.06em;text-transform:uppercase;min-height:120px}
.ph--art{aspect-ratio:420/500;width:100%;max-width:420px}

.prose{max-width:72ch}
.prose .section-title{margin-bottom:.6rem}
.prose p{margin-top:1rem;color:var(--ink-soft);line-height:1.75}

/* Pillars */
.pillars{display:grid;grid-template-columns:repeat(3,1fr);gap:1.4rem}
.pillar{background:var(--paper);border:1px solid var(--line);border-radius:var(--radius-lg);padding:1.8rem}
.pillar__icon{display:block;width:60px;height:60px;border-radius:50%;margin-bottom:1.1rem}
.pillar__title{font-family:var(--f-display);font-weight:600;color:var(--green-800);font-size:1.25rem;margin-bottom:.6rem}
.pillar p{color:var(--ink-soft);line-height:1.6}

/* About hero (cream, centered) */
.about-hero{background:#EDE5DA}
.about-hero__title{max-width:24ch;margin:0 auto}
/* Lotus pillars (centered, no card) */
.pillars--lotus .pillar{background:transparent;border:none;text-align:center;padding:1rem .5rem}
.pillar__lotus{display:block;width:118px;height:auto;margin:0 auto 1rem}

/* About founder (dark band) */
.about-founder{background:var(--green-800);color:#F2EFE8}
.about-founder .about__heading{margin-bottom:2rem}
.founder__tags{list-style:none;margin:1.3rem 0 0;padding:0;display:flex;flex-wrap:wrap;gap:.6rem}
.founder__tags li{background:rgba(255,255,255,.08);border:1px solid rgba(255,255,255,.22);
  color:#EDE7DC;font-size:.88rem;font-weight:500;padding:.4rem .9rem;border-radius:999px}
.about-founder .founder__bio{margin-top:1.3rem}

/* Mission & Vision */
.mv-grid{display:grid;grid-template-columns:1fr 1fr;gap:1.6rem}
.mv-card{background:#CFE5F3;border-radius:var(--radius-lg);padding:2rem}
.mv-card--accent{background:#CFE5F3}
.mv-card__title{font-family:var(--f-display);font-weight:600;color:var(--green-800);font-size:1.6rem;margin-bottom:1rem}
.mv-card p{line-height:1.7;color:var(--green-900);margin-top:.9rem}
.mv-card p:first-of-type{margin-top:0}

/* Core values (illustration + numbered list) */
.values-layout{display:grid;grid-template-columns:.9fr 1.3fr;gap:clamp(2rem,4vw,3.5rem);align-items:start;margin-top:1rem}
.values-intro{position:sticky;top:calc(var(--header-h) + 1.5rem)}
.values-illus{width:100%;max-width:300px;margin-bottom:1.3rem}
.values-list{list-style:none;counter-reset:v;margin:0;padding:0;display:flex;flex-direction:column;gap:1.5rem}
.values-list li{counter-increment:v}
.values-list li h3{font-family:var(--f-display);font-weight:600;color:var(--green-800);font-size:1.3rem;margin-bottom:.4rem}
.values-list li h3::before{content:counter(v) ". ";color:var(--terracotta)}
.values-list li p{color:var(--ink-soft);line-height:1.6}
@media (max-width:820px){ .values-layout{grid-template-columns:1fr} .values-intro{position:static;text-align:center} .values-illus{margin-inline:auto} }

@media (max-width:860px){
  .pillars,.values-grid{grid-template-columns:1fr 1fr}
  .mv-grid{grid-template-columns:1fr}
}
@media (max-width:560px){ .pillars,.values-grid{grid-template-columns:1fr} }

/* ===================== CONTACT ===================== */
.contact-list{list-style:none;margin:1.6rem 0 0;padding:0;display:flex;flex-direction:column;gap:.9rem}
.contact-list li{display:flex;flex-direction:column;gap:.15rem}
.contact-list span{font-size:.75rem;text-transform:uppercase;letter-spacing:.1em;color:var(--teal);font-weight:700}
.contact-list a{font-weight:600;color:var(--green-800)}
.contact-list a:hover{color:var(--terracotta)}

/* ===================== PRICING ===================== */
.pricing{--pa:#83039C;--pbg:#EBD2F0;display:grid;grid-template-columns:repeat(2,1fr);gap:1.6rem;align-items:start}
.pricing--blue{--pa:#2E7CB0;--pbg:#CFE5F3}
.price-card{position:relative;background:#fff;border:1.5px solid var(--line);border-radius:var(--radius-lg);
  padding:2rem;display:flex;flex-direction:column;height:100%;text-align:left}
.price-card--featured{border-color:var(--pa);box-shadow:0 24px 50px -30px rgba(19,74,69,.4)}
.price-card__badge{position:absolute;top:-.8rem;left:2rem;background:var(--terracotta);color:#fff;
  font-size:.72rem;font-weight:700;letter-spacing:.08em;text-transform:uppercase;padding:.35rem .8rem;border-radius:999px}
.price-card__price{order:-1;align-self:flex-start;background:var(--pbg);color:var(--pa);
  font-family:var(--f-display);font-weight:700;font-size:1.15rem;line-height:1.1;
  padding:.45rem 1rem;border-radius:999px;margin-bottom:.9rem}
.price-card__price span{font-size:.78rem;color:var(--green-700);font-weight:600;white-space:nowrap;opacity:.8}
.price-card__name{font-family:var(--f-serif);font-weight:700;color:var(--green-800);font-size:1.35rem;
  line-height:1.2;text-decoration:underline;text-underline-offset:4px;text-decoration-thickness:1.5px}
.price-card__note{font-size:.85rem;color:var(--ink-soft);margin-top:.9rem;line-height:1.5;
  background:var(--paper);border-radius:10px;padding:.7rem .9rem}
.price-card__desc{margin-top:.9rem;color:var(--ink-soft);line-height:1.55;font-size:.95rem}
.price-card__feats{list-style:none;margin:1.2rem 0 1.6rem;padding:1.2rem 0 0;border-top:1px solid var(--line);
  display:flex;flex-direction:column;gap:.7rem}
.price-card__feats li{position:relative;padding-left:2rem;color:var(--ink-soft);font-size:.92rem;line-height:1.5}
.price-card__feats li::before{content:"✓";position:absolute;left:0;top:.12em;width:18px;height:18px;
  display:flex;align-items:center;justify-content:center;font-size:11px;font-weight:800;color:#fff;
  background:var(--pa);border-radius:5px}
.price-card__cta{margin-top:auto;width:100%}
.price-card__cta.btn--primary{background:transparent;color:var(--terracotta);border-color:var(--terracotta)}
.price-card__cta.btn--primary:hover{background:var(--terracotta);color:#fff}

@media (max-width:820px){ .pricing{grid-template-columns:1fr} }

/* ===================== PACKAGES HERO (blue lotus) + CUSTOM CTA ===================== */
.pkg-hero{background:#CFE5F3;text-align:center}
.pkg-hero .wrap{display:flex;flex-direction:column;align-items:center}
.pkg-hero__lotus{width:clamp(120px,15vw,175px);height:auto;margin:0 auto 1.1rem;display:block}
.pkg-hero .hero__lead{margin-inline:auto}
.custom-cta{display:grid;grid-template-columns:1.25fr .75fr;gap:clamp(2rem,4vw,3.5rem);align-items:center}
.custom-cta__title{font-family:var(--f-serif);font-weight:700;color:var(--green-800);font-size:clamp(1.5rem,2.8vw,2rem);margin-bottom:1rem}
.custom-cta__body p{color:var(--ink-soft);line-height:1.7;margin-bottom:1rem}
.custom-cta__body strong{color:var(--green-800)}
.custom-cta__illus{width:100%;max-width:300px;margin:0 auto}
@media (max-width:760px){ .custom-cta{grid-template-columns:1fr;text-align:center} .custom-cta__illus{order:-1} }

/* ===================== SERVICES HERO (tinted) ===================== */
/* Figma: on colored-hero pages (Individuals/Organisations services) the header sits
   transparently ON TOP of the hero — no white bar. Add class="hero-overlay" to <body>.
   Header stays non-sticky: position:absolute (not fixed), so it scrolls with the page. */
.hero-overlay .site-header{position:absolute;top:0;left:0;right:0;background:transparent}
.hero-overlay .services-hero{padding:calc(var(--header-h) + 40px) 0 64px}

.services-hero{background:#EBD2F0}
.services-hero .hero__grid{grid-template-columns:1fr;text-align:center;gap:1rem}
.services-hero .hero__art{order:-1;margin:0 auto}
.services-hero .hero__art .ph{width:clamp(120px,18vw,190px);aspect-ratio:1/1;min-height:0;background:transparent;border-color:rgba(35,50,45,.3)}
.services-hero .hero__lead{margin-inline:auto}

/* ===================== SERVICE CARDS (colored) ===================== */
.svc-cards{display:grid;grid-template-columns:1fr 1fr;gap:40px}
/* Figma: the final card is a single 600px card centred in the 1240px row. */
.svc-card--center{grid-column:1 / -1;width:600px;margin-inline:auto}
/* Figma "Individuals-services" card spec: 32px radius, 40px padding, Syne 500 32/38.4
   title, Quicksand 400 20/25 justified body — NOT the generic clamp() sizes used before. */
.svc-card{--c:#EBD2F0;background:var(--c);border-radius:32px;padding:40px}
.svc-card--full{grid-column:1 / -1}
.svc-card--lavender{--c:#E9C6F1}
.svc-card--blue{--c:#CFE5F3}
.svc-card--teal{--c:#69B2AC}
.svc-card--beige{--c:#EDE5DA}
.svc-card__head{display:flex;align-items:center;gap:24px;margin-bottom:24px}
.svc-card__icon{width:auto;height:96px;flex:0 0 auto;object-fit:contain}
.svc-card__icon.ph{min-height:0;background:rgba(255,255,255,.4);border-color:rgba(35,50,45,.25);font-size:.6rem}
.svc-card__title{font-family:var(--f-display);font-weight:500;color:var(--ink);
  font-size:32px;line-height:1.2;text-decoration:underline;
  text-underline-offset:4px;text-decoration-thickness:1.5px}
.svc-card__body p{color:var(--green-900);line-height:1.25;margin-top:20px;font-size:20px;text-align:justify}
.svc-card__body p:first-child{margin-top:0}
@media (max-width:700px){
  .svc-cards{grid-template-columns:1fr}
  .svc-card{padding:1.6rem}
  .svc-card__icon{height:64px}
  .svc-card__title{font-size:1.3rem}
  .svc-card__body p{font-size:1rem;text-align:left}
}

/* ===================== SERVICE ROWS (alternating) ===================== */
.srow{display:grid;grid-template-columns:.9fr 1.25fr;gap:clamp(2rem,4vw,3.5rem);align-items:center;
  margin-top:clamp(2.5rem,5vw,4rem)}
.srow--rev .srow__art{order:2}
.srow__art .ph{width:100%;max-width:360px;margin:0 auto}
.srow__title{font-family:var(--f-display);font-weight:600;color:var(--green-800);
  font-size:clamp(1.4rem,2.4vw,1.9rem);line-height:1.25;margin-bottom:1rem}
.srow__body p{color:var(--ink-soft);line-height:1.7}

/* ===================== SCIENCE PAGE ===================== */
.science-hero{background:#EDE5DA}
.srow__art img{width:100%;max-width:400px;border-radius:var(--radius-lg);margin:0 auto;display:block}
.sci-bullets{list-style:none;margin:1.1rem 0 0;padding:0;display:flex;flex-direction:column;gap:.6rem}
.sci-bullets li{position:relative;padding-left:1.4rem;color:var(--ink-soft);line-height:1.55;font-size:.95rem}
.sci-bullets li::before{content:"";position:absolute;left:0;top:.55em;width:7px;height:7px;border-radius:50%;background:var(--terracotta)}
.appl-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:2rem 2.2rem}
.appl{text-align:center}
.appl__lotus{width:108px;height:auto;margin:0 auto .8rem;display:block}
.appl h3{font-family:var(--f-display);font-weight:600;color:var(--green-800);font-size:1.2rem;margin-bottom:.5rem}
.appl p{color:var(--ink-soft);line-height:1.55;font-size:.93rem}
@media (max-width:820px){ .appl-grid{grid-template-columns:1fr 1fr} }
@media (max-width:560px){ .appl-grid{grid-template-columns:1fr} }

/* ===================== CTA BAND ===================== */
.cta-band{background:var(--green-800)}
.cta-band .section-title{color:#fff}
.cta-band__actions{display:flex;gap:1rem;justify-content:center;margin-top:1.7rem;flex-wrap:wrap}
.btn--ghost-light{background:transparent;color:#fff;border-color:rgba(255,255,255,.55)}
.btn--ghost-light:hover{background:#fff;color:var(--green-800);border-color:#fff}

@media (max-width:760px){
  .srow{grid-template-columns:1fr;text-align:center}
  .srow--rev .srow__art{order:0}
}

/* ===================== ILLUSTRATED STATS (corporate) ===================== */
.stats-illus{display:grid;grid-template-columns:repeat(3,1fr);gap:2.4rem}
.stat-illus img{width:100%;max-width:230px;display:block;margin-bottom:.7rem}
.stat-illus h3{font-family:var(--f-display);font-weight:700;color:var(--green-800);font-size:1.45rem;margin-bottom:.4rem}
.stat-illus p{color:var(--ink-soft);line-height:1.55;font-size:.95rem}
@media (max-width:820px){ .stats-illus{grid-template-columns:1fr 1fr} }
@media (max-width:560px){ .stats-illus{grid-template-columns:1fr} }

/* ===================== INQUIRY FORM (corporate) ===================== */
.pillars--3x2{grid-template-columns:repeat(3,1fr)}
.pillars--2x2{grid-template-columns:1fr 1fr}
.inquiry{display:grid;grid-template-columns:1fr 1.1fr;gap:clamp(2rem,4vw,3.5rem);align-items:start}
.inquiry__form{background:rgba(255,255,255,.05);border:1px solid rgba(255,255,255,.15);
  border-radius:var(--radius-lg);padding:clamp(1.4rem,2.5vw,2rem);display:flex;flex-direction:column;gap:1rem}
.inquiry__form label{display:flex;flex-direction:column;gap:.4rem;font-size:.85rem;font-weight:600;color:#EDE7DC}
.field-row{display:grid;grid-template-columns:1fr 1fr;gap:1rem}
.inquiry__form input,.inquiry__form textarea{font-family:var(--f-body);font-size:1rem;color:#fff;
  background:rgba(255,255,255,.07);border:1px solid rgba(255,255,255,.22);border-radius:10px;padding:.7rem .9rem}
.inquiry__form input:focus,.inquiry__form textarea:focus{outline:2px solid var(--terracotta);border-color:transparent}
.inquiry__note{font-size:.78rem;color:#A9B4AE;text-align:center;margin-top:-.2rem}

@media (max-width:860px){
  .pillars--3x2{grid-template-columns:1fr 1fr}
  .inquiry{grid-template-columns:1fr}
}
@media (max-width:560px){ .pillars--3x2{grid-template-columns:1fr} .field-row{grid-template-columns:1fr} }

/* -------------------------------------------------------- Responsive nav */
@media (max-width:960px){
  :root{--header-h:76px}
  /* backdrop-filter creates a containing block that traps the fixed mobile menu — drop it */
  .site-header{backdrop-filter:none;-webkit-backdrop-filter:none;background:var(--cream)}
  .brand img{height:44px}
  .nav-toggle{display:flex}
  .nav{background:var(--cream);z-index:60}
  .nav{position:fixed;inset:var(--header-h) 0 auto 0;flex-direction:column;align-items:stretch;
    gap:0;background:#fff;border-bottom:1px solid var(--line);padding:1rem var(--gutter) 1.5rem;
    box-shadow:0 24px 40px -24px rgba(0,0,0,.25);
    transform:translateY(-12px);opacity:0;visibility:hidden;transition:.22s}
  .nav.open{transform:translateY(0);opacity:1;visibility:visible}
  .nav__link{width:100%;justify-content:space-between;padding:.9rem 0;font-size:1.1rem;
    border-bottom:1px solid var(--line)}
  .dropdown{position:static;opacity:1;visibility:visible;transform:none;box-shadow:none;
    background:transparent;border:0;border-radius:0;padding:.2rem 0 .6rem .5rem;min-width:0;
    max-height:0;overflow:hidden;transition:max-height .25s}
  .nav__item--open .dropdown{max-height:600px}
  .dropdown a{color:var(--green-700)}
  .dropdown a:hover{background:var(--paper);color:var(--terracotta)}
  .dropdown .dd-ico{color:var(--teal)}
  .dropdown__foot{border-top-color:var(--line)}
  .dropdown__mail{color:var(--teal)}
  .dropdown__social a{border-color:var(--line);color:var(--green-800)}
  .dropdown__social a:hover{background:var(--green-800);color:#fff;border-color:var(--green-800)}
  .header-cta{display:none}
  .nav .header-cta{display:inline-flex;margin-top:1.1rem;width:100%}
  .hero__grid{grid-template-columns:1fr;text-align:center}
  .hero__lead{margin-inline:auto}
  .hero__art{order:-1}
}

/* ============ Organizations · FAQs (Figma "Frame 655") ============ */
/* Figma: this section's eyebrow dot is PURPLE #83039C (the others on the page are teal). */
.sec-head__dot--purple{background:var(--cat-purple)!important}
.page-org .org-faqs{padding-top:64px;padding-bottom:64px}
.page-org .org-faqs__grid{display:grid;grid-template-columns:400px 780px;justify-content:space-between;
  align-items:start;gap:0}
.page-org .org-faqs__title{font-family:var(--f-display);font-weight:400;font-size:54px;line-height:1.2;
  color:#0D3D38;margin:0;max-width:400px}
.page-org .org-faqs__sub{margin-top:40px;font-family:var(--f-body);font-weight:400;font-size:20px;
  line-height:1.25;color:#3E3E3E}
.page-org .org-faqs__sub a{color:var(--terracotta);font-weight:600}
.page-org .org-faqs__list{display:flex;flex-direction:column;gap:24px}
/* Figma row: 780x44, #EDE5DA, r12, 24px padding, Quicksand Regular 16/20 #0D3D38 */
.page-org .ofaq{background:#EDE5DA;border-radius:12px}
.page-org .ofaq__q{list-style:none;cursor:pointer;display:flex;align-items:center;gap:16px;
  min-height:44px;padding:12px 24px;font-family:var(--f-body);font-weight:700;font-size:16px;
  line-height:1.25;color:#0D3D38}
.page-org .ofaq__q::-webkit-details-marker{display:none}
.page-org .ofaq__ico{margin-left:auto;flex:0 0 16px;width:16px;height:16px;
  background:no-repeat center/9.3px 4.7px
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 10 5'><path d='M1 1l4 3 4-3' fill='none' stroke='%230D3D38' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/></svg>");
  transition:transform .2s ease}
.page-org .ofaq[open] .ofaq__ico{transform:rotate(180deg)}
.page-org .ofaq__a{padding:0 24px 16px;font-family:var(--f-body);font-size:16px;line-height:1.5;color:#23322D}

/* ============ Organizations · "Let's talk" form (Figma "Frame 656") ============ */
.page-org .org-form{background:#F8F4F2;padding:64px 0}
.page-org .org-form__grid{display:grid;grid-template-columns:400px 776px;justify-content:space-between;
  align-items:start;gap:0}
.page-org .org-form__illus{width:400px;height:400px;object-fit:contain;display:block}
.page-org .org-form__title{margin:12px 0 0;font-family:var(--f-serif);font-weight:700;font-size:36px;
  line-height:1.333;color:#0E0000}
.page-org .org-form__sub{margin-top:12px;font-family:var(--f-body);font-weight:400;font-size:20px;
  line-height:1.25;color:#0E0000}
.page-org .org-form__form{display:flex;flex-direction:column;gap:36px}
.page-org .org-form__row{display:grid;grid-template-columns:1fr 1fr;gap:36px}
/* Figma field: label Quicksand 16/20 #0D3D38, 6px gap, 44px control, bg #F8F4F2,
   1px #508883 border, r12. */
.page-org .ofield{display:flex;flex-direction:column;gap:6px}
.page-org .ofield>span{font-family:var(--f-body);font-weight:400;font-size:16px;line-height:1.25;color:#0D3D38}
.page-org .ofield input,.page-org .ofield select,.page-org .ofield textarea{
  width:100%;height:44px;padding:10px 16px;box-sizing:border-box;background:#F8F4F2;
  border:1px solid #508883;border-radius:12px;font-family:var(--f-body);font-size:16px;
  line-height:1.25;color:#23322D;appearance:none;-webkit-appearance:none}
.page-org .ofield textarea{height:104px;resize:vertical;padding:12px 16px}
.page-org .ofield input::placeholder,.page-org .ofield textarea::placeholder{color:#8A948F}
.page-org .ofield select{color:#8A948F;
  background-image:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 7'><path d='M1 1l5 4 5-4' fill='none' stroke='%230D3D38' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/></svg>");
  background-repeat:no-repeat;background-position:right 16px center;background-size:12px 7px;
  padding-right:40px}
.page-org .ofield select:valid{color:#23322D}
.page-org .ofield input:focus,.page-org .ofield select:focus,.page-org .ofield textarea:focus{
  outline:2px solid var(--terracotta);outline-offset:1px;border-color:transparent}
/* Figma submit: 214x55, #BF4E30, r12, Quicksand Bold 20/25 white */
.page-org .org-form__submit{min-width:214px;height:55px;border-radius:12px}
.page-org .org-form__note{margin-top:-24px;font-size:.8rem;color:#6B756F}

@media (max-width:1280px){
  .page-org .org-faqs__grid,.page-org .org-form__grid{grid-template-columns:1fr;gap:40px}
  .page-org .org-faqs__title{font-size:40px}
  .page-org .org-form__illus{width:100%;max-width:400px;height:auto;margin:0 auto}
}
@media (max-width:640px){
  .page-org .org-form__row{grid-template-columns:1fr;gap:24px}
  .page-org .org-form__form{gap:24px}
  .page-org .org-faqs__title{font-size:32px}
  .page-org .org-form__title{font-size:28px}
}

/* ================== Pricing cards (Figma "Individual/Corporate pricing") ==================
   Card 400x, #FFFFFC, 3px #EDE5DA border, r24, 40px padding (320px content).
   Chip 46px r8 (#83039C base; the Wellness-Packages page overrides it to #CFE5F3).
   Title Playfair Bold 24 underlined #000 · body Quicksand 400 16 #000
   "Available packages" box r8 · features w/ purple check icon · Secondary button
   246x55 r12 #F8F4F2 with 1px #BF4E30 border, Quicksand Bold 20 #134A45. */
.pcards{display:grid;grid-template-columns:repeat(3,400px);justify-content:space-between;
  gap:24px;align-items:stretch}
.pcards--4{grid-template-columns:repeat(auto-fit,minmax(400px,400px));justify-content:center}
.pcard{--chip:#83039C;--chipfg:#FFFFFC;--pkgbg:#F8F4F2;--tick:#83039C;
  width:400px;background:#FFFFFC;border:3px solid #EDE5DA;border-radius:24px;padding:40px;
  display:flex;flex-direction:column}
.pcard__pricerow{display:flex;align-items:center;gap:16px;flex-wrap:wrap}
.pcard__chip{background:var(--chip);color:var(--chipfg);border-radius:8px;padding:8px 16px;
  font-family:var(--f-body);font-weight:600;font-size:24px;line-height:30px}
.pcard__per{font-family:var(--f-body);font-weight:400;font-size:16px;line-height:20px;color:#23322D}
.pcard__name{margin-top:16px;font-family:var(--f-serif);font-weight:700;font-size:24px;
  line-height:1.33;color:#000;text-decoration:underline;text-underline-offset:4px;
  text-decoration-thickness:1.5px}
.pcard__desc{margin-top:16px;font-family:var(--f-body);font-weight:400;font-size:16px;
  line-height:1.25;color:#000}
.pcard__desc b{font-weight:700}
.pcard__pkgs{margin-top:24px;background:var(--pkgbg);border-radius:8px;padding:8px 12px;
  font-family:var(--f-body);font-weight:400;font-size:16px;line-height:1.25;color:#23322D;
  white-space:pre-line}
.pcard__feats{list-style:none;margin:24px 0 0;padding:0;display:flex;flex-direction:column;gap:9px}
.pcard__feats li{display:grid;grid-template-columns:20px 1fr;gap:16px;align-items:start;
  font-family:var(--f-body);font-weight:400;font-size:16px;line-height:1.25;color:#000}
.pcard__feats li::before{content:"";width:20px;height:20px;margin-top:1px;
  background:no-repeat center/20px 20px;
  background-image:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'><rect x='1.5' y='1.5' width='17' height='17' rx='3' fill='none' stroke='%2383039C' stroke-width='1.6'/><path d='M5.5 10.2l3 3 6-6.4' fill='none' stroke='%2383039C' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/></svg>")}
.pcard__cta{margin-top:auto;padding-top:32px}
.pcard__btn{display:inline-flex;align-items:center;justify-content:center;width:246px;height:55px;
  background:#F8F4F2;border:1px solid #BF4E30;border-radius:12px;
  font-family:var(--f-body);font-weight:700;font-size:20px;line-height:25px;color:#134A45;
  transition:background .18s ease}
.pcard__btn:hover{background:#fff}
/* Wellness-Packages page instance overrides (blue chip + blue packages box) */
.pcards--blue .pcard{--chip:#CFE5F3;--chipfg:#23322D;--pkgbg:#CFE5F3}
@media (max-width:1320px){
  .pcards,.pcards--4{grid-template-columns:repeat(auto-fit,minmax(320px,400px));justify-content:center}
  .pcard{width:100%;max-width:400px}
}
@media (max-width:520px){ .pcard{padding:24px} .pcard__btn{width:100%} }

/* ---- Wellness Packages page ---- */
.pkg-hero2{background:#CFE5F3;text-align:center;padding:64px 0 88px}
.hero-overlay .pkg-hero2{padding-top:calc(var(--header-h) + 64px)}
.pkg-hero2__badge{width:236px;height:143px;object-fit:contain;margin:0 auto 24px}
.pkg-hero2__title{font-family:var(--f-display);font-weight:500;font-size:64px;line-height:1.2;
  color:#134A45;max-width:677px;margin:0 auto}
.pkg-hero2__sub{margin:24px auto 0;max-width:677px;font-family:var(--f-body);font-weight:400;
  font-size:20px;line-height:1.25;color:#0D3D38}
.pkg-head{padding:64px 0 0}
.pkg-head__title{font-family:var(--f-display);font-weight:400;font-size:54px;line-height:1.2;color:#0D3D38;margin:0}
.pkg-head__sub{margin-top:16px;font-family:var(--f-body);font-weight:400;font-size:20px;
  line-height:1.25;color:#0D3D38}
.pkg-custom{padding:64px 0 96px}
.pkg-custom__grid{display:grid;grid-template-columns:1fr 360px;gap:40px;align-items:center}
.pkg-custom__title{font-family:var(--f-serif);font-weight:700;font-size:36px;line-height:1.33;color:#000;margin:0}
.pkg-custom__body{margin-top:24px;font-family:var(--f-body);font-weight:400;font-size:20px;
  line-height:1.25;color:#23322D;display:flex;flex-direction:column;gap:20px}
.pkg-custom__body b{font-weight:700}
.pkg-custom__illus{width:360px;height:auto;justify-self:end}
@media (max-width:900px){
  .pkg-custom__grid{grid-template-columns:1fr}
  .pkg-custom__illus{justify-self:center;width:280px}
  .pkg-hero2__title{font-size:40px}
  .pkg-head__title{font-size:34px}
}

/* ==================== Shared hero for About / Science / Offerings ==================== */
/* Figma: both heroes are 64px titles mixing Syne Medium/SemiBold with Playfair
   SemiBold-Italic runs (character overrides), on a #EDE5DA band. */
.fhero{background:#EDE5DA;padding:64px 0 88px}
.hero-overlay .fhero{padding-top:calc(var(--header-h) + 64px)}
.fhero__title{font-family:var(--f-display);font-weight:500;font-size:64px;line-height:1.2;
  color:#134A45;margin:0}
.fhero__title .sb{font-weight:600}
.fhero__title .it{font-family:var(--f-serif);font-style:italic;font-weight:600}
.fhero--center{text-align:center}
.fhero--center .fhero__title{max-width:677px;margin:0 auto}
.fhero__sub{margin:24px auto 0;max-width:760px;font-family:var(--f-body);font-weight:400;
  font-size:20px;line-height:1.25;color:#0D3D38}
.fhero__grid{display:grid;grid-template-columns:1fr 360px;gap:40px;align-items:center}
.fhero__art{width:360px;height:auto;justify-self:end}
.fsec__title{font-family:var(--f-display);font-weight:400;font-size:54px;line-height:1.2;color:#0D3D38;margin:0}
.fsec__sub{margin-top:16px;font-family:var(--f-body);font-weight:400;font-size:20px;
  line-height:1.25;color:#23322D}

/* ---------------- Science: alternating illustration rows ---------------- */
.sci-row{display:grid;grid-template-columns:400px 1fr;gap:64px;align-items:start;margin-top:64px}
.sci-row--flip{grid-template-columns:1fr 400px}
.sci-row--flip .sci-row__panel{order:2}
.sci-row__panel{width:400px;border-radius:32px;overflow:hidden}
.sci-row__panel img{width:100%;height:auto;display:block}
.sci-row__title{font-family:var(--f-serif);font-weight:700;font-size:36px;line-height:1.33;color:#23322D;margin:0}
.sci-row__lead{margin-top:24px;font-family:var(--f-body);font-size:20px;line-height:1.25;color:#23322D}
.sci-row__list{margin:16px 0 0;padding-left:22px;display:flex;flex-direction:column;gap:8px;
  font-family:var(--f-body);font-size:20px;line-height:1.25;color:#23322D}
.sci-apps{display:grid;grid-template-columns:repeat(3,1fr);gap:48px 40px;margin-top:56px}
.sci-app{text-align:left}
.sci-app__ico{width:207px;height:126px;object-fit:contain;margin:0 auto 24px;display:block}
.sci-app__title{font-family:var(--f-serif);font-weight:700;font-size:24px;line-height:1.33;
  color:#23322D;text-align:center;margin:0 0 16px}
.sci-app p{font-family:var(--f-body);font-size:20px;line-height:1.25;color:#23322D}
@media (max-width:1000px){
  .sci-row,.sci-row--flip{grid-template-columns:1fr;gap:32px}
  .sci-row--flip .sci-row__panel{order:0}
  .sci-row__panel{width:100%;max-width:400px}
  .sci-apps{grid-template-columns:1fr 1fr}
  .fhero__grid{grid-template-columns:1fr}
  .fhero__art{justify-self:center;width:280px}
  .fhero__title{font-size:40px}
  .fsec__title{font-size:34px}
}
@media (max-width:640px){ .sci-apps{grid-template-columns:1fr} }

/* ---------------- About ---------------- */
.ab-pillars{display:grid;grid-template-columns:repeat(3,1fr);gap:40px;margin-top:56px;text-align:center}
.ab-pillar__ico{width:236px;height:143px;object-fit:contain;margin:0 auto 16px;display:block}
.ab-pillar__t{font-family:var(--f-body);font-weight:500;font-size:24px;line-height:1.25;color:#000;margin:0 0 12px}
.ab-pillar p{font-family:var(--f-body);font-size:16px;line-height:1.25;color:#000}
.ab-founder{display:grid;grid-template-columns:526px 1fr;gap:64px;align-items:start;margin-top:56px}
.ab-founder__photo{width:526px;height:auto;display:block}
.ab-founder__name{font-family:var(--f-serif);font-weight:700;font-size:64px;line-height:1.1;color:#23322D;margin:0}
.ab-founder__role{margin-top:16px;font-family:var(--f-body);font-size:20px;line-height:1.25;color:#23322D}
.ab-founder__role b{font-weight:700}
.ab-creds{margin-top:24px;display:flex;flex-direction:column;gap:16px}
.ab-cred{display:grid;grid-template-columns:56px 1fr;gap:16px;align-items:start}
.ab-cred img{width:56px;height:56px;object-fit:contain}
.ab-cred p{font-family:var(--f-body);font-weight:700;font-size:20px;line-height:1.25;color:#23322D}
.ab-cred p span{font-weight:400}
.ab-founder__bio{margin-top:24px;font-family:var(--f-body);font-size:20px;line-height:1.25;color:#23322D}
.ab-founder__bio b{font-weight:700}
.ab-expertise{display:grid;grid-template-columns:repeat(3,1fr);gap:56px 40px;margin-top:64px;text-align:center}
.ab-exp img{width:56px;height:56px;object-fit:contain;margin:0 auto 16px;display:block}
.ab-exp p{font-family:var(--f-serif);font-weight:500;font-size:32px;line-height:1.25;color:#000}
.ab-mv{display:grid;grid-template-columns:1fr 400px;gap:48px;margin-top:56px;align-items:stretch}
.ab-mv__card{background:#CFE5F3;border-radius:24px;padding:40px}
.ab-mv__card h3{font-family:var(--f-display);font-weight:400;font-size:54px;line-height:1.2;color:#0D3D38;margin:0 0 24px}
.ab-mv__card p{font-family:var(--f-body);font-size:20px;line-height:1.25;color:#000}
.ab-mv__card p+p{margin-top:20px}
.ab-values{display:grid;grid-template-columns:400px 1fr;gap:64px;margin-top:56px;align-items:start}
.ab-values__illus{width:306px;height:auto;display:block;margin-bottom:24px}
.ab-values__t{font-family:var(--f-display);font-weight:400;font-size:54px;line-height:1.2;color:#0D3D38;margin:0 0 16px}
.ab-values__lead{font-family:var(--f-body);font-size:20px;line-height:1.25;color:#0D3D38}
.ab-value{margin-bottom:40px}
.ab-value h3{font-family:var(--f-display);font-weight:400;font-size:48px;line-height:1.2;color:#000;margin:0 0 16px}
.ab-value p{font-family:var(--f-body);font-size:20px;line-height:1.25;color:#000}
@media (max-width:1100px){
  .ab-founder,.ab-values{grid-template-columns:1fr;gap:32px}
  .ab-founder__photo{width:100%;max-width:526px}
  .ab-mv{grid-template-columns:1fr}
  .ab-expertise,.ab-pillars{grid-template-columns:1fr 1fr}
  .ab-founder__name{font-size:42px}
  .ab-value h3{font-size:32px}
  .ab-mv__card h3{font-size:36px}
}
@media (max-width:640px){ .ab-expertise,.ab-pillars{grid-template-columns:1fr} }

/* ---------------- Offerings: workshops ---------------- */
.wk{padding:64px 0 96px;text-align:left}
.wk__illus{width:440px;height:auto;margin:0 auto 40px;display:block}
.wk__title{font-family:var(--f-display);font-weight:400;font-size:54px;line-height:1.2;color:#0D3D38;margin:0}
.wk__sub{margin-top:16px;font-family:var(--f-body);font-size:20px;line-height:1.25;color:#23322D}
@media (max-width:640px){ .wk__illus{width:100%;max-width:320px} .wk__title{font-size:32px} }

/* ---------------- Contact ---------------- */
.ct{padding:64px 0 96px}
.hero-overlay .ct{padding-top:calc(var(--header-h) + 40px)}
.ct__grid{display:grid;grid-template-columns:1fr 1fr;gap:64px;align-items:center}
.ct__title{font-family:var(--f-display);font-weight:400;font-size:54px;line-height:1.2;color:#0D3D38;margin:0}
.ct__sub{margin-top:24px;font-family:var(--f-body);font-size:20px;line-height:1.25;color:#3E3E3E;max-width:430px}
.ct__cal{min-height:700px}
@media (max-width:900px){ .ct__grid{grid-template-columns:1fr;gap:32px} .ct__title{font-size:34px} }

/* ======================= Footer (Figma "Footer" 4424:3491) =======================
   1440x328 · body #0D3D38 (283px) + bottom bar #B961CD (45px).
   Logo 200x82 at 100px left / 50px top · 4 social icons 40x40 below it.
   Three link columns start at x=630, 270px apart, 170px wide.
   Column heads Quicksand 400 20 #CF8DDE · links Quicksand 400 16 #EEEEEE. */
.site-footer{background:#0D3D38;padding:0}
.site-footer__inner{display:grid;grid-template-columns:200px 1fr;gap:80px;
  padding:50px 0;align-items:start;min-height:283px;box-sizing:border-box}
.site-footer__brand img{width:200px;height:auto;display:block}
.site-footer__social{display:flex;gap:10px;margin-top:24px}
.site-footer__social a{width:40px;height:40px;display:flex;align-items:center;justify-content:center;
  color:#F8F4F2;border-radius:8px;transition:background .18s ease}
.site-footer__social a:hover{background:rgba(248,244,242,.14)}
.site-footer__social svg{width:24px;height:24px}
.site-footer__cols{display:grid;grid-template-columns:repeat(3,170px);gap:100px;justify-content:start}
.site-footer__col h3{font-family:var(--f-body);font-weight:700;font-size:20px;line-height:25px;
  color:#CF8DDE;margin:0 0 14px}
.site-footer__col a{display:block;font-family:var(--f-body);font-weight:400;font-size:16px;
  line-height:20px;color:#EEEEEE;padding:7px 0}
.site-footer__col a:hover{color:#fff;text-decoration:underline}
/* third column is a stack of 20px headings that are themselves links */
.site-footer__col--links a{font-weight:700;font-size:20px;line-height:25px;color:#CF8DDE;padding:13px 0}
.site-footer__col--links a:first-child{padding-top:0}
.site-footer__bar{background:#B961CD;height:45px;line-height:1;display:flex;align-items:center;justify-content:center;gap:12px}
.site-footer__bar p{font-family:var(--f-body);font-weight:400;font-size:20px;line-height:25px;color:#FFFFFC}
.site-footer__bar svg{width:24px;height:24px;color:#FFFFFC;flex:0 0 24px}
@media (max-width:1100px){
  .site-footer__inner{grid-template-columns:1fr;gap:40px}
  .site-footer__cols{grid-template-columns:repeat(3,1fr);gap:32px}
}
@media (max-width:640px){
  .site-footer__cols{grid-template-columns:1fr 1fr;gap:24px}
  .site-footer__bar p{font-size:16px}
}

/* =====================================================================
   RESOURCES PAGE  (Figma "Resources" 4385:9881 — original file)
   Hero = "Component 4" 4385:9882 · blog cards = "Component 5" 4385:9975
   ===================================================================== */
.res-hero{background:#EDE5DA;text-align:center;padding:64px 0}
.hero-overlay .res-hero{padding-top:calc(var(--header-h) + 40px)}
.res-hero__inner{display:flex;flex-direction:column;align-items:center;gap:24px}
.res-hero__illus{width:160px;height:160px;object-fit:contain;margin:0}
/* Figma: Playfair Display 700 64/85 #134A45, hard <br> before "understanding".
   max-width 920 clears the second line at 64px so the <br> is the only break on
   desktop; below that the block just wraps to the column width. */
.res-hero__title{font-family:var(--f-serif);font-weight:700;font-size:64px;line-height:1.2;
  color:#134A45;margin:0;max-width:920px;min-width:0}
/* Figma: Quicksand 600 24/30 #0D3D38, 680px column */
.res-hero__sub{font-family:var(--f-body);font-weight:600;font-size:24px;line-height:1.25;
  color:#0D3D38;margin:0;max-width:680px}

.res-blog{background:#FEFEFD;padding:64px 0}
/* Figma row is SPACE_BETWEEN across the 1244 content band → ~170px between the 300px
   cards; gap:44 is only the wrap fallback. */
.res-blog__grid{display:flex;flex-wrap:wrap;justify-content:space-between;gap:44px}

.res-blog-card{flex:0 0 300px;max-width:300px;background:#fff;border-radius:12px;overflow:hidden;
  display:flex;flex-direction:column;
  box-shadow:0 4px 6px -2px rgba(0,0,0,.03), 0 12px 16px -4px rgba(0,0,0,.08);
  transition:transform .2s ease, box-shadow .2s ease}
.res-blog-card:hover{transform:translateY(-4px);
  box-shadow:0 8px 12px -4px rgba(0,0,0,.06), 0 22px 30px -6px rgba(0,0,0,.13)}
/* Figma "Image+Badge" 300x183 — placeholder art on a brand pastel until real
   post images are supplied (Figma fill is a solid maroon placeholder). */
.res-blog-card__media{position:relative;height:183px;display:flex;align-items:center;
  justify-content:center;overflow:hidden}
.res-blog-card__media img{width:auto;height:132px;object-fit:contain}
.res-blog-card__media--1{background:#EBD2F0}
.res-blog-card__media--2{background:#CFE5F3}
.res-blog-card__media--3{background:#F0CEC5}
/* Figma "Tag Variant" — #006EFF pill, SF Pro 700 10/16, pad 4/16, r40, top-right */
.res-blog-card__badge{position:absolute;top:16px;right:16px;background:#006EFF;color:#fff;
  font-family:var(--f-body);font-weight:700;font-size:10px;line-height:16px;letter-spacing:.5px;
  text-transform:uppercase;padding:4px 16px;border-radius:40px}
/* Figma "Content" — vertical gap 19, 24px side padding */
.res-blog-card__body{padding:16px 24px 0;display:flex;flex-direction:column;gap:19px;flex:1 1 auto}
/* Figma "Title" — Playfair Display 700 24/32 #121212, 2-line box (64px reserved) */
.res-blog-card__title{font-family:var(--f-serif);font-weight:700;font-size:24px;line-height:1.33;
  color:#121212;margin:0;display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;
  overflow:hidden;min-height:calc(2em * 1.33);transition:color .2s ease}
.res-blog-card:hover .res-blog-card__title{color:#134A45}
/* Figma "Footer" — space-between, 16px top/bottom padding */
.res-blog-card__meta{margin-top:auto;display:flex;align-items:center;justify-content:space-between;
  padding:16px 0}
.res-blog-card__date{font-family:var(--f-body);font-weight:400;font-size:16px;line-height:1.25;color:#959393}
.res-blog-card__arrow{width:16px;height:16px;flex:0 0 16px;color:#605F5F;transition:transform .2s ease}
.res-blog-card:hover .res-blog-card__arrow{transform:translateX(3px)}
