:root {
  --bg: #eff3ef;
  --bg-soft: #f7faf7;
  --surface: rgba(255, 255, 255, 0.82);
  --card: #ffffff;
  --ink: #161917;
  --muted: #5f6c64;
  --accent: #146b4d;
  --accent-dark: #0f513b;
  --accent-soft: rgba(20, 107, 77, 0.1);
  --line: rgba(22, 25, 23, 0.08);
  --line-strong: rgba(22, 25, 23, 0.16);
  --shadow: 0 28px 60px rgba(17, 31, 24, 0.08);
  --radius: 26px;
  --radius-soft: 18px;
  --content: 1120px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  font-family: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Baskerville, Georgia, serif;
  line-height: 1.65;
  background:
    radial-gradient(circle at top left, rgba(20, 107, 77, 0.08), transparent 28%),
    radial-gradient(circle at right 12%, rgba(98, 133, 115, 0.07), transparent 25%),
    linear-gradient(180deg, #fbfdfb 0%, var(--bg) 100%);
}

a {
  color: var(--accent-dark);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.12em;
}

a:hover { color: var(--accent); }
img { max-width: 100%; }

.wrap {
  width: min(var(--content), calc(100% - 2rem));
  margin: 0 auto;
}

.narrow { width: min(760px, calc(100% - 2rem)); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(14px);
  background: rgba(250, 252, 250, 0.84);
  border-bottom: 1px solid var(--line);
}

.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  color: inherit;
  text-decoration: none;
}

.brand-mark {
  width: 2.8rem;
  height: 2.8rem;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--accent), #29a16f);
  color: #fff;
  font-size: 1.05rem;
  font-weight: 700;
  box-shadow: 0 14px 28px rgba(20, 107, 77, 0.2);
}

.brand strong {
  display: block;
  font-size: 1rem;
  letter-spacing: 0.01em;
}

.brand small {
  display: block;
  color: var(--muted);
  font-size: 0.78rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav-links a {
  color: inherit;
  text-decoration: none;
  font-size: 0.94rem;
}

.nav-cta {
  padding: 0.72rem 1.08rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), #27a170);
  color: #fff !important;
}

.counter-banner {
  padding: 0 0 0.85rem;
}

.counter-banner p {
  margin: 0 0 0.45rem;
  color: var(--muted);
  font-size: 0.94rem;
}

.progress {
  width: 100%;
  height: 10px;
  background: rgba(20, 107, 77, 0.1);
  border-radius: 999px;
  overflow: hidden;
}

.progress span {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--accent), #32b07a);
  border-radius: inherit;
}

.hero {
 /* padding: 4.8rem 0 2.4rem; */
}

.hero-modern {
  /* padding-top: 5.4rem;*/
}

.hero-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(300px, 0.86fr);
  gap: 1.5rem;
  align-items: stretch;
}

.hero-copy,
.hero-panel,
.panel,
.card,
.flash,
.error-summary,
.metric-card,
.story-card,
.editorial-block,
.trust-box {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.hero-copy {
  padding: 2.2rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(246, 251, 247, 0.88));
}

.hero-panel {
  padding: 1.6rem;
  display: flex-start;
  flex-direction: column;
  justify-content: space-between;
  background: linear-gradient(180deg, rgba(244, 249, 246, 0.96), rgba(255, 255, 255, 0.76));
}

.eyebrow,
.section-label {
  display: inline-block;
  padding: 0.34rem 0.68rem;
  border-radius: 999px;
  border: 1px solid rgba(20, 107, 77, 0.14);
  background: rgba(20, 107, 77, 0.08);
  color: var(--accent-dark);
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
    margin-bottom: 10px;
}

.section-label-light {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.86);
}

h1, h2, h3 {
  margin: 0;
  line-height: 1.02;
  letter-spacing: -0.035em;
  font-weight: 600;
}

h1 {
 /* margin-top: 1rem; 
  max-width: 11ch; */
font-size: clamp(3rem, 5vw, 4rem);
}

h2 {
  font-size: clamp(1.6rem, 3vw, 2.25rem);
  margin-bottom: 0.7rem;
}

