:root {
  --bg: #f3f0eb;
  --panel: rgba(255, 255, 255, 0.86);
  --panel-strong: #fcfbf9;
  --text: #1f2328;
  --muted: #5a646e;
  --accent: #2f5d73;
  --accent-soft: rgba(47, 93, 115, 0.09);
  --border: rgba(31, 35, 40, 0.1);
  --shadow: 0 18px 36px rgba(31, 35, 40, 0.06);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.7), transparent 28%),
    linear-gradient(180deg, #f7f5f1 0%, var(--bg) 100%);
}

.page-shell {
  width: min(980px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 3rem 0 2.5rem;
}

.hero {
  padding: 2.15rem 2.25rem;
  border: 1px solid var(--border);
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(251, 250, 248, 0.9));
  box-shadow: var(--shadow);
}

.eyebrow {
  margin: 0 0 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.74rem;
  font-weight: 700;
  color: var(--accent);
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Newsreader", serif;
  font-weight: 500;
  line-height: 1.08;
}

h1 {
  max-width: 13ch;
  font-size: clamp(1.6rem, 3.1vw, 2.7rem);
}

.lede,
.hero-note,
.hero-link-row,
.card p,
.detail-list,
.footer p {
  line-height: 1.72;
  font-size: 1rem;
}

.lede {
  max-width: 42rem;
  margin: 1.15rem 0 0;
  font-size: 1.08rem;
}

.hero-note {
  max-width: 40rem;
  margin: 0.9rem 0 0;
  color: var(--muted);
}

.hero-link-row {
  margin: 0.85rem 0 0;
}

.hero-link {
  color: var(--accent);
  text-decoration: none;
  border-bottom: 1px solid rgba(47, 93, 115, 0.35);
  padding-bottom: 0.08rem;
}

.hero-link:hover {
  border-bottom-color: var(--accent);
}

.content-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.card {
  padding: 1.45rem;
  border-radius: 20px;
  border: 1px solid var(--border);
  background: var(--panel);
  backdrop-filter: blur(8px);
  box-shadow: 0 10px 24px rgba(31, 35, 40, 0.04);
}

.wide {
  grid-column: 1 / -1;
}

h2 {
  margin-bottom: 0.85rem;
  font-size: 1.8rem;
}

.detail-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.detail-list li + li {
  margin-top: 0.75rem;
}

.detail-list li::before {
  content: "• ";
  color: var(--accent);
  font-weight: 700;
}

.card p:last-child,
.footer p {
  margin-bottom: 0;
}

.footer {
  padding: 1.35rem 0 0;
  color: var(--muted);
  text-align: center;
}

@media (max-width: 820px) {
  .page-shell {
    width: min(100% - 1rem, 980px);
    padding-top: 1rem;
  }

  .hero {
    padding: 1.7rem 1.3rem;
  }

  .content-grid {
    grid-template-columns: 1fr;
  }

  h2 {
    font-size: 1.55rem;
  }
}
