/* ============================================================
   Missio Research Group — Design System
   Clean corporate polish · deepened premium green
   Type: Spectral (display) + Hanken Grotesk (text)
   ============================================================ */

:root {
  /* Surfaces */
  --paper:      #FAF9F4;
  --paper-2:    #F2F1EA;
  --white:      #FFFFFF;

  /* Ink */
  --ink:        #1A1D18;
  --muted:      #5C6258;
  --faint:      #8A8F84;
  --line:       #E5E3D9;
  --line-soft:  #EEEDE5;

  /* Premium green */
  --green:      #1E4A2C;
  --green-deep: #12331E;
  --green-mid:  #2C6840;
  --green-bright:#3C8455;
  --green-soft: #E9F0E8;
  --green-tint: #F1F5EF;

  /* Accent — restrained warm brass, used sparingly */
  --brass:      #A2823F;

  /* Metrics */
  --max:        1200px;
  --gutter:     clamp(20px, 4vw, 48px);
  --radius:     6px;
  --radius-lg:  14px;

  --serif: "Spectral", Georgia, "Times New Roman", serif;
  --sans:  "Hanken Grotesk", -apple-system, BlinkMacSystemFont, system-ui, sans-serif;

  --shadow-sm: 0 1px 2px rgba(20,30,18,0.04), 0 2px 8px rgba(20,30,18,0.05);
  --shadow-md: 0 10px 30px rgba(18,42,24,0.08), 0 2px 8px rgba(18,42,24,0.05);
  --shadow-lg: 0 24px 60px rgba(18,42,24,0.14), 0 8px 20px rgba(18,42,24,0.07);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }

/* ----- Layout ----- */
.container {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.container.narrow { max-width: 880px; }

.section { padding: clamp(4.5rem, 9vw, 8rem) 0; }
.section-tight { padding: clamp(3rem, 6vw, 5rem) 0; }
.section-alt { background: var(--paper-2); }
.section-green { background: var(--green-deep); color: var(--white); }

/* ----- Type ----- */
h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 600;
  color: var(--ink);
  line-height: 1.08;
  letter-spacing: -0.012em;
  margin: 0 0 0.45em;
}

h1 { font-size: clamp(2.9rem, 6.2vw, 5.2rem); font-weight: 500; }
h2 { font-size: clamp(2.1rem, 3.8vw, 3.2rem); font-weight: 500; }
h3 { font-size: clamp(1.3rem, 2vw, 1.6rem); }
h4 { font-size: 1.12rem; }

p { margin: 0 0 1.1rem; }
p:last-child { margin-bottom: 0; }

.lede {
  font-size: clamp(1.18rem, 1.7vw, 1.42rem);
  line-height: 1.5;
  color: var(--muted);
  font-weight: 400;
}

a { color: var(--green); text-decoration: none; }
a:hover { color: var(--green-mid); }

strong { color: var(--ink); font-weight: 600; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--sans);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--green-mid);
  margin: 0 0 1.2rem;
}
.eyebrow::before {
  content: "";
  width: 26px;
  height: 1.5px;
  background: var(--brass);
  display: inline-block;
}
.eyebrow.center { justify-content: center; }
.text-center { text-align: center; }
.measure { max-width: 56ch; }
.measure-tight { max-width: 46ch; }

