/* ============================================================
   Lifeline Hospital Consulting — brand system v3
   Source Serif 4 carries authority. Inter carries the work.
   The continuous Aquamarine bridge is the sole brand motif.
   ============================================================ */
@font-face{font-family:'Inter';src:url('/assets/fonts/Inter-400.ttf') format('truetype');font-weight:400;font-style:normal;font-display:swap}
@font-face{font-family:'Inter';src:url('/assets/fonts/Inter-500.ttf') format('truetype');font-weight:500;font-style:normal;font-display:swap}
@font-face{font-family:'Inter';src:url('/assets/fonts/Inter-600.ttf') format('truetype');font-weight:600;font-style:normal;font-display:swap}
@font-face{font-family:'Inter';src:url('/assets/fonts/Inter-700.ttf') format('truetype');font-weight:700;font-style:normal;font-display:swap}
@font-face{font-family:'Source Serif 4';src:url('/assets/fonts/SourceSerif4-400.ttf') format('truetype');font-weight:400;font-style:normal;font-display:swap}
@font-face{font-family:'Source Serif 4';src:url('/assets/fonts/SourceSerif4-600.ttf') format('truetype');font-weight:600;font-style:normal;font-display:swap}
@font-face{font-family:'Source Serif 4';src:url('/assets/fonts/SourceSerif4-700.ttf') format('truetype');font-weight:700;font-style:normal;font-display:swap}
@font-face{font-family:'Source Serif 4';src:url('/assets/fonts/SourceSerif4-Italic600.ttf') format('truetype');font-weight:600;font-style:italic;font-display:swap}

:root{
  --deep:#174450;
  --deep-950:#081E24;
  --deep-900:#0E2B33;
  --deep-700:#1D5665;
  --deep-500:#2E6E7E;
  --aqua:#77C7AD;
  --aqua-soft:#A8DDCC;
  --aqua-dk:#2E7D5F;      /* Jade: AA-safe working green on light */
  --aqua-100:#DFF3ED;
  --aqua-200:#C5E8DC;
  --jade:#2E7D5F;
  --mist:#DFF3ED;
  --amber:#E0A15B;
  --grey:#D6D9DB;
  --line:#E2E9E8;
  --line-strong:#C7D3D3;
  --paper:#FFFFFF;
  --tint:#F4F8F7;
  --tint-2:#EAF2F0;
  --body:#33474C;
  --muted:#5A6E72;

  /* on-dark ink */
  --ink-1:#FFFFFF;
  --ink-2:#C6DADD;
  --ink-3:#9BB8BD;

  --font-display:'Source Serif 4',Georgia,'Times New Roman',serif;
  --font-body:'Inter',system-ui,-apple-system,'Segoe UI',Roboto,sans-serif;

  --wrap:1180px;
  --gut:clamp(20px,5vw,48px);
  --r:10px;
  --r-lg:18px;
  --pill:999px;

  --shadow-1:0 1px 2px rgba(14,43,51,.05),0 2px 8px rgba(14,43,51,.05);
  --shadow-2:0 2px 6px rgba(14,43,51,.06),0 12px 28px -8px rgba(14,43,51,.14);
  --shadow-3:0 4px 10px rgba(14,43,51,.08),0 24px 48px -12px rgba(14,43,51,.22);
  --glow-aqua:0 0 0 1px rgba(119,199,173,.35),0 6px 30px -6px rgba(119,199,173,.45);

  --step--1:clamp(.82rem,.79rem + .12vw,.88rem);
  --step-0:clamp(1rem,.96rem + .2vw,1.075rem);
  --step-1:clamp(1.18rem,1.1rem + .38vw,1.4rem);
  --step-2:clamp(1.5rem,1.32rem + .78vw,2.05rem);
  --step-3:clamp(1.85rem,1.52rem + 1.5vw,2.85rem);
  --step-4:clamp(2.3rem,1.75rem + 2.5vw,3.9rem);
  --step-5:clamp(2.75rem,1.9rem + 3.9vw,5.1rem);

  /* the approved continuous bridge, used as a faint section-scale gesture */
  --arc-ghost:url('/assets/brand-arc.svg');
}

*,*::before,*::after{box-sizing:border-box}
html{-webkit-text-size-adjust:100%;scroll-behavior:smooth}
@media (prefers-reduced-motion:reduce){html{scroll-behavior:auto}
  *{animation-duration:.01ms!important;animation-delay:0ms!important;transition-duration:.01ms!important;transition-delay:0ms!important}}
body{
  margin:0;background:var(--paper);color:var(--body);
  font-family:var(--font-body);
  font-size:var(--step-0);line-height:1.62;font-weight:400;
  -webkit-font-smoothing:antialiased;text-rendering:optimizeLegibility;
}
img{max-width:100%;height:auto;display:block}
a{color:inherit}
::selection{background:var(--aqua);color:var(--deep-950)}
h1,h2,h3,h4{color:var(--deep);font-weight:600;line-height:1.1;letter-spacing:-.025em;margin:0;text-wrap:balance}
/* display face on the big headings only */
h1,.h1,.h-xl,h2,.h2{font-family:var(--font-display);font-weight:600;letter-spacing:-.008em;line-height:1.08}
h3,h4,.h3{font-family:var(--font-body);font-weight:600;letter-spacing:-.02em}
h1 em,h2 em,.h1 em,.h2 em{font-style:italic;color:var(--aqua-dk)}
.sec--deep h2 em,.hero h1 em,.phero h1 em{color:var(--aqua)}
p{margin:0}
ul,ol{margin:0;padding:0}
:focus-visible{outline:2.5px solid var(--aqua-dk);outline-offset:3px;border-radius:4px}

