/* ── Local tokens (not in parent) ─────────────────── */
.cs { --cs-ink: #111827; --cs-body: #374151; --cs-border: #e0dbd2; --cs-toc-active: var(--bg-secondary); }

/* ── Shared utilities ──────────────────────────────── */
.cs-eyebrow {
    font-size: .62rem; font-weight: 700; letter-spacing: .14em;
    text-transform: uppercase; color: var(--accent-primary);
    display: flex; align-items: center; gap: .5rem;
    margin-bottom: .875rem;
}
.cs-eyebrow-line { display: inline-block; width: 26px; height: 2px; background: var(--secondary-beige); flex-shrink: 0; }

/* ════════════ 1. HERO ════════════════════════════════ */
.cs-hero {
    background: var(--primary-dark-green);
    padding: 4.5rem 0 3.5rem;
    position: relative; overflow: hidden;
}
.cs-hero::after {
    content: ''; position: absolute;
    top: 50%; right: -80px; transform: translateY(-50%);
    width: 420px; height: 420px; border-radius: 50%;
    border: 1px solid rgba(255,255,255,.05);
    pointer-events: none;
}
.cs-hero-eyebrow { color: var(--secondary-beige); margin-bottom: 1.25rem; }
.cs-hero h1 {
    font-size: clamp(2rem, 4.5vw, 3.25rem);
    font-weight: 900; color: #fff;
    line-height: 1.1; letter-spacing: -.02em;
    margin-bottom: 1.25rem; max-width: 640px;
}
.cs-hero-body {
    font-size: .975rem; color: rgba(255,255,255,.75);
    line-height: 1.75; max-width: 580px; margin-bottom: 1.5rem;
}
/* Feature bullets 2×2 grid */
.cs-bullets {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: .5rem 1.5rem; margin-bottom: 1.75rem;
}
.cs-bullet {
    display: flex; align-items: flex-start; gap: .625rem;
    font-size: .875rem; color: rgba(255,255,255,.85);
    line-height: 1.4;
}
.cs-bullet-icon {
    width: 18px; min-width: 18px; height: 18px;
    background: var(--secondary-beige);
    color: var(--bg-primary);
    display: flex; align-items: center; justify-content: center;
    font-size: .6rem; font-weight: 900; flex-shrink: 0;
    margin-top: 1px;
}
/* CTA buttons */
.cs-hero-ctas { display: flex; flex-wrap: wrap; gap: .75rem; margin-bottom: 1.5rem; }
.cs-btn-primary {
    display: inline-flex; align-items: center; justify-content: center;
    padding: .8rem 1.5rem;
    background: var(--primary-orange); color: #fff;
    font-size: .7rem; font-weight: 800; letter-spacing: .1em;
    text-transform: uppercase; text-decoration: none; border: 2px solid var(--primary-orange);
    transition: opacity .15s; white-space: nowrap;
}
.cs-btn-primary:hover { opacity: .88; color: #fff; }
.cs-btn-outline {
    display: inline-flex; align-items: center; justify-content: center;
    padding: .8rem 1.5rem;
    background: transparent; color: rgba(255,255,255,.9);
    font-size: .7rem; font-weight: 800; letter-spacing: .1em;
    text-transform: uppercase; text-decoration: none;
    border: 2px solid rgba(255,255,255,.35);
    transition: border-color .15s; white-space: nowrap;
}
.cs-btn-outline:hover { border-color: rgba(255,255,255,.7); color: #fff; }
.cs-btn-outline-dark {
    display: inline-flex; align-items: center; justify-content: center;
    padding: .75rem 1.5rem;
    background: transparent; color: var(--cs-ink);
    font-size: .7rem; font-weight: 800; letter-spacing: .1em;
    text-transform: uppercase; text-decoration: none;
    border: 2px solid var(--cs-ink); transition: background .15s, color .15s;
    white-space: nowrap;
}
.cs-btn-outline-dark:hover { background: var(--cs-ink); color: #fff; }
.cs-hero-updated { font-size: .75rem; color: rgba(255,255,255,.4); }
/* Flag card */
.cs-flag-card {
    border: 3px solid rgba(255,255,255,.15);
    overflow: hidden; max-width: 300px; margin-left: auto;
    position: relative; z-index: 1;
}
.cs-flag-img {
    width: 100%; aspect-ratio: 3/2; object-fit: cover; display: block;
    background: var(--bg-secondary);
}
.cs-flag-placeholder {
    width: 100%; aspect-ratio: 3/2;
    background: var(--bg-secondary);
    display: flex; align-items: center; justify-content: center;
    font-size: 3.5rem; font-weight: 900;
    color: rgba(255,255,255,.15); letter-spacing: .05em;
}
.cs-flag-footer {
    background: var(--primary-dark-green);
    padding: .7rem 1rem;
    display: flex; align-items: center; justify-content: space-between;
}
.cs-flag-label {
    font-size: .65rem; font-weight: 700; letter-spacing: .1em;
    text-transform: uppercase; color: var(--secondary-beige);
}
.cs-flag-name {
    font-size: 1rem; font-weight: 800; color: #fff;
    letter-spacing: -.01em;
}

/* ════════════ 2. STATE FACTS ════════════════════════ */
.cs-facts {
    background: var(--secondary-cream); padding: 3.5rem 0;
}
/* White card with red left accent — matches the design */
.cs-facts-card {
    background: #fff;
    border: 1px solid var(--cs-border);
    border-left: 3px solid var(--accent-primary);
    padding: 2rem 2.5rem 1.75rem;
}
.cs-facts-card .cs-eyebrow { margin-bottom: .625rem; }
.cs-facts-card h2 {
    font-size: 1.5rem; font-weight: 800;
    color: var(--cs-ink); margin-bottom: 0;
    letter-spacing: -.01em;
}
.cs-facts-head {
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--cs-border);
    margin-bottom: 0;
}
/* Two-column table grid */
.cs-facts-cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}
.cs-facts-col { min-width: 0; }
.cs-facts-col:first-child { padding-right: 2.5rem; }
.cs-facts-col:last-child  {
    padding-left: 2.5rem;
    border-left: 1px solid var(--cs-border);
}
.cs-ft { width: 100%; border-collapse: collapse; }
.cs-ft tr { border-bottom: 1px solid var(--cs-border); }
.cs-ft tr:first-child td { padding-top: 1.125rem; }
.cs-ft tr:last-child { border-bottom: none; }
.cs-ft td { padding: .8rem 0; vertical-align: top; word-break: break-word; }
.cs-ft-lbl {
    width: 38%; font-size: .62rem; font-weight: 700;
    letter-spacing: .09em; text-transform: uppercase;
    color: var(--cs-body); opacity: .65;
    padding-right: 1rem; line-height: 1.55;
}
.cs-ft-val {
    width: 62%; font-size: .875rem;
    color: var(--cs-ink); line-height: 1.55;
}
.cs-ft-val a {
    color: var(--accent-primary);
    text-decoration: underline; text-underline-offset: 2px;
}
/* Stats strip — 4 equal cols with vertical dividers */
.cs-stats-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid var(--cs-border);
    margin-top: 0; padding-top: 0;
    gap: 0;
}
.cs-stat-item {
    padding: 1.5rem 1.5rem 1.375rem;
    border-right: 1px solid var(--cs-border);
}
.cs-stat-item:last-child { border-right: none; }
.cs-stat-val {
    font-size: clamp(1.625rem, 2.5vw, 2.25rem);
    font-weight: 900; color: var(--cs-ink);
    letter-spacing: -.03em; line-height: 1;
    margin-bottom: .4rem;
}
.cs-stat-lbl {
    font-size: .6rem; font-weight: 700;
    letter-spacing: .1em; text-transform: uppercase;
    color: var(--cs-body); opacity: .6; line-height: 1.4;
}

/* ════════════ 3. MID CTA ════════════════════════════ */
.cs-midcta {
    background: var(--secondary-cream);
    border-top: 1px solid var(--cs-border);
    padding: 2.5rem 0;
}
.cs-midcta h3 {
    font-size: clamp(1.125rem, 2vw, 1.375rem);
    font-weight: 800; color: var(--cs-ink);
    margin-bottom: .375rem; letter-spacing: -.01em;
}
.cs-midcta p { font-size: .875rem; color: var(--cs-body); margin: 0; }
.cs-midcta-actions { display: flex; flex-direction: column; gap: .625rem; }

/* ════════════ 4. CONTENT + TOC ══════════════════════ */
.cs-content-section { background: #fff; padding: 4rem 0; }
/* TOC box */
.cs-toc-wrap {
    position: sticky; top: 100px;
}
.cs-toc {
    border: 1px solid var(--cs-border);
    background: var(--secondary-cream); padding: 1.25rem 1.5rem;
}
.cs-toc-label {
    font-size: .62rem; font-weight: 700;
    letter-spacing: .12em; text-transform: uppercase;
    color: var(--cs-body); opacity: .6;
    margin-bottom: 1rem;
}
.cs-toc-list { list-style: none; margin: 0; padding: 0; }
.cs-toc-item {
    display: flex; gap: .625rem;
    padding: .4rem 0;
    border-bottom: 1px solid var(--cs-border);
    align-items: flex-start;
}
.cs-toc-item:last-child { border-bottom: none; }
.cs-toc-num {
    font-size: .7rem; font-weight: 700; color: var(--cs-body);
    opacity: .5; min-width: 18px; margin-top: 1px;
}
.cs-toc-link {
    font-size: .82rem; color: var(--cs-ink);
    text-decoration: none; line-height: 1.4;
    transition: color .15s;
}
.cs-toc-link:hover,
.cs-toc-link.active { color: var(--accent-primary); }
/* Prose content */
.cs-prose { font-size: .975rem; color: var(--cs-body); line-height: 1.8; }
.cs-prose h2 {
    font-size: clamp(1.25rem, 2.5vw, 1.625rem);
    font-weight: 800; color: var(--cs-ink);
    margin-top: 2.5rem; margin-bottom: .875rem;
    letter-spacing: -.01em;
    scroll-margin-top: 110px;
}
.cs-prose h2:first-child { margin-top: 0; }
.cs-prose h3 {
    font-size: 1.05rem; font-weight: 700;
    color: var(--cs-ink); margin-top: 1.75rem; margin-bottom: .5rem;
}
.cs-prose p { margin-bottom: 1rem; }
.cs-prose a { color: var(--accent-primary); text-underline-offset: 2px; }
.cs-prose ul { padding-left: 1.25rem; margin-bottom: 1rem; }
.cs-prose ul li { margin-bottom: .35rem; }
/* Inline CTA shortcode */
.cs-inline-cta {
    background: var(--secondary-cream);
    border-left: 3px solid var(--accent-primary);
    padding: 1.25rem 1.5rem;
    margin: 2rem 0;
    display: flex; flex-wrap: wrap;
    align-items: center; justify-content: space-between; gap: 1rem;
}
.cs-inline-cta-text { font-size: .9rem; font-weight: 700; color: var(--cs-ink); }
.cs-inline-cta-sub { font-size: .78rem; color: var(--cs-body); margin-top: .2rem; }
.cs-inline-cta-btn {
    display: inline-flex; padding: .65rem 1.25rem;
    background: var(--primary-orange); color: #fff;
    font-size: .68rem; font-weight: 800;
    letter-spacing: .1em; text-transform: uppercase;
    text-decoration: none; white-space: nowrap;
    transition: opacity .15s;
}
.cs-inline-cta-btn:hover { opacity: .88; color: #fff; }

/* ════════════ 5. TEAM ════════════════════════════════ */
.cs-team { background: var(--secondary-cream); padding: 4.5rem 0; }
.cs-team h2 {
    font-size: clamp(1.375rem, 2.5vw, 1.875rem);
    font-weight: 900; color: var(--cs-ink);
    margin-bottom: 1.75rem; letter-spacing: -.02em;
}
.cs-team-grid {
    display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.25rem;
}
.cs-team-card {
    background: #fff; border: 1px solid var(--cs-border);
    overflow: hidden;
}
/* Banner — gradient bg so initials always read */
.cs-team-banner {
    height: 150px; position: relative; overflow: hidden;
    background: var(--bg-secondary);
}
.cs-team-banner::after {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(135deg,
        rgba(0,83,117,.85) 0%,
        rgba(13,27,42,.95) 100%);
}
.cs-team-banner img {
    width: 100%; height: 100%; object-fit: cover;
    display: block; position: absolute; inset: 0;
}
.cs-team-initials-big {
    position: absolute; inset: 0; z-index: 1;
    display: flex; align-items: center; justify-content: center;
    font-size: 3.5rem; font-weight: 900;
    color: rgba(255,255,255,.22); letter-spacing: .08em;
    user-select: none;
}
/* Avatar circle in card body header */
.cs-team-header {
    display: flex; align-items: center; gap: .875rem;
    margin-bottom: .625rem;
}
.cs-team-avatar {
    width: 42px; min-width: 42px; height: 42px;
    background: var(--primary-dark-green);
    color: #fff; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: .72rem; font-weight: 800;
    letter-spacing: .04em; flex-shrink: 0;
}
.cs-team-body { padding: 1.25rem 1.375rem 1.375rem; }
.cs-team-name {
    font-size: 1rem; font-weight: 800;
    color: var(--cs-ink); margin-bottom: .1rem; line-height: 1.2;
}
.cs-team-role {
    font-size: .78rem; color: var(--cs-body);
}
.cs-team-divider {
    border: none; border-top: 1px solid var(--cs-border);
    margin: .875rem 0;
}
.cs-team-meta { margin-bottom: .875rem; }
.cs-team-meta-row {
    font-size: .8rem; color: var(--cs-body);
    margin-bottom: .25rem; line-height: 1.5;
}
.cs-team-meta-row strong { color: var(--cs-ink); font-weight: 700; }
.cs-team-meta-row a { color: var(--accent-primary); }
.cs-team-bio {
    font-size: .8rem; color: var(--cs-body); line-height: 1.65;
    border-top: 1px solid var(--cs-border); padding-top: .875rem;
    font-style: italic;
}

/* ════════════ 6. FAQ ════════════════════════════════ */
.cs-faq { background: #fff; padding: 4.5rem 0; border-top: 1px solid var(--cs-border); }
.cs-faq-heading {
    font-size: clamp(1.375rem, 2.5vw, 1.875rem);
    font-weight: 900; color: var(--cs-ink);
    line-height: 1.15; letter-spacing: -.02em; margin-bottom: .75rem;
}
.cs-faq-note { font-size: .82rem; color: #9aa3a0; line-height: 1.6; }
.cs-accordion { border-top: 1px solid var(--cs-border); }
.cs-acc-row { border-bottom: 1px solid var(--cs-border); }
.cs-acc-btn {
    width: 100%; text-align: left; background: none; border: none;
    padding: 1.1rem 0;
    display: flex; align-items: flex-start; justify-content: space-between; gap: 1rem;
    font-size: .925rem; font-weight: 700;
    color: var(--cs-ink); cursor: pointer; transition: color .15s;
}
.cs-acc-btn:hover { color: var(--accent-primary); }
.cs-acc-icon {
    display: inline-flex; align-items: center; justify-content: center;
    width: 22px; min-width: 22px; height: 22px;
    border: 1.5px solid var(--accent-primary); border-radius: 50%;
    color: var(--accent-primary); font-size: 1rem; line-height: 1;
    transition: background .15s, color .15s; margin-top: 2px;
}
.cs-acc-btn[aria-expanded="true"] .cs-acc-icon {
    background: var(--accent-primary); color: #fff;
}
.cs-acc-body { display: none; overflow: hidden; }
.cs-acc-body-inner {
    font-size: .875rem; color: var(--cs-body);
    line-height: 1.75; padding-bottom: 1.125rem;
}
.cs-acc-body-inner a { color: var(--accent-primary); }

/* ════════════ 7. GET STARTED ════════════════════════ */
.cs-start { background: var(--secondary-cream); padding: 5rem 0; }
.cs-start-heading {
    font-size: clamp(1.625rem, 3vw, 2.25rem);
    font-weight: 900; color: var(--cs-ink);
    line-height: 1.1; letter-spacing: -.02em; margin-bottom: .875rem;
}
.cs-start-body {
    font-size: .9rem; color: var(--cs-body);
    line-height: 1.75; margin-bottom: 2rem;
}
.cs-call-label {
    font-size: .62rem; font-weight: 700;
    letter-spacing: .12em; text-transform: uppercase;
    color: #9aa3a0; margin-bottom: .3rem;
}
.cs-phone {
    display: block; font-size: clamp(1.625rem, 3vw, 2rem);
    font-weight: 900; color: var(--cs-ink); text-decoration: none;
    letter-spacing: -.01em; line-height: 1.1; margin-bottom: .3rem;
}
.cs-phone:hover { color: var(--accent-primary); }
.cs-hours { font-size: .78rem; color: #9aa3a0; }

/* ════════════ 8. LEGAL DISCLAIMER ══════════════════ */
.cs-disclaimer {
    background: var(--primary-dark-green); padding: 1.25rem 0;
}
.cs-disclaimer p {
    font-size: .78rem; color: rgba(255,255,255,.55); line-height: 1.6; margin: 0;
}
.cs-disclaimer strong { color: rgba(255,255,255,.8); font-weight: 700; }

/* ════════════ RESPONSIVE ════════════════════════════ */
@media (max-width: 991px) {
    .cs-facts-cols { grid-template-columns: 1fr; }
    .cs-facts-col:first-child { padding-right: 0; padding-bottom: 0; }
    .cs-facts-col:last-child { border-left: none; border-top: 1px solid var(--cs-border); padding-left: 0; padding-top: .5rem; }
    .cs-stats-strip { grid-template-columns: repeat(2, 1fr); }
    .cs-stat-item { border-right: none; border-bottom: 1px solid var(--cs-border); }
    .cs-stat-item:last-child { border-bottom: none; }
    .cs-toc-wrap { position: static; margin-bottom: 2rem; }
}
@media (max-width: 767px) {
    .cs-hero { padding: 3rem 0 2.5rem; }
    .cs-hero::after { display: none; }
    .cs-hero h1 { font-size: 2rem; }
    .cs-bullets { grid-template-columns: 1fr; gap: .375rem; }
    .cs-hero-ctas { flex-direction: column; }
    .cs-hero-ctas a { width: 100%; text-align: center; }
    .cs-flag-card { max-width: 220px; margin: 2rem auto 0; }
    .cs-facts { padding: 2.5rem 0; }
    .cs-facts-card { padding: 1.5rem 1.25rem 0; }
    .cs-stats-strip { grid-template-columns: repeat(2, 1fr); }
    .cs-stat-item { padding: 1.125rem 1rem; }
    .cs-stat-val { font-size: 1.625rem; }
    .cs-midcta { padding: 2rem 0; }
    .cs-midcta-actions { margin-top: 1.25rem; }
    .cs-content-section { padding: 2.5rem 0; }
    .cs-team-grid { grid-template-columns: 1fr; }
    .cs-team, .cs-faq, .cs-start { padding: 3rem 0; }
    .cs-ft { display: block; }
    .cs-ft tbody, .cs-ft tr, .cs-ft td { display: block; width: 100%; }
    .cs-ft-lbl { width: 100%; padding-bottom: .2rem; padding-right: 0; border-bottom: none; opacity: .55; }
    .cs-ft-val { width: 100%; }
    .cs-ft tr { padding: .625rem 0; border-bottom: 1px solid var(--cs-border); }
    .cs-ft td { padding: .1rem 0; border-bottom: none; }
}
@media (max-width: 575px) {
    .cs-hero h1 { font-size: 1.75rem; }
    .cs-stats-strip { grid-template-columns: 1fr 1fr; }
    .cs-stat-val { font-size: 1.375rem; }
    .cs-team-banner { height: 110px; }
    .cs-team-initials-big { font-size: 2.5rem; }
}

.member-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #e5e7eb;
}

.member-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}


/* ════════════ BOOTSTRAP GUTTER OVERFLOW FIX ════════ */
@media (max-width: 767px) {
    .cs .row {
        --bs-gutter-x: 1rem;
        --bs-gutter-y: 1rem;
        margin-left: 0;
        margin-right: 0;
    }
    .cs .row > * {
        padding-left: 0.5rem;
        padding-right: 0.5rem;
    }
}