/* ============================================================
   SNS Consulting — Redesign Stylesheet (2026)
   Modern corporate, credential-forward.
   Headings: Fraunces (commercial-safe stand-in for MADE Mirage)
   Body: Lato
   Palette: Navy #2f337b · Sage #99a594 · Charcoal #3b3838
   ============================================================ */

:root {
    --navy: #2f337b;
    --navy-deep: #232753;
    --navy-soft: #3b40a0;
    --sage: #99a594;
    --sage-deep: #7c8a78;
    --sage-tint: #eef1ec;
    --charcoal: #3b3838;
    --ink: #1f2024;
    --gray-500: #6b6f76;
    --gray-300: #d6d9de;
    --gray-100: #f4f5f7;
    --light-gray: #e7e7e7;
    --white: #ffffff;

    --shadow-sm: 0 2px 8px rgba(31, 32, 36, 0.06);
    --shadow-md: 0 12px 32px rgba(31, 32, 36, 0.10);
    --shadow-lg: 0 24px 60px rgba(35, 39, 83, 0.18);

    --radius-sm: 10px;
    --radius-md: 16px;
    --radius-lg: 28px;
    --radius-pill: 999px;

    --maxw: 1180px;
    --ease: cubic-bezier(0.22, 0.61, 0.36, 1);

    --font-head: 'Fraunces', Georgia, serif;
    --font-body: 'Lato', system-ui, sans-serif;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    font-size: 17px;
    line-height: 1.65;
    color: var(--charcoal);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-head);
    font-weight: 600;
    line-height: 1.12;
    color: var(--navy);
    letter-spacing: -0.01em;
}

p { color: var(--charcoal); }

a { color: var(--navy); text-decoration: none; transition: color 0.25s var(--ease); }
a:hover { color: var(--sage-deep); }

img { max-width: 100%; height: auto; display: block; }

.container { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

.eyebrow {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--sage-deep);
    margin-bottom: 18px;
}

.text-center { text-align: center; }

/* ==================== BUTTONS ==================== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 32px;
    font-family: var(--font-body);
    font-size: 0.92rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    border-radius: var(--radius-pill);
    border: 2px solid transparent;
    cursor: pointer;
    transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.25s var(--ease), color 0.25s var(--ease);
    line-height: 1;
}
.btn i { font-size: 0.85em; }
.btn:hover { transform: translateY(-2px); }

.btn-primary { background: var(--sage); color: var(--white); box-shadow: var(--shadow-sm); }
.btn-primary:hover { background: var(--sage-deep); color: var(--white); box-shadow: var(--shadow-md); }

.btn-navy { background: var(--navy); color: var(--white); box-shadow: var(--shadow-sm); }
.btn-navy:hover { background: var(--navy-deep); color: var(--white); box-shadow: var(--shadow-md); }

.btn-secondary { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.55); }
.btn-secondary:hover { background: var(--white); color: var(--navy); border-color: var(--white); }

.btn-ghost { background: transparent; color: var(--navy); border-color: var(--gray-300); }
.btn-ghost:hover { border-color: var(--navy); color: var(--navy); }

.btn-lg { padding: 18px 40px; font-size: 1rem; }

/* ==================== HEADER ==================== */
header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.82);
    backdrop-filter: saturate(180%) blur(14px);
    -webkit-backdrop-filter: saturate(180%) blur(14px);
    border-bottom: 1px solid transparent;
    transition: box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
}
header.scrolled {
    box-shadow: var(--shadow-sm);
    border-bottom-color: var(--gray-300);
}
.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: var(--maxw);
    margin: 0 auto;
    padding: 14px 24px;
}
.logo img { height: 64px; }

nav ul { display: flex; list-style: none; gap: 34px; align-items: center; }
nav a {
    font-size: 0.84rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--charcoal);
    padding: 8px 0;
    position: relative;
}
nav a::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 0; height: 2px;
    background: var(--sage);
    transition: width 0.3s var(--ease);
}
nav a:hover, nav a.active { color: var(--navy); }
nav a:hover::after, nav a.active::after { width: 100%; }

nav .nav-cta {
    padding: 11px 22px;
    background: var(--navy);
    color: var(--white);
    border-radius: var(--radius-pill);
    letter-spacing: 0.04em;
}
nav .nav-cta::after { display: none; }
nav .nav-cta:hover { background: var(--navy-deep); color: var(--white); transform: translateY(-1px); }

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 26px;
    cursor: pointer;
    color: var(--navy);
}

