/* ==========================================================================
   RYTHM'AISNE FORME - OFFICIAL DESIGN SYSTEM & STYLESHEET
   High-Contrast Dark Mode Institutional Architecture for Non-Profit Excellence
   ========================================================================== */

/* Root Design Tokens */
:root {
    --bg-obsidian: #08080C;
    --bg-canvas-dark: #0D0D12;
    --bg-surface: #111116;
    --bg-surface-elevated: #16161E;
    --bg-surface-hover: #1C1C26;
    
    --primary-red: #E50914;
    --primary-red-hover: #FF1E27;
    --red-glow: rgba(229, 9, 20, 0.25);
    
    --text-pure-white: #FFFFFF;
    --text-muted: #9CA3AF;
    --text-secondary: #D1D5DB;
    --text-dim: #6B7280;
    
    --border-subtle: #1F1F28;
    --border-light: #2A2A38;
    --border-accent: rgba(229, 9, 20, 0.4);
    
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-pill: 9999px;
    
    --shadow-ambient: 0 10px 30px rgba(0, 0, 0, 0.6);
    --shadow-elevated: 0 16px 40px rgba(0, 0, 0, 0.8);
    --shadow-red: 0 6px 20px rgba(229, 9, 20, 0.35);
    
    --font-heading: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
    --font-body: 'Inter', system-ui, -apple-system, sans-serif;
    
    --container-max: 1240px;
    --transition-smooth: all 0.3s ease;
}

/* CSS Reset & Universal Base */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
    background-color: var(--bg-obsidian);
    color: var(--text-pure-white);
}

body {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.65;
    background-color: var(--bg-obsidian);
    color: var(--text-secondary);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: var(--radius-md);
    object-fit: cover;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-smooth);
}

ul, ol {
    list-style: none;
}

/* Typography Hierarchy */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--text-pure-white);
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

h1 { font-size: 2.75rem; line-height: 1.15; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.2rem; }

p {
    margin-bottom: 1.2rem;
    color: var(--text-secondary);
}

p:last-child {
    margin-bottom: 0;
}

strong {
    color: var(--text-pure-white);
    font-weight: 700;
}

.site-container {
    width: 100%;
    max-width: var(--container-max);
    margin-left: auto;
    margin-right: auto;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

/* Section Tags */
.section-tag-red {
    display: inline-block;
    color: var(--primary-red);
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
}

.section-tag-red.centered {
    text-align: center;
    display: block;
}

/* Buttons & Interactive Elements */
.btn-primary-red {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-red);
    color: #FFFFFF;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
    padding: 10px 24px;
    border-radius: var(--radius-sm);
    border: none;
    cursor: pointer;
    box-shadow: var(--shadow-red);
    transition: var(--transition-smooth);
    min-height: 44px;
    white-space: nowrap;
}

.btn-primary-red:hover {
    background: var(--primary-red-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(229, 9, 20, 0.5);
    color: #FFFFFF;
}

.btn-secondary-dark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #1A1A22;
    color: var(--text-pure-white);
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 600;
    padding: 10px 24px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-subtle);
    cursor: pointer;
    transition: var(--transition-smooth);
    min-height: 44px;
}

.btn-secondary-dark:hover {
    background: var(--bg-surface-hover);
    border-color: var(--border-light);
    transform: translateY(-2px);
}

/* Top Announcement Bar */
.top-announcement-bar {
    background: #0D0D12;
    border-bottom: 1px solid var(--border-subtle);
    font-size: 0.82rem;
    padding: 7px 0;
}

.announcement-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}

.badge-pill-status {
    background: rgba(229, 9, 20, 0.15);
    color: var(--primary-red);
    border: 1px solid rgba(229, 9, 20, 0.3);
    padding: 2px 10px;
    border-radius: var(--radius-pill);
    font-weight: 800;
    font-size: 0.72rem;
    letter-spacing: 0.5px;
}

