:root {
  --ink: #14231f;
  --ink-soft: #33443f;
  --forest: #1f4b3f;
  --forest-2: #2d6555;
  --mint: #dfeee7;
  --mint-2: #edf6f1;
  --sand: #f7f2e9;
  --paper: #fffdf9;
  --white: #ffffff;
  --amber: #d89a50;
  --amber-dark: #a86e2c;
  --line: rgba(20, 35, 31, 0.12);
  --shadow: 0 18px 50px rgba(20, 35, 31, 0.10);
  --radius: 22px;
  --radius-sm: 14px;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }

:focus-visible {
  outline: 3px solid var(--forest);
  outline-offset: 3px;
}
.button:focus-visible,
.nav-links a:focus-visible {
  outline-offset: 4px;
}

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

.container {
  width: min(var(--max), calc(100% - 40px));
  margin-inline: auto;
}

.eyebrow {
  margin: 0 0 12px;
  font-size: 0.82rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  font-weight: 800;
  color: var(--forest-2);
}

h1, h2, h3 {
  font-family: Georgia, "Times New Roman", serif;
  letter-spacing: -0.025em;
  line-height: 1.08;
  margin-top: 0;
}
h1 { font-size: clamp(3.2rem, 8vw, 6.9rem); margin-bottom: 24px; }
h2 { font-size: clamp(2.2rem, 5vw, 4rem); margin-bottom: 18px; }
h3 { font-size: 1.45rem; margin-bottom: 10px; }
p { margin-top: 0; }
.lede { font-size: clamp(1.08rem, 2vw, 1.28rem); color: var(--ink-soft); max-width: 720px; }
.muted { color: var(--ink-soft); }
.small { font-size: 0.92rem; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(14px);
  background: rgba(255, 253, 249, 0.88);
  border-bottom: 1px solid var(--line);
}
.site-header .nav { position: relative; }
.nav {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
  font-weight: 900;
  letter-spacing: 0.02em;
}
.brand-mark {
  width: 42px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--forest);
  color: var(--white);
  font-family: Georgia, serif;
  font-size: 1.1rem;
}
.brand-text { display: grid; line-height: 1; }
.brand-text span:first-child { font-size: 1.15rem; }
.brand-text span:last-child { font-size: 0.68rem; color: var(--forest-2); letter-spacing: 0.24em; margin-top: 4px; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
}
.nav-links a {
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
}
.nav-links a:hover { color: var(--forest-2); }
.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: 12px;
  align-items: center;
  justify-content: center;
}
.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--ink);
  content: "";
  position: relative;
}
.nav-toggle span::before { position: absolute; top: -6px; }
.nav-toggle span::after { position: absolute; top: 6px; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 12px 19px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  border: 1px solid transparent;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--forest); color: var(--white); box-shadow: 0 10px 24px rgba(31, 75, 63, .2); }
.button-primary:hover { background: var(--forest-2); }
.button-secondary { background: var(--white); border-color: var(--line); }
.button-secondary:hover { box-shadow: var(--shadow); }
.button-amber { background: var(--amber); color: var(--ink); }
.button-sm { min-height: 40px; padding: 9px 15px; font-size: 0.92rem; }

.seasonal-bar {
  background: var(--ink);
  color: var(--white);
  font-size: 0.92rem;
}
.seasonal-bar .container {
  padding-block: 9px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 8px 14px;
  text-align: center;
}
.seasonal-bar a { color: #f6d29e; font-weight: 800; }

.hero {
  position: relative;
  overflow: hidden;
  padding: 88px 0 74px;
}
.hero::before {
  content: "";
  position: absolute;
  width: 560px;
  height: 560px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(216, 154, 80, .24), rgba(216, 154, 80, 0) 68%);
  right: -180px;
  top: -200px;
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 58px;
  align-items: center;
}
.hero-copy { position: relative; z-index: 1; }
.hero-copy h1 span { color: var(--forest-2); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin: 30px 0 28px; }
.hero-meta { display: flex; flex-wrap: wrap; gap: 18px; color: var(--ink-soft); font-size: .94rem; }
.hero-meta span { display: inline-flex; align-items: center; gap: 8px; }
.hero-meta i { width: 8px; height: 8px; background: var(--amber); border-radius: 50%; display: inline-block; }

