/* FraternalFinder - Premium Fraternal Directory */

/* Self-hosted fonts - eliminates render-blocking Google Fonts CSS */
@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 300 700;
    font-display: swap;
    src: url('/assets/fonts/inter-latin.woff2') format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
    font-family: 'Playfair Display';
    font-style: normal;
    font-weight: 400 700;
    font-display: swap;
    src: url('/assets/fonts/playfair-latin.woff2') format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
    --bg-dark: #0D1117;
    --bg-card: #161B22;
    --border-subtle: #30363D;
    --text-primary: #E6EDF3;
    --text-secondary: #8B949E;
    --gold-accent: #C9A84C;
    --gold-hover: #D4B85C;
    --flag-red: #BF0A30;
    --flag-red-text: #E8334A;
    --flag-blue: #002868;
    --flag-white: #FFFFFF;
    --flag-red-soft: rgba(191, 10, 48, 0.12);
    --flag-blue-soft: rgba(0, 40, 104, 0.10);
    --shadow-subtle: 0 2px 8px rgba(0, 0, 0, 0.3);
    --shadow-card: 0 4px 12px rgba(0, 0, 0, 0.4);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background: var(--bg-dark);
    position: relative;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', Georgia, serif;
    line-height: 1.25;
    margin-bottom: 1rem;
    color: var(--text-primary);
    font-weight: 600;
    letter-spacing: -0.01em;
}

h1 {
    font-size: 2.4rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

h2 {
    font-size: 1.7rem;
    font-weight: 600;
    letter-spacing: -0.01em;
}

h3 {
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: 0;
}

h4 {
    font-size: 1rem;
    font-weight: 600;
}

p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

a {
    color: var(--gold-accent);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--gold-hover);
    text-decoration: underline;
}

/* Header */
header {
    background: var(--bg-card);
    border-bottom: 1px solid var(--border-subtle);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-subtle);
}

.header-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gold-accent);
    letter-spacing: -0.01em;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 2rem;
}

nav a {
    color: var(--text-secondary);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    transition: color 0.3s ease, border-color 0.3s ease;
    border-bottom: 2px solid transparent;
}

nav a:hover {
    color: var(--gold-accent);
    border-bottom-color: var(--gold-accent);
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Hero Section */
.hero {
    text-align: left;
    padding: 0;
    background: var(--bg-dark);
    border-bottom: 1px solid var(--border-subtle);
    overflow: hidden;
    position: relative;
}

.hero-split {
    display: flex;
    align-items: stretch;
    min-height: 540px;
}

.hero-content {
    flex: 1 1 auto;
    padding: 3.5rem 3rem 3rem;
    padding-left: max(2rem, calc((100vw - 1400px) / 2 + 4rem));
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 55%;
    position: relative;
    z-index: 2;
}

.hero-badge {
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    color: var(--flag-red-text);
    text-transform: uppercase;
    margin-bottom: 1.25rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.hero-badge::before {
    content: '';
    display: inline-block;
    width: 28px;
    height: 2px;
    background: var(--flag-red);
}

.hero-badge::after {
    content: '';
    display: inline-block;
    width: 28px;
    height: 2px;
    background: var(--flag-blue);
    margin-left: 0.25rem;
}

.hero-image {
    flex: 1 1 45%;
    position: relative;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
    filter: contrast(1.1) brightness(0.85);
}

.hero-image-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, var(--bg-dark) 0%, rgba(13, 17, 23, 0.85) 15%, rgba(13, 17, 23, 0.4) 40%, transparent 70%),
        linear-gradient(180deg, rgba(13, 17, 23, 0.3) 0%, transparent 30%, transparent 70%, rgba(13, 17, 23, 0.5) 100%);
    pointer-events: none;
}

.hero-image::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 60px;
    background: linear-gradient(90deg, var(--bg-dark) 0%, transparent 100%);
    pointer-events: none;
    z-index: 1;
}

.hero-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 1rem;
    display: block;
}

.hero-tagline {
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    color: var(--gold-accent);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.hero h1 {
    font-size: 2.8rem;
    margin-bottom: 1.25rem;
    color: var(--text-primary);
    line-height: 1.15;
}

.hero h1 .gold {
    color: var(--gold-accent);
}

.hero h1 .flag-accent {
    color: var(--flag-red-text);
}

.flag-text-blue { color: var(--flag-blue); }
.flag-text-red { color: var(--flag-red-text); }

.hero-subtitle {
    font-size: 1.05rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    max-width: 520px;
    line-height: 1.7;
}

/* Geo Button */
.geo-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    border: 1px solid rgba(201, 168, 76, 0.25);
    color: var(--gold-accent);
    padding: 10px 22px;
    font-size: 13px;
    font-family: 'Inter', sans-serif;
    border-radius: 100px;
    cursor: pointer;
    transition: color 0.3s ease, border-color 0.3s ease, background 0.3s ease;
    margin-bottom: 1.25rem;
}

