:root {
  color-scheme: light dark;
  --green-900: #063d2a;
  --green-800: #084c34;
  --green-700: #0b5d3b;
  --green-600: #137a4b;
  --green-200: #bce8cf;
  --green-100: #dcf4e6;
  --green-50: #f0faf4;
  --ink-950: #0d1f18;
  --ink-800: #243b31;
  --ink-600: #53675e;
  --gray-300: #c8d1cc;
  --gray-200: #dfe6e2;
  --gray-100: #edf2ef;
  --gray-50: #f6f8f7;
  --white: #ffffff;
  --surface: #ffffff;
  --surface-soft: #f0faf4;
  --surface-muted: #f6f8f7;
  --text: #243b31;
  --text-strong: #0d1f18;
  --text-muted: #53675e;
  --border: #dfe6e2;
  --shadow: 0 18px 48px rgba(13, 31, 24, 0.12);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --container: 1180px;
  --font: "Manrope", "Segoe UI", Arial, sans-serif;
}

@media (prefers-color-scheme: dark) {
  :root {
    --surface: #101914;
    --surface-soft: #14251c;
    --surface-muted: #17211c;
    --text: #d8e4dd;
    --text-strong: #f2f7f4;
    --text-muted: #aabbb2;
    --border: #2d3e35;
    --shadow: 0 18px 48px rgba(0, 0, 0, 0.32);
    --green-50: #14251c;
    --gray-50: #17211c;
    --gray-100: #1e2b24;
    --gray-200: #2d3e35;
    --gray-300: #465b50;
    --white: #f2f7f4;
  }
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--text);
  background: var(--surface);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }

h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 {
  color: var(--text-strong);
  font-weight: 700;
  letter-spacing: -0.035em;
}
h1 { max-width: 11ch; margin-bottom: 24px; font-size: clamp(2.8rem, 5.6vw, 5.2rem); line-height: 0.98; }
h2 { margin-bottom: 20px; font-size: clamp(2.15rem, 4vw, 3.65rem); line-height: 1.05; }
h3 { margin-bottom: 12px; font-size: clamp(1.35rem, 2.2vw, 1.8rem); line-height: 1.2; }
p { margin-bottom: 18px; }

