:root {
  --green-950: #0b2923;
  --green-900: #10372f;
  --green-800: #17483d;
  --green-700: #236053;
  --ivory: #f7f2e8;
  --paper: #fffdf8;
  --paper-2: #efe7d8;
  --brass: #b7833d;
  --brass-light: #d6b474;
  --ink: #18231f;
  --muted: #5e6b66;
  --line: rgba(16, 55, 47, .17);
  --shadow: 0 24px 70px rgba(11, 41, 35, .13);
  --radius-sm: 10px;
  --radius: 20px;
  --radius-lg: 34px;
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-underline-offset: .18em; }
button, input, select, textarea { font: inherit; }
button, .button { touch-action: manipulation; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 {
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: -.025em;
  line-height: 1.08;
}
h1 { font-size: clamp(2.75rem, 6vw, 5.4rem); }
h2 { font-size: clamp(2rem, 4vw, 3.75rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.65rem); }
p:last-child { margin-bottom: 0; }

.skip-link {
  position: fixed;
  left: 1rem;
  top: -8rem;
  z-index: 1000;
  padding: .75rem 1rem;
  color: white;
  background: var(--green-950);
  border-radius: 8px;
}
.skip-link:focus { top: 1rem; }
.container { width: min(1180px, calc(100% - 40px)); margin-inline: auto; }
.narrow { width: min(780px, calc(100% - 40px)); margin-inline: auto; }
.section { padding: clamp(4.5rem, 9vw, 8.5rem) 0; }
.section-sm { padding: clamp(3rem, 6vw, 5.2rem) 0; }
.section-dark { color: white; background: var(--green-950); }
.section-ivory { background: var(--ivory); }
.section-paper { background: var(--paper); }
.divider { border-top: 1px solid var(--line); }

.topbar {
  background: var(--green-950);
  color: rgba(255,255,255,.78);
  font-size: .78rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.topbar .container { min-height: 34px; display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.topbar a { color: white; text-decoration: none; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 253, 248, .94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(15px);
}
.nav-wrap { min-height: 82px; display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; }
.brand { display: inline-flex; align-items: center; gap: .8rem; text-decoration: none; }
.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: var(--paper);
  background: var(--green-900);
  border-radius: 50%;
  font-family: var(--serif);
  font-size: 1.15rem;
  letter-spacing: -.05em;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.2);
}
.brand-copy { line-height: 1.1; }
.brand-copy strong { display: block; font-family: var(--serif); font-size: 1.08rem; font-weight: 600; }
.brand-copy small { color: var(--green-700); font-size: .7rem; letter-spacing: .12em; text-transform: uppercase; }
.nav-links { display: flex; align-items: center; gap: 1.4rem; }
.nav-links > a { position: relative; text-decoration: none; font-size: .91rem; font-weight: 650; }
.nav-links > a:not(.button)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -.35rem;
  height: 2px;
  background: var(--brass);
  transition: right .2s ease;
}
.nav-links > a:hover::after, .nav-links > a[aria-current="page"]::after { right: 0; }
.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  color: var(--green-950);
  background: transparent;
  border-radius: 50%;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  padding: .8rem 1.25rem;
  border: 1px solid transparent;
  border-radius: 999px;
  text-decoration: none;
  font-size: .92rem;
  font-weight: 750;
  line-height: 1.1;
  cursor: pointer;
  transition: transform .18s ease, background .18s ease, color .18s ease, border-color .18s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary { color: white; background: var(--green-800); box-shadow: 0 10px 28px rgba(16,55,47,.17); }
.button-primary:hover { background: var(--green-950); }
.button-brass { color: var(--green-950); background: var(--brass-light); }
.button-brass:hover { background: #e1c28a; }
.button-ghost { color: var(--green-950); background: transparent; border-color: rgba(16,55,47,.32); }
.button-light { color: white; background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.27); }
.button-arrow::after { content: "→"; font-size: 1.15em; }
.button-row { display: flex; flex-wrap: wrap; gap: .8rem; align-items: center; }