.geo-btn svg {
    width: 16px;
    height: 16px;
}

.geo-btn:hover {
    border-color: var(--gold-accent);
    background: rgba(201, 168, 76, 0.08);
    color: var(--gold-hover);
}

.geo-btn.loading {
    opacity: 0.7;
    pointer-events: none;
}

.geo-label {
    font-size: 11px;
    color: var(--text-secondary);
    margin-top: -0.5rem;
    margin-bottom: 1rem;
}

/* Search Bar */
.search-container {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    max-width: 520px;
}

.search-input {
    flex: 1;
    padding: 1rem 1.5rem;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    color: var(--text-primary);
    border-radius: 4px;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    transition: border-color 0.3s ease;
}

.search-input:focus {
    outline: none;
    border-color: var(--gold-accent);
}

.btn {
    padding: 0.75rem 1.75rem;
    background: var(--gold-accent);
    color: var(--bg-dark);
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.02em;
    cursor: pointer;
    transition: color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease, background 0.3s ease, opacity 0.3s ease;
    font-family: 'Inter', sans-serif;
    text-decoration: none;
    display: inline-block;
}

.btn:hover {
    background: var(--gold-hover);
    color: var(--bg-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(201, 168, 76, 0.3);
    text-decoration: none;
}

.btn-secondary {
    background: transparent;
    color: var(--gold-accent);
    border: 2px solid var(--gold-accent);
}

.btn-secondary:hover {
    background: rgba(201, 168, 76, 0.1);
    color: var(--gold-hover);
    text-decoration: none;
}

/* Quick Chips */
.quick-chips {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.chip {
    padding: 0.75rem 1.25rem;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    color: var(--text-primary);
    border-radius: 20px;
    cursor: pointer;
    transition: color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease, background 0.3s ease, opacity 0.3s ease;
    font-size: 0.9rem;
}

.chip:hover {
    border-color: var(--gold-accent);
    color: var(--gold-accent);
}

/* Stats Section */
.stats-section {
    background: linear-gradient(135deg, rgba(0, 40, 104, 0.08) 0%, var(--bg-card) 50%, rgba(191, 10, 48, 0.05) 100%);
    border-top: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
    padding: 2.5rem 2rem;
    margin: 0;
}

.stats-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    gap: 2rem;
    text-align: center;
    flex-wrap: nowrap;
}

.stat {
    padding: 2rem;
    flex: 0 1 auto;
}

.stat-number {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--gold-accent);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.8rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-secondary);
    font-weight: 600;
}

/* Section Label */
.section-label {
    font-size: 0.75rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold-accent);
    margin-bottom: 1rem;
    font-weight: 700;
}

/* Section Title */
.section-title {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
    text-transform: none;
    color: var(--text-primary);
}

.section-title .accent {
    color: var(--flag-red-text);
}

/* Patriotic star decorations (CSS-only, zero HTTP requests) */
.stars-bg {
    position: relative;
}
.stars-bg::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background:
        radial-gradient(1.5px 1.5px at 10% 15%, rgba(255,255,255,0.04) 50%, transparent 51%),
        radial-gradient(1.5px 1.5px at 30% 80%, rgba(255,255,255,0.03) 50%, transparent 51%),
        radial-gradient(1.5px 1.5px at 55% 25%, rgba(255,255,255,0.04) 50%, transparent 51%),
        radial-gradient(1.5px 1.5px at 75% 70%, rgba(255,255,255,0.03) 50%, transparent 51%),
        radial-gradient(1.5px 1.5px at 90% 40%, rgba(255,255,255,0.04) 50%, transparent 51%);
    pointer-events: none;
    z-index: 0;
}
.stars-bg > * { position: relative; z-index: 1; }

/* Patriotic section divider */
.section-divider-flag {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin: 3rem auto 2.5rem;
    max-width: 200px;
}
.section-divider-flag::before,
.section-divider-flag::after {
    content: '';
    flex: 1;
    height: 1px;
}
.section-divider-flag::before { background: linear-gradient(90deg, transparent, var(--flag-blue)); }
.section-divider-flag::after { background: linear-gradient(90deg, var(--flag-red), transparent); }
.section-divider-flag .star-icon {
    color: var(--gold-accent);
    font-size: 0.8rem;
}