.container { width: min(var(--container), calc(100% - 40px)); margin-inline: auto; }
.skip-link { position: fixed; top: 12px; left: 12px; z-index: 100; padding: 10px 14px; color: #fff; background: var(--green-900); transform: translateY(-160%); }
.skip-link:focus { transform: translateY(0); }
.sr-only { width: 1px; height: 1px; padding: 0; position: absolute; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }

.notice { color: #e9f8ef; background: var(--green-900); font-size: 0.78rem; }
.notice__inner { min-height: 38px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.notice p { margin: 0; }
.notice a { white-space: nowrap; font-weight: 700; text-underline-offset: 3px; }

.site-header { position: sticky; top: 0; z-index: 20; border-bottom: 1px solid var(--border); background: color-mix(in srgb, var(--surface) 92%, transparent); box-shadow: 0 5px 24px rgba(13, 31, 24, 0.04); backdrop-filter: blur(14px); }
.nav-wrap { min-height: 72px; display: flex; align-items: center; gap: 28px; }
.brand { display: inline-flex; align-items: center; gap: 10px; color: var(--text-strong); font-size: 1.02rem; font-weight: 500; text-decoration: none; white-space: nowrap; }
.brand__logo { height: 180px; width: auto; display: block; }
.brand__mark { width: 36px; height: 36px; display: grid; place-items: center; border-radius: 50%; color: #fff; background: var(--green-700); font-weight: 800; }
.brand strong { color: var(--green-700); font-weight: 800; }
.primary-nav { margin-left: auto; display: flex; align-items: center; gap: 23px; }
.primary-nav a { color: var(--text); font-size: 0.88rem; font-weight: 600; text-decoration: none; }
.primary-nav a:hover { color: var(--green-600); }
.menu-button { display: none; border: 0; color: var(--text-strong); background: transparent; cursor: pointer; }
.header-cta { flex: 0 0 auto; }

.button { min-height: 50px; display: inline-flex; align-items: center; justify-content: center; padding: 0 24px; border: 1px solid var(--green-700); border-radius: var(--radius-sm); color: #fff; background: var(--green-700); font-weight: 700; line-height: 1; text-decoration: none; white-space: nowrap; cursor: pointer; transition: background 180ms ease, border-color 180ms ease, transform 180ms ease; }
.button:hover { border-color: var(--green-800); background: var(--green-800); transform: translateY(-1px); }
.button:active { transform: scale(0.98); }
.button--small { min-height: 42px; padding-inline: 18px; font-size: 0.85rem; }
.button--outline { color: var(--green-700); background: transparent; }
.button--outline:hover { color: #fff; }
.text-link { display: inline-flex; align-items: center; gap: 10px; color: var(--green-700); font-weight: 750; text-decoration: none; }
.text-link span { transition: transform 180ms ease; }
.text-link:hover span { transform: translateX(4px); }
.button:focus-visible, .text-link:focus-visible, a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible { outline: 3px solid rgba(35, 165, 102, 0.45); outline-offset: 3px; }

.hero { overflow: hidden; padding: clamp(48px, 7vw, 92px) 0 72px; }
.hero__grid { display: grid; grid-template-columns: 0.82fr 1.35fr; align-items: center; gap: clamp(38px, 6vw, 84px); }
.eyebrow { margin-bottom: 18px; color: var(--green-600); font-size: 0.74rem; font-weight: 800; letter-spacing: 0.16em; text-transform: uppercase; }
.hero__lead { max-width: 33rem; margin-bottom: 30px; color: var(--text-muted); font-size: clamp(1.05rem, 1.5vw, 1.23rem); line-height: 1.6; }
.button-row { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.hero__media { position: relative; min-height: 520px; overflow: hidden; border-radius: var(--radius-lg); box-shadow: var(--shadow); }
.hero__media img { width: 100%; height: 100%; position: absolute; inset: 0; object-fit: cover; object-position: 63% center; }
.hero__media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 60%, rgba(5, 25, 17, 0.56)); pointer-events: none; }
.hero__caption { position: absolute; right: 24px; bottom: 22px; left: 24px; z-index: 2; display: flex; justify-content: space-between; gap: 20px; color: #fff; font-size: 0.78rem; font-weight: 700; }

.trust-strip { border-block: 1px solid var(--border); }
.trust-strip__grid { min-height: 132px; display: grid; grid-template-columns: repeat(3, 1fr); align-items: center; }
.trust-strip p { margin: 0; padding: 0 30px; display: grid; gap: 4px; border-right: 1px solid var(--border); }
.trust-strip p:first-child { padding-left: 0; }
.trust-strip p:last-child { border: 0; }
.trust-strip strong { color: var(--text-strong); font-size: 0.92rem; }
.trust-strip span { color: var(--text-muted); font-size: 0.8rem; }

.section { padding: clamp(80px, 10vw, 132px) 0; }
.section--soft { background: var(--surface-soft); }
.section-heading { max-width: 720px; margin-bottom: 58px; }
.section-heading p, .audience-intro p, .process__intro p { max-width: 58ch; color: var(--text-muted); font-size: 1.05rem; }
.service-layout { display: grid; grid-template-columns: 1.02fr 1fr; gap: clamp(34px, 7vw, 90px); }
.service-feature { min-height: 470px; padding: clamp(30px, 4.5vw, 56px); display: flex; flex-direction: column; justify-content: space-between; border-radius: var(--radius-lg); color: #e9f8ef; background: var(--green-900); }
.service-feature h3 { color: #fff; font-size: clamp(2.4rem, 4vw, 4.2rem); }
.service-feature p { max-width: 40ch; color: #cce1d4; }
.service-feature .text-link { color: #fff; }
.service-feature__number { color: var(--green-200); font-weight: 800; }
.service-list { display: grid; align-content: start; }
.service-list article { padding: 25px 0; display: grid; grid-template-columns: 48px 1fr; gap: 15px; border-bottom: 1px solid var(--border); }
.service-list article:first-child { padding-top: 0; }
.service-list article > span { color: var(--green-600); font-size: 0.8rem; font-weight: 800; }
.service-list h3 { margin-bottom: 7px; font-size: 1.25rem; }
.service-list p { margin: 0; color: var(--text-muted); font-size: 0.91rem; }

.audience-grid { display: grid; grid-template-columns: 0.8fr 1fr 1fr; align-items: stretch; gap: 20px; }
.audience-intro { padding: 18px 32px 18px 0; align-self: center; }
.audience-panel { min-height: 400px; padding: 34px; display: flex; flex-direction: column; justify-content: flex-end; border: 1px solid var(--green-200); border-radius: var(--radius-lg); background: var(--surface); }
.audience-panel--dark { color: #dcebe2; border-color: var(--green-900); background: var(--green-900); }
.audience-panel--dark h3 { color: #fff; }
.audience-panel h3 { max-width: 14ch; }
.audience-panel p { color: var(--text-muted); font-size: 0.92rem; }
.audience-panel--dark p { color: #bdd3c5; }
.audience-panel a { margin-top: 12px; font-weight: 750; text-underline-offset: 5px; }
.audience-panel__label { margin-bottom: auto; color: var(--green-600); font-size: 0.78rem; font-weight: 800; }
.audience-panel--dark .audience-panel__label { color: var(--green-200); }

.process__grid { display: grid; grid-template-columns: 0.82fr 1.18fr; gap: clamp(50px, 9vw, 120px); }
.process__intro { position: sticky; top: 125px; align-self: start; }
.process__intro .button { margin-top: 18px; }
.process__steps { margin: 0; padding: 0; list-style: none; }
.process__steps li { min-height: 190px; padding: 30px 0; display: grid; grid-template-columns: 95px 1fr; gap: 25px; border-bottom: 1px solid var(--border); }
.process__steps li:first-child { padding-top: 0; }
.process__steps li > span { color: var(--green-600); font-size: 0.85rem; font-weight: 800; }
.process__steps h3 { font-size: 1.55rem; }
.process__steps p { max-width: 45ch; color: var(--text-muted); }

.section--ink { color: #dcebe2; background: var(--green-900); }
.case-layout { display: grid; grid-template-columns: 0.95fr 1.05fr; align-items: center; gap: clamp(50px, 8vw, 100px); }
.case-layout h2 { max-width: 13ch; color: #fff; }
.case-layout__copy > p:not(.eyebrow):not(.case-note) { max-width: 52ch; color: #c4d8cc; }
.case-layout__image { width: 100%; aspect-ratio: 4/5; object-fit: cover; border-radius: var(--radius-lg); }
.case-facts { margin: 38px 0 24px; }
.case-facts div { padding: 13px 0; display: grid; grid-template-columns: 105px 1fr; border-bottom: 1px solid rgba(255,255,255,0.16); }
.case-facts dt { color: #a9c5b5; font-size: 0.78rem; }
.case-facts dd { margin: 0; color: #fff; font-weight: 650; }
.case-note { color: #96b4a3; font-size: 0.75rem; }

.insights__heading { margin-bottom: 44px; display: flex; align-items: end; justify-content: space-between; gap: 30px; }
.insights__heading h2 { margin: 0; }
.insights__grid { display: grid; grid-template-columns: 1.25fr 0.75fr; gap: clamp(40px, 7vw, 86px); }
.article-feature img { width: 100%; aspect-ratio: 16/10; object-fit: cover; border-radius: var(--radius-lg); transition: transform 350ms cubic-bezier(.16,1,.3,1); }
.article-feature > a { display: block; overflow: hidden; border-radius: var(--radius-lg); }
.article-feature > a:hover img { transform: scale(1.02); }
.article-feature__body { max-width: 610px; padding-top: 24px; }
.article-feature h3 { font-size: clamp(1.7rem, 3vw, 2.55rem); }
.article-feature h3 a, .article-list h3 a { text-decoration: none; }
.article-feature h3 a:hover, .article-list h3 a:hover { color: var(--green-600); }
.article-feature__body > p:last-child, .article-list article > p:last-child { color: var(--text-muted); }
.article-meta { display: flex; gap: 18px; color: var(--green-600); font-size: 0.75rem; font-weight: 800; }
.article-meta span { color: var(--text-muted); font-weight: 600; }
.article-list article { padding: 0 0 28px; margin-bottom: 28px; border-bottom: 1px solid var(--border); }
.article-list article:last-child { margin-bottom: 0; }
.article-list h3 { font-size: 1.26rem; }
.article-list article > p:last-child { margin: 0; font-size: 0.88rem; }

.assessment { background: var(--surface-muted); }
.assessment__grid { display: grid; grid-template-columns: 0.82fr 1.18fr; gap: clamp(48px, 9vw, 120px); align-items: start; }
.assessment__copy { padding-top: 22px; }
.assessment__copy h2 { max-width: 12ch; }
.assessment__copy > p { max-width: 47ch; color: var(--text-muted); }
.assessment__copy ul { margin: 34px 0 0; padding: 0; display: grid; gap: 12px; list-style: none; }
.assessment__copy li { padding-left: 28px; position: relative; font-weight: 650; }
.assessment__copy li::before { content: "✓"; position: absolute; left: 0; color: var(--green-600); font-weight: 900; }
.assessment-form { padding: clamp(26px, 4vw, 44px); border: 1px solid var(--border); border-radius: var(--radius-lg); background: var(--surface); box-shadow: 0 12px 40px rgba(13,31,24,0.06); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { margin-bottom: 20px; }
.field label { display: block; margin-bottom: 7px; color: var(--text-strong); font-size: 0.84rem; font-weight: 750; }
.field input, .field select, .field textarea { width: 100%; min-height: 49px; padding: 11px 13px; border: 1px solid var(--gray-300); border-radius: var(--radius-sm); color: var(--text-strong); background: var(--surface); }
.field textarea { resize: vertical; }
.field input:hover, .field select:hover, .field textarea:hover { border-color: var(--text-muted); }
.field [aria-invalid="true"] { border-color: #a83232; }
.field-help, .form-footnote { margin: 6px 0 0; color: var(--text-muted); font-size: 0.73rem; }
.field-error { display: block; min-height: 18px; margin-top: 3px; color: #a83232; font-size: 0.75rem; }
.check-field { margin: 3px 0 24px; display: grid; grid-template-columns: 20px 1fr; gap: 11px; color: var(--text); font-size: 0.78rem; }
.check-field input { width: 18px; height: 18px; accent-color: var(--green-700); }
.form-status { display: none; margin-bottom: 20px; padding: 13px 15px; border-radius: var(--radius-sm); font-size: 0.82rem; }
.form-status.is-success { display: block; color: #0c5634; background: #e7f7ed; }
.form-status.is-error { display: block; color: #842626; background: #fdecec; }
.assessment-form[aria-busy="true"] { cursor: wait; }
.assessment-form .button:disabled { cursor: wait; opacity: 0.68; transform: none; }

.site-footer { padding: 76px 0 24px; color: #bad0c3; background: #071c13; }
.footer-grid { display: grid; grid-template-columns: 1.7fr repeat(3, 1fr); gap: 48px; }
.brand--light { color: #fff; }
.brand--light strong { color: #90d2aa; }
.footer-brand p { max-width: 310px; margin-top: 22px; color: #8fa99a; }
.footer-grid h2 { margin: 7px 0 20px; color: #fff; font-size: 0.86rem; letter-spacing: 0; }
.footer-grid > div:not(.footer-brand) { display: flex; flex-direction: column; align-items: flex-start; gap: 10px; }
.footer-grid > div:not(.footer-brand) a { color: #a9c0b3; font-size: 0.82rem; text-decoration: none; }
.footer-grid a:hover { color: #fff; }
.footer-contact p { margin: 10px 0; color: #a9c0b3; font-size: 0.82rem; }
.footer-contact a { color: #a9c0b3; text-decoration: none; }
.footer-contact a:hover { color: #fff; }
.footer-bottom { margin-top: 70px; padding-top: 20px; display: flex; justify-content: space-between; gap: 30px; border-top: 1px solid rgba(255,255,255,0.12); color: #7f9a8b; font-size: 0.7rem; }
.footer-bottom p { margin: 0; }

/* Blog */
.page-hero { padding: 88px 0 64px; }
.page-hero h1 { max-width: 12ch; font-size: clamp(3rem, 7vw, 6rem); }
.page-hero p { max-width: 570px; color: var(--text-muted); font-size: 1.15rem; }
.blog-tools { margin-top: 38px; display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.search-field { min-width: min(360px, 100%); position: relative; }
.search-field input { width: 100%; min-height: 48px; padding: 10px 14px; border: 1px solid var(--gray-300); border-radius: var(--radius-sm); color: var(--text-strong); background: var(--surface); }
.filter-button { min-height: 42px; padding: 0 16px; border: 1px solid var(--border); border-radius: 999px; color: var(--text); background: var(--surface); font-weight: 650; cursor: pointer; }
.filter-button[aria-pressed="true"] { color: #fff; border-color: var(--green-700); background: var(--green-700); }
.blog-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 48px 24px; }
.blog-card { grid-column: span 4; }
.blog-card--wide { grid-column: span 8; }
.blog-card[hidden] { display: none; }
.blog-card img { width: 100%; aspect-ratio: 4/3; object-fit: cover; border-radius: var(--radius-md); }
.blog-card--wide img { aspect-ratio: 16/8.5; }
.blog-card__body { padding-top: 18px; }
.blog-card h2 { margin-bottom: 11px; font-size: 1.5rem; }
.blog-card--wide h2 { font-size: clamp(1.8rem, 3vw, 2.8rem); }
.blog-card h2 a { text-decoration: none; }
.blog-card p:last-child { color: var(--text-muted); font-size: 0.9rem; }
.empty-state { display: none; padding: 60px 24px; text-align: center; border: 1px solid var(--border); border-radius: var(--radius-md); }
.empty-state.is-visible { display: block; }

/* Results */
.results-hero { padding: clamp(48px, 6.5vw, 88px) 0 clamp(64px, 8vw, 108px); }
.results-hero__grid { display: grid; grid-template-columns: minmax(0, 0.9fr) minmax(460px, 1.1fr); align-items: center; gap: clamp(44px, 7vw, 104px); }
.results-hero__copy h1 { max-width: 9.5ch; font-size: clamp(3.6rem, 6.4vw, 6.9rem); line-height: 0.94; }
.results-hero__lead { max-width: 34rem; margin-bottom: 30px; color: var(--text-muted); font-size: clamp(1.05rem, 1.45vw, 1.2rem); }
.results-hero__media { min-height: 520px; margin: 0; overflow: hidden; border-radius: var(--radius-lg); background: var(--surface-muted); box-shadow: var(--shadow); }
.results-hero__media img { width: 100%; height: 100%; min-height: 520px; display: block; object-fit: cover; object-position: 55% center; }

.results-context { padding: clamp(64px, 8vw, 104px) 0; border-block: 1px solid var(--border); background: var(--surface-soft); }
.results-context__grid { display: grid; grid-template-columns: 0.85fr 1.15fr; align-items: start; gap: clamp(52px, 10vw, 150px); }
.results-context__range { margin: 0; display: grid; gap: 10px; }
.results-context__range strong { color: var(--green-700); font-size: clamp(3rem, 6.4vw, 6.4rem); font-weight: 760; letter-spacing: -0.07em; line-height: 0.95; }
.results-context__range span { color: var(--text-muted); font-size: 0.85rem; font-weight: 700; }
.results-context__copy h2 { margin-bottom: 16px; font-size: clamp(2rem, 3.3vw, 3.2rem); }
.results-context__copy > p { max-width: 58ch; color: var(--text); }
.results-context__note { margin-top: 28px; padding-top: 22px; border-top: 1px solid var(--border); color: var(--text-muted) !important; font-size: 0.82rem; }

.results-cases { background: var(--surface); }
.results-cases__heading { max-width: 640px; margin-bottom: 42px; }
.results-cases__heading h2 { margin-bottom: 10px; }
.results-cases__heading p { margin: 0; color: var(--text-muted); }
.results-ledger { border-top: 2px solid var(--text-strong); }
.result-row { padding: 36px 0; display: grid; grid-template-columns: 0.58fr 1.32fr 0.72fr; align-items: start; gap: clamp(28px, 5vw, 76px); border-bottom: 1px solid var(--border); }
.result-row__type { margin: 8px 0 0; color: var(--green-600); font-size: 0.8rem; font-weight: 800; }
.result-row__main h3 { margin-bottom: 14px; font-size: clamp(2rem, 3.4vw, 3.5rem); letter-spacing: -0.045em; }
.result-row__main h3 span { color: var(--text-muted); font-size: 0.33em; font-weight: 650; letter-spacing: 0; }
.result-row__main p { max-width: 56ch; margin: 0; color: var(--text-muted); font-size: 0.92rem; }
.result-row__facts { margin: 7px 0 0; display: grid; gap: 18px; }
.result-row__facts div { display: grid; gap: 3px; }
.result-row__facts dt { color: var(--text-muted); font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; }
.result-row__facts dd { margin: 0; color: var(--text-strong); font-size: 0.86rem; font-weight: 700; }
.result-row--featured { margin-inline: -28px; padding-inline: 28px; border-bottom: 0; border-radius: var(--radius-lg); background: var(--surface-soft); }

.results-next { padding: clamp(70px, 9vw, 118px) 0; background: var(--surface-muted); }
.results-next__grid { display: grid; grid-template-columns: 1fr auto; align-items: end; gap: 40px; }
.results-next__grid h2 { max-width: 13ch; margin-bottom: 14px; }
.results-next__grid p { max-width: 55ch; margin: 0; color: var(--text-muted); }

/* About */
.about-hero { padding: clamp(48px, 6.5vw, 88px) 0 clamp(70px, 9vw, 120px); }
.about-hero__grid { display: grid; grid-template-columns: minmax(0, 0.95fr) minmax(460px, 1.05fr); align-items: center; gap: clamp(44px, 7vw, 104px); }
.about-hero__copy, .about-hero__media { min-width: 0; }
.about-hero__copy h1 { max-width: 10ch; font-size: clamp(3.5rem, 6vw, 6.4rem); line-height: 0.96; }
.about-hero__copy > p:not(.eyebrow) { max-width: 35rem; margin-bottom: 30px; color: var(--text-muted); font-size: clamp(1.05rem, 1.4vw, 1.2rem); }
.about-hero__media { min-height: 540px; margin: 0; overflow: hidden; border-radius: var(--radius-lg); box-shadow: var(--shadow); }
.about-hero__media img { width: 100%; height: 100%; min-height: 540px; display: block; object-fit: cover; object-position: 55% center; }
.about-position { padding: clamp(72px, 10vw, 132px) 0; border-block: 1px solid var(--border); background: var(--surface-soft); }
.about-position__grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(54px, 10vw, 150px); }
.about-position h2 { max-width: 12ch; margin: 0; font-size: clamp(2.4rem, 4.6vw, 4.6rem); }
.about-position__copy p { max-width: 58ch; color: var(--text); font-size: 1.04rem; }
.about-position__copy p:first-child { margin-top: 5px; }
.about-principles__heading { max-width: 650px; margin-bottom: 48px; }
.about-principles__grid { display: grid; grid-template-columns: 1fr 1fr; border-top: 2px solid var(--text-strong); }
.about-principles article { min-height: 260px; padding: 34px 48px 38px 0; border-bottom: 1px solid var(--border); }
.about-principles article:nth-child(odd) { border-right: 1px solid var(--border); }
.about-principles article:nth-child(even) { padding-left: 48px; }
.about-principles article > span { color: var(--green-600); font-size: 0.76rem; font-weight: 800; }
.about-principles h3 { margin-top: 54px; font-size: clamp(1.55rem, 2.5vw, 2.25rem); }
.about-principles p { max-width: 42ch; margin: 0; color: var(--text-muted); }
.about-transparency { padding: clamp(74px, 10vw, 132px) 0; background: var(--surface-muted); }
.about-transparency__grid { display: grid; grid-template-columns: 0.9fr 1.1fr; align-items: start; gap: clamp(54px, 10vw, 150px); }
.about-transparency__statement { padding: clamp(28px, 4vw, 46px); border-radius: var(--radius-lg); color: #e9f8ef; background: var(--green-900); }
.about-transparency__statement p { margin: 0; color: inherit; font-size: clamp(2rem, 4vw, 3.8rem); font-weight: 760; letter-spacing: -0.045em; line-height: 1.04; }
.about-transparency__copy h2 { margin-bottom: 18px; }
.about-transparency__copy p { max-width: 58ch; color: var(--text-muted); }
.about-contact { padding: clamp(74px, 10vw, 124px) 0; }
.about-contact__grid { display: grid; grid-template-columns: 1.15fr 0.85fr auto; align-items: end; gap: clamp(36px, 6vw, 86px); }
.about-contact h2 { max-width: 11ch; }
.about-contact__grid > div:first-child p { max-width: 48ch; color: var(--text-muted); }
.about-contact__details { display: grid; gap: 16px; }
.about-contact__details p { margin: 0; color: var(--text); font-size: 0.86rem; }
.about-contact__details span { display: block; margin-bottom: 3px; color: var(--text-muted); font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; }
.about-contact__details a { color: var(--text-strong); text-decoration: none; }

/* Article */
.article-shell { padding: 72px 0 110px; }
.article-header { max-width: 870px; margin: 0 auto 48px; }
.article-header h1 { max-width: 15ch; font-size: clamp(2.8rem, 6vw, 5.3rem); }
.article-header__summary { max-width: 680px; color: var(--text-muted); font-size: 1.18rem; }
.article-byline { display: flex; gap: 18px; color: var(--text-muted); font-size: 0.78rem; }
.article-hero { width: min(1180px, calc(100% - 40px)); margin: 0 auto 60px; aspect-ratio: 16/8; object-fit: cover; border-radius: var(--radius-lg); }
.article-body { width: min(720px, calc(100% - 40px)); margin-inline: auto; }
.article-body h2 { margin-top: 52px; font-size: clamp(1.8rem, 3.5vw, 2.55rem); }
.article-body h3 { margin-top: 34px; }
.article-body p, .article-body li { color: var(--text); font-size: 1.05rem; }
.article-body a { color: var(--green-600); }
.article-body blockquote { margin: 40px 0; padding: 24px 28px; border-left: 4px solid var(--green-600); color: var(--text-strong); background: var(--surface-soft); font-size: 1.15rem; font-weight: 650; }
.article-callout { margin: 42px 0; padding: 28px; border-radius: var(--radius-md); color: #eaf5ee; background: var(--green-900); }
.article-callout h3 { margin-top: 0; color: #fff; }
.article-callout p { color: #c8dbd0; }
.article-callout .button { color: var(--green-900); border-color: #fff; background: #fff; }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity 600ms cubic-bezier(.16,1,.3,1), transform 600ms cubic-bezier(.16,1,.3,1); }
.reveal--delay { transition-delay: 90ms; }
.reveal.is-visible { opacity: 1; transform: none; }

@media (max-width: 1060px) {
  .primary-nav { gap: 15px; }
  .primary-nav a { font-size: 0.78rem; }
  .nav-wrap { gap: 17px; }
  .audience-grid { grid-template-columns: 1fr 1fr; }
  .audience-intro { grid-column: 1 / -1; max-width: 650px; }
}

@media (max-width: 820px) {
  .notice__inner { padding-block: 7px; align-items: flex-start; }
  .notice a { display: none; }
  .menu-button { margin-left: auto; display: inline-flex; align-items: center; gap: 9px; }
  .menu-button__lines, .menu-button__lines::before, .menu-button__lines::after { width: 20px; height: 2px; display: block; position: relative; background: currentColor; content: ""; }
  .menu-button__lines::before { position: absolute; top: -6px; }
  .menu-button__lines::after { position: absolute; top: 6px; }
  .primary-nav { position: absolute; top: 72px; right: 20px; left: 20px; padding: 18px; display: none; flex-direction: column; align-items: stretch; gap: 0; border: 1px solid var(--border); border-radius: var(--radius-md); background: var(--surface); box-shadow: var(--shadow); }
  .primary-nav.is-open { display: flex; }
  .primary-nav a { padding: 11px; font-size: 0.92rem; }
  .header-cta { display: none; }
  .hero__grid, .service-layout, .process__grid, .case-layout, .insights__grid, .assessment__grid { grid-template-columns: 1fr; }
  .hero { padding-top: 52px; }
  .hero__media { min-height: 440px; }
  .trust-strip__grid { grid-template-columns: 1fr; padding-block: 22px; }
  .trust-strip p { padding: 14px 0; border-right: 0; border-bottom: 1px solid var(--border); }
  .trust-strip p:last-child { border: 0; }
  .service-feature { min-height: 390px; }
  .process__intro { position: static; }
  .case-layout__image { order: -1; aspect-ratio: 16/10; }
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .blog-card, .blog-card--wide { grid-column: span 6; }
  .results-hero__grid, .results-context__grid { grid-template-columns: 1fr; }
  .results-hero__copy h1 { max-width: 11ch; }
  .results-hero__media, .results-hero__media img { min-height: 420px; }
  .results-context__grid { gap: 44px; }
  .result-row { grid-template-columns: 0.5fr 1.5fr; }
  .result-row__facts { grid-column: 2; grid-template-columns: 1fr 1fr; }
  .about-hero__grid, .about-position__grid, .about-transparency__grid { grid-template-columns: minmax(0, 1fr); }
  .about-hero__media, .about-hero__media img { min-height: 420px; }
  .about-position__grid, .about-transparency__grid { gap: 44px; }
  .about-contact__grid { grid-template-columns: 1fr 1fr; align-items: start; }
  .about-contact__grid > div:first-child { grid-column: 1 / -1; }
}

@media (max-width: 600px) {
  .container { width: min(100% - 32px, var(--container)); }
  .notice { font-size: 0.7rem; }
  .nav-wrap { min-height: 66px; }
  .brand { font-size: 0.92rem; }
  .brand__mark { width: 32px; height: 32px; }
  .menu-button__label { display: none; }
  .primary-nav { top: 66px; right: 16px; left: 16px; }
  .hero__grid { gap: 38px; }
  h1 { font-size: clamp(2.65rem, 13vw, 4rem); }
  .hero__media { min-height: 390px; }
  .hero__media img { object-position: 67% center; }
  .hero__caption { flex-direction: column; gap: 3px; }
  .section { padding: 78px 0; }
  .section-heading { margin-bottom: 38px; }
  .button-row { align-items: flex-start; flex-direction: column; }
  .audience-grid { grid-template-columns: 1fr; }
  .audience-intro { grid-column: auto; padding-right: 0; }
  .audience-panel { min-height: 330px; }
  .process__steps li { min-height: auto; grid-template-columns: 1fr; gap: 5px; }
  .case-facts div { grid-template-columns: 1fr; gap: 3px; }
  .insights__heading { align-items: flex-start; flex-direction: column; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 38px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom { align-items: flex-start; flex-direction: column; }
  .blog-grid { display: block; }
  .blog-card { margin-bottom: 46px; }
  .blog-tools { align-items: stretch; flex-direction: column; }
  .filter-button { align-self: flex-start; }
  .article-byline { flex-direction: column; gap: 2px; }
  .article-hero { width: calc(100% - 32px); aspect-ratio: 4/3; }
  .results-hero { padding-top: 42px; }
  .results-hero__grid { gap: 38px; }
  .results-hero__copy h1 { max-width: 100%; font-size: clamp(2.8rem, 12vw, 3.7rem); }
  .results-hero__media, .results-hero__media img { min-height: 320px; }
  .results-context__range strong { font-size: 2.8rem; letter-spacing: -0.055em; }
  .result-row { padding: 30px 0; grid-template-columns: 1fr; gap: 12px; }
  .result-row__type { margin-top: 0; }
  .result-row__facts { grid-column: auto; grid-template-columns: 1fr 1fr; margin-top: 8px; }
  .result-row--featured { margin-inline: -16px; padding-inline: 16px; }
  .results-next__grid { grid-template-columns: 1fr; align-items: start; }
  .about-hero { padding-top: 42px; }
  .about-hero__grid { gap: 38px; }
  .about-hero__copy h1 { max-width: 100%; font-size: clamp(2.8rem, 12vw, 3.7rem); }
  .about-hero__media, .about-hero__media img { min-height: 320px; }
  .about-principles__grid { grid-template-columns: 1fr; }
  .about-principles article, .about-principles article:nth-child(even) { min-height: auto; padding: 28px 0; border-right: 0; }
  .about-principles h3 { margin-top: 28px; }
  .about-contact__grid { grid-template-columns: 1fr; }
  .about-contact__grid > div:first-child { grid-column: auto; }
  .about-hero__copy, .about-position__grid > *, .about-transparency__grid > *, .about-contact__grid > * { min-width: 0; }
}

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