:root {
  --marble: #F7F5F1;
  --ivory: #EFEBE3;
  --hairline: #E2DDD2;
  --graphite: #1C1D20;
  --stone: #85868C;
  --cobalt: #1E4FE0;
  --gold: #C4A24A;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
  background: var(--marble);
  color: var(--graphite);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
.wrap { max-width: 720px; margin: 0 auto; padding: 0 24px; }
header.site {
  padding: 28px 0;
  border-bottom: 1px solid var(--hairline);
}
header.site .wrap { display: flex; align-items: baseline; justify-content: space-between; }
.brand {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
  font-size: 22px;
  color: var(--graphite);
  text-decoration: none;
  letter-spacing: 0.3px;
}
.brand span { color: var(--cobalt); }
nav a {
  color: var(--stone);
  text-decoration: none;
  font-size: 15px;
  margin-left: 20px;
}
nav a:hover { color: var(--cobalt); }
.hero { padding: 88px 0 56px; text-align: center; }
.hero h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 44px;
  line-height: 1.15;
  font-weight: 700;
  letter-spacing: -0.5px;
}
.hero h1 em { color: var(--cobalt); font-style: normal; }
.hero p.sub {
  margin: 20px auto 0;
  max-width: 520px;
  color: var(--stone);
  font-size: 19px;
}
.badge {
  display: inline-block;
  margin-top: 36px;
  background: var(--graphite);
  color: #fff;
  border-radius: 12px;
  padding: 14px 28px;
  text-decoration: none;
  font-weight: 600;
}
.badge small { display: block; font-weight: 400; font-size: 12px; opacity: 0.7; }
.mono {
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
  font-size: 13px;
  letter-spacing: 2px;
  color: var(--cobalt);
  text-transform: uppercase;
}
section { padding: 44px 0; }
section.alt { background: var(--ivory); }
h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
  margin-bottom: 18px;
}
h3 { font-size: 18px; margin: 26px 0 8px; }
p + p { margin-top: 12px; }
.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 16px; margin-top: 24px; }
.card {
  background: var(--ivory);
  border: 1px solid var(--hairline);
  border-radius: 14px;
  padding: 20px;
  text-align: left;
}
section.alt .card { background: var(--marble); }
.card .num {
  font-family: Georgia, serif;
  font-size: 30px;
  color: var(--cobalt);
  font-weight: 700;
}
.card h3 { margin: 8px 0 6px; }
.card p { color: var(--stone); font-size: 15px; }
.faq details {
  border-bottom: 1px solid var(--hairline);
  padding: 14px 0;
}
.faq summary {
  cursor: pointer;
  font-weight: 600;
  list-style: none;
}
.faq summary::-webkit-details-marker { display: none; }
.faq details p { margin-top: 10px; color: var(--stone); }
footer {
  border-top: 1px solid var(--hairline);
  padding: 32px 0 48px;
  color: var(--stone);
  font-size: 14px;
}
footer a { color: var(--stone); }
footer a:hover { color: var(--cobalt); }
.legal h2 { margin-top: 36px; font-size: 22px; }
.legal p, .legal li { color: #3a3b40; font-size: 16px; }
.legal ul { padding-left: 22px; margin: 10px 0; }
.updated { color: var(--stone); font-size: 14px; margin-bottom: 28px; }
.notice {
  background: var(--ivory);
  border: 1px solid var(--hairline);
  border-radius: 12px;
  padding: 16px 20px;
  font-size: 15px;
  color: var(--stone);
  margin-top: 28px;
}
