:root {
  --wine: #54051d;
  --wine-deep: #2f0615;
  --gold: #d7ad54;
  --gold-soft: #f2d891;
  --ivory: #fffaf0;
  --ink: #33242a;
  --muted: #74656a;
  --line: #eadcc7;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--ivory);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 17px;
  line-height: 1.7;
}
a { color: var(--wine); text-underline-offset: 3px; }
.topbar {
  background: var(--wine-deep);
  color: white;
  border-bottom: 1px solid rgba(215, 173, 84, .45);
}
.nav {
  max-width: 1080px;
  margin: auto;
  min-height: 76px;
  padding: 10px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand { display: flex; align-items: center; gap: 12px; color: white; text-decoration: none; }
.brand img { width: 48px; height: 48px; border-radius: 14px; }
.brand span { font-size: 1.13rem; letter-spacing: .02em; }
.links { display: flex; flex-wrap: wrap; gap: 8px 22px; }
.links a { color: #f9eac4; text-decoration: none; font-family: Arial, sans-serif; font-size: .9rem; }
.links a:hover, .links a:focus-visible { color: white; text-decoration: underline; }
.hero {
  background: radial-gradient(circle at 78% 18%, #7b1735 0, var(--wine) 34%, var(--wine-deep) 100%);
  color: white;
}
.hero-inner {
  max-width: 1080px;
  margin: auto;
  padding: 88px 24px 94px;
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  gap: 56px;
  align-items: center;
}
.eyebrow { color: var(--gold-soft); font-family: Arial, sans-serif; text-transform: uppercase; letter-spacing: .14em; font-size: .78rem; font-weight: 700; }
h1 { margin: 10px 0 20px; font-size: clamp(2.35rem, 7vw, 4.9rem); line-height: .98; font-weight: 500; letter-spacing: -.035em; }
.hero p { max-width: 660px; margin: 0; color: #f6e8eb; font-family: Arial, sans-serif; font-size: 1.08rem; line-height: 1.65; }
.seal { width: min(100%, 310px); aspect-ratio: 1; justify-self: center; border-radius: 31%; box-shadow: 0 25px 70px rgba(0,0,0,.35); }
.content { max-width: 880px; margin: auto; padding: 64px 24px 88px; }
.content h1 { color: var(--wine); font-size: clamp(2.2rem, 6vw, 4rem); line-height: 1.06; }
h2 { color: var(--wine); margin: 2.1em 0 .5em; line-height: 1.2; font-size: 1.45rem; }
h3 { color: var(--wine); margin: 1.6em 0 .35em; line-height: 1.3; }
.lede { font-size: 1.18rem; color: #55454a; }
.updated { color: var(--muted); font-family: Arial, sans-serif; font-size: .88rem; border-left: 3px solid var(--gold); padding-left: 12px; }
.cards { max-width: 1080px; margin: auto; padding: 64px 24px 86px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.card { border: 1px solid var(--line); background: white; padding: 28px; border-radius: 18px; box-shadow: 0 10px 36px rgba(65,18,34,.07); }
.card .number { color: var(--gold); font-family: Arial, sans-serif; font-weight: bold; font-size: .82rem; }
.card h2 { margin: 8px 0 10px; font-size: 1.3rem; }
.card p { color: var(--muted); font-family: Arial, sans-serif; font-size: .95rem; line-height: 1.6; }
.card a { font-family: Arial, sans-serif; font-weight: 700; font-size: .92rem; }
ul { padding-left: 1.35em; }
li + li { margin-top: .55em; }
.notice { margin: 28px 0; padding: 20px 22px; border: 1px solid var(--line); border-radius: 14px; background: #fffdf8; }
.steps { counter-reset: steps; list-style: none; padding: 0; }
.steps li { counter-increment: steps; position: relative; padding: 0 0 22px 54px; }
.steps li::before { content: counter(steps); position: absolute; left: 0; top: 1px; width: 34px; height: 34px; display: grid; place-items: center; border-radius: 50%; background: var(--wine); color: white; font: bold .9rem Arial, sans-serif; }
footer { background: var(--wine-deep); color: #ead7dc; }
.footer-inner { max-width: 1080px; margin: auto; padding: 34px 24px; display: flex; justify-content: space-between; gap: 24px; flex-wrap: wrap; font-family: Arial, sans-serif; font-size: .88rem; }
footer a { color: var(--gold-soft); }
@media (max-width: 760px) {
  .nav { align-items: flex-start; flex-direction: column; padding-block: 14px; }
  .links { gap: 6px 16px; }
  .hero-inner { grid-template-columns: 1fr; padding-block: 58px 70px; text-align: center; }
  .hero p { margin-inline: auto; }
  .seal { width: 190px; grid-row: 1; }
  .cards { grid-template-columns: 1fr; }
}