/* ----- Buttons ----- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.95rem 1.7rem;
  border-radius: var(--radius);
  font-family: var(--sans);
  font-weight: 600;
  font-size: 0.97rem;
  letter-spacing: 0.005em;
  cursor: pointer;
  transition: transform 0.2s var(--ease), background 0.2s var(--ease),
              box-shadow 0.2s var(--ease), color 0.2s var(--ease), border-color 0.2s var(--ease);
  border: 1.5px solid transparent;
  white-space: nowrap;
}
.btn:hover { text-decoration: none; }
.btn .arrow { transition: transform 0.25s var(--ease); }
.btn:hover .arrow { transform: translateX(4px); }

.btn-primary {
  background: var(--green);
  color: var(--white);
  box-shadow: var(--shadow-sm);
}
.btn-primary:hover {
  background: var(--green-deep);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.btn-ghost {
  color: var(--green);
  border-color: var(--line);
  background: var(--white);
}
.btn-ghost:hover { border-color: var(--green); color: var(--green); transform: translateY(-2px); }

.btn-light { background: var(--white); color: var(--green-deep); }
.btn-light:hover { background: var(--green-soft); color: var(--green-deep); transform: translateY(-2px); }
.btn-outline-light { color: var(--white); border-color: rgba(255,255,255,0.4); background: transparent; }
.btn-outline-light:hover { border-color: var(--white); color: var(--white); background: rgba(255,255,255,0.07); }

.textlink {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 600;
  font-size: 0.96rem;
  color: var(--green-mid);
}
.textlink .arrow { transition: transform 0.25s var(--ease); }
.textlink:hover .arrow { transform: translateX(4px); }

/* ============================================================
   Header
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 249, 244, 0.78);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: background 0.3s var(--ease), border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.site-header.scrolled {
  background: rgba(250, 249, 244, 0.92);
  border-bottom-color: var(--line);
  box-shadow: 0 1px 0 rgba(0,0,0,0.02);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 78px;
  gap: 1.5rem;
}
.brand { display: flex; align-items: center; gap: 0.7rem; }
.brand:hover { text-decoration: none; }
.brand-badge {
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  flex: none;
  background: var(--green);
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
}
.brand-badge .brand-mark { width: 40px; height: 40px; display: block; color: var(--paper); }
.brand-name {
  font-family: var(--serif);
  font-size: 1.28rem;
  font-weight: 600;
  color: var(--green);
  letter-spacing: 0.005em;
  line-height: 1;
  white-space: nowrap;
}
.brand-name .sub {
  display: block;
  font-family: var(--sans);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--faint);
  margin-top: 4px;
}

.nav { display: flex; align-items: center; gap: 2.1rem; }
.nav a {
  color: var(--ink);
  font-weight: 500;
  font-size: 0.95rem;
  position: relative;
  padding: 4px 0;
  white-space: nowrap;
}
.nav a:not(.btn)::after {
  content: "";
  position: absolute;
  left: 0; bottom: -2px;
  width: 0; height: 1.5px;
  background: var(--green);
  transition: width 0.25s var(--ease);
}
.nav a:not(.btn):hover { color: var(--green); }
.nav a:not(.btn):hover::after,
.nav a.active::after { width: 100%; }
.nav a.active { color: var(--green); }
.nav .btn { padding: 0.62rem 1.25rem; font-size: 0.9rem; }
.nav a.btn-primary, .nav a.btn-primary:hover { color: var(--white); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  width: 24px; height: 2px; background: var(--green);
  display: block; border-radius: 2px;
  transition: transform 0.3s var(--ease), opacity 0.2s var(--ease);
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   Hero (home — split)
   ============================================================ */
.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(120% 90% at 92% 0%, var(--green-tint) 0%, rgba(241,245,239,0) 55%),
    var(--paper);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2.5rem, 5vw, 5rem);
  align-items: center;
  padding: clamp(3.5rem, 8vw, 7rem) 0 clamp(3.5rem, 7vw, 6rem);
}
.hero-copy { max-width: 600px; }
.hero h1 { margin-bottom: 0.3em; }
.hero h1 .accent { color: var(--green); font-style: italic; }
.hero .lede { margin-bottom: 2.2rem; max-width: 30ch; }
.hero-actions { display: flex; gap: 0.9rem; flex-wrap: wrap; }

.hero-credit {
  margin-top: 2.6rem;
  padding-top: 1.6rem;
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.8rem;
}
.hero-credit span {
  font-size: 0.84rem;
  color: var(--muted);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.hero-credit span::before {
  content: "";
  width: 6px; height: 6px;
  background: var(--green-mid);
  transform: rotate(45deg);
  display: inline-block;
}

/* Hero media */
.hero-media { position: relative; }
.hero-media .frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.hero-media .frame img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}
.hero-media .frame::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(18,51,30,0) 55%, rgba(18,51,30,0.22) 100%);
}
.stat-card {
  position: absolute;
  left: -28px;
  bottom: -36px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  padding: 1.15rem 1.35rem;
  max-width: 230px;
}
.stat-card .num {
  font-family: var(--serif);
  font-size: 2.4rem;
  font-weight: 600;
  color: var(--green);
  line-height: 1;
}
.stat-card .label {
  font-size: 0.82rem;
  color: var(--muted);
  margin-top: 0.35rem;
}

/* ============================================================
   Animated visuals (replacing stock photos)
   ============================================================ */
.viz-card {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  position: relative;
}
.viz-head {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.viz-title { font-weight: 700; white-space: nowrap; }
.viz-meta, .viz-tag { margin-left: auto; opacity: 0.7; font-weight: 500; }
.viz-live {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--green-bright);
  box-shadow: 0 0 0 0 rgba(60,132,85,0.5);
}
@media (prefers-reduced-motion: no-preference) {
  [data-reveal].in .viz-live { animation: vizPulse 2.4s ease-out infinite; }
}
@keyframes vizPulse {
  0% { box-shadow: 0 0 0 0 rgba(60,132,85,0.5); }
  70% { box-shadow: 0 0 0 7px rgba(60,132,85,0); }
  100% { box-shadow: 0 0 0 0 rgba(60,132,85,0); }
}

