:root {
  color-scheme: light;
  --ink: #1f2520;
  --muted: #626a61;
  --paper: #f7f4ef;
  --line: rgba(31, 37, 32, .16);
  --green: #315c47;
  --lime: #d9ee9f;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  background:
    radial-gradient(circle at 83% 15%, rgba(217, 238, 159, .55), transparent 24rem),
    var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  content: "";
  opacity: .32;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.08'/%3E%3C/svg%3E");
  pointer-events: none;
}

main, footer {
  width: min(1120px, calc(100% - 48px));
  margin-inline: auto;
}

nav {
  height: 108px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
}

.brand {
  color: var(--ink);
  font: 700 1.55rem/1 Georgia, serif;
  letter-spacing: -.04em;
  text-decoration: none;
}

.brand span { color: var(--green); }

.status {
  display: flex;
  gap: .55rem;
  align-items: center;
  color: var(--muted);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .15em;
}

.status i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #4e9a6b;
  box-shadow: 0 0 0 5px rgba(78, 154, 107, .12);
}

.hero {
  min-height: 610px;
  padding: 108px 0 88px;
}

.eyebrow, .label {
  margin: 0 0 28px;
  color: var(--green);
  font-size: .75rem;
  font-weight: 750;
  letter-spacing: .2em;
}

h1 {
  max-width: 900px;
  margin: 0;
  font: 500 clamp(3.6rem, 8.4vw, 7.8rem)/.95 Georgia, "Times New Roman", serif;
  letter-spacing: -.065em;
}

h1 em {
  color: var(--green);
  font-weight: inherit;
}

.intro {
  max-width: 520px;
  margin: 42px 0 36px;
  color: var(--muted);
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  line-height: 1.8;
}

.button {
  display: inline-flex;
  gap: 2.5rem;
  align-items: center;
  padding: 15px 20px;
  color: white;
  background: var(--green);
  border-radius: 100px;
  font-size: .86rem;
  text-decoration: none;
  transition: transform .2s ease, background .2s ease;
}

.button:hover { transform: translateY(-2px); background: #254a38; }

.about {
  display: grid;
  grid-template-columns: minmax(180px, .75fr) 1.25fr;
  gap: 72px;
  padding: 96px 0 112px;
  border-top: 1px solid var(--line);
}

.number {
  width: 170px;
  height: 170px;
  display: grid;
  place-items: center;
  color: var(--green);
  background: var(--lime);
  border-radius: 50%;
  font: italic 500 4.5rem/1 Georgia, serif;
}

.copy { max-width: 580px; }

.copy h2 {
  margin: 0 0 25px;
  font: 500 clamp(2rem, 4vw, 3.6rem)/1.08 Georgia, serif;
  letter-spacing: -.04em;
}

.copy > p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.85;
}

footer {
  min-height: 100px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--muted);
  border-top: 1px solid var(--line);
  font-size: .78rem;
}

@media (max-width: 650px) {
  main, footer { width: min(100% - 32px, 1120px); }
  nav { height: 82px; }
  .hero { min-height: 540px; padding: 88px 0 70px; }
  h1 { font-size: clamp(3.15rem, 16vw, 5rem); }
  .about { grid-template-columns: 1fr; gap: 42px; padding: 72px 0 80px; }
  .number { width: 130px; height: 130px; font-size: 3.5rem; }
  footer { align-items: flex-start; flex-direction: column; justify-content: center; gap: 8px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .button { transition: none; }
}