/* ==================== HERO ==================== */
.hero {
    position: relative;
    min-height: 92vh;
    display: flex;
    align-items: center;
    color: var(--white);
    padding: 150px 0 90px;
    background:
        radial-gradient(120% 120% at 85% 10%, rgba(153,165,148,0.30) 0%, rgba(153,165,148,0) 55%),
        radial-gradient(100% 100% at 0% 100%, rgba(59,64,160,0.55) 0%, rgba(59,64,160,0) 60%),
        linear-gradient(160deg, var(--navy) 0%, var(--navy-deep) 100%);
    overflow: hidden;
}
.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255,255,255,0.05) 1px, transparent 1px);
    background-size: 26px 26px;
    opacity: 0.6;
    pointer-events: none;
}
.hero .container { position: relative; z-index: 2; }
.hero-content { max-width: 760px; }

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 26px;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 16px;
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--white);
    background: rgba(255,255,255,0.10);
    border: 1px solid rgba(255,255,255,0.22);
    border-radius: var(--radius-pill);
}
.hero-badge i { color: var(--sage); }

.hero h1 {
    font-size: clamp(2.5rem, 5.2vw, 4.1rem);
    color: var(--white);
    margin-bottom: 22px;
    font-weight: 600;
}
.hero h1 .accent { color: var(--sage); font-style: italic; }

.hero-sub {
    font-size: 1.18rem;
    font-weight: 300;
    color: rgba(255,255,255,0.88);
    max-width: 600px;
    margin-bottom: 14px;
}
.hero-sub-payoff {
    display: block;
    text-align: center;
    margin-top: 8px;
}
.hero-kicker {
    font-size: 0.95rem;
    color: var(--sage);
    font-weight: 700;
    letter-spacing: 0.04em;
    margin-bottom: 36px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; }

/* ==================== SECTION SHELL ==================== */
section { padding: 96px 0; }
.section-title { max-width: 720px; margin: 0 auto 56px; text-align: center; }
.section-title h2 { font-size: clamp(2rem, 3.6vw, 2.9rem); margin-bottom: 16px; }
.section-title p { font-size: 1.1rem; color: var(--gray-500); }

.bg-tint { background: var(--gray-100); }
.bg-sage-tint { background: var(--sage-tint); }

/* ==================== TRUST STRIP ==================== */
.trust-strip {
    background: var(--white);
    border-bottom: 1px solid var(--gray-300);
    padding: 30px 0;
}
.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    text-align: center;
}
.trust-item .num {
    font-family: var(--font-head);
    font-size: 2.4rem;
    font-weight: 600;
    color: var(--navy);
    line-height: 1;
}
.trust-item .label {
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--gray-500);
    margin-top: 8px;
}