.hero-card {
  background: var(--forest);
  color: var(--white);
  border-radius: 32px;
  padding: 34px;
  position: relative;
  box-shadow: 0 28px 80px rgba(31, 75, 63, .28);
  overflow: hidden;
}
.hero-card::after {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 50%;
  right: -76px;
  bottom: -86px;
  box-shadow: 0 0 0 30px rgba(255,255,255,.04), 0 0 0 60px rgba(255,255,255,.025);
}
.hero-card h3 { color: var(--white); font-size: 2rem; }
.hero-card p { color: rgba(255,255,255,.78); }
.check-mini { display: grid; gap: 12px; margin: 24px 0 28px; }
.check-mini div { display: flex; gap: 11px; align-items: flex-start; }
.check-mini b { color: #f5c98e; }
.check-icon {
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: rgba(255,255,255,.12);
  display: grid;
  place-items: center;
  font-size: .8rem;
}

.section { padding: 92px 0; }
.section-sm { padding: 62px 0; }
.section-mint { background: var(--mint-2); }
.section-sand { background: var(--sand); }
.section-dark { background: var(--ink); color: var(--white); }
.section-dark .lede, .section-dark .muted { color: rgba(255,255,255,.72); }
.section-head { max-width: 780px; margin-bottom: 42px; }
.section-head.center { text-align: center; margin-inline: auto; }

.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px; }
.now-grid .card { min-height: 100%; }
.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: 0 10px 35px rgba(20, 35, 31, .045);
}
.card-icon {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: var(--mint);
  color: var(--forest);
  font-weight: 900;
  margin-bottom: 24px;
}
.card p:last-child { margin-bottom: 0; }
.card a { font-weight: 800; color: var(--forest); }

.audience-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}
.audience-card {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 24px;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,.72);
  border: 1px solid var(--line);
}
.audience-number {
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--ink);
  color: var(--white);
  font-weight: 900;
}
.audience-card h3 { font-size: 1.18rem; margin-bottom: 6px; }
.audience-card p { margin: 0; color: var(--ink-soft); }

.steps { counter-reset: step; display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.step { position: relative; padding-top: 68px; }
.step::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  position: absolute;
  top: 0;
  left: 0;
  font-family: Georgia, serif;
  font-size: 2.8rem;
  color: var(--amber-dark);
}
.step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 26px;
  left: 72px;
  right: 0;
  border-top: 1px dashed rgba(20,35,31,.3);
}

