:root {
  color-scheme: light;
  --ink: #17211f;
  --muted: #62706b;
  --line: #d9e1dd;
  --green: #1f6b4b;
  --green-dark: #164734;
  --gold: #b88a36;
  --bg: #f5f7f4;
  --panel: #ffffff;
  --soft: #e9efe9;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: Segoe UI, Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

a { color: inherit; }

.hero {
  min-height: 620px;
  padding: 24px clamp(18px, 4vw, 64px) 72px;
  background:
    linear-gradient(90deg, rgba(10, 25, 20, .86) 0%, rgba(10, 25, 20, .68) 48%, rgba(10, 25, 20, .34) 100%),
    url('https://images.unsplash.com/photo-1622279457486-62dcc4a431d6?auto=format&fit=crop&w=1800&q=80') center/cover;
  color: white;
}

.mobile-call {
  display: none;
  position: sticky;
  top: 0;
  z-index: 5;
  padding: 12px 16px;
  background: var(--green);
  color: white;
  text-align: center;
  font-weight: 800;
  text-decoration: none;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  max-width: 1120px;
  margin: 0 auto;
}

.brand {
  font-weight: 800;
  text-decoration: none;
}

.nav-cta {
  padding: 10px 16px;
  border: 1px solid rgba(255, 255, 255, .55);
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  white-space: nowrap;
}

.hero-content {
  max-width: 820px;
  margin: 118px auto 0;
}

.eyebrow,
.section-label {
  margin: 0 0 10px;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: 12px;
  font-weight: 800;
  color: var(--gold);
}

.hero .eyebrow,
.hero .section-label {
  color: #f1c56a;
}

h1 {
  margin: 0 0 18px;
  font-size: clamp(40px, 6vw, 72px);
  line-height: 1.02;
  max-width: 900px;
}

h2 {
  margin: 0;
  font-size: clamp(26px, 3.4vw, 36px);
  line-height: 1.15;
}

h3 {
  margin: 0 0 8px;
  font-size: 20px;
}

p { margin-top: 0; }

.lead {
  font-size: 20px;
  max-width: 720px;
}

.microcopy {
  color: rgba(255, 255, 255, .88);
  margin-top: 14px;
}

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

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

.primary {
  background: var(--green);
  color: white;
}

.primary:hover,
.nav-cta:hover {
  background: var(--green-dark);
}

.secondary {
  background: white;
  color: var(--green-dark);
}

.full {
  display: flex;
  width: 100%;
  text-align: center;
}

.text-link {
  color: var(--green-dark);
  font-weight: 800;
  text-underline-offset: 3px;
}

main {
  max-width: 1120px;
  margin: 0 auto;
  padding: 46px 18px 72px;
}

.section {
  display: grid;
  grid-template-columns: minmax(260px, 420px) 1fr;
  gap: 36px;
  padding: 42px 0;
  border-bottom: 1px solid var(--line);
}

.intro {
  padding-top: 16px;
}

.feature-strip {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
  margin: 22px 0 26px;
  padding: 28px;
  background: var(--green-dark);
  color: white;
  border-radius: 8px;
}

.feature-strip .section-label {
  color: #f1c56a;
}

.feature-strip p:last-child {
  margin-bottom: 0;
}

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

.cards article,
.contact,
.call-panel {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px;
}

.cards article {
  border-top: 4px solid var(--gold);
}

.checklist {
  margin: 0;
  padding-left: 20px;
}

.checklist li {
  margin-bottom: 10px;
}

.checklist-section {
  background: var(--soft);
  margin: 18px 0;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 8px;
}

details {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 14px 16px;
  margin-bottom: 10px;
}

summary {
  cursor: pointer;
  font-weight: 800;
}

details p {
  margin: 12px 0 0;
  color: var(--muted);
}

.contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 34px;
}

.disclosure {
  color: var(--muted);
  font-size: 14px;
  margin: 14px 0 0;
}

footer {
  max-width: 1120px;
  margin: 0 auto;
  padding: 22px 18px 44px;
  color: var(--muted);
}

footer a {
  color: var(--green-dark);
  font-weight: 700;
}

.legal-page {
  max-width: 860px;
}

.legal-page h1 {
  color: var(--ink);
  font-size: 42px;
}

.legal-page h2 {
  margin-top: 28px;
  font-size: 24px;
}

@media (max-width: 860px) {
  .section,
  .cards,
  .contact,
  .feature-strip {
    grid-template-columns: 1fr;
  }

  .feature-strip .button {
    width: 100%;
  }
}

@media (max-width: 760px) {
  .mobile-call { display: block; }

  .hero {
    min-height: 600px;
    padding-bottom: 54px;
    background:
      linear-gradient(rgba(10, 25, 20, .84), rgba(10, 25, 20, .72)),
      url('https://images.unsplash.com/photo-1622279457486-62dcc4a431d6?auto=format&fit=crop&w=1200&q=80') center/cover;
  }

  .nav {
    align-items: flex-start;
  }

  .nav-cta {
    font-size: 14px;
    padding: 9px 12px;
  }

  .hero-content {
    margin-top: 76px;
  }

  .lead {
    font-size: 18px;
  }

  .button {
    width: 100%;
  }

  main {
    padding-top: 34px;
  }

  .checklist-section {
    padding: 24px;
  }
}