.eyebrow {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin-bottom: 1.25rem;
  color: var(--green-700);
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.eyebrow::before { content: ""; width: 34px; height: 1px; background: var(--brass); }
.section-dark .eyebrow { color: var(--brass-light); }
.lede { color: var(--muted); font-size: clamp(1.05rem, 1.8vw, 1.28rem); line-height: 1.55; }
.section-dark .lede { color: rgba(255,255,255,.72); }
.microcopy { color: var(--muted); font-size: .82rem; }
.section-dark .microcopy { color: rgba(255,255,255,.6); }
.kicker { font-family: var(--serif); font-style: italic; color: var(--brass); }

.hero { position: relative; overflow: hidden; background: var(--ivory); }
.hero-grid { min-height: 720px; display: grid; grid-template-columns: 1.05fr .95fr; }
.hero-copy { position: relative; z-index: 2; display: flex; flex-direction: column; justify-content: center; padding: clamp(4rem, 8vw, 7rem) max(2rem, 5vw) clamp(4rem, 8vw, 7rem) max(20px, calc((100vw - 1180px) / 2)); }
.hero h1 { max-width: 760px; margin-bottom: 1.35rem; color: var(--green-950); }
.hero h1 em { color: var(--green-700); font-weight: 400; }
.hero .lede { max-width: 660px; margin-bottom: 2rem; }
.hero-proof { display: flex; flex-wrap: wrap; gap: .55rem 1.15rem; margin-top: 1.35rem; color: var(--green-800); font-size: .84rem; font-weight: 700; }
.hero-proof span::before { content: "✓"; margin-right: .38rem; color: var(--brass); }
.hero-media { position: relative; min-height: 580px; }
.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(247,242,232,.68), transparent 30%), linear-gradient(0deg, rgba(11,41,35,.22), transparent 35%);
}
.hero-media img { width: 100%; height: 100%; object-fit: cover; }
.hero-caption {
  position: absolute;
  z-index: 2;
  right: 1.5rem;
  bottom: 1.5rem;
  max-width: 290px;
  padding: 1rem 1.1rem;
  color: white;
  background: rgba(11,41,35,.82);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 14px;
  backdrop-filter: blur(10px);
  font-size: .85rem;
}

.trust-bar { color: white; background: var(--green-900); }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.trust-item { padding: 1.35rem 1.5rem; border-right: 1px solid rgba(255,255,255,.15); }
.trust-item:last-child { border: 0; }
.trust-item strong { display: block; margin-bottom: .1rem; font-family: var(--serif); font-size: 1.15rem; }
.trust-item span { color: rgba(255,255,255,.65); font-size: .8rem; }

.intro-grid, .split { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(2.5rem, 7vw, 7rem); align-items: start; }
.split-balanced { grid-template-columns: 1fr 1fr; align-items: center; }
.sticky-title { position: sticky; top: 130px; }
.prose p { margin-bottom: 1.25rem; }
.prose h2, .prose h3 { margin-top: 2.4rem; }
.prose ul, .prose ol { padding-left: 1.25rem; }
.prose li { margin-bottom: .65rem; }
.prose a { color: var(--green-700); font-weight: 650; }
.quote {
  margin: 2rem 0;
  padding: 1.7rem 1.8rem;
  background: var(--ivory);
  border-left: 4px solid var(--brass);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-family: var(--serif);
  font-size: 1.24rem;
}

