/* ==========================================================================
   Klean IQ — coded preview stylesheet (v2 — matched to her live design language)
   Type scale, weights, line-heights and letter-spacing taken from her actual
   Squarespace Site Styles. Composition matched to her live homepage:
   asymmetric two-column sections, section-theme rhythm (cream / white / dark /
   coral). CORNERS RULE (per Sarwar): images + boxes = SHARP; buttons + form
   fields = ROUND. Only Squarespace-7.1-reproducible patterns.
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Sansita:wght@400;700;800&family=Source+Sans+3:wght@300;400;600;700&family=Nunito+Sans:wght@400;600;700&display=swap');

:root{
  --cream:#FDF0E6;
  --navy:#0B0D63;
  --coral:#F08E80;          /* her accent coral */
  --coral-deep:#BC5645;     /* action / buttons — WCAG AA on white (~4.6:1) */
  --coral-deep-hover:#A64A3B;
  --coral-wash:#FBE4DD;
  --white:#FFFFFF;
  --ink:#141414;            /* her dark section is near-black */
  --line:rgba(11,13,99,.12);
  --maxw:1180px;
  --pad:26px;
  --font-head:'Sansita', Georgia, 'Times New Roman', serif;
  --font-body:'Source Sans 3','Source Sans Pro', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  --font-btn:'Nunito Sans', var(--font-body);
}

*{box-sizing:border-box;}
html{-webkit-text-size-adjust:100%;scroll-behavior:smooth;font-size:16px;}
body{
  margin:0;
  font-family:var(--font-body);
  font-size:1rem;                 /* 16px — her base */
  line-height:1.5;                /* her paragraph line-height */
  color:var(--navy);
  background:var(--cream);
  -webkit-font-smoothing:antialiased;
}
img{max-width:100%;display:block;height:auto;border-radius:0;}   /* images: SHARP */
a{color:var(--navy);}

/* ---------- type scale (her Site Styles, base 16px) ---------- */
/* Sansita 700 / 1.2 / -0.02em (her Site Styles), sizes made FLUID so they scale
   up on desktop the way Squarespace 7.1 renders hers (her 4rem is the base, not the cap). */
h1,h2,h3,h4{font-family:var(--font-head);color:var(--navy);margin:0 0 .4em;
  font-weight:700;line-height:1.1;letter-spacing:-0.02em;}
h1{font-size:clamp(2.55rem, 2.1rem + 2.2vw, 4.4rem);line-height:1.06;}   /* her ~62px @1280 / ~66 @1600 */
h2{font-size:clamp(1.9rem, 1.55rem + 1.6vw, 3rem);}                    /* her ~43.6 @1280 */
h3{font-size:clamp(1.5rem, 1.3rem + 1.15vw, 2.3rem);line-height:1.14;} /* her ~34.4 @1280 */
h4{font-size:clamp(1.2rem, 1.05rem + 0.65vw, 1.7rem);line-height:1.18;}/* her ~25.2 @1280 */
p{margin:0 0 1em;}
.lead{font-size:clamp(1.15rem, 1rem + 0.55vw, 1.5rem);line-height:1.5;}   /* Paragraph 1 */
.small{font-size:0.9rem;line-height:1.5;}  /* Paragraph 3 */
.measure{max-width:64ch;}

