:root {
  color-scheme: light;
  --ink: #21101d;
  --muted: #695865;
  --line: #f0cad6;
  --surface: rgba(255, 255, 255, .82);
  --soft: #fff6f4;
  --pink: #ff4d8f;
  --plum: #2e1026;
  --gold: #ffc84a;
  --mint: #2fd6ad;
}

* {
  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);
  line-height: 1.58;
  background:
    radial-gradient(circle at top right, rgba(255, 77, 143, .25), transparent 32rem),
    linear-gradient(135deg, #ffe9ed 0%, #fff7ed 48%, #eee5ff 100%);
}

a {
  color: #c91663;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 11px 18px;
  border-radius: 8px;
  background: var(--plum);
  color: white;
  font-weight: 760;
  box-shadow: 0 12px 30px rgba(46, 16, 38, .18);
}

.button:hover {
  text-decoration: none;
  background: #461539;
}

.shell {
  width: min(940px, calc(100% - 32px));
  margin: 0 auto;
}

.topbar {
  padding: 22px 0 10px;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  font-weight: 800;
  letter-spacing: 0;
  color: var(--ink);
}

.nav-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 14px;
}

.hero {
  padding: 76px 0 42px;
}

.eyebrow {
  color: var(--pink);
  font-weight: 820;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .08em;
}

h1 {
  margin: 10px 0 16px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(42px, 7vw, 74px);
  line-height: .98;
  letter-spacing: 0;
}

h2 {
  margin: 34px 0 12px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 30px;
  line-height: 1.12;
  letter-spacing: 0;
}

h3 {
  margin: 24px 0 8px;
  font-size: 18px;
}

p {
  margin: 0 0 14px;
}

ul {
  margin: 8px 0 18px;
  padding-left: 22px;
}

li {
  margin: 7px 0;
}

.lead {
  max-width: 760px;
  color: var(--muted);
  font-size: clamp(19px, 2.5vw, 24px);
}

.meta {
  color: var(--muted);
  font-size: 14px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
  margin: 12px 0 34px;
}

.card,
.panel {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 45px rgba(180, 43, 91, .10);
}

.card {
  display: grid;
  gap: 8px;
  padding: 18px;
}

.card strong {
  font-size: 18px;
  color: var(--ink);
}

.card span {
  color: var(--muted);
  font-size: 14px;
}

.panel {
  padding: 24px;
  margin: 18px 0;
}

.notice {
  background: linear-gradient(135deg, rgba(46, 16, 38, .96), rgba(121, 18, 66, .92));
  border-color: rgba(255, 255, 255, .16);
  color: white;
}

.notice p,
.notice .meta {
  color: rgba(255, 255, 255, .78);
}

.footer {
  padding: 34px 0 48px;
  color: var(--muted);
  font-size: 14px;
}

@media (max-width: 640px) {
  .nav {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero {
    padding-top: 48px;
  }
}