.wrap{width:100%;max-width:var(--wrap);margin-inline:auto;padding-inline:var(--gut)}
.skip{position:absolute;left:-9999px;top:0;background:var(--deep);color:#fff;padding:.7rem 1.1rem;z-index:200}
.skip:focus{left:0}

/* ---------- scroll reveal (JS adds .rv, then .in when visible) ---------- */
html.js .rv{opacity:0;transform:translateY(18px);
  transition:opacity .7s cubic-bezier(.22,.61,.36,1),transform .7s cubic-bezier(.22,.61,.36,1);
  transition-delay:var(--d,0ms)}
html.js .rv.in{opacity:1;transform:none}
@media (prefers-reduced-motion:reduce){html.js .rv{opacity:1;transform:none}}

/* ---------- header ---------- */
.site-head{position:sticky;top:0;z-index:100;background:rgba(255,255,255,.88);
  backdrop-filter:saturate(170%) blur(14px);-webkit-backdrop-filter:saturate(170%) blur(14px);
  border-bottom:1px solid var(--line)}
/* A single aquamarine ribbon echoes the uninterrupted v3 bridge. */
.site-head::before{content:"";display:block;height:3px;
  background:var(--aqua)}
.site-head.is-scrolled{box-shadow:0 6px 24px -12px rgba(14,43,51,.18)}
.site-head__in{display:flex;align-items:center;gap:clamp(16px,3vw,40px);min-height:86px}
.brand{display:flex;align-items:center}
.brand img{width:156px;height:auto}
.nav{display:flex;gap:clamp(14px,2vw,28px);margin-left:auto;flex-wrap:wrap}
.nav__link{
  text-decoration:none;color:var(--deep);font-size:.94rem;font-weight:500;
  padding:.35rem 0;position:relative;white-space:nowrap;
}
.nav__link::after{content:"";position:absolute;left:0;right:100%;bottom:0;height:2px;
  border-radius:99px;background:var(--aqua);transition:right .25s ease}
.nav__link:hover::after,.nav__link.is-active::after{right:0}
.nav__link.is-active{color:var(--deep);font-weight:600}
.head-cta{display:flex;gap:10px;align-items:center}

.btn{
  display:inline-flex;align-items:center;justify-content:center;gap:.5rem;
  font-size:.92rem;font-weight:600;letter-spacing:-.005em;text-decoration:none;
  padding:.72rem 1.35rem;border-radius:var(--pill);border:1.5px solid transparent;
  transition:background .18s ease,color .18s ease,border-color .18s ease,transform .18s ease,box-shadow .18s ease;
  cursor:pointer;line-height:1.2;
}
.btn:active{transform:translateY(1px)}
.btn--solid{background:var(--deep);color:#fff;box-shadow:var(--shadow-1)}
.btn--solid:hover{background:var(--deep-900);transform:translateY(-1px);box-shadow:var(--shadow-2)}
.btn--wa,.btn--ghost{background:transparent;color:var(--deep);border-color:var(--line-strong)}
.btn--wa:hover,.btn--ghost:hover{border-color:var(--deep);background:var(--tint)}
.btn--aqua{background:var(--amber);color:var(--deep-950);box-shadow:0 2px 10px -2px rgba(224,161,91,.42)}
.btn--aqua:hover{background:#E8B372;transform:translateY(-1px);box-shadow:0 8px 24px -6px rgba(224,161,91,.52)}
.btn--onDark{background:rgba(255,255,255,.04);color:#fff;border-color:rgba(255,255,255,.32)}
.btn--onDark:hover{border-color:var(--aqua);color:var(--aqua);background:rgba(119,199,173,.08)}
.btn--lg{padding:.92rem 1.7rem;font-size:1rem}

.burger{display:none;margin-left:auto;background:none;border:0;padding:10px;cursor:pointer}
.burger span{display:block;width:24px;height:2px;border-radius:2px;background:var(--deep);margin:5px 0;transition:.25s}
.burger[aria-expanded="true"] span:nth-child(1){transform:translateY(7px) rotate(45deg)}
.burger[aria-expanded="true"] span:nth-child(2){opacity:0}
.burger[aria-expanded="true"] span:nth-child(3){transform:translateY(-7px) rotate(-45deg)}
.mobile-nav{border-top:1px solid var(--line);background:#fff;padding:.5rem 0 1.4rem}
.mobile-nav a{display:block;padding:.8rem 0;text-decoration:none;color:var(--deep);
  font-size:1.06rem;font-weight:500;border-bottom:1px solid var(--line)}
.mobile-nav a.is-active{color:var(--jade);font-weight:600}
.mobile-nav__cta{display:flex;gap:10px;margin-top:1.1rem}
.mobile-nav__cta .btn{flex:1}

@media (max-width:1040px){
  .nav,.head-cta{display:none}
  .burger{display:block}
  .site-head__in{min-height:72px}
  .brand img{width:132px}
}
@media (min-width:1041px){.mobile-nav{display:none!important}}

/* ---------- section furniture ---------- */
.sec{padding:clamp(60px,7.5vw,110px) 0;position:relative}
.sec--tint{overflow:hidden;background:linear-gradient(180deg,var(--mist) 0%,#F4FAF8 100%)}
.sec--deep{overflow:hidden;background:
  radial-gradient(1000px 480px at 85% -10%,rgba(119,199,173,.14),transparent 65%),
  linear-gradient(160deg,var(--deep) 0%,var(--deep-900) 100%);
  color:var(--ink-2)}
.sec--tint::after,.sec--deep::after{content:"";position:absolute;right:-10%;top:10%;width:min(46vw,560px);
  aspect-ratio:260.92/102.8;background:var(--arc-ghost) center/contain no-repeat;pointer-events:none}
.sec--tint::after{opacity:.11}.sec--deep::after{opacity:.09}
.sec>.wrap{position:relative;z-index:1}
.sec--deep h1,.sec--deep h2,.sec--deep h3,.hero h1,.hero h2,.hero h3{color:#fff}
.sec--tight{padding-top:clamp(34px,4vw,52px)}

/* Eyebrows carry a small continuous bridge, never a split mark. */
.eyebrow{
  display:flex;align-items:flex-start;gap:.7rem;margin-bottom:1.6rem;
  font-size:.73rem;font-weight:600;letter-spacing:.17em;text-transform:uppercase;color:var(--muted);
}
.eyebrow::before{content:"";flex:none;width:20px;height:8px;margin-top:.35em;
  background:var(--arc-ghost) center/contain no-repeat}
.sec--deep .eyebrow,.hero .eyebrow,.phero .eyebrow{color:var(--aqua)}

h1,.h1{font-size:var(--step-4)}
.h-xl{font-size:var(--step-5);letter-spacing:-.02em}
h2,.h2{font-size:var(--step-3)}
h3,.h3{font-size:var(--step-1)}
.lede{font-size:var(--step-1);line-height:1.52;color:var(--body);font-weight:400}
.sec--deep .lede{color:var(--ink-2)}
.measure{max-width:64ch}
.measure-sm{max-width:52ch}
.dim{color:var(--muted)}
.sec--deep .dim,.hero .dim{color:var(--ink-3)}
.small{font-size:var(--step--1)}
.tnum{font-variant-numeric:tabular-nums}

.sec-head{display:grid;grid-template-columns:minmax(0,1fr) minmax(0,.85fr);gap:clamp(24px,4vw,60px);
  align-items:end;margin-bottom:clamp(34px,4.2vw,60px)}
@media (max-width:820px){.sec-head{grid-template-columns:minmax(0,1fr);align-items:start;gap:18px}}

/* ---------- hero (homepage) ---------- */
.hero{position:relative;overflow:hidden;color:#fff;text-align:center;
  background:
    radial-gradient(900px 460px at 12% -12%,rgba(119,199,173,.16),transparent 60%),
    radial-gradient(1100px 560px at 88% 112%,rgba(119,199,173,.12),transparent 62%),
    linear-gradient(168deg,var(--deep-900) 0%,var(--deep) 55%,var(--deep-700) 130%);
  padding:clamp(58px,7.5vw,104px) 0 clamp(56px,7vw,96px)}
.hero__in{position:relative;z-index:1;display:flex;flex-direction:column;align-items:center}
.hero .eyebrow{justify-content:center;margin-bottom:1.4rem}
.hero h1{color:#fff;font-size:var(--step-5);font-weight:700;letter-spacing:-.02em;max-width:19ch}
.hero .lede{color:var(--ink-2);max-width:54ch;margin-top:1.4rem}
.hero__cta{display:flex;flex-wrap:wrap;gap:12px;margin-top:2.4rem;justify-content:center}
.hero__note{margin-top:2rem;font-size:var(--step--1);color:var(--ink-3);
  display:flex;flex-wrap:wrap;gap:.5rem 1.6rem;justify-content:center}
.hero__note span{display:inline-flex;align-items:center;gap:.55rem}
.hero__note span::before{content:"";width:10px;height:5px;flex:none;
  background:var(--arc-ghost) center/contain no-repeat}

/* Exact v3 bridge artwork, revealed as one unbroken stroke. */
.hero__arc{width:min(560px,76vw);margin:0 auto clamp(8px,1.8vw,20px);overflow:hidden}
.hero__arc img{width:100%;height:auto}
html.js .hero__arc img{clip-path:inset(0 100% 0 0);animation:arc-reveal 1.15s cubic-bezier(.45,0,.2,1) .08s forwards}
@keyframes arc-reveal{to{clip-path:inset(0 0 0 0)}}

/* ---------- stat strip ---------- */
.strip{background:
  linear-gradient(180deg,var(--deep-950) 0%,var(--deep-900) 100%);
  color:var(--ink-2);border-top:1px solid rgba(119,199,173,.22)}
.strip__grid{display:grid;grid-template-columns:repeat(3,1fr);gap:0}
@media (max-width:860px){.strip__grid{grid-template-columns:minmax(0,1fr)}}
.strip__item{padding:clamp(26px,3.6vw,44px) clamp(20px,2.6vw,40px);border-left:1px solid rgba(255,255,255,.09);
  position:relative;transition:background .25s ease}
.strip__item:hover{background:rgba(119,199,173,.05)}
.strip__item:first-child{border-left:0;padding-left:0}
@media (max-width:860px){
  .strip__item{border-left:0;border-top:1px solid rgba(255,255,255,.09);padding-inline:0}
  .strip__item:first-child{border-top:0}
}
.strip__k{font-size:.72rem;letter-spacing:.16em;text-transform:uppercase;color:var(--aqua);font-weight:600;
  display:flex;align-items:center;gap:.55rem}
.strip__k::before{content:"";width:14px;height:6px;flex:none;
  background:var(--arc-ghost) center/contain no-repeat}
.strip__v{color:#fff;font-size:var(--step-2);font-family:var(--font-display);font-weight:700;
  letter-spacing:-.01em;margin:.7rem 0 .5rem;line-height:1.18}
.strip__s{font-size:.85rem;color:var(--ink-3)}
.strip__s a{color:var(--ink-3);text-underline-offset:3px}
.strip__s a:hover{color:var(--aqua)}

/* ---------- generic grids ---------- */
.grid{display:grid;gap:clamp(16px,2.2vw,26px)}
.g-2{grid-template-columns:repeat(2,minmax(0,1fr))}
.g-3{grid-template-columns:repeat(3,minmax(0,1fr))}
.g-4{grid-template-columns:repeat(4,minmax(0,1fr))}
@media (max-width:1200px){.g-4{grid-template-columns:repeat(2,minmax(0,1fr))}}
@media (max-width:960px){.g-3{grid-template-columns:repeat(2,minmax(0,1fr))}}
@media (max-width:640px){.g-2,.g-3,.g-4{grid-template-columns:minmax(0,1fr)}}

/* ---------- cards ---------- */
.card{background:#fff;border:1px solid var(--line);border-radius:var(--r-lg);
  padding:clamp(24px,2.8vw,34px);display:flex;flex-direction:column;gap:.85rem;
  position:relative;box-shadow:var(--shadow-1);
  transition:transform .3s cubic-bezier(.22,.61,.36,1),box-shadow .3s ease,border-color .3s ease}
/* the span — an aqua bridge deck that extends across the card on hover */
.card::after{content:"";position:absolute;top:-1px;left:50%;right:50%;height:3px;border-radius:99px;
  background:linear-gradient(90deg,var(--aqua),var(--aqua-dk));
  transition:left .35s cubic-bezier(.22,.61,.36,1),right .35s cubic-bezier(.22,.61,.36,1)}
.card:hover{transform:translateY(-5px);box-shadow:var(--shadow-2);border-color:var(--line-strong)}
.card:hover::after{left:9%;right:9%}
.card--flat{background:#fff;border-color:var(--line)}
.card h3{font-size:var(--step-1)}
.card__no{font-size:.74rem;font-weight:700;letter-spacing:.16em;color:var(--aqua-dk);
  display:flex;align-items:center;gap:.6rem}
.card__no::after{content:"";height:1px;flex:1;max-width:44px;background:var(--aqua-200)}
.card__ic{width:52px;height:52px;border-radius:14px;background:var(--aqua-100);
  display:grid;place-items:center;color:var(--aqua-dk);margin-bottom:.2rem;
  transition:background .3s ease,color .3s ease,transform .3s ease}
.card:hover .card__ic{background:var(--deep);color:var(--aqua);transform:translateY(-2px)}
.card__ic svg{width:26px;height:26px}
.card--lead{border-color:var(--deep);border-width:1.5px;position:relative}
.card--lead::before{content:"Lead offering";position:absolute;top:-.72rem;left:clamp(22px,2.6vw,32px);
  background:var(--aqua);color:var(--deep-950);font-size:.68rem;font-weight:700;letter-spacing:.12em;
  text-transform:uppercase;padding:.25rem .6rem;border-radius:99px}
.card a.card__link{color:var(--deep);font-weight:600;text-decoration:none;font-size:.94rem;
  margin-top:auto;padding-top:.4rem;display:inline-flex;align-items:center;gap:.45rem}
.card a.card__link::after{content:"→";color:var(--aqua-dk);transition:transform .2s ease}
.card a.card__link:hover{color:var(--aqua-dk)}
.card a.card__link:hover::after{transform:translateX(5px)}

/* ---------- problem list ---------- */
.plist{list-style:none;display:grid;gap:0;border-top:1px solid var(--line)}
.plist li{display:flex;gap:clamp(16px,2.4vw,30px);padding:clamp(18px,2.2vw,26px) clamp(4px,1vw,12px);
  border-bottom:1px solid var(--line);align-items:baseline;position:relative;
  transition:background .25s ease,padding-left .25s ease}
.plist li:hover{background:var(--tint)}
.plist .n{flex:none;width:2.6rem;font-family:var(--font-display);font-size:1.5rem;font-weight:600;
  color:var(--jade);line-height:1}
.plist p{font-size:var(--step-1);color:var(--deep);letter-spacing:-.015em;line-height:1.4}

/* ---------- the bridge map — clinical fix → commercial consequence ---------- */
.bmap{list-style:none;display:grid;gap:clamp(12px,1.6vw,18px)}
.bmap__head{display:grid;grid-template-columns:minmax(0,1fr) clamp(74px,10vw,120px) minmax(0,1fr);
  gap:clamp(10px,1.6vw,18px);margin-bottom:.4rem;
  font-size:.73rem;font-weight:600;letter-spacing:.15em;text-transform:uppercase;color:var(--muted)}
.bmap__head span:last-child{text-align:right}
.bmap li{display:grid;grid-template-columns:minmax(0,1fr) clamp(74px,10vw,120px) minmax(0,1fr);
  gap:clamp(10px,1.6vw,18px);align-items:stretch}
.bmap__a,.bmap__b{border-radius:var(--r);padding:clamp(16px,2vw,22px) clamp(16px,2.2vw,26px);
  display:flex;align-items:center;font-size:.99rem;line-height:1.45;
  transition:transform .3s ease,box-shadow .3s ease}
.bmap__a{background:var(--aqua-100);border:1px solid var(--aqua-200);color:var(--deep);font-weight:600;letter-spacing:-.01em}
.bmap__b{background:#fff;border:1px solid var(--line);color:var(--body);justify-content:flex-start}
.bmap li:hover .bmap__a{transform:translateX(3px);box-shadow:var(--shadow-1)}
.bmap li:hover .bmap__b{transform:translateX(-3px);box-shadow:var(--shadow-1)}
.bmap__mid{background:var(--arc-ghost) center/contain no-repeat;
  min-height:44px}
@media (max-width:680px){
  .bmap__head{display:none}
  .bmap{gap:18px}
  .bmap li{grid-template-columns:minmax(0,1fr);gap:0}
  .bmap__a{border-radius:var(--r) var(--r) 0 0}
  .bmap__b{border-radius:0 0 var(--r) var(--r);border-top:0}
  .bmap__mid{display:none}
  .bmap li:hover .bmap__a,.bmap li:hover .bmap__b{transform:none}
}

/* ---------- method / ledger ---------- */
.ledger{border-top:1px solid var(--line)}
.ledger__row{display:grid;grid-template-columns:6.5rem minmax(0,1.05fr) minmax(0,1fr);
  gap:clamp(16px,3vw,40px);padding:clamp(24px,3vw,34px) 0;border-bottom:1px solid var(--line)}
@media (max-width:820px){.ledger__row{grid-template-columns:minmax(0,1fr);gap:10px}}
.ledger__t{font-size:.74rem;font-weight:700;letter-spacing:.1em;text-transform:uppercase;color:var(--aqua-dk);
  background:var(--aqua-100);border:1px solid var(--aqua-200);border-radius:99px;
  padding:.34rem .5rem;text-align:center;height:fit-content;white-space:nowrap}
@media (max-width:820px){.ledger__t{width:fit-content;padding:.34rem .9rem}}
.ledger__h{font-size:var(--step-1);color:var(--deep);letter-spacing:-.02em;margin-bottom:.4rem}
.ledger__gate{margin-top:.7rem;font-size:.86rem;color:var(--muted);display:flex;gap:.5rem;align-items:flex-start}
.ledger__gate b{color:var(--deep);font-weight:600}
.ledger__gate::before{content:"";width:8px;height:8px;border-radius:50%;background:var(--jade);flex:none;margin-top:.42rem}

/* ---------- split panel ---------- */
.split{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:clamp(18px,2.4vw,28px)}
@media (max-width:760px){.split{grid-template-columns:minmax(0,1fr)}}
.panel{border:1px solid var(--line);border-radius:var(--r-lg);padding:clamp(24px,3vw,36px);background:#fff;
  box-shadow:var(--shadow-1)}
.panel--aqua{border-color:var(--aqua-200);background:
  linear-gradient(150deg,var(--aqua-100) 0%,#F2FAF6 100%)}
.panel h3{margin-bottom:1rem}
.ticks{list-style:none;display:grid;gap:.85rem}
.ticks li{display:block;position:relative;padding-left:1.9rem;font-size:.98rem}
.ticks li b{color:var(--deep);font-weight:600}
.ticks li::before{content:"";position:absolute;left:0;top:.32em;width:1.18rem;height:1.18rem;border-radius:50%;
  background:var(--aqua-dk);
  -webkit-mask:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Ccircle cx='12' cy='12' r='11' fill='%23000' fill-opacity='.18'/%3E%3Cpath d='M18.5 8 10.4 16.1 5.5 11.6' fill='none' stroke='%23000' stroke-width='2.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/contain no-repeat;
  mask:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Ccircle cx='12' cy='12' r='11' fill='%23000' fill-opacity='.18'/%3E%3Cpath d='M18.5 8 10.4 16.1 5.5 11.6' fill='none' stroke='%23000' stroke-width='2.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/contain no-repeat}
.ticks--plain li::before{background:var(--deep-700)}

/* ---------- tables ---------- */
.grid table.tbl{min-width:0}
.tbl-scroll{overflow-x:auto;-webkit-overflow-scrolling:touch;border:1px solid var(--line);
  border-radius:var(--r);box-shadow:var(--shadow-1);background:#fff}
table.tbl{width:100%;border-collapse:collapse;font-size:.95rem;min-width:560px;background:#fff}
table.tbl caption{text-align:left;padding:1rem 1.15rem;font-size:.8rem;color:var(--deep);
  letter-spacing:.08em;text-transform:uppercase;font-weight:700;border-bottom:1px solid var(--line);
  background:var(--aqua-100)}
table.tbl th,table.tbl td{text-align:left;padding:.9rem 1.15rem;border-bottom:1px solid var(--line);vertical-align:top}
table.tbl thead th{background:var(--deep);color:#fff;font-weight:600;font-size:.8rem;
  letter-spacing:.07em;text-transform:uppercase;white-space:nowrap;border-bottom:0}
table.tbl thead th:first-child{border-radius:0}
table.tbl tbody tr{transition:background .2s ease}
table.tbl tbody tr:hover{background:var(--tint)}
table.tbl tbody tr:last-child td{border-bottom:0}
table.tbl td.num,table.tbl th.num{text-align:right;font-variant-numeric:tabular-nums;white-space:nowrap}
table.tbl .mark{color:var(--deep);font-weight:600}
.tbl-note{font-size:var(--step--1);color:var(--muted);margin-top:.9rem}
.tbl-note a{color:var(--muted)}
.tbl-note a:hover{color:var(--deep)}

/* ---------- honesty block ---------- */
.pledge{border:0;border-radius:var(--r-lg);background:#fff;overflow:hidden;box-shadow:var(--shadow-3)}
.pledge__hd{position:relative;overflow:hidden;color:#fff;
  background:
    radial-gradient(700px 300px at 90% -30%,rgba(119,199,173,.2),transparent 60%),
    linear-gradient(155deg,var(--deep) 0%,var(--deep-900) 100%);
  padding:clamp(24px,3vw,34px) clamp(24px,3.4vw,40px)}
.pledge__hd h2{color:#fff;font-size:var(--step-2);font-family:var(--font-display);font-weight:600}
.pledge__hd p{color:var(--ink-2);margin-top:.5rem;font-size:.98rem}
.pledge__bd{padding:clamp(24px,3.2vw,38px) clamp(24px,3.4vw,40px);display:grid;gap:1.15rem}
.pledge__row{display:grid;grid-template-columns:1.9rem 1fr;gap:.95rem;align-items:start}
.pledge__row .x{width:1.65rem;height:1.65rem;border-radius:50%;border:1.5px solid var(--aqua-200);
  color:var(--aqua-dk);font-weight:700;font-size:.95rem;line-height:1;
  display:grid;place-items:center;background:var(--aqua-100);margin-top:.1rem}
.pledge__row b{color:var(--deep);font-weight:600}

/* ---------- duo / bio layout ---------- */
.duo{display:grid;grid-template-columns:minmax(0,1fr) minmax(0,.72fr);gap:clamp(26px,4vw,64px);align-items:start}
@media (max-width:860px){.duo{grid-template-columns:minmax(0,1fr)}}
.creds{list-style:none;display:grid;gap:.55rem;margin-top:1.3rem;padding-top:1.3rem;border-top:1px solid var(--line)}
.creds li{display:flex;gap:.8rem;font-size:.95rem}
.creds li b{color:var(--deep);font-weight:600;flex:none;min-width:5.5rem}

/* ---------- quotes ---------- */
.quote{background:#fff;border:1px solid var(--line);border-radius:var(--r-lg);
  padding:clamp(26px,3.2vw,38px);display:flex;flex-direction:column;gap:1.3rem;
  position:relative;box-shadow:var(--shadow-1);
  transition:transform .3s ease,box-shadow .3s ease}
.quote:hover{transform:translateY(-4px);box-shadow:var(--shadow-2)}
.quote blockquote{margin:0;font-size:var(--step-0);line-height:1.66;color:var(--body)}
.quote blockquote::before{content:"\201C";display:block;font-family:var(--font-display);
  font-size:3.4rem;line-height:.6;color:var(--aqua);margin-bottom:1rem;height:.55em}
.quote figcaption{font-size:.9rem;color:var(--muted);margin-top:auto}
.quote__who{display:flex;align-items:center;gap:.95rem}
.quote__who .avatar{flex:none;width:46px;height:46px;border-radius:50%;
  background:linear-gradient(145deg,var(--deep),var(--deep-700));color:var(--aqua);
  display:grid;place-items:center;font-family:var(--font-display);font-size:1.25rem;font-weight:500;
  box-shadow:0 0 0 3px var(--aqua-100)}
.quote figcaption b{display:block;color:var(--deep);font-weight:600;font-size:.98rem}

.logos{display:flex;flex-wrap:wrap;gap:.6rem}
.logos li{list-style:none;border:1px solid var(--line);border-radius:99px;padding:.42rem 1rem;
  font-size:.88rem;color:var(--deep);background:#fff}

/* ---------- FAQ ---------- */
.faq{border-top:1px solid var(--line)}
.faq details{border-bottom:1px solid var(--line);interpolate-size:allow-keywords}
.faq summary{list-style:none;cursor:pointer;padding:clamp(18px,2.2vw,26px) 3rem clamp(18px,2.2vw,26px) 0;
  position:relative;font-size:var(--step-1);color:var(--deep);font-weight:500;letter-spacing:-.02em;line-height:1.35;
  transition:color .2s ease}
.faq summary:hover{color:var(--aqua-dk)}
.faq summary::-webkit-details-marker{display:none}
.faq summary::after{content:"";position:absolute;right:.3rem;top:50%;width:15px;height:15px;margin-top:-7.5px;
  background:var(--aqua-dk);transition:transform .28s ease;
  -webkit-mask:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 4v16M4 12h16' stroke='%23000' stroke-width='3' stroke-linecap='round'/%3E%3C/svg%3E") center/contain no-repeat;
  mask:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 4v16M4 12h16' stroke='%23000' stroke-width='3' stroke-linecap='round'/%3E%3C/svg%3E") center/contain no-repeat}
.faq details[open] summary::after{transform:rotate(45deg)}
.faq details::details-content{block-size:0;overflow:clip;
  transition:block-size .32s ease,content-visibility .32s allow-discrete}
.faq details[open]::details-content{block-size:auto}
.faq .ans{padding:0 3rem 1.7rem 0;max-width:72ch;color:var(--body)}
.faq .ans p+p{margin-top:.8rem}

/* ---------- CTA band ---------- */
.cta-band{position:relative;overflow:hidden;color:#fff;border-radius:var(--r-lg);
  background:
    radial-gradient(760px 340px at 88% -20%,rgba(119,199,173,.2),transparent 62%),
    linear-gradient(155deg,var(--deep) 0%,var(--deep-900) 100%);
  border:1px solid rgba(119,199,173,.25);box-shadow:var(--shadow-3);
  padding:clamp(34px,4.6vw,64px);
  display:grid;grid-template-columns:minmax(0,1fr) auto;gap:clamp(20px,3vw,44px);align-items:center}
.cta-band::after{content:"";position:absolute;right:-70px;bottom:-80px;width:340px;height:150px;
  background:var(--arc-ghost) center/contain no-repeat;opacity:.16;pointer-events:none}
@media (max-width:820px){.cta-band{grid-template-columns:minmax(0,1fr)}}
.cta-band h2{color:#fff;font-size:var(--step-2);font-family:var(--font-display);font-weight:600}
.cta-band p{color:var(--ink-2);margin-top:.7rem;max-width:52ch}
.cta-band__btns{display:flex;flex-wrap:wrap;gap:12px;position:relative;z-index:1}

/* ---------- forms ---------- */
.form{display:grid;gap:1.05rem}
.field{display:grid;gap:.4rem}
.field label{font-size:.86rem;font-weight:600;color:var(--deep);letter-spacing:.01em}
.field .req{color:var(--aqua-dk)}
.field{min-width:0}
.field input,.field select,.field textarea{min-width:0;max-width:100%;
  font:inherit;font-size:.98rem;color:var(--deep);background:#fff;
  border:1px solid var(--line-strong);border-radius:var(--r);padding:.75rem .9rem;width:100%;
  transition:border-color .18s ease,box-shadow .18s ease}
.field input:focus,.field select:focus,.field textarea:focus{
  outline:none;border-color:var(--aqua-dk);box-shadow:0 0 0 3.5px rgba(119,199,173,.3)}
.field textarea{min-height:120px;resize:vertical}
.form__row{display:grid;grid-template-columns:1fr 1fr;gap:1.05rem}
@media (max-width:620px){.form__row{grid-template-columns:minmax(0,1fr)}}
.form__note{font-size:var(--step--1);color:var(--muted)}
/* Both forms submit through fetch, so with scripting off the Send button does
   nothing at all — silently. Anyone in that state still needs a way to reach
   us, spelled out in plain text that needs no script to read. */
.nojs{border:1.5px solid var(--line-strong);border-left:3px solid var(--aqua-dk);
  background:var(--tint);padding:1rem 1.1rem;margin:0 0 1.25rem;border-radius:var(--r)}
.nojs p{margin:0;font-size:var(--step--1);color:var(--deep)}
.nojs a{color:var(--deep);font-weight:600}
.nojs p + p{margin-top:.45rem}
.form__status{font-size:.94rem;padding:.8rem 1rem;border-radius:var(--r);display:none}
.form__status.ok{display:block;background:var(--aqua-100);color:var(--deep);border:1px solid var(--aqua)}
.form__status.err{display:block;background:#FDF2F2;color:#8A2B2B;border:1px solid #E7C3C3}

.contact-list{list-style:none;display:grid;gap:1.15rem}
.contact-list li{display:grid;gap:.15rem;padding-bottom:1.15rem;border-bottom:1px solid var(--line)}
.contact-list li:last-child{border-bottom:0;padding-bottom:0}
.contact-list .k{font-size:.73rem;letter-spacing:.14em;text-transform:uppercase;color:var(--muted);font-weight:600}
.contact-list a{color:var(--deep);font-weight:600;text-decoration:none;font-size:clamp(1rem,.94rem + .3vw,1.18rem);letter-spacing:-.02em}
.contact-list a:hover{color:var(--aqua-dk)}

/* ---------- page hero (inner) ---------- */
.phero{position:relative;overflow:hidden;color:#fff;
  background:
    radial-gradient(820px 420px at 90% -20%,rgba(119,199,173,.16),transparent 62%),
    linear-gradient(165deg,var(--deep-900) 0%,var(--deep) 70%,var(--deep-700) 140%);
  padding:clamp(56px,7vw,96px) 0 clamp(44px,5.4vw,70px)}
.phero::after{content:"";position:absolute;right:-90px;top:50%;transform:translateY(-46%);
  width:min(44vw,560px);aspect-ratio:600/250;
  background:var(--arc-ghost) center/contain no-repeat;opacity:.12;pointer-events:none}
@media (max-width:900px){.phero::after{display:none}}
.phero>.wrap{position:relative;z-index:1}
.phero h1{color:#fff;max-width:20ch;font-weight:700}
.phero .lede{color:var(--ink-2);margin-top:1.2rem}
.crumb{font-size:.78rem;letter-spacing:.15em;text-transform:uppercase;color:var(--aqua);font-weight:600;
  margin-bottom:1.2rem;display:flex;align-items:center;gap:.6rem}
.crumb::before{content:"";width:17px;height:7px;flex:none;
  background:var(--arc-ghost) center/contain no-repeat}
.crumb a{color:var(--aqua)}
.phero .hero__cta{justify-content:flex-start;margin-top:2rem}

/* ---------- footer ---------- */
.site-foot{position:relative;overflow:hidden;
  background:
    radial-gradient(900px 420px at 8% 0%,rgba(119,199,173,.08),transparent 60%),
    linear-gradient(180deg,var(--deep-900) 0%,var(--deep-950) 100%);
  color:var(--ink-3);padding:clamp(58px,6.4vw,92px) 0 2.2rem;font-size:.95rem;
  border-radius:clamp(22px,3.4vw,44px) clamp(22px,3.4vw,44px) 0 0;
  margin-top:8px}
.site-foot::before{content:"";position:absolute;right:-110px;bottom:-70px;
  width:min(52vw,620px);aspect-ratio:600/250;
  background:var(--arc-ghost) center/contain no-repeat;opacity:.07;pointer-events:none}
.site-foot>.wrap{position:relative;z-index:1}
.foot-top{display:grid;grid-template-columns:minmax(0,.9fr) minmax(0,1.5fr);gap:clamp(30px,5vw,70px)}
@media (max-width:900px){.foot-top{grid-template-columns:minmax(0,1fr);gap:36px}}
.foot-brand img{width:210px;height:auto}
.foot-tag{color:var(--aqua);font-weight:600;font-size:1.05rem;margin-top:1.2rem;letter-spacing:-.01em}
.foot-desc{margin-top:.7rem;max-width:38ch;color:var(--ink-3);font-size:.92rem}
.foot-cols{display:grid;grid-template-columns:repeat(3,1fr);gap:clamp(20px,3vw,40px)}
@media (max-width:700px){.foot-cols{grid-template-columns:1fr 1fr}}
@media (max-width:460px){.foot-cols{grid-template-columns:minmax(0,1fr)}}
.foot-cols h2{color:#fff;font-size:.74rem;letter-spacing:.16em;text-transform:uppercase;margin-bottom:1.1rem;
  font-weight:600;font-family:var(--font-body);display:flex;align-items:center;gap:.55rem}
.foot-cols h2::before{content:"";width:14px;height:6px;flex:none;
  background:var(--arc-ghost) center/contain no-repeat}
.foot-cols a{display:block;text-decoration:none;color:var(--ink-3);padding:.3rem 0;transition:color .15s,transform .2s ease}
.foot-cols a:hover{color:var(--aqua);transform:translateX(2px)}
.foot-cols p{color:var(--ink-3);line-height:1.6}
.foot-cols p+p{margin-top:.9rem}
.foot-cols .dim{color:#7E979D;font-size:.88rem}
.foot-legal{margin-top:clamp(36px,5vw,60px);padding-top:1.6rem;border-top:1px solid rgba(255,255,255,.1);
  display:grid;gap:.9rem}
.foot-legal p{font-size:.84rem;color:#7E979D}
.disclaimer{max-width:80ch;line-height:1.6}

/* ---------- utilities ---------- */
.stack{display:grid;gap:1.2rem}
.stack-sm{display:grid;gap:.7rem}
.mt-1{margin-top:1rem}.mt-2{margin-top:1.8rem}.mt-3{margin-top:2.6rem}
.center{text-align:center}
.rule{height:1px;background:var(--line);border:0;margin:0}
.src{font-size:var(--step--1);color:var(--muted)}
.src a{color:var(--muted);text-underline-offset:3px}
.src a:hover{color:var(--deep)}

/* anchored sections clear the sticky header */
[id]{scroll-margin-top:108px}
@media (max-width:1040px){[id]{scroll-margin-top:90px}}

/* ---------- team ---------- */
.team{display:grid;grid-template-columns:minmax(0,1.35fr) minmax(0,1fr);gap:clamp(18px,2.6vw,32px);align-items:start}
@media (max-width:900px){.team{grid-template-columns:minmax(0,1fr)}}
.team-card{display:grid;grid-template-columns:minmax(0,.62fr) minmax(0,1fr);gap:clamp(20px,2.6vw,32px);
  border:1px solid var(--line);border-radius:var(--r-lg);padding:clamp(20px,2.4vw,28px);background:#fff;
  box-shadow:var(--shadow-1)}
@media (max-width:620px){.team-card{grid-template-columns:minmax(0,1fr)}}
.team-card__img{width:100%;height:auto;aspect-ratio:1;object-fit:cover;border-radius:var(--r);
  background:var(--tint-2);box-shadow:0 0 0 4px var(--aqua-100)}
.team-card__body h3{font-size:var(--step-1)}
.team-card__role{color:var(--aqua-dk);font-weight:600;font-size:.92rem;margin:.2rem 0 .9rem}
.team-card .creds{margin-top:1rem;padding-top:1rem}

/* Amber is reserved for the single conversion signal on each surface. */
.btn--whats{background:var(--amber);color:var(--deep-950);border-color:var(--amber)}
.btn--whats:hover{background:#E8B372;border-color:#E8B372}

/* ---------- file upload ---------- */
.hp{position:absolute;left:-9999px;width:1px;height:1px;overflow:hidden}
input[type=file]{position:absolute;width:1px;height:1px;opacity:0;overflow:hidden;
  clip:rect(0 0 0 0);clip-path:inset(50%);white-space:nowrap}
.filedrop{display:flex;flex-direction:column;align-items:center;gap:.3rem;text-align:center;
  border:1.5px dashed var(--line-strong);border-radius:var(--r);background:#fff;
  padding:1.5rem 1.1rem;cursor:pointer;transition:border-color .18s ease,background .18s ease}
.filedrop:hover,.filedrop.is-drag{border-color:var(--aqua-dk);background:var(--aqua-100)}
input[type=file]:focus-visible + .filedrop,
.filedrop:focus-within{border-color:var(--deep);box-shadow:0 0 0 3.5px rgba(119,199,173,.3)}
.filedrop__icon{color:var(--aqua-dk);display:flex}
.filedrop__text{font-size:.96rem;color:var(--body)}
.filedrop__text b{color:var(--deep);font-weight:600}
.filedrop__hint{font-size:.82rem;color:var(--muted)}
.filedrop__name{font-size:.86rem;color:var(--muted);margin-top:.35rem;
  max-width:100%;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}
.filedrop.has-file{border-style:solid;border-color:var(--aqua-dk);background:var(--aqua-100)}
.filedrop.has-file .filedrop__name{color:var(--deep);font-weight:600}

/* ---------- sticky mobile contact bar ---------- */
.mbar{position:fixed;left:0;right:0;bottom:0;z-index:150;display:none;
  gap:8px;padding:9px 12px calc(9px + env(safe-area-inset-bottom));
  background:rgba(8,30,36,.96);backdrop-filter:blur(10px);-webkit-backdrop-filter:blur(10px);
  border-top:1px solid rgba(119,199,173,.28)}
.mbar .btn{flex:1;padding:.72rem .6rem;font-size:.92rem}
.mbar .btn--wa2{background:var(--amber);color:var(--deep-950);border-color:var(--amber);flex:1.6}
.mbar .btn--call{background:transparent;color:#fff;border-color:rgba(255,255,255,.34)}
@media (max-width:760px){
  .mbar{display:flex}
  body{padding-bottom:70px}
}
@media print{.mbar{display:none}}

/* ---------- next steps — three dots on the bridge ---------- */
.steps{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:clamp(14px,2vw,24px);counter-reset:step}
.steps li{list-style:none;position:relative;padding-left:2.9rem;counter-increment:step}
.steps li::before{content:counter(step);position:absolute;left:0;top:-.1rem;
  width:2.1rem;height:2.1rem;border-radius:50%;display:grid;place-items:center;
  background:var(--aqua);color:var(--deep-950);font-weight:700;font-size:.92rem;
  font-family:var(--font-body);box-shadow:0 0 0 5px rgba(119,199,173,.16)}
.steps h3{font-size:1.05rem;margin-bottom:.3rem}
.steps p{font-size:.95rem}
.sec--deep .steps p{color:var(--ink-2)}

/* arc variant — the three steps stand on the bridge itself */
.steps-arc{position:relative}
.steps-arc__svg{display:block;width:100%;height:auto;overflow:visible}
.steps-arc__path{fill:none;stroke:rgba(119,199,173,.5);stroke-width:3.5;stroke-linecap:round}
.steps-arc__dot{fill:var(--aqua)}
.steps-arc__halo{fill:rgba(119,199,173,.16)}
.steps-arc__num{fill:var(--deep-950);font-family:var(--font-body);font-weight:700;font-size:26px}
@media (min-width:761px){
  .steps--arc{grid-template-columns:repeat(3,minmax(0,1fr));text-align:center;
    gap:0 clamp(14px,2vw,24px);margin-top:clamp(10px,1.6vw,18px)}
  .steps--arc li{padding-left:0}
  .steps--arc li::before{display:none}
  .steps--arc h3{font-size:var(--step-1)}
  .steps--arc p{max-width:34ch;margin-inline:auto}
}
@media (max-width:760px){
  .steps{grid-template-columns:minmax(0,1fr);gap:1.6rem}
  .steps-arc__svg{display:none}
  .steps--arc li{padding-left:2.9rem}
}

/* ---------- capability lists ---------- */
.caps{list-style:none;display:grid;grid-template-columns:repeat(3,minmax(0,1fr));
  gap:.6rem clamp(16px,2.4vw,32px);border-top:1px solid var(--line);padding-top:1.5rem}
@media (max-width:820px){.caps{grid-template-columns:repeat(2,minmax(0,1fr))}}
@media (max-width:520px){.caps{grid-template-columns:minmax(0,1fr)}}
.caps li{position:relative;padding-left:1.35rem;font-size:.98rem;color:var(--deep)}
.caps li::before{content:"";position:absolute;left:0;top:.5em;width:12px;height:6px;
  background:var(--arc-ghost) center/contain no-repeat}
.svc{padding:clamp(40px,4.8vw,66px) 0;border-top:1px solid var(--line)}
.svc:first-of-type{border-top:0}
.svc__hd{display:grid;grid-template-columns:minmax(0,1fr) minmax(0,.9fr);
  gap:clamp(20px,3vw,48px);align-items:baseline;margin-bottom:clamp(20px,2.4vw,30px)}
@media (max-width:820px){.svc__hd{grid-template-columns:minmax(0,1fr);gap:12px}}

/* ---------- engagement roll ---------- */
/* Engagement roll — names set as type, not as invented logo marks.
   Real logo files need each organisation's permission; until then a
   typographic index is the honest treatment and reads better anyway. */
.roll{margin-top:clamp(38px,4.6vw,64px);padding-top:clamp(26px,3vw,38px);
  border-top:1px solid var(--line)}
.roll__list{list-style:none;display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:0;margin-top:.4rem;border-top:1px solid var(--line)}
.roll__list li{
  font-family:var(--font-display);font-weight:500;
  font-size:clamp(1.02rem,.94rem + .34vw,1.24rem);
  line-height:1.25;letter-spacing:-.005em;color:var(--deep);
  padding:clamp(16px,1.9vw,22px) clamp(14px,1.6vw,22px) clamp(16px,1.9vw,22px) 0;
  border-bottom:1px solid var(--line);
  display:flex;align-items:flex-start;gap:.7rem;min-width:0;
  transition:color .2s ease}
.roll__list li:hover{color:var(--aqua-dk)}
.roll__list li::before{
  content:"";flex:none;width:12px;height:6px;margin-top:.48em;
  background:var(--arc-ghost) center/contain no-repeat}
@media (max-width:900px){.roll__list{grid-template-columns:repeat(2,minmax(0,1fr))}}
@media (max-width:520px){.roll__list{grid-template-columns:minmax(0,1fr)}}

/* long unbreakable strings (email addresses) must not blow out grid tracks */
.duo>*,.split>*,.grid>*,.team>*{min-width:0}
.contact-list a,.contact-list p{overflow-wrap:anywhere}
.contact-list{min-width:0}

/* ---------- insights ---------- */
.plist-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:clamp(20px,2.6vw,34px)}
@media (max-width:980px){.plist-grid{grid-template-columns:repeat(2,minmax(0,1fr))}}
@media (max-width:640px){.plist-grid{grid-template-columns:minmax(0,1fr)}}

.pcard{display:flex;flex-direction:column;gap:1rem;min-width:0;
  transition:transform .3s cubic-bezier(.22,.61,.36,1)}
.pcard:hover{transform:translateY(-4px)}
.pcard--lead{grid-column:1/-1;display:grid;grid-template-columns:minmax(0,1.15fr) minmax(0,1fr);
  gap:clamp(20px,3vw,44px);align-items:center;
  padding-bottom:clamp(22px,3vw,34px);border-bottom:1px solid var(--line);margin-bottom:.4rem}
.pcard--lead:hover{transform:none}
@media (max-width:820px){.pcard--lead{grid-template-columns:minmax(0,1fr)}}
/* <picture> wraps the hero images so a WebP can be offered ahead of the PNG.
   display:contents keeps it out of the box tree, so every existing
   `.pcard__img img` / `.post__hero img` rule still matches unchanged. */
picture{display:contents}
.pcard__img{display:block;border-radius:var(--r);overflow:hidden;background:var(--tint-2);
  border:1px solid var(--line);box-shadow:var(--shadow-1);
  transition:box-shadow .3s ease}
.pcard:hover .pcard__img{box-shadow:var(--shadow-2)}
.pcard__img img{width:100%;height:auto;aspect-ratio:16/9;object-fit:cover;
  transition:transform .4s cubic-bezier(.22,.61,.36,1)}
.pcard:hover .pcard__img img{transform:scale(1.03)}
.pcard__meta{display:flex;align-items:center;gap:.75rem;flex-wrap:wrap;
  font-size:.8rem;color:var(--muted);margin-bottom:.6rem}
.tag{display:inline-block;background:var(--aqua-100);color:var(--aqua-dk);border-radius:99px;
  padding:.22rem .7rem;font-size:.72rem;font-weight:700;letter-spacing:.06em;text-transform:uppercase;
  font-family:var(--font-body)}
.pcard h2,.pcard h3{font-size:var(--step-1);line-height:1.22;font-family:var(--font-body);font-weight:600;letter-spacing:-.02em}
.pcard--lead h2,.pcard--lead h3{font-size:var(--step-2);font-family:var(--font-display);font-weight:600;letter-spacing:-.01em}
.pcard h3 a,.pcard h2 a{text-decoration:none;color:var(--deep);background-image:linear-gradient(var(--aqua),var(--aqua));
  background-size:0 2px;background-repeat:no-repeat;background-position:0 100%;transition:background-size .28s ease}
.pcard h3 a:hover,.pcard h2 a:hover{background-size:100% 2px}
.pcard__dek{margin-top:.6rem;color:var(--body);font-size:.97rem}

/* ---------- post ---------- */
.post__head{position:relative;overflow:hidden;color:#fff;
  background:
    radial-gradient(820px 420px at 88% -20%,rgba(119,199,173,.14),transparent 62%),
    linear-gradient(165deg,var(--deep-900) 0%,var(--deep) 75%,var(--deep-700) 150%);
  padding:clamp(46px,6vw,84px) 0 clamp(30px,4vw,52px)}
.post__head h1{color:#fff;max-width:22ch;font-weight:700}
.post__head .lede{color:var(--ink-2);margin-top:1.1rem}
.post__head .crumb a{color:var(--aqua)}
.post__meta{margin-top:1.5rem;font-size:.85rem;color:var(--ink-3);letter-spacing:.02em}
.post__hero{margin:0;background:linear-gradient(180deg,var(--deep) 0 50%,transparent 50% 100%)}
.post__hero img{width:100%;height:auto;border-radius:var(--r);border:1px solid rgba(255,255,255,.12);display:block;
  box-shadow:var(--shadow-3)}
.post__body{max-width:min(72ch,100%);padding-top:clamp(34px,4vw,56px);font-size:1.06rem;line-height:1.72}
.post__body>*+*{margin-top:1.15rem}
.post__body h2{font-size:var(--step-2);margin-top:2.4rem}
.post__body h3{font-size:var(--step-1);margin-top:1.9rem}
.post__body ul,.post__body ol{padding-left:1.15rem;display:grid;gap:.55rem}
.post__body li{padding-left:.25rem}
.post__body a{color:var(--deep);text-underline-offset:3px;text-decoration-color:var(--aqua)}
.post__body strong{color:var(--deep);font-weight:600}
.post__body blockquote{margin:1.9rem 0;padding:0 0 0 1.35rem;border-left:3px solid var(--aqua);
  font-size:1.14rem;line-height:1.55;color:var(--deep);font-family:var(--font-display)}
.post__body .keyfact{background:var(--aqua-100);border:1px solid var(--aqua-200);border-left:3px solid var(--aqua-dk);
  border-radius:var(--r);padding:clamp(18px,2.2vw,26px);margin:2rem 0}
.post__body .keyfact p{font-size:1rem}
.post__body .keyfact h3{margin-top:0;font-size:1.02rem}
.post__body .sources{margin-top:2.6rem;padding-top:1.4rem;border-top:1px solid var(--line);
  font-size:.88rem;color:var(--muted)}
.post__body .sources a{color:var(--muted)}
.post__body .sources a:hover{color:var(--deep)}
.post__body .sources ul{padding-left:1.05rem;gap:.4rem;margin-top:.6rem}
.post__cta{margin-top:clamp(40px,5vw,72px)}
.post__more{padding:clamp(46px,6vw,80px) 0 clamp(58px,7.5vw,104px)}
.post__more .pcard h3{font-size:1.05rem}

/* Editorial public-site refinement. Brand artwork and fonts remain unaltered. */
:root{
  --deep:#174450;--deep-900:#0E2E38;--deep-950:#0E2E38;
  --paper:#FDFDFB;--tint:#F3F8F5;--tint-2:#E8F1ED;
  --body:#34545D;--muted:#526B72;--line:#D6D9DB;--line-strong:#B4C6C6;
  --r:12px;--r-lg:16px;--wrap:1320px;--gut:clamp(22px,4.5vw,64px);
  --shadow-1:none;--shadow-2:0 14px 32px -18px rgb(23 68 80 / 18%);
  --shadow-3:0 20px 45px -24px rgb(23 68 80 / 18%);
}
body{font-size:16px;line-height:1.7}
h1,h2,h3,h4,.lede{letter-spacing:normal}
h2{font-size:clamp(34px,3.5vw,50px);font-weight:600;line-height:1.12}
h3{line-height:1.35}
.lede{font-size:clamp(17px,1.5vw,20px);line-height:1.65}
.eyebrow{font-size:11px;letter-spacing:.2em;gap:11px;margin-bottom:22px;color:var(--jade)}
.eyebrow::before{width:6px;height:6px;margin-top:5px;background:var(--aqua);border-radius:50%}
.site-head{background:rgb(255 255 255 / 96%);border-bottom:1px solid var(--line)}
.site-head::before{display:none}
.site-head__in{min-height:104px;gap:28px}
.brand{flex-shrink:0;padding-block:14px}
.brand img{width:144px}
.nav{gap:23px;flex-wrap:nowrap}
.nav__link{font-size:13px;min-height:44px;display:flex;align-items:center}
.nav__link::after{bottom:5px}
.head-cta{gap:12px}
.head-cta .btn{font-size:12px;padding:12px 18px;min-height:44px}
.head-cta .btn--wa{border:0;padding-inline:4px}
.head-cta .btn--whats{background:var(--deep);color:#fff;border-color:var(--deep)}
.btn{min-height:46px;border-radius:999px;box-shadow:none;font-weight:500}
.btn--lg{padding:17px 24px;font-size:14px;gap:26px;min-height:54px}
.btn--solid:hover{background:var(--deep-900);box-shadow:none}
.btn--aqua:hover{box-shadow:none}
.btn span[aria-hidden]{font-size:20px;line-height:1}
.text-link{display:inline-flex;align-items:center;justify-content:space-between;gap:24px;min-height:44px;color:var(--deep);font-size:14px;font-weight:500;text-decoration:none;border-bottom:1px solid var(--line-strong);padding:8px 0}
.text-link span{font-size:20px;transition:transform .2s}
.text-link:hover{color:var(--jade);border-color:var(--jade)}
.text-link:hover span{transform:translate(2px,-2px)}
.sec{padding-block:clamp(70px,8vw,112px)}
.sec--tint{background:var(--tint)}
.sec--deep{background:var(--deep)}
.sec--tint::after,.sec--deep::after{display:none}
.sec-head{grid-template-columns:1.2fr 1fr;gap:60px;margin-bottom:44px}
.sec-head>.lede{max-width:43ch;justify-self:end}
.sec-head .eyebrow{margin-bottom:18px}
.card,.panel,.quote,.team-card{box-shadow:none}
.card{padding:30px;background:#fff}
.card:hover{box-shadow:var(--shadow-2);transform:translateY(-3px)}
.card::after{display:none}
.card__ic{background:var(--tint);border-radius:50%;width:50px;height:50px;color:var(--deep)}
.card__ic svg{stroke-width:1.7}
.quote{margin:0}
.quote:hover{transform:none;box-shadow:none}
.quote blockquote::before{font-size:64px;color:var(--jade);font-weight:600}
.quote__who .avatar{background:var(--mist);color:var(--deep);box-shadow:none}
.cta-band{background:var(--deep);box-shadow:none;border:0}
.cta-band::after{display:none}
.cta-band h2{font-size:clamp(28px,2.8vw,38px)}
.foot-tag{font-family:var(--font-display);font-size:23px;font-weight:600}
.site-foot{border-radius:0;margin:0;background:var(--deep-900);padding-top:70px}
.site-foot::before{display:none}
.foot-brand img{width:180px}
.foot-cols h2::before{display:none}
.foot-cols a{padding-block:8px;font-size:13px}
.foot-cols p{font-size:13px}
.foot-cols .dim,.foot-legal p{color:#A6BDC2}
.foot-legal p{font-size:11px;max-width:110ch}
.foot-desc{font-size:13px}
.foot-cols{gap:24px}
.mbar{background:var(--deep-900)}
.mbar .btn{min-height:44px;font-size:13px}
.mobile-nav{max-height:calc(100dvh - 90px);overflow-y:auto;overscroll-behavior:contain}
html.js .rv{transform:translateY(12px);transition-duration:.45s;transition-delay:0ms}

/* A clear first impression: message on paper, connected disciplines on cyan. */
.hero--editorial{padding:54px 0 60px;text-align:left;background:var(--paper);color:var(--deep);overflow:visible}
.hero--editorial .hero__in{display:grid;grid-template-columns:minmax(0,1.14fr) minmax(0,1fr);gap:52px;align-items:center}
.hero__copy{padding-block:18px;min-width:0}
.hero--editorial .eyebrow{justify-content:flex-start;color:var(--jade);margin-bottom:24px}
.hero--editorial h1{font-size:clamp(52px,5.65vw,82px);line-height:1.025;font-weight:600;letter-spacing:-.025em;color:var(--deep);max-width:12ch}
.hero--editorial h1 em{color:var(--jade);font-weight:600}
.hero--editorial .lede{color:var(--body);font-size:17px;max-width:44ch;margin-top:25px;line-height:1.75}
.hero--editorial .hero__cta{justify-content:flex-start;gap:18px 26px;margin-top:30px;align-items:center}
.hero--editorial .hero__cta .text-link{border:0}
.hero__micro{font-size:11px;color:var(--muted);margin-top:22px}
.approach-card{scroll-margin-top:108px;align-self:center;min-width:0;padding:34px;background:var(--deep);border:1px solid var(--deep);border-radius:16px;color:#fff}
.approach-card__eyebrow{margin:0;color:#BFD5D8;font-size:10px;font-weight:500;letter-spacing:.14em;text-transform:uppercase}
.approach-card__title{margin:28px 0 30px;font-family:var(--font-display);font-size:clamp(30px,2.7vw,39px);line-height:1.2;letter-spacing:-.015em;color:#fff}
.approach-card__title em{color:var(--aqua);font-weight:500}
.approach-card__disciplines{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));list-style:none;padding:0;margin:0;border-top:1px solid rgb(191 213 216 / 28%)}
.approach-card__disciplines li{display:flex;align-items:center;gap:13px;min-height:69px;margin:0;border-bottom:1px solid rgb(191 213 216 / 28%);font-size:16px;line-height:1.35;font-weight:500}
.approach-card__disciplines li:nth-child(even){padding-left:24px;border-left:1px solid rgb(191 213 216 / 28%)}
.approach-card__disciplines li>span:first-child{color:var(--aqua);font-size:10px;font-weight:400;font-variant-numeric:tabular-nums}
.approach-card__outcome{display:flex;align-items:center;justify-content:space-between;gap:16px;margin-top:30px;padding:22px 24px;background:var(--mist);border-radius:10px;color:var(--deep)}
.approach-card__outcome strong{display:block;font-family:var(--font-display);font-size:30px;line-height:1.1;font-weight:600;letter-spacing:-.02em}
.approach-card__outcome span{display:block;margin-top:7px;font-size:12px;line-height:1.5;color:var(--deep)}
.approach-card__outcome img{flex:0 0 auto;width:64px;height:auto}
@media(max-width:1040px){.approach-card{padding:28px}.approach-card__disciplines li{font-size:15px;gap:10px}.approach-card__disciplines li:nth-child(even){padding-left:18px}}
@media(max-width:820px){.approach-card{width:100%;max-width:560px;justify-self:center;padding:32px}.approach-card__title{font-size:36px}.approach-card__disciplines li{font-size:16px}}
@media(max-width:480px){.approach-card{padding:24px}.approach-card__title{font-size:clamp(26px,7.3vw,34px);margin-block:24px}.approach-card__disciplines li{min-height:64px;font-size:15px;gap:9px}.approach-card__disciplines li:nth-child(even){padding-left:15px}.approach-card__outcome{margin-top:24px;padding:20px}.approach-card__outcome strong{font-size:28px}.approach-card__outcome img{width:52px}}
@media(max-width:360px){.approach-card{padding:20px}.approach-card__disciplines li{font-size:14px;gap:8px}.approach-card__disciplines li:nth-child(even){padding-left:12px}.approach-card__outcome{padding:18px}.approach-card__outcome img{width:42px}.approach-card__outcome span{font-size:11px}}

.principles{border-block:1px solid var(--line);background:#fff}
.principles__in{display:grid;grid-template-columns:1.45fr 1fr 1fr 1.15fr;align-items:center;gap:30px;padding-block:30px}
.principles__in>p{font-size:12px;line-height:1.7;color:var(--muted)}
.principles__in>p strong{font-weight:500;color:var(--deep)}
.principles__in>div{display:flex;gap:13px;align-items:flex-start}
.principles__in>div>span{font-size:10px;color:var(--jade);margin-top:5px}
.principles__in>div p{font-size:14px;color:var(--deep);font-weight:500}
.principles small{display:block;font-size:10px;font-weight:400;color:var(--muted);margin-top:3px}

/* Home page rhythm: service index, method, lived problems, handover, evidence. */
.home-services .g-3{gap:18px}
.home-services .card{min-height:270px;gap:12px;background:#fff;padding:27px 28px}
.home-services .card__ic{margin-bottom:14px}
.home-services .card__no{position:absolute;right:28px;top:39px;font-size:11px;color:var(--muted);font-weight:400}
.home-services .card__no::after{display:none}
.home-services .card h3{font-size:18px;font-weight:500;max-width:23ch}
.home-services .card>p:not(.card__no){font-size:13px;line-height:1.7;max-width:34ch}
.home-services .card a.card__link{font-size:11px;border-top:1px solid var(--line);padding-top:18px;margin-top:auto;justify-content:space-between}
.home-services .card a.card__link::after{font-size:20px}
.home-method .bmap__head{color:#C0D6DA;font-size:10px;letter-spacing:.1em;margin-bottom:20px;grid-template-columns:1fr 42px 1fr}
.home-method .bmap__head span:last-child{text-align:left}
.home-method .bmap{gap:0;border-top:1px solid rgb(255 255 255 / 22%)}
.home-method .bmap li{grid-template-columns:1fr 42px 1fr;gap:16px;border-bottom:1px solid rgb(255 255 255 / 22%);padding:20px 0}
.home-method .bmap__a,.home-method .bmap__b{background:none;border:0;border-radius:0;font-size:14px;padding:0;transform:none;box-shadow:none}
.home-method .bmap__a{color:#fff;font-weight:500}
.home-method .bmap__b{color:#BFD5D8}
.home-method .bmap__mid{background:none;display:grid;place-items:center;min-height:0;color:var(--aqua)}
.home-method .bmap__mid::after{content:'→';font-size:23px;font-weight:400}
.home-problems>.wrap{display:grid;grid-template-columns:.85fr 1.15fr;gap:80px}
.home-problems .sec-head{display:block;margin:0}
.home-problems .sec-head .lede{margin-top:25px;font-size:17px;max-width:32ch}
.home-problems .plist{border-top:0;margin-top:-18px}
.home-problems .plist li{padding:21px 0;gap:21px}
.home-problems .plist li:hover{background:transparent}
.home-problems .plist .n{font-family:var(--font-body);font-size:11px;width:18px;font-weight:400}
.home-problems .plist p{font-size:16px;line-height:1.6}
.home-process .steps--editorial{gap:36px;border-top:1px solid var(--line);padding-top:32px}
.steps--editorial li{padding:0}
.steps--editorial li::before{position:static;box-shadow:none;width:38px;height:38px;font-size:12px;background:var(--deep);color:#fff;margin-bottom:24px}
.steps--editorial h3{font-family:var(--font-display);font-size:30px;font-weight:600;margin-bottom:14px}
.steps--editorial p{font-size:14px;line-height:1.75;max-width:34ch}
.home-pledge{padding-bottom:0}
.home-pledge .pledge{display:grid;grid-template-columns:.85fr 1.15fr;border:1px solid var(--line);border-radius:16px;box-shadow:none}
.home-pledge .pledge__hd{padding:44px;background:var(--deep);display:flex;flex-direction:column;justify-content:center}
.home-pledge .pledge__hd h2{font-size:43px;line-height:1.13;max-width:10ch}
.home-pledge .pledge__hd .eyebrow{font-size:10px}
.home-pledge .pledge__bd{padding:36px;gap:0}
.home-pledge .pledge__row{padding:17px 0;border-bottom:1px solid var(--line);gap:10px;grid-template-columns:24px 1fr}
.home-pledge .pledge__row:first-child{padding-top:0}.home-pledge .pledge__row:last-child{border:0;padding-bottom:0}
.home-pledge .pledge__row p{font-size:13px;line-height:1.7}
.home-pledge .pledge__row .x{width:20px;height:20px;font-size:14px;background:none;border:0;font-weight:400}
.home-proof .quote{padding:36px;background:var(--tint);border:0;gap:28px}
.home-proof .quote blockquote{font-size:15px;line-height:1.85}
.home-proof .quote figcaption{font-size:11px}.home-proof .quote figcaption b{font-size:13px}
.home-proof .g-2{grid-template-columns:1.2fr 1fr}
.home-proof .roll{margin-top:52px}.home-proof .roll__list{border:0;column-gap:25px}
.home-proof .roll__list li{font-family:var(--font-display);font-size:19px;padding:18px 0;border:0}
.home-proof .roll__list li::before{display:none}
.home-insights .sec-head{align-items:end}
.home-insights .sec-head>.text-link{justify-self:end}
.home-insights .pcard{gap:20px}
.home-insights .pcard__img{border:0;box-shadow:none}
.home-insights .pcard h3{font-size:20px;font-family:var(--font-display);line-height:1.35}
.home-insights .pcard__dek{font-size:13px}
.home-insights .pcard__meta{font-size:10px}
.home-insights .tag{font-size:9px;background:transparent;border:1px solid var(--line-strong);color:var(--deep);font-weight:500;padding:4px 8px;letter-spacing:0}
.home-faq>.wrap{display:grid;grid-template-columns:.85fr 1.15fr;gap:80px}
.home-faq .sec-head{display:block}.home-faq .sec-head .lede{font-size:16px;max-width:30ch;margin-top:25px}
.home-faq .faq summary{font-size:16px;line-height:1.6;padding-block:22px;font-weight:500}
.home-faq .faq .ans{font-size:14px;line-height:1.75}
.home-careers{border-top:1px solid var(--line);padding:52px 0}
.home-careers__in{display:grid;grid-template-columns:1.2fr 1fr;gap:80px;align-items:center}
.home-careers h2{font-size:34px}.home-careers p:not(.eyebrow){font-size:14px;max-width:40ch}
.home-careers .text-link{margin-top:18px}.home-careers .eyebrow{margin-bottom:14px}
.home-contact{background:var(--deep);color:#fff;padding:72px 0 80px}
.home-contact .eyebrow{color:var(--aqua)}
.home-contact__in{display:grid;grid-template-columns:1.4fr .8fr;gap:80px;align-items:center}
.home-contact h2{color:#fff;font-size:clamp(40px,4.8vw,64px);font-weight:600;line-height:1.08}
.home-contact h2 em{color:var(--aqua)}
.home-contact p:not(.eyebrow){color:#C0D6DA;font-size:14px;line-height:1.8;margin-top:24px}
.home-contact__actions{display:flex;flex-direction:column;gap:16px;align-items:stretch;max-width:300px;justify-self:end;width:100%}
.home-contact__actions>a:not(.btn){display:flex;justify-content:space-between;align-items:center;padding:9px 0;border-bottom:1px solid rgb(255 255 255 / 22%);font-size:13px;text-decoration:none}
.home-contact__actions>a:hover{text-decoration:underline;text-underline-offset:5px}
.home-contact__actions>.btn{justify-content:space-between}

@media(min-width:1041px) and (max-width:1200px){.site-head__in{gap:20px}.nav{gap:15px}.head-cta .btn--wa{display:none}.hero--editorial .hero__in{gap:32px}.hero--editorial h1{font-size:66px}.hero--editorial .hero__cta{gap:8px 20px}.hero--editorial .hero__cta .btn{padding-inline:20px;font-size:13px}}
@media(max-width:1040px){.site-head__in{min-height:84px}.brand img{width:132px}.hero--editorial{padding-top:35px}.hero--editorial .hero__in{gap:30px;grid-template-columns:1fr 1fr}.hero--editorial h1{font-size:60px}.hero--editorial .lede{font-size:15px}.hero--editorial .btn--lg{font-size:12px;padding-inline:18px;gap:10px}.principles__in{gap:16px;grid-template-columns:1.2fr 1fr 1fr 1.1fr}.principles small{font-size:9px}.home-problems>.wrap,.home-faq>.wrap{gap:40px}.home-pledge .pledge__hd{padding:30px}.home-pledge .pledge__hd h2{font-size:36px}.home-pledge .pledge__bd{padding:28px}}
@media(max-width:820px){.hero--editorial .hero__in{grid-template-columns:1fr}.hero--editorial .hero__copy{padding:8px 0}.hero--editorial h1{font-size:clamp(54px,9vw,72px);max-width:14ch}.hero--editorial .lede{max-width:50ch;font-size:17px}.hero--editorial .hero__cta .btn{font-size:14px;padding-inline:24px;gap:22px}.hero--editorial .hero__cta{gap:12px 25px}.principles__in{grid-template-columns:repeat(3,1fr);padding-block:24px;gap:25px 14px}.principles__in>p{grid-column:1/-1;padding-bottom:20px;border-bottom:1px solid var(--line);font-size:14px}.principles__in>p br{display:none}.principles__in>p strong{margin-left:5px}.principles small{font-size:10px}.sec-head{grid-template-columns:1fr;gap:20px}.sec-head>.lede{justify-self:start;max-width:50ch}.home-problems>.wrap,.home-faq>.wrap{grid-template-columns:1fr;gap:35px}.home-problems .sec-head .lede,.home-faq .sec-head .lede{max-width:50ch}.home-pledge .pledge{grid-template-columns:1fr}.home-pledge .pledge__hd h2{max-width:none}.home-proof .g-2{grid-template-columns:1fr}.home-insights .sec-head>.text-link{justify-self:start}.home-careers__in,.home-contact__in{grid-template-columns:1fr;gap:30px}.home-contact__actions{justify-self:start}.home-contact{padding-block:60px}.home-careers__in{gap:25px}.home-proof .roll__list{grid-template-columns:repeat(2,minmax(0,1fr))}.home-process .steps--editorial{gap:30px}.foot-top{gap:40px}.foot-cols{grid-template-columns:repeat(3,minmax(0,1fr))}}
@media(max-width:640px){.hero--editorial{padding:24px 0 32px}.hero--editorial h1{font-size:54px}.hero--editorial .eyebrow{font-size:10px}.hero--editorial .lede{font-size:15px;margin-top:23px}.hero--editorial .hero__cta{margin-top:23px}.hero__micro{margin-top:12px}.principles__in{grid-template-columns:1fr;gap:17px}.principles__in>p{font-size:12px}.principles__in>p br{display:block}.principles__in>p strong{margin:0}.principles__in>div{gap:15px}.principles__in>div p{display:flex;flex-wrap:wrap;align-items:baseline;gap:6px 12px;font-size:13px}.principles small{font-size:11px;margin:0}.home-services .card{min-height:248px;padding:26px}.home-services .card h3{font-size:20px}.home-services .card>p:not(.card__no){font-size:14px;max-width:none}.home-services .card__ic{margin-bottom:6px}.home-method .bmap__head{display:none}.home-method .bmap li{grid-template-columns:1fr;gap:8px;padding:22px 0}.home-method .bmap__mid{display:none}.home-method .bmap__b::before{content:'→';color:var(--aqua);margin-right:10px;font-size:18px}.home-method .bmap__a,.home-method .bmap__b{font-size:14px}.home-problems .plist li{padding-block:18px}.home-problems .plist p{font-size:15px}.steps--editorial li{padding-left:0}.home-pledge .pledge__hd{padding:30px 26px}.home-pledge .pledge__bd{padding:26px}.home-proof .quote{padding:30px 26px}.home-proof .quote blockquote{font-size:14px}.home-proof .roll__list{gap:8px 18px}.home-proof .roll__list li{font-size:16px;line-height:1.4;padding-block:8px}.home-contact h2{font-size:43px}.home-contact p:not(.eyebrow){font-size:13px}.home-contact .eyebrow{font-size:9px}.home-careers h2{font-size:32px}.home-faq .faq summary{font-size:15px;padding-right:35px}.foot-cols{grid-template-columns:repeat(2,minmax(0,1fr))}.foot-cols>div:last-child{grid-column:1/-1}.foot-cols h2{font-size:10px}.foot-legal p{font-size:10px}.site-foot{padding-top:50px}body{padding-bottom:calc(70px + env(safe-area-inset-bottom))}}
@media(max-width:360px){.hero--editorial h1{font-size:47px}.hero--editorial .btn--lg{font-size:12px;gap:12px;padding-inline:18px}}
@media(prefers-reduced-motion:reduce){html.js .rv{opacity:1;transform:none;transition:none}}
@media print{.approach-card,.site-head,.site-foot,.hero__cta,.home-contact__actions,.mbar{display:none}html.js .rv{opacity:1;transform:none}.hero--editorial .hero__in{display:block}body{padding-bottom:0}}
/* Public interior pages — quiet editorial surfaces in the approved brand.
   Appended after the shared brand system. Header, footer and home stay global. */

body:not(.page-home) .phero,
body:not(.page-home) .post__head {
  background: #F8FAF9;
  color: #174450;
  border-bottom: 1px solid #D6D9DB;
  padding: clamp(62px, 7.5vw, 112px) 0 clamp(48px, 6.5vw, 88px);
}

body:not(.page-home) .phero::after {
  inset: 0 0 0 auto;
  width: 24%;
  height: 100%;
  aspect-ratio: auto;
  transform: none;
  background: var(--arc-ghost) left bottom / 200vw auto no-repeat;
  opacity: .1;
}

body:not(.page-home) .phero h1,
body:not(.page-home) .post__head h1 {
  color: #174450;
  font-size: clamp(2.6rem, 1.6rem + 3.3vw, 4.25rem);
  font-weight: 600;
  line-height: 1.09;
  letter-spacing: -.025em;
  max-width: 22ch;
}

body:not(.page-home) .phero h1 em,
body:not(.page-home) .post__head h1 em {
  color: #2E7D5F;
}

body:not(.page-home) .phero .lede,
body:not(.page-home) .post__head .lede {
  color: #33474C;
  font-size: clamp(1.08rem, .96rem + .55vw, 1.3rem);
  line-height: 1.65;
  max-width: 60ch;
  margin-top: 1.6rem;
}

body:not(.page-home) .phero .crumb,
body:not(.page-home) .phero .eyebrow,
body:not(.page-home) .post__head .crumb,
body:not(.page-home) .post__head .crumb a {
  color: #2E7D5F;
  font-size: .75rem;
  letter-spacing: .19em;
  margin-bottom: 1.75rem;
  line-height: 1.6;
}

body:not(.page-home) .crumb::before {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #77C7AD;
}

body:not(.page-home) .phero .hero__cta {
  margin-top: 2.25rem;
  gap: 12px;
}

body:not(.page-home) .phero .btn--aqua,
body:not(.page-home) .phero .btn--whats {
  background: #174450;
  color: #FFF;
  border-color: #174450;
  box-shadow: none;
}

body:not(.page-home) .phero .btn--aqua:hover,
body:not(.page-home) .phero .btn--whats:hover {
  background: #0E2E38;
  border-color: #0E2E38;
}

body:not(.page-home) .phero .btn--onDark {
  color: #174450;
  background: transparent;
  border-color: #A4B5B7;
  box-shadow: none;
}

body:not(.page-home) .phero .btn--onDark:hover {
  background: #DFF3ED;
  border-color: #174450;
  color: #174450;
}

body:not(.page-home) .sec--tint {
  background: #F4F9F7;
}

body:not(.page-home) .sec--tint::after,
body:not(.page-home) .sec--deep::after {
  display: none;
}

body:not(.page-home) .sec--deep {
  background: #174450;
}

body:not(.page-home) .sec-head {
  margin-bottom: clamp(32px, 4.5vw, 62px);
}

body:not(.page-home) .sec-head h2 {
  line-height: 1.16;
}

body:not(.page-home) .card,
body:not(.page-home) .panel,
body:not(.page-home) .team-card,
body:not(.page-home) .quote {
  border-color: #D6D9DB;
  border-radius: 14px;
  box-shadow: none;
  padding: clamp(24px, 3vw, 38px);
}

body:not(.page-home) .card {
  gap: 1.1rem;
  transition: border-color .2s ease, background-color .2s ease;
}

body:not(.page-home) .card::after {
  display: none;
}

body:not(.page-home) .card:hover,
body:not(.page-home) .quote:hover {
  transform: none;
  box-shadow: none;
  border-color: #77C7AD;
}

body:not(.page-home) .card__no {
  color: #2E7D5F;
  font-size: .75rem;
  margin-bottom: .4rem;
}

body:not(.page-home) .card h3,
body:not(.page-home) .panel h3 {
  line-height: 1.3;
}

body:not(.page-home) .card__ic {
  border-radius: 12px;
  background: #DFF3ED;
  color: #174450;
}

body:not(.page-home) .card:hover .card__ic {
  transform: none;
}

body:not(.page-home) .panel--aqua {
  background: #DFF3ED;
  border-color: #C5E8DC;
  color: #174450;
}

body:not(.page-home) .panel--aqua .dim,
body:not(.page-home) .panel--aqua a {
  color: #174450;
}

/* Capabilities read as an ordered practice directory, with generous row space. */
body:not(.page-home) .svc {
  padding: clamp(44px, 5.5vw, 78px) 0;
  border-color: #D6D9DB;
}

body:not(.page-home) .svc__hd {
  grid-template-columns: minmax(0, 1.15fr) minmax(0, .85fr);
  gap: clamp(26px, 5vw, 72px);
  margin-bottom: 2rem;
  align-items: start;
}

body:not(.page-home) .svc__hd h2 {
  max-width: 23ch;
  font-size: clamp(1.8rem, 1.35rem + 1.65vw, 2.65rem);
  line-height: 1.16;
}

body:not(.page-home) .svc__hd p {
  line-height: 1.7;
}

body:not(.page-home) .caps {
  gap: 0 clamp(20px, 3.4vw, 48px);
  padding-top: .7rem;
  border-color: #D6D9DB;
}

body:not(.page-home) .caps li {
  padding: .8rem 0 .8rem 1.15rem;
  border-bottom: 1px solid #E7ECEA;
  font-size: .96rem;
  line-height: 1.5;
}

body:not(.page-home) .caps li::before {
  top: 1.38rem;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #77C7AD;
}

/* Fee schedules retain scrollable tables and tabular figures. */
body:not(.page-home) .tbl-scroll {
  background: #FFF;
  border: 1px solid #D6D9DB;
  border-radius: 14px;
  box-shadow: none;
  scrollbar-color: #77C7AD #F4F9F7;
}

body:not(.page-home) table.tbl {
  color: #174450;
  font-size: .95rem;
  line-height: 1.6;
  font-variant-numeric: tabular-nums;
}

body:not(.page-home) table.tbl caption {
  padding: 1.15rem 1.4rem;
  background: #DFF3ED;
  color: #174450;
  font-size: .96rem;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
}

body:not(.page-home) table.tbl th,
body:not(.page-home) table.tbl td {
  padding: 1.15rem 1.4rem;
  border-bottom-color: #E3E9E7;
}

body:not(.page-home) table.tbl thead th {
  background: #174450;
  color: #FFF;
  font-size: .87rem;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
}

body:not(.page-home) table.tbl tbody tr:nth-child(even) {
  background: #F8FAF9;
}

body:not(.page-home) table.tbl tbody tr:hover {
  background: #EFF7F3;
}

body:not(.page-home) .tbl-note {
  max-width: 84ch;
  line-height: 1.7;
  margin-top: 1.1rem;
}

body:not(.page-home) .ledger__row {
  padding-block: clamp(28px, 3.7vw, 44px);
  border-color: #D6D9DB;
}

body:not(.page-home) .ledger__t {
  background: #DFF3ED;
  border-color: #C5E8DC;
  color: #174450;
}

body:not(.page-home) .pledge {
  border: 1px solid #D6D9DB;
  border-radius: 14px;
  box-shadow: none;
}

body:not(.page-home) .pledge__hd {
  background: #174450;
}

body:not(.page-home) .pledge__bd {
  gap: 1.5rem;
}

body:not(.page-home) .pledge__row .x {
  color: #174450;
}

/* Forms keep native controls, clear labels and visible keyboard focus. */
body:not(.page-home) .form {
  gap: 1.45rem;
}

body:not(.page-home) .form__row {
  gap: 1.35rem;
}

body:not(.page-home) .field {
  gap: .55rem;
}

body:not(.page-home) .field label {
  font-size: .88rem;
  color: #174450;
  letter-spacing: 0;
}

body:not(.page-home) .field input,
body:not(.page-home) .field select,
body:not(.page-home) .field textarea {
  padding: .9rem 1rem;
  min-height: 52px;
  border: 1px solid #A4B5B7;
  border-radius: 12px;
  background: #FFF;
  color: #174450;
  font-size: 1rem;
  line-height: 1.5;
  box-shadow: none;
}

body:not(.page-home) .field input:focus,
body:not(.page-home) .field select:focus,
body:not(.page-home) .field textarea:focus {
  border-color: #2E7D5F;
  outline: 2px solid #2E7D5F;
  outline-offset: 3px;
  box-shadow: none;
}

body:not(.page-home) .field input::placeholder,
body:not(.page-home) .field textarea::placeholder {
  color: #5A6E72;
  opacity: 1;
}

body:not(.page-home) .field textarea {
  min-height: 156px;
}

body:not(.page-home) .form__note,
body:not(.page-home) .form__status {
  line-height: 1.65;
}

body:not(.page-home) .form .btn[type="submit"] {
  min-height: 50px;
  padding-inline: 1.8rem;
  justify-self: start;
}

body:not(.page-home) .form .btn:disabled {
  opacity: .65;
  cursor: wait;
  transform: none;
}

body:not(.page-home) .filedrop {
  padding: 2rem 1.25rem;
  border-radius: 12px;
  background: #F8FAF9;
}

body:not(.page-home) .filedrop:hover,
body:not(.page-home) .filedrop.is-drag,
body:not(.page-home) .filedrop.has-file {
  background: #DFF3ED;
  border-color: #2E7D5F;
}

body:not(.page-home) .contact-list {
  gap: 1.4rem;
}

body:not(.page-home) .contact-list li {
  gap: .4rem;
  padding-bottom: 1.4rem;
  border-color: #D6D9DB;
}

body:not(.page-home) .contact-list a {
  font-weight: 500;
  line-height: 1.5;
}

body:not(.page-home) .contact-list a:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}

body:not(.page-home) .team-card {
  align-items: start;
}

body:not(.page-home) .team-card__img {
  border-radius: 12px;
  box-shadow: none;
}

body:not(.page-home) .creds {
  gap: .8rem;
  border-color: #D6D9DB;
}

/* Insights use a generous lead story and calm, consistently spaced cards. */
body:not(.page-home) .plist-grid {
  gap: clamp(32px, 3.8vw, 50px) clamp(22px, 2.8vw, 36px);
}

body:not(.page-home) .pcard {
  gap: 1.3rem;
}

body:not(.page-home) .pcard:hover {
  transform: none;
}

body:not(.page-home) .pcard--lead {
  gap: clamp(28px, 4.2vw, 60px);
  padding-bottom: clamp(36px, 4.8vw, 68px);
  margin-bottom: .3rem;
  border-color: #D6D9DB;
}

body:not(.page-home) .pcard__img,
body:not(.page-home) .pcard:hover .pcard__img {
  border-radius: 14px;
  border-color: #D6D9DB;
  box-shadow: none;
}

body:not(.page-home) .pcard__meta {
  gap: .65rem .85rem;
  font-size: .78rem;
  line-height: 1.6;
  margin-bottom: .75rem;
}

body:not(.page-home) .tag {
  border-radius: 999px;
  padding: .3rem .7rem;
  background: #DFF3ED;
  color: #174450;
  font-size: .67rem;
  font-weight: 600;
  letter-spacing: .09em;
}

body:not(.page-home) .pcard h2,
body:not(.page-home) .pcard h3 {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 1.2rem + .6vw, 1.65rem);
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: -.015em;
}

body:not(.page-home) .pcard--lead h2,
body:not(.page-home) .pcard--lead h3 {
  font-size: clamp(1.7rem, 1.1rem + 1.9vw, 2.7rem);
  line-height: 1.18;
}

body:not(.page-home) .pcard h2 a,
body:not(.page-home) .pcard h3 a {
  background-image: none;
  text-decoration-color: #2E7D5F;
  text-underline-offset: .16em;
  text-decoration-thickness: 1px;
}

body:not(.page-home) .pcard h2 a:hover,
body:not(.page-home) .pcard h3 a:hover {
  text-decoration-line: underline;
}

body:not(.page-home) .pcard__dek {
  line-height: 1.7;
  margin-top: .9rem;
}

body:not(.page-home) .post__head {
  border-bottom: 0;
  padding-bottom: clamp(36px, 4.5vw, 62px);
}

body:not(.page-home) .post__head h1 {
  max-width: 25ch;
  font-size: clamp(2.35rem, 1.6rem + 2.7vw, 4rem);
}

body:not(.page-home) .post__meta {
  color: #5A6E72;
  margin-top: 1.75rem;
  font-size: .83rem;
  letter-spacing: 0;
}

body:not(.page-home) .post__hero {
  background: #F8FAF9;
  padding-bottom: clamp(28px, 3.8vw, 48px);
}

body:not(.page-home) .post__hero img {
  border: 1px solid #D6D9DB;
  border-radius: 14px;
  box-shadow: none;
}

body:not(.page-home) .post__body {
  max-width: min(80ch, 100%);
  font-size: clamp(1rem, .96rem + .25vw, 1.09rem);
  line-height: 1.8;
  padding-top: clamp(44px, 5.5vw, 74px);
}

body:not(.page-home) .post__body > * + * {
  margin-top: 1.35rem;
}

body:not(.page-home) .post__body h2 {
  font-size: clamp(1.65rem, 1.4rem + .9vw, 2.1rem);
  line-height: 1.24;
  margin-top: 3rem;
}

body:not(.page-home) .post__body h3 {
  line-height: 1.4;
  margin-top: 2.2rem;
}

body:not(.page-home) .post__body a {
  color: #2E7D5F;
  text-decoration-color: currentColor;
  text-underline-offset: 4px;
}

body:not(.page-home) .post__body .keyfact {
  background: #DFF3ED;
  border: 1px solid #C5E8DC;
  border-left: 3px solid #174450;
  border-radius: 12px;
  padding: clamp(22px, 3vw, 32px);
  margin-block: 2.5rem;
}

body:not(.page-home) .post__body .keyfact a,
body:not(.page-home) .post__body .keyfact p {
  color: #174450;
}

body:not(.page-home) .post__body blockquote {
  padding: .2rem 0 .2rem 1.5rem;
  margin-block: 2.5rem;
  font-size: clamp(1.25rem, 1.05rem + .7vw, 1.5rem);
  line-height: 1.5;
  border-left: 3px solid #77C7AD;
}

body:not(.page-home) .post__body .sources {
  margin-top: 3rem;
  padding-top: 1.75rem;
  border-color: #D6D9DB;
  overflow-wrap: anywhere;
}

body:not(.page-home) .post__more .pcard h3 {
  font-size: 1.35rem;
}

@media (max-width: 1000px) {
  body:not(.page-home) .phero::after { display: none; }
}

@media (max-width: 820px) {
  body:not(.page-home) .svc__hd {
    grid-template-columns: minmax(0, 1fr);
    gap: 1.2rem;
  }

  body:not(.page-home) .svc__hd h2 { max-width: 26ch; }
}

@media (max-width: 640px) {
  body:not(.page-home) .phero,
  body:not(.page-home) .post__head {
    padding-top: 48px;
    padding-bottom: 44px;
  }

  body:not(.page-home) .phero h1,
  body:not(.page-home) .post__head h1 {
    font-size: clamp(2.2rem, 8.8vw, 3rem);
    letter-spacing: -.025em;
  }

  body:not(.page-home) .phero .hero__cta { gap: 10px; }

  body:not(.page-home) .phero .hero__cta .btn {
    min-height: 48px;
    padding-inline: 1.1rem;
  }

  body:not(.page-home) .caps {
    grid-template-columns: minmax(0, 1fr);
  }

  body:not(.page-home) .pcard--lead {
    gap: 1.4rem;
  }

  body:not(.page-home) .post__body { line-height: 1.75; }
}

@media (prefers-reduced-motion: reduce) {
  body:not(.page-home) .pcard:hover .pcard__img img {
    transform: none;
  }
}

/* Keep mobile navigation actions centred and above the fixed contact bar. */
.mobile-nav__cta .btn{display:inline-flex;justify-content:center;align-items:center}
.mobile-nav{max-height:calc(100dvh - 165px)}

.home-faq .sec-head>.lede,.home-problems .sec-head>.lede{justify-self:start;margin-inline:0}