.lead {
  margin-top: 1.2rem;
  max-width: 40rem;
  font-size: 1.1rem;
  color: var(--muted);
}

.hero-actions {
  margin-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

.hero-note,
.submit-note,
.field-help {
  color: var(--muted);
  font-size: 0.92rem;
}

.hero-inline-points {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.4rem;
}

.hero-inline-points span {
  padding: 0.5rem 0.72rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(22, 25, 23, 0.06);
  color: var(--muted);
  font-size: 0.88rem;
}

.hero-stat-block {
  display: grid;
  gap: 0.65rem;
}

.stat-kicker {
  margin: 0;
  color: var(--muted);
  font-size: 0.84rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero-stat {
  margin: 0;
  font-size: clamp(2.6rem, 5vw, 4rem);
  line-height: 0.95;
  letter-spacing: -0.05em;
}

.hero-meta {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.hero-panel-divider {
  height: 1px;
  margin: 1.1rem 0;
  background: var(--line);
}

.hero-panel-copy h2 {
  font-size: 1.45rem;
  margin-bottom: 0.85rem;
}

.clean-list {
  margin: 0;
  padding-left: 1.15rem;
  color: var(--muted);
}

.clean-list li + li { margin-top: 0.6rem; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.94rem 1.36rem;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  text-decoration: none;
  font-size: 0.98rem;
  font-family: inherit;
}

.button-primary {
  background: linear-gradient(135deg, var(--accent), #27a170);
  color: #fff;
  box-shadow: 0 16px 34px rgba(20, 107, 77, 0.18);
}

.button:hover,
.button:focus {
color: #fff;
  text-decoration: underline;
}



.section { padding: 2.4rem 0; }

.section-editorial {
  padding-top: 1.1rem;
}

.editorial-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 1rem;
}

.editorial-block {
  padding: 1.55rem;
  background: rgba(255, 255, 255, 0.72);
}

.editorial-block-feature {
  background: linear-gradient(180deg, rgba(247, 251, 248, 0.96), rgba(255, 255, 255, 0.74));
}

.editorial-block p {
  margin: 0;
  color: var(--muted);
}

.editorial-block p + p {
  margin-top: 0.9rem;
}

.section-metrics {
  padding-top: 0.6rem;
}

.metrics-grid,
.stats-grid,
.info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.metric-card {
  padding: 1.3rem 1.25rem;
  background: rgba(255, 255, 255, 0.68);
  box-shadow: none;
}

.metric-card strong {
  display: block;
  font-size: 1.25rem;
  margin-bottom: 0.35rem;
}

.metric-card span {
  color: var(--muted);
  font-size: 0.94rem;
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.story-card {
  padding: 1.6rem;
  background: rgba(255, 255, 255, 0.74);
}

.story-card p {
  margin: 0;
  color: var(--muted);
}

.story-card p + p { margin-top: 0.85rem; }

.story-card-dark {
  background: linear-gradient(135deg, #11251d, #19342a);
  color: #f1f7f3;
  border-color: rgba(255, 255, 255, 0.03);
}

.story-card-dark p {
  color: rgba(241, 247, 243, 0.8);
}

.section-soft {
  background: rgba(255, 255, 255, 0.36);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.faq-shell {
  display: grid;
  gap: 1rem;
}

.faq-heading h2 {
  /* max-width: 13ch; */
}

.faq details {
  background: rgba(255, 255, 255, 0.78);
  padding: 1rem 1.12rem;
  border-radius: var(--radius-soft);
  border: 1px solid var(--line);
  margin-bottom: 0.7rem;
}

.faq summary {
  cursor: pointer;
  font-weight: 600;
  list-style: none;
}

.faq summary::-webkit-details-marker { display: none; }
.faq details p { margin: 0.75rem 0 0; color: var(--muted); }

.cta-strip {
  padding-top: 1.5rem;
  padding-bottom: 4rem;
}

.cta-strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.8rem 1.9rem;
  border-radius: 30px;
}

.cta-strip-modern {
  background: linear-gradient(135deg, #101714, #183126);
  color: #eef6f1;
  box-shadow: 0 24px 48px rgba(16, 23, 20, 0.2);
}

.cta-strip-inner p {
  margin: 0;
  color: rgba(238, 246, 241, 0.78);
}

.stepper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  margin-bottom: 1.6rem;
}

.step {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.82rem 0.95rem;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.56);
}

.step span {
  width: 1.9rem;
  height: 1.9rem;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(20, 107, 77, 0.12);
  font-size: 0.92rem;
}

.step strong {
  font-size: 0.95rem;
  letter-spacing: 0;
}

.step.current {
  border-color: rgba(20, 107, 77, 0.22);
  background: rgba(255, 255, 255, 0.84);
}

.step.current span,
.step.done span {
  background: var(--accent);
  color: #fff;
}

.panel,
.card,
.form-card,
.summary-card,
.thanks-card,
.trust-box,
.flash,
.error-summary {
  background: rgba(255, 255, 255, 0.76);
}

.form-card,
.summary-card,
.thanks-card {
  padding: 1.45rem;
}

.field { margin-bottom: 1rem; }

.field-row,
.summary-card {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.summary-card.compact { grid-template-columns: 1fr; }

label {
  display: block;
  margin-bottom: 0.38rem;
  font-weight: 600;
}

input,
select,
textarea {
  width: 100%;
  padding: 0.92rem 0.95rem;
  border-radius: 16px;
  border: 1px solid rgba(22, 25, 23, 0.1);
  background: rgba(255, 255, 255, 0.92);
  color: inherit;
  font: inherit;
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: rgba(20, 107, 77, 0.28);
  box-shadow: 0 0 0 4px rgba(20, 107, 77, 0.08);
}

textarea { resize: vertical; }

.consent-box {
  margin: 1rem 0;
  padding: 1rem 1.05rem;
  border-radius: var(--radius-soft);
  background: rgba(246, 250, 247, 0.92);
  border: 1px solid var(--line);
}

.consent-box p { margin: 0; }
.consent-box p + p { margin-top: 0.75rem; }

.checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-top: 0.85rem;
}

.checkbox input {
  width: auto;
  margin-top: 0.25rem;
}

.submit-bar {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.7rem;
  margin-top: 1.1rem;
}

.summary-card p,
.panel p,
.flash p,
.trust-box p,
.prose p,
.prose li,
.hero-card p,
.error-summary p {
  color: var(--muted);
}

.summary-card p { margin: 0.35rem 0 0; }

.flash,
.error-summary {
  padding: 0.95rem 1.1rem;
  margin: 1rem auto 0;
  box-shadow: none;
}

.flash-success { border-left: 4px solid #3f8f59; }
.flash-error,
.error-summary { border-left: 4px solid var(--accent); }
.error-summary ul { margin: 0.6rem 0 0; }

.honeypot {
  position: absolute;
  left: -9999px;
}

.site-footer {
  padding: 1.8rem 0 3rem;
  color: var(--muted);
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  padding-top: 1.4rem;
  border-top: 1px solid var(--line);
}

.footer-grid p { margin: 0.25rem 0; }
.stat { font-size: 2rem; margin: 0.35rem 0 0; }

@media (max-width: 900px) {
  .hero-shell,
  .editorial-grid,
  .story-grid,
  .metrics-grid,
  .stats-grid,
  .info-grid,
  .field-row,
  .summary-card,
  .cta-strip-inner {
    grid-template-columns: 1fr;
    display: grid;
  }

  .hero-copy,
  .hero-panel,
  .editorial-block,
  .story-card {
    padding: 1.35rem;
  }
}

@media (max-width: 820px) {
  .hero {
    padding-top: 4rem;
  }

  .nav-row,
  .nav-links,
  .footer-grid {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-links { gap: 0.55rem; }
  .counter-banner { display: none; }
  h1 { font-size: clamp(2.35rem, 12vw, 4rem); }
  .hero-copy { padding: 1.35rem; }
  .cta-strip-inner { padding: 1.4rem; }
  .hero-inline-points { gap: 0.45rem; }
}
.counter-banner,
.hero-stat,
.hero-meta,
.progress ,
.hero-panel-divider,
.stat-kicker{
  display: none !important;
}
