:root {
  --navy: #142c42;
  --navy-2: #0d2031;
  --paper: #fffdf8;
  --cream: #f7f1e5;
  --gold: #f5b63c;
  --coral: #e95f55;
  --sky: #4faad4;
  --ink: #172433;
  --muted: #5d6973;
  --line: rgba(20, 44, 66, .14);
  --shadow: 0 24px 70px rgba(20, 44, 66, .12);
}

* { box-sizing: border-box; }
body {
  margin: 0;
  color: var(--ink);
  background: linear-gradient(145deg, var(--paper), var(--cream));
  font-family: "DM Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
}
a { color: inherit; }
.skip-link { position: fixed; top: 10px; left: 10px; z-index: 10; padding: 9px 14px; color: white; background: var(--navy); border-radius: 8px; transform: translateY(-150%); }
.skip-link:focus { transform: translateY(0); }
.shell { width: min(850px, calc(100% - 36px)); margin-inline: auto; }
header { padding: 22px 0; border-bottom: 1px solid var(--line); background: rgba(255, 253, 248, .92); }
.brand { display: inline-flex; align-items: center; gap: 11px; color: var(--navy); text-decoration: none; }
.brand-mark { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 13px; background: var(--gold); font-weight: 800; }
.brand strong { display: block; font-family: "Fraunces", Georgia, serif; font-size: 1.08rem; line-height: 1.15; }
.brand span:last-child { display: block; margin-top: 3px; color: var(--muted); font-size: .76rem; letter-spacing: .08em; text-transform: uppercase; }
main { padding: 66px 0 84px; }
.eyebrow { color: var(--coral); font-size: .78rem; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
h1, h2 { color: var(--navy); font-family: "Fraunces", Georgia, serif; line-height: 1.08; }
h1 { margin: 12px 0 20px; font-size: clamp(2.7rem, 8vw, 5.2rem); letter-spacing: -.045em; }
h2 { margin: 34px 0 9px; font-size: 1.55rem; }
p, li { color: var(--muted); }
.intro { max-width: 720px; font-size: 1.08rem; }
.card { margin-top: 30px; padding: clamp(24px, 5vw, 46px); border: 1px solid var(--line); border-radius: 24px; background: white; box-shadow: var(--shadow); }
.card h2:first-child { margin-top: 0; }
ul { padding-left: 21px; }
.note { margin-top: 26px; padding: 17px 19px; border-left: 5px solid var(--gold); border-radius: 10px; background: var(--cream); }
.button { display: inline-flex; align-items: center; justify-content: center; min-height: 48px; margin-top: 14px; padding: 0 20px; border: 0; border-radius: 999px; color: white; background: var(--navy); font: inherit; font-weight: 700; text-decoration: none; cursor: pointer; }
.button:focus-visible, a:focus-visible { outline: 3px solid var(--sky); outline-offset: 3px; }
.status { min-height: 26px; margin-top: 12px; color: #26785c; font-weight: 700; }
footer { padding: 28px 0; color: rgba(255,255,255,.75); background: var(--navy-2); font-size: .82rem; }
footer a { color: white; }
@media (max-width: 600px) { main { padding-top: 44px; } .card { border-radius: 18px; } }
