:root {
  --navy:     #0e3c6e;
  --navy-d:   #082a4f;
  --teal:     #1a7f8c;
  --gold:     #c8912a;
  --ink:      #22282e;
  --ink-soft: #5a636c;
  --line:     #dde3e9;
  --bg-alt:   #f4f7fa;
  --radius:   5px;
  --wrap:     1140px;
}
*, *::before, *::after { box-sizing: border-box; }
body { margin: 0; font-family: "Source Sans 3", "Segoe UI", Arial, sans-serif; font-size: 16px; line-height: 1.7; color: var(--ink); background: #fff; }
h1, h2, h3 { font-family: "Source Serif 4", Georgia, serif; line-height: 1.28; margin: 0 0 .5em; font-weight: 700; }
h1 { font-size: 2.1rem; } h2 { font-size: 1.6rem; color: var(--navy); } h3 { font-size: 1.08rem; }
p { margin: 0 0 1em; }
img { max-width: 100%; height: auto; display: block; }
a { color: var(--navy); } a:hover, a:focus-visible { color: var(--teal); }
:focus-visible { outline: 3px solid var(--gold); outline-offset: 2px; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }
.container { width: min(100% - 32px, var(--wrap)); margin-inline: auto; }

.site-header { position: sticky; top: 0; z-index: 50; background: #fff; border-bottom: 3px solid var(--navy); }
.header__in { display: flex; align-items: center; gap: 20px; min-height: 78px; }
.brand { display: flex; align-items: center; gap: 14px; margin-right: auto; text-decoration: none; }
.brand img { width: 78px; height: auto; }
.brand__text { font-family: "Source Serif 4", Georgia, serif; font-size: 1.08rem; font-weight: 700; color: var(--navy); max-width: 16ch; line-height: 1.25; }
.primary-nav ul { display: flex; flex-wrap: wrap; gap: 2px; list-style: none; margin: 0; padding: 0; }
.primary-nav a { display: block; padding: 9px 12px; border-radius: var(--radius); color: var(--ink); text-decoration: none; font-size: .9rem; font-weight: 600; }
.primary-nav a:hover, .primary-nav a:focus-visible { background: var(--bg-alt); color: var(--navy); }
.nav-toggle { display: none; width: 46px; height: 42px; background: none; border: 1px solid var(--line); border-radius: var(--radius); cursor: pointer; }
.nav-toggle__box { display: block; position: relative; width: 22px; height: 2px; margin: 0 auto; background: var(--navy); }
.nav-toggle__box::before, .nav-toggle__box::after { content: ""; position: absolute; left: 0; width: 22px; height: 2px; background: var(--navy); }
.nav-toggle__box::before { top: -7px; } .nav-toggle__box::after { top: 7px; }

.hero { position: relative; background: var(--navy-d); }
.hero__bg { width: 100%; max-height: 400px; object-fit: cover; opacity: .42; }
.hero__panel { position: absolute; inset: auto 0 0 0; padding: 32px 0 30px; background: linear-gradient(180deg, rgba(8,42,79,0), rgba(8,42,79,.93) 42%); color: #fff; }
.hero h1 { color: #fff; max-width: 22ch; }
.hero__lead { max-width: 62ch; color: #cfdcea; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 12px; margin: 0; }
.btn { display: inline-block; padding: 12px 26px; border-radius: var(--radius); font-weight: 700; text-decoration: none; font-size: .94rem; }
.btn--primary { background: var(--gold); color: #2b1f06; } .btn--primary:hover { background: #dda336; color: #2b1f06; }
.btn--ghost { border: 2px solid rgba(255,255,255,.6); color: #fff; padding: 10px 24px; }
.btn--ghost:hover { border-color: #fff; background: rgba(255,255,255,.12); color: #fff; }

.section { padding: 48px 0; }
.section--alt { background: var(--bg-alt); }
.section__title { position: relative; padding-bottom: 12px; margin-bottom: 22px; }
.section__title::after { content: ""; position: absolute; left: 0; bottom: 0; width: 56px; height: 4px; background: var(--gold); }
.section__lead { max-width: 76ch; color: var(--ink-soft); margin-bottom: 22px; }
.sub { margin: 1.6em 0 .8em; color: var(--teal); }
.prose { max-width: 84ch; } .prose p:last-child { margin-bottom: 0; }
.stat { background: var(--bg-alt); border-left: 4px solid var(--teal); padding: 12px 18px; border-radius: var(--radius); }
.stat strong { font-size: 1.3rem; color: var(--navy); }

.two-col { display: grid; grid-template-columns: 1.3fr 1fr; gap: 30px; align-items: start; }
.panel { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 20px 24px; }
.ticks { list-style: none; margin: 0; padding: 0; }
.ticks li { position: relative; padding-left: 24px; margin-bottom: 7px; font-size: .94rem; color: var(--ink-soft); }
.ticks li::before { content: ""; position: absolute; left: 2px; top: .68em; width: 8px; height: 8px; border-radius: 50%; background: var(--teal); }

.table-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--radius); }
table { border-collapse: collapse; width: 100%; min-width: 520px; font-size: .94rem; }
th, td { padding: 10px 14px; border-bottom: 1px solid var(--line); text-align: left; }
thead th { background: var(--navy); color: #fff; font-weight: 600; }
tbody th { font-weight: 600; background: var(--bg-alt); width: 68px; }
tbody tr:last-child th, tbody tr:last-child td { border-bottom: 0; }

.updates { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.update { background: #fff; border: 1px solid var(--line); border-left: 4px solid var(--teal); border-radius: var(--radius); padding: 18px 22px; min-width: 0; }
.update h3 { color: var(--navy); } .update p { margin: 0; font-size: .93rem; color: var(--ink-soft); }

.offices { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.office { background: var(--bg-alt); border-radius: var(--radius); padding: 18px 20px; min-width: 0; }
.office h3 { color: var(--teal); font-size: 1rem; }
.office address { font-style: normal; font-size: .92rem; color: var(--ink-soft); margin-bottom: .6em; }
.office p { margin: 0; font-size: .9rem; }

.section--contact { background: var(--navy-d); color: #c6d5e6; }
.section--contact .section__title { color: #fff; }
.contact { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.contact__box { background: rgba(255,255,255,.07); border-radius: var(--radius); padding: 20px 22px; min-width: 0; }
.contact__box h3 { color: var(--gold); }
.contact address { font-style: normal; margin-bottom: 1em; }
.contact a { color: #fff; font-weight: 600; } .contact a:hover { color: var(--gold); }
.contact p:last-child { margin-bottom: 0; }

.site-footer { background: #071d33; color: #90a3b8; font-size: .92rem; padding-top: 34px; }
.footer__in { display: grid; grid-template-columns: 1.7fr 1fr 1fr; gap: 26px; padding-bottom: 22px; }
.footer__name { color: #fff; font-family: "Source Serif 4", Georgia, serif; font-weight: 700; }
.footer__head { color: #fff; font-weight: 700; margin-bottom: .6em; }
.site-footer ul { list-style: none; margin: 0; padding: 0; }
.site-footer li { margin-bottom: 6px; }
.site-footer a { color: #90a3b8; text-decoration: none; } .site-footer a:hover { color: var(--gold); }
.footer__bottom { border-top: 1px solid #123252; padding: 14px 0; }
.footer__bottom p { margin: 0; font-size: .84rem; }

@media (max-width: 1000px) { .offices { grid-template-columns: repeat(2, 1fr); } .footer__in { grid-template-columns: 1fr 1fr; } }
@media (max-width: 768px) {
  h1 { font-size: 1.7rem; } h2 { font-size: 1.35rem; }
  .section { padding: 34px 0; }
  .nav-toggle { display: block; }
  .primary-nav { display: none; width: 100%; order: 3; padding-bottom: 12px; }
  .primary-nav.is-open { display: block; }
  .primary-nav ul { flex-direction: column; gap: 0; }
  .primary-nav a { padding: 11px 8px; border-bottom: 1px solid var(--line); border-radius: 0; }
  .header__in { flex-wrap: wrap; min-height: 64px; }
  .brand__text { font-size: .95rem; }
  .hero__bg { max-height: 260px; } .hero__panel { position: static; background: var(--navy-d); }
  .two-col, .updates, .offices, .contact, .footer__in { grid-template-columns: 1fr; }
}
@media (prefers-reduced-motion: reduce) { * { animation: none !important; transition: none !important; } }