.announcement-text {
    margin-bottom: 0;
    color: var(--text-muted);
}

.announcement-text strong {
    color: var(--text-pure-white);
}

.announcement-links {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.top-mini-link {
    color: var(--text-muted);
    font-weight: 500;
}

.top-mini-link:hover {
    color: var(--primary-red);
}

.sep {
    color: var(--border-light);
}

/* Sticky Main Navigation Header */
.main-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--bg-obsidian);
    border-bottom: 1px solid #1F1F2B;
    transition: var(--transition-smooth);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 76px;
    gap: 1.5rem;
}

.brand-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand-symbol {
    width: 44px;
    height: 44px;
    background: #111118;
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 0 4px 12px rgba(0,0,0,0.5);
}

.brand-symbol-circle {
    position: absolute;
    width: 8px;
    height: 8px;
    background: var(--primary-red);
    border-radius: 50%;
    top: 6px;
    right: 6px;
}

.brand-symbol-letter {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--text-pure-white);
}

.brand-text-block {
    display: flex;
    flex-direction: column;
}

.brand-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 800;
    letter-spacing: -0.01em;
    color: var(--text-pure-white);
    line-height: 1.1;
}

.brand-sub {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.8px;
    color: var(--primary-red);
    text-transform: uppercase;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.nav-item {
    position: relative;
}

.dropdown-trigger, .nav-link {
    background: transparent;
    border: none;
    color: var(--text-secondary);
    font-family: var(--font-heading);
    font-size: 0.88rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 4px;
    transition: var(--transition-smooth);
}

.dropdown-trigger:hover, .nav-link:hover, .nav-link.active {
    color: var(--text-pure-white);
}

.arrow-down {
    font-size: 0.65rem;
    color: var(--primary-red);
    transition: transform 0.2s ease;
}

/* Dropdown Menu (Desktop) */
.dropdown-menu {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    width: 260px;
    background: var(--bg-surface);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    padding: 8px;
    box-shadow: var(--shadow-elevated);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.25s ease;
    z-index: 100;
}

.has-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.has-dropdown:hover .arrow-down {
    transform: rotate(180deg);
}

.dropdown-menu li a {
    display: block;
    padding: 10px 14px;
    color: var(--text-secondary);
    font-size: 0.88rem;
    font-weight: 600;
    border-radius: var(--radius-sm);
    transition: var(--transition-smooth);
}

.dropdown-menu li a:hover, .dropdown-menu li a.active {
    background: var(--bg-surface-elevated);
    color: var(--text-pure-white);
    padding-left: 18px;
    border-left: 2px solid var(--primary-red);
}

/* Mobile Toggle */
.mobile-toggle {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
    flex-direction: column;
    gap: 5px;
    min-width: 44px;
    min-height: 44px;
    justify-content: center;
    align-items: center;
}

.mobile-toggle .bar {
    width: 24px;
    height: 2px;
    background: var(--text-pure-white);
    transition: var(--transition-smooth);
}

/* SECTION 1: SPLIT HERO (60/40 GRID) */
.hero-split-section {
    padding: 4.5rem 0 3.5rem;
    background: radial-gradient(circle at 80% 20%, rgba(229, 9, 20, 0.08) 0%, transparent 60%);
    border-bottom: 1px solid var(--border-subtle);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 3.5rem;
    align-items: center;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.hero-title {
    font-size: 3rem;
    font-weight: 900;
    color: var(--text-pure-white);
    line-height: 1.1;
    margin-bottom: 1.25rem;
}

.hero-title span.text-highlight {
    color: var(--primary-red);
}

.hero-summary-box {
    background: rgba(22, 22, 30, 0.6);
    border-left: 3px solid var(--primary-red);
    padding: 14px 18px;
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    margin-bottom: 1.5rem;
}

.hero-summary-text {
    font-size: 1.05rem;
    font-weight: 600;
    color: #F3F4F6;
    line-height: 1.55;
    margin-bottom: 0;
}

.hero-mission-box {
    background: var(--bg-surface);
    border: 1px solid var(--border-subtle);
    padding: 1.5rem;
    border-radius: var(--radius-md);
    margin-bottom: 2rem;
    box-shadow: var(--shadow-ambient);
}

.hero-mission-box h3 {
    font-size: 1.1rem;
    color: var(--primary-red);
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-mission-box p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-secondary);
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-media-wrapper {
    position: relative;
}

.hero-frame {
    background: var(--bg-surface);
    padding: 10px;
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-ambient);
    position: relative;
    overflow: hidden;
}

.hero-frame img {
    border-radius: var(--radius-md);
    aspect-ratio: 16/9;
    width: 100%;
    object-fit: cover;
    filter: brightness(0.95) contrast(1.05);
}

.hero-media-badge {
    position: absolute;
    bottom: 24px;
    left: 24px;
    background: rgba(8, 8, 12, 0.85);
    backdrop-filter: blur(8px);
    border: 1px solid var(--border-subtle);
    padding: 8px 16px;
    border-radius: var(--radius-pill);
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text-pure-white);
    display: flex;
    align-items: center;
    gap: 8px;
}

