:root {
  color-scheme: light;
  --bg: #f7f4ec;
  --ink: #1d2522;
  --muted: #66716a;
  --line: #d9d2c2;
  --green: #295b49;
  --gold: #c68632;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
}

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(135deg, rgba(198, 134, 50, 0.18), transparent 34%),
    linear-gradient(315deg, rgba(41, 91, 73, 0.16), transparent 40%),
    var(--bg);
}

.page-shell {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 56px 0;
}

.hero {
  display: grid;
  align-content: center;
  min-height: 62vh;
  max-width: 840px;
}

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

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

h1 {
  max-width: 780px;
  margin-bottom: 22px;
  font-size: clamp(3rem, 9vw, 7rem);
  line-height: 0.92;
  letter-spacing: 0;
}

.lede {
  max-width: 620px;
  margin-bottom: 32px;
  color: var(--muted);
  font-size: clamp(1.1rem, 2.2vw, 1.45rem);
  line-height: 1.55;
}

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

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

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

.button.secondary {
  color: var(--green);
  background: rgba(255, 255, 255, 0.56);
}

.details {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
}

.details article {
  min-height: 210px;
  padding: 28px;
  background: rgba(255, 255, 255, 0.72);
}

.number {
  display: block;
  margin-bottom: 46px;
  color: var(--gold);
  font-weight: 900;
}

h2 {
  margin-bottom: 12px;
  font-size: 1.2rem;
  letter-spacing: 0;
}

.details p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.55;
}

@media (max-width: 760px) {
  .page-shell {
    width: min(100% - 24px, 560px);
    padding: 32px 0;
  }

  .hero {
    min-height: 58vh;
  }

  .actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

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

  .details article {
    min-height: 0;
  }

  .number {
    margin-bottom: 24px;
  }
}
