/* =====================================================================
   TRI-K GROUP — Equity-Centered Consulting
   Design system: warm & humane
   Palette: terracotta · forest · ochre · cream
   Type: Fraunces (display) + Inter (text)
   ===================================================================== */

/* ---------- Tokens ---------- */
:root {
  /* Color */
  --clay:        #BF5A36;
  --clay-deep:   #9C4327;
  --clay-soft:   #E7B49A;
  --clay-wash:   #F6E4D8;

  --forest:      #294A3B;
  --forest-deep: #1B3328;
  --forest-soft: #6E8C7C;

  --ochre:       #C98A3F;
  --ochre-soft:  #E7C893;

  --cream:       #FBF5EB;
  --cream-2:     #F4E9D8;
  --sand:        #EADDC8;

  --ink:         #2A2320;
  --ink-soft:    #5E534B;
  --ink-faint:   #8A7E73;

  --white:       #ffffff;
  --line:        rgba(42, 35, 32, .12);
  --line-soft:   rgba(42, 35, 32, .07);

  /* Type */
  --serif: "Fraunces", "Iowan Old Style", Georgia, serif;
  --sans:  "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  /* Rhythm */
  --maxw: 1200px;
  --gutter: clamp(20px, 5vw, 64px);
  --section-y: clamp(64px, 9vw, 132px);
  --radius: 18px;
  --radius-lg: 30px;
  --radius-sm: 11px;

  /* Motion */
  --ease: cubic-bezier(.22, .61, .36, 1);
  --shadow-sm: 0 2px 10px rgba(42, 35, 32, .06);
  --shadow-md: 0 18px 50px -22px rgba(42, 35, 32, .30);
  --shadow-lg: 0 40px 90px -40px rgba(27, 51, 40, .45);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}

body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  font-size: 1.02rem;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul { list-style: none; padding: 0; }
:focus-visible { outline: 3px solid var(--clay); outline-offset: 3px; border-radius: 4px; }
::selection { background: var(--clay); color: #fff; }

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 480;
  line-height: 1.06;
  letter-spacing: -0.01em;
  font-optical-sizing: auto;
  color: var(--ink);
}
.display {
  font-size: clamp(2.7rem, 7vw, 5.1rem);
  font-weight: 460;
  line-height: 1.0;
  letter-spacing: -0.02em;
}
h2.section-title { font-size: clamp(2rem, 4.4vw, 3.3rem); }
h3 { font-size: clamp(1.3rem, 2.4vw, 1.7rem); }
p { color: var(--ink-soft); }
.lead { font-size: clamp(1.12rem, 1.8vw, 1.36rem); line-height: 1.6; color: var(--ink-soft); }
em { font-style: italic; }

/* Eyebrow */
.eyebrow {
  display: inline-flex; align-items: center; gap: .6em;
  font-family: var(--sans);
  font-size: .76rem; font-weight: 600;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--clay-deep);
}
.eyebrow::before {
  content: ""; width: 26px; height: 1.5px; background: var(--clay); opacity: .8;
}
.eyebrow.center::after {
  content: ""; width: 26px; height: 1.5px; background: var(--clay); opacity: .8;
}
.eyebrow.on-dark { color: var(--ochre-soft); }
.eyebrow.on-dark::before, .eyebrow.on-dark.center::after { background: var(--ochre); }

/* ---------- Layout ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding-inline: var(--gutter); }
.wrap-narrow { max-width: 880px; }
section { padding-block: var(--section-y); }
.text-center { text-align: center; }
.mx-auto { margin-inline: auto; }
.measure { max-width: 62ch; }
.measure-sm { max-width: 48ch; }

.section-head { max-width: 760px; margin-bottom: clamp(34px, 5vw, 60px); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head .eyebrow { margin-bottom: 18px; }
.section-head p { margin-top: 18px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: .6em;
  font-family: var(--sans); font-weight: 600; font-size: .98rem;
  padding: .92em 1.6em; border-radius: 100px;
  transition: transform .35s var(--ease), background .3s var(--ease), box-shadow .35s var(--ease), color .3s var(--ease);
  white-space: nowrap;
}
.btn svg { width: 17px; height: 17px; transition: transform .35s var(--ease); }
.btn:hover svg { transform: translateX(4px); }
.btn-primary { background: var(--clay); color: #fff; box-shadow: 0 12px 26px -12px rgba(191,90,54,.7); }
.btn-primary:hover { background: var(--clay-deep); transform: translateY(-3px); box-shadow: 0 18px 34px -12px rgba(191,90,54,.75); }
.btn-dark { background: var(--forest); color: var(--cream); }
.btn-dark:hover { background: var(--forest-deep); transform: translateY(-3px); }
.btn-ghost { color: var(--ink); border: 1.5px solid var(--line); }
.btn-ghost:hover { border-color: var(--ink); transform: translateY(-3px); }
.btn-light { background: var(--cream); color: var(--forest-deep); }
.btn-light:hover { background: #fff; transform: translateY(-3px); }
.btn-outline-light { color: var(--cream); border: 1.5px solid rgba(251,245,235,.35); }
.btn-outline-light:hover { border-color: var(--cream); transform: translateY(-3px); }
.btn-row { display: flex; flex-wrap: wrap; gap: 14px; }

.textlink {
  display: inline-flex; align-items: center; gap: .5em;
  font-weight: 600; color: var(--clay-deep);
  border-bottom: 1.5px solid transparent; padding-bottom: 2px;
  transition: border-color .3s var(--ease), gap .3s var(--ease);
}
.textlink svg { width: 16px; height: 16px; transition: transform .3s var(--ease); }
.textlink:hover { border-color: var(--clay); }
.textlink:hover svg { transform: translateX(4px); }

/* =====================================================================
   HEADER / NAV
   ===================================================================== */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  padding-block: 16px;
  transition: background .4s var(--ease), box-shadow .4s var(--ease), padding .4s var(--ease);
}
.site-header.scrolled {
  background: rgba(251, 245, 235, .82);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  box-shadow: 0 1px 0 var(--line-soft);
  padding-block: 10px;
}
.nav { display: flex; align-items: center; justify-content: space-between; gap: 24px; }

