﻿:root {
  --navy: #0b2545;
  --navy-deep: #061628;
  --navy-mid: #163a66;
  --red: #c8102e;
  --red-dark: #9b0c24;
  --cream: #f6f3ed;
  --paper: #ffffff;
  --ink: #1c2430;
  --muted: #5a6573;
  --line: #d8dee6;
  --gold: #c4a574;
  --shadow: 0 12px 40px rgba(11, 37, 69, 0.08);
  --max: 1120px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Source Sans 3", "Segoe UI", Helvetica, Arial, sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  font-size: 18px;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--navy-mid); }
a:hover { color: var(--red); }
h1, h2, h3, .brand-name {
  font-family: "Source Serif 4", Georgia, "Times New Roman", serif;
  letter-spacing: -0.02em;
  color: var(--navy);
}
h1 { font-size: clamp(2rem, 4vw, 2.85rem); line-height: 1.2; margin: 0 0 0.6em; }
h2 { font-size: 1.55rem; margin: 1.6em 0 0.5em; }
h3 { font-size: 1.2rem; margin: 1.2em 0 0.4em; }
p { margin: 0 0 1em; }
ul, ol { margin: 0 0 1.1em; padding-left: 1.2em; }
li { margin: 0.35em 0; }

.skip {
  position: absolute;
  left: -999px;
  top: 0;
}
.skip:focus {
  left: 12px;
  top: 12px;
  background: #fff;
  padding: 8px 12px;
  z-index: 100;
}

.topbar {
  background: var(--navy-deep);
  color: #d7e2ef;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.topbar-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 8px 24px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.site-header {
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 40;
}
.header-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 10px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.logo-link {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}
.logo-link img {
  height: 72px;
  width: auto;
}
.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 4px;
  justify-content: flex-end;
}
.nav a {
  text-decoration: none;
  color: var(--navy);
  font-size: 0.92rem;
  font-weight: 600;
  padding: 8px 12px;
  border-radius: 6px;
}
.nav a:hover,
.nav a[aria-current="page"] {
  background: var(--cream);
  color: var(--red);
}

.header-tools {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px 12px;
  justify-content: flex-end;
}

.btn-call {
  background: #e67a2e;
  color: #fff;
  white-space: nowrap;
  flex-shrink: 0;
  padding: 10px 14px;
  font-size: 0.9rem;
}
.btn-call:hover {
  background: #c86420;
  color: #fff;
}

