:root {
  --green-900: #1b4332;
  --green-700: #2d6a4f;
  --green-500: #40916c;
  --green-300: #95d5b2;
  --green-100: #d8f3dc;
  --brown-700: #5c4033;
  --cream: #f8f5ef;
  --cream-dark: #ece6da;
  --text: #1f2933;
  --text-muted: #52606d;
  --white: #ffffff;
  --shadow: 0 12px 40px rgba(27, 67, 50, 0.12);
  --radius: 18px;
  --max: 1100px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Source Sans 3", system-ui, sans-serif;
  color: var(--text);
  background: var(--cream);
  line-height: 1.65;
}

img {
  max-width: 100%;
}

a {
  color: var(--green-700);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(248, 245, 239, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(27, 67, 50, 0.08);
}

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

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  text-decoration: none;
  color: var(--green-900);
  font-weight: 700;
  font-size: 1.15rem;
}

.logo-mark {
  font-size: 1.4rem;
}

nav {
  display: flex;
  gap: 0.35rem;
}

.nav-link {
  text-decoration: none;
  color: var(--text-muted);
  font-weight: 600;
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  transition: background 0.2s, color 0.2s;
}

.nav-link:hover,
.nav-link.active {
  background: var(--green-100);
  color: var(--green-900);
}

.hero {
  padding: 4.5rem 0 3.5rem;
  background:
    radial-gradient(circle at top right, rgba(149, 213, 178, 0.45), transparent 42%),
    linear-gradient(180deg, var(--green-100), var(--cream));
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.85fr;
  gap: 2rem;
  align-items: center;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--green-700);
  margin: 0 0 0.75rem;
}

h1,
h2,
h3 {
  font-family: "Fraunces", Georgia, serif;
  line-height: 1.15;
  color: var(--green-900);
}

h1 {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  margin: 0 0 1rem;
}

h2 {
  font-size: clamp(1.7rem, 3vw, 2.35rem);
  margin: 0 0 0.75rem;
}

h3 {
  font-size: 1.2rem;
  margin: 0 0 0.45rem;
}

.lead {
  font-size: 1.12rem;
  color: var(--text-muted);
  max-width: 38rem;
  margin: 0 0 1.5rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.25rem;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  border: 2px solid transparent;
  transition: transform 0.15s, box-shadow 0.15s, background 0.15s;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--green-700);
  color: var(--white);
  box-shadow: var(--shadow);
}

.btn-primary:hover {
  background: var(--green-900);
}

.btn-secondary {
  background: var(--white);
  color: var(--green-900);
  border-color: rgba(45, 106, 79, 0.25);
}

.btn-block {
  width: 100%;
}

.hero-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.5rem;
  display: grid;
  gap: 1rem;
}

.stat {
  padding: 1rem 1.1rem;
  border-radius: 14px;
  background: var(--cream);
}

.stat strong {
  display: block;
  font-size: 1.35rem;
  color: var(--green-900);
  margin-bottom: 0.2rem;
}

.stat span {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.section {
  padding: 4rem 0;
}

.section-alt {
  background: var(--white);
}

.section-head {
  max-width: 42rem;
  margin-bottom: 2rem;
}

.section-head p {
  color: var(--text-muted);
  margin: 0;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
}

.card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
  border: 1px solid rgba(27, 67, 50, 0.06);
}

.card-compact {
  background: var(--cream);
  box-shadow: none;
}

.card-icon {
  font-size: 1.8rem;
  margin-bottom: 0.75rem;
}

.card p:last-child {
  margin-bottom: 0;
  color: var(--text-muted);
}

.split {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2rem;
  align-items: start;
}

.quote {
  margin: 0;
  padding: 1.5rem;
  border-left: 5px solid var(--green-500);
  background: var(--green-100);
  border-radius: 0 var(--radius) var(--radius) 0;
}

.quote p {
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.15rem;
  color: var(--green-900);
  margin: 0 0 0.75rem;
}

.quote cite {
  font-style: normal;
  color: var(--text-muted);
  font-size: 0.92rem;
}

.cta-band {
  background: linear-gradient(135deg, var(--green-900), var(--green-700));
  color: var(--white);
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.cta-band h2,
.cta-band p {
  color: var(--white);
}

.cta-band p {
  opacity: 0.92;
  margin: 0;
}

.page-hero {
  padding: 3.5rem 0 2rem;
  background: linear-gradient(180deg, var(--green-100), var(--cream));
}

.steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 1rem;
  counter-reset: step;
}

.steps li {
  counter-increment: step;
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.25rem 1.25rem 1.25rem 4.5rem;
  box-shadow: var(--shadow);
  position: relative;
}

.steps li::before {
  content: counter(step);
  position: absolute;
  left: 1.25rem;
  top: 1.25rem;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--green-700);
  color: var(--white);
  font-weight: 700;
}

.steps p {
  margin: 0;
  color: var(--text-muted);
}

.checklist {
  padding-left: 1.2rem;
  margin: 0;
}

.checklist li {
  margin-bottom: 0.55rem;
  color: var(--text-muted);
}

.tip-box {
  background: var(--green-100);
  border-radius: var(--radius);
  padding: 1.5rem;
  border: 1px solid rgba(45, 106, 79, 0.15);
}

.tip-box p {
  color: var(--text-muted);
}

.site-footer {
  background: var(--green-900);
  color: rgba(255, 255, 255, 0.88);
  padding: 2rem 0;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.site-footer a {
  color: var(--green-300);
}

.fine-print {
  font-size: 0.88rem;
  opacity: 0.75;
}

@media (max-width: 820px) {
  .hero-grid,
  .split {
    grid-template-columns: 1fr;
  }

  .cta-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  nav {
    flex-wrap: wrap;
    justify-content: flex-end;
  }
}