/* Main Content */
main {
    padding: 3rem 0;
}

section {
    margin-bottom: 4rem;
}

/* Cards */
.card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 4px;
    padding: 1.5rem;
    transition: color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease, background 0.3s ease, opacity 0.3s ease;
}

.card:hover {
    border-color: var(--gold-accent);
    box-shadow: var(--shadow-card);
    transform: translateY(-4px);
}

.post-card {
    background: var(--bg-card);
    border-left: 4px solid var(--gold-accent);
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    border-radius: 4px;
    transition: color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease, background 0.3s ease, opacity 0.3s ease;
}

.post-card:hover {
    border-left-color: var(--gold-hover);
    box-shadow: var(--shadow-card);
}

.post-card h3 {
    margin-bottom: 0.75rem;
    margin-top: 0;
}

.post-card h3 a {
    color: var(--gold-accent);
}

.post-card h3 a:hover {
    color: var(--gold-hover);
}

/* Contact Info */
.contact-section {
    display: grid;
    gap: 1rem;
    margin-top: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 0.75rem 0;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.contact-icon {
    min-width: 20px;
    display: flex;
    align-items: center;
    color: var(--text-secondary);
}

.contact-icon svg {
    flex-shrink: 0;
}

.contact-label {
    font-weight: 600;
    color: var(--text-primary);
    min-width: 80px;
}

.contact-value {
    flex: 1;
    word-break: break-word;
}

.contact-value a {
    color: var(--gold-accent);
}

/* Organization Badge */
.organization-badge {
    display: inline-block;
    padding: 0.4rem 0.75rem;
    background: rgba(201, 168, 76, 0.1);
    border: 1px solid var(--gold-accent);
    color: var(--gold-accent);
    border-radius: 3px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    margin-top: 0.5rem;
}

.org-dot {
    display: inline-block;
    width: 6px;
    height: 6px;
    background: var(--gold-accent);
    border-radius: 50%;
    margin-right: 0.5rem;
}

/* State/City Cards Grid */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.state-card, .city-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    padding: 1.5rem;
    border-radius: 4px;
    transition: color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease, background 0.3s ease, opacity 0.3s ease;
    text-align: center;
}

.state-card:hover, .city-card:hover {
    border-color: var(--gold-accent);
    box-shadow: var(--shadow-card);
}

.state-card a, .city-card a {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--gold-accent);
}

.post-count {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

/* Breadcrumb */
.breadcrumb {
    list-style: none;
    display: flex;
    gap: 0.5rem;
    margin: 2rem 0;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.breadcrumb li:not(:last-child)::after {
    content: ' / ';
    margin-left: 0.5rem;
}

.breadcrumb a {
    color: var(--gold-accent);
}

/* Featured Content Grid */
.content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.featured-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    padding: 2rem;
    border-radius: 4px;
    transition: color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease, background 0.3s ease, opacity 0.3s ease;
}

.featured-card:hover {
    border-color: var(--gold-accent);
    box-shadow: var(--shadow-card);
}

.featured-card h3 {
    color: var(--gold-accent);
    margin-bottom: 1rem;
}

.featured-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* Tools/Features Section */
.tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.tool-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    padding: 2.5rem 2rem;
    border-radius: 4px;
    text-align: center;
    transition: color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease, background 0.3s ease, opacity 0.3s ease;
}

.tool-card:hover {
    border-color: var(--gold-accent);
    box-shadow: var(--shadow-card);
}

.tool-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.tool-card h3 {
    color: var(--text-primary);
    margin-bottom: 0.75rem;
}

.tool-card p {
    font-size: 0.95rem;
    color: var(--text-secondary);
}

/* FAQ Section */
.faq-item {
    border-bottom: 1px solid var(--border-subtle);
    padding: 1.5rem 0;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    padding: 0.75rem 0;
    color: var(--text-primary);
    font-weight: 600;
    transition: color 0.3s ease;
}

.faq-question:hover {
    color: var(--gold-accent);
}

.faq-arrow {
    color: var(--gold-accent);
    transition: transform 0.3s ease;
    font-size: 1.2rem;
}

.faq-item.active .faq-arrow {
    transform: rotate(180deg);
}

.faq-answer {
    display: none;
    padding: 1rem 0;
    color: var(--text-secondary);
    line-height: 1.8;
}

.faq-item.active .faq-answer {
    display: block;
}