.rights { display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 2.4rem; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.right-card { min-height: 220px; padding: 1.6rem; background: white; border-right: 1px solid var(--line); }
.right-card:last-child { border: 0; }
.right-card.highlight { color: white; background: var(--green-800); }
.right-card .symbol { display: block; margin-bottom: 2.4rem; color: var(--brass); font-family: var(--serif); font-size: 2rem; }
.right-card small { display: block; margin-top: .4rem; color: var(--muted); }
.right-card.highlight small { color: rgba(255,255,255,.68); }

.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.card {
  position: relative;
  padding: 1.75rem;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: transform .2s ease, box-shadow .2s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: 0 18px 45px rgba(11,41,35,.08); }
.card-number { display: block; margin-bottom: 2rem; color: var(--brass); font-family: var(--serif); font-size: 1.8rem; }
.card p { color: var(--muted); font-size: .95rem; }
.card-link { display: inline-block; margin-top: 1rem; color: var(--green-700); font-size: .9rem; font-weight: 800; text-decoration: none; }

.steps { counter-reset: step; display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; margin-top: 3rem; }
.step { counter-increment: step; position: relative; padding: 1.7rem 1.35rem 1.7rem 0; border-top: 1px solid rgba(255,255,255,.26); }
.step::before {
  content: "0" counter(step);
  display: inline-grid;
  width: 38px;
  height: 38px;
  place-items: center;
  margin-top: -20px;
  margin-bottom: 1.5rem;
  color: var(--green-950);
  background: var(--brass-light);
  border-radius: 50%;
  font-size: .74rem;
  font-weight: 800;
}
.step p { color: rgba(255,255,255,.66); font-size: .9rem; }

.image-frame { position: relative; overflow: hidden; min-height: 500px; border-radius: var(--radius-lg); box-shadow: var(--shadow); }
.image-frame img { width: 100%; height: 100%; object-fit: cover; }
.image-note {
  position: absolute;
  left: 1.25rem;
  right: 1.25rem;
  bottom: 1.25rem;
  padding: 1rem 1.1rem;
  color: white;
  background: rgba(11,41,35,.88);
  border-radius: 12px;
  font-size: .86rem;
}

.calculator { padding: clamp(1.5rem, 4vw, 2.7rem); background: white; border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow); }
.calculator-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.field { display: flex; flex-direction: column; gap: .42rem; }
.field-wide { grid-column: 1 / -1; }
.field label, .field-label { color: var(--green-950); font-size: .84rem; font-weight: 800; }
.field input, .field select, .field textarea {
  width: 100%;
  min-height: 52px;
  padding: .75rem .9rem;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid rgba(16,55,47,.28);
  border-radius: 10px;
  outline: none;
}
.field textarea { min-height: 130px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--brass); box-shadow: 0 0 0 3px rgba(183,131,61,.15); }
.choice-row { display: flex; flex-wrap: wrap; gap: .65rem; }
.choice {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  padding: .7rem .85rem;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 10px;
  cursor: pointer;
}
.choice input { width: auto; min-height: 0; }
.calc-result { margin-top: 1.4rem; padding: 1.35rem; color: white; background: var(--green-900); border-radius: 16px; }
.calc-number { display: block; margin: .25rem 0; font-family: var(--serif); font-size: clamp(2rem, 5vw, 3.6rem); line-height: 1; }
.calc-details { display: flex; flex-wrap: wrap; gap: .5rem 1.4rem; color: rgba(255,255,255,.7); font-size: .82rem; }

.lead-box { display: grid; grid-template-columns: .8fr 1.2fr; overflow: hidden; background: var(--green-950); border-radius: var(--radius-lg); box-shadow: var(--shadow); }
.lead-copy { padding: clamp(2rem, 5vw, 4rem); color: white; background: radial-gradient(circle at 15% 10%, rgba(214,180,116,.17), transparent 42%); }
.lead-copy ul { margin: 1.7rem 0 0; padding: 0; list-style: none; }
.lead-copy li { margin-bottom: .65rem; color: rgba(255,255,255,.76); }
.lead-copy li::before { content: "✓"; margin-right: .55rem; color: var(--brass-light); }
.lead-form { padding: clamp(1.5rem, 4vw, 3rem); background: white; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.consent { display: flex; gap: .7rem; align-items: flex-start; color: var(--muted); font-size: .76rem; line-height: 1.45; }
.consent input { flex: 0 0 auto; margin-top: .25rem; }
.form-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 1rem; margin-top: 1.2rem; }
.honeypot { position: absolute !important; left: -9999px !important; opacity: 0 !important; }

