:root {
  color-scheme: light;
  --ink: #16191d;
  --muted: #646b73;
  --paper: #f4f5f2;
  --white: #ffffff;
  --line: #d9ddd8;
  --green: #176b52;
  --yellow: #f1c84b;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--paper); color: var(--ink); font-family: Inter, Arial, sans-serif; line-height: 1.55; }
a { color: inherit; }
.topbar { min-height: 72px; padding: 0 5vw; display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid var(--line); background: rgba(255,255,255,.86); }
.brand { font-size: 20px; font-weight: 800; text-decoration: none; }
nav { display: flex; gap: 24px; }
nav a, footer a { color: var(--muted); text-decoration: none; }
nav a:hover, footer a:hover { color: var(--ink); }
main { width: min(1180px, 90vw); margin: 0 auto; }
.hero { min-height: 570px; display: grid; grid-template-columns: 1.05fr .95fr; align-items: stretch; border-bottom: 1px solid var(--line); }
.hero-copy { padding: 96px 7vw 76px 0; display: flex; flex-direction: column; justify-content: center; }
.kicker { margin: 0 0 16px; color: var(--green); font-size: 13px; font-weight: 800; letter-spacing: 0; text-transform: uppercase; }
h1 { max-width: 720px; margin: 0 0 24px; font-size: clamp(44px, 6vw, 76px); line-height: 1.02; letter-spacing: 0; }
.hero-copy > p:not(.kicker) { max-width: 590px; margin: 0 0 32px; color: var(--muted); font-size: 19px; }
.button { width: fit-content; padding: 13px 19px; border-radius: 6px; background: var(--ink); color: white; font-weight: 700; text-decoration: none; }
.hero-visual { margin: 46px 0; min-height: 430px; position: relative; overflow: hidden; background: #d7d9d3; }
.hero-visual img { width: 100%; height: 100%; position: absolute; inset: 0; object-fit: cover; object-position: 58% center; }
.hero-visual span { position: absolute; left: 24px; bottom: 20px; z-index: 2; color: white; font-size: 12px; font-weight: 800; }
.journal { padding: 86px 0; }
.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 30px; margin-bottom: 34px; }
h2 { max-width: 620px; margin: 0; font-size: 38px; line-height: 1.12; letter-spacing: 0; }
.articles { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); }
article { min-height: 260px; padding: 30px 28px 30px 0; border-bottom: 1px solid var(--line); }
article + article { padding-left: 28px; border-left: 1px solid var(--line); }
.meta { color: var(--green); font-size: 12px; font-weight: 700; }
h3 { margin: 28px 0 14px; font-size: 22px; line-height: 1.25; letter-spacing: 0; }
article > p:last-child, .text-page > p { color: var(--muted); }
.numbers { display: grid; grid-template-columns: repeat(3, 1fr); margin-bottom: 80px; background: var(--green); color: white; }
.numbers div { min-height: 150px; padding: 28px; display: flex; flex-direction: column; justify-content: space-between; }
.numbers div + div { border-left: 1px solid rgba(255,255,255,.28); }
.numbers strong { color: var(--yellow); font-size: 28px; }
.text-page { min-height: calc(100vh - 152px); padding: 100px 0; }
.text-page h1 { font-size: clamp(42px, 6vw, 68px); }
.text-page > p { max-width: 720px; font-size: 18px; }
.text-link { display: inline-block; margin-top: 24px; color: var(--green); font-weight: 700; }
footer { min-height: 80px; padding: 0 5vw; display: flex; align-items: center; justify-content: space-between; border-top: 1px solid var(--line); color: var(--muted); }

@media (max-width: 760px) {
  .topbar { min-height: 64px; }
  nav { gap: 14px; font-size: 14px; }
  main { width: min(92vw, 620px); }
  .hero { min-height: auto; grid-template-columns: 1fr; }
  .hero-copy { padding: 64px 0 34px; }
  h1 { font-size: 46px; }
  .hero-visual { min-height: 330px; margin: 0 0 50px; }
  .journal { padding: 64px 0; }
  .section-heading { display: block; }
  h2 { font-size: 32px; }
  .articles, .numbers { grid-template-columns: 1fr; }
  article, article + article { min-height: auto; padding: 26px 0; border-left: 0; }
  .numbers div + div { border-left: 0; border-top: 1px solid rgba(255,255,255,.28); }
  .numbers div { min-height: 112px; }
}
