*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:"Segoe UI",Arial,sans-serif;
    }

    :root{
    --navy:#002147;
    --navy-soft:#17365d;
    --gold:#c5a059;
    --gold-soft:#e8d3a6;
    --gold-pale:#f7efe0;
    --white:#ffffff;
    --paper:#f7f4ed;
    --mist:#eef2f6;
    --text:#5f6777;
    --shadow:rgba(0,33,71,.12);
    }

    html{
    scroll-behavior:smooth;
    }
    
    body{
    background:linear-gradient(135deg,#eef3f8,#f7fbff);
    overflow-x:hidden;
    color:#0d2b52;
    line-height:1.5;
    }
    
    /* HEADER PREMIUM */
    
    header{
    position:fixed;
    top:0;
    width:100%;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:18px 40px;
    background:rgba(255,255,255,.75);
    backdrop-filter:blur(18px);
    box-shadow:0 8px 30px rgba(0,0,0,.08);
    z-index:1000;
    overflow:hidden;
    }
    
    .header-glow{
    position:absolute;
    bottom:0;
    left:0;
    width:100%;
    height:3px;
    background:linear-gradient(90deg,#0d2b52,#4da6ff,#0d2b52);
    animation:glowmove 4s linear infinite;
    }
    
    @keyframes glowmove{
    0%{transform:translateX(-100%);}
    100%{transform:translateX(100%);}
    }
    
    .logo-box{
    display:flex;
    align-items:center;
    gap:20px;
    z-index:2;
    }

    .home-link,
    .logo-link{
    color:inherit;
    text-decoration:none;
    }
    
    .logo{
    width:65px;
    height:65px;
    border-radius:18px;
    transition:.4s;
    box-shadow:0 10px 25px rgba(0,0,0,.12);
    }
    
    .logo:hover{
    transform:rotate(8deg) scale(1.08);
    }
    
    .logo-box h1{
    font-size:2rem;
    font-weight:800;
    letter-spacing:1px;
    }
    
    nav{
    display:flex;
    gap:18px;
    z-index:2;
    }
    
    nav a{
    position:relative;
    text-decoration:none;
    color:#5a6478;
    font-weight:bold;
    padding:14px 18px;
    border-radius:16px;
    transition:.35s;
    }
    
    nav a::after{
    content:'';
    position:absolute;
    left:50%;
    bottom:5px;
    width:0%;
    height:3px;
    background:#0d2b52;
    transition:.35s;
    transform:translateX(-50%);
    }
    
    nav a:hover::after{
    width:70%;
    }
    
    nav a:hover,
    .active{
    background:white;
    color:#0d2b52;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
    transform:translateY(-3px);
    }
    
    .professional-layout{
    padding:190px 8% 100px;
    }

    .overview-section,
    .services-section,
    .commitment-section{
    margin-top:36px;
    }

    .section-header{
    margin-bottom:28px;
    }

    .section-tag{
    display:inline-flex;
    align-items:center;
    padding:12px 22px;
    border-radius:999px;
    border:1px solid rgba(13,43,82,.12);
    background:rgba(255,255,255,.88);
    box-shadow:0 10px 30px rgba(13,43,82,.08);
    color:#1d3d68;
    font-size:.95rem;
    font-weight:700;
    letter-spacing:.02em;
    }

    .overview-grid{
    display:grid;
    grid-template-columns:1.1fr .9fr;
    gap:28px;
    align-items:start;
    }

    .overview-copy,
    .standard-panel,
    .service-panel{
    background:linear-gradient(180deg,rgba(255,255,255,.96),rgba(255,255,255,.88));
    border:1px solid rgba(212,177,112,.28);
    border-radius:30px;
    box-shadow:0 18px 40px rgba(13,43,82,.08);
    }

    .overview-copy{
    padding:8px 8px 0 0;
    background:transparent;
    border:none;
    box-shadow:none;
    }

    .overview-copy h2{
    max-width:760px;
    font-size:4.1rem;
    line-height:.98;
    margin-bottom:18px;
    text-wrap:balance;
    }

    .lead{
    max-width:760px;
    font-size:1.15rem;
    line-height:1.65;
    color:#5a6478;
    margin-bottom:28px;
    font-weight:600;
    }

    .overview-actions{
    display:flex;
    flex-wrap:wrap;
    gap:16px;
    margin-bottom:24px;
    }

    .cta-button{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:16px 28px;
    border-radius:18px;
    background:#0d2b52;
    color:#fff;
    text-decoration:none;
    font-weight:800;
    box-shadow:0 14px 30px rgba(13,43,82,.22);
    transition:transform .3s, box-shadow .3s, background .3s;
    }

    .cta-button:hover{
    transform:translateY(-4px);
    box-shadow:0 18px 34px rgba(13,43,82,.26);
    }

    .secondary-link{
    background:#fff;
    color:#0d2b52;
    border:1px solid rgba(13,43,82,.12);
    box-shadow:0 10px 20px rgba(13,43,82,.08);
    }

    .light{
    background:#fff;
    color:#0d2b52;
    box-shadow:none;
    }

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

    .pillar-card{
    background:rgba(255,255,255,.94);
    border:1px solid rgba(212,177,112,.22);
    border-radius:24px;
    padding:22px;
    box-shadow:0 12px 24px rgba(13,43,82,.06);
    }

    .pillar-card h3{
    font-size:1.1rem;
    margin-bottom:10px;
    }

    .pillar-card p{
    color:#5a6478;
    font-weight:600;
    }

    .standard-panel{
    padding:28px;
    }

    .about-grid{
    align-items:stretch;
    }

    .values-grid{
    align-items:start;
    }

    .secondary-lead{
    margin-top:-6px;
    }

    .identity-panel{
    display:flex;
    flex-direction:column;
    justify-content:flex-start;
    }

    .identity-list{
    display:flex;
    flex-direction:column;
    gap:14px;
    margin-top:18px;
    }

    .standard-panel h3{
    font-size:2.05rem;
    line-height:1.05;
    margin-bottom:20px;
    }

    .standard-media{
    overflow:hidden;
    border-radius:24px;
    margin-bottom:18px;
    position:relative;
    transform-style:preserve-3d;
    transition:transform .2s ease, box-shadow .2s ease;
    box-shadow:0 28px 55px rgba(13,43,82,.18);
    }

    .standard-media img{
    display:block;
    width:100%;
    height:280px;
    object-fit:cover;
    }

    .floating-box{
    position:absolute;
    right:18px;
    bottom:18px;
    padding:14px 18px;
    border-radius:16px;
    background:rgba(255,255,255,.92);
    box-shadow:0 10px 25px rgba(0,0,0,.14);
    color:#0d2b52;
    font-weight:800;
    backdrop-filter:blur(10px);
    }

    .floating-badge{
    transform:translateZ(40px);
    max-width:78%;
    }

    .standard-panel p{
    color:#5a6478;
    font-size:1.05rem;
    line-height:1.65;
    font-weight:600;
    }

    .certification-badges{
    display:flex;
    flex-wrap:wrap;
    gap:14px;
    margin-top:20px;
    }

    .certification-badges span,
    .service-chip{
    display:inline-flex;
    align-items:center;
    padding:12px 18px;
    border-radius:999px;
    background:linear-gradient(180deg,#fff8eb,#fff);
    border:1px solid rgba(212,177,112,.38);
    color:#1d3d68;
    font-weight:800;
    }

    .badge-button{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:12px 18px;
    border-radius:999px;
    border:1px solid rgba(212,177,112,.38);
    background:linear-gradient(180deg,#fff8eb,#fff);
    color:#1d3d68;
    font-weight:800;
    cursor:pointer;
    transition:transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease;
    }

    .badge-button:hover,
    .badge-button.is-active{
    transform:translateY(-2px);
    background:#0d2b52;
    color:#fff;
    box-shadow:0 12px 26px rgba(13,43,82,.18);
    }

    .section-heading{
    margin-bottom:24px;
    }

    .section-heading h2{
    font-size:3.1rem;
    margin-bottom:8px;
    }

    .section-heading p{
    color:#5a6478;
    font-size:1.15rem;
    font-weight:700;
    max-width:820px;
    }

    .mission-section,
    .work-section,
    .compliance-section{
    margin-top:48px;
    }

    .values-split-section,
    .core-values-section,
    .contact-content-section,
    .policy-blocks-section{
    margin-top:48px;
    }

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

    .service-panel{
    padding:30px;
    transition:transform .25s ease, box-shadow .25s ease, border-color .25s ease, background .25s ease;
    cursor:pointer;
    }

    .service-panel h3{
    font-size:2rem;
    line-height:1.08;
    margin:18px 0 14px;
    }

    .service-panel p{
    color:#5a6478;
    font-size:1.06rem;
    line-height:1.7;
    font-weight:600;
    margin-bottom:22px;
    }

    .service-panel a{
    color:#0d2b52;
    font-size:1.05rem;
    font-weight:800;
    text-decoration:none;
    }

    .mission-copy{
    margin-bottom:0;
    color:#5a6478;
    font-size:1.06rem;
    line-height:1.7;
    font-weight:700;
    }

    .split-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:20px;
    }

    .split-panel{
    min-height:100%;
    }

    .split-panel h2{
    font-size:3rem;
    line-height:1.04;
    margin-bottom:12px;
    }

    .split-intro{
    color:#5a6478;
    font-size:1.1rem;
    line-height:1.65;
    font-weight:700;
    margin-bottom:22px;
    }

    .stacked-panels{
    display:grid;
    gap:16px;
    }

    .compact-panel{
    padding:20px;
    cursor:default;
    box-shadow:0 14px 28px rgba(13,43,82,.06);
    }

    .compact-panel:hover{
    transform:none;
    }

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

    .contact-grid{
    align-items:start;
    }

    .staff-grid{
    align-items:start;
    }

    .news-heading{
    margin-bottom:28px;
    }

    .news-card{
    display:grid;
    grid-template-columns:320px minmax(0,1fr);
    gap:28px;
    align-items:center;
    background:linear-gradient(180deg,rgba(255,255,255,.98),rgba(247,239,224,.78));
    border:1px solid rgba(197,160,89,.28);
    border-radius:34px;
    box-shadow:0 18px 40px rgba(0,33,71,.08);
    padding:32px;
    max-width:1180px;
    }

    .news-card-media{
    display:flex;
    align-items:center;
    justify-content:center;
    min-height:320px;
    padding:0;
    border-radius:28px;
    background:linear-gradient(180deg,#f6eddc,var(--white));
    border:1px solid rgba(197,160,89,.24);
    box-shadow:inset 0 0 0 1px rgba(255,255,255,.35);
    overflow:hidden;
    }

    .news-card-media img{
    display:block;
    width:100%;
    height:320px;
    object-fit:contain;
    object-position:center center;
    filter:saturate(.94) contrast(1.02);
    background:linear-gradient(180deg,#f6eddc,var(--white));
    }

    .news-card-copy h3{
    font-size:2.45rem;
    line-height:1.08;
    color:var(--navy);
    margin:16px 0 14px;
    max-width:760px;
    }

    .news-card-copy p{
    color:var(--text);
    font-size:1.08rem;
    line-height:1.75;
    font-weight:600;
    max-width:760px;
    margin-bottom:16px;
    }

    .news-actions{
    margin-top:10px;
    margin-bottom:0;
    }

    .policies-grid{
    align-items:start;
    }

    .policies-side-panel{
    min-height:100%;
    }

    .direct-contact-panel{
    min-height:100%;
    }

    .leadership-panel{
    min-height:100%;
    }

    .leadership-quote{
    font-size:1.28rem;
    line-height:1.55;
    color:var(--navy-soft);
    font-weight:700;
    margin-bottom:20px;
    }

    .contact-methods{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:14px;
    margin-top:18px;
    }

    .contact-pill,
    .social-pill{
    display:flex;
    flex-direction:column;
    gap:4px;
    padding:16px 18px;
    border-radius:22px;
    border:1px solid rgba(212,177,112,.34);
    background:linear-gradient(180deg,#fffdf9,#fff);
    color:#0d2b52;
    text-decoration:none;
    box-shadow:0 10px 24px rgba(13,43,82,.06);
    transition:transform .25s ease, box-shadow .25s ease, border-color .25s ease;
    }

    .contact-pill:hover,
    .social-pill:hover{
    transform:translateY(-4px);
    box-shadow:0 18px 30px rgba(13,43,82,.1);
    border-color:rgba(13,43,82,.2);
    }

    .contact-pill strong{
    font-size:1rem;
    }

    .contact-pill span{
    font-size:1.05rem;
    font-weight:800;
    }

    .social-block{
    margin-top:22px;
    }

    .social-label{
    margin-bottom:14px;
    }

    .social-links{
    display:flex;
    flex-wrap:wrap;
    gap:12px;
    }

    .social-pill{
    justify-content:center;
    min-width:120px;
    font-weight:800;
    }

    .contact-form{
    display:grid;
    gap:14px;
    margin-top:12px;
    }

    .contact-form{
    max-width:640px;
    }

    .contact-form label{
    display:grid;
    gap:8px;
    color:#0d2b52;
    font-weight:700;
    }

    .contact-form label span{
    font-size:.98rem;
    }

    .contact-form label + label{
    margin-top:2px;
    }

    .contact-form input,
    .contact-form textarea{
    width:100%;
    padding:14px 16px;
    border-radius:14px;
    border:1px solid rgba(13,43,82,.14);
    background:#fff;
    color:#0d2b52;
    font:inherit;
    box-shadow:inset 0 1px 2px rgba(13,43,82,.04);
    transition:border-color .25s ease, box-shadow .25s ease, transform .25s ease;
    }

    .contact-form input:focus,
    .contact-form textarea:focus{
    outline:none;
    border-color:rgba(13,43,82,.35);
    box-shadow:0 0 0 4px rgba(77,166,255,.12);
    }

    .contact-form textarea{
    resize:vertical;
    min-height:120px;
    }

    .form-submit{
    width:max-content;
    padding:16px 30px;
    border:none;
    border-radius:18px;
    background:#0d2b52;
    color:#fff;
    font:inherit;
    font-weight:800;
    cursor:pointer;
    box-shadow:0 14px 30px rgba(13,43,82,.2);
    transition:transform .25s ease, box-shadow .25s ease;
    }

    .form-submit:hover{
    transform:translateY(-3px);
    box-shadow:0 18px 34px rgba(13,43,82,.24);
    }

    .form-feedback{
    min-height:24px;
    margin:0;
    color:#1d3d68;
    font-weight:700;
    }

    .form-panel{
    padding-bottom:34px;
    }

    .availability-panel{
    padding-bottom:34px;
    }

    .availability-panel .stacked-panels{
    gap:22px;
    margin-top:8px;
    }

    .availability-panel .compact-panel{
    padding:30px 32px;
    border-radius:30px;
    }

    .availability-panel .mission-copy{
    font-size:1.12rem;
    line-height:1.75;
    }

    .support-card{
    padding:38px 32px;
    border-radius:30px;
    background:linear-gradient(90deg,#22344f,#152238);
    color:#fff;
    box-shadow:0 24px 45px rgba(13,43,82,.2);
    margin-top:4px;
    }

    .support-card h3{
    font-size:2rem;
    line-height:1.08;
    margin-bottom:12px;
    }

    .support-card p{
    margin-bottom:22px;
    color:rgba(255,255,255,.82);
    font-size:1.08rem;
    line-height:1.65;
    font-weight:600;
    }

    .support-card .cta-button{
    min-width:210px;
    }

    .policy-card{
    background:linear-gradient(180deg,rgba(255,255,255,.96),rgba(255,255,255,.9));
    border:1px solid rgba(212,177,112,.26);
    border-radius:30px;
    box-shadow:0 18px 40px rgba(13,43,82,.08);
    padding:34px;
    margin-bottom:18px;
    }

    .policy-card h2,
    .policy-card h3{
    color:#0d2b52;
    line-height:1.08;
    margin-bottom:14px;
    }

    .policy-card h2{
    font-size:2.35rem;
    }

    .policy-card h3{
    font-size:2rem;
    }

    .policy-card p{
    color:#5a6478;
    font-size:1.08rem;
    line-height:1.7;
    font-weight:600;
    margin-bottom:0;
    }

    .policy-list{
    margin-top:14px;
    padding-left:28px;
    color:#111f37;
    }

    .policy-list li{
    margin-bottom:10px;
    font-size:1.06rem;
    line-height:1.6;
    }

    .leadership-section{
    margin-top:48px;
    }

    .executive-profile-card{
    background:linear-gradient(180deg,rgba(255,255,255,.98),rgba(247,239,224,.78));
    border:1px solid rgba(197,160,89,.28);
    border-radius:34px;
    box-shadow:0 18px 40px rgba(0,33,71,.08);
    padding:34px;
    max-width:1240px;
    margin:0 auto;
    overflow:hidden;
    }

    .executive-summary-bar{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:16px;
    margin-bottom:26px;
    padding:0 0 24px;
    border-bottom:1px solid rgba(197,160,89,.28);
    }

    .executive-summary-item{
    background:linear-gradient(180deg,#fffdf8,var(--white));
    border:1px solid rgba(197,160,89,.24);
    border-radius:22px;
    padding:18px 20px;
    box-shadow:0 10px 20px rgba(0,33,71,.05);
    }

    .summary-label{
    display:block;
    margin-bottom:6px;
    color:var(--text);
    font-size:.88rem;
    font-weight:700;
    letter-spacing:.04em;
    text-transform:uppercase;
    }

    .executive-summary-item strong{
    color:var(--navy);
    font-size:1rem;
    line-height:1.45;
    }

    .executive-top{
    display:grid;
    grid-template-columns:minmax(300px,390px) minmax(0,1fr);
    gap:34px;
    align-items:center;
    }

    .executive-image-wrap{
    display:flex;
    align-items:stretch;
    justify-content:center;
    height:100%;
    }

    .executive-image{
    width:100%;
    max-width:390px;
    min-height:520px;
    overflow:hidden;
    border-radius:28px;
    border:1px solid rgba(197,160,89,.3);
    box-shadow:0 24px 45px rgba(0,33,71,.14);
    background:var(--white);
    }

    .executive-image img{
    display:block;
    width:100%;
    height:100%;
    object-fit:cover;
    object-position:center top;
    }

    .executive-copy{
    max-width:720px;
    }

    .executive-copy h3{
    font-size:2.8rem;
    line-height:1.04;
    margin:14px 0 12px;
    color:var(--navy);
    }

    .executive-role{
    margin-bottom:20px;
    color:var(--navy-soft);
    font-size:1.08rem;
    line-height:1.6;
    }

    .executive-copy p{
    color:var(--text);
    font-size:1.08rem;
    line-height:1.78;
    font-weight:600;
    margin-bottom:18px;
    }

    .executive-badges{
    margin-top:12px;
    }

    .executive-strengths-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:18px;
    margin-top:30px;
    }

    .executive-strength{
    cursor:default;
    min-height:100%;
    padding:26px;
    }

    .executive-strength:hover{
    transform:none;
    }

    .executive-footer{
    margin-top:30px;
    padding-top:26px;
    border-top:1px solid rgba(197,160,89,.28);
    }

    .executive-footer p{
    color:var(--navy);
    font-size:1.16rem;
    line-height:1.7;
    font-weight:600;
    margin-bottom:18px;
    }

    .executive-contact-row{
    display:flex;
    flex-wrap:wrap;
    gap:14px;
    margin-bottom:22px;
    }

    .contact-pill-inline{
    min-width:unset;
    flex-direction:row;
    align-items:center;
    gap:10px;
    }

    .contact-pill-inline strong{
    font-size:.98rem;
    }

    .contact-pill-inline span{
    font-size:1rem;
    }

    .executive-actions{
    margin-bottom:0;
    }

    .policy-group{
    padding:40px;
    }

    .policy-group-header{
    max-width:980px;
    margin-bottom:24px;
    }

    .policy-items-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:18px;
    }

    .policy-item-card{
    background:linear-gradient(180deg,#fffdf8,#fff);
    border:1px solid rgba(212,177,112,.22);
    border-radius:24px;
    padding:28px;
    box-shadow:0 12px 24px rgba(13,43,82,.05);
    min-height:100%;
    }

    .policy-item-card-wide{
    grid-column:1 / -1;
    }

    .policy-item-card h3{
    margin-bottom:12px;
    }

    .policy-item-card p{
    margin-bottom:0;
    }

    .value-card{
    min-height:100%;
    }

    .process-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:18px;
    }

    .process-card{
    min-height:100%;
    }

    .process-step{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    width:36px;
    height:36px;
    border-radius:14px;
    border:1px solid rgba(13,43,82,.15);
    background:#edf4ff;
    color:#0d2b52;
    font-weight:900;
    box-shadow:0 10px 18px rgba(13,43,82,.08);
    }

    .compliance-badges{
    margin-bottom:20px;
    }

    .service-extra{
    max-height:0;
    overflow:hidden;
    opacity:0;
    margin-bottom:0;
    transition:max-height .35s ease, opacity .3s ease, margin-bottom .3s ease;
    }

    .interactive-card:hover,
    .interactive-card:focus-visible,
    .interactive-card.is-selected{
    transform:translateY(-8px);
    border-color:rgba(13,43,82,.28);
    box-shadow:0 22px 45px rgba(13,43,82,.14);
    }

    .interactive-card.is-selected .service-extra{
    max-height:180px;
    opacity:1;
    margin-bottom:22px;
    }

    .mission-grid .interactive-card.is-selected,
    .compliance-grid .interactive-card.is-selected{
    background:linear-gradient(180deg,#ffffff,#f8fbff);
    }

    .interactive-card:focus-visible,
    .badge-button:focus-visible,
    .cta-button:focus-visible,
    nav a:focus-visible{
    outline:3px solid rgba(77,166,255,.55);
    outline-offset:3px;
    }

    .interactive-card.is-muted{
    opacity:.5;
    transform:none;
    }

    .commitment-card{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:28px;
    padding:40px;
    border-radius:34px;
    background:linear-gradient(90deg,#22344f,#152238);
    box-shadow:0 24px 45px rgba(13,43,82,.24);
    color:#fff;
    }

    .commitment-card h2{
    font-size:3rem;
    line-height:1.06;
    margin-bottom:12px;
    }

    .commitment-card p{
    font-size:1.2rem;
    color:rgba(255,255,255,.84);
    font-weight:600;
    }

    .reveal-on-scroll{
    opacity:0;
    transform:translateY(28px);
    transition:opacity .7s ease, transform .7s ease;
    }

    .reveal-on-scroll.is-visible{
    opacity:1;
    transform:translateY(0);
    }

    body{
    background:
    radial-gradient(circle at top right,rgba(197,160,89,.14),transparent 28%),
    radial-gradient(circle at left center,rgba(0,33,71,.05),transparent 30%),
    linear-gradient(135deg,var(--mist),var(--paper));
    color:var(--navy);
    }

    header{
    background:rgba(255,255,255,.9);
    border-bottom:1px solid rgba(197,160,89,.24);
    box-shadow:0 10px 30px rgba(0,33,71,.09);
    }

    .header-glow{
    background:linear-gradient(90deg,var(--gold),var(--navy),var(--gold));
    }

    .logo,
    .standard-media,
    .overview-copy,
    .standard-panel,
    .service-panel,
    .pillar-card,
    .policy-card,
    .policy-item-card{
    box-shadow:0 16px 36px rgba(0,33,71,.08);
    }

    .logo-box h1,
    .overview-copy h2,
    .standard-panel h3,
    .section-heading h2,
    .service-panel h3,
    .policy-card h2,
    .policy-card h3,
    .split-panel h2,
    .commitment-card h2,
    .support-card h3{
    color:var(--navy);
    }

    nav a{
    color:var(--text);
    }

    nav a::after{
    background:var(--gold);
    }

    nav a:hover,
    .active{
    background:var(--white);
    color:var(--navy);
    box-shadow:0 10px 25px rgba(0,33,71,.08);
    }

    .section-tag,
    .service-chip,
    .badge-button,
    .contact-pill,
    .social-pill,
    .policy-item-card{
    border-color:rgba(197,160,89,.35);
    }

    .section-tag,
    .service-chip,
    .badge-button{
    background:linear-gradient(180deg,#fffaf0,var(--white));
    color:var(--navy);
    }

    .badge-button:hover,
    .badge-button.is-active{
    background:var(--navy);
    color:var(--white);
    box-shadow:0 12px 26px rgba(0,33,71,.2);
    }

    .standard-panel,
    .service-panel,
    .policy-card{
    background:linear-gradient(180deg,rgba(255,255,255,.98),rgba(247,239,224,.78));
    border-color:rgba(197,160,89,.28);
    }

    .overview-copy{
    background:transparent;
    box-shadow:none;
    }

    .pillar-card,
    .policy-item-card,
    .compact-panel{
    background:linear-gradient(180deg,#fffdf8,var(--white));
    border:1px solid rgba(197,160,89,.24);
    }

    .lead,
    .pillar-card p,
    .standard-panel p,
    .section-heading p,
    .service-panel p,
    .mission-copy,
    .split-intro,
    .policy-card p,
    .form-feedback,
    .contact-form label,
    .contact-pill,
    .social-label{
    color:var(--text);
    }

    .cta-button,
    .form-submit{
    background:var(--navy);
    color:var(--white);
    box-shadow:0 14px 30px rgba(0,33,71,.22);
    }

    .secondary-link,
    .light{
    background:var(--white);
    color:var(--navy);
    border:1px solid rgba(197,160,89,.34);
    box-shadow:0 10px 20px rgba(0,33,71,.08);
    }

    .floating-box{
    color:var(--navy);
    border:1px solid rgba(197,160,89,.3);
    box-shadow:0 10px 25px rgba(0,33,71,.14);
    }

    .contact-pill,
    .social-pill{
    background:linear-gradient(180deg,#fffdf8,var(--white));
    color:var(--navy);
    box-shadow:0 10px 24px rgba(0,33,71,.06);
    }

    .contact-pill:hover,
    .social-pill:hover{
    border-color:rgba(197,160,89,.5);
    box-shadow:0 18px 30px rgba(0,33,71,.1);
    }

    .contact-form input,
    .contact-form textarea{
    border:1px solid rgba(197,160,89,.28);
    color:var(--navy);
    }

    .contact-form input:focus,
    .contact-form textarea:focus{
    border-color:rgba(197,160,89,.9);
    box-shadow:0 0 0 4px rgba(197,160,89,.15);
    }

    .support-card,
    .commitment-card{
    background:linear-gradient(90deg,var(--navy),var(--navy-soft));
    color:var(--white);
    }

    .support-card p,
    .commitment-card p{
    color:rgba(255,255,255,.84);
    }

    .policy-list{
    color:var(--navy);
    }

    .process-step{
    background:var(--gold-pale);
    color:var(--navy);
    border-color:rgba(197,160,89,.32);
    }

    .mission-grid .interactive-card.is-selected,
    .compliance-grid .interactive-card.is-selected{
    background:linear-gradient(180deg,var(--white),#f9f3e6);
    }

    .interactive-card:hover,
    .interactive-card:focus-visible,
    .interactive-card.is-selected{
    border-color:rgba(197,160,89,.45);
    box-shadow:0 22px 45px rgba(0,33,71,.14);
    }

    .interactive-card:focus-visible,
    .badge-button:focus-visible,
    .cta-button:focus-visible,
    nav a:focus-visible{
    outline:3px solid rgba(197,160,89,.55);
    }

    @media (max-width: 1100px){
    header{
    padding:18px 24px;
    }

    .logo-box h1{
    font-size:1.4rem;
    }

    nav{
    gap:8px;
    flex-wrap:wrap;
    justify-content:flex-end;
    }

    .overview-grid,
    .services-grid,
    .pillars-grid,
    .process-grid,
    .split-grid,
    .values-cards-grid,
    .contact-methods,
    .policy-items-grid,
    .executive-summary-bar,
    .executive-top,
    .executive-strengths-grid,
    .news-card{
    grid-template-columns:1fr;
    }

    .overview-copy h2{
    font-size:3rem;
    }

    .section-heading h2,
    .commitment-card h2{
    font-size:2.4rem;
    }

    .commitment-card{
    flex-direction:column;
    align-items:flex-start;
    }

    }

    @media (max-width: 700px){
    header{
    position:static;
    flex-direction:column;
    gap:18px;
    }

    .professional-layout{
    padding-left:6%;
    padding-right:6%;
    padding-top:110px;
    }

    .overview-copy h2{
    font-size:2.35rem;
    }

    .section-heading h2,
    .standard-panel h3,
    .service-panel h3,
    .commitment-card h2,
    .split-panel h2,
    .policy-card h2,
    .policy-card h3{
    font-size:1.9rem;
    }

    .overview-actions{
    flex-direction:column;
    align-items:stretch;
    }

    .pillar-card,
    .service-panel,
    .standard-panel,
    .commitment-card{
    padding:24px;
    }

    .standard-media img{
    height:220px;
    }
    }
