:root {
  --ink: #152238;
  --muted: #5d6b7e;
  --brand: #e91e63;
  --brand-dark: #b7154b;
  --surface: #ffffff;
  --background: #f5f7fb;
  --border: #e4e9f0;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  color: var(--ink);
  background: var(--background);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  line-height: 1.7;
}

a { color: var(--brand-dark); }
a:hover { color: var(--brand); }

.site-header {
  background: var(--ink);
  color: white;
  border-bottom: 4px solid var(--brand);
}

.nav {
  width: min(1060px, calc(100% - 40px));
  margin: 0 auto;
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  color: white;
  text-decoration: none;
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: .02em;
}

.brand span { color: #ff4f8c; }

.nav-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px 18px;
}

.nav-links a {
  color: #f4f7fb;
  text-decoration: none;
  font-size: .9rem;
}

.nav-links a:hover { color: #ff8bb2; }

.page {
  width: min(920px, calc(100% - 40px));
  margin: 44px auto;
}

.hero, .document {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 18px;
  box-shadow: 0 12px 34px rgba(21, 34, 56, .07);
}

.hero { padding: clamp(28px, 6vw, 64px); }
.document { padding: clamp(26px, 5vw, 54px); }

.eyebrow {
  color: var(--brand-dark);
  font-size: .8rem;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}

h1, h2, h3 { line-height: 1.2; }
h1 { margin: 10px 0 14px; font-size: clamp(2rem, 5vw, 3.25rem); }
h2 { margin-top: 34px; font-size: 1.35rem; }
h3 { font-size: 1.05rem; }

.lead { color: var(--muted); font-size: 1.1rem; max-width: 700px; }
.date { color: var(--muted); font-size: .9rem; }

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 32px;
}

.card {
  display: block;
  padding: 20px;
  color: var(--ink);
  text-decoration: none;
  background: #fbfcfe;
  border: 1px solid var(--border);
  border-radius: 14px;
}

.card:hover { border-color: #ff8bb2; transform: translateY(-1px); }
.card p { margin-bottom: 0; color: var(--muted); font-size: .93rem; }

.callout {
  margin: 28px 0;
  padding: 18px 20px;
  background: #fff4f8;
  border-left: 4px solid var(--brand);
  border-radius: 8px;
}

li { margin: 8px 0; }

.site-footer {
  width: min(920px, calc(100% - 40px));
  margin: 0 auto 36px;
  color: var(--muted);
  font-size: .88rem;
  text-align: center;
}

@media (max-width: 700px) {
  .nav { align-items: flex-start; flex-direction: column; padding: 18px 0; }
  .nav-links { justify-content: flex-start; }
  .page { margin: 24px auto; }
  .cards { grid-template-columns: 1fr; }
}
