:root {
  --paper: #f4f1ea;
  --panel: #fffdf8;
  --ink: #1e2b2d;
  --muted: #687579;
  --green: #315f49;
  --green-dark: #203f33;
  --amber: #c96f22;
  --clay: #9f513a;
  --line: #d8cfbf;
  --soft: #e9e3d8;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}

a {
  color: var(--green);
  font-weight: 800;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

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

.logo {
  display: block;
  width: min(230px, 56vw);
  height: auto;
}

.nav {
  display: flex;
  gap: 14px;
  align-items: center;
  font-size: 14px;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 620px;
  display: grid;
  align-items: end;
  background:
    linear-gradient(180deg, rgba(18, 34, 31, 0.18), rgba(18, 34, 31, 0.74)),
    url("./assets/hero-rv.jpg") center / cover no-repeat;
}

.hero-inner {
  width: min(1120px, 100%);
  margin: 0 auto;
  padding: 90px 22px 54px;
}

.hero-copy {
  max-width: 650px;
}

.eyebrow {
  color: #f6d69b;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  line-height: 1.12;
  margin: 0;
}

h1 {
  color: white;
  font-size: clamp(42px, 8vw, 78px);
  max-width: 760px;
  margin-top: 12px;
}

.hero p {
  color: rgba(255, 255, 255, 0.88);
  max-width: 610px;
  font-size: 19px;
  margin: 18px 0 0;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border-radius: 8px;
  color: white;
  background: var(--green);
  font-size: 15px;
  font-weight: 900;
}

.button.secondary {
  color: var(--green-dark);
  background: rgba(255, 253, 248, 0.9);
}

.section {
  max-width: 1120px;
  margin: 0 auto;
  padding: 54px 22px;
}

.section h2 {
  font-size: clamp(30px, 5vw, 46px);
  color: var(--green-dark);
}

.section > p {
  color: var(--muted);
  max-width: 700px;
  font-size: 18px;
}

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

.card {
  min-height: 178px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}

.card h3 {
  color: var(--green-dark);
  font-size: 21px;
}

.card p {
  color: var(--muted);
  margin-bottom: 0;
}

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

.band .section h2,
.band .section p {
  color: white;
}

.band .card {
  color: var(--ink);
}

.legal-page {
  max-width: 800px;
  margin: 0 auto;
  padding: 36px 22px 70px;
}

.legal-card {
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}

.legal-card h1 {
  color: var(--green-dark);
  font-size: clamp(34px, 7vw, 52px);
}

.legal-card h2 {
  color: var(--green-dark);
  font-size: 22px;
  margin-top: 30px;
}

.muted {
  color: var(--muted);
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 28px 22px;
  background: #eee7da;
}

.footer-inner {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  color: var(--muted);
  font-size: 14px;
}

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

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

  .hero {
    min-height: 560px;
  }

  .grid {
    grid-template-columns: 1fr;
  }

  .legal-card {
    padding: 24px;
  }
}