/* Newsletter Section */
.newsletter-section {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    padding: 3rem 2rem;
    text-align: center;
    border-radius: 4px;
    margin: 3rem 0;
}

.newsletter-section h2 {
    margin-bottom: 1rem;
}

.newsletter-form {
    display: flex;
    gap: 0.5rem;
    max-width: 500px;
    margin: 2rem auto;
}

.newsletter-input {
    flex: 1;
    padding: 0.75rem 1rem;
    background: var(--bg-dark);
    border: 1px solid var(--border-subtle);
    color: var(--text-primary);
    border-radius: 4px;
    font-family: 'Inter', sans-serif;
}

.newsletter-input:focus {
    outline: none;
    border-color: var(--gold-accent);
}

.newsletter-privacy {
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin-top: 1rem;
}

/* Footer */
footer {
    background: var(--bg-card);
    border-top: 1px solid var(--border-subtle);
    margin-top: 4rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.footer-section h3 {
    color: var(--gold-accent);
    margin-bottom: 1rem;
    font-size: 1rem;
    font-weight: 600;
}

.footer-section p {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: var(--text-secondary);
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--gold-accent);
}

.footer-bottom {
    border-top: 1px solid var(--border-subtle);
    padding: 2rem;
    text-align: center;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Stat Boxes */
.stat-boxes {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.stat-box {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    padding: 1.5rem;
    text-align: center;
    border-radius: 4px;
}

.stat-box-number {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--gold-accent);
    margin-bottom: 0.5rem;
}

.stat-box-label {
    font-size: 0.8rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--text-secondary);
    font-weight: 600;
}

/* Responsive */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 1rem;
    }

    nav ul {
        gap: 1rem;
    }

    .hero {
        padding: 0;
    }

    .hero-split {
        flex-direction: column;
        min-height: auto;
    }

    .hero-content {
        padding: 2.5rem 1.5rem 2rem;
        max-width: 100%;
        text-align: center;
    }

    .hero-badge {
        justify-content: center;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    .search-container {
        flex-direction: column;
        max-width: 100%;
    }

    .org-chips {
        justify-content: center;
    }

    .hero-image {
        flex: 0 0 auto;
        height: 280px;
        order: -1;
    }

    .hero-image::after {
        display: none;
    }

    .hero-image-overlay {
        background: linear-gradient(180deg, transparent 30%, rgba(13, 17, 23, 0.6) 65%, var(--bg-dark) 100%);
    }

    .stats-section {
        padding: 1.5rem 1rem;
    }

    .stats-container {
        gap: 0.5rem;
        padding: 0;
    }

    .stat {
        padding: 0.75rem 0.5rem;
    }

    .stat-number {
        font-size: 1.3rem;
    }

    .stat-label {
        font-size: 0.65rem;
        letter-spacing: 0.04em;
    }

    .quick-chips {
        flex-direction: column;
    }

    .chip {
        width: 100%;
    }

    .cards-grid {
        grid-template-columns: 1fr;
    }

    .content-grid {
        grid-template-columns: 1fr;
    }

    .newsletter-form {
        flex-direction: column;
    }
}

/* US Map Section Styles */
.map-section {
    margin: 0;
    padding: 4rem 0 2rem;
    position: relative;
}

.map-section .section-heading {
    text-align: center;
    margin-bottom: 1rem;
}

.section-subtitle {
    text-align: center;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    font-size: 1rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.map-container {
    width: 100%;
    max-width: 100%;
    margin: 0 auto 1rem;
    background: transparent;
    padding: 0;
    position: relative;
    overflow: visible;
}

.us-map {
    display: block;
    margin: 0 auto;
    max-width: 100%;
    height: auto;
}

/* Floating tooltip for map hover */
.map-tooltip {
    position: fixed;
    pointer-events: none;
    z-index: 1000;
    opacity: 0;
    transition: opacity 0.2s ease;
    background: linear-gradient(135deg, rgba(13,17,23,0.97), rgba(22,27,34,0.97));
    border: 1px solid rgba(201,168,76,0.4);
    border-radius: 10px;
    padding: 12px 18px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.5), 0 0 20px rgba(201,168,76,0.08);
    backdrop-filter: blur(12px);
    min-width: 160px;
    text-align: center;
    transform: translateY(8px);
}
.map-tooltip.visible {
    opacity: 1;
    transform: translateY(0);
}
.map-tooltip .tt-name {
    color: #C9A84C;
    font-family: 'Playfair Display', serif;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 4px;
}
.map-tooltip .tt-count {
    color: #e6edf3;
    font-size: 0.85rem;
    font-weight: 400;
}
.map-tooltip .tt-count strong {
    color: #fff;
    font-weight: 700;
    font-size: 1.1rem;
}
.map-tooltip .tt-cta {
    color: rgba(201,168,76,0.6);
    font-size: 0.7rem;
    margin-top: 6px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

@media (max-width: 768px) {
    .map-container {
        padding: 0;
    }

    .map-section {
        padding: 2rem 0 1rem;
    }

    .section-subtitle {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }
}

/* Article cards */
.card-category {
    display: inline-block;
    color: #C9A84C;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 0.5rem;
}

.card-meta {
    color: var(--text-secondary);
    font-size: 0.8rem;
    margin-top: 0.5rem;
}

/* Article hero image */
.article-hero {
    position: relative;
    width: 100%;
    max-height: 360px;
    overflow: hidden;
    border-radius: 8px;
    margin: 0 auto 1.5rem;
}

.article-hero img {
    width: 100%;
    height: 360px;
    object-fit: cover;
    object-position: center center;
    display: block;
}

.article-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 60%, rgba(0,0,0,0.35) 100%);
    pointer-events: none;
}

