
    :root {
      --navy: #1F3864; --navy-dark: #152847; --gold: #D4A600;
      --gold-light: #F0C000; --white: #ffffff;
      --light-gray: #f4f6f9; --text: #2d2d2d; --text-light: #666;
    }
    * { margin: 0; padding: 0; box-sizing: border-box; }
    body { font-family: 'Segoe UI', Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', 'Noto Color Emoji'; color: var(--text); }
    nav {
      position: sticky; top: 0; z-index: 1000;
      background: var(--navy); padding: 0 2rem;
      display: flex; align-items: center; justify-content: space-between;
      box-shadow: 0 2px 10px rgba(0,0,0,0.3);
    }
    .nav-brand { display: flex; align-items: center; gap: 0.75rem; text-decoration: none; padding: 1rem 0; }
    .nav-brand .logo-circle {
      width: 42px; height: 42px; border-radius: 50%;
      background: var(--gold); color: var(--navy);
      display: flex; align-items: center; justify-content: center;
      font-weight: 900; font-size: 1rem;
    }    .nav-brand span { color: var(--white); font-size: 1.1rem; font-weight: 700; }
    .nav-brand span em { color: var(--gold); font-style: normal; }
    .nav-links { display: flex; gap: 0.25rem; }
    .nav-links a {
      color: rgba(255,255,255,0.85); text-decoration: none;
      padding: 0.5rem 1rem; border-radius: 4px; font-size: 0.95rem; transition: all 0.2s;
    }
    .nav-links a:hover, .nav-links a.active { background: rgba(196,154,0,0.2); color: var(--gold-light); }
    .nav-links a.active { font-weight: 600; }
    .nav-cta { background: var(--gold); color: var(--navy) !important; font-weight: 700 !important; padding: 0.5rem 1.25rem !important; border-radius: 4px !important; }
    .nav-cta:hover { background: var(--gold-light) !important; color: var(--navy) !important; }

    .page-hero {
      background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
      color: var(--white); padding: 4rem 2rem; text-align: center;
    }
    .page-hero .section-label { font-size: 0.8rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--gold-light); margin-bottom: 0.75rem; }
    .cta-section .section-label,
    .page-hero .section-label { color: var(--gold-light); }

    .page-hero h1 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; margin-bottom: 1rem; }
    .page-hero p { color: rgba(255,255,255,0.92); font-size: 1.1rem; max-width: 640px; margin: 0 auto; line-height: 1.7; }

    .container { max-width: 1100px; margin: 0 auto; }
    section { padding: 5rem 2rem; }
    .section-label { font-size: 0.8rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: #856800; margin-bottom: 0.75rem; }
    h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); color: var(--navy); margin-bottom: 1rem; }

    .btn-primary {
      display: inline-block; background: var(--gold); color: var(--navy);
      padding: 0.85rem 2rem; border-radius: 6px; font-weight: 700;
      font-size: 0.95rem; text-decoration: none; transition: all 0.2s;
    }
    .btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); }

    /* ===== CAPABILITY STATEMENT PAGE ===== */
    .capstmt-section { background: var(--white); }
    .capstmt-meta {
      display: flex; flex-wrap: wrap; gap: 0.5rem 1.5rem;
      padding-bottom: 1.5rem; margin-bottom: 2.5rem;
      border-bottom: 2px solid var(--gold);
      font-size: 0.95rem; color: var(--text-light); align-items: center;
    }
    .capstmt-meta strong { color: var(--navy); font-size: 1.05rem; }
    .capstmt-meta a { color: var(--navy); text-decoration: none; font-weight: 600; }
    .capstmt-meta a:hover { color: var(--gold); text-decoration: underline; }
    .capstmt-block { margin-bottom: 3rem; }
    .capstmt-block:last-child { margin-bottom: 0; }
    .capstmt-list { list-style: none; }
    .capstmt-list li {
      position: relative; padding-left: 1.6rem; margin-bottom: 0.85rem;
      color: var(--text); line-height: 1.7; font-size: 1rem;
    }
    .capstmt-list li::before {
      content: "\2713"; position: absolute; left: 0; top: 0;
      color: var(--gold); font-weight: 800;
    }
    .capstmt-list li strong { color: var(--navy); }
    .ident-table {
      width: 100%; border-collapse: collapse; margin-top: 0.5rem;
      font-size: 0.95rem;
    }
    .ident-table th, .ident-table td {
      border: 1px solid #dde3ec; padding: 0.75rem 1rem;
      text-align: left; vertical-align: top; line-height: 1.6;
    }
    .ident-table th {
      background: var(--light-gray); color: var(--navy);
      font-weight: 700; width: 1%; white-space: nowrap;
    }
    .ident-table td { color: var(--text); }

    /* CTA */
    .cta-section { background: var(--light-gray); text-align: center; padding: 5rem 2rem; }
    .cta-section h2 { color: var(--navy); margin-bottom: 1rem; }
    .cta-section p { color: var(--text-light); font-size: 1.1rem; margin-bottom: 2rem; max-width: 600px; margin-left: auto; margin-right: auto; line-height: 1.7; }

    footer {
      background: #0e1f3a; color: rgba(255,255,255,0.88); padding: 3rem 2rem 1.5rem;
    }
    .footer-grid {
      max-width: 1100px; margin: 0 auto;
      display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 3rem;
      padding-bottom: 2rem; border-bottom: 1px solid rgba(255,255,255,0.1);
    }
    .footer-brand span { color: var(--white); font-size: 1.1rem; font-weight: 700; }
    .footer-brand span em { color: var(--gold); font-style: normal; }
    .footer-brand p { margin-top: 0.75rem; font-size: 0.9rem; line-height: 1.7; }
    footer h3 { color: var(--white); font-size: 0.95rem; margin-bottom: 1rem; }
    footer ul { list-style: none; }
    footer ul li { margin-bottom: 0.5rem; }
    footer ul li a { color: rgba(255,255,255,0.88); text-decoration: none; font-size: 0.9rem; transition: color 0.2s; }
    footer ul li a:hover { color: var(--gold-light); }
    .footer-bottom {
      max-width: 1100px; margin: 1.5rem auto 0;
      display: flex; justify-content: space-between; align-items: center;
      font-size: 0.85rem; flex-wrap: wrap; gap: 0.5rem;
    }
    @media (max-width: 768px) {
      .nav-toggle { display: flex; }
      nav { flex-wrap: wrap; }
      .nav-links {
        display: none; width: 100%; flex-direction: column;
        padding: 0.5rem 0 1rem; gap: 0;
      }
      .nav-links.is-open { display: flex; }
      .nav-links a {
        padding: 0.75rem 1.5rem; border-radius: 4px; font-size: 1rem;
        border-bottom: 1px solid rgba(255,255,255,0.08);
      }
      .nav-links a:last-child { border-bottom: none; }
      .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
      .ident-table th { white-space: normal; }
      .ident-table, .ident-table tbody, .ident-table tr, .ident-table th, .ident-table td { display: block; width: 100%; }
      .ident-table th { border-bottom: none; }
      .ident-table td { border-top: none; margin-bottom: 0.25rem; }
    }

