
:root {
  color-scheme: light dark;
  --navy-950: #09192d;
  --navy-900: #0d223b;
  --navy-800: #173454;
  --navy-700: #24476d;
  --gold-500: #c9a24d;
  --gold-400: #d6b765;
  --cream-50: #faf7ef;
  --cream-100: #f4efe4;
  --ink: #17202b;
  --muted: #66717d;
  --card: rgba(255,255,255,.72);
  --border: rgba(13,34,59,.13);
  --shadow: 0 18px 45px rgba(15,26,41,.08);
  --max: 820px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 50% -10%, rgba(201,162,77,.09), transparent 36rem),
    var(--cream-50);
  color: var(--ink);
  line-height: 1.72;
  -webkit-font-smoothing: antialiased;
}
a {
  color: var(--navy-700);
  text-decoration-color: rgba(201,162,77,.85);
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}
a:hover { color: var(--navy-900); }
a:focus-visible {
  outline: 3px solid var(--gold-500);
  outline-offset: 3px;
  border-radius: 4px;
}
.site-header {
  border-bottom: 1px solid var(--border);
  background: rgba(250,247,239,.88);
  backdrop-filter: blur(12px);
}
.header-inner {
  width: min(calc(100% - 36px), 1080px);
  min-height: 82px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  color: var(--navy-950);
  text-decoration: none;
}
.brand img {
  width: 48px;
  height: 48px;
  border-radius: 11px;
  box-shadow: 0 5px 16px rgba(9,25,45,.17);
}
.brand-copy { display: grid; line-height: 1.1; }
.brand-title {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.22rem;
  font-weight: 700;
}
.brand-tagline {
  margin-top: 5px;
  color: var(--muted);
  font-size: .74rem;
}
.top-nav {
  display: flex;
  gap: 18px;
  font-size: .92rem;
}
.top-nav a {
  text-decoration: none;
  color: var(--muted);
  font-weight: 650;
}
.top-nav a[aria-current="page"] { color: var(--navy-900); }
.hero {
  width: min(calc(100% - 36px), var(--max));
  margin: 58px auto 34px;
}
.eyebrow {
  color: var(--gold-500);
  font-size: .77rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .16em;
  margin-bottom: 10px;
}
h1,h2,h3 { color: var(--navy-950); line-height: 1.2; }
h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.15rem, 7vw, 3.35rem);
  letter-spacing: -.025em;
}
.hero p { margin: 16px 0 0; color: var(--muted); font-size: 1.04rem; }
.meta {
  display: inline-flex;
  margin-top: 18px;
  padding: 7px 11px;
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--muted);
  background: rgba(255,255,255,.4);
  font-size: .82rem;
}
.content {
  width: min(calc(100% - 36px), var(--max));
  margin: 0 auto 72px;
}
.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: clamp(22px, 5vw, 42px);
  box-shadow: var(--shadow);
}
section + section {
  margin-top: 34px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
}
h2 { margin: 0 0 10px; font-size: 1.25rem; }
h3 { margin: 22px 0 8px; font-size: 1rem; }
p { margin: 0 0 14px; }
p:last-child { margin-bottom: 0; }
ul { margin: 10px 0 0; padding-left: 1.2rem; }
li + li { margin-top: 7px; }
.contact-box {
  margin-top: 16px;
  display: grid;
  gap: 7px;
  padding: 17px 18px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: rgba(13,34,59,.035);
}
.note {
  margin-top: 18px;
  padding: 15px 17px;
  border-left: 3px solid var(--gold-500);
  border-radius: 0 10px 10px 0;
  background: rgba(201,162,77,.08);
}
.support-grid {
  display: grid;
  grid-template-columns: repeat(2,minmax(0,1fr));
  gap: 14px;
  margin-top: 18px;
}
.mini-card {
  border: 1px solid var(--border);
  border-radius: 15px;
  padding: 17px;
  background: rgba(255,255,255,.35);
}
.mini-card h3 { margin-top: 0; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  margin-top: 10px;
  border-radius: 12px;
  background: var(--navy-900);
  color: var(--cream-50);
  text-decoration: none;
  font-weight: 750;
}
.footer {
  border-top: 1px solid var(--border);
  padding: 30px 18px 42px;
  color: var(--muted);
  text-align: center;
  font-size: .86rem;
}
.footer-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 10px;
}
.footer a { color: inherit; }

@media (max-width:650px) {
  .header-inner { min-height:72px; width:min(calc(100% - 28px),1080px); }
  .brand img { width:42px; height:42px; }
  .brand-tagline { display:none; }
  .top-nav { gap:12px; font-size:.86rem; }
  .hero { margin-top:42px; }
  .support-grid { grid-template-columns:1fr; }
}
@media (prefers-color-scheme:dark) {
  :root {
    --ink:#f4efe4; --muted:#aeb8c5;
    --card:rgba(18,43,71,.78);
    --border:rgba(230,220,198,.12);
    --shadow:0 18px 45px rgba(0,0,0,.22);
  }
  body {
    background: radial-gradient(circle at 50% -10%, rgba(201,162,77,.08), transparent 34rem), #071524;
  }
  .site-header { background:rgba(7,21,36,.88); }
  .brand,h1,h2,h3 { color:#f7f0df; }
  .top-nav a[aria-current="page"] { color:#f7f0df; }
  a { color:var(--gold-400); }
  .card,.mini-card,.meta { background-color:rgba(18,43,71,.66); }
  .contact-box { background:rgba(255,255,255,.025); }
  .button { background:var(--gold-500); color:var(--navy-950); }
}
@media (prefers-reduced-motion:reduce) { html { scroll-behavior:auto; } }
