:root {
  --forest: #173f2d;
  --forest-2: #27553f;
  --sage: #8ca985;
  --sage-light: #edf2eb;
  --navy: #102b4e;
  --ink: #17212b;
  --muted: #5e6a72;
  --paper: #fbfbf8;
  --white: #ffffff;
  --line: #d8dfd8;
  --shadow: 0 24px 60px rgba(16, 43, 78, .10);
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Inter", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.7;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.container { width: min(1160px, calc(100% - 40px)); margin: 0 auto; }
.section-pad { padding: 104px 0; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(251, 251, 248, .94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(23, 63, 45, .10);
}
.nav-wrap { min-height: 90px; display: flex; align-items: center; justify-content: space-between; gap: 32px; }
.brand img { width: 150px; height: auto; max-height: 82px; object-fit: contain; }
.nav { display: flex; align-items: center; gap: 28px; font-size: .92rem; font-weight: 600; }
.nav a { transition: color .2s ease; }
.nav a:hover { color: var(--forest-2); }
.nav-cta { padding: 12px 18px; border: 1px solid var(--forest); border-radius: 999px; }
.menu-toggle { display: none; border: 0; background: transparent; padding: 8px; }
.menu-toggle span { display: block; width: 26px; height: 2px; background: var(--navy); margin: 5px 0; }

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 83% 25%, rgba(140,169,133,.20), transparent 24%),
    linear-gradient(135deg, #fbfbf8 0%, #f5f8f3 100%);
}
.hero::after {
  content: "";
  position: absolute;
  width: 430px;
  height: 430px;
  border: 1px solid rgba(23,63,45,.10);
  border-radius: 50%;
  right: -150px;
  bottom: -180px;
}
.hero-grid { display: grid; grid-template-columns: 1.35fr .8fr; align-items: center; gap: 76px; min-height: 620px; }
.eyebrow { margin: 0 0 14px; color: var(--forest-2); text-transform: uppercase; letter-spacing: .18em; font-size: .78rem; font-weight: 700; }
.eyebrow.light { color: #c7dac4; }
h1, h2, h3 { font-family: var(--serif); line-height: 1.05; margin-top: 0; }
h1 { font-size: clamp(3.5rem, 7vw, 6.6rem); letter-spacing: -.03em; max-width: 850px; margin-bottom: 24px; color: var(--navy); }
h2 { font-size: clamp(2.7rem, 4.5vw, 4.3rem); letter-spacing: -.025em; margin-bottom: 22px; color: var(--navy); }
h3 { font-size: 2rem; color: var(--navy); margin-bottom: 12px; }
.hero-lede { font-size: 1.22rem; max-width: 720px; color: #44525b; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin: 34px 0 18px; }
.btn { display: inline-flex; align-items: center; justify-content: center; min-height: 52px; padding: 0 22px; border-radius: 999px; font-weight: 700; font-size: .94rem; transition: transform .2s ease, box-shadow .2s ease, background .2s ease; }
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--forest); color: var(--white); box-shadow: 0 12px 30px rgba(23,63,45,.17); }
.btn-primary:hover { background: var(--forest-2); }
.btn-secondary { border: 1px solid var(--navy); color: var(--navy); }
.hero-note, .small-note { color: var(--muted); font-size: .86rem; }
.hero-card { background: rgba(255,255,255,.92); border: 1px solid rgba(23,63,45,.10); box-shadow: var(--shadow); padding: 42px; border-radius: 6px; position: relative; }
.quote-mark { margin: 0; font-family: var(--serif); font-size: 5rem; line-height: .6; color: var(--sage); }
.hero-card blockquote { margin: 18px 0; font-family: var(--serif); font-size: 2.15rem; line-height: 1.1; color: var(--navy); }
.hero-card p:last-child { color: var(--muted); margin-bottom: 0; }
.rule { height: 1px; background: var(--line); margin: 24px 0; }

.mission-band { background: var(--navy); color: var(--white); padding: 38px 0; }
.mission-grid { display: grid; grid-template-columns: 180px 1fr; gap: 40px; align-items: start; }
.mission-kicker { margin: 0; color: #cbd5e0; text-transform: uppercase; letter-spacing: .18em; font-size: .76rem; font-weight: 700; }
.mission-statement { margin: 0; font-family: var(--serif); font-size: clamp(1.8rem, 3vw, 2.8rem); line-height: 1.15; }

.split-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 90px; align-items: start; }
.section-heading.narrow { max-width: 800px; margin-bottom: 52px; }
.section-heading p:not(.eyebrow), .prose p { font-size: 1.05rem; color: #4d5b64; }
.prose p { margin-top: 0; margin-bottom: 20px; }
.soft-bg { background: #f0f4ef; }

.compare-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.compare-card { background: var(--white); border: 1px solid var(--line); padding: 34px; min-height: 315px; }
.compare-card .number { font-size: .8rem; letter-spacing: .15em; color: var(--sage); font-weight: 700; }
.compare-card h3 { margin-top: 54px; }
.compare-card p { color: var(--muted); }
.accent-card { border-top: 4px solid var(--forest); }

.process-list { border-top: 1px solid var(--line); }
.process-item { display: grid; grid-template-columns: 220px 1fr; gap: 52px; padding: 42px 0; border-bottom: 1px solid var(--line); }
.process-label { color: var(--forest); font-weight: 800; text-transform: uppercase; letter-spacing: .12em; font-size: .8rem; }
.process-item h3 { font-size: 2.1rem; margin-bottom: 8px; }
.process-item p { margin: 0; color: var(--muted); }

.deep-bg { background: var(--forest); color: var(--white); }
.deep-bg h2 { color: var(--white); }
.commitment-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 80px; align-items: center; }
.commitment-intro { color: #d4e0d2; max-width: 580px; }
.promise-grid { display: grid; grid-template-columns: repeat(2, 1fr); border: 1px solid rgba(255,255,255,.2); }
.promise-grid div { padding: 28px; border-right: 1px solid rgba(255,255,255,.2); border-bottom: 1px solid rgba(255,255,255,.2); font-weight: 700; }
.promise-grid div:nth-child(2n) { border-right: 0; }
.promise-grid div:nth-last-child(-n+2) { border-bottom: 0; }

.audience-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 90px; align-items: center; }
.audience-visual { min-height: 420px; background: linear-gradient(145deg, #edf2eb, #f8faf6); border: 1px solid var(--line); position: relative; overflow: hidden; display: flex; align-items: center; justify-content: center; }
.audience-card { position: relative; z-index: 2; width: 76%; padding: 38px; background: rgba(255,255,255,.9); box-shadow: var(--shadow); }
.audience-card span, .audience-card strong { display: block; font-family: var(--serif); color: var(--navy); }
.audience-card span { font-size: 2.2rem; }
.audience-card strong { font-size: 2.75rem; margin-top: 18px; color: var(--forest); line-height: 1.05; }
.leaf { position: absolute; width: 150px; height: 40px; border-radius: 100% 0 100% 0; background: rgba(140,169,133,.24); transform: rotate(-28deg); }
.leaf-a { top: 44px; left: 38px; }
.leaf-b { right: 34px; bottom: 58px; transform: rotate(30deg); }
.leaf-c { top: 100px; right: 110px; width: 90px; height: 26px; }

.closing { text-align: center; background: var(--white); }
.closing-inner { max-width: 850px; }
.closing-logo { width: 148px; height: 128px; object-fit: cover; object-position: 50% 31%; margin: 0 auto 28px; }
.closing h2 { margin-bottom: 14px; }
.closing-line { font-family: var(--serif); font-size: 2rem; color: var(--forest); margin: 0 auto 32px; }
.closing .small-note { margin-top: 20px; }

footer { background: #0d2139; color: #dbe3ea; padding: 30px 0; font-size: .86rem; }
.footer-grid { display: flex; justify-content: space-between; gap: 20px; }
.footer-grid p { margin: 0; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 920px) {
  .section-pad { padding: 82px 0; }
  .menu-toggle { display: block; }
  .nav { position: absolute; top: 90px; left: 0; right: 0; display: none; flex-direction: column; align-items: stretch; gap: 0; padding: 18px 20px 26px; background: var(--paper); border-bottom: 1px solid var(--line); }
  .nav.open { display: flex; }
  .nav a { padding: 13px 0; }
  .nav-cta { border: 0; border-radius: 0; }
  .hero-grid, .split-grid, .commitment-grid, .audience-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-grid { min-height: auto; }
  .hero-card { max-width: 640px; }
  .compare-grid { grid-template-columns: 1fr; }
  .compare-card { min-height: 0; }
  .compare-card h3 { margin-top: 28px; }
  .mission-grid { grid-template-columns: 1fr; gap: 10px; }
}

@media (max-width: 640px) {
  .container { width: min(100% - 28px, 1160px); }
  .section-pad { padding: 68px 0; }
  .nav-wrap { min-height: 78px; }
  .brand img { width: 124px; height: auto; max-height: 68px; }
  .nav { top: 78px; }
  h1 { font-size: 3.25rem; }
  h2 { font-size: 2.6rem; }
  .hero { padding-top: 54px; }
  .hero-card { padding: 30px; }
  .hero-card blockquote { font-size: 1.8rem; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .process-item { grid-template-columns: 1fr; gap: 12px; padding: 32px 0; }
  .promise-grid { grid-template-columns: 1fr; }
  .promise-grid div { border-right: 0; }
  .promise-grid div:nth-last-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,.2); }
  .promise-grid div:last-child { border-bottom: 0; }
  .audience-visual { min-height: 350px; }
  .audience-card { width: 86%; padding: 28px; }
  .audience-card span { font-size: 1.8rem; }
  .audience-card strong { font-size: 2.2rem; }
  .footer-grid { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .btn { transition: none; }
}