.hero-media-badge .pulse-dot {
    width: 8px;
    height: 8px;
    background: var(--primary-red);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--primary-red);
}

/* SECTION 2: 4-COLUMN FEATURE CARDS GRID */
.pillars-section {
    padding: 4.5rem 0;
    border-bottom: 1px solid var(--border-subtle);
}

.section-header-centered {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3.5rem;
}

.section-main-heading {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--text-pure-white);
    line-height: 1.2;
}

.pillars-grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.pillar-card {
    background: #111118;
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    padding: 2rem 1.5rem;
    box-shadow: var(--shadow-ambient);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
}

.pillar-card:hover {
    transform: translateY(-4px);
    border-color: var(--border-accent);
    box-shadow: 0 16px 35px rgba(0, 0, 0, 0.7);
}

.pillar-icon-circle {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: 2px solid var(--primary-red);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    color: var(--primary-red);
    margin-bottom: 1.25rem;
    background: rgba(229, 9, 20, 0.06);
}

.pillar-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
    color: var(--text-pure-white);
}

.pillar-card p {
    font-size: 0.92rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* SECTION 3: DUAL-COLUMN ACTION BREAKDOWN */
.midpage-breakdown-section {
    padding: 4.5rem 0;
    border-bottom: 1px solid var(--border-subtle);
    background: #0A0A0E;
}

.breakdown-grid {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 3.5rem;
    align-items: center;
}

.breakdown-image-card {
    background: var(--bg-surface);
    padding: 10px;
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-ambient);
}

.breakdown-image-card img {
    border-radius: var(--radius-md);
    aspect-ratio: 16/9;
    width: 100%;
}

.breakdown-content {
    display: flex;
    flex-direction: column;
}

.breakdown-content .section-tag-red {
    margin-bottom: 0.5rem;
}

.breakdown-title {
    font-size: 2.1rem;
    margin-bottom: 1rem;
}

.breakdown-intro {
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.breakdown-features-stack {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.feature-block-item {
    display: flex;
    gap: 1.25rem;
    background: var(--bg-surface);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    padding: 1.25rem;
    transition: var(--transition-smooth);
}

.feature-block-item:hover {
    border-color: var(--border-light);
    transform: translateX(4px);
}

.feature-num {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--primary-red);
    min-width: 32px;
}

.feature-block-item h4 {
    font-size: 1.05rem;
    margin-bottom: 0.35rem;
    color: var(--text-pure-white);
    letter-spacing: 0.5px;
}

.feature-block-item p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 0;
}

/* SECTION 4: HIGHLIGHT BANNER CARD ("NOTRE EXPERTISE") */
.highlight-banner-section {
    padding: 4.5rem 0;
    border-bottom: 1px solid var(--border-subtle);
}

