:root {
  --navy: #000080;
  --navy-soft: #1a1a99;
  --gold: #d9a441;
  --paper: #f7f8f6;
  --ink: #18212b;
  --muted: #3d4a57;
  --line: #d7dcd6;
  --white: #fff;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Segoe UI", system-ui, sans-serif;
  font-size: 1.125rem;
  line-height: 1.65;
  padding-bottom: 4.5rem;
}
@media (min-width: 768px) { body { padding-bottom: 0; } }
img { max-width: 100%; height: auto; display: block; }
a { color: var(--navy); }
h1, h2, h3 {
  font-family: "Segoe UI Semibold", "Segoe UI", system-ui, sans-serif;
  color: var(--navy);
  letter-spacing: -0.03em;
  line-height: 1.15;
}
.skip-link {
  position: absolute; left: 1rem; top: -4rem; z-index: 80;
  background: var(--navy); color: #fff; padding: .75rem 1rem; font-weight: 600;
}
.skip-link:focus { top: 1rem; }
.gold-rule { height: 2px; width: 3.5rem; background: var(--gold); }
.eyebrow {
  margin: 0;
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--navy-soft);
}
.eyebrow.gold { color: var(--gold); }
.muted { color: var(--muted); }
.max { max-width: 40rem; }

.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.96);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  max-width: 72rem; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  gap: .75rem; padding: .6rem 1.25rem;
}
.brand { display: flex; align-items: center; text-decoration: none; }
.brand-logo { height: 2.6rem; width: auto; max-width: 220px; object-fit: contain; object-position: left; }
@media (min-width: 640px) { .brand-logo { height: 3rem; max-width: 280px; } }
@media (min-width: 1024px) { .brand-logo { height: 3.35rem; max-width: 340px; } }
.brand-logo-footer { height: 3rem; max-width: 260px; }
.nav-desktop { display: none; align-items: center; }
.nav-link {
  position: relative;
  padding: .5rem .65rem;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  text-decoration: none;
  color: rgb(0 0 128 / .55);
}
.nav-link:hover, .nav-link.is-active { color: var(--navy); }
.nav-link::after {
  content: ""; position: absolute; left: .5rem; right: .5rem; bottom: .2rem;
  height: 2px; background: var(--navy); transform: scaleX(0); transform-origin: left; transition: transform .2s;
}
.nav-link:hover::after, .nav-link.is-active::after { transform: scaleX(1); }
.hide-mobile { display: none; }
.header-actions { display: flex; align-items: center; gap: .5rem; }
.menu-btn {
  width: 2.75rem; height: 2.75rem;
  border: 1px solid var(--line); background: #fff; color: var(--navy);
  display: inline-flex; align-items: center; justify-content: center; cursor: pointer;
}
.mobile-menu { border-top: 1px solid var(--line); background: #fff; padding: 1rem 1.25rem 1.25rem; }
.mobile-menu nav { display: flex; flex-direction: column; gap: .25rem; }
.mobile-menu a {
  min-height: 2.75rem; display: flex; align-items: center;
  text-transform: uppercase; letter-spacing: .14em; font-weight: 700; text-decoration: none; color: var(--navy);
}
.hidden { display: none !important; }
@media (min-width: 1024px) {
  .nav-desktop { display: flex; }
  .menu-btn, .mobile-menu { display: none !important; }
  .hide-mobile { display: inline-flex !important; }
}

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .4rem;
  min-height: 2.9rem; padding: .7rem 1.15rem;
  font-weight: 700; text-decoration: none; border: 0; cursor: pointer;
  background: var(--navy); color: #fff;
}
.btn-primary { background: var(--navy); color: #fff; }
.btn-outline { background: transparent; color: var(--navy); border: 1px solid var(--navy); }
.btn-gold { background: var(--gold); color: var(--navy); }
.btn-inverse { background: transparent; color: #fff; border: 1px solid #fff; }
.btn-full { width: 100%; }
.btn-row { display: flex; flex-direction: column; gap: .7rem; margin-top: 1.75rem; }
@media (min-width: 640px) { .btn-row { flex-direction: row; } }

.hero, .section, .trust, .legal { max-width: 72rem; margin: 0 auto; padding: 3.5rem 1.25rem; }
.hero { display: grid; gap: 2.2rem; align-items: center; padding-top: 2.5rem; }
@media (min-width: 1024px) { .hero { grid-template-columns: 1fr 1.05fr; } }
.hero h1 { font-size: clamp(2.2rem, 5vw, 3.15rem); margin: 1.2rem 0 0; }
.lead { font-size: 1.2rem; color: var(--muted); max-width: 36rem; }
.kicker { margin-top: 1.8rem; font-size: .85rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--navy); }
.photo-frame { position: relative; background: var(--navy); margin: 0; }
.photo-frame img { width: 100%; aspect-ratio: 16/9; object-fit: cover; }
.photo-frame::before, .photo-frame::after {
  content: ""; position: absolute; width: 2.25rem; height: 2.25rem; border-color: var(--gold); pointer-events: none; z-index: 2;
}
.photo-frame::before { top: 12px; left: 12px; border-top: 2px solid; border-left: 2px solid; }
.photo-frame::after { right: 12px; bottom: 12px; border-right: 2px solid; border-bottom: 2px solid; }
.photo-frame figcaption {
  position: absolute; left: 0; right: 0; bottom: 0;
  background: linear-gradient(transparent, rgb(0 0 128 / .7));
  color: #fff; padding: 1.5rem 1rem .8rem; font-size: .9rem;
}

.trust { padding: 1.4rem 1.25rem; border-block: 1px solid var(--line); background: #fff; max-width: none; }
.trust ul {
  max-width: 72rem; margin: 0 auto; padding: 0;
  display: grid; gap: 1rem; list-style: none;
}
@media (min-width: 640px) { .trust ul { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .trust ul { grid-template-columns: repeat(4, 1fr); } }
.trust li { display: flex; gap: .7rem; align-items: flex-start; color: var(--navy); font-weight: 600; }
.trust svg {
  flex: 0 0 auto; margin-top: .15rem;
  width: 1.5rem; height: 1.5rem; padding: .28rem;
  border-radius: 999px; background: var(--navy); color: #fff;
}

.section h2 { font-size: clamp(1.9rem, 4vw, 2.75rem); margin: 1.1rem 0 0; }
.prose { max-width: 40rem; color: var(--muted); }
.section-white { background: #fff; max-width: none; }
.section-white .wrap, .contact, .refs { max-width: 72rem; margin: 0 auto; }
.cards { display: grid; gap: 1.1rem; margin-top: 2.4rem; }
@media (min-width: 768px) { .cards { grid-template-columns: 1fr 1fr; } }
.card { background: var(--paper); border: 1px solid var(--line); padding: 1.6rem; }
.card-top { display: flex; justify-content: space-between; }
.icon-box { width: 3rem; height: 3rem; display: flex; align-items: center; justify-content: center; background: var(--navy); color: var(--gold); }
.num { color: var(--navy-soft); font-weight: 800; letter-spacing: .14em; font-size: .85rem; }
.audience { list-style: none; padding: 0; margin: 2.2rem 0 0; border-block: 1px solid var(--line); }
.audience li { display: grid; gap: .5rem; padding: 1.2rem 0; border-bottom: 1px solid var(--line); }
@media (min-width: 768px) { .audience li { grid-template-columns: 16rem 1fr; gap: 2rem; } }
.audience strong { color: var(--navy); display: flex; gap: .6rem; align-items: center; }
.audience svg { color: var(--gold); flex: 0 0 auto; }

.section-navy { background: var(--navy); color: #fff; max-width: none; }
.section-navy h2, .section-navy h3 { color: #fff; }
.refs { display: grid; gap: 2rem; }
@media (min-width: 1024px) { .refs { grid-template-columns: 1fr 1.1fr; } }
.timeline { border-left: 1px solid rgb(255 255 255 / .2); padding-left: 1.4rem; }
.year { color: var(--gold); font-weight: 700; letter-spacing: .16em; text-transform: uppercase; font-size: .85rem; }
.note { color: rgb(255 255 255 / .55); font-size: .9rem; }

.region { position: relative; min-height: 20rem; }
.region img { width: 100%; min-height: 20rem; object-fit: cover; aspect-ratio: 16/9; }
.region-copy {
  position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: flex-end;
  background: linear-gradient(to top, rgb(0 0 128 / .75), transparent);
  padding: 2rem 1.25rem 2.4rem; color: #fff;
}
.region-copy h2 { color: #fff; max-width: 36rem; margin: .6rem auto 0; width: 100%; max-width: 72rem; }
.region-copy .eyebrow { max-width: 72rem; width: 100%; margin: 0 auto; }

.cta-band { background: var(--navy); color: #fff; padding: 3rem 1.6rem; }
.cta-band h2 { color: #fff; }
.contact { display: grid; gap: 2.4rem; }
@media (min-width: 1024px) { .contact { grid-template-columns: .85fr 1.15fr; } }
address { display: flex; gap: .7rem; font-style: normal; }
address svg { color: var(--gold); margin-top: .2rem; }
.form { background: #fff; padding: 1.4rem; box-shadow: 0 8px 24px -16px rgb(0 0 128 / .28); }
.form-grid { display: grid; gap: 1rem; }
@media (min-width: 768px) { .form-grid { grid-template-columns: 1fr 1fr; } }
.form label { display: flex; flex-direction: column; gap: .35rem; font-weight: 600; color: var(--navy); }
.form input, .form textarea {
  font: inherit; padding: .65rem .7rem; border: 1px solid var(--line); background: var(--paper); color: var(--ink);
}
.narrow { max-width: 8rem; }
.consent { flex-direction: row !important; align-items: flex-start; font-weight: 400 !important; color: var(--muted) !important; }
.consent input { width: 1.4rem; height: 1.4rem; accent-color: var(--navy); }
.form-error { color: #8b1d1d; font-weight: 600; }
.form-ok { color: var(--navy); }

.legal { padding-bottom: 5rem; }
.legal h2 { margin-top: 2.2rem; font-size: 1.5rem; }
.back { font-weight: 700; }

.site-footer { border-top: 1px solid var(--navy); background: #fff; }
.footer-grid {
  max-width: 72rem; margin: 0 auto; padding: 3rem 1.25rem;
  display: grid; gap: 2rem;
}
@media (min-width: 768px) { .footer-grid { grid-template-columns: 1fr 1fr 1fr; } }
.footer-nav { list-style: none; padding: 0; }
.footer-nav a { display: inline-flex; min-height: 2.5rem; align-items: center; text-decoration: none; color: rgb(24 33 43 / .8); }
.footer-nav a:hover { color: var(--navy); }
.footer-bar { background: var(--navy); color: rgb(255 255 255 / .8); }
.footer-bar p { max-width: 72rem; margin: 0 auto; padding: 1rem 1.25rem; font-size: .9rem; }

.bottom-cta {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 40;
  border-top: 1px solid var(--line); background: rgb(255 255 255 / .96);
  padding: .7rem .75rem calc(.7rem + env(safe-area-inset-bottom));
}
@media (min-width: 768px) { .bottom-cta { display: none; } }

.cookie-banner {
  position: fixed; left: 0; right: 0; bottom: 4.6rem; z-index: 50;
  border-top: 1px solid rgb(0 0 128 / .15); background: #fff;
  padding: 1rem; display: flex; flex-direction: column; gap: 1rem;
  box-shadow: 0 -10px 30px -18px rgb(0 0 128 / .35);
}
@media (min-width: 768px) {
  .cookie-banner { bottom: 0; flex-direction: row; align-items: center; justify-content: space-between; }
  .cookie-banner .btn { width: auto; }
}
:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; }
