:root {
  --navy: #0b3d6f;
  --navy-dark: #082b4d;
  --sand: #f3dfbf;
  --sand-light: #fbf7ef;
  --ink: #1e2933;
  --muted: #66727d;
  --line: #dde3e8;
  --white: #ffffff;
  --max: 1080px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
}
a { color: var(--navy); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--navy-dark); }
img { max-width: 100%; height: auto; }
.container { width: min(calc(100% - 40px), var(--max)); margin: 0 auto; }
.site-header {
  background: rgba(255,255,255,.97);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 20;
}
.header-inner { min-height: 82px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand img { width: 190px; display: block; }
.nav { display: flex; gap: 24px; align-items: center; flex-wrap: wrap; }
.nav a { text-decoration: none; font-weight: 600; font-size: .96rem; color: var(--ink); }
.nav a:hover, .nav a[aria-current="page"] { color: var(--navy); }
.hero {
  background:
    radial-gradient(circle at 88% 15%, rgba(11,61,111,.10), transparent 28%),
    linear-gradient(135deg, var(--sand-light) 0%, #fff 72%);
  border-bottom: 1px solid var(--line);
  padding: 88px 0 78px;
}
.eyebrow { color: var(--navy); font-weight: 750; letter-spacing: .08em; text-transform: uppercase; font-size: .79rem; margin: 0 0 12px; }
h1, h2, h3 { line-height: 1.2; color: var(--navy-dark); margin-top: 0; }
h1 { font-size: clamp(2.35rem, 6vw, 4.4rem); letter-spacing: -.035em; margin-bottom: 20px; max-width: 820px; }
h2 { font-size: clamp(1.65rem, 3.2vw, 2.35rem); margin-bottom: 18px; }
h3 { font-size: 1.15rem; margin-bottom: 8px; }
.lead { font-size: clamp(1.08rem, 2vw, 1.27rem); max-width: 780px; color: #3c4853; margin: 0 0 30px; }
.status {
  display: inline-flex; align-items: center; gap: 10px; padding: 10px 14px;
  border: 1px solid #d8c5a9; border-radius: 999px; background: rgba(255,255,255,.78);
  color: #4d4438; font-weight: 650; font-size: .92rem;
}
.status::before { content: ""; width: 9px; height: 9px; border-radius: 50%; background: var(--navy); }
.section { padding: 72px 0; }
.section.alt { background: #f7f9fb; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 22px; }
.card { background: var(--white); border: 1px solid var(--line); border-radius: 16px; padding: 26px; box-shadow: 0 8px 24px rgba(8,43,77,.05); }
.card p:last-child { margin-bottom: 0; }
.notice { border-left: 4px solid var(--navy); background: var(--sand-light); padding: 20px 22px; border-radius: 0 12px 12px 0; max-width: 860px; }
.contact-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 26px; align-items: stretch; }
.contact-box { background: var(--navy-dark); color: var(--white); border-radius: 18px; padding: 30px; }
.contact-box h2, .contact-box h3, .contact-box a { color: var(--white); }
.contact-box a { text-decoration-color: rgba(255,255,255,.55); }
.contact-line { margin: 10px 0; }
.meta { color: var(--muted); font-size: .94rem; }
.legal { max-width: 850px; }
.legal h2 { margin-top: 42px; font-size: 1.45rem; }
.legal h3 { margin-top: 28px; font-size: 1.08rem; }
.legal p, .legal li { max-width: 78ch; }
.legal ul { padding-left: 1.25rem; }
.site-footer { background: #071f36; color: #dfe7ed; padding: 38px 0; }
.footer-inner { display: flex; justify-content: space-between; gap: 30px; align-items: flex-start; flex-wrap: wrap; }
.site-footer a { color: #fff; }
.footer-nav { display: flex; gap: 16px; flex-wrap: wrap; }
.small { font-size: .88rem; }
.skip-link { position:absolute; left:-9999px; top:auto; width:1px; height:1px; overflow:hidden; }
.skip-link:focus { left:12px; top:12px; width:auto; height:auto; padding:10px 14px; background:#fff; z-index:100; }
@media (max-width: 820px) {
  .header-inner { align-items: flex-start; flex-direction: column; padding: 18px 0; gap: 12px; }
  .site-header { position: static; }
  .nav { gap: 16px; }
  .hero { padding: 58px 0 52px; }
  .section { padding: 52px 0; }
  .grid, .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 520px) {
  .container { width: min(calc(100% - 28px), var(--max)); }
  .brand img { width: 158px; }
  .nav { font-size: .9rem; gap: 12px; }
  .card, .contact-box { padding: 22px; }
}
@media print {
  .site-header, .site-footer { display: none; }
  body { font-size: 11pt; color: #000; }
  .hero, .section, .section.alt { background: #fff; border: 0; padding: 20px 0; }
  a { color: #000; text-decoration: none; }
}