.highlight-banner-box {
    background: #111118;
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-elevated);
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    overflow: hidden;
}

.banner-img-side {
    position: relative;
}

.banner-img-side img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
}

.banner-content-side {
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.banner-content-side h2 {
    font-size: 2.2rem;
    margin-bottom: 1.25rem;
}

.banner-content-side p {
    font-size: 0.96rem;
    line-height: 1.7;
    margin-bottom: 1.75rem;
    color: var(--text-secondary);
}

/* SECTION 5: HYBRID REVIEWS & ARTICLES MATRIX (3-COLUMN) */
.hybrid-matrix-section {
    padding: 4.5rem 0;
    border-bottom: 1px solid var(--border-subtle);
}

.hybrid-grid-3 {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2.5rem;
}

.articles-stack-area {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.article-card-mini {
    background: #111118;
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-ambient);
    display: flex;
    flex-direction: column;
    transition: var(--transition-smooth);
}

.article-card-mini:hover {
    transform: translateY(-4px);
    border-color: var(--border-accent);
}

.article-card-img {
    aspect-ratio: 16/9;
    width: 100%;
    overflow: hidden;
}

.article-card-img img {
    border-radius: 0;
    width: 100%;
    height: 100%;
    transition: transform 0.4s ease;
}

.article-card-mini:hover .article-card-img img {
    transform: scale(1.04);
}

.article-card-body {
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.article-date-tag {
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--primary-red);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.5rem;
}

.article-card-body h4 {
    font-size: 1.05rem;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.article-card-body p {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.55;
    margin-bottom: 1rem;
    flex: 1;
}

.link-read-more {
    font-family: var(--font-heading);
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--primary-red);
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.link-read-more:hover {
    color: var(--primary-red-hover);
    padding-left: 4px;
}

/* Reviews Column (Col 3) */
.reviews-column-area {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.reviews-header-badge {
    background: var(--bg-surface);
    border: 1px solid var(--border-subtle);
    padding: 1rem;
    border-radius: var(--radius-md);
    text-align: center;
}

.google-rating-summary-pill {
    background: #1C1C26;
    border: 1px solid #2F2F3D;
    color: #FBBF24;
    padding: 8px 14px;
    border-radius: var(--radius-pill);
    font-weight: 700;
    font-size: 0.85rem;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.google-review-card {
    background: #111116;
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    padding: 1rem 1.25rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.4);
}

.review-user-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.5rem;
}

.review-user-info {
    display: flex;
    align-items: center;
    gap: 10px;
}

.review-avatar {
    width: 34px;
    height: 34px;
    background: var(--bg-surface-elevated);
    border: 1px solid var(--border-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--text-pure-white);
}

.review-name {
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--text-pure-white);
}

.review-date {
    font-size: 0.75rem;
    color: var(--text-dim);
}

.review-stars {
    color: #FBBF24;
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
    letter-spacing: 2px;
}

.review-text {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.5;
    margin-bottom: 0;
}

/* PARTNER & DISCIPLINE STRIP */
.partner-discipline-strip {
    padding: 3.5rem 0;
    background: #09090D;
    border-top: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
}

.strip-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.strip-title {
    font-size: 1.6rem;
    color: var(--text-pure-white);
}

.strip-grid-5 {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.25rem;
}

.strip-card {
    background: var(--bg-surface);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    padding: 1.5rem 1.25rem;
    position: relative;
    transition: var(--transition-smooth);
}

.strip-card:hover {
    border-color: var(--border-accent);
    transform: translateY(-3px);
}

.strip-badge {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 800;
    color: var(--primary-red);
    margin-bottom: 0.5rem;
}

.strip-card h4 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    color: var(--text-pure-white);
}

.strip-card p {
    font-size: 0.84rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin-bottom: 0;
}