/* --- Hero: community dot-field --- */
.viz-people {
  aspect-ratio: 4 / 5;
  background: linear-gradient(160deg, var(--green-deep) 0%, #0d2718 100%);
  color: rgba(255,255,255,0.92);
  padding: 1.5rem 1.5rem 1.35rem;
  display: flex;
  flex-direction: column;
}
.viz-people .viz-head {
  color: rgba(255,255,255,0.85);
  margin-bottom: 1rem;
  font-size: 0.95rem;
}
.viz-people .viz-title { font-size: 1.05rem; }
.viz-people .viz-meta { font-size: 0.95rem; }
/* Donut: proportions of the community at a glance */
.viz-donut { flex: 1; position: relative; display: flex; align-items: center; justify-content: center; margin: 0.2rem 0 2.6rem; }
.donut-svg { width: min(74%, 240px); height: auto; overflow: visible; }
.donut-track { fill: none; stroke: rgba(255,255,255,0.10); stroke-width: 13; }
.donut-seg { fill: none; stroke-width: 13; stroke-linecap: round; stroke-dasharray: 0 100; stroke-dashoffset: var(--off); transition: stroke-dasharray 1.05s var(--ease); transition-delay: var(--delay); }
[data-reveal].in .donut-seg { stroke-dasharray: var(--len) 100; }
.seg-reached  { stroke: var(--green-bright); }
.seg-emerging { stroke: #7FB48F; }
.seg-unmet    { stroke: var(--brass); }
.donut-center { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; pointer-events: none; }
.donut-center strong { font-family: var(--serif); font-size: 2.5rem; font-weight: 600; line-height: 1; color: #fff; letter-spacing: -0.01em; }
.donut-center span { margin-top: 0.4rem; font-size: 0.82rem; letter-spacing: 0.04em; text-transform: uppercase; color: rgba(255,255,255,0.62); }
.viz-legend { list-style: none; margin: 0.9rem 0 0; padding: 1.1rem 0 0; border-top: 1px solid rgba(255,255,255,0.14); display: flex; flex-wrap: wrap; gap: 0.55rem 1.4rem; }
.viz-legend li { display: inline-flex; align-items: center; gap: 0.5rem; font-size: 0.92rem; font-weight: 500; color: rgba(255,255,255,0.86); }
.viz-legend i { width: 11px; height: 11px; border-radius: 50%; display: inline-block; flex: none; }
.viz-legend .lk-name { color: rgba(255,255,255,0.86); }
.viz-legend .lk-val { font-variant-numeric: tabular-nums; color: #fff; font-weight: 600; }
.viz-legend .k-reached { background: var(--green-bright); }
.viz-legend .k-emerging { background: #7FB48F; }
.viz-legend .k-unmet { background: var(--brass); }

/* --- What We Do: animated findings report --- */
.viz-report {
  aspect-ratio: 5 / 4;
  background: var(--white);
  border: 1px solid var(--line);
  padding: 1.6rem 1.7rem;
  display: flex;
  flex-direction: column;
}
.viz-report .viz-head { color: var(--muted); padding-bottom: 1.1rem; border-bottom: 1px solid var(--line-soft); }
.viz-report .viz-title { color: var(--ink); }
.viz-report .viz-tag { color: var(--green-mid); }
.viz-kpi { padding: 1.3rem 0 1.5rem; }
.viz-kpi-num {
  font-family: var(--serif);
  font-size: clamp(2.6rem, 5vw, 3.6rem);
  font-weight: 600;
  color: var(--green);
  line-height: 1;
}
.viz-kpi-label { color: var(--muted); font-size: 0.92rem; margin-top: 0.5rem; max-width: 32ch; }
.viz-chart { position: relative; flex: 1; display: flex; align-items: flex-end; min-height: 90px; }
.viz-bars {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0.6rem;
  align-items: end;
  width: 100%;
  height: 100%;
}
.viz-bars span {
  height: var(--h);
  background: linear-gradient(180deg, var(--green-mid), var(--green));
  border-radius: 4px 4px 0 0;
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.7s var(--ease);
}
[data-reveal].in .viz-bars span { transform: scaleY(1); }
[data-reveal].in .viz-bars span:nth-child(1) { transition-delay: 0.05s; }
[data-reveal].in .viz-bars span:nth-child(2) { transition-delay: 0.12s; }
[data-reveal].in .viz-bars span:nth-child(3) { transition-delay: 0.19s; }
[data-reveal].in .viz-bars span:nth-child(4) { transition-delay: 0.26s; }
[data-reveal].in .viz-bars span:nth-child(5) { transition-delay: 0.33s; }
[data-reveal].in .viz-bars span:nth-child(6) { transition-delay: 0.40s; }
.viz-trend {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  pointer-events: none;
}
.viz-trend polyline {
  stroke-dasharray: 600;
  stroke-dashoffset: 600;
  transition: stroke-dashoffset 1.4s var(--ease) 0.4s;
}
[data-reveal].in .viz-trend polyline { stroke-dashoffset: 0; }
@media (prefers-reduced-motion: reduce) {
  .donut-seg, .viz-bars span, .viz-trend polyline { transition: none; }
  .donut-seg { stroke-dasharray: var(--len) 100; }
}

/* Page hero (interior pages) */
.page-hero {
  background:
    radial-gradient(110% 120% at 88% -10%, var(--green-tint) 0%, rgba(241,245,239,0) 50%),
    var(--paper);
  padding: clamp(3.5rem, 8vw, 6.5rem) 0 clamp(3rem, 6vw, 4.5rem);
}
.page-hero .inner { max-width: 760px; }
.page-hero h1 { font-size: clamp(2.5rem, 5.2vw, 4.2rem); }
.page-hero .lede { margin-top: 0.4rem; }
.page-hero .hero-actions { margin-top: 2.2rem; }

/* ============================================================
   Section heads
   ============================================================ */
.section-head { max-width: 720px; margin: 0 0 3.2rem; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head .lede { margin-top: 0.5rem; }
.section-green .section-head h2,
.section-green h2, .section-green h3 { color: var(--white); }
.section-green .eyebrow { color: var(--green-bright); }
.section-green .lede { color: rgba(255,255,255,0.78); }

/* ============================================================
   Split (text + media)
   ============================================================ */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 5vw, 5rem);
  align-items: center;
}
.split.media-left .split-media { order: -1; }
.split-text .lede { margin-bottom: 1.5rem; }
.split-media .media-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.split-media .media-frame img {
  width: 100%;
  aspect-ratio: 5 / 4;
  object-fit: cover;
}

/* Capability list */
.cap-list { list-style: none; padding: 0; margin: 1.8rem 0 0; display: grid; gap: 1.1rem; }
.cap-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.9rem;
  align-items: start;
}
.cap-list .tick {
  width: 26px; height: 26px;
  flex: none;
  border-radius: 50%;
  background: var(--green-soft);
  color: var(--green);
  display: grid; place-items: center;
  margin-top: 2px;
}
.cap-list .tick svg { width: 14px; height: 14px; }
.cap-list strong { display: block; margin-bottom: 1px; }
.cap-list p { color: var(--muted); margin: 0; font-size: 0.96rem; }

/* ============================================================
   Path cards (Who We Serve)
   ============================================================ */
.paths {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.6rem;
}
.path-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 2.6rem 2.3rem;
  color: var(--ink);
  position: relative;
  overflow: hidden;
  transition: box-shadow 0.3s var(--ease), transform 0.3s var(--ease), border-color 0.3s var(--ease);
}
.path-card::before {
  content: "";
  position: absolute; left: 0; top: 0;
  width: 100%; height: 3px;
  background: linear-gradient(90deg, var(--green), var(--green-mid));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
}
.path-card:hover {
  text-decoration: none;
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: transparent;
}
.path-card:hover::before { transform: scaleX(1); }
.path-num {
  font-family: var(--serif);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--brass);
  letter-spacing: 0.04em;
  margin-bottom: 1.4rem;
}
.path-card h3 { font-size: clamp(1.5rem, 2.2vw, 1.9rem); margin-bottom: 0.7rem; }
.path-card p { color: var(--muted); margin-bottom: 1.6rem; }
.path-card .textlink { margin-top: auto; }

/* ============================================================
   Testimonial "stickers"
   ============================================================ */
.quotes {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(330px, 1fr));
  gap: 1.7rem;
  max-width: 1000px;
  margin: 0 auto;
  align-items: start;
}
.quotes:has(> .quote-card:only-child) { max-width: 740px; }

