:root {
  --ink: #18312d;
  --ink-soft: #4f625e;
  --paper: #fffdf9;
  --paper-2: #f5f2e9;
  --sage: #dce8df;
  --sage-deep: #2f6358;
  --clay: #c97a5a;
  --gold: #d6a94a;
  --line: rgba(24,49,45,.13);
  --white: #ffffff;
  --shadow: 0 22px 55px rgba(27, 55, 49, .10);
  --radius: 24px;
  --radius-sm: 14px;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img, svg { max-width: 100%; }
a { color: inherit; }
button, input, textarea, select { font: inherit; }

.skip-link {
  position: absolute; left: -9999px; top: 8px; z-index: 9999;
  background: var(--ink); color: var(--white); padding: 10px 14px; border-radius: 10px;
}
.skip-link:focus { left: 8px; }

.container { width: min(calc(100% - 40px), var(--max)); margin-inline: auto; }
.section { padding: 92px 0; }
.section-sm { padding: 64px 0; }
.section-tint { background: var(--paper-2); }
.section-sage { background: linear-gradient(180deg, #edf4ef, #f8faf6); }

.trustbar {
  background: var(--ink); color: #eef5f1; font-size: .86rem; letter-spacing: .01em;
}
.trustbar .container {
  min-height: 38px; display: flex; align-items: center; justify-content: center; gap: 10px; text-align: center;
}
.trustbar a { text-underline-offset: 3px; }

.site-header {
  position: sticky; top: 0; z-index: 1000; background: rgba(255,253,249,.94);
  backdrop-filter: blur(12px); border-bottom: 1px solid var(--line);
}
.nav-wrap { min-height: 76px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; min-width: 210px; }
.brand-mark {
  width: 44px; height: 44px; border-radius: 50%; display: grid; place-items: center;
  background: var(--sage-deep); color: white; font-weight: 800; font-size: .82rem; letter-spacing: .04em;
  box-shadow: inset 0 0 0 5px rgba(255,255,255,.15);
}
.brand-copy strong { display: block; line-height: 1.05; font-size: 1rem; }
.brand-copy span { display: block; margin-top: 4px; color: var(--ink-soft); font-size: .76rem; }
.nav-links { display: flex; align-items: center; gap: 24px; }
.nav-links a { text-decoration: none; font-size: .94rem; font-weight: 650; }
.nav-links a:hover, .nav-links a[aria-current="page"] { color: var(--sage-deep); }
.nav-cta { padding: 10px 16px; border: 1px solid var(--sage-deep); border-radius: 999px; }
.menu-button {
  display: none; border: 1px solid var(--line); background: var(--white); border-radius: 12px; padding: 10px 12px;
  color: var(--ink); font-weight: 700;
}

.hero { overflow: hidden; position: relative; padding: 92px 0 86px; }
.hero::before {
  content: ""; position: absolute; width: 540px; height: 540px; border-radius: 50%; right: -180px; top: -220px;
  background: radial-gradient(circle, rgba(220,232,223,.85), rgba(220,232,223,0)); pointer-events: none;
}
.hero-grid { display: grid; grid-template-columns: 1.25fr .75fr; gap: 72px; align-items: center; position: relative; }
.eyebrow { color: var(--sage-deep); font-weight: 800; text-transform: uppercase; letter-spacing: .14em; font-size: .76rem; }
h1, h2, h3 { line-height: 1.12; letter-spacing: -.025em; margin-top: 0; }
h1 { font-size: clamp(3rem, 7vw, 5.6rem); max-width: 920px; margin-bottom: 24px; }
h2 { font-size: clamp(2rem, 4vw, 3.35rem); margin-bottom: 20px; }
h3 { font-size: 1.35rem; margin-bottom: 10px; }
.lead { font-size: clamp(1.1rem, 2vw, 1.3rem); color: var(--ink-soft); max-width: 760px; }
.hero-actions, .button-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.button {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px; min-height: 48px; padding: 0 20px;
  border-radius: 999px; text-decoration: none; font-weight: 750; border: 1px solid transparent; transition: .18s ease;
}
.button:hover { transform: translateY(-1px); }
.button-primary { background: var(--sage-deep); color: white; box-shadow: 0 12px 25px rgba(47,99,88,.2); }
.button-secondary { border-color: var(--line); background: rgba(255,255,255,.7); }
.button-quiet { color: var(--sage-deep); border-color: var(--sage-deep); background: transparent; }

.purpose-card {
  background: var(--ink); color: white; border-radius: 34px; padding: 36px; box-shadow: var(--shadow); position: relative; overflow: hidden;
}
.purpose-card::after {
  content: ""; position: absolute; width: 190px; height: 190px; border-radius: 50%; right: -70px; bottom: -80px;
  background: rgba(214,169,74,.22);
}
.purpose-card .kicker { color: #bcd9d1; font-weight: 750; font-size: .85rem; text-transform: uppercase; letter-spacing: .12em; }
.purpose-card h2 { font-size: 2rem; margin: 14px 0 26px; }
.fact-list { display: grid; gap: 14px; }
.fact { display: grid; grid-template-columns: 36px 1fr; gap: 12px; align-items: start; }
.fact-icon { width: 32px; height: 32px; display: grid; place-items: center; background: rgba(255,255,255,.1); border-radius: 50%; font-weight: 900; }
.fact strong { display: block; }
.fact span { display: block; color: #cfddd9; font-size: .92rem; }

.grid-2 { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 20px; }
.card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 30px; box-shadow: 0 12px 30px rgba(27,55,49,.05);
}
.card p:last-child { margin-bottom: 0; }
.card-tag { display: inline-block; margin-bottom: 20px; padding: 7px 11px; border-radius: 999px; background: var(--sage); color: var(--sage-deep); font-weight: 800; font-size: .76rem; letter-spacing: .04em; text-transform: uppercase; }
.card-link { display: inline-block; margin-top: 14px; color: var(--sage-deep); font-weight: 800; text-underline-offset: 4px; }

.section-head { max-width: 760px; margin-bottom: 42px; }
.section-head p { color: var(--ink-soft); font-size: 1.08rem; }

.feature {
  display: grid; grid-template-columns: .85fr 1.15fr; gap: 56px; align-items: center;
}
.feature-reverse { grid-template-columns: 1.15fr .85fr; }
.quote-panel {
  min-height: 360px; border-radius: 32px; padding: 44px; display: flex; flex-direction: column; justify-content: flex-end;
  background: linear-gradient(140deg, var(--sage-deep), #244b43); color: white; position: relative; overflow: hidden;
}
.quote-panel::before {
  content: ""; position: absolute; width: 220px; height: 220px; border: 1px solid rgba(255,255,255,.2); border-radius: 50%; right: -55px; top: -55px;
}
.quote-panel blockquote { margin: 0; font-size: clamp(1.6rem, 3vw, 2.4rem); line-height: 1.15; letter-spacing: -.03em; font-weight: 750; position: relative; }
.quote-panel cite { margin-top: 20px; color: #cbe0da; font-style: normal; position: relative; }

.check-list { list-style: none; padding: 0; margin: 24px 0 0; display: grid; gap: 12px; }
.check-list li { position: relative; padding-left: 30px; }
.check-list li::before { content: "✓"; position: absolute; left: 0; top: 0; color: var(--sage-deep); font-weight: 900; }

.stats { display: grid; grid-template-columns: repeat(4, 1fr); border: 1px solid var(--line); border-radius: 22px; overflow: hidden; background: white; }
.stat { padding: 24px; border-right: 1px solid var(--line); }
.stat:last-child { border-right: 0; }
.stat strong { display: block; font-size: 1.08rem; }
.stat span { display: block; margin-top: 5px; color: var(--ink-soft); font-size: .9rem; }

.page-hero { padding: 72px 0 56px; border-bottom: 1px solid var(--line); background: linear-gradient(180deg, #f7faf7, var(--paper)); }
.page-hero h1 { font-size: clamp(2.7rem, 6vw, 4.7rem); margin-bottom: 18px; }
.page-hero .lead { max-width: 850px; }

.prose { max-width: 780px; }
.prose h2 { margin-top: 48px; font-size: 2rem; }
.prose h3 { margin-top: 32px; }
.prose p, .prose li { color: #354944; }

.info-table { width: 100%; border-collapse: collapse; margin-top: 20px; }
.info-table th, .info-table td { text-align: left; vertical-align: top; padding: 16px 14px; border-bottom: 1px solid var(--line); }
.info-table th { width: 34%; color: var(--ink-soft); font-size: .92rem; }

.notice { padding: 20px 22px; border-left: 4px solid var(--gold); background: #fff9e8; border-radius: 0 14px 14px 0; }
.notice strong { display: block; margin-bottom: 4px; }

.cta-band {
  padding: 44px; border-radius: 30px; background: var(--ink); color: white; display: flex; justify-content: space-between; gap: 30px; align-items: center;
}
.cta-band h2 { margin-bottom: 8px; font-size: clamp(1.8rem, 3.6vw, 2.8rem); }
.cta-band p { margin: 0; color: #cad9d5; max-width: 700px; }
.cta-band .button-secondary { color: white; border-color: rgba(255,255,255,.35); background: transparent; flex: 0 0 auto; }

.site-footer { background: #122823; color: #dce8e4; padding: 64px 0 26px; }
.footer-grid { display: grid; grid-template-columns: 1.35fr .8fr .8fr; gap: 48px; }
.footer-brand { max-width: 520px; }
.footer-brand p { color: #aebfba; }
.footer-title { color: white; font-size: .83rem; text-transform: uppercase; letter-spacing: .13em; font-weight: 800; margin-bottom: 14px; }
.footer-links { display: grid; gap: 9px; }
.footer-links a { color: #dce8e4; text-decoration: none; }
.footer-links a:hover { text-decoration: underline; text-underline-offset: 4px; }
.footer-legal { margin-top: 48px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.12); display: flex; justify-content: space-between; gap: 20px; color: #96aaa4; font-size: .82rem; }

.contact-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 40px; }
.contact-card { background: white; border: 1px solid var(--line); border-radius: 24px; padding: 30px; }
.contact-card + .contact-card { margin-top: 16px; }
.email-display { font-size: clamp(1.35rem, 3vw, 2rem); font-weight: 800; color: var(--sage-deep); word-break: break-word; }

.small { font-size: .88rem; color: var(--ink-soft); }
.muted { color: var(--ink-soft); }
.divider { height: 1px; background: var(--line); margin: 28px 0; }

@media (max-width: 980px) {
  .menu-button { display: inline-flex; }
  .nav-links {
    display: none; position: absolute; left: 20px; right: 20px; top: 76px; padding: 18px;
    background: var(--paper); border: 1px solid var(--line); border-radius: 18px; box-shadow: var(--shadow); flex-direction: column; align-items: stretch; gap: 0;
  }
  .nav-links.is-open { display: flex; }
  .nav-links a { padding: 11px 8px; }
  .hero-grid, .feature, .feature-reverse, .contact-grid { grid-template-columns: 1fr; gap: 36px; }
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .stats { grid-template-columns: 1fr 1fr; }
  .stat:nth-child(2) { border-right: 0; }
  .stat:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 680px) {
  .container { width: min(calc(100% - 28px), var(--max)); }
  .section { padding: 70px 0; }
  .hero { padding: 66px 0 64px; }
  h1 { font-size: clamp(2.65rem, 13vw, 4rem); }
  .grid-2, .grid-3, .stats, .footer-grid { grid-template-columns: 1fr; }
  .stat, .stat:nth-child(2) { border-right: 0; border-bottom: 1px solid var(--line); }
  .stat:last-child { border-bottom: 0; }
  .purpose-card, .quote-panel, .cta-band { border-radius: 24px; padding: 28px; }
  .cta-band { display: block; }
  .cta-band .button { margin-top: 22px; }
  .footer-legal { flex-direction: column; }
  .brand-copy span { display: none; }
  .brand { min-width: 0; }
  .trustbar .container { min-height: 44px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; animation: none !important; }
}


/* Visual refinement v2, September 2026 */
:root {
  --ink: #17312b;
  --ink-soft: #50635e;
  --paper: #fdfbf6;
  --paper-2: #f4f1e8;
  --sage: #dce9e1;
  --sage-deep: #286454;
  --sage-dark: #1f4d42;
  --clay: #b9674b;
  --gold: #d3a64d;
  --mist: #edf4ef;
  --line: rgba(23,49,43,.12);
  --shadow: 0 28px 80px rgba(22,51,43,.11);
  --shadow-soft: 0 14px 40px rgba(22,51,43,.07);
  --radius: 26px;
  --radius-sm: 15px;
}
body {
  background:
    radial-gradient(circle at 8% 3%, rgba(220,233,225,.45), transparent 23rem),
    var(--paper);
}
::selection { background: #cfe1d8; color: var(--ink); }
a:focus-visible, button:focus-visible { outline: 3px solid rgba(211,166,77,.75); outline-offset: 3px; }
.trustbar {
  background: var(--ink); color: #dce9e4; border: 0;
  font-size: .77rem; letter-spacing: .035em;
}
.trustbar a { color: white; text-underline-offset: 3px; }
.site-header {
  background: rgba(253,251,246,.9);
  backdrop-filter: blur(18px) saturate(125%);
  box-shadow: 0 1px 0 rgba(23,49,43,.05);
}
.nav-wrap { min-height: 82px; }
.brand { gap: 13px; }
.brand-mark {
  width: 48px; height: 48px; border-radius: 15px;
  background: linear-gradient(145deg, var(--sage-deep), var(--sage-dark));
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.22), 0 9px 24px rgba(31,77,66,.16);
  font-size: .8rem;
}
.brand-copy strong { font-size: 1.02rem; letter-spacing: -.01em; }
.brand-copy span { font-size: .73rem; letter-spacing: .015em; }
.nav-links { gap: 22px; }
.nav-links a { font-size: .91rem; }
.nav-cta {
  background: var(--sage-deep); color: white !important; border-color: var(--sage-deep);
  padding: 10px 17px;
}
.nav-cta:hover { background: var(--sage-dark); }
.hero { padding: 108px 0 96px; }
.hero::before {
  width: 720px; height: 720px; right: -280px; top: -330px;
  background: radial-gradient(circle, rgba(204,225,214,.95) 0%, rgba(220,232,223,.52) 36%, rgba(220,232,223,0) 70%);
}
.hero::after {
  content: ""; position: absolute; width: 240px; height: 240px; left: -130px; bottom: -95px;
  border-radius: 50%; border: 1px solid rgba(185,103,75,.18); box-shadow: 0 0 0 34px rgba(185,103,75,.035);
  pointer-events: none;
}
.hero-grid { grid-template-columns: 1.14fr .86fr; gap: clamp(42px,6vw,84px); }
.eyebrow { letter-spacing: .16em; font-size: .72rem; }
h1, h2, h3 { text-wrap: balance; }
h1 {
  font-size: clamp(3.25rem, 7vw, 5.85rem); line-height: .99; letter-spacing: -.055em;
  max-width: 12ch; margin-bottom: 27px;
}
h2 { letter-spacing: -.04em; }
.lead { line-height: 1.62; }
.hero-actions { margin-top: 32px; }
.button {
  min-height: 50px; padding-inline: 21px; box-shadow: none;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.button-primary { background: var(--sage-deep); box-shadow: 0 12px 28px rgba(40,100,84,.17); }
.button-primary:hover { background: var(--sage-dark); box-shadow: 0 16px 34px rgba(40,100,84,.22); }
.button-secondary:hover { background: white; box-shadow: var(--shadow-soft); }
.hero-proof {
  display: flex; flex-wrap: wrap; gap: 9px 16px; margin-top: 25px; color: var(--ink-soft); font-size: .82rem; font-weight: 700;
}
.hero-proof span { position: relative; padding-left: 17px; }
.hero-proof span::before {
  content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--gold);
  position: absolute; left: 0; top: .56em;
}
.purpose-card {
  background: linear-gradient(148deg, #17312b 0%, #214c42 72%, #2f6859 100%);
  border-radius: 36px; padding: 40px; box-shadow: 0 34px 80px rgba(23,49,43,.2);
  border: 1px solid rgba(255,255,255,.08);
}
.purpose-card::before {
  content: ""; position: absolute; width: 220px; height: 220px; border-radius: 50%;
  right: -78px; top: -78px; border: 1px solid rgba(255,255,255,.14); box-shadow: 0 0 0 38px rgba(255,255,255,.025);
}
.purpose-card::after { background: rgba(211,166,77,.2); }
.purpose-card h2 { font-size: clamp(1.8rem,3vw,2.25rem); line-height: 1.08; max-width: 14ch; }
.fact { padding: 11px 0; border-top: 1px solid rgba(255,255,255,.09); }
.fact:first-child { border-top: 0; }
.fact-icon { background: rgba(255,255,255,.115); color: #f5dca8; }
.section { padding: 100px 0; }
.section-tint {
  background: linear-gradient(180deg, rgba(244,241,232,.72), rgba(248,246,240,.92));
  border-block: 1px solid rgba(23,49,43,.045);
}
.section-sage { background: linear-gradient(180deg, #eef5f0, #f8faf6 68%, var(--paper)); }
.section-head { margin-bottom: 48px; }
.section-head h2 { max-width: 16ch; }
.card {
  border-color: rgba(23,49,43,.105); box-shadow: var(--shadow-soft); padding: 32px;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.card:hover { transform: translateY(-3px); box-shadow: 0 21px 54px rgba(22,51,43,.10); border-color: rgba(40,100,84,.22); }
.card-tag { background: #e5efe9; font-size: .72rem; letter-spacing: .065em; }
.card-link { text-decoration-thickness: 1px; }
.quote-panel {
  min-height: 390px; background:
    radial-gradient(circle at 86% 16%, rgba(211,166,77,.23), transparent 13rem),
    linear-gradient(145deg, #286454, #183a32);
  box-shadow: var(--shadow);
}
.quote-panel::after {
  content: "+"; position: absolute; left: 42px; top: 32px; color: rgba(255,255,255,.32); font-size: 4.2rem; font-weight: 200; line-height: 1;
}
.stats { box-shadow: var(--shadow-soft); border-color: rgba(23,49,43,.095); }
.stat { padding: 27px; background: rgba(255,255,255,.78); }
.stat strong { font-size: 1.04rem; }
.page-hero {
  padding: 82px 0 64px;
  background:
    radial-gradient(circle at 86% 0%, rgba(220,233,225,.92), transparent 24rem),
    linear-gradient(180deg, #f7faf7, var(--paper));
}
.page-hero h1 { letter-spacing: -.05em; max-width: 14ch; }
.cta-band {
  background: linear-gradient(135deg, #17312b, #214a40); box-shadow: var(--shadow);
  border: 1px solid rgba(255,255,255,.06);
}
.site-footer { background: #102721; position: relative; }
.site-footer::before {
  content: ""; position: absolute; inset: 0 0 auto; height: 3px;
  background: linear-gradient(90deg, var(--sage-deep), var(--gold), var(--clay));
}
.info-table th, .info-table td { border-bottom-color: rgba(23,49,43,.1); }
.contact-card { box-shadow: var(--shadow-soft); }
@media (max-width: 980px) {
  .hero { padding-top: 82px; }
  .hero-grid { gap: 44px; }
  .purpose-card { max-width: 680px; }
}
@media (max-width: 680px) {
  .nav-wrap { min-height: 72px; }
  .nav-links { top: 72px; }
  .hero { padding: 62px 0 66px; }
  h1 { font-size: clamp(2.8rem, 14vw, 4.15rem); max-width: 10ch; }
  .hero-proof { display: grid; gap: 8px; }
  .section { padding: 76px 0; }
  .purpose-card { padding: 30px; }
  .card:hover { transform: none; }
}