/* ==================== MISSION / VISION ==================== */
.mv-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}
.mv-card {
    background: var(--white);
    border: 1px solid var(--gray-300);
    border-radius: var(--radius-md);
    padding: 48px 44px;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.mv-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.mv-card .mv-icon {
    width: 58px; height: 58px;
    border-radius: var(--radius-sm);
    display: flex; align-items: center; justify-content: center;
    background: var(--sage-tint); color: var(--navy);
    font-size: 1.5rem;
    margin-bottom: 22px;
}
.mv-card h2 { font-size: 1.7rem; margin-bottom: 16px; }
.mv-card p { color: var(--gray-500); margin-bottom: 24px; }

/* ==================== SERVICES ==================== */
.express-banner {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px;
    text-align: center;
    background: linear-gradient(120deg, var(--navy) 0%, var(--navy-soft) 100%);
    color: var(--white);
    padding: 22px 32px;
    border-radius: var(--radius-md);
    margin-bottom: 48px;
    box-shadow: var(--shadow-md);
}
.express-banner .bolt {
    font-size: 1.3rem;
    background: var(--sage);
    color: var(--navy-deep);
    width: 40px; height: 40px;
    border-radius: 50%;
    display: inline-flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.express-banner strong { font-size: 1.08rem; }
.express-banner span.note { color: rgba(255,255,255,0.82); font-size: 0.95rem; }

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.services-grid--2col { grid-template-columns: repeat(2, 1fr); }
.service-card {
    background: var(--white);
    border: 1px solid var(--gray-300);
    border-radius: var(--radius-md);
    padding: 38px 32px;
    transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
    position: relative;
    overflow: hidden;
}
.service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--sage);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s var(--ease);
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.service-card:hover::before { transform: scaleX(1); }
.service-card .icon {
    width: 62px; height: 62px;
    border-radius: var(--radius-sm);
    background: var(--navy);
    color: var(--white);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 22px;
    transition: background 0.3s var(--ease);
}
.service-card:hover .icon { background: var(--sage); }
.service-card h3 { font-size: 1.28rem; margin-bottom: 12px; }
.service-card p { font-size: 0.97rem; color: var(--gray-500); }

/* ==================== PROPRIETARY PROGRAMS ==================== */
.programs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.program-card {
    background: var(--white);
    border: 1px solid var(--gray-300);
    border-left: 4px solid var(--sage);
    border-radius: var(--radius-md);
    padding: 36px 32px;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.program-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.program-card .tm {
    font-family: var(--font-head);
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 6px;
}
.program-card .role {
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--sage-deep);
    margin-bottom: 16px;
}
.program-card p { font-size: 0.97rem; color: var(--gray-500); }

/* ==================== WHO WE SERVE ==================== */
.serve-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
}
.serve-group h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--sage);
    display: inline-block;
}
.chip-list { display: flex; flex-wrap: wrap; gap: 12px; }
.chip {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 10px 18px;
    background: var(--white);
    border: 1px solid var(--gray-300);
    border-radius: var(--radius-pill);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--charcoal);
    transition: border-color 0.25s var(--ease), background 0.25s var(--ease), color 0.25s var(--ease);
}
.chip::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--sage);
    flex-shrink: 0;
}
.chip:hover { background: var(--sage-tint); border-color: var(--sage); color: var(--navy); }

/* ==================== PULL QUOTE ==================== */
.pull-quote {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}
.pull-quote blockquote {
    font-family: var(--font-head);
    font-style: italic;
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    line-height: 1.3;
    color: var(--navy);
    position: relative;
}
.pull-quote blockquote::before {
    content: '\201C';
    font-size: 3rem;
    color: var(--sage);
    line-height: 0;
    vertical-align: -0.35em;
    margin-right: 6px;
}
.pull-quote blockquote::after {
    content: '\201D';
    font-size: 3rem;
    color: var(--sage);
    line-height: 0;
    vertical-align: -0.55em;
    margin-left: 4px;
}

/* ==================== VALUE / CTA BANNER ==================== */
.value-banner {
    position: relative;
    background: linear-gradient(150deg, var(--navy) 0%, var(--navy-deep) 100%);
    color: var(--white);
    overflow: hidden;
}
.value-banner::after {
    content: '';
    position: absolute;
    right: -120px; top: -120px;
    width: 420px; height: 420px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(153,165,148,0.35) 0%, rgba(153,165,148,0) 70%);
}
.value-inner { position: relative; z-index: 2; max-width: 820px; margin: 0 auto; text-align: center; }
.value-inner h2 {
    color: var(--white);
    font-size: clamp(1.8rem, 3.4vw, 2.7rem);
    font-style: italic;
    margin-bottom: 22px;
}
.value-inner p { color: rgba(255,255,255,0.86); font-size: 1.1rem; margin-bottom: 34px; }

/* ==================== FOOTER ==================== */
footer { background: var(--ink); color: var(--white); padding: 72px 0 32px; }
.footer-grid {
    display: grid;
    grid-template-columns: 2.2fr 1fr 1.2fr 1.4fr;
    gap: 48px;
    margin-bottom: 48px;
}
.footer-logo-text { font-family: var(--font-head); font-size: 1.5rem; font-weight: 600; margin-bottom: 18px; }
.footer-logo-text .sns { color: var(--white); }
.footer-logo-text .word { color: var(--sage); }
.footer-description { font-size: 0.94rem; color: rgba(255,255,255,0.62); line-height: 1.75; }
.footer-social { display: flex; gap: 12px; margin-top: 22px; }
.footer-social a {
    width: 40px; height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    color: var(--white);
    display: flex; align-items: center; justify-content: center;
    transition: background 0.25s var(--ease), transform 0.25s var(--ease);
}
.footer-social a:hover { background: var(--sage); transform: translateY(-3px); }