.quote-card {
  position: relative;
  display: flex;
  flex-direction: column;
  margin: 0;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2.4rem 2.1rem;
  box-shadow: var(--shadow-md);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s var(--ease);
}
.quote-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
  z-index: 2;
}
/* peeled-corner brass tab */
.quote-card::before {
  content: "\201C";
  position: absolute;
  top: 0.7rem; left: 1.6rem;
  font-family: var(--serif);
  font-size: 3.4rem;
  line-height: 1;
  color: var(--brass);
  opacity: 0.28;
  pointer-events: none;
}
.quote-card blockquote {
  font-family: var(--serif);
  font-size: clamp(1.12rem, 1.5vw, 1.3rem);
  line-height: 1.5;
  font-weight: 500;
  color: var(--ink);
  margin: 1.6rem 0 1.8rem;
}
.quote-card figcaption {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin-top: auto;
  padding-top: 1.4rem;
  border-top: 1px solid var(--line-soft);
}
.quote-avatar {
  width: 48px; height: 48px;
  flex: none;
  border-radius: 50%;
  background: var(--green-tint);
  border: 1px solid var(--green-soft);
  color: var(--green);
  display: grid;
  place-items: center;
  font-family: var(--serif);
  font-weight: 600;
  font-size: 1.06rem;
  letter-spacing: 0.01em;
}
.quote-who { display: flex; flex-direction: column; line-height: 1.3; }
.quote-who strong { font-size: 1.02rem; color: var(--ink); }
.quote-who span { font-size: 0.88rem; color: var(--muted); }

