:root {
  --ink: #10241f;
  --paper: #fbfaf6;
  --teal: #1f6f5c;
  --teal-deep: #27ae60;
  --sand: #eee8da;
  --line: #dcd6c6;
  --warn-bg: #27ae60;
  --warn-text: #ffffff;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Source Sans Pro', -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
}

h1, h2, h3 {
  font-family: 'Georgia', 'Iowan Old Style', serif;
  line-height: 1.15;
  margin: 0 0 0.5em;
  color: var(--teal-deep);
}

a { color: var(--teal); text-decoration: none; }
a:hover { text-decoration: underline; }

img { max-width: 100%; display: block; }

.container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Compliance banner */
.compliance-banner {
  background: var(--warn-bg);
  color: var(--warn-text);
  text-align: center;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  padding: 8px 16px;
  font-weight: 600;
}

/* Header */
.site-header {
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 20;
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  padding-bottom: 14px;
}
.logo img { width: 360px; }
.main-nav ul {
  display: flex;
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.main-nav a {
  color: var(--ink);
  font-weight: 600;
  font-size: 0.95rem;
}
.nav-cta {
  background: var(--teal);
  color: #fff !important;
  padding: 10px 20px;
  border-radius: 3px;
  font-weight: 700;
}
.nav-cta:hover { background: var(--teal-deep); text-decoration: none; }

/* Hero */
.hero {
  background: linear-gradient(160deg, var(--teal-deep) 0%, var(--teal) 100%);
  color: #fff;
  padding: 72px 0;
}
.hero .container {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}
.hero h1 { color: #fff; font-size: 2.6rem; }
.hero p { font-size: 1.1rem; opacity: 0.92; max-width: 46ch; }
.hero .eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
  font-weight: 700;
  opacity: 0.8;
  margin-bottom: 10px;
  display: block;
}
.hero-image img { border-radius: 6px; box-shadow: 0 20px 50px rgba(0,0,0,0.25); }
.btn {
  display: inline-block;
  background: #fff;
  color: var(--teal-deep);
  font-weight: 700;
  padding: 13px 26px;
  border-radius: 3px;
  margin-top: 12px;
}
.btn:hover { background: var(--sand); text-decoration: none; }
.btn-outline {
  background: transparent;
  border: 2px solid var(--teal);
  color: var(--teal);
}
.btn-outline:hover { background: var(--teal); color: #fff; }

/* Sections */
.section { padding: 64px 0; }
.section-alt { background: var(--sand); }
.section-header { text-align: center; max-width: 640px; margin: 0 auto 40px; }

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.two-col img { border-radius: 6px; }
.two-col.reverse { direction: rtl; }
.two-col.reverse > * { direction: ltr; }

.checklist { list-style: none; padding: 0; margin: 16px 0; }
.checklist li {
  padding-left: 28px;
  position: relative;
  margin-bottom: 10px;
}
.checklist li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--teal);
  font-weight: 700;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 28px 24px;
}
.card .num {
  font-family: 'Georgia', serif;
  color: var(--line);
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.card h3 { font-size: 1.1rem; margin-bottom: 8px; }
.card p { margin: 0; color: #4a5650; font-size: 0.95rem; }

.stat-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  text-align: center;
  margin: 32px 0;
}
.stat-row .stat-num {
  font-family: 'Georgia', serif;
  font-size: 2.6rem;
  color: var(--teal);
  font-weight: 700;
}
.stat-row .stat-label { font-size: 0.9rem; color: #4a5650; }

.cta-band {
  background: var(--teal-deep);
  color: #fff;
  text-align: center;
  padding: 56px 0;
}
.cta-band h2 { color: #fff; }

/* Forms */
.form-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 36px;
  max-width: 560px;
  margin: 0 auto;
}
.form-card label {
  display: block;
  font-weight: 600;
  font-size: 0.88rem;
  margin: 16px 0 6px;
}
.form-card input,
.form-card textarea {
  width: 100%;
  padding: 11px 12px;
  border: 1px solid var(--line);
  border-radius: 4px;
  font-size: 0.95rem;
  font-family: inherit;
}
.form-card textarea { resize: vertical; min-height: 110px; }
.consent-row {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-top: 18px;
  font-size: 0.85rem;
  color: #4a5650;
}
.consent-row input { width: auto; margin-top: 3px; }
.form-card button {
  margin-top: 22px;
  width: 100%;
  background: var(--teal);
  color: #fff;
  border: none;
  padding: 14px;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 4px;
  cursor: pointer;
}
.form-card button:hover { background: var(--teal-deep); }
.form-note { font-size: 0.8rem; color: #6b756f; margin-top: 14px; text-align: center; }

/* Footer */
.site-footer {
  background: var(--teal-deep);
  color: #d7e4df;
  padding: 48px 0 24px;
  font-size: 0.9rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 32px;
}
.footer-grid h4 {
  color: #fff;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 12px;
}
.footer-grid ul { list-style: none; padding: 0; margin: 0; }
.footer-grid li { margin-bottom: 8px; }
.footer-grid a { color: #d7e4df; }
.social-icons { display: flex; gap: 14px; margin-top: 8px; }
.social-icons img { height: 20px; width: 20px; filter: brightness(0) invert(1); opacity: 0.85; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 20px;
  font-size: 0.8rem;
  color: #222222;
  text-align: center;
}
.footer-bottom a { color: #cfe0da; }

@media (max-width: 820px) {
  .hero .container, .two-col, .card-grid, .footer-grid, .stat-row {
    grid-template-columns: 1fr;
  }
  .two-col.reverse { direction: ltr; }
  .main-nav { display: none; }
  .hero h1 { font-size: 2rem; }
}
