:root {
  /* Core brand colors (inspired by your badges + photo) */
  --ink: #1f3b44;          /* deep blue-teal */
  --accent: #2fa68a;       /* primary teal */
  --accent-dark: #1f7f6b;  /* darker teal */
  --soil: #7a4a2e;         /* soil brown */
  --grass: #6fbf73;        /* grass green */
  --water: #4f93c0;        /* water blue */
  --bg: #f7f6f2;           /* warm off-white */
  --max: 1040px;
}

* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  line-height: 1.5;
  color: var(--ink);
  background: var(--bg);
}
a { color: inherit; }
.container { max-width: var(--max); margin: 0 auto; padding: 20px; }

.skip-link { position: absolute; left: -9999px; top: 10px; }
.skip-link:focus {
  left: 10px;
  background: #fff;
  border: 1px solid #e6e6e6;
  padding: 10px 12px;
  border-radius: 12px;
  z-index: 999;
}

.site-header { border-bottom: 1px solid #e6e6e6; background: #fff; position: sticky; top: 0; z-index: 10; }
.header-inner { display: flex; gap: 16px; align-items: center; justify-content: space-between; flex-wrap: wrap; }
.brand { display: flex; gap: 14px; align-items: center; min-width: 280px; }

.brand-mark {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border: 1px solid var(--accent);
  border-radius: 14px;
  font-weight: 900;
  letter-spacing: 0.5px;
  background: var(--accent);
  color: #fff;
  text-decoration: none;
}
.brand-text h1 { font-size: 1.05rem; margin: 0; }
.subhead { margin: 4px 0 0; color: #555; font-size: 0.98rem; }

.nav { display: flex; gap: 10px; align-items: center; flex-wrap: wrap; }
.nav a { text-decoration: none; padding: 8px 10px; border-radius: 12px; color: var(--ink); border: 1px solid transparent; }
.nav a:hover { border-color: #e6e6e6; background: #fafafa; }
.nav a.active { border-color: #e6e6e6; background: #fafafa; }

.card {
  border: 1px solid #e6e6e6;
  border-radius: 18px;
  padding: 18px;
  background: #fff;
  margin: 18px 0;
  box-shadow: 0 1px 0 rgba(0,0,0,0.02);
}

.hero h2 { margin-top: 0; font-size: 1.6rem; line-height: 1.15; }
.eyebrow { font-weight: 900; letter-spacing: 0.4px; text-transform: uppercase; font-size: 0.8rem; color: var(--accent-dark); margin: 0 0 10px; }
.lead { font-size: 1.05rem; color: #22343b; }

.hero-grid { display: grid; grid-template-columns: 1fr; gap: 14px; }
@media (min-width: 920px) { .hero-grid { grid-template-columns: 1.35fr 0.65fr; align-items: stretch; } }

.hero-media { border-radius: 16px; overflow: hidden; border: 1px solid #e6e6e6; background: #f3f4f6; }
.hero-photo {
  background-image: url("hero.jpg");
  background-size: cover;
  background-position: center;
  min-height: 280px;
}

.metrics { display: grid; gap: 14px; grid-template-columns: 1fr; }
@media (min-width: 920px) { .metrics { grid-template-columns: repeat(3, 1fr); } }
.metric { padding: 16px; }
.metric-kicker { color: #666; font-weight: 800; font-size: 0.9rem; }
.metric-value { font-weight: 950; font-size: 1.8rem; margin-top: 6px; color: var(--accent-dark); }
.metric-note { color: #666; margin-top: 4px; font-size: 0.95rem; }

.grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 14px; }
.grid > .card { grid-column: span 12; }
@media (min-width: 980px) { .grid > .card { grid-column: span 4; } }

.btn {
  display: inline-block;
  padding: 10px 14px;
  border-radius: 12px;
  border: 1px solid var(--accent);
  background: var(--accent);
  color: #fff;
  text-decoration: none;
  font-weight: 850;
}
.btn:hover { background: var(--accent-dark); border-color: var(--accent-dark); }
.btn.btn-secondary { background: #fff; color: var(--accent-dark); border-color: var(--accent); }
.cta-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 10px; }

.fineprint { color: #666; font-size: 0.95rem; }
.steps h4 { margin: 0 0 6px; }

.form { display: grid; gap: 12px; }
.form-row { display: grid; gap: 12px; grid-template-columns: 1fr; }
@media (min-width: 820px) { .form-row { grid-template-columns: 1fr 1fr; } }
label { display: grid; gap: 6px; font-weight: 650; }
input, select, textarea { font: inherit; padding: 10px; border-radius: 12px; border: 1px solid #dcdcdc; background: #fff; }
.fieldset { border: 1px solid #dcdcdc; border-radius: 12px; padding: 12px; }
.fieldset label { font-weight: 500; }
.checkbox { display: flex; gap: 10px; align-items: center; font-weight: 500; }
.hidden { display: none; }

.divider { border: 0; border-top: 1px solid #eee; margin: 18px 0; }

.faq { border: 1px solid #eee; border-radius: 14px; padding: 12px 14px; margin: 10px 0; background: #fff; }
.faq summary { cursor: pointer; font-weight: 850; }

.site-footer { padding: 18px 0 6px; }
.footer-grid { display: grid; gap: 10px; grid-template-columns: 1fr; }
@media (min-width: 920px) { .footer-grid { grid-template-columns: repeat(3, 1fr); } }
.footer-title { font-weight: 950; margin-bottom: 6px; color: var(--ink); }


/* Checkbox alignment (fieldset options) */
.fieldset label {
  display: flex;
  align-items: center;
  gap: 10px;
}
.fieldset input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin: 0;
}