/* ============================================================
   Feature cards (offering)
   ============================================================ */
.features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.4rem;
}
.feature {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 2rem 1.9rem;
  transition: box-shadow 0.3s var(--ease), transform 0.3s var(--ease);
}
.feature:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.feature .ico {
  width: 46px; height: 46px;
  border-radius: 11px;
  background: var(--green-tint);
  color: var(--green);
  display: grid; place-items: center;
  margin-bottom: 1.3rem;
}
.feature .ico svg { width: 22px; height: 22px; }
.feature h3 { font-size: 1.28rem; margin-bottom: 0.4rem; }
.feature p { color: var(--muted); font-size: 0.97rem; margin: 0; }

/* ============================================================
   Process / approach
   ============================================================ */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.8rem;
  counter-reset: step;
}
.step { position: relative; padding-top: 2.3rem; }
.step::before {
  counter-increment: step;
  content: "0" counter(step);
  position: absolute;
  top: 0; left: 0;
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--brass);
  letter-spacing: 0.06em;
}
.step::after {
  content: "";
  position: absolute;
  top: 0.55rem; left: 2.6rem; right: -0.9rem;
  height: 1px;
  background: var(--line);
}
.steps .step:last-child::after { display: none; }
.section-green .step::after { background: rgba(255,255,255,0.18); }
.section-green .step::before { color: var(--green-bright); }
.step h3 { font-size: 1.3rem; margin-bottom: 0.5rem; }
.step p { color: var(--muted); font-size: 0.98rem; margin: 0; }
.section-green .step p { color: rgba(255,255,255,0.74); }

/* ============================================================
   Pricing
   ============================================================ */
.pricing {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: stretch;
}
.tier {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.4rem 2rem;
  position: relative;
  transition: box-shadow 0.3s var(--ease), transform 0.3s var(--ease);
}
.tier:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.tier-featured {
  border: 1.5px solid var(--green);
  box-shadow: var(--shadow-lg);
  background: linear-gradient(180deg, var(--white) 0%, var(--green-tint) 100%);
}
.tier-featured:hover { transform: translateY(-5px); }
.tier-badge {
  position: absolute;
  top: -13px; left: 2rem;
  background: var(--green);
  color: var(--white);
  font-family: var(--sans);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.4rem 0.9rem;
  border-radius: 100px;
}
.tier h3 { font-size: 1.45rem; margin-bottom: 0.2rem; }
.tier-tag {
  color: var(--faint);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
  margin: 0 0 1.4rem;
}
.price {
  font-family: var(--serif);
  font-size: 2.9rem;
  font-weight: 600;
  color: var(--green);
  line-height: 1;
  margin: 0 0 0.3rem;
}
.price .cur { font-size: 1.5rem; vertical-align: top; color: var(--green-mid); }
.tier-desc { color: var(--muted); font-size: 0.96rem; margin: 0 0 1.6rem; }
.tier .btn { margin-top: auto; justify-content: center; }
.tier-note { text-align: center; color: var(--faint); font-size: 0.92rem; margin-top: 2rem; }

/* ============================================================
   Team
   ============================================================ */