.page-hero { padding: clamp(4rem, 8vw, 7.5rem) 0; color: white; background: var(--green-950); }
.page-hero h1 { max-width: 920px; margin-bottom: 1.35rem; }
.page-hero .lede { max-width: 760px; }
.breadcrumbs { margin-bottom: 2rem; color: rgba(255,255,255,.58); font-size: .78rem; }
.breadcrumbs a { text-decoration: none; }
.article-layout { display: grid; grid-template-columns: 250px minmax(0, 760px); gap: clamp(2rem, 6vw, 6rem); align-items: start; }
.toc { position: sticky; top: 125px; padding: 1.2rem; background: var(--ivory); border-radius: 14px; }
.toc strong { display: block; margin-bottom: .75rem; color: var(--green-900); font-size: .8rem; letter-spacing: .08em; text-transform: uppercase; }
.toc a { display: block; padding: .35rem 0; color: var(--muted); font-size: .82rem; text-decoration: none; }
.toc a:hover { color: var(--green-700); }
.source-box, .notice {
  margin: 2rem 0;
  padding: 1.25rem 1.4rem;
  color: var(--muted);
  background: var(--ivory);
  border: 1px solid var(--line);
  border-radius: 14px;
  font-size: .86rem;
}
.source-box strong, .notice strong { color: var(--ink); }
.source-box a { color: var(--green-700); }
.table-wrap { overflow-x: auto; margin: 2rem 0; }
table { width: 100%; border-collapse: collapse; font-size: .9rem; }
th, td { padding: .85rem; text-align: left; border-bottom: 1px solid var(--line); }
th { color: white; background: var(--green-800); }
tr:nth-child(even) td { background: var(--ivory); }

.faq-list { border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary {
  position: relative;
  padding: 1.35rem 3rem 1.35rem 0;
  color: var(--green-950);
  font-family: var(--serif);
  font-size: 1.22rem;
  cursor: pointer;
  list-style: none;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: "+"; position: absolute; right: .5rem; top: 1.1rem; color: var(--brass); font-family: var(--sans); font-size: 1.55rem; }
.faq-list details[open] summary::after { content: "−"; }
.faq-answer { max-width: 850px; padding: 0 3rem 1.35rem 0; color: var(--muted); }

.credential-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; overflow: hidden; background: rgba(255,255,255,.15); border: 1px solid rgba(255,255,255,.15); border-radius: var(--radius); }
.credential { padding: 1.35rem; background: var(--green-950); }
.credential small { display: block; color: var(--brass-light); font-size: .7rem; letter-spacing: .1em; text-transform: uppercase; }
.credential strong { display: block; margin-top: .35rem; font-family: var(--serif); font-size: 1.12rem; }

.cta-band { padding: 2.3rem 0; color: white; background: var(--green-800); }
.cta-band .container { display: flex; align-items: center; justify-content: space-between; gap: 2rem; }
.cta-band h2 { margin-bottom: .35rem; font-size: clamp(1.7rem, 3.5vw, 2.7rem); }