.footer-section h4 {
    color: var(--sage);
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 20px;
}
.footer-section ul { list-style: none; }
.footer-section li { margin-bottom: 12px; }
.footer-section a { color: rgba(255,255,255,0.68); font-size: 0.94rem; }
.footer-section a:hover { color: var(--sage); }
.footer-contact p { font-size: 0.92rem; color: rgba(255,255,255,0.68); margin-bottom: 14px; display: flex; gap: 11px; align-items: flex-start; }
.footer-contact i { color: var(--sage); margin-top: 4px; }
.footer-contact a { color: rgba(255,255,255,0.68); }
.footer-contact a:hover { color: var(--sage); }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.10);
    padding-top: 28px;
    text-align: center;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
}
.footer-bottom a { color: var(--sage); }
.footer-bottom .legal { margin-top: 10px; }

/* ==================== REVEAL ANIMATION ==================== */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
    .reveal { opacity: 1; transform: none; transition: none; }
    html { scroll-behavior: auto; }
    .btn:hover, .service-card:hover, .mv-card:hover { transform: none; }
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 992px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .programs-grid { grid-template-columns: 1fr; }
    .serve-grid { grid-template-columns: 1fr; gap: 36px; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
    .trust-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
}
@media (max-width: 768px) {
    body { font-size: 16px; }
    .mobile-menu-btn { display: block; }
    nav {
        display: none;
        position: absolute;
        top: 100%; left: 0; right: 0;
        background: var(--white);
        padding: 18px 24px 26px;
        box-shadow: var(--shadow-md);
        border-top: 1px solid var(--gray-300);
    }
    nav.active { display: block; }
    nav ul { flex-direction: column; gap: 6px; align-items: stretch; }
    nav li { border-bottom: 1px solid var(--gray-100); }
    nav a { display: block; padding: 14px 0; }
    nav a::after { display: none; }
    nav .nav-cta { text-align: center; margin-top: 10px; }

    section { padding: 68px 0; }
    .hero { min-height: auto; padding: 130px 0 80px; }
    .mv-grid { grid-template-columns: 1fr; }
    .hero-actions .btn { flex: 1 1 auto; justify-content: center; }
}
@media (max-width: 560px) {
    .services-grid, .services-grid--2col { grid-template-columns: 1fr; }
    .trust-grid { grid-template-columns: 1fr 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .mv-card, .service-card { padding: 32px 26px; }
    .express-banner { flex-direction: column; }
}

/* ============================================================
   INNER PAGES (About · Services · Contact)
   ============================================================ */

/* Compact page hero */
.page-hero {
    position: relative;
    padding: 160px 0 72px;
    text-align: center;
    color: var(--white);
    background:
        radial-gradient(120% 120% at 85% 0%, rgba(153,165,148,0.28) 0%, rgba(153,165,148,0) 55%),
        linear-gradient(160deg, var(--navy) 0%, var(--navy-deep) 100%);
    overflow: hidden;
}
.page-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255,255,255,0.05) 1px, transparent 1px);
    background-size: 26px 26px;
    opacity: 0.6;
    pointer-events: none;
}
.page-hero .container { position: relative; z-index: 2; }
.page-hero .eyebrow { color: var(--sage); }
.page-hero h1 { color: var(--white); font-size: clamp(2.2rem, 4.6vw, 3.4rem); margin-bottom: 14px; }
.page-hero p { color: rgba(255,255,255,0.85); font-size: 1.15rem; max-width: 660px; margin: 0 auto; }

/* Prose + layout helpers */
.prose h2 { font-size: clamp(1.7rem, 3vw, 2.3rem); margin-bottom: 18px; }
.prose h3 { font-size: 1.25rem; margin: 26px 0 12px; }
.prose p { margin-bottom: 20px; font-size: 1.05rem; color: var(--charcoal); }
.lead { font-size: 1.2rem; color: var(--gray-500); margin-bottom: 26px; }
.narrow { max-width: 820px; margin: 0 auto; }

.split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.cards-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.cards-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }

