:root {
  color-scheme: light dark;
  --page: #f3f5f0;
  --surface: #fbfcf9;
  --surface-soft: #e7ece4;
  --text: #18201b;
  --muted: #59635d;
  --line: #cbd3cc;
  --accent: #286047;
  --accent-strong: #173e2e;
  --accent-text: #f6fbf7;
  --focus: #d18d32;
  --radius: 16px;
  --shadow: 0 22px 55px rgba(40, 96, 71, 0.11);
  --content: 1180px;
}

@media (prefers-color-scheme: dark) {
  :root {
    --page: #111713;
    --surface: #171f1a;
    --surface-soft: #202b24;
    --text: #eef3ef;
    --muted: #acb8af;
    --line: #344239;
    --accent: #79b995;
    --accent-strong: #a6d7b9;
    --accent-text: #102018;
    --focus: #efb967;
    --shadow: 0 22px 55px rgba(0, 0, 0, 0.28);
  }
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 320px;
  background: var(--page);
  color: var(--text);
  font-family: "Avenir Next", Avenir, "Segoe UI", system-ui, sans-serif;
  font-size: 17px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

img { display: block; width: 100%; height: auto; }
a { color: inherit; text-underline-offset: 0.2em; }
button, input, textarea { font: inherit; }

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 20;
  padding: 10px 14px;
  border-radius: 10px;
  background: var(--text);
  color: var(--page);
  transform: translateY(-160%);
}
.skip-link:focus { transform: translateY(0); }

:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 4px;
}

.shell { width: min(var(--content), calc(100% - 40px)); margin-inline: auto; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid color-mix(in srgb, var(--line), transparent 22%);
  background: color-mix(in srgb, var(--page), transparent 7%);
  backdrop-filter: blur(16px);
}
.nav-row { min-height: 72px; display: flex; align-items: center; gap: 28px; }
.brand { display: inline-flex; align-items: center; gap: 11px; text-decoration: none; font-weight: 760; letter-spacing: -0.03em; }
.brand-mark {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--accent-text);
  font-size: 16px;
}
.site-nav { display: flex; align-items: center; gap: 24px; margin-left: auto; }
.site-nav a { color: var(--muted); text-decoration: none; font-size: 15px; font-weight: 600; }
.site-nav a:hover, .site-nav a[aria-current="page"] { color: var(--text); }
.nav-cta { padding: 9px 15px; border: 1px solid var(--accent); border-radius: 999px; color: var(--accent) !important; }
.menu-button { display: none; margin-left: auto; border: 1px solid var(--line); border-radius: 10px; background: var(--surface); color: var(--text); padding: 8px 12px; }

.hero { min-height: calc(100dvh - 72px); display: grid; grid-template-columns: 0.93fr 1.07fr; align-items: center; gap: clamp(34px, 6vw, 86px); padding-block: 56px; }
.hero-copy { max-width: 590px; }
.eyebrow { margin: 0 0 20px; color: var(--accent); font-size: 13px; font-weight: 760; letter-spacing: 0.12em; text-transform: uppercase; }
h1, h2, h3 { margin: 0; letter-spacing: -0.045em; line-height: 1.05; text-wrap: balance; }
h1 { max-width: 10ch; font-size: clamp(48px, 6.2vw, 86px); font-weight: 720; }
h2 { max-width: 14ch; font-size: clamp(36px, 4.6vw, 64px); font-weight: 700; }
h3 { font-size: clamp(23px, 2.2vw, 32px); font-weight: 690; }
.lede { max-width: 54ch; margin: 24px 0 0; color: var(--muted); font-size: clamp(18px, 1.8vw, 22px); }
.actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.button { display: inline-flex; align-items: center; justify-content: center; min-height: 48px; padding: 11px 19px; border: 1px solid var(--accent); border-radius: 999px; background: var(--accent); color: var(--accent-text); text-decoration: none; font-size: 15px; font-weight: 720; transition: transform 180ms ease, background 180ms ease; }
.button:hover { background: var(--accent-strong); }
.button:active { transform: translateY(1px); }
.button.secondary { background: transparent; color: var(--accent); }
.button.secondary:hover { background: var(--surface-soft); }
.hero-media { position: relative; align-self: stretch; min-height: 520px; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.hero-media img { height: 100%; object-fit: cover; object-position: center; }

.section { padding-block: clamp(78px, 10vw, 138px); }
.section.compact { padding-block: clamp(56px, 7vw, 92px); }
.section-intro { max-width: 680px; }
.section-intro p { margin: 24px 0 0; color: var(--muted); max-width: 62ch; }
.statement { padding-block: clamp(70px, 10vw, 130px); border-block: 1px solid var(--line); }
.statement p { max-width: 26ch; margin: 0; font-size: clamp(32px, 4vw, 58px); line-height: 1.12; letter-spacing: -0.04em; }
.statement strong { color: var(--accent); font-weight: 720; }

.path-grid { display: grid; grid-template-columns: 1.2fr 0.8fr; grid-template-areas: "large small-a" "large small-b"; gap: 18px; margin-top: 50px; }
.path { padding: clamp(28px, 4vw, 52px); border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); }
.path:first-child { grid-area: large; min-height: 510px; display: flex; flex-direction: column; justify-content: flex-end; background: var(--accent); color: var(--accent-text); }
.path:nth-child(2) { grid-area: small-a; background: var(--surface-soft); }
.path:nth-child(3) { grid-area: small-b; }
.path p { max-width: 43ch; margin: 18px 0 0; color: var(--muted); }
.path:first-child p { color: color-mix(in srgb, var(--accent-text), transparent 18%); }
.path-link { display: inline-block; margin-top: 24px; font-weight: 720; }