.brand { display: inline-flex; align-items: center; gap: 12px; }
.brand .mark { width: 42px; height: 42px; flex: none; transition: transform .5s var(--ease); }
.brand:hover .mark { transform: rotate(-8deg); }
.brand-text { line-height: 1; }
.brand-name { font-family: var(--serif); font-size: 1.32rem; font-weight: 500; letter-spacing: -.01em; color: var(--ink); }
.brand-sub { display: block; font-size: .64rem; font-weight: 600; letter-spacing: .22em; text-transform: uppercase; color: var(--clay-deep); margin-top: 3px; }

.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a {
  position: relative; padding: 8px 14px; border-radius: 100px;
  font-size: .95rem; font-weight: 500; color: var(--ink-soft);
  transition: color .25s var(--ease), background .25s var(--ease);
}
.nav-links a:hover { color: var(--ink); }
.nav-links a.active { color: var(--clay-deep); font-weight: 600; }
.nav-cta { margin-left: 10px; }

.nav-toggle { display: none; width: 46px; height: 46px; border-radius: 50%; align-items: center; justify-content: center; }
.nav-toggle span { position: relative; width: 20px; height: 1.6px; background: var(--ink); transition: .3s var(--ease); }
.nav-toggle span::before, .nav-toggle span::after { content: ""; position: absolute; left: 0; width: 20px; height: 1.6px; background: var(--ink); transition: .3s var(--ease); }
.nav-toggle span::before { top: -6px; }
.nav-toggle span::after { top: 6px; }
body.menu-open .nav-toggle span { background: transparent; }
body.menu-open .nav-toggle span::before { top: 0; transform: rotate(45deg); }
body.menu-open .nav-toggle span::after { top: 0; transform: rotate(-45deg); }

@media (max-width: 920px) {
  .nav-toggle { display: inline-flex; }
  .nav-links {
    position: fixed; inset: 0 0 0 auto; width: min(360px, 86vw);
    flex-direction: column; align-items: stretch; justify-content: center; gap: 6px;
    background: var(--cream); padding: 40px 30px;
    transform: translateX(102%); transition: transform .45s var(--ease);
    box-shadow: var(--shadow-lg);
  }
  body.menu-open .nav-links { transform: translateX(0); }
  .nav-links a { padding: 14px 16px; font-size: 1.15rem; border-bottom: 1px solid var(--line-soft); border-radius: 0; }
  .nav-links a.active::after { display: none; }
  .nav-cta { margin: 14px 0 0; justify-content: center; }
  .nav-backdrop { position: fixed; inset: 0; background: rgba(27,51,40,.4); opacity: 0; visibility: hidden; transition: .4s var(--ease); z-index: 99; }
  body.menu-open .nav-backdrop { opacity: 1; visibility: visible; }
}

/* =====================================================================
   HERO
   ===================================================================== */
.hero {
  position: relative; padding-top: clamp(130px, 18vh, 200px);
  padding-bottom: clamp(60px, 9vw, 120px);
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; z-index: -2; background:
  radial-gradient(120% 90% at 88% 8%, var(--clay-wash) 0%, transparent 55%),
  radial-gradient(100% 80% at 0% 100%, #F0E6D2 0%, transparent 60%),
  var(--cream); }
.hero-blob { position: absolute; z-index: -1; filter: blur(2px); opacity: .9; pointer-events: none; }
.hero-blob.one { width: 520px; top: -120px; right: -120px; color: var(--clay-soft); opacity: .5; }
.hero-blob.two { width: 360px; bottom: -140px; left: -120px; color: var(--ochre-soft); opacity: .42; }

.hero-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(30px, 5vw, 70px); align-items: center; }
.hero-eyebrow { margin-bottom: 26px; }
.hero h1 { margin-bottom: 26px; }
.hero h1 .accent { color: var(--clay); font-style: italic; }
.hero .lead { margin-bottom: 36px; max-width: 46ch; }
.hero-cta { margin-bottom: 40px; }
.hero-meta { display: flex; flex-wrap: wrap; gap: 12px 30px; align-items: center; color: var(--ink-faint); font-size: .9rem; }
.hero-meta b { color: var(--ink); font-weight: 600; }

/* Hero portrait card */
.hero-figure { position: relative; }
.portrait {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  aspect-ratio: 4 / 4.7; box-shadow: var(--shadow-lg);
  background:
    linear-gradient(150deg, var(--forest) 0%, var(--forest-deep) 100%);
}
.portrait::after {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(80% 60% at 70% 18%, rgba(201,138,63,.34), transparent 60%);
}
.portrait .ph-figure { position: absolute; inset: 0; display: flex; align-items: flex-end; justify-content: center; }
.portrait .ph-note {
  position: absolute; left: 16px; bottom: 16px; right: 16px;
  font-size: .72rem; color: rgba(251,245,235,.62); z-index: 1; text-align: center;
  letter-spacing: .02em;
}
.portrait .portrait-fallback { position: absolute; inset: 0; z-index: 1; display: flex; align-items: flex-end; justify-content: center; }
.portrait img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 22%; z-index: 2; }

.hero-badge {
  position: absolute; bottom: -22px; left: -22px; z-index: 4;
  background: var(--cream); border-radius: var(--radius); padding: 16px 20px;
  box-shadow: var(--shadow-md); display: flex; align-items: center; gap: 14px;
  border: 1px solid var(--line-soft);
}
.hero-badge .num { font-family: var(--serif); font-size: 2rem; line-height: 1; color: var(--clay); }
.hero-badge .lbl { font-size: .8rem; line-height: 1.3; color: var(--ink-soft); max-width: 12ch; }

.hero-credential {
  position: absolute; top: 26px; right: -18px; z-index: 4;
  background: rgba(251,245,235,.92); backdrop-filter: blur(6px);
  border-radius: 100px; padding: 9px 16px; box-shadow: var(--shadow-sm);
  font-size: .8rem; font-weight: 600; color: var(--forest); display: flex; align-items: center; gap: 8px;
  border: 1px solid var(--line-soft);
}
.hero-credential .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--clay); }

@media (max-width: 860px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-figure { max-width: 420px; margin: 10px auto 0; width: 100%; }
}

/* =====================================================================
   STATS STRIP
   ===================================================================== */