/* Inline article images */
.article-img {
    margin: 2rem -2rem;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
}
.article-img img {
    width: 100%;
    height: auto;
    max-height: 420px;
    object-fit: cover;
    display: block;
    border-radius: 8px;
}
.article-img figcaption {
    font-size: 0.82rem;
    color: var(--text-muted, #8b949e);
    text-align: center;
    padding: 0.6rem 1rem;
    font-style: italic;
    line-height: 1.4;
}
.article-img-duo {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin: 2rem 0;
}
.article-img-duo img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    border-radius: 8px;
}
@media (max-width: 600px) {
    .article-img { margin: 1.5rem 0; }
    .article-img-duo { grid-template-columns: 1fr; }
}

/* FAQ section styles */
.article-faq {
    margin: 3rem 0 2rem;
    padding: 2rem;
    background: var(--card-bg, #161b22);
    border-radius: 12px;
    border: 1px solid var(--border-subtle, #30363d);
}
.article-faq h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--accent, #58a6ff);
}
.faq-item {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-subtle, #30363d);
}
.faq-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}
.faq-item h3 {
    font-size: 1.1rem;
    color: var(--accent, #58a6ff);
    margin-bottom: 0.5rem;
    font-weight: 600;
}
.faq-item p {
    color: var(--text-secondary, #b1bac4);
    line-height: 1.7;
    margin: 0;
}

/* Article table styles */
.article-body table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
    font-size: 0.92rem;
    border-radius: 8px;
    overflow: hidden;
}
.article-body table thead th {
    background: var(--accent, #58a6ff);
    color: #fff;
    padding: 0.75rem 1rem;
    text-align: left;
    font-weight: 600;
}
.article-body table tbody td {
    padding: 0.65rem 1rem;
    border-bottom: 1px solid var(--border-subtle, #30363d);
    color: var(--text-secondary, #b1bac4);
}
.article-body table tbody tr:nth-child(even) {
    background: rgba(255,255,255,0.03);
}
.article-body table tbody tr:hover {
    background: rgba(88,166,255,0.06);
}
@media (max-width: 600px) {
    .article-faq { padding: 1.2rem; margin: 2rem -1rem; }
    .article-body table { font-size: 0.82rem; display: block; overflow-x: auto; }
}

/* Article page styles */
.article-header {
    text-align: center;
    padding: 2rem 0 2rem;
    border-bottom: 1px solid var(--border-subtle);
    margin-bottom: 2.5rem;
    position: relative;
}

.article-header h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2.4rem;
    color: var(--text-primary);
    margin-bottom: 1rem;
    line-height: 1.25;
    letter-spacing: -0.02em;
}

.article-meta {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    color: var(--text-secondary);
    font-size: 0.85rem;
}

.article-meta span {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.article-body {
    max-width: 720px;
    margin: 0 auto;
    line-height: 1.85;
    color: var(--text-secondary);
    font-size: 1.05rem;
}

.article-body h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--text-primary);
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--border-subtle);
}
.article-body h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    color: var(--text-primary);
    margin-top: 1.8rem;
    margin-bottom: 0.6rem;
}

.article-body p {
    margin-bottom: 1.2rem;
}

.article-lead {
    font-size: 1.15rem;
    color: var(--text-primary);
    line-height: 1.9;
    border-left: 3px solid #C9A84C;
    padding-left: 1.5rem;
    margin-bottom: 2rem;
}

