:root {
  --navy: #1E3A5F;
  --navy-dark: #162c49;
  --gold: #D9A12E;
  --green: #4C7A3C;
  --green-ink: #3e6531;   /* darkened Field Green for text on light (AA) */
  --ink: #2b2b2b;
  --muted: #5f6b78;
  --line: #7e8b99;        /* form/control borders — meets 3:1 UI contrast */
  --hair: #e3e7eb;        /* light hairlines (decorative) */
  --bg: #ffffff;
  --bg-alt: #f4f6f8;      /* Mist */
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: Aptos, 'Segoe UI', Arial, sans-serif; color: var(--ink); background: var(--bg); line-height: 1.65; -webkit-text-size-adjust: 100%; }
img, svg { max-width: 100%; }
a { color: var(--navy); }
.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }

/* ---------- Header / nav ---------- */
header { background: #fff; border-bottom: 1px solid var(--hair); position: sticky; top: 0; z-index: 50; }
/* Signature tri-color rule: Navy 60% / Gold 20% / Green 20% */
.topbar { height: 4px; background: linear-gradient(to right, var(--navy) 0 60%, var(--gold) 60% 80%, var(--green) 80% 100%); }
nav { display: flex; align-items: center; justify-content: space-between; min-height: 72px; gap: 16px; }
nav .brand { display: inline-flex; }
nav .brand img { height: 30px; width: auto; display: block; }
nav ul { display: flex; align-items: center; gap: 32px; list-style: none; }
nav ul a { text-decoration: none; font-size: 15px; font-weight: 600; color: var(--navy); padding: 6px 2px; border-bottom: 2px solid transparent; }
nav ul a:hover { border-bottom-color: var(--gold); }
nav ul a.active, nav ul a[aria-current="page"] { border-bottom-color: var(--green); }

/* Hamburger toggle (hidden on desktop) */
.nav-toggle { display: none; flex-direction: column; justify-content: center; gap: 5px; width: 44px; height: 44px; padding: 10px; background: transparent; border: 1px solid var(--line); border-radius: 8px; cursor: pointer; }
.nav-toggle-bar { display: block; height: 2px; width: 100%; background: var(--navy); border-radius: 2px; transition: transform .2s ease, opacity .2s ease; }
header.nav-open .nav-toggle-bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
header.nav-open .nav-toggle-bar:nth-child(2) { opacity: 0; }
header.nav-open .nav-toggle-bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero { background: var(--navy); color: #fff; padding: 90px 0 80px; }
.hero img.wm { width: 340px; max-width: 80%; margin-bottom: 28px; }
.hero h1 { font-size: 42px; line-height: 1.2; font-weight: 700; max-width: 760px; }
.hero p { font-size: 19px; color: #c7d3e0; max-width: 660px; margin-top: 18px; }
.hero .cta { margin-top: 34px; display: flex; gap: 14px; flex-wrap: wrap; }
.btn { display: inline-block; padding: 13px 28px; border-radius: 6px; text-decoration: none; font-weight: 700; font-size: 15px; }
.btn-gold { background: var(--gold); color: var(--navy); }              /* Navy on Gold — brand AA pairing */
.btn-gold:hover { background: #e5b04a; }
.btn-line { border: 2px solid #fff; color: #fff; }
.btn-line:hover { background: rgba(255,255,255,.12); }

.page-hero { background: var(--navy); color: #fff; padding: 56px 0 48px; }
.page-hero h1 { font-size: 34px; line-height: 1.2; }
.page-hero p { color: #c7d3e0; font-size: 17px; max-width: 660px; margin-top: 10px; }

/* ---------- Sections ---------- */
section { padding: 70px 0; }
section.alt { background: var(--bg-alt); }
h2.sec { font-size: 28px; color: var(--navy); margin-bottom: 12px; line-height: 1.25; }
p.lead { color: var(--muted); font-size: 16.5px; max-width: 700px; margin-bottom: 40px; }
.rule { width: 64px; height: 4px; background: var(--green); margin: 14px 0 26px; border-radius: 2px; }

.grid3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.card { background: #fff; border: 1px solid var(--hair); border-radius: 10px; padding: 28px; }
.card .ico { width: 46px; height: 46px; border-radius: 10px; background: #eef3ee; display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.card .ico svg { width: 24px; height: 24px; stroke: var(--green); }
.card.gold .ico { background: #faf1dd; } .card.gold .ico svg { stroke: #a5761b; }   /* darker gold stroke reads on mist */
.card.navy .ico { background: #e8edf4; } .card.navy .ico svg { stroke: var(--navy); }
.card h3 { font-size: 18px; color: var(--navy); margin-bottom: 8px; }
.card p { font-size: 14.5px; color: var(--muted); }

.band { background: var(--green); color: #fff; padding: 54px 0; }
.band h2 { font-size: 26px; margin-bottom: 8px; }
.band p { color: #f0f5ec; margin-bottom: 22px; max-width: 640px; }              /* AA on green */

.stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 24px; text-align: center; }
.stats .num { font-size: 38px; font-weight: 800; color: var(--navy); }
.stats .lbl { font-size: 14px; color: var(--muted); margin-top: 4px; }

.split { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }

.values li { margin: 0 0 18px 0; list-style: none; padding-left: 30px; position: relative; font-size: 15.5px; color: var(--ink); }
.values li::before { content: ""; position: absolute; left: 0; top: 7px; width: 12px; height: 12px; border-radius: 3px; background: var(--gold); }
.values li strong { color: var(--navy); }

.person { display: flex; gap: 18px; align-items: center; background: #fff; border: 1px solid var(--hair); border-radius: 10px; padding: 22px; }
.person .av { width: 64px; height: 64px; border-radius: 50%; background: var(--navy); color: #fff; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 20px; flex: none; }
.person h3 { font-size: 17px; color: var(--navy); }
.person p { font-size: 13.5px; color: var(--muted); }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 48px; }
.cinfo div { margin-bottom: 22px; }
.cinfo .clbl { font-size: 12px; font-weight: 700; letter-spacing: 1px; color: var(--green-ink); text-transform: uppercase; }
.cinfo .cval { font-size: 17px; color: var(--navy); font-weight: 600; }
.cinfo a { text-decoration: none; }
form label { display: block; font-size: 13px; font-weight: 700; color: var(--navy); margin: 16px 0 5px; }
form input, form textarea { width: 100%; padding: 11px 13px; font-size: 16px; border: 1px solid var(--line); border-radius: 6px; font-family: inherit; color: var(--ink); background: #fff; }
form textarea { min-height: 130px; resize: vertical; }
form .req { color: var(--green-ink); }
form button { margin-top: 20px; background: var(--navy); color: #fff; border: none; padding: 13px 34px; font-size: 15px; font-weight: 700; border-radius: 6px; cursor: pointer; font-family: inherit; }
form button:hover { background: #2a4d7a; }

/* ---------- Callouts ---------- */
.callout { display: block; background: #fff; border: 1px solid var(--hair); border-radius: 10px; padding: 28px; text-decoration: none; transition: border-color .15s; }
.callout:hover { border-color: var(--gold); }
.callout h3 { font-size: 18px; color: var(--navy); margin-bottom: 8px; }
.callout p { font-size: 14.5px; color: var(--muted); margin-bottom: 14px; }
.callout .go { font-size: 14px; font-weight: 700; color: var(--green-ink); }
.callout.soon .go { color: var(--muted); }

/* ---------- Footer ---------- */
footer { background: var(--navy-dark); color: #c3d0de; padding: 48px 0 0; margin-top: 0; }
footer .cols { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; padding-bottom: 36px; }
footer img { width: 200px; margin-bottom: 12px; }
footer .tag { font-size: 12.5px; letter-spacing: 1px; text-transform: uppercase; color: #a5b8ca; }
footer h4 { color: #fff; font-size: 14px; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 12px; }
footer a { color: #c3d0de; text-decoration: none; font-size: 14.5px; display: block; margin-bottom: 8px; }
footer a:hover { color: var(--gold); }
footer .safety { font-size: 12.5px; color: #a5b8ca; padding: 14px 0 2px; border-top: 1px solid rgba(255,255,255,.14); line-height: 1.6; }
footer .safety a { display: inline; color: #dbe4ec; }
footer .base { border-top: 1px solid rgba(255,255,255,.14); padding: 16px 0; font-size: 13px; color: #a5b8ca; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px; }
footer .base a { display: inline; }
/* footer base bar carries the same tri-color signature */
footer .basebar { height: 5px; background: linear-gradient(to right, var(--navy) 0 60%, var(--gold) 60% 80%, var(--green) 80% 100%); }

/* ---------- Accessibility ---------- */
.skip { position: absolute; left: -9999px; top: 0; background: var(--gold); color: var(--navy); font-weight: 700; padding: 10px 18px; border-radius: 0 0 6px 0; z-index: 100; text-decoration: none; }
.skip:focus { left: 0; }
/* High-contrast dual focus ring: gold reads on dark fields, navy halo reads on light */
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible, [tabindex]:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 2px;
  box-shadow: 0 0 0 5px rgba(22, 44, 73, .9);
  border-radius: 3px;
}
.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; }

/* ---------- Responsive ---------- */
@media (max-width: 800px) {
  .nav-toggle { display: inline-flex; }
  nav ul {
    position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: #fff; border-bottom: 1px solid var(--hair);
    box-shadow: 0 10px 26px rgba(22,44,73,.10);
    padding: 6px 0; display: none;
  }
  header.nav-open nav ul { display: flex; }
  nav ul li { width: 100%; }
  nav ul a { display: block; padding: 14px 24px; font-size: 16px; border-bottom: none; }
  nav ul a.active, nav ul a[aria-current="page"] { border-bottom: none; box-shadow: inset 3px 0 0 var(--green); background: var(--bg-alt); }
  .hero { padding: 64px 0 56px; }
  .hero h1 { font-size: 30px; }
  .hero p { font-size: 17px; }
  .page-hero h1 { font-size: 28px; }
  section { padding: 52px 0; }
  h2.sec { font-size: 24px; }
  .split { grid-template-columns: 1fr; gap: 36px; }
  .contact-grid { grid-template-columns: 1fr; gap: 32px; }
  footer .cols { grid-template-columns: 1fr; gap: 28px; }
}
@media (max-width: 420px) {
  .container { padding: 0 18px; }
  .hero h1 { font-size: 26px; }
  .btn { display: block; text-align: center; }
  .hero .cta { flex-direction: column; align-items: stretch; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; animation: none !important; }
}