.stats-strip { background: var(--forest); color: var(--cream); }
.stats-strip .wrap { padding-block: clamp(40px, 6vw, 64px); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.stat { text-align: center; padding: 8px; }
.stat .num { font-family: var(--serif); font-size: clamp(2.5rem, 5vw, 3.6rem); line-height: 1; color: #fff; font-weight: 460; }
.stat .num .suffix { color: var(--ochre-soft); }
.stat .lbl { margin-top: 10px; font-size: .9rem; color: rgba(251,245,235,.74); letter-spacing: .01em; }
.stats-grid.on-light .stat .num { color: var(--forest); }
.stats-grid.on-light .stat .num .suffix { color: var(--clay); }
.stats-grid.on-light .stat .lbl { color: var(--ink-soft); }
@media (max-width: 680px) { .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 30px 16px; } }

/* =====================================================================
   INTRO / SPLIT
   ===================================================================== */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(34px, 6vw, 84px); align-items: center; }
.split.narrow-media { grid-template-columns: 1.1fr .9fr; }
/* Executive bio: give the prose the wider column, top-align, cap the measure,
   and let the portrait ride along (sticky) so the long bio reads cleanly. */
.split.bio-split { grid-template-columns: .8fr 1.2fr; align-items: start; gap: clamp(32px, 5vw, 68px); }
.split.bio-split .split-media { position: sticky; top: 100px; align-self: start; }
/* Sober, executive portrait frame: restrained radius, hairline, soft shadow, still image. */
.split.bio-split .split-media .frame { border-radius: 8px; box-shadow: 0 14px 34px -22px rgba(42,35,32,.42); border: 1px solid rgba(42,35,32,.10); background: var(--sand); }
.split.bio-split .split-media .frame img { transform: none; }
.split.bio-split .split-copy { max-width: 66ch; }
.split.bio-split .split-copy p { margin-top: 22px; color: var(--ink-soft); }
.split.bio-split .split-copy > p:first-child { margin-top: 0; }
.split-media { position: relative; }
.split-media .frame {
  border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 5/5.4;
  background: linear-gradient(160deg, var(--clay) 0%, var(--clay-deep) 100%);
  box-shadow: var(--shadow-md); position: relative;
}
.split-media .frame.green { background: linear-gradient(160deg, var(--forest-soft), var(--forest-deep)); }
.split-media .frame.sand { background: linear-gradient(160deg, var(--sand), var(--clay-soft)); }
.split-media .frame img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 20%; z-index: 2; }
.split-media .frame .frame-fallback { position: absolute; inset: 0; z-index: 1; }
.split-media .ph-note { position: absolute; left: 18px; bottom: 16px; right: 18px; font-size: .72rem; color: rgba(255,255,255,.7); }
.split-quote {
  position: absolute; right: -20px; bottom: 30px; max-width: 240px;
  background: var(--cream); padding: 18px 22px; border-radius: var(--radius);
  box-shadow: var(--shadow-md); font-family: var(--serif); font-size: 1.05rem; line-height: 1.35; color: var(--ink);
  border: 1px solid var(--line-soft);
}
.split-list { margin-top: 28px; display: grid; gap: 16px; }
.split-list li { display: flex; gap: 14px; align-items: flex-start; }
.split-list .ic { flex: none; width: 30px; height: 30px; border-radius: 9px; background: var(--clay-wash); color: var(--clay-deep); display: grid; place-items: center; margin-top: 2px; }
.split-list .ic svg { width: 16px; height: 16px; }
.split-list b { color: var(--ink); font-weight: 600; }
.split-list span { color: var(--ink-soft); font-size: .96rem; }
@media (max-width: 800px) {
  .split, .split.narrow-media, .split.bio-split { grid-template-columns: 1fr; }
  .split.reverse .split-media { order: -1; }
  .split-media { max-width: 460px; }
  .split.bio-split .split-media { position: static; }
  .split.bio-split .split-copy { max-width: none; }
}

/* =====================================================================
   CARDS — services
   ===================================================================== */
.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.card-grid.two { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 940px) { .card-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .card-grid, .card-grid.two { grid-template-columns: 1fr; } }