.article-body ul, .article-body ol {
    margin-left: 1.5rem;
    margin-bottom: 1.2rem;
}

.article-body li {
    margin-bottom: 0.5rem;
}

/* Article Visual Elements */
.article-stats-row {
    display: flex;
    gap: 1rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.article-stat-card {
    flex: 1 1 140px;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 10px;
    padding: 1.25rem;
    text-align: center;
    border-top: 3px solid var(--gold-accent);
}

.article-stat-card .stat-val {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--gold-accent);
    line-height: 1.2;
}

.article-stat-card .stat-desc {
    font-size: 0.78rem;
    color: var(--text-secondary);
    margin-top: 0.4rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.article-pullquote {
    border-left: 4px solid var(--gold-accent);
    margin: 2rem 0;
    padding: 1.25rem 1.5rem;
    background: linear-gradient(135deg, rgba(201, 168, 76, 0.06) 0%, var(--bg-card) 100%);
    border-radius: 0 8px 8px 0;
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.1rem;
    color: var(--text-primary);
    line-height: 1.6;
    font-style: italic;
}

.article-pullquote cite {
    display: block;
    font-style: normal;
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin-top: 0.75rem;
}

.article-timeline {
    position: relative;
    margin: 2.5rem 0;
    padding-left: 2rem;
}

.article-timeline::before {
    content: '';
    position: absolute;
    left: 6px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--gold-accent) 0%, var(--border-subtle) 100%);
}

.timeline-item {
    position: relative;
    margin-bottom: 1.5rem;
    padding: 1rem 1.25rem;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 8px;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -2rem;
    top: 1.25rem;
    width: 14px;
    height: 14px;
    background: var(--bg-dark);
    border: 3px solid var(--gold-accent);
    border-radius: 50%;
    z-index: 1;
}

.timeline-item .tl-year {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 700;
    color: var(--gold-accent);
    font-size: 1rem;
    margin-bottom: 0.3rem;
}

.timeline-item .tl-text {
    font-size: 0.92rem;
    color: var(--text-secondary);
    line-height: 1.5;
    margin: 0;
}

.article-compare-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    margin: 2rem 0;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid var(--border-subtle);
}

.article-compare-table thead th {
    background: var(--bg-card);
    color: var(--gold-accent);
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 0.95rem;
    padding: 1rem;
    text-align: left;
    border-bottom: 2px solid var(--gold-accent);
}

.article-compare-table tbody td {
    padding: 0.85rem 1rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
    border-bottom: 1px solid var(--border-subtle);
    line-height: 1.4;
}

.article-compare-table tbody tr:last-child td {
    border-bottom: none;
}

.article-compare-table tbody tr:hover {
    background: rgba(201, 168, 76, 0.04);
}

.article-compare-table td:first-child {
    color: var(--text-primary);
    font-weight: 600;
    white-space: nowrap;
}

.article-info-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.article-info-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 10px;
    padding: 1.5rem;
    text-align: center;
    transition: border-color 0.2s ease;
}

.article-info-card:hover {
    border-color: var(--gold-accent);
}

.article-info-card .info-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 0.75rem;
    background: rgba(201, 168, 76, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.article-info-card h4 {
    font-family: 'Playfair Display', Georgia, serif;
    color: var(--text-primary);
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.article-info-card p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.5;
    margin: 0;
}

.article-org-card {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 10px;
    padding: 1.5rem;
    margin: 1.25rem 0;
}

.article-org-card .org-badge {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.75rem;
    color: #fff;
    text-align: center;
    line-height: 1.1;
}

.article-org-card h4 {
    font-family: 'Playfair Display', Georgia, serif;
    color: var(--text-primary);
    font-size: 1.05rem;
    margin-bottom: 0.3rem;
}

.article-org-card .org-meta {
    font-size: 0.82rem;
    color: var(--gold-accent);
    margin-bottom: 0.4rem;
}

.article-org-card p {
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.5;
    margin: 0;
}

.article-step-list {
    counter-reset: steps;
    margin: 2rem 0;
}

.article-step {
    counter-increment: steps;
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    margin-bottom: 1.25rem;
    padding: 1.25rem;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 10px;
}

.article-step::before {
    content: counter(steps);
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    background: var(--gold-accent);
    color: var(--bg-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.95rem;
    font-family: 'Playfair Display', Georgia, serif;
}

.article-step h4 {
    color: var(--text-primary);
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.article-step p {
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.5;
    margin: 0;
}

.article-callout {
    background: linear-gradient(135deg, rgba(0, 40, 104, 0.08) 0%, var(--bg-card) 50%, rgba(191, 10, 48, 0.05) 100%);
    border: 1px solid var(--border-subtle);
    border-radius: 10px;
    padding: 1.5rem;
    margin: 2rem 0;
    text-align: center;
}

.article-callout .callout-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--gold-accent);
    margin-bottom: 0.5rem;
}

.article-callout .callout-value {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.2;
}

.article-callout .callout-desc {
    font-size: 0.88rem;
    color: var(--text-secondary);
    margin-top: 0.5rem;
}

.article-nav {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-subtle);
    text-align: center;
}

