:root {
  color: #17352f;
  background: #f3f5f2;
  font-family: Geist, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-synthesis: none;
}

* { box-sizing: border-box; }
body { margin: 0; min-width: 320px; }
a { color: inherit; }
.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 68px;
  padding: 0 clamp(20px, 5vw, 72px);
  color: #fff;
  background: #173f36;
}
.brand { font-weight: 760; text-decoration: none; letter-spacing: -.02em; }
.header-cta { font-size: .9rem; font-weight: 700; text-underline-offset: 4px; }
.hero, .content, .related { width: min(1120px, calc(100% - 40px)); margin-inline: auto; }
.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(260px, .85fr);
  gap: clamp(40px, 8vw, 110px);
  align-items: center;
  min-height: min(720px, calc(100dvh - 68px));
  padding-block: 64px;
}
.eyebrow { color: #b84f20; font-size: .73rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
h1 { max-width: 780px; margin: 12px 0 22px; font-size: clamp(2.8rem, 7vw, 5.6rem); line-height: .96; letter-spacing: -.065em; }
.lede { max-width: 620px; color: #4e625d; font-size: clamp(1.05rem, 2vw, 1.25rem); line-height: 1.6; }
.actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }
.button { display: inline-flex; align-items: center; min-height: 50px; padding: 0 22px; border-radius: 8px; font-weight: 760; text-decoration: none; }
.button.primary { color: #fff; background: #c45b2b; }
.button.secondary { border: 1px solid #bfcac5; background: #fff; }
.visual { position: relative; min-height: 390px; border-radius: 18px; overflow: hidden; background: #dce5df; }
.visual::before { content: ""; position: absolute; inset: 0; background: repeating-linear-gradient(100deg, #eef3ef 0 10%, #cad8d0 14%, #f8faf8 20%); transform: scale(1.12); }
.measure-line { position: absolute; z-index: 1; right: 10%; left: 10%; top: 19%; border-top: 2px solid #173f36; text-align: center; }
.measure-line span { position: relative; top: -13px; padding: 4px 10px; border-radius: 20px; background: #f3f5f2; font-size: .78rem; font-weight: 750; }
.result-card { position: absolute; z-index: 2; right: 22px; bottom: 22px; left: 22px; padding: 22px; border: 1px solid #fff; border-radius: 13px; background: rgba(255,255,255,.91); box-shadow: 0 22px 45px rgba(23,63,54,.13); }
.result-card strong { display: block; font-size: 1.05rem; }
.result-card span { display: block; margin-top: 7px; color: #556964; line-height: 1.45; }
.content { display: grid; grid-template-columns: .75fr 1.25fr; gap: clamp(40px, 8vw, 110px); padding-block: 80px; border-top: 1px solid #d4ddd8; }
.content h2, .related h2 { margin: 0; font-size: clamp(1.8rem, 4vw, 3rem); letter-spacing: -.045em; }
.prose p { margin: 0 0 18px; color: #4e625d; line-height: 1.75; }
.prose h3 { margin: 34px 0 10px; font-size: 1.15rem; }
.related { padding: 64px 0 90px; }
.link-list { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1px; margin-top: 28px; background: #ccd6d1; border: 1px solid #ccd6d1; }
.link-list a { padding: 22px; background: #f8faf8; font-weight: 720; text-decoration: none; }
.link-list a:hover { background: #fff; }
footer { padding: 28px 20px; color: #dfe9e4; background: #173f36; text-align: center; font-size: .83rem; }
@media (max-width: 760px) {
  .site-header { min-height: 62px; }
  .hero { grid-template-columns: 1fr; min-height: auto; padding-block: 48px; }
  .visual { min-height: 310px; }
  .content { grid-template-columns: 1fr; padding-block: 58px; }
  .link-list { grid-template-columns: 1fr; }
  .actions .button { width: 100%; justify-content: center; }
}
@media (prefers-reduced-motion: reduce) { * { scroll-behavior: auto !important; } }
