:root {
    --brand-blue: #01326C;
    --brand-blue-2: #234E80;
    --brand-gold: #E2AA06;
    --brand-gold-2: #C99400;
    --brand-silver: #8FA8C3;
    --brand-soft-blue: #EEF4FB;
    --brand-soft-gold: #FFF7E3;
    --text: #162435;
    --muted: #5F7084;
    --bg: #F8FAFC;
    --surface: #FFFFFF;
    --border: #D8E1EB;
    --shadow: 0 12px 32px rgba(1, 50, 108, 0.08);
    --radius: 18px;
    --max-width: 1220px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    color: var(--text);
    background:
        radial-gradient(circle at top left, rgba(226,170,6,0.08), transparent 28%),
        radial-gradient(circle at top right, rgba(1,50,108,0.08), transparent 26%),
        var(--bg);
    line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { color: var(--brand-blue); text-decoration: none; transition: 0.2s ease; }
a:hover { color: var(--brand-gold-2); }

.container { width: min(100% - 32px, var(--max-width)); margin: 0 auto; }
.narrow { max-width: 840px; }
.center-text { text-align: center; }

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(248,250,252,0.92);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid transparent;
    transition: all 0.25s ease;
}
.site-header.scrolled {
    border-bottom-color: var(--border);
    box-shadow: 0 10px 30px rgba(1,50,108,0.08);
}
.header-inner {
    min-height: 86px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}
.brand-logo { height: 58px; width: auto; }
.footer-logo { height: 52px; width: auto; }

.nav-toggle {
    display: none;
    background: none;
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 10px 12px;
    cursor: pointer;
}
.nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--brand-blue);
    margin: 4px 0;
}
.site-nav ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    gap: 24px;
    align-items: center;
}
.site-nav a {
    color: var(--text);
    font-weight: 700;
}
.site-nav a.active,
.site-nav a:hover {
    color: var(--brand-blue);
}

.section { padding: 76px 0; }
.section-sm { padding: 52px 0; }
.page-hero { padding-top: 94px; padding-bottom: 22px; }

.eyebrow {
    display: inline-block;
    background: linear-gradient(135deg, var(--brand-soft-gold), #fff);
    color: var(--brand-blue);
    padding: 8px 16px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 0.86rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 18px;
    border: 1px solid rgba(226,170,6,0.25);
}

.section-title {
    margin: 0 0 18px;
    font-size: clamp(2rem, 4vw, 3.4rem);
    line-height: 1.08;
    color: var(--brand-blue);
}
.section-subtitle,
p { color: var(--muted); }
.lead { font-size: 1.08rem; }

.text-gold { color: var(--brand-gold); }

.hero-grid,
.two-col,
.framework,
.cta-box,
.contact-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 36px;
    align-items: center;
}

