:root {
  color-scheme: light;
  --bg: #f5f0e8;
  --paper: rgba(255, 255, 255, 0.78);
  --ink: #172126;
  --muted: #667078;
  --line: rgba(23, 33, 38, 0.12);
  --accent: #a43d2e;
  --accent-soft: #f1d8d1;
  --shadow: 0 18px 46px rgba(33, 38, 45, 0.08);
}
* {
  box-sizing: border-box;
}
body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.92), transparent 36%),
    linear-gradient(180deg, #fbf8f3 0%, var(--bg) 100%);
  font-family: "Avenir Next", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
}
a {
  color: inherit;
  text-decoration: none;
}
.wrap {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}
.topbar {
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.66);
  backdrop-filter: blur(12px);
}
.topbar-inner {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 0;
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.masthead {
  padding: 34px 0 20px;
}
.brand-row {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(300px, 0.8fr);
  gap: 28px;
  align-items: start;
}
.eyebrow {
  margin: 0 0 16px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
h1,
h2,
h3 {
  font-family: Charter, "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Georgia, serif;
  letter-spacing: -0.03em;
}
h1 {
  margin: 0;
  max-width: 11ch;
  font-size: clamp(44px, 7vw, 82px);
  line-height: 0.96;
}
.lede {
  margin: 18px 0 0;
  max-width: 58ch;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.75;
}
.briefing {
  padding: 22px 22px 18px;
  border: 1px solid rgba(164, 61, 46, 0.12);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.84), rgba(241, 216, 209, 0.55));
  box-shadow: var(--shadow);
}
.briefing-label,
.feature-label,
.mini-label,
.story-kicker {
  margin: 0 0 12px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.briefing ul {
  margin: 0;
  padding-left: 18px;
  color: var(--ink);
}
.briefing li {
  margin: 0 0 12px;
  line-height: 1.6;
}
.sections {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 26px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
}
.lead-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr 0.9fr;
  gap: 18px;
  padding: 20px 0 18px;
}
.feature,
.mini-card,
.story-card {
  border: 1px solid rgba(255, 255, 255, 0.9);
  background: var(--paper);
  box-shadow: var(--shadow);
}
.feature {
  padding: 26px;
}
.feature h2 {
  margin: 0 0 14px;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.05;
}
.feature p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}
.mini-card,
.story-card {
  padding: 22px;
}
.mini-card h3,
.story-card h3 {
  margin: 0 0 12px;
  font-size: 28px;
  line-height: 1.12;
}
.mini-card p:last-child,
.story-card p:last-child {
  margin: 0;
  color: var(--muted);
  line-height: 1.72;
}
.story-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  padding: 4px 0 54px;
}
.footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 0 40px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
}
@media (max-width: 980px) {
  .brand-row,
  .lead-grid,
  .story-grid {
    grid-template-columns: 1fr;
  }
  h1 {
    max-width: 12ch;
  }
}
@media (max-width: 640px) {
  .topbar-inner,
  .footer {
    flex-direction: column;
  }
  .masthead {
    padding-top: 24px;
  }
  h1 {
    font-size: 44px;
  }
}
