:root {
  --navy: #0d2f4f;
  --navy-2: #163f66;
  --gold: #c99a25;
  --gold-soft: #f4e8c2;
  --ink: #183047;
  --muted: #617387;
  --line: #dbe3ea;
  --paper: #ffffff;
  --page: #f4f7fa;
  --success: #1f7a52;
  --shadow: 0 14px 36px rgba(13, 47, 79, 0.10);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: var(--page);
  line-height: 1.62;
}

a { color: #0a5ea8; text-underline-offset: 3px; }
a:hover { color: #083f70; }

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: #fff;
  color: #000;
  padding: .75rem 1rem;
  z-index: 9999;
}
.skip-link:focus { left: 1rem; top: 1rem; }

.site-header {
  background: linear-gradient(135deg, var(--navy), var(--navy-2));
  color: #fff;
  border-bottom: 5px solid var(--gold);
}
.header-inner {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 1.3rem 0 1.15rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.brand {
  display: flex;
  align-items: center;
  gap: .9rem;
  text-decoration: none;
  color: #fff;
}
.brand-mark {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: var(--gold);
  color: var(--navy);
  font-weight: 800;
  letter-spacing: .03em;
  box-shadow: inset 0 0 0 2px rgba(255,255,255,.28);
}
.brand-name { font-weight: 800; font-size: 1.15rem; }
.brand-sub { display: block; font-size: .78rem; opacity: .82; margin-top: .12rem; }
.site-nav { display: flex; flex-wrap: wrap; gap: .4rem; justify-content: flex-end; }
.site-nav a {
  color: #fff;
  text-decoration: none;
  font-size: .9rem;
  padding: .48rem .7rem;
  border-radius: 999px;
}
.site-nav a:hover, .site-nav a[aria-current="page"] {
  background: rgba(255,255,255,.14);
}

main {
  width: min(980px, calc(100% - 2rem));
  margin: 2rem auto 3.5rem;
}
.hero {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: clamp(1.5rem, 4vw, 3rem);
  box-shadow: var(--shadow);
  margin-bottom: 1.2rem;
  position: relative;
  overflow: hidden;
}
.hero::after {
  content: "";
  position: absolute;
  right: -60px;
  top: -70px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,154,37,.18), rgba(201,154,37,0));
  pointer-events: none;
}
.eyebrow {
  color: #8c6815;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  font-size: .76rem;
  margin: 0 0 .45rem;
}
h1 { margin: 0; color: var(--navy); font-size: clamp(2rem, 5vw, 3.35rem); line-height: 1.08; }
.lead { font-size: 1.08rem; color: var(--muted); max-width: 760px; }
.updated { color: var(--muted); font-size: .9rem; margin-top: 1rem; }

.content-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: clamp(1.25rem, 3vw, 2rem);
  margin: 1rem 0;
  box-shadow: 0 8px 22px rgba(13, 47, 79, 0.06);
}
h2 { color: var(--navy); font-size: 1.45rem; line-height: 1.25; margin-top: 0; }
h3 { color: var(--navy-2); font-size: 1.08rem; margin-bottom: .35rem; }
p { margin: .7rem 0; }
ul { padding-left: 1.3rem; }
li { margin: .35rem 0; }

.notice {
  border-left: 5px solid var(--gold);
  background: #fffaf0;
  padding: 1rem 1.1rem;
  border-radius: 8px;
  margin: 1rem 0;
}
.notice strong { color: var(--navy); }
.consent-script {
  border: 1px solid #cdd9e4;
  background: #f8fbfd;
  padding: 1rem 1.1rem;
  border-radius: 12px;
  font-size: 1rem;
}
.badge {
  display: inline-block;
  background: var(--gold-soft);
  color: #694d0f;
  font-weight: 700;
  padding: .25rem .65rem;
  border-radius: 999px;
  font-size: .82rem;
}

.link-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}
.link-card {
  display: block;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1.2rem;
  text-decoration: none;
  color: var(--ink);
  box-shadow: 0 8px 20px rgba(13,47,79,.06);
}
.link-card:hover { transform: translateY(-1px); border-color: #b8c7d4; }
.link-card strong { display: block; color: var(--navy); margin-bottom: .25rem; }
.link-card span { color: var(--muted); font-size: .93rem; }

.site-footer {
  background: #e9eff4;
  border-top: 1px solid #d5dfe7;
  color: #53677a;
}
.footer-inner {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 1.5rem 0 2rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: .88rem;
}
.footer-links { display: flex; flex-wrap: wrap; gap: .8rem; }

@media (max-width: 780px) {
  .header-inner { align-items: flex-start; flex-direction: column; }
  .site-nav { justify-content: flex-start; }
  .link-grid { grid-template-columns: 1fr; }
  main { width: min(100% - 1rem, 980px); margin-top: .7rem; }
  .hero, .content-card { border-radius: 14px; }
}

@media print {
  .site-header, .site-footer, .skip-link { display: none; }
  body { background: #fff; color: #000; }
  main { width: 100%; margin: 0; }
  .hero, .content-card { box-shadow: none; border: 0; padding: 0; }
  a { color: #000; text-decoration: none; }
}