.s-card {
  position: relative; background: var(--white); border: 1px solid var(--line-soft);
  border-radius: var(--radius); padding: 32px 30px; overflow: hidden;
  transition: transform .45s var(--ease), box-shadow .45s var(--ease), border-color .45s var(--ease);
}
.s-card::before {
  content: ""; position: absolute; left: 0; top: 0; height: 100%; width: 4px;
  background: var(--clay); transform: scaleY(0); transform-origin: top; transition: transform .45s var(--ease);
}
.s-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: transparent; }
.s-card:hover::before { transform: scaleY(1); }
.s-icon {
  width: 54px; height: 54px; border-radius: 14px; display: grid; place-items: center;
  background: var(--clay-wash); color: var(--clay-deep); margin-bottom: 22px;
  transition: background .4s var(--ease), color .4s var(--ease);
}
.s-icon svg { width: 26px; height: 26px; }
.s-card:hover .s-icon { background: var(--clay); color: #fff; }
.s-card h3 { margin-bottom: 12px; font-size: 1.32rem; }
.s-card p { font-size: .97rem; }
.s-card .num-tag { position: absolute; top: 26px; right: 28px; font-family: var(--serif); font-size: 1.1rem; color: var(--ink-faint); }
.s-card .s-more { margin-top: 20px; }

/* Feature list inside service detail */
.s-features { margin-top: 18px; display: grid; gap: 10px; }
.s-features li { display: flex; gap: 11px; align-items: flex-start; font-size: .95rem; color: var(--ink-soft); }
.s-features li::before {
  content: ""; flex: none; width: 18px; height: 18px; margin-top: 3px; border-radius: 50%;
  background: var(--clay-wash) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%239C4327' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center/11px no-repeat;
}

/* =====================================================================
   APPROACH BAND (dark)
   ===================================================================== */
.band-dark { background: var(--forest-deep); color: var(--cream); position: relative; overflow: hidden; }
.band-dark .eyebrow { color: var(--ochre-soft); }
.band-dark h2, .band-dark h3 { color: #fff; }
.band-dark p { color: rgba(251,245,235,.76); }
.band-deco { position: absolute; inset: 0; z-index: 0; opacity: .5; pointer-events: none; }
.band-dark .wrap { position: relative; z-index: 1; }

.approach-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 50px; }
@media (max-width: 900px) { .approach-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .approach-grid { grid-template-columns: 1fr; } }
.approach-item { padding: 28px 24px; border-radius: var(--radius); background: rgba(251,245,235,.05); border: 1px solid rgba(251,245,235,.1); transition: background .4s var(--ease), transform .4s var(--ease); }
.approach-item:hover { background: rgba(251,245,235,.09); transform: translateY(-4px); }
.approach-item .step { font-family: var(--serif); font-size: 1rem; color: var(--ochre); margin-bottom: 14px; display: block; }
.approach-item h3 { font-size: 1.28rem; margin-bottom: 10px; }
.approach-item p { font-size: .94rem; }

/* =====================================================================
   PARTNERS / LOGOS (text wordmarks)
   ===================================================================== */
.partners { border-top: 1px solid var(--line-soft); }
.partner-row { display: flex; flex-wrap: wrap; gap: 14px 16px; justify-content: center; margin-top: 36px; }
.partner-chip {
  font-family: var(--serif); font-size: clamp(1rem, 2vw, 1.35rem); color: var(--ink-faint);
  padding: 12px 22px; border-radius: 100px; border: 1px solid var(--line);
  transition: color .3s var(--ease), border-color .3s var(--ease), background .3s var(--ease);
}
.partner-chip:hover { color: var(--forest); border-color: var(--forest-soft); background: #fff; }

/* =====================================================================
   TESTIMONIAL
   ===================================================================== */
.quote-band { background: var(--cream-2); }
.quote-card { max-width: 920px; margin: 0 auto; text-align: center; }
.quote-mark { font-family: var(--serif); font-size: 5rem; line-height: .6; color: var(--clay-soft); margin-bottom: 10px; }
.quote-text { font-family: var(--serif); font-size: clamp(1.5rem, 3.2vw, 2.3rem); line-height: 1.3; color: var(--ink); font-weight: 420; letter-spacing: -.01em; }
.quote-by { margin-top: 26px; font-size: .95rem; color: var(--ink-soft); }
.quote-by b { color: var(--ink); font-weight: 600; display: block; font-size: 1.02rem; }

/* =====================================================================
   CTA BAND
   ===================================================================== */
.cta-band { position: relative; overflow: hidden; background: var(--clay); color: #fff; }
.cta-band .wrap { position: relative; z-index: 1; text-align: center; }
.cta-band h2 { color: #fff; max-width: 17ch; margin: 0 auto 20px; }
.cta-band p { color: rgba(255,255,255,.86); max-width: 52ch; margin: 0 auto 34px; }
.cta-band .btn-row { justify-content: center; }
.cta-deco { position: absolute; inset: 0; z-index: 0; opacity: .9; pointer-events: none; }
.cta-deco .c1 { position: absolute; width: 360px; top: -160px; left: -80px; color: rgba(255,255,255,.09); }
.cta-deco .c2 { position: absolute; width: 300px; bottom: -150px; right: -60px; color: rgba(27,51,40,.18); }

/* =====================================================================
   PAGE HERO (interior pages)
   ===================================================================== */
.page-hero { position: relative; padding-top: clamp(140px, 20vh, 210px); padding-bottom: clamp(40px, 6vw, 72px); overflow: hidden; }
.page-hero-bg { position: absolute; inset: 0; z-index: -1; background:
  radial-gradient(90% 120% at 90% 0%, var(--clay-wash) 0%, transparent 50%), var(--cream); }
.page-hero .eyebrow { margin-bottom: 20px; }
.page-hero h1 { font-size: clamp(2.5rem, 6vw, 4.3rem); margin-bottom: 22px; }
.page-hero .lead { max-width: 60ch; }
.crumbs { display: flex; gap: 8px; align-items: center; font-size: .85rem; color: var(--ink-faint); margin-bottom: 26px; }
.crumbs a:hover { color: var(--clay-deep); }
.crumbs svg { width: 13px; height: 13px; opacity: .6; }

/* =====================================================================
   ABOUT specifics
   ===================================================================== */
.cred-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 10px; }
@media (max-width: 760px) { .cred-grid { grid-template-columns: 1fr; } }
.cred {
  background: var(--white); border: 1px solid var(--line-soft); border-radius: var(--radius);
  padding: 26px 24px; transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.cred:hover { transform: translateY(-4px); box-shadow: var(--shadow-sm); }
.cred .ic { width: 46px; height: 46px; border-radius: 12px; background: var(--forest); color: var(--cream); display: grid; place-items: center; margin-bottom: 16px; }
.cred .ic svg { width: 22px; height: 22px; }
.cred h3 { font-size: 1.12rem; margin-bottom: 6px; }
.cred p { font-size: .92rem; }

/* Timeline */
.timeline { position: relative; margin-top: 20px; padding-left: 0; }
.timeline-item { position: relative; padding: 0 0 38px 42px; }
.timeline-item::before { content: ""; position: absolute; left: 13px; top: 6px; bottom: -6px; width: 2px; background: var(--line); }
.timeline-item:last-child::before { display: none; }
.timeline-item .dot { position: absolute; left: 6px; top: 4px; width: 16px; height: 16px; border-radius: 50%; background: var(--clay); border: 3px solid var(--cream); box-shadow: 0 0 0 1px var(--clay-soft); }
.timeline-item .yr { font-family: var(--serif); font-size: 1.05rem; color: var(--clay-deep); margin-bottom: 4px; }
.timeline-item h3 { font-size: 1.2rem; margin-bottom: 6px; }
.timeline-item p { font-size: .95rem; }

/* Values */
.value-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (max-width: 820px) { .value-grid { grid-template-columns: 1fr; } }
.value { padding: 28px 26px; border-radius: var(--radius); background: var(--white); border: 1px solid var(--line-soft); }
.value .vn { font-family: var(--serif); font-size: 1.4rem; color: var(--clay); margin-bottom: 10px; }
.value h3 { font-size: 1.18rem; margin-bottom: 8px; }
.value p { font-size: .94rem; }

/* =====================================================================
   IMPACT specifics
   ===================================================================== */
.impact-feature {
  background: var(--forest); color: var(--cream); border-radius: var(--radius-lg);
  padding: clamp(34px, 5vw, 60px); display: grid; grid-template-columns: 1.2fr .8fr; gap: 40px; align-items: center;
  position: relative; overflow: hidden;
}
.impact-feature h2, .impact-feature h3 { color: #fff; }
.impact-feature p { color: rgba(251,245,235,.8); }
.impact-feature .eyebrow { color: var(--ochre-soft); margin-bottom: 18px; }
.impact-feature .eyebrow::before { background: var(--ochre); }
.impact-feature .big-num { font-family: var(--serif); font-size: clamp(3.4rem, 8vw, 5.6rem); line-height: 1; color: #fff; }
.impact-feature .big-num .suffix { color: var(--ochre-soft); }
.impact-stat-list { display: grid; gap: 22px; }
.impact-stat-list .row { border-left: 2px solid rgba(231,200,147,.4); padding-left: 18px; }
.impact-stat-list .row .n { font-family: var(--serif); font-size: 1.9rem; color: var(--ochre-soft); line-height: 1; }
.impact-stat-list .row .t { font-size: .92rem; color: rgba(251,245,235,.78); margin-top: 4px; }
@media (max-width: 760px) { .impact-feature { grid-template-columns: 1fr; } }

.recog-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
@media (max-width: 700px) { .recog-grid { grid-template-columns: 1fr; } }
.recog { display: flex; gap: 18px; padding: 24px; background: var(--white); border: 1px solid var(--line-soft); border-radius: var(--radius); align-items: flex-start; transition: transform .4s var(--ease), box-shadow .4s var(--ease); }
.recog:hover { transform: translateY(-3px); box-shadow: var(--shadow-sm); }
.recog .ic { flex: none; width: 48px; height: 48px; border-radius: 12px; background: var(--clay-wash); color: var(--clay-deep); display: grid; place-items: center; }
.recog .ic svg { width: 24px; height: 24px; }
.recog h3 { font-size: 1.12rem; margin-bottom: 4px; }
.recog p { font-size: .92rem; }

.area-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
@media (max-width: 860px) { .area-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 560px) { .area-grid { grid-template-columns: 1fr; } }
.area { padding: 26px; border-radius: var(--radius); background: var(--white); border: 1px solid var(--line-soft); }
.area .ic { width: 44px; height: 44px; border-radius: 11px; background: var(--forest); color: var(--cream); display: grid; place-items: center; margin-bottom: 16px; }
.area .ic svg { width: 21px; height: 21px; }
.area h3 { font-size: 1.08rem; margin-bottom: 8px; }
.area p { font-size: .92rem; }

/* =====================================================================
   PROCESS (services)
   ===================================================================== */
.process { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; counter-reset: step; }
@media (max-width: 880px) { .process { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 480px) { .process { grid-template-columns: 1fr; } }
.process-step { position: relative; padding: 30px 24px; border-radius: var(--radius); background: var(--white); border: 1px solid var(--line-soft); }
.process-step .pnum { font-family: var(--serif); font-size: 2.4rem; color: var(--clay); line-height: 1; margin-bottom: 14px; }
.process-step h3 { font-size: 1.16rem; margin-bottom: 8px; color: var(--ink); }
.process-step p { font-size: .93rem; color: var(--ink-soft); }

/* =====================================================================
   CONTACT
   ===================================================================== */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(34px, 5vw, 64px); align-items: start; }
@media (max-width: 840px) { .contact-grid { grid-template-columns: 1fr; } }
.form-card { background: var(--white); border: 1px solid var(--line-soft); border-radius: var(--radius-lg); padding: clamp(28px, 4vw, 44px); box-shadow: var(--shadow-sm); }
.field { margin-bottom: 20px; }
.field label { display: block; font-size: .85rem; font-weight: 600; color: var(--ink); margin-bottom: 8px; }
.field input, .field select, .field textarea {
  width: 100%; font: inherit; font-size: .97rem; color: var(--ink);
  padding: 13px 16px; border-radius: var(--radius-sm); border: 1.5px solid var(--line);
  background: var(--cream); transition: border-color .3s var(--ease), background .3s var(--ease), box-shadow .3s var(--ease);
}
.field textarea { resize: vertical; min-height: 130px; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--clay); background: #fff; box-shadow: 0 0 0 4px rgba(191,90,54,.12); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 480px) { .field-row { grid-template-columns: 1fr; } }
.form-note { font-size: .82rem; color: var(--ink-faint); margin-top: 8px; }
.form-success { display: none; padding: 16px 18px; border-radius: var(--radius-sm); background: var(--clay-wash); color: var(--clay-deep); font-weight: 500; font-size: .95rem; margin-bottom: 20px; }
.form-success.show { display: block; }

.contact-aside .ci { display: flex; gap: 16px; padding: 22px 0; border-bottom: 1px solid var(--line-soft); }
.contact-aside .ci:first-child { padding-top: 0; }
.contact-aside .ic { flex: none; width: 46px; height: 46px; border-radius: 12px; background: var(--clay-wash); color: var(--clay-deep); display: grid; place-items: center; }
.contact-aside .ic svg { width: 21px; height: 21px; }
.contact-aside h3 { font-size: 1.05rem; margin-bottom: 3px; }
.contact-aside p, .contact-aside a { font-size: .95rem; color: var(--ink-soft); }
.contact-aside a:hover { color: var(--clay-deep); }
.tag-ph { display: inline-block; font-size: .68rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--ochre); background: var(--ochre-soft); background: rgba(201,138,63,.14); padding: 2px 8px; border-radius: 6px; margin-left: 8px; vertical-align: middle; }

/* FAQ */
.faq { max-width: 820px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q { width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 20px; text-align: left; padding: 24px 0; font-family: var(--serif); font-size: clamp(1.1rem, 2vw, 1.35rem); color: var(--ink); }
.faq-q .pm { flex: none; width: 30px; height: 30px; border-radius: 50%; border: 1.5px solid var(--line); display: grid; place-items: center; transition: .35s var(--ease); }
.faq-q .pm::before, .faq-q .pm::after { content: ""; position: absolute; width: 12px; height: 1.6px; background: var(--clay-deep); transition: .35s var(--ease); }
.faq-q .pm::after { transform: rotate(90deg); }
.faq-item.open .pm { background: var(--clay); border-color: var(--clay); }
.faq-item.open .pm::before, .faq-item.open .pm::after { background: #fff; }
.faq-item.open .pm::after { transform: rotate(0); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .4s var(--ease); }
.faq-a p { padding: 0 0 24px; max-width: 70ch; }

/* =====================================================================
   FOOTER
   ===================================================================== */
.site-footer { background: var(--forest-deep); color: var(--cream); padding-top: clamp(56px, 7vw, 88px); }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.3fr; gap: 40px; padding-bottom: 48px; border-bottom: 1px solid rgba(251,245,235,.12); }
@media (max-width: 880px) { .footer-top { grid-template-columns: 1fr 1fr; gap: 36px; } }
@media (max-width: 520px) { .footer-top { grid-template-columns: 1fr; } }
.footer-brand .brand-name { color: #fff; }
.footer-brand p { color: rgba(251,245,235,.66); margin-top: 16px; font-size: .94rem; max-width: 34ch; }
.footer-col h4 { font-family: var(--sans); font-size: .78rem; letter-spacing: .16em; text-transform: uppercase; color: var(--ochre-soft); margin-bottom: 18px; font-weight: 600; }
.footer-col a { display: block; padding: 7px 0; color: rgba(251,245,235,.74); font-size: .95rem; transition: color .25s var(--ease), padding .25s var(--ease); }
.footer-col a:hover { color: #fff; padding-left: 5px; }
.footer-cta .btn { margin-top: 6px; }
.footer-cta p { color: rgba(251,245,235,.66); font-size: .94rem; margin-bottom: 16px; }
.footer-bottom { display: flex; flex-wrap: wrap; gap: 14px; justify-content: space-between; align-items: center; padding-block: 28px; font-size: .86rem; color: rgba(251,245,235,.58); }
.footer-bottom a:hover { color: #fff; }
.footer-social { display: flex; gap: 10px; }
.footer-social a { width: 38px; height: 38px; border-radius: 50%; border: 1px solid rgba(251,245,235,.2); display: grid; place-items: center; transition: background .3s var(--ease), border-color .3s var(--ease), transform .3s var(--ease); }
.footer-social a:hover { background: var(--clay); border-color: var(--clay); transform: translateY(-3px); }
.footer-social svg { width: 17px; height: 17px; }

/* Mark monogram in footer */
.footer-brand .brand .mark { width: 46px; height: 46px; }

/* =====================================================================
   REVEAL ANIMATIONS
   ===================================================================== */
.reveal { opacity: 0; transform: translateY(12px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; }
.reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; }
.reveal.d4 { transition-delay: .32s; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; } }

/* Utilities */
.bg-cream2 { background: var(--cream-2); }
.bg-white { background: var(--white); }
.divider { height: 1px; background: var(--line-soft); border: 0; }
.pill { display: inline-flex; align-items: center; gap: 8px; font-size: .82rem; font-weight: 600; color: var(--forest); background: rgba(110,140,124,.16); padding: 7px 14px; border-radius: 100px; }
.pill .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--clay); }
.mt-s { margin-top: 18px; } .mt-m { margin-top: 30px; } .mt-l { margin-top: 48px; }

/* =====================================================================
   ░░  SIGNATURE POLISH LAYER  ░░
   Motion · texture · illustration motif · finishing craft
   ===================================================================== */

/* ---- Balanced headlines (no orphan words) ---- */
h1, h2, h3, .display, .section-title, .quote-text { text-wrap: balance; }
.lead, p { text-wrap: pretty; }

/* ---- Page cross-fade (opacity only — safe for fixed header) ---- */
@keyframes pageIn { from { opacity: 0; } to { opacity: 1; } }
body { animation: pageIn .7s var(--ease) both; }
body.leaving { opacity: 0; transition: opacity .34s var(--ease); }

/* ---- Scroll progress bar ---- */
.scroll-progress {
  position: fixed; top: 0; left: 0; height: 3px; width: 0;
  background: linear-gradient(90deg, var(--clay), var(--ochre));
  z-index: 10001; transition: width .12s linear; border-radius: 0 3px 3px 0;
}

/* ---- Film grain (over everything, never blocks input) ---- */
body::after {
  content: ""; position: fixed; inset: 0; z-index: 9998; pointer-events: none;
  opacity: .05; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.86' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 180px 180px;
}

/* ---- Kinetic word-rise headlines ---- */
.kin .w { display: inline-block; overflow: hidden; vertical-align: top; padding-bottom: .14em; margin-bottom: -.14em; }
.kin .wi { display: inline-block; transform: translateY(112%); transition: transform .85s var(--ease); will-change: transform; }
.kin.in .wi { transform: none; }

/* ---- Parallax media (overscan so edges never reveal) ---- */
.portrait img, .split-media .frame img { transform: scale(1.12); will-change: transform; }
.hero-blob { will-change: transform; }

/* ---- Magnetic buttons ---- */
.magnetic { will-change: transform; }

/* ---- Refined reveal easing + soft blur lift ---- */
.reveal { transition: opacity .6s var(--ease), transform .6s var(--ease); }

/* ---- Botanical growth motif (brand watermark on dark surfaces) ---- */
.band-dark, .site-footer, .impact-feature {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 120 120'%3E%3Cg fill='none' stroke='%23C98A3F' stroke-opacity='0.5' stroke-width='2.4' stroke-linecap='round'%3E%3Cpath d='M60 112V52'/%3E%3Cpath d='M60 74C36 71 27 54 29 36 51 39 63 57 60 74Z'/%3E%3Cpath d='M60 64C84 61 93 44 91 26 69 29 57 47 60 64Z'/%3E%3Cpath d='M60 92C46 90 40 80 41 70 55 72 62 82 60 92Z'/%3E%3C/g%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right -40px bottom -46px;
  background-size: 300px;
}
.site-footer { background-color: var(--forest-deep); background-position: right -30px bottom 40px; background-size: 240px; }
.impact-feature { background-color: var(--forest); }

/* eyebrow gets a small sprout tick on hover-capable refinement */
.eyebrow::before { transition: width .4s var(--ease); }
.section-head:hover .eyebrow::before { width: 38px; }

/* ---- Sharper focus ring ---- */
:focus-visible { outline: 2.5px solid var(--clay); outline-offset: 3px; border-radius: 6px; }
.btn:focus-visible { outline-offset: 4px; }

/* ---- Photo-slot label (shown only while a real image is absent) ---- */
.slot-label {
  position: absolute; left: 50%; bottom: 18px; transform: translateX(-50%);
  z-index: 1; font-size: .68rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase;
  color: rgba(251,245,235,.66); background: rgba(27,51,40,.34); backdrop-filter: blur(4px);
  padding: 6px 12px; border-radius: 100px; white-space: nowrap; pointer-events: none;
}
.frame.sand .slot-label { color: rgba(42,35,32,.6); background: rgba(255,255,255,.4); }

/* ---- Reduced-motion: strip all signature motion ---- */
@media (prefers-reduced-motion: reduce) {
  body, body.leaving { animation: none; opacity: 1; transition: none; }
  .reveal { filter: none; }
  .kin .wi { transform: none; }
  .scroll-progress { display: none; }
  .portrait img, .split-media .frame img { transform: scale(1.06); }
}

/* =====================================================================
   ░░  REFINEMENT PASS  ░░  button fix · anchors · motion system v2
   ===================================================================== */

/* ---- Footer CTA: restore proper button styling (beats .footer-col a) ---- */
.footer-cta .btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55em;
  width: fit-content; padding: .82em 1.5em; color: #fff; font-weight: 600;
}
.footer-cta .btn:hover { color: #fff; padding: .82em 1.5em; transform: translateY(-3px); }

/* ---- Sticky-header anchor offset for in-page service links ---- */
section[id] { scroll-margin-top: 100px; }

/* ---- Header: hide on scroll-down, reveal on scroll-up ---- */
.site-header { transition: background .4s var(--ease), box-shadow .4s var(--ease), padding .4s var(--ease), transform .5s var(--ease); }
.site-header.hide { transform: translateY(-115%); }

/* ---- Animated nav underline ---- */
.nav-links a:not(.nav-cta) { position: relative; }
.nav-links a:not(.nav-cta)::after {
  content: ""; position: absolute; left: 14px; right: 14px; bottom: 3px; height: 1.5px;
  background: var(--clay); transform: scaleX(0); transform-origin: left;
  transition: transform .42s var(--ease); opacity: .9;
}
.nav-links a:not(.nav-cta):hover::after { transform: scaleX(1); }
.nav-links a.active:not(.nav-cta)::after { transform: scaleX(1); opacity: 1; height: 2px; background: var(--clay-deep); }
@media (max-width: 920px) { .nav-links a:not(.nav-cta)::after { display: none; } }

/* ---- Partners marquee ---- */
.marquee-mask {
  overflow: hidden; width: 100%; margin-top: 36px;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 9%, #000 91%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 9%, #000 91%, transparent);
}
.marquee-mask .partner-row { margin-top: 0; }
.partner-row.marquee { flex-wrap: nowrap; width: max-content; justify-content: flex-start; gap: 16px; animation: marquee 52s linear infinite; }
.marquee-mask:hover .partner-row.marquee { animation-play-state: paused; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(calc(-50% - 8px)); } }

/* ---- Choreographed stagger (set by JS via --i) ---- */
.reveal[style*="--i"] { transition-delay: calc(var(--i) * .07s); }

@media (prefers-reduced-motion: reduce) {
  .site-header.hide { transform: none; }
  .partner-row.marquee { animation: none; width: auto; flex-wrap: wrap; justify-content: center; }
  .nav-links a:not(.nav-cta)::after { transition: none; }
}

/* ---- Upright ampersand inside the italic accent (cleaner than the swash italic &) ---- */
.amp { font-style: normal; font-weight: 400; padding: 0 .02em; }

/* =====================================================================
   ░░  TESTIMONIALS  ░░
   ===================================================================== */
.tgrid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
@media (max-width: 900px) { .tgrid { grid-template-columns: 1fr; } }
.tcard {
  background: var(--white); border: 1px solid var(--line-soft); border-radius: var(--radius);
  padding: 32px 30px; display: flex; flex-direction: column; gap: 18px; position: relative;
  transition: transform .45s var(--ease), box-shadow .45s var(--ease), border-color .45s var(--ease);
}
.tcard:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: transparent; }
.tcard .qmark { font-family: var(--serif); font-size: 3rem; line-height: .5; color: var(--clay-soft); height: 24px; }
.tquote { font-family: var(--serif); font-size: 1.16rem; line-height: 1.46; color: var(--ink); font-weight: 420; }
.tperson { display: flex; align-items: center; gap: 14px; margin-top: auto; padding-top: 6px; }
.tavatar {
  width: 52px; height: 52px; border-radius: 50%; overflow: hidden; flex: none; position: relative;
  background: linear-gradient(150deg, var(--forest), var(--forest-deep));
  display: grid; place-items: center; color: var(--ochre-soft);
  font-family: var(--serif); font-size: 1.15rem; letter-spacing: .02em;
}
.tavatar img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.tperson .nm { font-weight: 600; color: var(--ink); font-size: .98rem; line-height: 1.2; }
.tperson .ro { font-size: .85rem; color: var(--ink-soft); margin-top: 2px; }
.placeholder-tag {
  position: absolute; top: 14px; right: 16px; font-size: .6rem; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: var(--ochre); background: rgba(201,138,63,.14); padding: 3px 8px; border-radius: 6px;
}

/* =====================================================================
   ░░  CASE STUDY  ░░
   ===================================================================== */
.cs-hero { position: relative; padding-top: clamp(140px, 20vh, 210px); padding-bottom: clamp(30px, 5vw, 56px); overflow: hidden; }
.cs-hero-bg { position: absolute; inset: 0; z-index: -1; background: radial-gradient(85% 110% at 88% 0%, var(--clay-wash) 0%, transparent 52%), var(--cream); }
.cs-tag { display: inline-flex; gap: 8px; align-items: center; font-size: .8rem; font-weight: 600; color: var(--forest); background: rgba(110,140,124,.16); padding: 7px 14px; border-radius: 100px; margin-bottom: 20px; }
.cs-meta { display: flex; flex-wrap: wrap; gap: 14px 34px; margin-top: 30px; padding-top: 26px; border-top: 1px solid var(--line); }
.cs-meta .k { font-size: .74rem; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-faint); font-weight: 600; }
.cs-meta .v { font-size: 1rem; color: var(--ink); font-weight: 500; margin-top: 4px; }

.cs-split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(34px, 6vw, 72px); align-items: center; }
@media (max-width: 820px) { .cs-split { grid-template-columns: 1fr; } }
.cs-block + .cs-block { margin-top: 22px; }
.cs-label { font-family: var(--sans); font-size: .76rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--clay-deep); margin-bottom: 12px; }

/* metric callouts */
.metric-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (max-width: 620px) { .metric-row { grid-template-columns: 1fr; } }
.metric { background: var(--white); border: 1px solid var(--line-soft); border-radius: var(--radius); padding: 28px 26px; }
.metric .n { font-family: var(--serif); font-size: clamp(2.4rem, 5vw, 3.2rem); line-height: 1; color: var(--clay); }
.metric .n .suffix { color: var(--ochre); }
.metric .t { margin-top: 10px; font-size: .92rem; color: var(--ink-soft); }

/* charts */
.chart-card { background: var(--white); border: 1px solid var(--line-soft); border-radius: var(--radius-lg); padding: clamp(26px, 4vw, 40px); }
.chart-card.on-dark { background: var(--forest-deep); color: var(--cream); border-color: rgba(251,245,235,.12); }
.chart-card.on-dark .chart-title, .chart-card.on-dark .chart-sub { color: var(--cream); }
.chart-title { font-family: var(--serif); font-size: 1.5rem; color: var(--ink); }
.chart-sub { font-size: .9rem; color: var(--ink-soft); margin-top: 6px; margin-bottom: 26px; }
.chart-card.on-dark .chart-sub { color: rgba(251,245,235,.72); }
.sample-note { font-size: .76rem; color: var(--ink-faint); margin-top: 18px; font-style: italic; }
.chart-card.on-dark .sample-note { color: rgba(251,245,235,.55); }

/* CSS bar chart */
.bars { display: flex; align-items: flex-end; gap: clamp(10px, 3vw, 26px); height: 220px; padding-top: 10px; }
.bars .col { flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: flex-end; height: 100%; gap: 10px; }
.bars .bar { width: 100%; max-width: 64px; border-radius: 10px 10px 0 0; background: linear-gradient(var(--clay), var(--clay-deep)); position: relative; transition: height 1.1s var(--ease); }
.bars .bar.alt { background: linear-gradient(var(--forest-soft), var(--forest)); }
.bars .col .cap { font-size: .82rem; color: var(--ink-soft); }
.bars .col .val { font-family: var(--serif); font-size: 1.05rem; color: var(--ink); }
.on-dark .bars .col .cap { color: rgba(251,245,235,.7); }
.on-dark .bars .col .val { color: #fff; }

/* horizontal progress bars */
.hbars { display: grid; gap: 20px; }
.hbar .top { display: flex; justify-content: space-between; font-size: .92rem; margin-bottom: 8px; }
.hbar .top .lab { color: var(--cream); }
.hbar .top .pct { font-family: var(--serif); color: var(--ochre-soft); }
.hbar .track { height: 12px; border-radius: 100px; background: rgba(251,245,235,.14); overflow: hidden; }
.hbar .fill { height: 100%; border-radius: 100px; background: linear-gradient(90deg, var(--ochre), var(--clay)); width: 0; transition: width 1.2s var(--ease); }
.on-light .hbar .top .lab { color: var(--ink); }
.on-light .hbar .top .pct { color: var(--clay-deep); }
.on-light .hbar .track { background: var(--sand); }

/* ---- Team (About page) ---- */
.team-list { display: grid; gap: 26px; max-width: 1000px; margin: 0 auto; }
.team-member { display: grid; grid-template-columns: 190px 1fr; gap: 32px; align-items: start; background: var(--white); border: 1px solid var(--line-soft); border-radius: var(--radius); padding: 32px; transition: transform .4s var(--ease), box-shadow .4s var(--ease); }
.team-member:hover { transform: translateY(-4px); box-shadow: var(--shadow-sm); }
@media (max-width: 640px) { .team-member { grid-template-columns: 1fr; gap: 18px; } }
.team-photo { position: relative; width: 190px; height: 215px; border-radius: var(--radius-sm); overflow: hidden; background: linear-gradient(150deg, var(--forest), var(--forest-deep)); display: grid; place-items: center; }
@media (max-width: 640px) { .team-photo { width: 150px; height: 170px; } }
.team-photo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 22%; z-index: 2; }
.team-initials { font-family: var(--serif); font-size: 2.6rem; color: var(--ochre-soft); z-index: 1; }
.team-bio h3 { font-size: 1.45rem; }
.team-role { color: var(--clay-deep); font-weight: 600; font-size: .95rem; margin: 5px 0 14px; }
.team-bio p { font-size: .96rem; margin-bottom: 12px; }
.team-bio p:last-child { margin-bottom: 0; }

/* =====================================================================
   ░░  MOTION v3 — refinement gaps + editorial reveals  ░░
   Hover lifts for values/impact cards · timeline draw
   All reveal states guarded by no-JS (.js-*) and prefers-reduced-motion.
   ===================================================================== */
.value, .area { transition: transform .4s var(--ease), box-shadow .4s var(--ease); }
.value:hover, .area:hover { transform: translateY(-4px); box-shadow: var(--shadow-sm); }

@media (prefers-reduced-motion: no-preference) {
  /* About timeline: connector lines draw downward, staggered */
  .timeline.js-draw .timeline-item::before { transform: scaleY(0); transform-origin: top center; transition: transform .7s var(--ease); }
  .timeline.js-draw.drawn .timeline-item::before { transform: scaleY(1); }
  .timeline.js-draw.drawn .timeline-item:nth-child(2)::before { transition-delay: .14s; }
  .timeline.js-draw.drawn .timeline-item:nth-child(3)::before { transition-delay: .28s; }
  .timeline.js-draw.drawn .timeline-item:nth-child(4)::before { transition-delay: .42s; }
}

/* =====================================================================
   ░░  CTA buttons — calmer hover (softer lift · lighter shadow)  ░░
   ===================================================================== */
.btn-primary { box-shadow: 0 8px 18px -10px rgba(191,90,54,.42); }
.btn-primary:hover,
.btn-dark:hover,
.btn-ghost:hover,
.btn-light:hover,
.btn-outline-light:hover,
.footer-cta .btn:hover { transform: translateY(-2px); }
.btn-primary:hover { box-shadow: 0 12px 24px -14px rgba(191,90,54,.5); }
.btn:hover svg { transform: translateX(3px); }