.split {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 54px;
  align-items: center;
}
.founder-panel {
  min-height: 480px;
  border-radius: 34px;
  background: linear-gradient(145deg, var(--forest), #12332b);
  color: var(--white);
  padding: 42px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.founder-panel::before {
  content: "EK";
  position: absolute;
  top: 46px;
  right: 42px;
  font-family: Georgia, serif;
  font-size: 8rem;
  line-height: 1;
  color: rgba(255,255,255,.08);
}
.founder-panel .quote {
  font-family: Georgia, serif;
  font-size: 2rem;
  line-height: 1.2;
  max-width: 520px;
  margin-bottom: 28px;
}
.founder-panel small { color: rgba(255,255,255,.72); }

.list-clean { list-style: none; padding: 0; margin: 24px 0; display: grid; gap: 12px; }
.list-clean li { display: flex; gap: 12px; align-items: flex-start; }
.list-clean li::before { content: "✓"; color: var(--forest-2); font-weight: 900; }

.resource-banner {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 34px;
  align-items: center;
  padding: 42px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 28px;
  box-shadow: var(--shadow);
}
.resource-preview {
  background: var(--sand);
  border-radius: 20px;
  padding: 24px;
  transform: rotate(1.5deg);
  border: 1px solid var(--line);
}
.resource-preview .line {
  height: 12px;
  background: rgba(20,35,31,.11);
  border-radius: 999px;
  margin: 12px 0;
}
.resource-preview .line:nth-child(2) { width: 88%; }
.resource-preview .line:nth-child(3) { width: 72%; }
.resource-preview .line:nth-child(4) { width: 82%; }
.resource-preview .line:nth-child(5) { width: 64%; }

.faq { display: grid; gap: 12px; max-width: 860px; margin-inline: auto; }
.faq-item { border: 1px solid var(--line); background: var(--white); border-radius: 16px; overflow: hidden; }
.faq-item h3 { margin: 0; font-size: inherit; font-family: inherit; letter-spacing: 0; line-height: inherit; }
.faq-button {
  width: 100%;
  border: 0;
  background: transparent;
  padding: 20px 22px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  text-align: left;
  font-weight: 800;
  color: var(--ink);
}
.faq-button span:last-child { font-size: 1.3rem; color: var(--forest-2); }
.faq-content { display: none; padding: 0 22px 20px; color: var(--ink-soft); }
.faq-item.open .faq-content { display: block; }

.cta-panel {
  background: var(--forest);
  border-radius: 30px;
  padding: 54px;
  color: var(--white);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.cta-panel h2 { margin-bottom: 10px; }
.cta-panel p { margin-bottom: 0; color: rgba(255,255,255,.76); max-width: 650px; }

.form-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 30px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  position: relative;
}
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.field { display: grid; gap: 7px; }
.field.full { grid-column: 1 / -1; }
label { font-weight: 800; font-size: .92rem; }
input, select, textarea {
  width: 100%;
  border: 1px solid rgba(20,35,31,.18);
  border-radius: 12px;
  background: var(--paper);
  padding: 13px 14px;
  color: var(--ink);
}
input:focus, select:focus, textarea:focus { outline: 3px solid rgba(31,75,63,.13); border-color: var(--forest); }
textarea { min-height: 130px; resize: vertical; }
.form-note { font-size: .82rem; color: var(--ink-soft); margin-top: 12px; }
.form-warning {
  margin: 0 0 12px;
  padding: 12px 14px;
  border-radius: 12px;
  background: #f8e7d8;
  color: #6b3a12;
  font-size: .9rem;
  font-weight: 700;
}
.honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.legal-title { font-size: clamp(2.8rem, 7vw, 5rem); }
.page-center { min-height: 100vh; display: grid; place-items: center; }
.page-center-inner { max-width: 760px; text-align: center; }
.page-title { font-size: clamp(3rem, 8vw, 5.6rem); }
.lede-center { margin-inline: auto; }
.brand-center { justify-content: center; margin-bottom: 36px; }
.hero-actions-center { justify-content: center; }
.score-card h3 { color: #fff; }
.score-rule { border: 0; border-top: 1px solid rgba(255,255,255,.16); margin: 24px 0; }

.page-hero { padding: 74px 0 42px; }
.page-hero h1 { font-size: clamp(2.8rem, 7vw, 5.3rem); }

.checklist-layout { display: grid; grid-template-columns: 1fr 340px; gap: 32px; align-items: start; }
.checklist-card { background: var(--white); border: 1px solid var(--line); border-radius: 22px; padding: 28px; }
.checklist-group { margin-bottom: 30px; }
.checklist-group:last-child { margin-bottom: 0; }
.checklist-group h2 { font-size: 1.75rem; margin-bottom: 14px; }
.check-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
}
.check-row:last-child { border-bottom: 0; }
.check-row input { width: 20px; height: 20px; margin-top: 3px; accent-color: var(--forest); }
.check-row label { font-weight: 650; cursor: pointer; }
.score-card {
  position: sticky;
  top: 108px;
  background: var(--forest);
  color: var(--white);
  border-radius: 22px;
  padding: 28px;
}
.score-number { font-family: Georgia, serif; font-size: 4.2rem; line-height: 1; color: #f2ca95; margin-bottom: 10px; }
.score-card p { color: rgba(255,255,255,.78); }
.progress { height: 10px; border-radius: 999px; background: rgba(255,255,255,.16); overflow: hidden; margin: 20px 0; }
.progress span { display: block; height: 100%; width: 0; background: var(--amber); transition: width .2s ease; }

.legal { max-width: 820px; }
.legal h2 { font-size: 1.7rem; margin-top: 38px; }
.legal h3 { font-size: 1.2rem; margin-top: 26px; }
.legal p, .legal li { color: var(--ink-soft); }

.site-footer { background: #0d1815; color: var(--white); padding: 54px 0 24px; }
.footer-grid { display: grid; grid-template-columns: 1.2fr .8fr .8fr; gap: 40px; }
.footer-brand p { color: rgba(255,255,255,.65); max-width: 420px; }
.footer-links { display: grid; gap: 9px; align-content: start; }
.footer-links h3 { font-family: inherit; font-size: .9rem; text-transform: uppercase; letter-spacing: .12em; color: #f0c98f; }
.footer-links a { color: rgba(255,255,255,.72); text-decoration: none; }
.footer-bottom { margin-top: 42px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.12); display: flex; justify-content: space-between; gap: 20px; color: rgba(255,255,255,.55); font-size: .82rem; }

@media (max-width: 960px) {
  .hero-grid, .split, .resource-banner { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: 1fr 1fr; }
  .step:nth-child(2)::after { display: none; }
  .checklist-layout { grid-template-columns: 1fr; }
  .score-card { position: static; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 760px) {
  .container { width: min(var(--max), calc(100% - 28px)); }
  .nav-toggle { display: inline-flex; }
  .nav-links {
    display: none;
    position: absolute;
    top: 78px;
    left: 14px;
    right: 14px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 18px;
    box-shadow: var(--shadow);
    flex-direction: column;
    align-items: stretch;
  }
  .nav-links.open { display: flex; }
  .nav-links .button { width: 100%; }
  .hero { padding-top: 58px; }
  .hero-grid { gap: 36px; }
  .hero-card { padding: 28px; }
  .section { padding: 70px 0; }
  .grid-3, .grid-2, .audience-grid, .steps, .form-grid { grid-template-columns: 1fr; }
  .step::after { display: none; }
  .resource-banner, .cta-panel { padding: 30px; }
  .cta-panel { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; }
  .footer-bottom { flex-direction: column; }
  h1 { font-size: clamp(2.4rem, 12vw, 4.2rem); }
  .seasonal-bar { font-size: 0.86rem; }
  .seasonal-bar .container { padding-inline: 4px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .button, .progress span { transition: none; }
  .button:hover { transform: none; }
}

@media print {
  .site-header, .seasonal-bar, .site-footer, .no-print, .score-card .button { display: none !important; }
  body { background: #fff; }
  .section, .page-hero { padding: 20px 0; }
  .container { width: 100%; }
  .checklist-layout { display: block; }
  .score-card { break-inside: avoid; margin-top: 24px; color: #000; background: #fff; border: 1px solid #ccc; }
  .score-card p { color: #333; }
  .checklist-card { box-shadow: none; }
}