/* ===== HAMBURGER NAV ===== */
.skip-link {
  position: absolute; top: -100%; left: 0;
  background: var(--gold); color: var(--navy);
  padding: 0.5rem 1rem; font-weight: 700; font-size: 0.9rem;
  z-index: 9999; text-decoration: none; border-radius: 0 0 4px 0;
}
.skip-link:focus { top: 0; }

.nav-toggle {
  display: none; flex-direction: column; justify-content: space-between;
  width: 28px; height: 20px; background: none; border: none;
  cursor: pointer; padding: 0; z-index: 1001;
}
.nav-toggle span {
  display: block; width: 100%; height: 2px;
  background: var(--white); border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }

/* ===== UTILITY CLASSES ===== */
.u-svg-inline { display:inline; vertical-align:-0.125em; }
.u-hidden { display:none; }
.u-flex-center { display:flex; gap:1rem; justify-content:center; flex-wrap:wrap; }
.u-badge-gold { background:rgba(196,154,0,0.15); border:1px solid rgba(196,154,0,0.35); color:var(--gold-light) !important; font-weight:600; }
.u-mt-4 { margin-top:1rem; }
.u-tc { text-align:center; }

/* ===== PREFERS REDUCED MOTION ===== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* Phone link in nav */
.nav-phone{color:var(--ink, #1F3864);font-weight:600;text-decoration:none;padding:6px 10px;white-space:nowrap}
.nav-phone:hover{color:var(--gold, #C49A00);text-decoration:underline}
@media (max-width:768px){.nav-phone{font-size:0.95rem;padding:4px 6px}}