.eyebrow{
  font-family:var(--font-body);
  font-size:0.9rem;font-weight:700;letter-spacing:.10em;text-transform:uppercase;
  color:#A8473A;margin:0 0 .7em;   /* darker coral → passes WCAG-AA (4.5:1) on cream & white; #BC5645 was 4.12 */
}
.theme-navy .eyebrow,.theme-dark .eyebrow{color:var(--coral);}
.theme-coral .eyebrow{color:#fff;}

/* ---------- layout ---------- */
.section{padding:104px 0;}
.container{width:92%;max-width:1520px;margin:0 auto;padding:0;}   /* wide, like her ~91% content */
.narrow{max-width:1000px;margin-left:auto;margin-right:auto;}
.center{text-align:center;}
.section .container>*:last-child{margin-bottom:0;}
.btnrow{margin-top:28px;display:flex;flex-wrap:wrap;gap:14px;}
.center .btnrow{justify-content:center;}

/* asymmetric two-column: heading/label left, content right (her "Who we are") */
.split{display:grid;grid-template-columns:1fr 1.7fr;gap:52px;align-items:start;}
/* even two-column: text left, media right (her hero / contact / founder) */
.duo{display:grid;grid-template-columns:1.1fr 0.9fr;gap:56px;align-items:center;}

/* ---------- section themes (her rhythm) ---------- */
.theme-light{background:var(--cream);color:var(--navy);}
.theme-white{background:var(--white);color:var(--navy);}
.theme-coral{background:var(--coral-deep);color:#fff;}          /* ORANGE band — ALWAYS white text */
.theme-dark{background:var(--ink);color:#f3efe9;}               /* charcoal band ("how it works") */
.theme-navy{background:var(--ink);color:#f3efe9;}               /* alias → charcoal. NEVER a blue background */
.theme-dark h1,.theme-dark h2,.theme-dark h3,.theme-dark h4,
.theme-navy h1,.theme-navy h2,.theme-navy h3,.theme-navy h4,
.theme-coral h1,.theme-coral h2,.theme-coral h3,.theme-coral h4{color:#fff;}
.theme-dark a,.theme-navy a{color:var(--cream);}
.theme-coral a{color:#fff;}   /* pure white on orange = 4.6:1 (cream was 4.12) */
.theme-dark .btn-primary,.theme-navy .btn-primary{color:#fff;}   /* primary btn keeps white text on its coral fill (theme-dark a was tinting it cream=4.12) */

/* ---------- buttons: ROUND (pill) ---------- */
.btn{
  display:inline-flex;align-items:center;justify-content:center;
  font-family:var(--font-btn);font-weight:700;font-size:0.95rem;letter-spacing:.02em;line-height:1;
  text-decoration:none;cursor:pointer;text-align:center;
  padding:15px 32px;min-height:46px;border-radius:999px;border:2px solid transparent;
}
.btn-primary{background:var(--coral-deep);color:#fff;border-color:var(--coral-deep);}
.btn-ghost{background:transparent;color:var(--navy);border-color:var(--navy);}
.theme-dark .btn-ghost,.theme-navy .btn-ghost{color:var(--cream);border-color:var(--cream);}
.theme-coral .btn-primary{background:#fff;border-color:#fff;color:var(--coral-deep);}  /* white button on orange */
.theme-coral .btn-ghost{color:#fff;border-color:#fff;}
.btn-primary:hover{background:var(--coral-deep-hover);border-color:var(--coral-deep-hover);}
.btn-ghost:hover{background:var(--ink);color:#fff;}
.theme-coral .btn-primary:hover{background:var(--cream);border-color:var(--cream);color:var(--coral-deep);}
.theme-coral .btn-ghost:hover{background:#fff;color:var(--coral-deep);}
.theme-dark .btn-ghost:hover,.theme-navy .btn-ghost:hover{background:var(--cream);color:var(--navy);}
@media(prefers-reduced-motion:no-preference){
  .btn{transition:background-color .18s ease,color .18s ease,transform .18s ease,box-shadow .18s ease;}
  .btn:hover{transform:translateY(-1px);box-shadow:0 6px 16px rgba(11,13,99,.16);}
}
a:focus-visible,.btn:focus-visible{outline:2px solid var(--navy);outline-offset:2px;}
.theme-dark a:focus-visible,.theme-navy a:focus-visible,.theme-coral a:focus-visible{outline-color:#fff;}

/* ---------- header ---------- */
.site-header{position:sticky;top:0;z-index:50;background:var(--cream);border-bottom:1px solid var(--line);}
.site-header .container{display:flex;align-items:center;justify-content:space-between;gap:20px;padding-top:14px;padding-bottom:14px;position:relative;}
.logo{display:flex;align-items:center;text-decoration:none;}
.logo img{height:72px;width:auto;}
.site-footer .logo img{height:66px;}
.nav{display:flex;align-items:center;gap:30px;}
.navlink{font-family:var(--font-btn);font-weight:700;font-size:0.9rem;letter-spacing:.02em;text-decoration:none;color:var(--navy);}
.navlink:hover{color:var(--coral-deep);}
.nav .btn{padding:11px 22px;min-height:0;}
.navcheck,.navtoggle{display:none;}

/* ---------- hero + media (images: SHARP) ---------- */
.hero-copy h1{margin-bottom:.3em;}
/* image area: LARGE + clearly visible (real photo drops straight in via .media img) */
.media{
  position:relative;background:#e5d3c1;      /* warm neutral — reads as an image area on cream */
  border:1px solid rgba(11,13,99,.16);border-radius:0;min-height:660px;
  display:flex;align-items:center;justify-content:center;text-align:center;overflow:hidden;
}
.media img{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;object-position:center top;border-radius:0;}
.media .ph{position:relative;z-index:1;padding:26px;color:rgba(11,13,99,.62);max-width:340px;}
.media .ph svg{width:58px;height:58px;opacity:.55;margin-bottom:12px;}
.media .cap{display:block;font-size:.9rem;font-style:italic;}

/* ---------- boxes / cards: SHARP corners ---------- */
.grid{display:grid;gap:24px;margin-top:30px;}
.grid-2{grid-template-columns:repeat(2,1fr);}
.grid-3{grid-template-columns:repeat(3,1fr);}
.card{background:var(--white);border:1px solid var(--line);border-radius:0;padding:28px;display:flex;flex-direction:column;}
.theme-white .card{background:var(--cream);}
/* Cards on dark/orange bands: no white box (text is already white → keep it on the band, add a soft outline) */
.theme-coral .card,.theme-dark .card,.theme-navy .card{background:transparent;border-color:rgba(255,255,255,.45);}
.theme-coral .card p,.theme-dark .card p,.theme-navy .card p{color:#fff;}
.card h3{font-size:1.5rem;margin-bottom:.35em;}
.card .grow{flex:1;}
.card .btn{align-self:flex-start;margin-top:8px;}

/* who-we-serve dot-separated labels (her "·" style) */
.serve-row{display:flex;flex-wrap:wrap;justify-content:center;gap:6px 0;margin:14px 0 18px;font-weight:700;font-size:1.1rem;}
.serve-row span{padding:0 18px;position:relative;}
.serve-row span+span::before{content:"";position:absolute;left:-3px;top:50%;transform:translateY(-50%);width:6px;height:6px;border-radius:50%;background:var(--coral-deep);}

/* pillars */
.pillar .mark{font-size:2.4rem;line-height:1;margin-bottom:.2em;}

/* method steps */
.steps{display:grid;grid-template-columns:repeat(5,1fr);gap:22px;margin-top:34px;}
.step .n{font-family:var(--font-head);font-size:2rem;color:var(--coral);line-height:1;}
.step h4{font-size:1.3rem;margin:.25em 0 .3em;}
.theme-navy .step h4,.theme-dark .step h4{color:#fff;}
.step p{font-size:0.95rem;line-height:1.5;margin:0;}

/* founder */
.founder{display:grid;grid-template-columns:1.5fr 1fr;gap:52px;align-items:start;}
.founder .media{min-height:560px;}
.creds{font-family:var(--font-btn);font-weight:700;font-size:0.9rem;letter-spacing:.02em;margin:-.2em 0 1em;}

/* misc */
.pullquote{font-family:var(--font-head);font-size:1.7rem;line-height:1.35;font-weight:700;}
.emph{font-size:1.4rem;font-weight:700;margin:.6em 0;}

/* form fields: ROUND corners */
.field{margin-bottom:18px;}
.field label{display:block;font-weight:700;margin-bottom:6px;font-size:0.95rem;}
.field .req{color:var(--coral-deep);}
.field input,.field select,.field textarea{
  width:100%;padding:13px 15px;border:1.5px solid var(--line);border-radius:10px;   /* ROUND */
  font:inherit;font-size:1rem;color:var(--navy);background:#fff;}
.field textarea{min-height:140px;resize:vertical;}
.field input:focus,.field select:focus,.field textarea:focus{outline:2px solid var(--navy);outline-offset:1px;border-color:var(--navy);}
.form-note{font-size:.85rem;color:rgba(11,13,99,.7);}
.confirm{background:var(--coral-wash);border:1px solid var(--line);border-radius:0;padding:26px;}

/* embeds / numbered lists */
.embed-ph{background:#fff;border:1.5px dashed var(--coral-deep);border-radius:0;padding:48px 24px;text-align:center;color:rgba(11,13,99,.78);}
.embed-frame{width:100%;border:1px solid var(--line);border-radius:0;background:#fff;}
.olist{counter-reset:s;list-style:none;padding:0;margin:1.2em 0 0;}
.olist li{position:relative;padding:5px 0 20px 56px;font-size:1.05rem;}
.olist li::before{counter-increment:s;content:counter(s);position:absolute;left:0;top:-2px;width:38px;height:38px;
  border-radius:999px;background:var(--coral-deep);color:#fff;font-family:var(--font-head);font-weight:700;
  display:flex;align-items:center;justify-content:center;}

/* footer */
.site-footer{background:var(--cream);color:var(--navy);padding:56px 0 40px;border-top:1px solid var(--line);}
.site-footer a{color:var(--navy);text-decoration:none;}
.site-footer a:hover{color:var(--coral-deep);}
.footer-top{display:flex;flex-wrap:wrap;justify-content:space-between;gap:24px;align-items:center;}
.footer-nav{display:flex;flex-wrap:wrap;gap:24px;font-family:var(--font-btn);font-weight:700;font-size:0.9rem;}
.footer-meta{font-size:.85rem;color:rgba(11,13,99,.7);margin-top:22px;line-height:1.7;}

/* ---------- responsive ---------- */
@media(max-width:900px){
  html{font-size:15px;}
  .section{padding:56px 0;}
  .split,.duo,.founder{grid-template-columns:1fr;gap:28px;}
  .duo .media,.founder .media{order:-1;min-height:230px;}
  .grid-3,.grid-2{grid-template-columns:1fr;}
  .steps{grid-template-columns:1fr 1fr;}
  .nav{display:none;position:absolute;left:0;right:0;top:100%;flex-direction:column;align-items:flex-start;
       gap:16px;background:var(--cream);padding:18px 26px;border-bottom:1px solid var(--line);}
  .navcheck:checked~.nav{display:flex;}
  .navtoggle{display:block;width:30px;height:22px;position:relative;cursor:pointer;}
  .navtoggle span,.navtoggle span::before,.navtoggle span::after{
    content:"";position:absolute;left:0;right:0;height:3px;background:var(--navy);border-radius:2px;}
  .navtoggle span{top:9px;} .navtoggle span::before{top:0;} .navtoggle span::after{top:18px;}
}
@media(max-width:560px){ .steps{grid-template-columns:1fr;} }

/* team cards (placeholder-friendly) */
.team-card{background:var(--white);border:1px solid var(--line);border-radius:0;overflow:hidden;display:flex;flex-direction:column;}
.theme-white .team-card{background:var(--cream);}
.team-photo{position:relative;width:100%;aspect-ratio:4/5;background:#e5d3c1;overflow:hidden;}
.team-photo img{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;object-position:center top;}
.team-card .tbody{padding:20px 22px;}
.team-card h3{font-size:1.4rem;margin-bottom:.05em;}
.team-card .role{font-family:var(--font-btn);font-weight:700;font-size:.8rem;letter-spacing:.03em;text-transform:uppercase;color:var(--coral-deep);margin:0 0 .7em;}
.team-card p{margin:0;}

/* community gallery */
.gallery{display:grid;grid-template-columns:repeat(4,1fr);gap:16px;margin-top:32px;}
.gallery.gallery-3{grid-template-columns:repeat(3,1fr);}
.gallery.gallery-2{grid-template-columns:repeat(2,1fr);}
.gallery .tile{position:relative;aspect-ratio:1/1;background:#e5d3c1;border:1px solid var(--line);overflow:hidden;display:flex;align-items:center;justify-content:center;}
.gallery .tile img{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;}
.gallery .tile .lab{font-size:.8rem;font-style:italic;color:rgba(11,13,99,.6);padding:14px;text-align:center;}
@media(max-width:760px){ .gallery{grid-template-columns:repeat(2,1fr);} }

/* ---------- About / Services page components (restored) ---------- */
.vlist{list-style:none;padding:0;margin:1.1em 0 0;}
.vlist li{padding:12px 0 12px 30px;position:relative;border-bottom:1px solid var(--line);font-size:1.1rem;}
.vlist li:last-child{border-bottom:0;}
.vlist li::before{content:"";position:absolute;left:0;top:19px;width:11px;height:11px;border-radius:50%;background:var(--coral-deep);}
.stmt{border-left:3px solid var(--coral-deep);padding:4px 0 4px 18px;margin:0 0 16px;font-size:1.15rem;}
.samples{font-weight:700;margin:.2em 0 .9em;}
details.acc{border:1px solid var(--line);border-radius:0;margin-top:auto;background:rgba(255,255,255,.55);}
.theme-white details.acc{background:rgba(253,240,230,.6);}
details.acc summary{cursor:pointer;padding:13px 16px;font-weight:700;list-style:none;font-size:.95rem;color:var(--navy);}
details.acc summary::-webkit-details-marker{display:none;}
details.acc summary::after{content:"+";float:right;font-size:1.15rem;line-height:1;color:var(--coral-deep);}
details.acc[open] summary::after{content:"\2013";}
details.acc .acc-body{padding:2px 16px 14px;font-size:.95rem;line-height:1.7;color:rgba(11,13,99,.9);}
.fund h4{color:var(--coral-deep);margin-bottom:.2em;}