.site-footer { padding: 4rem 0 1.5rem; color: rgba(255,255,255,.68); background: #071e1a; }
.footer-grid { display: grid; grid-template-columns: 1.4fr repeat(3, 1fr); gap: 3rem; }
.footer-brand p { max-width: 390px; margin-top: 1.2rem; font-size: .88rem; }
.footer-col strong { display: block; margin-bottom: .85rem; color: white; font-size: .82rem; letter-spacing: .08em; text-transform: uppercase; }
.footer-col a { display: block; padding: .23rem 0; color: rgba(255,255,255,.68); font-size: .84rem; text-decoration: none; }
.footer-col a:hover { color: white; }
.footer-bottom { display: flex; justify-content: space-between; gap: 1rem; margin-top: 3.5rem; padding-top: 1.2rem; border-top: 1px solid rgba(255,255,255,.12); font-size: .72rem; }
.footer-bottom a { color: inherit; }

.mobile-cta { display: none; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.hidden { display: none !important; }
:focus-visible { outline: 3px solid var(--brass-light); outline-offset: 3px; }

@media (max-width: 1040px) {
  .nav-links { gap: .85rem; }
  .nav-links > a { font-size: .82rem; }
  .hero-grid { min-height: auto; grid-template-columns: 1fr; }
  .hero-copy { padding-right: max(20px, calc((100vw - 1180px) / 2)); }
  .hero-media { min-height: 520px; }
  .hero-media::after { background: linear-gradient(0deg, rgba(11,41,35,.28), transparent 45%); }
  .lead-box { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1.3fr 1fr 1fr; }
  .footer-col:last-child { grid-column: 2 / 4; }
}

@media (max-width: 820px) {
  body { font-size: 16px; padding-bottom: 70px; }
  .topbar { display: none; }
  .nav-wrap { min-height: 70px; }
  .menu-toggle { display: grid; place-items: center; }
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: none;
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    padding: .8rem 20px 1.2rem;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 15px 30px rgba(11,41,35,.09);
  }
  .nav-links.is-open { display: flex; }
  .nav-links > a { padding: .75rem 0; font-size: .95rem; }
  .nav-links > .button { margin-top: .45rem; }
  .hero-media { min-height: 440px; }
  .trust-grid { grid-template-columns: 1fr 1fr; }
  .trust-item:nth-child(2) { border-right: 0; }
  .trust-item:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,.15); }
  .intro-grid, .split, .split-balanced { grid-template-columns: 1fr; gap: 2.5rem; }
  .sticky-title { position: static; }
  .rights { grid-template-columns: 1fr; }
  .right-card { min-height: auto; border-right: 0; border-bottom: 1px solid var(--line); }
  .right-card .symbol { margin-bottom: 1rem; }
  .card-grid { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
  .article-layout { grid-template-columns: 1fr; }
  .toc { position: static; }
  .cta-band .container { align-items: flex-start; flex-direction: column; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-col:last-child { grid-column: auto; }
  .mobile-cta {
    position: fixed;
    z-index: 120;
    left: 0;
    right: 0;
    bottom: 0;
    display: grid;
    grid-template-columns: .82fr 1.18fr;
    padding: .55rem;
    background: rgba(255,253,248,.97);
    border-top: 1px solid var(--line);
    backdrop-filter: blur(12px);
  }
  .mobile-cta a { min-height: 48px; }
}

@media (max-width: 560px) {
  .container, .narrow { width: min(100% - 28px, 1180px); }
  .brand-copy strong { font-size: .95rem; }
  .brand-copy small { font-size: .61rem; }
  .hero-copy { padding: 3.5rem 14px; }
  .hero-media { min-height: 360px; }
  .hero-caption { left: 1rem; right: 1rem; bottom: 1rem; }
  .trust-grid, .card-grid, .calculator-grid, .form-grid, .credential-grid { grid-template-columns: 1fr; }
  .trust-item { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.15); }
  .trust-item:nth-child(3) { border-bottom: 1px solid rgba(255,255,255,.15); }
  .steps { grid-template-columns: 1fr; }
  .button-row { align-items: stretch; flex-direction: column; }
  .button-row .button { width: 100%; }
  .image-frame { min-height: 390px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand, .footer-col:last-child { grid-column: auto; }
  .footer-bottom { flex-direction: column; }
}

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

@media print {
  .topbar, .site-header, .mobile-cta, .cta-band, .site-footer, .button { display: none !important; }
  body { padding: 0; color: black; background: white; }
  .page-hero { color: black; background: white; }
  .section { padding: 1.5rem 0; }
}
