:root {
  color-scheme: light;
  --ink: #15201d;
  --muted: #65736d;
  --paper: #f7f3ea;
  --panel: #ffffff;
  --line: #ddd5c7;
  --accent: #1f6f68;
  --sun: #c56b38;
}
* { box-sizing: border-box; }
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;
}
a { color: inherit; text-decoration: none; }
.site-header {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 0 clamp(20px, 5vw, 72px);
  border-bottom: 1px solid var(--line);
  background: rgba(247, 243, 234, 0.92);
}
.brand { font-weight: 750; letter-spacing: 0; }
nav { display: flex; gap: clamp(14px, 3vw, 32px); color: var(--muted); font-size: 15px; }
nav a:hover, footer a:hover { color: var(--accent); }
.hero {
  min-height: 560px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 380px);
  align-items: end;
  gap: clamp(28px, 5vw, 72px);
  padding: clamp(64px, 10vw, 128px) clamp(20px, 5vw, 72px) clamp(40px, 7vw, 88px);
  background:
    linear-gradient(140deg, rgba(21,32,29,0.06), rgba(197,107,56,0.14)),
    linear-gradient(0deg, rgba(247,243,234,0.9), rgba(247,243,234,0.56)),
    url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 700"><rect fill="%23d9cbb4" width="1200" height="700"/><path d="M0 520 C180 410 300 420 470 500 C640 580 790 575 960 475 C1080 405 1140 400 1200 430 L1200 700 L0 700 Z" fill="%238a8f76"/><path d="M0 610 C220 540 380 550 560 620 C740 690 880 640 1200 560 L1200 700 L0 700 Z" fill="%233b5f5a"/><circle cx="940" cy="140" r="68" fill="%23c56b38" opacity="0.88"/></svg>') center/cover;
}
.eyebrow, .date {
  margin: 0 0 12px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 760;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
h1 {
  max-width: 850px;
  margin: 0;
  font-size: clamp(44px, 8vw, 92px);
  line-height: 0.98;
  letter-spacing: 0;
}
.lede {
  max-width: 700px;
  margin: 24px 0 0;
  color: #32423e;
  font-size: clamp(18px, 2.2vw, 24px);
}
.status-panel {
  display: grid;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  box-shadow: 0 24px 80px rgba(21,32,29,0.16);
}
.status-panel div {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 20px;
  background: rgba(255,255,255,0.88);
}
.status-panel span { color: var(--muted); }
.status-panel strong { font-weight: 720; }
.section-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.section-grid article {
  min-height: 300px;
  padding: clamp(28px, 4vw, 54px);
  background: var(--panel);
}
h2 { margin: 0 0 18px; font-size: clamp(26px, 3vw, 38px); line-height: 1.08; letter-spacing: 0; }
p { color: var(--muted); }
.route-band {
  display: grid;
  grid-template-columns: minmax(220px, 420px) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 72px);
  padding: clamp(44px, 7vw, 88px) clamp(20px, 5vw, 72px);
}
ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 16px; }
li {
  display: grid;
  grid-template-columns: minmax(160px, 220px) 1fr;
  gap: 18px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}
li strong { color: var(--ink); }
li span { color: var(--muted); }
footer {
  min-height: 84px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 0 clamp(20px, 5vw, 72px);
  border-top: 1px solid var(--line);
  color: var(--muted);
}
@media (max-width: 820px) {
  .site-header, footer { align-items: flex-start; flex-direction: column; padding-top: 20px; padding-bottom: 20px; }
  nav { flex-wrap: wrap; }
  .hero, .route-band { grid-template-columns: 1fr; }
  .section-grid { grid-template-columns: 1fr; }
  li { grid-template-columns: 1fr; gap: 6px; }
}
