/* ============================================================
   Sabine Karunanithy | Homepage
   Brand tokens sampled from cm4c.co theme CSS:
     #0D4553 deep petrol  ·  #36B6A5 teal  ·  #F2B7A5 blush
     #EACBC7 pale blush   ·  #6D8897 slate
   ============================================================ */

/* ============================================================
   FONTS, self hosted (fonts/). No request to Google on page load:
   the privacy policy depends on it. Variable woff2 from
   @fontsource-variable 5.3.0, latin subset, SIL OFL 1.1; the licences
   sit next to the files and must deploy with them.
   ============================================================ */
@font-face{
  font-family:"Figtree";
  font-style:normal;
  font-weight:300 900;
  font-display:swap;
  src:url("fonts/figtree-latin-wght-normal.woff2") format("woff2-variations"),
      url("fonts/figtree-latin-wght-normal.woff2") format("woff2");
}
@font-face{
  font-family:"Dancing Script";
  font-style:normal;
  font-weight:400 700;
  font-display:swap;
  src:url("fonts/dancing-script-latin-wght-normal.woff2") format("woff2-variations"),
      url("fonts/dancing-script-latin-wght-normal.woff2") format("woff2");
}

:root{
  /* --- brand palette --- */
  --ink:          #0D4553;
  --ink-deep:     #072F3A;
  --ink-soft:     #12525F;
  --teal:         #36B6A5;
  --teal-bright:  #5FD8C4;
  --teal-deep:    #2A9C8D;
  --teal-ink:     #17705F;   /* teal that passes on light backgrounds */
  --blush:        #F2B7A5;
  --blush-pale:   #EACBC7;
  --paper:        #FFFFFF;
  --cream:        #F4F9F8;   /* barely-teal off white                */
  --muted:        #4E6E77;   /* body text on light, 5.3:1            */
  --body-on-dark: #C6D6DA;   /* body text on ink,   6.9:1            */
  --hair:         #DCE8E7;   /* hairline borders on light            */

  /* --- hero composition scale --- */
  --pw:      clamp(330px, 29vw, 420px);
  --hero-h:  calc(var(--pw) * 1.476);
  --header-h: clamp(66px, 5.4vw, 78px);

  /* --- type --- */
  --f-sans:   "Figtree", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --f-script: "Dancing Script", "Brush Script MT", cursive;
  --fs-h1:    clamp(33px, 3.34vw, 48px);
  --fs-h2:    clamp(28px, 2.64vw, 38px);
  --fs-h3:    clamp(17px, 1.32vw, 19px);
  --fs-lede:  clamp(15px, 1.11vw, 16px);
  --fs-body:  clamp(15px, 1.11vw, 16px);

  /* --- layout --- */
  --container: 1224px;
  --gutter: 44px;
  --sec-pad:   clamp(70px, 6.6vw, 96px);
  --sec-pad-sm: clamp(58px, 5.6vw, 80px);
  --col-gap:   clamp(48px, 5.6vw, 80px);

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

*,*::before,*::after{ box-sizing:border-box; }
[hidden]{ display:none !important; }   /* class-level display must not beat it */
html{ -webkit-text-size-adjust:100%; scroll-behavior:smooth; }

body{
  margin:0;
  font-family:var(--f-sans);
  background:var(--cream);
  color:var(--ink);
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
  overflow-x:hidden;
}

img{ max-width:100%; height:auto; display:block; }
a{ text-decoration:none; color:inherit; }
ul,ol{ list-style:none; margin:0; padding:0; }
h1,h2,h3,h4,p{ margin:0; }
button{ font:inherit; }

.container{
  width:100%;
  max-width:var(--container);
  margin-inline:auto;
  padding-inline:var(--gutter);
}

.skip{
  position:absolute; left:-9999px; top:0; z-index:99;
  background:var(--teal); color:var(--ink-deep);
  padding:12px 18px; border-radius:0 0 8px 0; font-weight:600;
}
.skip:focus{ left:0; }

.sr-only{
  position:absolute; width:1px; height:1px;
  padding:0; margin:-1px; overflow:hidden;
  clip:rect(0 0 0 0); white-space:nowrap; border:0;
}

/* ============================================================
   SHARED TYPE
   ============================================================ */
.h2{
  font-size:var(--fs-h2);
  font-weight:800;
  line-height:1.2;
  letter-spacing:-.7px;
  color:var(--ink);
}
.h2.on-dark{ color:var(--paper); }
.h2.center{ text-align:center; }

.body{
  font-size:var(--fs-body);
  line-height:1.75;
  color:var(--muted);
}
.body.on-dark{ color:var(--body-on-dark); }

/* hand-drawn double underline */
.ul-wrap{ position:relative; display:inline-block; }
.underline{
  position:absolute;
  left:-1%; bottom:-.12em;
  width:105%; height:.24em;
  overflow:visible;
  fill:none;
  stroke:var(--teal-bright);
  stroke-width:4.2;
  stroke-linecap:round;
  vector-effect:non-scaling-stroke;
}
.underline .thin{ stroke:var(--blush); stroke-width:2.2; opacity:.9; }
.underline-dark{ stroke:var(--teal); }
.underline-dark .thin{ stroke:var(--blush); }
.h2 .underline{ stroke-width:3.6; bottom:-.16em; }

/* ============================================================
   HEADER
   ============================================================ */
.site-header{
  position:relative;
  z-index:20;
  height:var(--header-h);
  display:flex;
  align-items:center;
  background:var(--ink);
}
.header-inner{ display:flex; align-items:center; gap:24px; }

.brand{
  font-family:var(--f-script);
  font-weight:600;
  font-size:clamp(25px, 2.36vw, 34px);
  line-height:1;
  color:var(--teal-bright);
  letter-spacing:.2px;
  white-space:nowrap;
  padding-block:4px;
  flex:0 0 auto;
}

.nav{ margin-left:auto; display:flex; align-items:center; gap:clamp(20px, 2.1vw, 30px); }
.nav a{
  position:relative;
  font-size:clamp(14px, 1.04vw, 15px);
  font-weight:500;
  color:rgba(255,255,255,.84);
  padding-block:6px;
  transition:color .2s var(--ease);
}
.nav a::after{
  content:"";
  position:absolute; left:0; right:0; bottom:0;
  height:2px; border-radius:2px;
  background:var(--teal-bright);
  transform:scaleX(0); transform-origin:left;
  transition:transform .2s var(--ease);
}
.nav a:hover, .nav a:focus-visible{ color:var(--paper); }
.nav a:hover::after, .nav a:focus-visible::after{ transform:scaleX(1); }
.nav .btn-mobile{ display:none; }
.nav .btn-mobile::after{ display:none; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  height:47px; padding-inline:28px;
  border-radius:6px;
  font-size:clamp(14px, 1.04vw, 15px);
  font-weight:600; letter-spacing:.1px; white-space:nowrap;
  border:1.6px solid transparent;
  cursor:pointer;
  transition:transform .2s var(--ease), background-color .2s var(--ease),
             border-color .2s var(--ease), color .2s var(--ease), box-shadow .2s var(--ease);
}
.btn-primary{ background:var(--teal); color:var(--ink-deep); border-color:var(--teal); }
.btn-primary:hover, .btn-primary:focus-visible{
  background:var(--teal-bright); border-color:var(--teal-bright);
  transform:translateY(-2px);
  box-shadow:0 10px 22px rgba(15,90,80,.28);
}
.btn-primary:active{ transform:translateY(0); }

.btn-ghost{ background:transparent; color:var(--paper); border-color:rgba(255,255,255,.55); }
.btn-ghost:hover, .btn-ghost:focus-visible{
  background:var(--teal); border-color:var(--teal); color:var(--ink-deep);
  transform:translateY(-2px);
  box-shadow:0 10px 22px rgba(0,0,0,.22);
}
.btn-ghost-dark{ color:var(--ink); border-color:var(--hair); }
.btn-ghost-dark:hover{ background:var(--teal); border-color:var(--teal); color:var(--ink-deep); }

.btn-header{ height:44px; padding-inline:24px; margin-left:clamp(22px,2.6vw,36px); flex:0 0 auto; }

/* ============================================================
   HERO
   ============================================================ */
.hero{ position:relative; min-height:var(--hero-h); background:var(--ink); overflow:hidden; }
.hero-grid{
  position:relative; z-index:2;
  min-height:var(--hero-h);
  display:grid;
  grid-template-columns:minmax(0,1fr) calc(var(--pw) * 1.331);
  gap:clamp(32px, 3.4vw, 48px);
  align-items:center;
}
.hero-copy{ padding-block:clamp(28px,3vw,40px); max-width:560px; }
.headline{
  font-size:var(--fs-h1); font-weight:800; line-height:1.16;
  letter-spacing:-.9px; color:var(--paper);
}
.lede{
  margin-top:clamp(18px,1.9vw,26px);
  max-width:33em;
  font-size:var(--fs-lede);
  line-height:1.72;
  color:var(--body-on-dark);
}
.cta-row{ margin-top:clamp(24px,2.5vw,34px); display:flex; flex-wrap:wrap; gap:14px; }

.hero-visual{ position:relative; align-self:stretch; }
.portrait-stage{ position:absolute; inset:0; overflow:hidden; }
.portrait-stage picture{ display:contents; }

.blob{
  position:absolute;
  left:calc(var(--pw) * .070);
  top:calc(var(--pw) * .255);
  width:calc(var(--pw) * 1.07);
  height:calc(var(--pw) * 1.012);
  overflow:visible;
  transform:rotate(-8deg);
}
.portrait{
  position:absolute;
  left:calc(var(--pw) * .258);
  top:calc(var(--pw) * .185);
  width:var(--pw);
  height:auto;
  filter:drop-shadow(0 22px 26px rgba(4,32,40,.30));
}

/* Desktop: header + hero + credentials strip fill one screen, so the strip
   always lands on the bottom edge. The hero grows into the leftover height;
   --hero-h stays as the grid's floor so short screens never crush the portrait.
   The blob, portrait and arrow were placed from the top of a --hero-h tall
   stage. They are re-anchored on its vertical centre instead (identical when
   the stage is exactly --hero-h), and the max() keeps the portrait's bottom
   edge from lifting off the strip on very tall screens. */
@media (min-width: 1024px){
  .hero-viewport{ min-height:100vh; min-height:100dvh; display:flex; flex-direction:column; }
  .hero{ flex:1 1 auto; min-height:0; display:flex; flex-direction:column; }
  .hero-grid{ flex:1 1 auto; }
  .blob{     top:max(calc(50% - var(--pw) * .483), calc(100% - var(--pw) * 1.808)); }
  .portrait{ top:max(calc(50% - var(--pw) * .553), calc(100% - var(--pw) * 1.878)); }
  .dd-arrow{ top:max(calc(50% - var(--pw) * .738), calc(100% - var(--pw) * 2.063)); }
}

/* ============================================================
   DOODLES
   ============================================================ */
.doodles{ position:absolute; inset:0; z-index:3; pointer-events:none; }
.doodles > .dd{
  position:absolute;
  --edge: max(var(--gutter), calc((100vw - var(--container)) / 2 + var(--gutter)));
}
.dd{ pointer-events:none; }

/* curved arrow: anchored to the portrait column so it survives every width */
.dd-arrow{
  position:absolute;
  z-index:4;
  color:rgba(255,255,255,.9);
  width:clamp(124px, 12.2vw, 176px);
  left:calc(var(--pw) * -.30);
  top:0;
}
.dd-specks{ color:var(--blush); width:clamp(84px, 8.4vw, 121px); right:calc(var(--edge) + 6px); top:clamp(50px,5.2vw,74px); }
.dd-squiggle{ color:rgba(255,255,255,.9); width:clamp(30px,2.9vw,42px); right:calc(var(--edge) + 10px); bottom:clamp(28px,2.8vw,40px); }

/* ============================================================
   SECTIONS
   ============================================================ */
.section{ position:relative; padding-block:var(--sec-pad); }
.section-light{ background:var(--cream); }
/* consecutive light sections share one gap instead of stacking two */
.section-light + .section-light{ padding-top:0; }
.section-dark{ background:var(--ink); }

.ghost-shape{
  position:absolute;
  color:rgba(255,255,255,.055);
  width:min(760px, 62vw);
  left:-13%; top:-24%;
  pointer-events:none;
}

/* ============================================================
   STRIPS  (credentials + topics marquee)
   ============================================================ */
.strip{
  background:var(--teal);
  color:var(--ink-deep);
  overflow:hidden;
  position:relative;
  z-index:4;
}
.strip-credentials{ display:flex; align-items:center; min-height:82px; }
.strip-track{ width:100%; display:flex; justify-content:center; }
.strip-list{
  display:flex; align-items:center;
  gap:clamp(14px, 1.7vw, 24px);
  padding-inline:var(--gutter);
  font-size:clamp(13px, 1.04vw, 15px);
  font-weight:700;
  letter-spacing:.2px;
  white-space:nowrap;
}
.strip-label{ font-weight:600; opacity:.68; font-size:.92em; }
.strip .sep{ opacity:.45; font-size:.8em; }
.strip-clone{ display:none; }

.strip-topics{ min-height:78px; display:flex; align-items:center; }
.marquee{ display:flex; width:max-content; will-change:transform; animation:slide 46s linear infinite; }
.marquee-track{
  display:flex; align-items:center;
  gap:clamp(18px, 2vw, 30px);
  padding-right:clamp(18px,2vw,30px);
  font-size:clamp(13px,1.04vw,15px);
  font-weight:700; letter-spacing:.2px; white-space:nowrap;
}
@keyframes slide{ from{ transform:translateX(0); } to{ transform:translateX(-50%); } }
.strip:hover .marquee{ animation-play-state:paused; }

/* ============================================================
   MEET SABINE
   ============================================================ */
.meet-grid{
  display:grid;
  grid-template-columns:47fr 53fr;
  gap:var(--col-gap);
  align-items:center;
}
.meet-visual{ position:relative; aspect-ratio:1 / 1.16; container-type:inline-size; }
.meet-visual picture{ display:contents; }
.soft-blob{ position:absolute; }
.soft-blob-meet{ left:0; top:17.2%; width:100%; }
/* The photo emerges from the blob instead of sitting on top of it. Three mask
   layers, top to bottom:
     1. bottom fade   intersected with everything below, so the torso dissolves
                      into the blob colour instead of ending in a hard edge
     2. head zone     the top of the photo stays fully visible, so the head can
                      rise above the blob
     3. blob          the same path as the .soft-blob behind it; below the head
                      zone only what lies inside the blob shows
   Layer 3 is positioned in cqw of the visual (the container): x = -left,
   y = (blob top - photo top) * aspect ratio. Update it with left/top. */
.meet-photo, .approach-photo{
  -webkit-mask-repeat:no-repeat; mask-repeat:no-repeat;
  -webkit-mask-composite:source-in, source-over, source-over;
  mask-composite:intersect, add, add;
}
.meet-photo{
  position:absolute; z-index:2;
  left:7%; top:6.3%; width:81%;
  --blob-mask:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 440 416' width='440' height='416'%3E%3Cpath d='M228 8C332 4 420 74 430 168c10 96-46 174-136 214-84 38-192 26-244-40C4 280 10 172 46 114 82 56 146 12 228 8Z'/%3E%3C/svg%3E");
  -webkit-mask-image:linear-gradient(to bottom, #000 56%, rgba(0,0,0,0) 90%), linear-gradient(to bottom, #000 20%, rgba(0,0,0,0) 30%), var(--blob-mask);
  mask-image:linear-gradient(to bottom, #000 56%, rgba(0,0,0,0) 90%), linear-gradient(to bottom, #000 20%, rgba(0,0,0,0) 30%), var(--blob-mask);
  /* x: -7cqw   y: (17.2% - 6.3%) * 1.16 = 12.64cqw */
  -webkit-mask-size:100% 100%, 100% 100%, 100cqw 94.545cqw;
  mask-size:100% 100%, 100% 100%, 100cqw 94.545cqw;
  -webkit-mask-position:0 0, 0 0, -7cqw 12.64cqw;
  mask-position:0 0, 0 0, -7cqw 12.64cqw;
  transform-origin:50% 100%;
  transition:transform .5s var(--ease);
}
.meet-visual:hover .meet-photo{ transform:scale(1.015); }
.dd-meet-specks{ position:absolute; z-index:3; color:var(--teal-deep); width:82px; right:-2%; top:1%; }
.dd-curl{ position:absolute; z-index:3; color:var(--teal-deep); width:36px; left:-3%; bottom:16%; }

.meet-copy .body{ margin-top:20px; }

/* credentials read as proof points, not a task list: hairline rule,
   small organic icon mark, bold claim, quiet explanation */
.creds{
  margin:30px 0 32px;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:24px 34px;
}
.cred{ padding-top:17px; border-top:1px solid var(--hair); }
.cred-mark{
  display:flex; align-items:center; justify-content:center;
  width:32px; height:32px; margin-bottom:11px;
  border-radius:50%;
  background:#DEF3EF;
  color:var(--teal-ink);
  transition:background-color .25s var(--ease), color .25s var(--ease), transform .25s var(--ease);
}
.cred-mark svg{ width:16px; height:16px; }
.cred:hover .cred-mark{ background:var(--teal); color:var(--ink-deep); transform:rotate(-6deg); }
.cred strong{
  display:block;
  font-size:16px; font-weight:800; letter-spacing:-.2px;
  color:var(--ink); margin-bottom:4px;
}
.cred > span:not(.cred-mark){ display:block; font-size:13.5px; line-height:1.55; color:var(--muted); }

/* ============================================================
   BENEFITS
   ============================================================ */
.benefits{ overflow:hidden; }
.benefits-grid{
  position:relative; z-index:2;
  display:grid;
  grid-template-columns:38fr 62fr;
  gap:var(--col-gap);
  align-items:start;
}
.benefits-intro .body{ margin:20px 0 30px; }
.benefit-list{ display:grid; grid-template-columns:1fr 1fr; gap:clamp(28px,3.2vw,42px); }
.benefit-icon{
  display:flex; align-items:center; justify-content:center;
  width:52px; height:52px;
  border-radius:52% 48% 42% 58% / 54% 44% 56% 46%;
  background:var(--teal);
  color:var(--ink-deep);
  margin-bottom:16px;
  transition:transform .25s var(--ease);
}
.benefit-icon svg{ width:24px; height:24px; }
.benefit:hover .benefit-icon{ transform:rotate(-8deg) scale(1.06); }
.benefit h3{ font-size:var(--fs-h3); font-weight:700; color:var(--paper); margin-bottom:8px; }
.benefit p{ font-size:var(--fs-body); line-height:1.7; color:var(--body-on-dark); }

/* ============================================================
   SERVICES
   ============================================================ */
.services .h2{ margin-bottom:clamp(38px,4vw,54px); }
.card-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:clamp(22px,2.4vw,30px); }
.card{
  background:var(--paper);
  border:1px solid var(--hair);
  border-radius:14px;
  padding:clamp(26px,2.6vw,34px);
  display:flex; flex-direction:column;
  transition:transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease);
}
.card:hover{
  transform:translateY(-5px);
  border-color:#BFE4DE;
  box-shadow:0 18px 34px rgba(13,69,83,.10);
}
.card-icon{
  display:flex; align-items:center; justify-content:center;
  width:54px; height:54px; margin-bottom:20px;
  border-radius:54% 46% 40% 60% / 52% 46% 54% 48%;
  background:#DEF3EF;
  color:var(--teal-ink);
  transition:transform .25s var(--ease), background-color .25s var(--ease);
}
.card:hover .card-icon{ transform:rotate(6deg); background:var(--teal); color:var(--ink-deep); }
.card-icon svg{ width:25px; height:25px; }
.card h3{ font-size:var(--fs-h3); font-weight:700; margin-bottom:10px; color:var(--ink); }
.card p{ font-size:var(--fs-body); line-height:1.72; color:var(--muted); margin-bottom:22px; }
.card-link{
  margin-top:auto; align-self:flex-start;
  display:inline-flex; align-items:center; gap:8px;
  font-size:14.5px; font-weight:700; color:var(--teal-ink);
  padding-bottom:3px;
  border-bottom:2px solid transparent;
  transition:border-color .2s var(--ease), gap .2s var(--ease);
}
.card-link svg{ width:15px; height:11px; transition:transform .2s var(--ease); }
.card-link:hover{ border-color:var(--teal); }
.card-link:hover svg{ transform:translateX(3px); }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.quotes{
  position:relative;
  background:var(--ink);
  border-radius:22px;
  padding:clamp(34px,4vw,58px);
  display:grid;
  grid-template-columns:55fr 45fr;
  gap:var(--col-gap);
  align-items:center;
  overflow:hidden;
}
.quote-viewport{ overflow:hidden; border-radius:14px; }
.quote-track{ display:flex; transition:transform .42s var(--ease); }
.quote-card{
  position:relative;
  flex:0 0 100%;
  background:var(--paper);
  border-radius:14px;
  padding:clamp(26px,2.6vw,34px);
}
.ph-chip{
  position:absolute; right:16px; top:16px;
  font-size:10.5px; font-weight:800; letter-spacing:.7px; text-transform:uppercase;
  color:#8A5A2B; background:#FBE7D4; border:1px solid #F0CDAE;
  padding:4px 9px; border-radius:999px;
}
.quote-mark{ width:34px; height:26px; color:var(--teal); margin-bottom:16px; }
.quote-card p{ font-size:var(--fs-body); line-height:1.75; color:var(--muted); }
.quote-by{ display:flex; align-items:center; gap:13px; margin-top:22px; }
.quote-avatar{
  flex:0 0 auto;
  width:44px; height:44px; border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  background:#DEF3EF; color:var(--teal-ink);
  font-weight:800; font-size:14px; letter-spacing:.5px;
}
.quote-by strong{ display:block; font-size:15px; color:var(--ink); }
.quote-by em{ display:block; font-style:normal; font-size:13.5px; color:var(--muted); margin-top:2px; }

.quote-dots{ display:flex; gap:9px; margin-top:20px; }
.quote-dots button{
  width:9px; height:9px; padding:0; border:0; border-radius:50%;
  background:rgba(255,255,255,.30); cursor:pointer;
  transition:background-color .2s var(--ease), width .2s var(--ease);
}
.quote-dots button[aria-selected="true"]{ background:var(--teal-bright); width:24px; border-radius:5px; }

.quotes-copy .body{ margin:20px 0 28px; }
.quote-nav{ display:flex; gap:11px; }
.qbtn{
  width:46px; height:46px; border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  background:transparent; color:var(--paper);
  border:1.6px solid rgba(255,255,255,.32);
  cursor:pointer;
  transition:background-color .2s var(--ease), border-color .2s var(--ease), color .2s var(--ease), transform .2s var(--ease);
}
.qbtn svg{ width:16px; height:12px; }
.qbtn:hover{ background:var(--teal); border-color:var(--teal); color:var(--ink-deep); transform:translateY(-2px); }

/* ============================================================
   APPROACH
   ============================================================ */
.approach-grid{
  display:grid;
  grid-template-columns:53fr 47fr;
  gap:var(--col-gap);
  align-items:center;
}
.approach-copy .body{ margin-top:20px; }
.steps{ margin:28px 0 32px; display:grid; gap:20px; }
.steps li{ display:flex; gap:16px; align-items:flex-start; }
.step-n{
  flex:0 0 auto;
  width:40px; height:40px;
  display:flex; align-items:center; justify-content:center;
  border-radius:50% 50% 44% 56% / 52% 48% 52% 48%;
  background:#DEF3EF; color:var(--teal-ink);
  font-size:13px; font-weight:800; letter-spacing:.4px;
}
.steps strong{ display:block; font-size:var(--fs-h3); font-weight:700; color:var(--ink); margin-bottom:4px; }
.steps p{ font-size:var(--fs-body); line-height:1.68; color:var(--muted); }

.approach-visual{ position:relative; aspect-ratio:1 / 1.12; container-type:inline-size; }
.approach-visual picture{ display:contents; }
.soft-blob-approach{ left:0; top:14.3%; width:100%; }
.approach-photo{
  position:absolute; z-index:2;
  left:13%; top:1.8%; width:77%;
  --blob-mask:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 440 416' width='440' height='416'%3E%3Cpath d='M196 6C300 0 412 52 428 146c16 92-34 186-124 226-88 40-186 16-244-52C6 254 0 148 40 96 80 44 118 10 196 6Z'/%3E%3C/svg%3E");
  -webkit-mask-image:linear-gradient(to bottom, #000 64%, rgba(0,0,0,0) 95%), linear-gradient(to bottom, #000 18%, rgba(0,0,0,0) 28%), var(--blob-mask);
  mask-image:linear-gradient(to bottom, #000 64%, rgba(0,0,0,0) 95%), linear-gradient(to bottom, #000 18%, rgba(0,0,0,0) 28%), var(--blob-mask);
  /* x: -13cqw   y: (14.3% - 1.8%) * 1.12 = 14cqw */
  -webkit-mask-size:100% 100%, 100% 100%, 100cqw 94.545cqw;
  mask-size:100% 100%, 100% 100%, 100cqw 94.545cqw;
  -webkit-mask-position:0 0, 0 0, -13cqw 14cqw;
  mask-position:0 0, 0 0, -13cqw 14cqw;
  transform-origin:50% 100%;
  transition:transform .5s var(--ease);
}
.approach-visual:hover .approach-photo{ transform:scale(1.015); }
.dd-approach-curl{ left:auto; right:-2%; top:1%; bottom:auto; color:var(--teal-deep); width:36px; }
.dd-approach-specks{ position:absolute; z-index:3; color:var(--blush); width:78px; left:-3%; bottom:14%; }

/* ============================================================
   FINAL CTA
   ============================================================ */
.final-cta-wrap{ padding-block:var(--sec-pad-sm); }
.final-cta{
  position:relative;
  max-width:1128px; margin-inline:auto;
  background:var(--ink);
  border-radius:20px;
  padding:clamp(46px,5vw,68px) clamp(28px,4vw,64px);
  text-align:center;
  overflow:hidden;
}
.ghost-cta{ width:min(560px,70%); left:-11%; top:-52%; }
.final-cta h2{
  position:relative; z-index:2;
  font-size:clamp(26px,2.5vw,36px); font-weight:800; letter-spacing:-.6px;
  color:var(--paper); line-height:1.24;
}
.final-cta p{
  position:relative; z-index:2;
  max-width:60ch; margin:16px auto 28px;
  font-size:var(--fs-body); line-height:1.72; color:var(--body-on-dark);
}
.final-cta .btn{ position:relative; z-index:2; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer{ background:var(--ink); color:var(--body-on-dark); padding-top:clamp(56px,5.6vw,78px); }
.footer-grid{
  display:grid;
  grid-template-columns:1.7fr 1fr 1fr 1.15fr;
  gap:clamp(30px,3.4vw,52px);
  padding-bottom:clamp(38px,4vw,54px);
}
.brand-footer{ display:inline-block; margin-bottom:16px; }
.footer-brand p{ font-size:14.5px; line-height:1.75; max-width:34ch; }
/* newsletter entry point: email only, lowest possible friction */
.fnews{ margin-top:26px; }
.fnews h4{
  font-size:12px; font-weight:800; letter-spacing:1.3px; text-transform:uppercase;
  color:var(--paper); margin-bottom:8px;
}
.fnews-sub{ font-size:13.5px; line-height:1.6; color:var(--body-on-dark); margin-bottom:14px; max-width:34ch; }
.fnews-row{ display:flex; gap:9px; }
.fnews-row-name{ margin-bottom:9px; }
.fnews-row input{
  flex:1 1 auto; min-width:0;
  font:inherit; font-size:14.5px;
  color:var(--paper);
  background:rgba(255,255,255,.07);
  border:1.5px solid rgba(255,255,255,.20);
  border-radius:9px;
  padding:11px 13px;
  transition:border-color .2s var(--ease), background-color .2s var(--ease), box-shadow .2s var(--ease);
}
.fnews-row input::placeholder{ color:rgba(198,214,218,.60); }
.fnews-row input:focus{
  outline:none; border-color:var(--teal);
  background:rgba(255,255,255,.11);
  box-shadow:0 0 0 3px rgba(54,182,165,.22);
}
.fnews-row input.has-error{ border-color:#E0967E; background:rgba(224,150,126,.10); }
.fnews-btn{ flex:0 0 auto; height:auto; padding-inline:20px; }
.fnews .field-err{ color:var(--blush); }
.fnews-done{ display:flex; gap:10px; align-items:flex-start; }
.fnews-tick{
  flex:0 0 auto; width:26px; height:26px; border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  background:var(--teal); color:var(--ink-deep);
}
.fnews-tick svg{ width:14px; height:14px; }
.fnews-done p{ font-size:13.5px; line-height:1.6; color:var(--body-on-dark); }
/* target of the newsletter forms (see main.js); never visible */
.kajabi-sink{ position:absolute; width:0; height:0; border:0; }

.socials{ display:flex; gap:11px; margin-top:24px; }
.socials a{
  width:38px; height:38px; border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  background:rgba(255,255,255,.08); color:var(--paper);
  transition:background-color .2s var(--ease), transform .2s var(--ease), color .2s var(--ease);
}
.socials svg{ width:17px; height:17px; }
.socials a:hover{ background:var(--teal); color:var(--ink-deep); transform:translateY(-2px); }

.footer-col{ display:flex; flex-direction:column; gap:11px; }
.footer-col h4{
  font-size:12px; font-weight:800; letter-spacing:1.3px; text-transform:uppercase;
  color:var(--paper); margin-bottom:6px;
}
.footer-col a, .footer-col .with-icon{
  font-size:14.5px; line-height:1.5; color:var(--body-on-dark);
  transition:color .2s var(--ease);
}
.footer-col a:hover{ color:var(--teal-bright); }
.with-icon{ display:flex; align-items:flex-start; gap:9px; }
.with-icon svg{ width:17px; height:17px; flex:0 0 auto; margin-top:1px; color:var(--teal); }
.btn-footer{ margin-top:10px; align-self:flex-start; height:44px; padding-inline:22px; }

.footer-legal{
  display:flex; flex-wrap:wrap; gap:14px;
  align-items:center; justify-content:space-between;
  padding-block:22px;
  border-top:1px solid rgba(255,255,255,.10);
  font-size:13.5px;
}
.footer-legal a{ transition:color .2s var(--ease); }
.footer-legal a:hover{ color:var(--teal-bright); }
.footer-legal nav{ display:flex; flex-wrap:wrap; gap:6px 20px; }

/* contact modal: shown only when the message was handed to the visitor's email app */

/* legal pages (privacy.html, terms.html) */
.legal-inner{ max-width:780px; }
.legal .h2{ margin:10px 0 26px; }
.legal-body h2{ font-size:var(--fs-h3); font-weight:800; line-height:1.35; letter-spacing:-.2px; color:var(--ink); margin:34px 0 10px; overflow-wrap:anywhere; }
.legal-body p, .legal-body li{ font-size:var(--fs-body); line-height:1.75; color:var(--muted); overflow-wrap:anywhere; }
.legal-body p + p{ margin-top:12px; }
.legal-updated{ margin:-12px 0 8px; font-size:14px; font-weight:600; color:var(--muted); }
.legal-body h3{ font-size:16px; font-weight:800; color:var(--ink); margin:22px 0 8px; }
.legal-body ul{ list-style:disc; padding-left:1.3em; margin:12px 0; }
.legal-body li + li{ margin-top:6px; }
.legal-body a{ color:var(--teal-ink); font-weight:600; border-bottom:1.5px solid rgba(23,112,95,.35); }

/* ============================================================
   CONTACT MODAL
   ============================================================ */
.modal{ position:fixed; inset:0; z-index:80; display:flex; align-items:center; justify-content:center; padding:20px; }
.modal[hidden]{ display:none; }
.modal-scrim{ position:absolute; inset:0; background:rgba(5,32,40,.62); backdrop-filter:blur(3px); opacity:0; transition:opacity .26s var(--ease); }
.modal-card{
  position:relative;
  width:min(520px,100%);
  max-height:calc(100dvh - 40px);
  overflow-y:auto;
  background:var(--paper);
  border-radius:18px;
  padding:clamp(28px,3.4vw,40px);
  box-shadow:0 30px 70px rgba(4,32,40,.34);
  opacity:0; transform:translateY(16px) scale(.985);
  transition:opacity .26s var(--ease), transform .26s var(--ease);
}
.modal.is-open .modal-scrim{ opacity:1; }
.modal.is-open .modal-card{ opacity:1; transform:none; }

.modal-close{
  position:absolute; right:14px; top:14px;
  width:38px; height:38px; border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  background:transparent; border:0; cursor:pointer; color:var(--muted);
  transition:background-color .2s var(--ease), color .2s var(--ease);
}
.modal-close svg{ width:18px; height:18px; }
.modal-close:hover{ background:#EAF3F1; color:var(--ink); }

.modal-eyebrow{ font-size:12px; font-weight:800; letter-spacing:1.1px; text-transform:uppercase; color:var(--teal-ink); }
.modal-card h2{ font-size:clamp(23px,2.2vw,28px); font-weight:800; letter-spacing:-.5px; margin-top:8px; color:var(--ink); }
.modal-sub{ margin-top:9px; font-size:15px; line-height:1.65; color:var(--muted); }

.field{ display:block; margin-top:17px; }
.field > label{ display:block; font-size:13.5px; font-weight:600; color:var(--ink); margin-bottom:7px; }
.field input, .field textarea{
  width:100%;
  font:inherit; font-size:15px;
  color:var(--ink);
  background:#F7FBFA;
  border:1.5px solid var(--hair);
  border-radius:10px;
  padding:12px 14px;
  resize:vertical;
  transition:border-color .2s var(--ease), box-shadow .2s var(--ease), background-color .2s var(--ease);
}
.field input::placeholder, .field textarea::placeholder{ color:#93AEB4; }
.field input:focus, .field textarea:focus{
  outline:none; background:var(--paper);
  border-color:var(--teal);
  box-shadow:0 0 0 3px rgba(54,182,165,.20);
}
.field input.has-error, .field textarea.has-error{ border-color:#D98A72; background:#FEF7F4; }
.field input.has-error:focus, .field textarea.has-error:focus{
  border-color:#D98A72; box-shadow:0 0 0 3px rgba(217,138,114,.22);
}

.field-err{ margin-top:6px; font-size:12.5px; line-height:1.45; color:#B0522F; }
.field-err:empty{ display:none; }

.form-err{
  margin-top:14px; padding:11px 13px;
  border-radius:9px;
  background:#FEF1EC; border:1px solid #F2D3C6;
  font-size:13.5px; line-height:1.55; color:#8A4527;
}

/* submitting state, shared by both forms */
.spinner{
  display:none;
  width:16px; height:16px;
  border:2px solid rgba(7,47,58,.30);
  border-top-color:var(--ink-deep);
  border-radius:50%;
  animation:spin .7s linear infinite;
}
@keyframes spin{ to{ transform:rotate(360deg); } }
.is-submitting .spinner{ display:block; }
.is-submitting .btn-label{ display:none; }
.btn:disabled{ cursor:default; }
.btn:disabled:hover{ transform:none; box-shadow:none; }

.consent{ display:flex; align-items:flex-start; gap:11px; margin-top:20px; cursor:pointer; }
.consent input{ position:absolute; opacity:0; width:0; height:0; }
.consent .box{
  flex:0 0 auto; width:21px; height:21px; margin-top:1px;
  border:1.6px solid #B9CFD1; border-radius:6px; background:var(--paper);
  position:relative;
  transition:background-color .18s var(--ease), border-color .18s var(--ease);
}
.consent .box::after{
  content:""; position:absolute; left:6.5px; top:3px;
  width:5px; height:10px;
  border:solid var(--ink-deep); border-width:0 2.2px 2.2px 0;
  transform:rotate(43deg) scale(.4); opacity:0;
  transition:opacity .18s var(--ease), transform .18s var(--ease);
}
.consent input:checked ~ .box{ background:var(--teal); border-color:var(--teal); }
.consent input:checked ~ .box::after{ opacity:1; transform:rotate(43deg) scale(1); }
.consent input:focus-visible ~ .box{ box-shadow:0 0 0 3px rgba(54,182,165,.28); }
.consent-text{ font-size:14px; line-height:1.55; color:var(--muted); }

.btn-submit{ width:100%; margin-top:24px; height:50px; }
.form-note{ margin-top:14px; font-size:12px; line-height:1.5; color:#8AA4AB; }
.form-note code{ font-family:ui-monospace,SFMono-Regular,Menlo,monospace; font-size:11.5px; }

.modal-done{ text-align:center; padding-block:14px; }
.done-mark{
  display:flex; align-items:center; justify-content:center;
  width:60px; height:60px; margin:0 auto 18px;
  border-radius:52% 48% 42% 58% / 54% 44% 56% 46%;
  background:var(--teal); color:var(--ink-deep);
}
.done-mark svg{ width:28px; height:28px; }
.modal-done h2{ margin-bottom:9px; }
.modal-done p{ font-size:15px; line-height:1.65; color:var(--muted); margin-bottom:24px; }

/* ============================================================
   MOBILE NAV TOGGLE
   ============================================================ */
.nav-toggle{
  display:none; margin-left:auto;
  width:44px; height:44px; padding:11px 10px;
  background:transparent; border:0; cursor:pointer;
  flex-direction:column; justify-content:space-between;
}
.nav-toggle span{ display:block; height:2px; background:var(--paper); border-radius:2px; transition:transform .22s var(--ease), opacity .22s var(--ease); }
body.nav-open .nav-toggle span:nth-child(1){ transform:translateY(9px) rotate(45deg); }
body.nav-open .nav-toggle span:nth-child(2){ opacity:0; }
body.nav-open .nav-toggle span:nth-child(3){ transform:translateY(-9px) rotate(-45deg); }

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.js .reveal{ opacity:0; transform:translateY(20px); transition:opacity .6s var(--ease), transform .6s var(--ease); }
.js .reveal.in{ opacity:1; transform:none; }
.benefit.reveal:nth-child(2){ transition-delay:.07s; }
.benefit.reveal:nth-child(3){ transition-delay:.14s; }
.benefit.reveal:nth-child(4){ transition-delay:.21s; }
.card.reveal:nth-child(2){ transition-delay:.08s; }
.card.reveal:nth-child(3){ transition-delay:.16s; }

/* ============================================================
   TABLET  ( <= 1023 )
   ============================================================ */
@media (max-width: 1023px){
  :root{
    --pw: clamp(248px, 30vw, 300px);
    --hero-h: calc(var(--pw) * 1.50);
    --gutter: 30px;
    --col-gap: clamp(34px, 4.4vw, 48px);
  }
  .hero-copy{ max-width:none; }
  .headline{ letter-spacing:-.5px; }
  .nav{ gap:18px; }
  .nav a{ font-size:13.5px; }
  .btn-header{ height:40px; padding-inline:18px; font-size:13.5px; margin-left:18px; }
  .btn{ height:44px; padding-inline:22px; }
  .hero-visual{ align-self:center; height:calc(var(--pw) * 1.45); }
  .dd-arrow{ width:118px; left:calc(var(--pw) * -.26); top:-4px; }

  .strip-credentials{ min-height:70px; }
  .strip-track{ width:max-content; animation:slide 40s linear infinite; }
  .strip-clone{ display:flex; }

  .meet-grid, .approach-grid{ grid-template-columns:1fr 1fr; }
  .benefits-grid{ grid-template-columns:1fr; gap:38px; }
  .benefit-list{ gap:30px; }
  .card-grid{ grid-template-columns:1fr; max-width:560px; margin-inline:auto; }
  .quotes{ grid-template-columns:1fr; gap:34px; }
  .quotes-copy{ order:-1; }
  .footer-grid{ grid-template-columns:1fr 1fr; }
}

/* ============================================================
   MOBILE  ( <= 767 )
   ============================================================ */
@media (max-width: 767px){
  :root{
    --pw: clamp(228px, 62vw, 300px);
    --hero-h: auto;
    --header-h: 64px;
    --gutter: 22px;
    --sec-pad: clamp(64px, 12vw, 80px);
    --sec-pad-sm: clamp(56px, 10vw, 70px);
    --fs-h1: clamp(29px, 8.6vw, 38px);
    --fs-h2: clamp(25px, 7.2vw, 32px);
    --fs-lede: 15.5px;
    --fs-body: 15.5px;
  }

  /* --- collapsed nav --- */
  .nav-toggle{ display:flex; }
  .site-header .btn-header{ display:none; }
  .nav{
    position:absolute; left:0; right:0; top:var(--header-h);
    margin:0; flex-direction:column; align-items:stretch; gap:0;
    background:var(--ink-deep);
    border-top:1px solid rgba(255,255,255,.10);
    box-shadow:0 20px 40px rgba(0,0,0,.28);
    max-height:0; overflow:hidden;
    transition:max-height .28s var(--ease);
  }
  body.nav-open .nav{ max-height:440px; }
  .nav a{ padding:15px var(--gutter); font-size:16px; border-bottom:1px solid rgba(255,255,255,.07); }
  .nav a::after{ display:none; }
  .nav .btn-mobile{ display:inline-flex; margin:16px var(--gutter) 20px; border-bottom:0; }

  /* --- hero stacks --- */
  .hero{ min-height:0; }
  .hero-grid{ min-height:0; grid-template-columns:1fr; gap:0; align-items:start; }
  .hero-copy{ padding-block:clamp(30px,8vw,44px) 0; }
  .headline{ line-height:1.18; letter-spacing:-.4px; }
  .underline{ stroke-width:4; }
  .underline .thin{ stroke-width:2.2; }
  .cta-row{ margin-top:26px; gap:12px; }
  .cta-row .btn{ flex:1 1 auto; min-width:150px; height:50px; }

  .hero-visual{ position:relative; margin-top:clamp(34px,9vw,52px); height:calc(var(--pw) * 1.38); }
  .portrait-stage{ position:absolute; inset:0; }
  .blob{ left:50%; transform:translateX(-58%) rotate(-8deg); }
  .portrait{ left:50%; transform:translateX(-46%); }
  .dd-arrow{ display:none; }
  .dd-specks{ width:64px; right:calc(var(--gutter) - 4px); top:auto; bottom:calc(var(--pw) * 1.02); }
  .dd-squiggle{ width:30px; left:calc(var(--gutter) - 2px); right:auto; bottom:calc(var(--pw) * .62); }

  /* --- sections stack --- */
  .meet-grid, .approach-grid{ grid-template-columns:1fr; gap:38px; }
  .meet-visual{ order:2; max-width:400px; margin-inline:auto; width:100%; }
  .approach-visual{ order:2; max-width:380px; margin-inline:auto; width:100%; }
  .dd-meet-specks{ width:62px; }
  .dd-approach-specks{ width:58px; }
  .dd-curl{ width:28px; }

  .benefit-list{ grid-template-columns:1fr; gap:28px; }
  .benefit-icon{ width:46px; height:46px; margin-bottom:13px; }
  .benefit-icon svg{ width:21px; height:21px; }

  .card-grid{ max-width:none; }
  .quotes{ padding:26px 20px 30px; border-radius:18px; }
  .quote-card{ padding:24px 20px; }
  .ph-chip{ right:12px; top:12px; }
  .quote-nav{ display:none; }          /* dots + swipe are enough on mobile */
  .quote-dots{ justify-content:center; }

  .steps{ gap:18px; }
  .creds{ gap:20px 22px; }
  .modal{ padding:16px; }              /* card becomes calc(100% - 32px) */
  .modal-card{ padding:26px 22px 28px; }
  .consent{ gap:12px; }
  .consent .box{ width:23px; height:23px; }
  .consent .box::after{ left:7.2px; top:3.6px; }
  .consent-text{ font-size:14.5px; }
  .btn-submit{ height:52px; }
  .final-cta{ border-radius:16px; }
  .final-cta .btn{ width:100%; max-width:320px; }

  .footer-grid{ grid-template-columns:1fr; gap:32px; }
  .footer-brand p{ max-width:none; }
  .footer-legal{ flex-direction:column; align-items:flex-start; gap:9px; }
  .btn-footer{ width:100%; max-width:300px; justify-content:center; }
  .strip-list, .marquee-track{ font-size:13px; }
}

@media (max-width: 479px){
  .creds{ grid-template-columns:1fr; gap:18px; }
}

@media (max-width: 400px){
  .fnews-row{ flex-direction:column; }
  .fnews-btn{ width:100%; }
}

@media (max-width: 380px){
  .cta-row{ flex-direction:column; align-items:stretch; }
  .cta-row .btn{ width:100%; }
}

/* ============================================================
   A11Y
   ============================================================ */
:where(a, button, input, textarea):focus-visible{
  outline:2.5px solid var(--teal);
  outline-offset:3px;
  border-radius:4px;
}
.section-dark :where(a,button):focus-visible,
.hero :where(a,button):focus-visible,
.site-footer :where(a,button):focus-visible,
.quotes :where(a,button):focus-visible{ outline-color:var(--teal-bright); }

@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior:auto; }
  *{ transition-duration:.01ms !important; animation-duration:.01ms !important; animation-iteration-count:1 !important; }
  .marquee, .strip-track{ animation:none; }
  .reveal{ opacity:1; transform:none; }
}

/* ============================================================
   v3  TWO PAGE ARCHITECTURE  (index.html for companies,
   individuals.html for individuals)
   New components only. They reuse the tokens, radii, hairlines,
   organic marks and underline flourishes defined above.
   ============================================================ */

/* --- shared bits --- */
.eyebrow{
  font-size:12.5px; font-weight:800; letter-spacing:1.2px; text-transform:uppercase;
  color:var(--teal-ink); margin-bottom:14px;
}
.eyebrow.on-dark{ color:var(--teal-bright); }
.h3{ font-size:clamp(20px,1.7vw,24px); font-weight:800; line-height:1.3; letter-spacing:-.3px; color:var(--ink); }
.h3.on-dark{ color:var(--paper); }
.narrow{ max-width:calc(780px + var(--gutter) * 2); }
.prose > p + p{ margin-top:16px; }
/* deck lines like "the beliefs that drive..." sit under their own label */
.cap::first-letter{ text-transform:uppercase; }
.section-mint{ background:#E6F2EF; }
.section-head{ max-width:760px; margin:0 auto clamp(38px,4vw,54px); text-align:center; }
.section-head .body{ margin-top:18px; }
.center-btn{ margin-top:30px; display:flex; justify-content:center; }
.small-line{ margin-top:16px; font-size:14px; line-height:1.6; color:var(--muted); }
.small-line a{ color:var(--teal-ink); font-weight:700; border-bottom:1.5px solid rgba(23,112,95,.35); transition:border-color .2s var(--ease); }
.small-line a:hover{ border-color:var(--teal-ink); }
.tick{
  flex:0 0 auto; width:26px; height:26px; margin-top:1px; border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  background:var(--teal); color:var(--ink-deep);
}
.tick svg{ width:14px; height:14px; }
summary:focus-visible{ outline:2.5px solid var(--teal); outline-offset:3px; border-radius:6px; }
.section-dark summary:focus-visible{ outline-color:var(--teal-bright); }

.nav a[aria-current="page"]{ color:var(--paper); }
.nav a[aria-current="page"]::after{ transform:scaleX(1); }

/* --- hero additions --- */
.hero-copy .eyebrow{ margin-bottom:16px; }
.trust-line{
  margin-top:clamp(20px,2vw,26px); padding-left:14px;
  border-left:2px solid var(--teal);
  max-width:34em;
  font-size:13.5px; line-height:1.6; color:var(--body-on-dark);
}

/* --- problem --- */
.problem .h2{ margin-bottom:clamp(22px,2.4vw,30px); }
.problem .prose{ text-align:center; }

/* --- 4 Cs expandable cards --- */
.more{ margin-top:14px; }
.more summary{
  list-style:none; cursor:pointer;
  display:inline-flex; align-items:center; gap:8px;
  font-size:14.5px; font-weight:700; color:var(--teal-bright);
  padding-bottom:3px; border-bottom:2px solid transparent;
  transition:border-color .2s var(--ease);
}
.more summary::-webkit-details-marker{ display:none; }
.more summary:hover{ border-color:var(--teal); }
.more summary svg{ width:12px; height:8px; transition:transform .25s var(--ease); }
.more[open] summary svg{ transform:rotate(180deg); }
.more .more-close, .more[open] .more-open{ display:none; }
.more[open] .more-close{ display:inline; }
.more-body{ margin-top:14px; padding-top:16px; border-top:1px solid rgba(255,255,255,.14); }
.benefit .more-body p{ font-size:15px; line-height:1.72; }
.more-body p + p{ margin-top:12px; }
.benefit .more-body .more-lead{ font-weight:700; color:var(--paper); }

/* light variant of the 4 Cs grid (individuals page) */
.benefits.section-light .benefit h3{ color:var(--ink); }
.benefits.section-light .benefit p{ color:var(--muted); }
.benefits.section-light .more summary{ color:var(--teal-ink); }
.benefits.section-light .more-body{ border-top-color:var(--hair); }
.benefits.section-light .benefit .more-body .more-lead{ color:var(--ink); }

/* --- MAP for talent development --- */
.map-head{ max-width:780px; margin:0 auto clamp(44px,4.6vw,64px); text-align:center; }
.map-head .body{ margin-top:20px; }
.map-split{ margin-top:clamp(48px,5vw,72px); display:grid; grid-template-columns:1fr 1fr; gap:var(--col-gap); align-items:start; }
.assess-grid{ margin-top:22px; display:grid; grid-template-columns:1fr 1fr; gap:clamp(16px,1.8vw,22px); }
.assess{
  background:var(--paper); border:1px solid var(--hair); border-top:3px solid var(--teal);
  border-radius:14px; padding:clamp(22px,2.2vw,28px);
  transition:transform .25s var(--ease), box-shadow .25s var(--ease);
}
.assess:hover{ transform:translateY(-3px); box-shadow:0 14px 28px rgba(13,69,83,.08); }
.assess strong{ display:block; font-size:var(--fs-h3); font-weight:800; letter-spacing:-.2px; color:var(--ink); margin-bottom:6px; }
.assess p{ font-size:var(--fs-body); line-height:1.68; color:var(--muted); }
.map-note{ margin-top:20px; max-width:72ch; font-style:italic; font-size:var(--fs-body); line-height:1.72; color:var(--muted); }
.steps-modules{ margin:24px 0 0; gap:18px; }
.map-outcomes{ background:var(--ink); border-radius:20px; padding:clamp(28px,3.2vw,44px); position:relative; overflow:hidden; }
.outcomes{ margin:24px 0 30px; display:grid; gap:16px; }
.outcomes li{ display:flex; gap:13px; align-items:flex-start; font-size:var(--fs-body); line-height:1.65; color:var(--body-on-dark); }
.map-outcomes :where(a,button):focus-visible{ outline-color:var(--teal-bright); }

/* --- MAP variations --- */
.services .section-head .h2{ margin-bottom:0; }
.card-eyebrow{
  align-self:flex-start; margin-bottom:16px;
  font-size:12px; font-weight:800; letter-spacing:1px; text-transform:uppercase;
  color:var(--teal-ink); background:#DEF3EF;
  padding:6px 12px; border-radius:999px;
  transition:background-color .25s var(--ease), color .25s var(--ease);
}
.card:hover .card-eyebrow{ background:var(--teal); color:var(--ink-deep); }
.variations .card p:last-child{ margin-bottom:0; }
.variations-note{ max-width:840px; margin:clamp(32px,3.4vw,46px) auto 0; text-align:center; }

/* --- 1:1 executive coaching (quieter than MAP) --- */
.coaching .approach-grid{ grid-template-columns:58fr 42fr; }
.coaching .approach-copy .body{ margin-top:18px; }
.coaching .approach-copy .body + .body{ margin-top:14px; }
.coaching .approach-copy .btn{ margin-top:30px; }
.coaching .approach-visual{ width:100%; max-width:420px; justify-self:center; }

/* --- how we work together --- */
.how{ overflow:hidden; }
.how .h2{ position:relative; z-index:2; margin-bottom:clamp(40px,4.2vw,58px); }
.steps-row{ position:relative; z-index:2; margin:0; grid-template-columns:repeat(3,1fr); gap:clamp(26px,3vw,46px); }
.steps-row li{ flex-direction:column; gap:16px; padding-top:22px; border-top:1px solid rgba(255,255,255,.14); }
.how .step-n{ width:48px; height:48px; font-size:14px; background:var(--teal); color:var(--ink-deep); }
.how .steps strong{ color:var(--paper); margin-bottom:6px; }
.how .steps p{ color:var(--body-on-dark); }
.steps-row li.reveal:nth-child(2){ transition-delay:.08s; }
.steps-row li.reveal:nth-child(3){ transition-delay:.16s; }

/* --- about --- */
.meet-copy .body + .body{ margin-top:14px; }
.creds .cred strong{ margin-bottom:0; }
.meet-btn{ margin-top:30px; }

/* --- proof --- */
.quotes-copy .quote-nav{ margin-top:28px; }
/* the track's three 100% slides otherwise set the grid column's min-content
   width, which pushed the card wider than a phone screen */
.quotes > *{ min-width:0; }

/* --- FAQ --- */
.faq-section .h2{ margin-bottom:clamp(32px,3.4vw,46px); }
.faq{ display:grid; gap:12px; }
.faq-item{
  background:var(--paper); border:1px solid var(--hair); border-radius:14px;
  transition:border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.faq-item[open]{ border-color:#BFE4DE; box-shadow:0 14px 30px rgba(13,69,83,.07); }
.faq-item summary{
  list-style:none; cursor:pointer;
  display:flex; align-items:center; justify-content:space-between; gap:18px;
  padding:20px clamp(20px,2.4vw,28px);
  font-size:var(--fs-h3); font-weight:700; line-height:1.4; color:var(--ink);
  border-radius:14px;
}
.faq-item summary::-webkit-details-marker{ display:none; }
.faq-icon{
  flex:0 0 auto; position:relative; width:32px; height:32px; border-radius:50%;
  background:#DEF3EF; transition:background-color .2s var(--ease);
}
.faq-icon::before, .faq-icon::after{
  content:""; position:absolute; left:50%; top:50%;
  width:12px; height:2px; border-radius:2px; background:var(--teal-ink);
  transform:translate(-50%,-50%);
}
.faq-icon::after{ transform:translate(-50%,-50%) rotate(90deg); transition:transform .25s var(--ease); }
.faq-item[open] .faq-icon{ background:var(--teal); }
.faq-item[open] .faq-icon::before, .faq-item[open] .faq-icon::after{ background:var(--ink-deep); }
.faq-item[open] .faq-icon::after{ transform:translate(-50%,-50%) rotate(0deg); }
.faq-item summary:hover .faq-icon{ background:var(--teal); }
.faq-body{ padding:0 clamp(20px,2.4vw,28px) 22px; }
.faq-body p{ max-width:64ch; font-size:var(--fs-body); line-height:1.72; color:var(--muted); }

/* --- footer additions --- */
.footer-brand .footer-line{ max-width:38ch; }

/* ---------------- individuals page ---------------- */

/* is this you? */
.recognise-inner{ position:relative; z-index:2; }
.recognise .h2{ margin-bottom:clamp(26px,2.8vw,36px); }
.recognise-list{ display:grid; }
.recognise-list li{
  display:flex; gap:15px; align-items:flex-start;
  padding-block:16px; border-bottom:1px solid rgba(255,255,255,.10);
  font-size:clamp(16px,1.3vw,18px); line-height:1.7; color:var(--paper);
}
.recognise-list li:first-child{ border-top:1px solid rgba(255,255,255,.10); }
.recognise-list .tick{ margin-top:2px; }
.recognise-close{ margin-top:clamp(24px,2.6vw,32px); font-size:clamp(16px,1.2vw,17px); line-height:1.8; }

/* MAP for individuals */
.map-ind-grid{ display:grid; grid-template-columns:55fr 45fr; gap:var(--col-gap); align-items:center; }
.map-ind-copy .prose{ margin-top:20px; }
.tiers{ display:grid; gap:12px; margin-bottom:26px; }
.tier a{
  display:grid; grid-template-columns:1fr auto; gap:4px 18px; align-items:center;
  background:var(--paper); border:1px solid var(--hair); border-radius:14px;
  padding:18px 22px;
  transition:transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease);
}
.tier a:hover{ transform:translateY(-3px); border-color:#BFE4DE; box-shadow:0 14px 28px rgba(13,69,83,.09); }
.tier strong{ grid-column:1; font-size:var(--fs-h3); font-weight:800; letter-spacing:-.2px; color:var(--ink); }
.tier span{ grid-column:1; font-size:14.5px; line-height:1.6; color:var(--muted); }
.tier svg{ grid-column:2; grid-row:1 / span 2; width:16px; height:12px; color:var(--teal-ink); transition:transform .2s var(--ease); }
.tier a:hover svg{ transform:translateX(3px); }
.tier-note{ margin:-12px 0 22px; }

/* YouTube */
.yt{ overflow:hidden; }
.yt-grid{ position:relative; z-index:2; display:grid; grid-template-columns:40fr 60fr; gap:var(--col-gap); align-items:center; }
.yt-copy .body{ margin:20px 0 30px; }
.yt-frame{
  position:relative; aspect-ratio:16 / 9; border-radius:16px; overflow:hidden;
  background:var(--ink-deep); box-shadow:0 26px 54px rgba(0,0,0,.30);
}
.yt-frame iframe{ position:absolute; inset:0; width:100%; height:100%; border:0; }
/* click to load facade: a poster and a real button, swapped for the iframe on click */
.yt-facade{
  position:absolute; inset:0; width:100%; height:100%; padding:0; border:0; margin:0;
  display:block; cursor:pointer; background:var(--ink-deep); color:var(--paper); font:inherit; text-align:left;
}
.yt-facade picture{ display:contents; }
.yt-poster{ position:absolute; inset:0; width:100%; height:100%; object-fit:cover; transition:transform .6s var(--ease); }
.yt-facade::after{ content:""; position:absolute; inset:0; background:linear-gradient(to top, rgba(7,47,58,.82) 0%, rgba(7,47,58,0) 46%); pointer-events:none; }
.yt-play{
  position:absolute; z-index:1; left:30%; top:44%; transform:translate(-50%,-50%);
  width:clamp(58px,6.4vw,84px); height:clamp(58px,6.4vw,84px); border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  background:var(--teal); color:var(--ink-deep);
  box-shadow:0 0 0 10px rgba(54,182,165,.22), 0 18px 34px rgba(0,0,0,.30);
  transition:transform .25s var(--ease), box-shadow .25s var(--ease);
}
.yt-play svg{ width:40%; height:40%; margin-left:6%; }
.yt-label{ position:absolute; z-index:1; left:clamp(16px,2.4vw,28px); right:clamp(16px,2.4vw,28px); bottom:clamp(14px,2vw,24px); display:grid; gap:3px; }
.yt-label strong{ font-size:clamp(15px,1.3vw,18px); font-weight:800; letter-spacing:-.2px; }
.yt-label span{ font-size:clamp(12px,.95vw,13.5px); line-height:1.45; color:var(--body-on-dark); }
.yt-facade:hover .yt-play, .yt-facade:focus-visible .yt-play{ transform:translate(-50%,-50%) scale(1.07); box-shadow:0 0 0 14px rgba(54,182,165,.26), 0 20px 38px rgba(0,0,0,.34); }
.yt-facade:hover .yt-poster{ transform:scale(1.02); }
.yt-facade:focus-visible{ outline:3px solid var(--teal-bright); outline-offset:-5px; }

/* newsletter */
.newsletter-card{
  max-width:880px; margin-inline:auto; text-align:center;
  background:var(--paper); border:1px solid var(--hair); border-radius:22px;
  padding:clamp(34px,4.4vw,60px) clamp(22px,4vw,64px);
}
.newsletter-card > .body{ max-width:62ch; margin:18px auto 28px; }
.news-form{ max-width:520px; margin-inline:auto; text-align:left; }
.news-field{ margin-top:0; }
.news-field + .news-field{ margin-top:16px; }
.news-form .field > input{ width:100%; }
.news-row{ display:flex; gap:10px; }
.news-row input{ flex:1 1 auto; min-width:0; }
.news-btn{ flex:0 0 auto; height:auto; padding-inline:24px; }
.news-done{ justify-content:center; align-items:center; }
.news-done p{ color:var(--muted); font-size:15px; }
.newsletter-card .small-line{ margin-top:18px; }

.nav a{ white-space:nowrap; }

/* Tablet: five nav items plus a longer booking label no longer fit beside the
   brand, so the collapsed menu from the mobile block starts here instead. */
@media (min-width: 768px) and (max-width: 1023px){
  .nav-toggle{ display:flex; }
  .site-header .btn-header{ display:none; }
  .nav{
    position:absolute; left:0; right:0; top:var(--header-h);
    margin:0; flex-direction:column; align-items:stretch; gap:0;
    background:var(--ink-deep);
    border-top:1px solid rgba(255,255,255,.10);
    box-shadow:0 20px 40px rgba(0,0,0,.28);
    max-height:0; overflow:hidden;
    transition:max-height .28s var(--ease);
  }
  body.nav-open .nav{ max-height:440px; }
  .nav a{ padding:15px var(--gutter); font-size:16px; border-bottom:1px solid rgba(255,255,255,.07); }
  .nav a::after{ display:none; }
  .nav .btn-mobile{ display:inline-flex; align-self:flex-start; margin:16px var(--gutter) 20px; border-bottom:0; }
}

@media (max-width: 1023px){
  .map-split, .map-ind-grid, .yt-grid{ grid-template-columns:1fr; }
  .coaching .approach-grid{ grid-template-columns:1fr 1fr; }
  .steps-row{ grid-template-columns:1fr; gap:0; }
  .steps-row li{ flex-direction:row; padding-block:22px; }
  .steps-row li:last-child{ padding-bottom:0; }
}

@media (max-width: 767px){
  .assess-grid{ grid-template-columns:1fr; }
  .coaching .approach-grid{ grid-template-columns:1fr; }
  .coaching .approach-visual{ max-width:360px; }
  .problem .prose, .variations-note{ text-align:left; }
  .map-head, .section-head{ text-align:left; }
  .map-head .h2, .section-head .h2.center, .faq-section .h2.center, .newsletter-card .h2.center,
  .problem .h2.center, .how .h2.center{ text-align:left; }
  .newsletter-card{ text-align:left; }
  .newsletter-card > .body{ margin-inline:0; }
  .news-done{ justify-content:flex-start; }
  .center-btn{ justify-content:flex-start; }
  .center-btn .btn, .map-outcomes .btn, .map-ind-panel > .btn{ width:100%; white-space:normal; text-align:center; }
  .faq-item summary{ padding:18px; }
  .faq-body{ padding:0 18px 20px; }
  .tier a{ padding:16px 18px; }
}

@media (max-width: 400px){
  .news-row{ flex-direction:column; }
  .news-btn{ width:100%; height:48px; }
}
