:root {
  color-scheme: light;
  --ink: #172017;
  --muted: #5f6b63;
  --line: #dce4dc;
  --panel: #f7faf6;
  --accent: #0f8a5f;
  --accent-strong: #0b6848;
  --sun: #f2b544;
  --earth: #7d5138;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  background: #ffffff;
}

a {
  color: inherit;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px clamp(20px, 5vw, 72px);
  border-bottom: 1px solid var(--line);
}

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

nav {
  display: flex;
  gap: 18px;
  color: var(--muted);
  font-size: 0.95rem;
}

nav a,
footer a {
  text-decoration: none;
}

nav a:hover,
footer a:hover {
  color: var(--accent);
}

.hero {
  min-height: 68vh;
  display: grid;
  align-content: center;
  padding: clamp(56px, 9vw, 120px) clamp(20px, 7vw, 104px);
  background:
    linear-gradient(120deg, rgba(15, 138, 95, 0.9), rgba(23, 32, 23, 0.72)),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='1400' height='900' viewBox='0 0 1400 900'%3E%3Crect width='1400' height='900' fill='%23f5f0e7'/%3E%3Ccircle cx='1080' cy='210' r='190' fill='%23f2b544' fill-opacity='.75'/%3E%3Cpath d='M0 710 C220 620 390 750 610 660 C800 585 930 625 1100 535 C1230 466 1330 465 1400 430 L1400 900 L0 900 Z' fill='%237d5138' fill-opacity='.75'/%3E%3Cpath d='M0 790 C210 720 440 790 660 725 C850 668 1030 720 1400 620 L1400 900 L0 900 Z' fill='%230f8a5f' fill-opacity='.65'/%3E%3C/svg%3E");
  background-size: cover;
  background-position: center;
  color: #fff;
}

.eyebrow {
  margin: 0 0 14px;
  color: #ffe2a3;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0;
  font-size: 0.86rem;
}

h1 {
  max-width: 900px;
  margin: 0;
  font-size: clamp(2.4rem, 6vw, 5.8rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.lede {
  max-width: 690px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1.05rem, 2vw, 1.32rem);
  line-height: 1.55;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.58);
  color: #fff;
  text-decoration: none;
  font-weight: 700;
}

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

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

.grid article {
  min-height: 210px;
  padding: clamp(26px, 4vw, 48px);
  background: #fff;
}

h2 {
  margin: 0 0 12px;
  font-size: 1.25rem;
}

p {
  line-height: 1.65;
}

.grid p,
.content p {
  color: var(--muted);
}

.content {
  width: min(840px, calc(100% - 40px));
  margin: 0 auto;
  padding: 56px 0 88px;
}

.content h1 {
  color: var(--ink);
  font-size: clamp(2.2rem, 5vw, 4rem);
}

.content h2 {
  margin-top: 34px;
}

footer {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  padding: 22px clamp(20px, 5vw, 72px);
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.94rem;
}

footer span {
  margin-right: auto;
}

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

  nav {
    width: 100%;
    justify-content: space-between;
  }

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