.team-feature {
  display: grid;
  grid-template-columns: minmax(0, 240px) 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(1.8rem, 3.2vw, 3rem);
  box-shadow: var(--shadow-md);
}
.team-photo-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  max-width: 240px;
}
.team-photo-wrap img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center top;
}
.team-info h3 { font-size: clamp(1.7rem, 2.6vw, 2.2rem); margin-bottom: 0.25rem; }
.team-role {
  color: var(--green-mid);
  font-weight: 600;
  font-size: 0.86rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin: 0 0 1.4rem;
}
.team-bio { color: var(--muted); font-size: 1.02rem; }
.team-credentials {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.6rem;
}
.cred-chip {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--green);
  background: var(--green-tint);
  border: 1px solid var(--green-soft);
  padding: 0.4rem 0.85rem;
  border-radius: 100px;
}

/* ============================================================
   CTA band
   ============================================================ */
.cta-band {
  position: relative;
  overflow: hidden;
}
.cta-band .container { position: relative; z-index: 2; }
.cta-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.cta-inner h2 { color: var(--white); }
.cta-deco {
  position: absolute;
  right: -8%; top: 50%;
  transform: translateY(-50%) rotate(45deg);
  width: 380px; height: 380px;
  border: 1.5px solid rgba(255,255,255,0.08);
  border-radius: 40px;
  z-index: 1;
}
.cta-deco::after {
  content: "";
  position: absolute; inset: 34px;
  border: 1.5px solid rgba(255,255,255,0.06);
  border-radius: 30px;
}

/* ============================================================
   Contact
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: clamp(2.5rem, 5vw, 4.5rem);
  align-items: start;
}
.contact-text .lede { margin-bottom: 1.6rem; }
.contact-points { list-style: none; padding: 0; margin: 1.8rem 0 0; display: grid; gap: 1.1rem; }
.contact-points li { display: flex; gap: 0.8rem; align-items: flex-start; color: var(--muted); }
.contact-points .tick {
  width: 24px; height: 24px; flex: none;
  border-radius: 50%; background: var(--green-soft); color: var(--green);
  display: grid; place-items: center; margin-top: 1px;
}
.contact-points .tick svg { width: 13px; height: 13px; }

.form-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(1.8rem, 3vw, 2.6rem);
  box-shadow: var(--shadow-md);
}
.contact-form { display: flex; flex-direction: column; gap: 1.1rem; }
.contact-form label {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--muted);
}
.contact-form input,
.contact-form textarea {
  font-family: var(--sans);
  font-size: 1rem;
  padding: 0.85rem 1rem;
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  color: var(--ink);
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease), background 0.2s var(--ease);
}
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: var(--faint); }
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  background: var(--white);
  border-color: var(--green);
  box-shadow: 0 0 0 4px var(--green-tint);
}
.contact-form .btn { margin-top: 0.5rem; justify-content: center; }
.contact-form button[disabled] { opacity: 0.6; cursor: progress; }

.form-success:empty, .form-error:empty { display: none; }
.form-success {
  background: var(--green-soft);
  border-left: 3px solid var(--green);
  color: var(--green-deep);
  padding: 0.95rem 1.15rem;
  margin-bottom: 1rem;
  border-radius: var(--radius);
  font-weight: 500;
}
.form-error {
  background: #FBEAE9;
  border-left: 3px solid #C0392B;
  color: #A02B21;
  padding: 0.95rem 1.15rem;
  margin-bottom: 1rem;
  border-radius: var(--radius);
  font-weight: 500;
}
.field-error { color: #C0392B; font-size: 0.8rem; font-weight: 600; text-transform: none; letter-spacing: 0; }
.field-error:empty { display: none; }

/* ============================================================
   Footer
   ============================================================ */
.site-footer {
  background: var(--green-deep);
  color: rgba(255,255,255,0.72);
  padding: clamp(3.5rem, 6vw, 5rem) 0 2.5rem;
}
.footer-top {
  display: grid;
  grid-template-columns: 422px max-content 1fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.footer-brand-block { max-width: 320px; }
.footer-brand {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--white);
  margin: 0 0 0.5rem;
  display: flex; align-items: center; gap: 0.6rem;
}
.footer-brand .brand-mark { width: 46px; height: 46px; display: block; color: var(--paper); flex: none; }
.footer-tagline { color: rgba(255,255,255,0.6); font-size: 0.95rem; margin: 0; }
.footer-col h4 {
  font-family: var(--sans);
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: rgba(255,255,255,0.5);
  margin: 0 0 1.2rem;
}
.footer-col a { display: block; color: rgba(255,255,255,0.78); margin-bottom: 0.7rem; font-size: 0.96rem; }
.footer-col a:hover { color: var(--white); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  padding-top: 2rem;
  font-size: 0.86rem;
  color: rgba(255,255,255,0.5);
}
.footer-bottom a { color: rgba(255,255,255,0.7); }
.footer-bottom a:hover { color: var(--white); }