/* Checklist */
.check-list { list-style: none; display: grid; gap: 14px; }
.check-list li { position: relative; padding-left: 34px; line-height: 1.55; }
.check-list li::before {
    content: '\2713';
    position: absolute;
    left: 0; top: 1px;
    width: 22px; height: 22px;
    background: var(--sage-tint);
    color: var(--sage-deep);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.8rem; font-weight: 700;
}
.check-list strong { color: var(--navy); }
.check-list.two-col { grid-template-columns: 1fr 1fr; gap: 14px 32px; }

/* Stat / icon feature card (reusable) */
.icon-card {
    background: var(--white);
    border: 1px solid var(--gray-300);
    border-radius: var(--radius-md);
    padding: 34px 30px;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.icon-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.icon-card .icon {
    width: 56px; height: 56px;
    border-radius: var(--radius-sm);
    background: var(--sage-tint);
    color: var(--navy);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 18px;
}
.icon-card h3 { font-size: 1.2rem; margin-bottom: 10px; }
.icon-card p { color: var(--gray-500); font-size: 0.97rem; }

/* Service detail blocks (Services page) */
.svc-block { padding: 64px 0; border-top: 1px solid var(--gray-300); scroll-margin-top: 100px; }
.svc-block:first-of-type { border-top: none; }
.svc-head { display: flex; align-items: center; gap: 18px; margin-bottom: 22px; }
.svc-head .num {
    font-family: var(--font-head);
    font-size: 1.1rem; font-weight: 600;
    color: var(--white);
    background: var(--navy);
    width: 46px; height: 46px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.svc-head h2 { font-size: clamp(1.6rem, 2.6vw, 2.1rem); }
.svc-quote {
    font-family: var(--font-head);
    font-style: italic;
    font-size: 1.2rem;
    color: var(--sage-deep);
    border-left: 3px solid var(--sage);
    padding-left: 18px;
    margin: 0 0 24px;
}

/* Contact */
.contact-grid2 { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 48px; align-items: start; }
.form-card {
    background: var(--white);
    border: 1px solid var(--gray-300);
    border-radius: var(--radius-md);
    padding: 40px;
    box-shadow: var(--shadow-sm);
}
.form-group { margin-bottom: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-group label { display: block; font-weight: 700; font-size: 0.9rem; margin-bottom: 8px; color: var(--charcoal); }
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 13px 15px;
    border: 1px solid var(--gray-300);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--charcoal);
    background: var(--white);
    transition: border-color 0.25s var(--ease);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { outline: none; border-color: var(--navy); }
.form-group textarea { resize: vertical; min-height: 130px; }

.info-card {
    background: var(--gray-100);
    border-radius: var(--radius-md);
    padding: 28px;
    margin-bottom: 22px;
}
.info-card:last-child { margin-bottom: 0; }
.info-card.accent { background: var(--navy); }
.info-card.accent h3, .info-card.accent p, .info-card.accent a { color: var(--white); }
.info-card h3 { display: flex; align-items: center; gap: 10px; font-size: 1.2rem; margin-bottom: 14px; }
.info-card h3 i { color: var(--sage); }
.info-card.accent h3 i { color: var(--sage); }
.info-card p { color: var(--gray-500); margin-bottom: 6px; font-size: 0.97rem; }
.info-card a { color: var(--navy); font-weight: 600; }
.info-card a:hover { color: var(--sage-deep); }
.contact-socials { display: flex; gap: 12px; margin-top: 6px; }
.contact-socials a {
    width: 44px; height: 44px;
    border-radius: 50%;
    background: var(--navy);
    color: var(--white);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem;
    transition: background 0.25s var(--ease), transform 0.25s var(--ease);
}
.contact-socials a:hover { background: var(--sage); transform: translateY(-3px); }

@media (max-width: 992px) {
    .split, .contact-grid2 { grid-template-columns: 1fr; gap: 40px; }
    .cards-3 { grid-template-columns: 1fr 1fr; }
    .split .split-media { order: -1; }
}
@media (max-width: 768px) {
    .page-hero { padding: 130px 0 60px; }
    .check-list.two-col { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
    .cards-3, .cards-2 { grid-template-columns: 1fr; }
    .form-card { padding: 28px 22px; }
}

/* Imagery: split media + full-width photo band */
.split-media img {
    width: 100%;
    height: 440px;
    object-fit: cover;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
}
.image-band {
    position: relative;
    padding: 120px 0;
    color: var(--white);
    text-align: center;
    background-size: cover;
    background-position: center;
    background-attachment: scroll;
}
.image-band::before {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(35,39,83,0.88) 0%, rgba(47,51,123,0.78) 100%);
}
.image-band .container { position: relative; z-index: 2; }
.image-band .eyebrow { color: var(--sage); }
.image-band h2 { color: var(--white); font-style: italic; font-size: clamp(1.8rem, 3.4vw, 2.6rem); margin-bottom: 14px; }
.image-band p { color: rgba(255,255,255,0.9); max-width: 700px; margin: 0 auto 26px; font-size: 1.12rem; }
@media (max-width: 768px) {
    .split-media img { height: 300px; }
    .image-band { padding: 84px 0; }
}

/* Legal / policy pages */
.policy { max-width: 820px; margin: 0 auto; }
.policy .updated { color: var(--gray-500); font-style: italic; margin-bottom: 30px; }
.policy h2 { font-size: 1.45rem; margin: 40px 0 14px; }
.policy h2:first-of-type { margin-top: 0; }
.policy p { margin-bottom: 16px; line-height: 1.8; color: var(--charcoal); }
.policy ul { margin: 0 0 18px 22px; }
.policy li { margin-bottom: 8px; line-height: 1.7; }
.policy a { color: var(--navy); font-weight: 600; }
.policy a:hover { color: var(--sage-deep); }
.policy .contact-box { background: var(--gray-100); border-radius: var(--radius-md); padding: 26px 30px; margin-top: 8px; }
.policy .contact-box p { margin-bottom: 8px; }

/* Capability Statement */
.cap-header {
    display: grid;
    grid-template-columns: 1.6fr 1fr;
    gap: 40px;
    align-items: start;
    padding-bottom: 34px;
    border-bottom: 2px solid var(--navy);
    margin-bottom: 14px;
}
.cap-header .tagline { color: var(--sage-deep); font-weight: 700; font-size: 1.1rem; margin: 8px 0 16px; font-family: var(--font-body); }
.cap-header p.overview { color: var(--charcoal); line-height: 1.75; }
.cap-contact { background: var(--gray-100); border-radius: var(--radius-md); padding: 24px 26px; }
.cap-contact p { font-size: 0.94rem; margin-bottom: 10px; display: flex; gap: 11px; align-items: flex-start; line-height: 1.5; }
.cap-contact i { color: var(--sage); margin-top: 4px; width: 16px; text-align: center; }
.cap-contact a { color: var(--navy); font-weight: 600; }

.naics-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.naics-item { background: var(--white); border: 1px solid var(--gray-300); border-radius: var(--radius-sm); padding: 16px 14px; text-align: center; }
.naics-code { display: block; font-family: var(--font-head); font-size: 1.3rem; font-weight: 600; color: var(--navy); margin-bottom: 4px; }
.naics-desc { font-size: 0.8rem; color: var(--gray-500); line-height: 1.35; }

.cert-badges { display: flex; flex-wrap: wrap; gap: 12px; }
.cert-badge { background: var(--navy); color: var(--white); padding: 12px 20px; border-radius: var(--radius-pill); font-weight: 700; font-size: 0.88rem; }
.cert-badge.primary { background: var(--sage); }

.panel-navy { background: linear-gradient(150deg, var(--navy) 0%, var(--navy-deep) 100%); color: var(--white); border-radius: var(--radius-md); padding: 44px; }
.panel-navy h2, .panel-navy h3 { color: var(--white); }
.panel-navy p { color: rgba(255,255,255,0.88); margin-bottom: 14px; }

.data-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px 32px; }
.data-item { display: flex; gap: 10px; border-bottom: 1px solid var(--gray-300); padding-bottom: 12px; font-size: 0.96rem; }
.data-label { font-weight: 700; color: var(--navy); min-width: 140px; }

@media (max-width: 992px) {
    .cap-header { grid-template-columns: 1fr; }
    .naics-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
    .naics-grid { grid-template-columns: 1fr; }
    .data-grid { grid-template-columns: 1fr; }
    .data-item { flex-direction: column; gap: 2px; }
    .panel-navy { padding: 30px 24px; }
}
@media print {
    header, footer, .page-hero, .cap-cta, .nav-cta { display: none !important; }
    section { padding: 16px 0 !important; }
}