/* Learn page grid */
.learn-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 1.5rem;
}

.learn-card {
    background: var(--bg-card);
    border-radius: 8px;
    border: 1px solid var(--border-subtle);
    transition: border-color 0.3s ease, transform 0.2s ease;
    overflow: hidden;
}

.learn-card-thumb {
    width: 100%;
    height: 180px;
    overflow: hidden;
}

.learn-card-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.learn-card:hover .learn-card-thumb img {
    transform: scale(1.03);
}

.learn-card-body {
    padding: 1.25rem 1.5rem 1.5rem;
}

.learn-card:hover {
    border-color: rgba(201,168,76,0.3);
    transform: translateY(-2px);
}

.learn-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    color: var(--text-primary);
    margin: 0.5rem 0;
    line-height: 1.4;
}

.learn-card h3 a {
    color: inherit;
    text-decoration: none;
}

.learn-card h3 a:hover {
    color: #C9A84C;
}

.learn-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 0.8rem;
}

/* Hero CTA Buttons */
.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin: 2rem 0 3rem 0;
    flex-wrap: wrap;
}

.hero-cta .btn {
    display: inline-block;
    text-decoration: none;
    text-align: center;
}

/* Prose Content Section */
.prose {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.85;
    color: var(--text-secondary);
    font-size: 1.05rem;
}

.prose p {
    margin-bottom: 1.2rem;
}

.intro-content {
    padding: 3rem 0;
    border-bottom: 1px solid var(--border-subtle);
    margin-bottom: 3rem;
}

/* Search Results */
.search-results {
    max-width: 600px;
    margin: 0 auto 1.5rem;
    text-align: left;
    display: none;
}
.search-results.active {
    display: block;
}
.search-result-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 1rem;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 6px;
    margin-bottom: 0.35rem;
    transition: border-color 0.2s;
    text-decoration: none;
    color: var(--text-primary);
}
.search-result-item:hover {
    border-color: var(--gold-accent);
    text-decoration: none;
    color: var(--text-primary);
}
.search-result-item .sr-name {
    font-weight: 500;
    font-size: 0.95rem;
}
.search-result-item .sr-loc {
    font-size: 0.8rem;
    color: var(--text-secondary);
}
.org-chips {
    display: flex;
    gap: 0.75rem;
    justify-content: flex-start;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}
.chip-count {
    background: rgba(255,255,255,0.2);
    color: var(--text-primary);
    padding: 0.15rem 0.5rem;
    border-radius: 10px;
    font-size: 0.8rem;
    margin-left: 0.35rem;
}

@media (max-width: 768px) {
    .article-hero {
        max-height: 220px;
        border-radius: 6px;
    }
    .article-hero img {
        height: 220px;
    }
    .article-header h1 {
        font-size: 1.6rem;
    }
    .article-body {
        font-size: 1rem;
    }
    .learn-grid {
        grid-template-columns: 1fr;
    }
    .article-stats-row {
        gap: 0.75rem;
    }
    .article-stat-card {
        flex: 1 1 100px;
        padding: 1rem 0.75rem;
    }
    .article-stat-card .stat-val {
        font-size: 1.3rem;
    }
    .article-compare-table {
        font-size: 0.82rem;
    }
    .article-compare-table thead th,
    .article-compare-table tbody td {
        padding: 0.65rem 0.6rem;
    }
    .article-info-cards {
        grid-template-columns: 1fr;
    }
    .article-org-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .article-callout .callout-value {
        font-size: 1.6rem;
    }
    .article-timeline {
        padding-left: 1.5rem;
    }
}

/* ========== PATRIOTIC DESIGN SYSTEM ========== */

/* Flag stripe decoration */
.flag-stripe { display: block; width: 100%; height: 8px; flex-shrink: 0; }

