:root {
  color-scheme: light;
  --bg: #f4f7f4;
  --surface: #ffffff;
  --ink: #1b241f;
  --muted: #55635b;
  --line: #d7e0d9;
  --accent: #2d6a4f;
  --accent-2: #8f2d56;
  --accent-3: #cde8dc;
  --shadow: 0 16px 36px rgba(27, 36, 31, 0.08);
  --radius: 6px;
  --max: 1100px;
}

* {
  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(--bg);
  line-height: 1.6;
}

a {
  color: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(244, 247, 244, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(215, 224, 217, 0.88);
}

.bar {
  width: min(100% - 2rem, var(--max));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 0;
}

.brand {
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.85rem;
  font-size: 0.92rem;
}

.nav a {
  text-decoration: none;
  color: var(--muted);
}

.hero {
  position: relative;
  min-height: 54vh;
  display: flex;
  align-items: end;
  background:
    linear-gradient(180deg, rgba(16, 26, 21, 0.18), rgba(16, 26, 21, 0.68)),
    url("https://images.unsplash.com/photo-1516321318423-f06f85e504b3?auto=format&fit=crop&w=1600&q=80") center/cover no-repeat;
  color: #f8fbf8;
}

.hero-inner {
  width: min(100% - 2rem, var(--max));
  margin: 0 auto;
  padding: 4.5rem 0 2.2rem;
}

.eyebrow {
  margin: 0 0 0.5rem;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
  color: #d7efe2;
}

.hero h1,
.page-hero h1 {
  margin: 0;
  max-width: 12ch;
  font-size: clamp(2.2rem, 5vw, 4.4rem);
  line-height: 0.95;
}

.hero p,
.page-hero p {
  max-width: 48rem;
  margin: 1rem 0 0;
  font-size: clamp(1rem, 1.3vw, 1.18rem);
}

.hero-actions,
.inline-links,
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.hero-actions,
.inline-links {
  margin-top: 1.4rem;
}

.button,
.text-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.8rem;
  padding: 0.75rem 1rem;
  border-radius: var(--radius);
  text-decoration: none;
  font-weight: 700;
}

.button {
  background: var(--accent);
  color: #f8fbf8;
}

.button.secondary {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: #f8fbf8;
}

.text-link {
  padding-inline: 0;
  min-height: auto;
  color: var(--accent);
}

.section {
  padding: 3.2rem 0;
}

.section.alt {
  background: #ebf1ec;
}

.section.dark {
  background: #15211b;
  color: #edf5ef;
}

.inner {
  width: min(100% - 2rem, var(--max));
  margin: 0 auto;
}

.section-head {
  max-width: 50rem;
  margin-bottom: 1.8rem;
}

.section-head h2 {
  margin: 0 0 0.55rem;
  font-size: clamp(1.65rem, 3vw, 2.5rem);
  line-height: 1.05;
}

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

.dark .section-head p,
.dark p,
.dark li {
  color: #d1dfd5;
}

.grid-3,
.grid-2 {
  display: grid;
  gap: 1rem;
}

.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.panel {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.15rem;
  box-shadow: var(--shadow);
}

.dark .panel {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: none;
}

.panel h3 {
  margin: 0 0 0.45rem;
  font-size: 1.08rem;
}

.panel p,
.panel ul {
  margin: 0;
}

.panel ul {
  padding-left: 1.1rem;
}

.callout {
  padding: 1rem 1.1rem;
  border-left: 4px solid var(--accent-2);
  background: rgba(143, 45, 86, 0.08);
  border-radius: var(--radius);
}

.section-callout {
  margin-top: 1rem;
}

.checklist {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.7rem;
}

.checklist li {
  padding-left: 1.7rem;
  position: relative;
}

.checklist li::before {
  content: "•";
  position: absolute;
  left: 0.45rem;
  top: 0;
  color: var(--accent);
  font-weight: 800;
}

.footer {
  border-top: 1px solid var(--line);
  padding: 1.4rem 0 2rem;
  color: var(--muted);
}

.footer-copy {
  display: grid;
  gap: 0.45rem;
}

.footer-links a {
  text-decoration: none;
}

.fine-print {
  font-size: 0.92rem;
}

.page-hero {
  padding: 4rem 0 2rem;
  background: linear-gradient(180deg, #dbece2 0%, #f4f7f4 100%);
}

.copy {
  width: min(100% - 2rem, 860px);
  margin: 0 auto 3rem;
}

.page-meta {
  font-size: 0.95rem;
  color: var(--muted);
}

.copy h2 {
  margin: 2rem 0 0.75rem;
  font-size: 1.4rem;
  line-height: 1.1;
}

.copy p,
.copy li {
  color: var(--ink);
}

.copy ul {
  padding-left: 1.15rem;
}

.form-shell {
  display: grid;
  gap: 0.9rem;
  padding: 1.2rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.field-group {
  display: grid;
  gap: 0.4rem;
}

.field-group label,
.checkbox-row {
  font-weight: 600;
}

.field-group input,
.field-group textarea {
  width: 100%;
  padding: 0.8rem 0.9rem;
  font: inherit;
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fbfdfb;
}

.checkbox-row {
  display: flex;
  gap: 0.75rem;
  align-items: start;
  padding: 0.95rem 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #f6faf7;
}

.checkbox-row input {
  margin-top: 0.22rem;
}

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

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

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

  .nav {
    justify-content: start;
  }

  .hero {
    min-height: 48vh;
  }

  .hero-inner {
    padding-top: 3.75rem;
  }
}
