:root {
  --ink: #17201b;
  --muted: #52615a;
  --line: #d8ddd8;
  --paper: #f7f5ef;
  --surface: #ffffff;
  --green: #496e56;
  --blue: #245f7a;
  --rust: #9f5a3d;
  --yellow: #ead083;
  --shadow: 0 18px 44px rgba(23, 32, 27, .12);
}
* { box-sizing: border-box; }
html { color-scheme: light; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
  letter-spacing: 0;
}
a { color: #164f69; text-decoration-thickness: .08em; text-underline-offset: .18em; overflow-wrap: anywhere; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  padding: .8rem clamp(1rem, 4vw, 3rem);
  background: rgba(247, 245, 239, .94);
  border-bottom: 1px solid rgba(23, 32, 27, .12);
  backdrop-filter: blur(14px);
}
.brand {
  display: inline-flex;
  flex-direction: column;
  color: var(--ink);
  text-decoration: none;
  font-weight: 800;
}
.brand small { color: var(--muted); font-weight: 600; }
.nav { display: flex; flex-wrap: wrap; gap: .8rem; font-size: .92rem; }
.nav a { color: var(--ink); text-decoration: none; border-bottom: 1px solid transparent; }
.nav a:hover { border-color: currentColor; }
.hero {
  min-height: min(82vh, 820px);
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, .95fr);
  gap: clamp(1.5rem, 5vw, 5rem);
  align-items: stretch;
  padding: clamp(1.2rem, 4vw, 4rem);
}
.hero-copy {
  align-self: center;
  max-width: 820px;
  padding-block: 4rem;
}
.kicker {
  margin: 0 0 .8rem;
  color: var(--rust);
  font-weight: 800;
  text-transform: uppercase;
  font-size: .78rem;
}
h1 {
  margin: 0;
  font-size: clamp(3rem, 8vw, 7.6rem);
  line-height: .92;
  letter-spacing: 0;
}
.lead {
  max-width: 720px;
  margin: 1.4rem 0 0;
  color: #304038;
  font-size: clamp(1.08rem, 1.9vw, 1.48rem);
}
.hero-actions { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 1.6rem; }
.button {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: .72rem 1rem;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: #fff;
  text-decoration: none;
  font-weight: 750;
}
.button.secondary { background: transparent; color: var(--ink); }
.hero-media {
  position: relative;
  min-height: 440px;
  overflow: hidden;
  background: #cfd9d2;
  box-shadow: var(--shadow);
}
.hero-media img {
  width: 100%;
  height: 100%;
  min-height: 440px;
  object-fit: cover;
  display: block;
}
.caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: .65rem .85rem;
  background: rgba(23, 32, 27, .78);
  color: #fff;
  font-size: .78rem;
}
.band { padding: clamp(2.5rem, 6vw, 5rem) clamp(1rem, 4vw, 3rem); }
.band.surface { background: var(--surface); border-block: 1px solid var(--line); }
.inner { max-width: 1180px; margin-inline: auto; }
.section-title {
  margin: 0 0 1.2rem;
  font-size: clamp(1.7rem, 3vw, 3rem);
  line-height: 1.05;
}
.grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1rem; }
.grid > *, .fact-grid > *, .columns > * { min-width: 0; }
.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 1rem;
}
.card strong { display: block; margin-bottom: .35rem; }
.fact-grid { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: .75rem; }
.fact {
  background: #ecf0e9;
  border-left: 4px solid var(--green);
  padding: .8rem;
  min-height: 96px;
}
.fact span { display: block; color: var(--muted); font-size: .78rem; text-transform: uppercase; font-weight: 750; }
.columns { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1rem, 3vw, 2rem); }
.editorial p { margin-top: 0; }
.checklist { padding-left: 1.1rem; }
.checklist li { margin: .45rem 0; }
.source-list { display: grid; gap: .75rem; padding: 0; list-style: none; }
.source-list li { padding: .9rem; background: #f3f0e7; border: 1px solid var(--line); border-radius: 8px; }
.news-slot {
  border: 1px dashed #97a59d;
  background: #f3f6f3;
  padding: 1rem;
  border-radius: 8px;
  overflow-wrap: anywhere;
}
.commercial {
  background: #202821;
  color: #f7f5ef;
}
.commercial a { color: #ffe19a; }
.footer {
  padding: 2rem clamp(1rem, 4vw, 3rem);
  color: #e5e1d8;
  background: #17201b;
}
.footer .inner { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1rem; }
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; padding-top: 1rem; }
  .hero-copy { padding-block: 2.4rem 1rem; }
  .hero-media { min-height: 330px; }
  .hero-media img { min-height: 330px; }
  .grid, .fact-grid, .columns { grid-template-columns: 1fr; }
  .site-header { position: static; align-items: flex-start; }
}