/* ============================================================
   v2 additions — niche-forward, proof-led components
   ============================================================ */

/* --- Hero: honest deliverable card (replaces fake donut) --- */
.deliverable-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 1.6rem 1.6rem 1.4rem;
  position: relative;
}
.deliverable-card .dc-head {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding-bottom: 1.1rem;
  margin-bottom: 1.1rem;
  border-bottom: 1px solid var(--line-soft);
}
.deliverable-card .dc-badge {
  font-family: var(--sans);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green);
  background: var(--green-tint);
  border: 1px solid var(--green-soft);
  padding: 0.32rem 0.7rem;
  border-radius: 100px;
}
.deliverable-card .dc-title {
  font-family: var(--serif);
  font-size: 1.18rem;
  font-weight: 600;
  color: var(--ink);
  margin-left: auto;
}
.deliverable-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.85rem; }
.deliverable-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.75rem;
  align-items: start;
  font-size: 0.95rem;
  color: var(--ink);
}
.deliverable-list .tick {
  width: 22px; height: 22px; flex: none; margin-top: 1px;
  border-radius: 50%;
  background: var(--green-soft); color: var(--green);
  display: grid; place-items: center;
}
.deliverable-list .tick svg { width: 12px; height: 12px; }
.deliverable-list strong { display: block; font-weight: 600; }
.deliverable-list .dl-sub { color: var(--muted); font-size: 0.86rem; }
.deliverable-foot {
  margin-top: 1.3rem;
  padding-top: 1.1rem;
  border-top: 1px solid var(--line-soft);
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
}
.deliverable-foot .df-label { font-size: 0.78rem; color: var(--faint); text-transform: uppercase; letter-spacing: 0.1em; font-weight: 600; }
.deliverable-foot .df-val { font-family: var(--serif); font-size: 1.35rem; font-weight: 600; color: var(--green); }

/* --- Trust strip (credibility bar) --- */
.trust-strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--paper-2);
}
.trust-strip .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1rem 2.4rem;
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}
.trust-item {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--muted);
}
.trust-item svg { width: 19px; height: 19px; color: var(--green-mid); flex: none; }
.trust-sep { width: 1px; height: 22px; background: var(--line); }
@media (max-width: 700px) { .trust-sep { display: none; } }

/* --- Decisions grid (concrete outcomes) --- */
.decisions {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.3rem;
}
.decision {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.9rem 1.7rem;
  transition: box-shadow 0.3s var(--ease), transform 0.3s var(--ease), border-color 0.3s var(--ease);
}
.decision:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); border-color: var(--green-soft); }
.decision .d-q {
  font-family: var(--serif);
  font-size: 1.18rem;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.3;
  margin: 0 0 0.7rem;
}
.decision .d-q::before {
  content: "";
  display: block;
  width: 30px; height: 2px;
  background: var(--brass);
  margin-bottom: 1rem;
}
.decision p { color: var(--muted); font-size: 0.95rem; margin: 0; }

/* --- Proof / case panel --- */
.proof-panel {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 0;
  align-items: stretch;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}