.process { margin-top: 52px; display: grid; grid-template-columns: 0.8fr 1.2fr; gap: clamp(38px, 8vw, 110px); align-items: start; }
.process-list { margin: 0; padding: 0; list-style: none; }
.process-list li { padding: 0 0 30px; margin-bottom: 30px; border-bottom: 1px solid var(--line); }
.process-list li:last-child { margin-bottom: 0; border-bottom: 0; }
.process-list strong { display: block; margin-bottom: 8px; font-size: 22px; }
.process-list span { color: var(--muted); }

.photo-break { border-radius: var(--radius); overflow: hidden; min-height: 420px; }
.photo-break img { height: 100%; min-height: 420px; object-fit: cover; }
.two-column { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(38px, 8vw, 100px); align-items: start; }
.prose { max-width: 64ch; }
.prose p, .prose li { color: var(--muted); }
.prose h2 { margin-bottom: 30px; }
.prose h3 { margin-top: 42px; margin-bottom: 14px; }
.prose ul { padding-left: 1.2em; }

.article-grid { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 18px; margin-top: 48px; }
.article { padding: 30px; border-radius: var(--radius); background: var(--surface); border: 1px solid var(--line); }
.article:first-child { grid-row: span 2; min-height: 440px; display: flex; flex-direction: column; justify-content: flex-end; background: var(--surface-soft); }
.article p { margin: 14px 0 0; color: var(--muted); }
.article a { display: inline-block; margin-top: 20px; color: var(--accent); font-weight: 720; }

.faq { margin-top: 44px; max-width: 820px; }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary { cursor: pointer; padding: 22px 4px; font-size: 20px; font-weight: 680; }
.faq details p { max-width: 62ch; margin: 0 0 24px; color: var(--muted); }

.cta-panel { display: grid; grid-template-columns: 1fr auto; gap: 30px; align-items: end; padding: clamp(32px, 5vw, 64px); border-radius: var(--radius); background: var(--accent); color: var(--accent-text); }
.cta-panel p { max-width: 48ch; margin: 18px 0 0; color: color-mix(in srgb, var(--accent-text), transparent 18%); }
.cta-panel .button { border-color: var(--accent-text); background: var(--accent-text); color: var(--accent-strong); white-space: nowrap; }

.page-hero { padding-block: clamp(74px, 10vw, 130px); }
.page-hero h1 { max-width: 14ch; font-size: clamp(48px, 6vw, 82px); }
.page-hero .lede { max-width: 59ch; }
.page-image { margin-top: 48px; height: min(62vw, 640px); border-radius: var(--radius); overflow: hidden; }
.page-image img { height: 100%; object-fit: cover; }

.site-footer { margin-top: 50px; border-top: 1px solid var(--line); }
.footer-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; padding-block: 48px; }
.footer-nav { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px 28px; justify-self: end; }
.footer-nav a { color: var(--muted); text-decoration: none; }
.fineprint { margin: 0; color: var(--muted); font-size: 14px; }

@media (max-width: 860px) {
  .menu-button { display: inline-flex; }
  .site-nav { position: absolute; top: 72px; left: 0; right: 0; display: none; flex-direction: column; align-items: stretch; gap: 0; margin: 0; padding: 12px 20px 22px; border-bottom: 1px solid var(--line); background: var(--page); }
  .site-nav[data-open="true"] { display: flex; }
  .site-nav a { padding: 12px 0; }
  .nav-cta { margin-top: 8px; text-align: center; }
  .hero { min-height: auto; grid-template-columns: 1fr; padding-block: 48px 72px; }
  .hero-media { min-height: 420px; order: -1; }
  .path-grid, .article-grid { grid-template-columns: 1fr; grid-template-areas: none; }
  .path:first-child, .path:nth-child(2), .path:nth-child(3) { grid-area: auto; min-height: auto; }
  .process, .two-column { grid-template-columns: 1fr; }
  .cta-panel { grid-template-columns: 1fr; align-items: start; }
}

@media (max-width: 560px) {
  .shell { width: min(100% - 28px, var(--content)); }
  .nav-row { min-height: 64px; }
  .site-nav { top: 64px; }
  h1 { font-size: 46px; }
  .hero-media { min-height: 360px; }
  .actions { flex-direction: column; }
  .button { width: 100%; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-nav { justify-self: start; }
  .page-image { height: 68vw; min-height: 300px; }
}

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