/* MAIN FOOTER (4 COLUMNS) */
.main-footer {
    background: #060608;
    padding-top: 4rem;
    border-top: 1px solid #1A1A22;
}

.footer-content-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
    gap: 2.5rem;
    padding-bottom: 3.5rem;
    border-bottom: 1px solid var(--border-subtle);
}

.footer-brand-title {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--text-pure-white);
    display: block;
    margin-bottom: 0.5rem;
}

.footer-status-pill {
    display: inline-block;
    background: rgba(229, 9, 20, 0.15);
    color: var(--primary-red);
    border: 1px solid rgba(229, 9, 20, 0.3);
    font-size: 0.72rem;
    font-weight: 800;
    padding: 3px 10px;
    border-radius: var(--radius-pill);
    margin-bottom: 1rem;
}

.footer-mission-desc {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 1.25rem;
}

.footer-legal-ids {
    font-size: 0.82rem;
    color: var(--text-dim);
    line-height: 1.6;
}

.footer-legal-ids strong {
    color: var(--text-secondary);
}

.footer-heading {
    font-size: 0.95rem;
    font-weight: 800;
    letter-spacing: 1px;
    color: var(--text-pure-white);
    margin-bottom: 1.25rem;
    text-transform: uppercase;
}

.footer-link-list li {
    margin-bottom: 0.65rem;
}

.footer-link-list a {
    font-size: 0.88rem;
    color: var(--text-muted);
}

.footer-link-list a:hover {
    color: var(--primary-red);
    padding-left: 4px;
}

.footer-contact-item {
    display: flex;
    gap: 10px;
    margin-bottom: 1rem;
    font-size: 0.88rem;
    color: var(--text-muted);
}

.footer-contact-item a:hover {
    color: var(--primary-red);
}

.footer-hours-box {
    background: #0E0E14;
    border: 1px solid var(--border-subtle);
    padding: 0.85rem;
    border-radius: var(--radius-sm);
    font-size: 0.82rem;
}

.hours-title {
    color: var(--text-pure-white);
    margin-bottom: 0.25rem;
}

.hours-text {
    color: var(--text-dim);
    margin-bottom: 0;
}

/* REINVESTMENT GUARANTEE BOX */
.reinvestment-guarantee-box {
    background: rgba(22, 22, 30, 0.7);
    border: 1px solid var(--border-subtle);
    border-left: 3px solid var(--primary-red);
    padding: 1.25rem 1.5rem;
    border-radius: var(--radius-sm);
    margin: 2rem 0;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.guarantee-icon {
    font-size: 1.5rem;
}

.guarantee-text {
    font-size: 0.88rem;
    color: #E5E7EB;
    margin-bottom: 0;
    line-height: 1.55;
}

/* FOOTER BOTTOM BAR & UN-TRUNCATED DISCLOSURE */
.footer-bottom-bar {
    background: #040406;
    padding: 2rem 0 2.5rem;
    border-top: 1px solid var(--border-subtle);
    text-align: center;
}

.legal-links-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1.25rem;
    flex-wrap: wrap;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.legal-links-row a:hover {
    color: var(--primary-red);
}

.mandatory-untruncated-disclosure {
    max-width: 960px;
    margin: 0 auto 1rem;
    font-size: 0.84rem;
    color: #9CA3AF;
    line-height: 1.65;
}

.footer-domain-tag {
    font-size: 0.75rem;
    color: var(--text-dim);
}

/* FLOATING BACK TO TOP BUTTON */
.back-to-top-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--primary-red);
    color: #FFFFFF;
    border: none;
    box-shadow: 0 4px 20px rgba(229, 9, 20, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: scale(0.8);
    transition: var(--transition-smooth);
    z-index: 999;
}

.back-to-top-btn.visible {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}

.back-to-top-btn:hover {
    background: var(--primary-red-hover);
    transform: scale(1.08) translateY(-2px);
}

