:root {
  --ink: #241d25;
  --muted: #6e626c;
  --paper: #fffaf8;
  --surface: #ffffff;
  --rose: #e85d75;
  --rose-dark: #a93251;
  --peach: #ffd9cb;
  --mint: #cfe9df;
  --line: rgba(50, 35, 45, 0.12);
  --shadow: 0 24px 70px rgba(89, 55, 69, 0.12);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 8% 4%, rgba(255, 217, 203, 0.72), transparent 28rem),
    radial-gradient(circle at 92% 10%, rgba(207, 233, 223, 0.56), transparent 24rem),
    var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.68;
}

a { color: var(--rose-dark); text-underline-offset: 3px; }
a:hover { color: var(--rose); }

.site-header {
  max-width: 1120px;
  margin: 0 auto;
  padding: 28px 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

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

.brand-dot { color: var(--rose); }

nav { display: flex; flex-wrap: wrap; gap: 8px 18px; }
nav a { color: var(--muted); font-size: 0.93rem; font-weight: 650; text-decoration: none; }
nav a[aria-current="page"] { color: var(--ink); }

main { max-width: 940px; margin: 0 auto; padding: 72px 24px 96px; }

.eyebrow {
  margin: 0 0 12px;
  color: var(--rose-dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1, h2, h3 { font-family: Georgia, "Times New Roman", serif; line-height: 1.13; }
h1 { max-width: 780px; margin: 0; font-size: clamp(2.7rem, 7vw, 5.6rem); letter-spacing: -0.055em; }
h2 { margin: 2.4em 0 0.55em; font-size: clamp(1.6rem, 4vw, 2.25rem); letter-spacing: -0.025em; }
h3 { margin: 1.6em 0 0.35em; font-size: 1.22rem; }

.lede { max-width: 710px; margin: 24px 0 0; color: var(--muted); font-size: 1.18rem; }
.updated { margin: 20px 0 0; color: var(--muted); font-size: 0.88rem; }

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 46px;
}

.card, .content-card {
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow);
}

.card { min-height: 212px; padding: 24px; text-decoration: none; }
.card:hover { transform: translateY(-2px); transition: transform 160ms ease; }
.card strong { display: block; margin-bottom: 8px; color: var(--ink); font-family: Georgia, serif; font-size: 1.35rem; }
.card span { color: var(--muted); }
.card .arrow { display: block; margin-top: 22px; color: var(--rose-dark); font-weight: 800; }

.content-card { margin-top: 44px; padding: clamp(24px, 5vw, 54px); }
.content-card > :first-child { margin-top: 0; }
p, li { color: #4e424b; }
ul, ol { padding-left: 1.35rem; }
li + li { margin-top: 0.55rem; }

.steps { counter-reset: item; list-style: none; padding: 0; }
.steps li { position: relative; min-height: 46px; padding: 4px 0 18px 56px; }
.steps li::before {
  counter-increment: item;
  content: counter(item);
  position: absolute;
  left: 0;
  top: 0;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: white;
  background: var(--rose-dark);
  font-weight: 800;
}

.notice {
  margin: 28px 0;
  padding: 20px 22px;
  border-left: 4px solid var(--rose);
  border-radius: 0 16px 16px 0;
  background: #fff0eb;
}

.button {
  display: inline-block;
  margin-top: 12px;
  padding: 13px 19px;
  border-radius: 999px;
  color: white;
  background: var(--rose-dark);
  font-weight: 750;
  text-decoration: none;
}
.button:hover { color: white; background: var(--rose); }

footer { border-top: 1px solid var(--line); }
.footer-inner { max-width: 1120px; margin: 0 auto; padding: 30px 24px 48px; color: var(--muted); font-size: 0.86rem; }

@media (max-width: 760px) {
  .site-header { align-items: flex-start; flex-direction: column; }
  main { padding-top: 52px; }
  .card-grid { grid-template-columns: 1fr; }
  .card { min-height: auto; }
}
