:root {
  color-scheme: light;
  --ink: #1c2520;
  --muted: #5d6b62;
  --line: #d7ded8;
  --surface: #f7f5ef;
  --panel: #ffffff;
  --brand: #246b4d;
  --brand-dark: #164831;
  --accent: #c28032;
  --danger: #7a2f21;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: var(--surface);
  line-height: 1.5;
}

a {
  color: inherit;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 56px);
  background: var(--panel);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 10;
}

.brand {
  font-weight: 800;
  text-decoration: none;
  color: var(--brand-dark);
}

nav {
  display: flex;
  gap: 18px;
  font-size: 0.95rem;
}

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

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(280px, 0.6fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: center;
  padding: clamp(42px, 8vw, 92px) clamp(18px, 4vw, 56px);
  background: linear-gradient(135deg, #f7f5ef 0%, #edf4ee 100%);
}

.hero h1,
.section-heading h2,
.split h2 {
  margin: 0;
  letter-spacing: 0;
  line-height: 1.05;
}

.hero h1 {
  max-width: 760px;
  font-size: clamp(2.4rem, 6vw, 5.4rem);
}

.lede {
  max-width: 680px;
  color: var(--muted);
  font-size: 1.18rem;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--accent);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.trust-row span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--brand-dark);
  font-size: 0.9rem;
  font-weight: 800;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 6px;
  font-weight: 800;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  font-size: 1rem;
}

.button.primary {
  background: var(--brand);
  color: #fff;
}

.button.secondary {
  background: transparent;
  border-color: var(--brand);
  color: var(--brand-dark);
}

.note {
  color: var(--danger);
  font-size: 0.9rem;
}

.urgent-note {
  margin: 0 0 14px;
  padding: 12px 14px;
  border-left: 4px solid var(--accent);
  background: #fff8ec;
  color: var(--brand-dark);
  font-weight: 800;
}

.hero-panel,
form,
article {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.hero-panel {
  padding: 24px;
  box-shadow: 0 18px 50px rgba(28, 37, 32, 0.08);
}

.hero-panel h2,
article h3 {
  margin-top: 0;
}

.hero-panel ul {
  margin: 0;
  padding-left: 20px;
}

.hero-panel li + li {
  margin-top: 12px;
}

.band,
.split {
  padding: clamp(42px, 7vw, 76px) clamp(18px, 4vw, 56px);
}

.muted {
  background: #eef2ea;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 24px;
}

.section-heading h2,
.split h2 {
  font-size: clamp(2rem, 4vw, 3.3rem);
}

.grid {
  display: grid;
  gap: 16px;
}

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

article {
  padding: 22px;
}

article p {
  color: var(--muted);
}

.content-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(18px, 4vw, 42px);
  max-width: 1080px;
}

.content-columns p {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.steps span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  margin-bottom: 16px;
  border-radius: 50%;
  background: var(--brand);
  color: #fff;
  font-weight: 900;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 1fr);
  gap: clamp(24px, 5vw, 56px);
  align-items: start;
  background: var(--panel);
}

form {
  display: grid;
  gap: 14px;
  padding: 22px;
}

label {
  display: grid;
  gap: 6px;
  font-weight: 700;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 12px;
  font: inherit;
  color: var(--ink);
  background: #fff;
}

.link-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.link-list a {
  display: block;
  padding: 16px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  text-decoration: none;
  font-weight: 800;
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 28px clamp(18px, 4vw, 56px);
  color: var(--muted);
  background: #17251d;
}

footer a {
  color: #fff;
}

footer p {
  margin: 0;
}

.footer-links {
  display: flex;
  gap: 14px;
}

@media (max-width: 800px) {
  .site-header,
  footer {
    align-items: flex-start;
    flex-direction: column;
  }

  nav {
    flex-wrap: wrap;
  }

  .hero,
  .split,
  .grid.three,
  .steps,
  .link-list,
  .content-columns {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    font-size: 2.55rem;
  }
}