/* MODAL STYLING */
.modal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(4, 4, 6, 0.85);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    padding: 1.5rem;
}

.modal-box {
    background: #111118;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    width: 100%;
    max-width: 520px;
    padding: 2.5rem;
    position: relative;
    box-shadow: var(--shadow-elevated);
    text-align: center;
    animation: modalPop 0.3s ease;
}

@keyframes modalPop {
    from { opacity: 0; transform: scale(0.95); }
    to { opacity: 1; transform: scale(1); }
}

.modal-close-btn {
    position: absolute;
    top: 18px;
    right: 18px;
    background: transparent;
    border: none;
    color: var(--text-muted);
    font-size: 1.25rem;
    cursor: pointer;
    padding: 6px;
    min-width: 32px;
    min-height: 32px;
}

.modal-icon-circle {
    width: 60px;
    height: 60px;
    background: rgba(34, 197, 94, 0.15);
    color: #22C55E;
    border: 2px solid #22C55E;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    font-weight: 800;
    margin: 0 auto 1.5rem;
}

.modal-title {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}

.modal-text {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 2rem;
}

/* GENERIC SUB-PAGE LAYOUTS */
.subpage-hero {
    padding: 4rem 0 3rem;
    background: radial-gradient(circle at 70% 30%, rgba(229, 9, 20, 0.08) 0%, transparent 60%);
    border-bottom: 1px solid var(--border-subtle);
}

.subpage-hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 3rem;
    align-items: center;
}

.subpage-hero-content h1 {
    font-size: 2.75rem;
    margin-bottom: 1rem;
}

.subpage-lead-text {
    font-size: 1.15rem;
    color: #E5E7EB;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.content-section {
    padding: 4rem 0;
    border-bottom: 1px solid var(--border-subtle);
}

.content-section:nth-child(even) {
    background: #0A0A0E;
}

.rich-text-block {
    max-width: 900px;
    margin: 0 auto;
}

.rich-text-block h2 {
    font-size: 2rem;
    margin: 2.5rem 0 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--border-subtle);
}

.rich-text-block h2:first-child {
    margin-top: 0;
}

.rich-text-block h3 {
    font-size: 1.4rem;
    margin: 1.75rem 0 0.75rem;
    color: var(--primary-red);
}

.rich-text-block p {
    font-size: 1.02rem;
    line-height: 1.75;
    color: #D1D5DB;
    margin-bottom: 1.4rem;
}

.rich-text-block ul {
    margin: 1rem 0 1.5rem 1.5rem;
    list-style: disc;
}

.rich-text-block ul li {
    margin-bottom: 0.6rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

/* Institutional Tables */
.table-responsive-wrapper {
    overflow-x: auto;
    margin: 2rem 0;
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
}

.institutional-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.92rem;
    text-align: left;
}

.institutional-table th {
    background: #161620;
    color: var(--text-pure-white);
    font-weight: 700;
    padding: 14px 18px;
    border-bottom: 2px solid var(--primary-red);
}

.institutional-table td {
    padding: 12px 18px;
    border-bottom: 1px solid var(--border-subtle);
    color: var(--text-secondary);
}

.institutional-table tr:hover td {
    background: rgba(255, 255, 255, 0.02);
}

/* Cards & Grid Containers for Subpages */
.cards-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
    margin: 2.5rem 0;
}

.info-card-elevated {
    background: #111118;
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    padding: 1.75rem;
    box-shadow: var(--shadow-ambient);
    transition: var(--transition-smooth);
}

.info-card-elevated:hover {
    border-color: var(--border-accent);
    transform: translateY(-3px);
}

.info-card-elevated h4 {
    color: var(--text-pure-white);
    margin-bottom: 0.65rem;
}

.info-card-elevated p {
    font-size: 0.92rem;
    color: var(--text-muted);
}

