:root {
  color-scheme: light;
  --paper: #fff8f4;
  --rose-wash: #fce8e9;
  --rose: #d95778;
  --rose-dark: #96354d;
  --ink: #341f27;
  --muted: #775d67;
  --line: rgba(87, 45, 61, 0.14);
  --white: rgba(255, 255, 255, 0.84);
}

* { box-sizing: border-box; }

body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  background:
    radial-gradient(circle at 82% 8%, rgba(235, 151, 137, 0.34), transparent 29rem),
    linear-gradient(155deg, var(--paper) 0%, var(--rose-wash) 100%);
  font-family: ui-rounded, "Avenir Next", Avenir, sans-serif;
  line-height: 1.65;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.24;
  background-image: radial-gradient(rgba(104, 49, 70, 0.18) 0.55px, transparent 0.55px);
  background-size: 7px 7px;
}

.shell {
  position: relative;
  width: min(760px, calc(100% - 32px));
  margin: 0 auto;
  padding: 28px 0 72px;
}

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

.brand {
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.45rem;
  font-weight: 700;
  text-decoration: none;
}

.nav-links { display: flex; gap: 18px; }
.nav-links a, footer a { color: var(--rose-dark); }

.eyebrow {
  color: var(--rose-dark);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

h1, h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  line-height: 1.08;
}

h1 {
  max-width: 680px;
  margin: 14px 0 22px;
  font-size: clamp(2.8rem, 9vw, 5.4rem);
  letter-spacing: -0.045em;
}

h1 em { color: var(--rose); font-weight: 500; }
h2 { margin: 0 0 12px; font-size: 1.55rem; }
p { margin: 0; color: var(--muted); }

.lede {
  max-width: 620px;
  font-size: 1.08rem;
}

.notice {
  margin: 36px 0;
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-left: 4px solid var(--rose);
  border-radius: 0 18px 18px 0;
  background: var(--white);
}

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

.card {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--white);
  box-shadow: 0 22px 60px rgba(92, 47, 64, 0.07);
}

.card.wide { grid-column: 1 / -1; }
.card p + p { margin-top: 12px; }

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  min-height: 50px;
  padding: 0 22px;
  border: 1px solid var(--rose-dark);
  border-radius: 999px;
  color: var(--rose-dark);
  font-weight: 700;
  text-decoration: none;
}

.button.primary { color: white; background: var(--rose-dark); }

footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-top: 56px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  font-size: 0.82rem;
}

@media (max-width: 620px) {
  nav { align-items: flex-start; margin-bottom: 48px; }
  .nav-links { flex-direction: column; gap: 6px; text-align: right; }
  .grid { grid-template-columns: 1fr; }
  .card.wide { grid-column: auto; }
  footer { flex-direction: column; }
}

@media (prefers-reduced-motion: no-preference) {
  .shell { animation: arrive 520ms ease-out both; }
  @keyframes arrive {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: none; }
  }
}