.hero-card,
.brand-panel,
.info-card,
.card,
.service-card,
.cta-box,
.resource-card,
.testimonial-card,
.contact-person-card,
.who-we-serve-box,
.form-panel {
    background: rgba(255,255,255,0.88);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.hero-card,
.brand-panel,
.info-card {
    padding: 28px;
}

.hero-logo,
.about-logo {
    max-width: 420px;
    margin: 0 auto;
}

.button-row { margin-top: 24px; }

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--brand-blue), var(--brand-blue-2));
    color: #fff;
    border-radius: 12px;
    padding: 14px 22px;
    font-weight: 700;
    border: none;
    transition: 0.2s ease;
    box-shadow: 0 10px 24px rgba(1,50,108,0.16);
}
.btn:hover {
    color: #fff;
    transform: translateY(-1px);
}
.btn-secondary {
    background: linear-gradient(135deg, var(--brand-gold), var(--brand-gold-2));
    color: #fff;
}
.btn-secondary:hover { color: #fff; }

.values-grid,
.services-grid,
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.card,
.service-card,
.resource-card,
.testimonial-card {
    padding: 28px;
}
.card h4,
.service-card h4,
.resource-card h4 {
    margin-top: 0;
    margin-bottom: 12px;
    color: var(--brand-blue);
}
.value-icon {
    width: 78px;
    height: 78px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 16px;
}
.brand-soft-blue { background: var(--brand-soft-blue); }
.brand-soft-gold { background: var(--brand-soft-gold); }

.resources-layout { align-items: start; }
.resource-list { display: grid; gap: 20px; margin-top: 24px; }

.quote-mark {
    font-size: 3rem;
    line-height: 1;
    color: var(--brand-gold);
    opacity: 0.5;
    margin-bottom: 12px;
}
.testimonial-quote { color: var(--text); margin-bottom: 20px; }
.testimonial-author { display: flex; flex-direction: column; gap: 4px; }
.testimonial-author span { color: var(--muted); }

.contact-grid { align-items: start; }
.contact-person-card,
.who-we-serve-box,
.form-panel { padding: 24px; }
.contact-person-card,
.who-we-serve-box { margin-bottom: 24px; }
.muted-strong { color: var(--muted); font-weight: 700; }
.info-stack p { margin: 6px 0; }

.contact-form { margin-top: 24px; }
.form-row.two { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-field { margin-bottom: 16px; }
.form-field label {
    display: block;
    margin-bottom: 8px;
    font-weight: 700;
    color: var(--brand-blue);
}
.form-field input,
.form-field select,
.form-field textarea {
    width: 100%;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 12px 14px;
    font: inherit;
    color: var(--text);
    background: #fff;
}
.form-field textarea {
    resize: vertical;
    min-height: 140px;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    outline: none;
    border-color: var(--brand-gold);
    box-shadow: 0 0 0 4px rgba(226,170,6,0.12);
}
.form-consent { margin: 18px 0 22px; color: var(--text); }
.form-consent label { display: flex; gap: 10px; align-items: flex-start; }
.required { color: #B42318; }

.form-alert {
    border-radius: 12px;
    padding: 14px 16px;
    margin-top: 20px;
    margin-bottom: 20px;
}
.form-alert.success {
    background: #ECFDF3;
    color: #166534;
    border: 1px solid #BBF7D0;
}
.form-alert.error {
    background: #FEF2F2;
    color: #991B1B;
    border: 1px solid #FECACA;
}
.form-alert ul { margin: 0; padding-left: 18px; }

.honeypot-wrap {
    position: absolute !important;
    left: -9999px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
}

.site-footer {
    margin-top: 48px;
    padding: 28px 0;
    background: linear-gradient(135deg, var(--brand-blue), #08254D);
    color: #fff;
}
.footer-grid {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}
.footer-text { margin: 0 0 6px; color: rgba(255,255,255,0.9); }
.site-footer a { color: #fff; }

.reveal {
    opacity: 0;
    transform: translateY(36px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}
.delay-1 { transition-delay: 0.08s; }
.delay-2 { transition-delay: 0.16s; }
.delay-3 { transition-delay: 0.24s; }

.framework {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 40px;
    align-items: center;
    margin-top: 50px;
}

.framework-content {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.framework-media img {
    width: 100%;
    border-radius: 16px;
    margin-bottom: 16px;
}

.framework-media {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.info-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.cta-box {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
    gap: 40px;

    background: linear-gradient(135deg, #0b2e4f 0%, #133d6b 50%);
    padding: 50px;
    border-radius: 20px;

    color: #ffffff;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.cta-content {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.cta-box .section-title {
    color: #ffffff;
}

.cta-box .eyebrow {
    color: #f2b705; /* gold accent */
    font-weight: 600;
    letter-spacing: 1px;
}

.cta-box p {
    opacity: 0.9;
}

/* IMAGE */
.cta-media img {
    width: 100%;
    border-radius: 16px;
    object-fit: cover;
}

/* BUTTON */
.btn-primary {
    background: #f2b705; /* gold */
    color: #0b2e4f; /* navy text */
    font-weight: 600;
    border: none;
}

.btn-primary:hover {
    background: #e0a800;
}

.cta-box {
    position: relative;
    overflow: hidden;
}

.cta-box::after {
    content: "";
    position: absolute;
    top: -50%;
    right: -20%;
    width: 300px;
    height: 300px;
    background: rgba(242, 183, 5, 0.1);
    border-radius: 50%;
}

.footer-logo-wrap {
    background: #ffffff;
    padding: 10px 16px;
    border-radius: 8px;
    display: inline-block;
}

.footer-logo {
    max-height: 50px;
    display: block;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.service-card {
    position: relative;
    background: rgba(255,255,255,0.92);
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 28px;
    box-shadow: 0 10px 24px rgba(1, 50, 108, 0.05);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    overflow: hidden;
}

.service-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--brand-blue);
    opacity: 0.9;
}

.service-card-accent-blue::before {
    background: linear-gradient(90deg, var(--brand-blue), var(--brand-silver));
}

.service-card-accent-gold::before {
    background: linear-gradient(90deg, var(--brand-gold), #f0c84a);
}

.service-card h4 {
    margin: 0 0 14px;
    font-size: 1.65rem;
    line-height: 1.15;
    color: var(--brand-blue);
}

.service-card p {
    margin: 0 0 16px;
    color: var(--muted);
}

.service-card p:last-child {
    margin-bottom: 0;
}

.service-card strong {
    color: var(--brand-blue);
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 36px rgba(1, 50, 108, 0.10);
    border-color: rgba(1, 50, 108, 0.18);
    background: linear-gradient(180deg, rgba(255,255,255,0.96), rgba(238,244,251,0.72));
}

.resources-layout {
    align-items: start;
}

.resources-media-stack {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.resources-media-stack .brand-panel {
    padding: 24px;
}

.resources-media-stack .about-logo {
    max-width: 320px;
    margin: 0 auto;
}

.exitmap-banner-card {
    display: block;
    background: rgba(255,255,255,0.92);
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 14px;
    box-shadow: var(--shadow);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.exitmap-banner-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 36px rgba(1, 50, 108, 0.10);
}

.exitmap-banner {
    width: 100%;
    display: block;
    border-radius: 12px;
}

/* MOBILE */
@media (max-width: 900px) {
    .cta-box {
        grid-template-columns: 1fr;
        padding: 30px;
    }
}

/* Mobile */
@media (max-width: 900px) {
    .framework {
        grid-template-columns: 1fr;
    }
}

.hero-video {
    width: 100%;
    border-radius: 18px;
    display: block;
}

@media (max-width: 1024px) {
    .hero-grid,
    .two-col,
    .framework,
    .cta-box,
    .contact-grid,
    .values-grid,
    .services-grid,
    .testimonials-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .nav-toggle { display: inline-block; }
    .site-nav { display: none; width: 100%; }
    .site-nav.open { display: block; }
    .site-nav ul {
        flex-direction: column;
        align-items: flex-start;
        padding-top: 12px;
    }
    .header-inner {
        flex-wrap: wrap;
        padding: 16px 0;
    }
    .hero-grid,
    .two-col,
    .framework,
    .cta-box,
    .contact-grid,
    .values-grid,
    .services-grid,
    .testimonials-grid,
    .form-row.two,
    .footer-grid {
        grid-template-columns: 1fr;
        display: grid;
    }
    .section { padding: 56px 0; }
    .brand-logo { height: 48px; }
}