.proof-figure {
  background: linear-gradient(160deg, var(--green-deep) 0%, #0d2718 100%);
  color: #fff;
  padding: clamp(2rem, 4vw, 3.2rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.4rem;
}
.proof-figure .pf-big {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 4.5vw, 3.4rem);
  font-weight: 600;
  line-height: 1.05;
  color: #fff;
}
.proof-figure .pf-cap { color: rgba(255,255,255,0.78); font-size: 0.96rem; max-width: 32ch; }
.proof-figure .pf-rule { height: 1px; background: rgba(255,255,255,0.16); }
.proof-figure .pf-row { display: flex; gap: 2rem; flex-wrap: wrap; }
.proof-figure .pf-row div span { display: block; font-size: 0.74rem; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(255,255,255,0.55); margin-bottom: 0.3rem; }
.proof-figure .pf-row div strong { font-family: var(--serif); font-size: 1.4rem; font-weight: 600; color: #fff; }
.proof-body { padding: clamp(2rem, 4vw, 3.2rem); display: flex; flex-direction: column; justify-content: center; }
.proof-body .eyebrow { margin-bottom: 1rem; }
.proof-body blockquote {
  font-family: var(--serif);
  font-size: clamp(1.2rem, 1.7vw, 1.5rem);
  line-height: 1.45;
  font-weight: 500;
  color: var(--ink);
  margin: 0 0 1.4rem;
}
.proof-body .pb-who strong { display: block; color: var(--ink); }
.proof-body .pb-who span { color: var(--muted); font-size: 0.92rem; }
@media (max-width: 860px) {
  .proof-panel { grid-template-columns: 1fr; }
}

/* --- FAQ accordion --- */
.faq { max-width: 820px; margin: 0 auto; display: grid; gap: 0.8rem; }
.faq-item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.faq-item[open] { border-color: var(--green-soft); box-shadow: var(--shadow-sm); }
.faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--ink);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary .faq-ico {
  margin-left: auto;
  flex: none;
  width: 22px; height: 22px;
  position: relative;
}
.faq-item summary .faq-ico::before,
.faq-item summary .faq-ico::after {
  content: "";
  position: absolute; top: 50%; left: 50%;
  width: 13px; height: 2px;
  background: var(--green);
  transform: translate(-50%, -50%);
}
.faq-item summary .faq-ico::after { transform: translate(-50%, -50%) rotate(90deg); transition: transform 0.3s var(--ease); }
.faq-item[open] summary .faq-ico::after { transform: translate(-50%, -50%) rotate(0deg); }
.faq-item .faq-body { padding: 0 1.5rem 1.4rem; color: var(--muted); font-size: 1rem; }
.faq-item .faq-body p { margin: 0; }

/* --- "What We Do" differentiation panel (class for inline style) --- */
.diff-figure { border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }

/* --- Direct-access reassurance row --- */
.direct-note {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin-top: 1.6rem;
  padding: 0.9rem 1.1rem;
  background: var(--green-tint);
  border: 1px solid var(--green-soft);
  border-radius: var(--radius);
  font-size: 0.95rem;
  color: var(--green-deep);
}
.direct-note svg { width: 20px; height: 20px; color: var(--green-mid); flex: none; }
.direct-note strong { color: var(--green-deep); }

/* --- Final CTA band (home) --- */
.home-cta { background: var(--green-deep); color: #fff; position: relative; overflow: hidden; }
.home-cta .container { position: relative; z-index: 2; text-align: center; }
.home-cta h2 { color: #fff; max-width: 22ch; margin-left: auto; margin-right: auto; }
.home-cta .lede { color: rgba(255,255,255,0.8); max-width: 54ch; margin: 0 auto 2rem; }
.home-cta .hero-actions { justify-content: center; }

/* ============================================================
   Scroll reveal
   ============================================================ */
[data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
  will-change: opacity, transform;
}
[data-reveal].in { opacity: 1; transform: none; }
[data-reveal][data-delay="1"] { transition-delay: 0.08s; }
[data-reveal][data-delay="2"] { transition-delay: 0.16s; }
[data-reveal][data-delay="3"] { transition-delay: 0.24s; }
@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1; transform: none; transition: none; }
}

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; gap: 3rem; padding-left: var(--gutter); padding-right: var(--gutter); }
  .hero-copy { max-width: 640px; }
  .hero .lede { max-width: 46ch; }
  .hero-media { max-width: 460px; }
  .cta-inner { grid-template-columns: 1fr; }
  .cta-inner .cta-actions { justify-self: start; }
  .team-feature { grid-template-columns: 1fr; }
  .team-photo-wrap { max-width: 320px; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 860px) {
  body { font-size: 16px; }
  .split { grid-template-columns: 1fr; }
  .split.media-left .split-media,
  .split-media { order: -1; }
  .features { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; gap: 1.4rem; }
  .step { padding-top: 0; padding-left: 3rem; }
  .step::before { top: 0.1rem; }
  .step::after { display: none; }
  .pricing { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer-brand-block { grid-column: 1 / -1; }
}

/* Nav collapse (slightly earlier so links never crowd) */
@media (max-width: 1040px) {
  .nav {
    position: fixed;
    inset: 78px 0 auto 0;
    flex-direction: column;
    align-items: stretch;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-md);
    padding: 1.2rem var(--gutter) 1.8rem;
    gap: 0.4rem;
    display: none;
  }
  .nav.open { display: flex; }
  .nav a { padding: 0.7rem 0; font-size: 1.05rem; }
  .nav a:not(.btn)::after { display: none; }
  .nav .btn { margin-top: 0.6rem; justify-content: center; padding: 0.85rem; font-size: 1rem; }
  .nav-toggle { display: flex; }
}

@media (max-width: 980px) {
  .decisions { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 620px) {
  .decisions { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  .paths { grid-template-columns: 1fr; }
  .hero-actions { width: 100%; }
  .hero-actions .btn { flex: 1; justify-content: center; }
  .stat-card { left: 12px; bottom: -28px; }
  .footer-top { grid-template-columns: 1fr; }
  .brand-name { font-size: 1.15rem; }
}
