:root {
  --bg: #f4f6f1;
  --surface: #ffffff;
  --ink: #18201c;
  --muted: #59645d;
  --line: #cfd8cf;
  --accent: #b85b22;
  --accent-dark: #743718;
  --forest: #193e34;
  --soft: #e7eee4;
  --sand: #efe2c6;
  --shadow: 0 20px 50px rgba(28, 44, 36, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

a {
  color: var(--accent-dark);
}

.site-header,
.site-footer,
main {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.top-disclosure {
  padding: 10px 18px;
  background: var(--forest);
  color: #edf6ef;
  font-size: 13px;
  line-height: 1.4;
  text-align: center;
}

.site-header {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-weight: 800;
  text-decoration: none;
}

.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 3px;
  background: var(--forest);
  color: #fff;
  font-size: 15px;
  letter-spacing: 0;
}

.main-nav,
.site-footer nav {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.main-nav a,
.site-footer a {
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

.main-nav a:hover,
.site-footer a:hover {
  color: var(--accent-dark);
  text-decoration: underline;
}

.hero {
  min-height: calc(100vh - 126px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 420px);
  align-items: center;
  gap: 54px;
  padding: 34px 0 64px;
}

.hero-copy {
  min-width: 0;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 18px;
  font-size: clamp(42px, 6.6vw, 78px);
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(27px, 3.8vw, 44px);
  line-height: 1.12;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 8px;
  font-size: 19px;
  line-height: 1.25;
}

.hero-text,
.section-heading p,
.split p {
  max-width: 720px;
  color: var(--muted);
  font-size: 18px;
}

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

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

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

.button.secondary {
  border: 1px solid var(--line);
  background: transparent;
  color: var(--forest);
}

.button:hover {
  transform: translateY(-1px);
}

.offer-panel {
  margin: 0;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: linear-gradient(180deg, #ffffff 0%, #f7f1e6 100%);
  box-shadow: var(--shadow);
}

.hero-media {
  margin: 0;
}

.hero-media img {
  display: block;
  width: 100%;
  max-height: 390px;
  object-fit: contain;
  border-radius: 3px;
  background: #f7f4ec;
}

.hero-media figcaption {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.offer-facts {
  display: grid;
  gap: 10px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.offer-facts p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.section {
  padding: 68px 0;
  border-top: 1px solid var(--line);
}

.feature-grid,
.two-column {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin-top: 34px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

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

.feature-grid article,
.two-column div {
  min-height: 205px;
  padding: 28px 26px;
  border-right: 1px solid var(--line);
  background: transparent;
}

.feature-grid article:last-child,
.two-column div:last-child {
  border-right: 0;
}

.feature-grid p,
.two-column p,
.checklist {
  color: var(--muted);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(300px, 1fr);
  gap: 42px;
  align-items: start;
}

.checklist {
  margin: 0;
  padding: 30px 30px 30px 50px;
  border-left: 6px solid var(--accent);
  border-top: 1px solid var(--line);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  border-radius: 3px;
  background: var(--surface);
}

.checklist li + li {
  margin-top: 14px;
}

.callout {
  padding: 36px;
  border: 0;
  border-radius: 3px;
  background: var(--forest);
  color: #fff;
}

.callout p {
  max-width: 900px;
  margin-bottom: 0;
  color: #dfeae4;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) minmax(260px, auto);
  gap: 28px;
  padding: 40px 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.site-footer p {
  margin-bottom: 0;
}

.footer-disclosure {
  grid-column: 1 / -1;
  padding: 18px 0 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.footer-disclosure strong {
  color: var(--ink);
}

.fine-print {
  grid-column: 1 / -1;
  font-size: 13px;
}

.legal-page {
  max-width: 860px;
  padding: 48px 0 80px;
}

.legal-page h1 {
  font-size: clamp(36px, 5vw, 56px);
}

.legal-page section {
  padding: 28px 0;
  border-top: 1px solid var(--line);
}

.legal-page ul {
  color: var(--muted);
}

@media (max-width: 820px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
    padding: 18px 0;
  }

  .hero,
  .split,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 0;
    gap: 28px;
    padding-top: 18px;
  }

  .feature-grid,
  .two-column {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .feature-grid article,
  .two-column div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .feature-grid article:last-child,
  .two-column div:last-child {
    border-bottom: 0;
  }

  .section {
    padding: 52px 0;
  }
}

@media (max-width: 520px) {
  .site-header,
  .site-footer,
  main {
    width: min(100% - 22px, 1120px);
  }

  .main-nav,
  .site-footer nav,
  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    width: 100%;
  }

  .main-nav {
    align-items: center;
    flex-direction: row;
    gap: 12px 16px;
  }

  h1 {
    font-size: 36px;
    line-height: 1.03;
  }

  .hero-text {
    font-size: 17px;
  }

  .button {
    width: 100%;
  }

  .hero-media,
  .callout,
  .feature-grid article,
  .two-column div,
  .checklist {
    padding: 20px;
  }

  .checklist {
    padding-left: 36px;
  }
}