/* Logo styling */
.brand-logo { display: inline-flex; align-items: center; gap: 0.6rem; text-decoration: none !important; color: inherit !important; }
.brand-logo svg { flex-shrink: 0; }
.brand-logo span { font-family: 'Playfair Display', serif; font-size: 1.3rem; font-weight: 700; letter-spacing: -0.01em; color: var(--gold-accent); }

/* Organization icon in cards */
.org-icon { display: inline-flex; align-items: center; gap: 0.5rem; }
.org-icon svg { flex-shrink: 0; vertical-align: middle; }

/* State page hero banner */
.state-hero {
    padding: 2.5rem 2rem 2rem;
    background: linear-gradient(135deg, rgba(0,40,104,0.15) 0%, rgba(191,10,48,0.08) 50%, rgba(0,0,0,0) 100%);
    border-bottom: 1px solid var(--border-subtle);
    margin-bottom: 2rem;
}
.state-hero h1 { margin-bottom: 0.5rem; }

/* Organization breakdown bar */
.org-breakdown {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin: 1.5rem 0;
    padding: 1.2rem 1.5rem;
    background: rgba(22,27,34,0.8);
    border: 1px solid var(--border-subtle);
    border-radius: 10px;
}
.org-breakdown-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.org-breakdown-item .org-count {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--gold-accent);
}
.org-breakdown-item .org-name {
    font-size: 0.85rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Enhanced post cards with org color strip */
.post-card-v2 {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 10px;
    padding: 0;
    overflow: hidden;
    transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
}
.post-card-v2:hover {
    transform: translateY(-2px);
    border-color: var(--gold-accent);
    box-shadow: 0 8px 24px rgba(0,0,0,0.4);
}
.post-card-v2 .card-strip {
    height: 4px;
    width: 100%;
}
.post-card-v2 .card-body {
    padding: 1.2rem 1.5rem;
}
.post-card-v2 h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    margin-bottom: 0.5rem;
    text-transform: none;
    letter-spacing: 0.01em;
}
.post-card-v2 h3 a { color: var(--text-primary); text-decoration: none; }
.post-card-v2 h3 a:hover { color: var(--gold-accent); }
.post-card-v2 .card-meta {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    font-size: 0.85rem;
    color: var(--text-secondary);
}
.post-card-v2 .card-details {
    display: grid;
    gap: 0.4rem;
    font-size: 0.9rem;
}
.post-card-v2 .card-details a { color: var(--gold-accent); text-decoration: none; }
.post-card-v2 .card-details a:hover { text-decoration: underline; }
.post-card-v2 .detail-row {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-secondary);
}
.post-card-v2 .detail-icon { width: 16px; text-align: center; flex-shrink: 0; display: inline-flex; align-items: center; color: var(--text-secondary); }

/* Enhanced city cards */
.city-card-v2 {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 8px;
    padding: 1.2rem;
    text-align: center;
    transition: color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease, opacity 0.2s ease;
    position: relative;
    overflow: hidden;
}
.city-card-v2::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, #002868, #BF0A30, #C9A84C);
    opacity: 0;
    transition: opacity 0.2s;
}
.city-card-v2:hover { border-color: var(--gold-accent); transform: translateY(-2px); }
.city-card-v2:hover::before { opacity: 1; }
.city-card-v2 a {
    font-family: 'Playfair Display', serif;
    font-size: 0.95rem;
    color: var(--gold-accent);
    text-decoration: none;
    display: block;
    margin-bottom: 0.3rem;
}
.city-card-v2 .post-count {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

/* Section divider with stars */
.section-divider {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 2.5rem 0 1.5rem;
}
.section-divider::before,
.section-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-subtle), transparent);
}
.section-divider h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    color: var(--text-primary);
    white-space: nowrap;
    letter-spacing: 0;
}

/* Cross-link navigation bar */
.cross-links {
    margin-top: 2.5rem;
    padding: 1.5rem;
    border: 1px solid rgba(201,168,76,0.15);
    border-radius: 10px;
    background: rgba(22,27,34,0.5);
}
.cross-links p { color: var(--text-secondary); font-size: 0.95rem; margin: 0; }
.cross-links a { color: var(--gold-accent); text-decoration: none; }
.cross-links a:hover { text-decoration: underline; }

/* Stars rating display */
.stars-display { color: #C9A84C; letter-spacing: 2px; font-size: 0.9rem; }

/* Enhanced footer */
footer .flag-stripe { margin-bottom: 0; }

@media (max-width: 768px) {
    .org-breakdown { flex-direction: column; gap: 0.75rem; }
    .state-hero { padding: 2rem 0 1.5rem; }
    .section-divider h2 { font-size: 1rem; }
}
