:root {
  color-scheme: light;
  --ink: #18231d;
  --muted: #5d675f;
  --paper: #f6f4ec;
  --surface: #ffffff;
  --line: #d7d3c4;
  --green: #215b3c;
  --green-dark: #143624;
  --amber: #c77a28;
  --teal: #2b7a78;
  --shadow: 0 18px 45px rgba(24, 35, 29, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

a {
  color: inherit;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 64px;
  padding: 0 28px;
  background: rgba(246, 244, 236, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

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

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

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

nav a:hover {
  color: var(--ink);
}

.hero {
  position: relative;
  display: grid;
  min-height: 74vh;
  overflow: hidden;
  isolation: isolate;
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
}

.hero-shade {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(11, 25, 18, 0.88) 0%, rgba(11, 25, 18, 0.62) 42%, rgba(11, 25, 18, 0.18) 100%),
    linear-gradient(0deg, rgba(11, 25, 18, 0.24), rgba(11, 25, 18, 0.08));
}

.hero-content {
  position: relative;
  z-index: 2;
  align-self: center;
  width: min(760px, calc(100% - 48px));
  margin-left: max(24px, calc((100vw - 1160px) / 2));
  padding: 72px 0 88px;
  color: #fffaf0;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--amber);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #f0b86c;
}

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

h1 {
  max-width: 720px;
  margin-bottom: 18px;
  font-size: clamp(44px, 7vw, 84px);
  line-height: 0.96;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 16px;
  font-size: 34px;
  line-height: 1.08;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 19px;
  line-height: 1.2;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 620px;
  margin-bottom: 28px;
  font-size: 20px;
  color: rgba(255, 250, 240, 0.9);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 16px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border-radius: 6px;
  font-weight: 800;
  text-decoration: none;
  border: 1px solid transparent;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

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

.button.primary {
  color: #fff;
  background: var(--green);
  box-shadow: 0 12px 30px rgba(20, 54, 36, 0.24);
}

.button.primary:hover {
  background: var(--green-dark);
}

.button.secondary {
  color: #fffaf0;
  border-color: rgba(255, 250, 240, 0.46);
  background: rgba(255, 255, 255, 0.08);
}

.microcopy {
  max-width: 560px;
  margin-bottom: 0;
  font-size: 13px;
  color: rgba(255, 250, 240, 0.76);
}

.section {
  width: min(1160px, calc(100% - 48px));
  margin: 0 auto;
  padding: 72px 0;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
  gap: 48px;
  align-items: center;
}

.copy p {
  max-width: 680px;
  color: var(--muted);
  font-size: 18px;
}

.section-image {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

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

.facts div,
.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.facts div {
  min-height: 92px;
  padding: 16px;
}

.facts span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.facts strong {
  display: block;
  margin-top: 8px;
  font-size: 17px;
}

.section-heading {
  max-width: 680px;
  margin-bottom: 28px;
}

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

.card {
  min-height: 208px;
  padding: 24px;
}

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

.feature-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
  margin-bottom: 48px;
  padding: 34px;
  background: #e8efe5;
  border: 1px solid #c9d9c6;
  border-radius: 8px;
}

.feature-band p {
  max-width: 700px;
  margin-bottom: 0;
  color: var(--muted);
}

.feature-band .button {
  flex: 0 0 auto;
}

.footer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 32px;
  padding: 42px max(24px, calc((100vw - 1160px) / 2));
  color: rgba(255, 250, 240, 0.78);
  background: var(--green-dark);
}

.footer h2 {
  color: #fffaf0;
  font-size: 22px;
}

.footer p {
  max-width: 900px;
  font-size: 13px;
}

.footer-links {
  display: flex;
  gap: 18px;
  align-items: start;
}

.footer a {
  color: #f0b86c;
  text-decoration: none;
  font-weight: 700;
}

@media (max-width: 820px) {
  .topbar {
    align-items: flex-start;
    flex-direction: column;
    padding: 14px 20px;
  }

  nav {
    flex-wrap: wrap;
    gap: 12px;
  }

  .hero {
    min-height: 78vh;
  }

  .hero-shade {
    background:
      linear-gradient(0deg, rgba(11, 25, 18, 0.88) 0%, rgba(11, 25, 18, 0.62) 68%, rgba(11, 25, 18, 0.32) 100%);
  }

  .hero-content {
    width: min(100% - 36px, 680px);
    margin: 0 auto;
    align-self: end;
    padding: 86px 0 54px;
  }

  .hero-copy {
    font-size: 18px;
  }

  .section {
    width: min(100% - 36px, 680px);
    padding: 56px 0;
  }

  .split,
  .card-grid,
  .facts,
  .footer {
    grid-template-columns: 1fr;
  }

  .feature-band {
    align-items: stretch;
    flex-direction: column;
    padding: 26px;
  }

  .footer-links {
    flex-wrap: wrap;
  }
}

@media (max-width: 500px) {
  h1 {
    font-size: 42px;
  }

  h2 {
    font-size: 28px;
  }

  .button {
    width: 100%;
  }
}