/* Interactive Contact & Volunteer Forms */
.form-card-container {
    background: #111118;
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    box-shadow: var(--shadow-elevated);
}

.form-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
    display: flex;
    flex-direction: column;
}

.form-group.full-width {
    grid-column: span 2;
}

.form-label {
    font-family: var(--font-heading);
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--text-pure-white);
    margin-bottom: 0.5rem;
}

.form-control {
    background: #09090D;
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-sm);
    color: var(--text-pure-white);
    font-family: var(--font-body);
    font-size: 0.95rem;
    padding: 12px 16px;
    transition: var(--transition-smooth);
    min-height: 46px;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-red);
    box-shadow: 0 0 0 2px rgba(229, 9, 20, 0.2);
}

textarea.form-control {
    min-height: 130px;
    resize: vertical;
}

.form-checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.85rem;
    color: var(--text-muted);
    cursor: pointer;
}

.form-checkbox-label input[type="checkbox"] {
    margin-top: 3px;
    accent-color: var(--primary-red);
    width: 16px;
    height: 16px;
}

/* RESPONSIVE DESIGN - BREAKPOINTS */

/* Tablet Breakpoint: 992px */
@media (max-width: 992px) {
    .header-inner {
        height: 70px;
    }

    .mobile-toggle {
        display: flex;
    }

    .main-nav {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        height: calc(100vh - 70px);
        background: var(--bg-obsidian);
        flex-direction: column;
        align-items: stretch;
        padding: 2rem 1.5rem;
        gap: 1.5rem;
        overflow-y: auto;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        border-top: 1px solid var(--border-subtle);
    }

    .main-nav.is-open {
        transform: translateX(0);
    }

    .nav-list {
        flex-direction: column;
        align-items: stretch;
        gap: 0.5rem;
        width: 100%;
    }

    .dropdown-trigger, .nav-link {
        width: 100%;
        justify-content: space-between;
        padding: 14px 10px;
        font-size: 1rem;
        border-bottom: 1px solid var(--border-subtle);
    }

    .dropdown-menu {
        position: static;
        width: 100%;
        box-shadow: none;
        border: none;
        background: #0E0E14;
        padding: 0 0 0 1rem;
        margin: 0;
        display: none;
        opacity: 1;
        visibility: visible;
        transform: none;
    }

    .has-dropdown.active-mobile .dropdown-menu {
        display: block;
    }

    .nav-cta-wrapper {
        margin-top: 1rem;
        width: 100%;
    }

    .nav-cta-wrapper .btn-primary-red {
        width: 100%;
    }

    /* Grids to Single Column or 2-col */
    .hero-grid,
    .breakdown-grid,
    .subpage-hero-grid,
    .highlight-banner-box {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .pillars-grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }

    .strip-grid-5 {
        grid-template-columns: repeat(2, 1fr);
    }

    .hybrid-grid-3 {
        grid-template-columns: 1fr;
    }

    .footer-content-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .cards-grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile Phone Breakpoint: 768px */
@media (max-width: 768px) {
    h1 { font-size: 2.15rem; }
    h2 { font-size: 1.7rem; }
    .hero-title { font-size: 2.2rem; }
    
    .pillars-grid-4,
    .strip-grid-5,
    .articles-stack-area,
    .footer-content-grid,
    .cards-grid-3,
    .form-grid-2 {
        grid-template-columns: 1fr;
    }

    .form-group.full-width {
        grid-column: span 1;
    }

    .hero-actions {
        flex-direction: column;
        width: 100%;
    }

    .hero-actions .btn-primary-red,
    .hero-actions .btn-secondary-dark {
        width: 100%;
    }

    .banner-content-side {
        padding: 2rem 1.5rem;
    }

    .top-announcement-bar {
        text-align: center;
    }

    .announcement-inner {
        justify-content: center;
        text-align: center;
    }

    .legal-links-row {
        flex-direction: column;
        gap: 0.5rem;
    }
}