.hero {
  background: var(--navy-deep);
  color: #fff;
  padding: 0;
  overflow: hidden;
}
.hero-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(260px, 1.1fr);
  align-items: stretch;
  min-height: 420px;
}
.hero-copy { padding: 52px 28px 56px 24px; }
.hero-photo {
  margin: 0;
  min-height: 100%;
  background: #0a2038;
}
.hero-photo img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  display: block;
}
.kicker {
  display: inline-block;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #f3c9cf;
  font-weight: 700;
  margin-bottom: 12px;
}
.hero h1 { color: #fff; max-width: 28ch; }
.hero .lede {
  max-width: 62ch;
  font-size: 1.12rem;
  color: #e7eef6;
}
.hero .lede a { color: #ffd4da; }
.hero .lede a:hover { color: #fff; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.btn {
  display: inline-block;
  text-decoration: none;
  font-weight: 700;
  border-radius: 8px;
  padding: 12px 18px;
  font-size: 0.95rem;
}
.btn-primary { background: var(--red); color: #fff; }
.btn-primary:hover { background: var(--red-dark); color: #fff; }
.btn-ghost {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.45);
}
.btn-ghost:hover { background: rgba(255,255,255,0.1); color: #fff; }

.layout {
  max-width: var(--max);
  margin: -36px auto 0;
  padding: 0 24px 72px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 28px;
  align-items: start;
}
.article, .card, .notice {
  background: var(--paper);
  border-radius: 16px;
  box-shadow: var(--shadow);
}
.article { padding: 40px 44px 48px; }
.article a { font-weight: 650; }
.lead { font-size: 1.12rem; color: #2d3745; }

.stat-grid, .card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin: 22px 0 28px;
}
.stat, .mini {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 16px 18px;
}
.stat strong, .mini strong {
  display: block;
  color: var(--navy);
  font-size: 1.05rem;
  margin-bottom: 4px;
}
.stat span, .mini span { font-size: 0.92rem; color: var(--muted); }

.table-wrap { overflow-x: auto; margin: 16px 0 28px; }
table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}
th, td {
  text-align: left;
  padding: 10px 12px;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}
th { background: var(--navy); color: #fff; font-weight: 600; }
tr:nth-child(even) td { background: #faf8f4; }

.faq details {
  border-top: 1px solid var(--line);
  padding: 12px 0;
}
.faq summary {
  cursor: pointer;
  font-weight: 700;
  color: var(--navy);
}
.faq details p { margin-top: 8px; color: var(--muted); }

.sidebar { display: flex; flex-direction: column; gap: 16px; position: sticky; top: 108px; }
.card { padding: 22px; }
.card h2 { margin-top: 0; font-size: 1.15rem; }
.card ul { padding-left: 1.05em; margin: 0; }
.card a { text-decoration: none; font-weight: 650; }
.notice {
  padding: 18px 20px;
  border-left: 4px solid var(--red);
}
.notice strong { color: var(--navy); display: block; margin-bottom: 4px; }
.small { font-size: 0.9rem; color: var(--muted); }

.related {
  max-width: var(--max);
  margin: 0 auto 64px;
  padding: 0 24px;
}
.related h2 { margin-bottom: 14px; }
.related-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}
.related a {
  background: var(--paper);
  border-radius: 12px;
  padding: 18px;
  text-decoration: none;
  box-shadow: var(--shadow);
  color: var(--navy);
  display: block;
  min-height: 120px;
}
.related a span {
  display: block;
  color: var(--red);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 8px;
}

.site-footer {
  background: var(--navy-deep);
  color: #c5d0dc;
  padding: 40px 24px 28px;
  font-size: 0.92rem;
}
.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 28px;
}
.site-footer a { color: #f0f4f8; text-decoration: none; }
.site-footer a:hover { color: #ffd4da; }
.site-footer h2 { color: #fff; font-size: 1.05rem; margin: 0 0 10px; }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin: 6px 0; }
.legal {
  max-width: var(--max);
  margin: 24px auto 0;
  padding-top: 18px;
  border-top: 1px solid #24405f;
  color: #8fa0b3;
  font-size: 0.82rem;
}

@media (max-width: 1100px) {
  .related-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 960px) {
  .layout, .footer-inner { grid-template-columns: 1fr; }
  .sidebar { position: static; }
  .stat-grid { grid-template-columns: 1fr 1fr; }
  .article { padding: 28px 22px 36px; }
  .logo-link img { height: 58px; }
}
@media (max-width: 640px) {
  .stat-grid, .related-grid, .card-grid { grid-template-columns: 1fr; }
  .hero { padding: 42px 20px 56px; }
  .nav a { padding: 6px 8px; font-size: 0.84rem; }
  .header-inner { flex-wrap: wrap; }
  .header-tools { width: 100%; }
  .btn-call { font-size: 0.88rem; }
}

.article-photo {
  margin: 1.25em 0 1.7em;
  border-radius: 14px;
  overflow: hidden;
  background: #e8edf3;
  box-shadow: var(--shadow);
}
.article-photo img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}
.article-photo figcaption {
  font-size: 0.88rem;
  color: var(--muted);
  padding: 10px 14px 14px;
  background: var(--paper);
}
@media (max-width: 640px) {
  .article-photo { border-radius: 10px; }
}

@media (max-width: 800px) {
  .hero-inner { grid-template-columns: 1fr; min-height: 0; }
  .hero-copy { padding: 36px 20px 28px; }
  .hero-photo img { min-height: 220px; }
}

