:root {
  color-scheme: light;
  --ink: #17201b;
  --muted: #66726b;
  --paper: #f8f7f2;
  --line: rgba(23, 32, 27, 0.14);
  --green: #235b45;
  --green-soft: #d8eadc;
  --gold: #dba84b;
  --coral: #d96c55;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(216, 234, 220, 0.6), transparent 34rem),
    var(--paper);
}

a {
  color: inherit;
}

.page-shell {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.hero {
  min-height: 88vh;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.78fr);
  align-items: center;
  gap: clamp(32px, 6vw, 80px);
  padding: 48px 0 56px;
  border-bottom: 1px solid var(--line);
}

.hero__content {
  max-width: 680px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 22px;
  max-width: 11ch;
  font-size: clamp(3.4rem, 8vw, 7.4rem);
  line-height: 0.93;
  letter-spacing: 0;
}

.lead {
  max-width: 620px;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  line-height: 1.8;
}

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

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-weight: 800;
  text-decoration: none;
}

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

.button--ghost {
  background: rgba(255, 255, 255, 0.58);
}

.hero__media {
  position: relative;
  min-height: min(580px, 68vh);
}

.panel {
  position: absolute;
  border: 1px solid rgba(23, 32, 27, 0.12);
  border-radius: 8px;
  box-shadow: 0 24px 70px rgba(23, 32, 27, 0.13);
}

.panel--one {
  inset: 8% 6% 15% 12%;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.1), transparent),
    var(--green);
}

.panel--two {
  width: 48%;
  aspect-ratio: 1;
  right: 0;
  top: 0;
  background: var(--gold);
}

.panel--three {
  width: 58%;
  aspect-ratio: 1.15;
  left: 0;
  bottom: 0;
  background: var(--coral);
}

.section {
  padding: 74px 0 82px;
}

.section__heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 30px;
}

h2 {
  margin-bottom: 0;
  max-width: 720px;
  font-size: clamp(2rem, 4vw, 4.2rem);
  line-height: 1.03;
  letter-spacing: 0;
}

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

.feature {
  min-height: 260px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.66);
}

.feature__index {
  color: var(--coral);
  font-weight: 900;
}

h3 {
  margin: 60px 0 12px;
  font-size: 1.55rem;
}

.feature p,
.statement p {
  color: var(--muted);
  line-height: 1.75;
}

.statement {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 34px 0 46px;
  border-top: 1px solid var(--line);
}

.statement p {
  max-width: 680px;
  margin-bottom: 0;
  font-size: 1.08rem;
}

.text-link {
  color: var(--green);
  font-weight: 900;
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
  white-space: nowrap;
}

@media (max-width: 820px) {
  .page-shell {
    width: min(100% - 28px, 680px);
  }

  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    padding-top: 32px;
  }

  .hero__media {
    order: -1;
    min-height: 310px;
  }

  h1 {
    max-width: 12ch;
    font-size: clamp(3rem, 17vw, 4.9rem);
  }

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

  .section__heading,
  .statement {
    display: block;
  }

  .statement .text-link {
    display: inline-flex;
    margin-top: 18px;
  }
}
