/* ============================================
   GOOD FORTUNE 888 — Global Styles
   "From Hustle to Wealth"
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;1,9..40,400&family=Syne:wght@400;500;600;700;800&display=swap');

/* ---- CSS Variables ---- */
:root {
    --gold: #D4A843;
    --gold-light: #F0D68A;
    --gold-dark: #B8922E;
    --red: #8B1A1A;
    --red-light: #A82525;
    --red-dark: #6B1010;
    --dark: #0A0A0A;
    --dark-card: #111111;
    --dark-accent: #1A1A1A;
    --cream: #F5F0E8;
    --green: #2D6A4F;
    --green-light: #40916C;
    --text-muted: #8A8A8A;
    --border: rgba(212, 168, 67, 0.15);
    --glow-gold: rgba(212, 168, 67, 0.3);
    --glow-red: rgba(139, 26, 26, 0.3);
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: var(--dark);
    color: var(--cream);
    overflow-x: hidden;
    line-height: 1.6;
    font-size: 16px;
}

h1, h2, h3, h4, h5 {
    font-family: 'Syne', sans-serif;
    line-height: 1.2;
}

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

a:hover {
    color: var(--gold-light);
}

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

/* Noise texture overlay */
body::before {
    content: '';
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 0;
}

/* ---- Layout ---- */
section {
    position: relative;
    z-index: 1;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-padding {
    padding: 100px 0;
}

/* ---- Navigation ---- */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 24px;
    background: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    transition: all 0.3s ease;
}

.nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.nav-logo {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--gold);
    box-shadow: 0 0 12px var(--glow-gold);
}

.nav-brand-text {
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: 1.15rem;
    color: var(--gold);
    letter-spacing: 0.5px;
}

.nav-brand-text .eight {
    color: var(--red-light);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
}

.nav-links a {
    color: var(--cream);
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.3px;
    transition: color 0.3s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: var(--gold);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-links a.active {
    color: var(--gold);
}

.nav-links a.active::after {
    width: 100%;
}

.btn-nav {
    background: var(--red);
    color: var(--cream) !important;
    padding: 10px 24px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.btn-nav:hover {
    background: var(--red-light);
    color: var(--cream) !important;
    box-shadow: 0 0 20px var(--glow-red);
}

.btn-nav::after {
    display: none !important;
}

.btn-nav-donate {
    background: linear-gradient(135deg, var(--gold-dark), var(--gold));
    color: var(--dark) !important;
    padding: 10px 22px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border: 1px solid transparent;
    letter-spacing: 0.3px;
}

.btn-nav-donate:hover {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--dark) !important;
    box-shadow: 0 0 20px var(--glow-gold);
    transform: translateY(-1px);
}

.btn-nav-donate::after {
    display: none !important;
}

/* Mobile nav toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
    background: none;
    border: none;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--gold);
    transition: all 0.3s ease;
}

/* ---- Accessibility: Skip to Content ---- */
.skip-to-content {
    position: absolute;
    top: -100%;
    left: 16px;
    background: var(--gold);
    color: var(--dark);
    padding: 12px 24px;
    border-radius: 0 0 10px 10px;
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    z-index: 9999;
    transition: top 0.2s ease;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(0,0,0,0.4);
}

.skip-to-content:focus {
    top: 0;
    outline: 3px solid var(--dark);
    outline-offset: 2px;
}

/* ---- Focus Visible Indicators ---- */
:focus-visible {
    outline: 3px solid var(--gold);
    outline-offset: 3px;
    border-radius: 4px;
}

/* Remove default focus ring only for mouse users (keeps keyboard accessible) */
:focus:not(:focus-visible) {
    outline: none;
}

/* Ensure all interactive elements have minimum touch target size */
a, button, input, select, textarea, [role="button"], [tabindex="0"] {
    min-height: 44px;
    min-width: 44px;
}

/* Exceptions: nav links and certain inline elements */
.nav-links a, .nav-toggle, .footer-links a {
    min-height: auto;
    min-width: auto;
}

.katrina-input, .newsletter-name-input, .newsletter-email-input,
.footer-newsletter-input {
    min-height: 44px;
}

/* ---- Buttons ---- */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--red);
    color: var(--cream);
    padding: 16px 36px;
    border-radius: 12px;
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: 1.05rem;
    letter-spacing: 0.5px;
    border: 1px solid transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-primary:hover {
    background: var(--red-light);
    color: var(--cream);
    box-shadow: 0 0 30px var(--glow-red);
    transform: translateY(-2px);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: var(--gold);
    padding: 16px 36px;
    border-radius: 12px;
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: 1.05rem;
    letter-spacing: 0.5px;
    border: 2px solid var(--gold);
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-secondary:hover {
    background: var(--gold);
    color: var(--dark);
    box-shadow: 0 0 30px var(--glow-gold);
    transform: translateY(-2px);
}

/* ---- Section Headers ---- */
.section-label {
    display: inline-block;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
    padding: 8px 16px;
    background: rgba(212, 168, 67, 0.08);
    border: 1px solid rgba(212, 168, 67, 0.2);
    border-radius: 100px;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--cream);
    margin-bottom: 20px;
}

.section-title .highlight {
    color: var(--gold);
}

.section-title .highlight-red {
    color: var(--red-light);
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 600px;
    line-height: 1.7;
}

/* ---- Cards ---- */
.card {
    background: var(--dark-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 32px;
    transition: all 0.3s ease;
}

.card:hover {
    border-color: rgba(212, 168, 67, 0.3);
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.3);
    transform: translateY(-4px);
}

/* ---- Gold Divider ---- */
.divider {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    border-radius: 2px;
    margin: 24px 0;
}

/* ---- Footer ---- */
.footer {
    position: relative;
    z-index: 1;
    padding: 60px 0 30px;
    border-top: 1px solid var(--border);
    background: var(--dark-card);
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.footer-brand img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid var(--gold);
}

.footer-brand-name {
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--gold);
}

.footer-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
    max-width: 360px;
}

.footer-heading {
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: #A0A0A0;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    padding-top: 24px;
    border-top: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.875rem;
    color: #A0A0A0;
}

.footer-tagline {
    font-style: italic;
    color: var(--gold);
    opacity: 0.8;
}

.footer-legal-links {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.875rem;
}

.footer-legal-links a {
    color: #A0A0A0;
    transition: color 0.3s ease;
}

.footer-legal-links a:hover {
    color: var(--gold);
}

.footer-legal-sep {
    color: var(--text-muted);
    opacity: 0.5;
}

/* ---- Footer Newsletter Signup ---- */
.footer-newsletter {
    margin-top: 28px;
}

.footer-newsletter-form {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 12px;
}

.footer-newsletter-input {
    flex: 1 1 180px;
    min-width: 0;
    background: rgba(255,255,255,0.06);
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 10px 14px;
    font-size: 0.88rem;
    color: var(--cream);
    font-family: 'DM Sans', sans-serif;
    transition: border-color 0.3s ease;
}

.footer-newsletter-input:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(212, 168, 67, 0.2);
}

.footer-newsletter-input::placeholder {
    color: var(--text-muted);
}

.footer-newsletter-input:focus {
    border-color: var(--gold);
    background: rgba(212,168,67,0.06);
    box-shadow: 0 0 0 3px rgba(212, 168, 67, 0.2);
}

.footer-newsletter-btn {
    background: var(--gold);
    color: #0A0A0A;
    border: none;
    border-radius: 6px;
    padding: 10px 18px;
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: 0.875rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.3s ease, opacity 0.3s ease;
    white-space: nowrap;
    flex-shrink: 0;
}

.footer-newsletter-btn:hover {
    background: var(--gold-light);
}

.footer-newsletter-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.footer-newsletter-msg {
    font-size: 0.82rem;
    margin-top: 8px;
    min-height: 18px;
    color: var(--text-muted);
}

.footer-newsletter-msg.success {
    color: #4CAF7A;
}

.footer-newsletter-msg.success::before {
    content: "\2713 ";
}

.footer-newsletter-msg.error {
    color: #EF7070;
}

.footer-newsletter-msg.error::before {
    content: "\26A0 ";
}

/* ---- Footer LinkedIn Link ---- */
.footer-linkedin-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--text-muted) !important;
    font-size: 0.9rem;
    transition: color 0.3s ease !important;
    text-decoration: none;
}

.footer-linkedin-link:hover {
    color: var(--gold) !important;
}

.footer-linkedin-icon {
    width: 18px;
    height: 18px;
    fill: var(--gold);
    flex-shrink: 0;
}

/* ---- Landing Page Newsletter Section ---- */
.newsletter-section {
    background: var(--dark-card);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 80px 24px;
    position: relative;
    overflow: hidden;
}

.newsletter-section::before {
    content: '';
    position: absolute;
    top: 0; left: 50%; transform: translateX(-50%);
    width: 600px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.newsletter-inner {
    max-width: 640px;
    margin: 0 auto;
    text-align: center;
}

.newsletter-badge {
    display: inline-block;
    background: rgba(212,168,67,0.12);
    border: 1px solid rgba(212,168,67,0.3);
    color: var(--gold);
    font-family: 'Syne', sans-serif;
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 100px;
    margin-bottom: 20px;
}

.newsletter-title {
    font-family: 'Syne', sans-serif;
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--cream);
    margin-bottom: 16px;
    line-height: 1.15;
}

.newsletter-body {
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 32px;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
}

.newsletter-form-row {
    display: flex;
    gap: 10px;
    width: 100%;
    max-width: 520px;
    flex-wrap: wrap;
    justify-content: center;
}

.newsletter-name-input,
.newsletter-email-input {
    flex: 1 1 180px;
    min-width: 0;
    background: rgba(255,255,255,0.06);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 14px 18px;
    font-size: 0.95rem;
    color: var(--cream);
    font-family: 'DM Sans', sans-serif;
    transition: border-color 0.3s ease, background 0.3s ease;
}

.newsletter-name-input::placeholder,
.newsletter-email-input::placeholder {
    color: var(--text-muted);
}

.newsletter-name-input:focus,
.newsletter-email-input:focus {
    border-color: var(--gold);
    background: rgba(212,168,67,0.06);
    outline: none;
    box-shadow: 0 0 0 3px rgba(212, 168, 67, 0.2);
}

.newsletter-submit-btn {
    background: var(--gold);
    color: #0A0A0A;
    border: none;
    border-radius: 8px;
    padding: 14px 28px;
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease;
    white-space: nowrap;
    flex-shrink: 0;
}

.newsletter-submit-btn:hover {
    background: var(--gold-light);
    transform: translateY(-1px);
}

.newsletter-submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.newsletter-form-msg {
    font-size: 0.9rem;
    margin-top: 14px;
    color: var(--text-muted);
    min-height: 20px;
}

.newsletter-form-msg.success {
    color: #4CAF7A;
}

.newsletter-form-msg.success::before {
    content: "\2713 ";
}

.newsletter-form-msg.error {
    color: #EF7070;
}

.newsletter-form-msg.error::before {
    content: "\26A0 ";
}

@media (max-width: 768px) {
    .newsletter-title {
        font-size: 1.7rem;
    }
    .newsletter-form-row {
        flex-direction: column;
    }
    .newsletter-name-input,
    .newsletter-email-input,
    .newsletter-submit-btn {
        flex: unset;
        width: 100%;
    }
    .footer-newsletter-form {
        flex-direction: column;
    }
    .footer-newsletter-btn {
        width: 100%;
    }
}

/* ---- Forms ---- */
.form-group {
    margin-bottom: 24px;
}

.form-label {
    display: block;
    font-family: 'Syne', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--cream);
    margin-bottom: 8px;
    letter-spacing: 0.3px;
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 14px 18px;
    background: var(--dark-accent);
    border: 1px solid var(--border);
    border-radius: 10px;
    color: var(--cream);
    font-family: 'DM Sans', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(212, 168, 67, 0.2);
    outline: none;
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: var(--text-muted);
}

.form-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23D4A843' stroke-width='2' fill='none'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 18px center;
    padding-right: 44px;
}

.form-select option {
    background: var(--dark-card);
    color: var(--cream);
}

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

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-hint {
    font-size: 0.875rem;
    color: #A0A0A0;
    margin-top: 6px;
}

/* ---- Required Field Indicator ---- */
.form-label .required-indicator {
    color: var(--red-light);
    font-weight: 700;
}

/* ---- Hero Section (Landing) ---- */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 120px 24px 80px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '888';
    position: absolute;
    right: -60px;
    top: 50%;
    transform: translateY(-50%);
    font-family: 'Syne', sans-serif;
    font-size: clamp(200px, 30vw, 500px);
    font-weight: 800;
    color: var(--gold);
    opacity: 0.04;
    pointer-events: none;
    line-height: 1;
}

.hero-inner {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-content {
    position: relative;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(212, 168, 67, 0.08);
    border: 1px solid rgba(212, 168, 67, 0.2);
    border-radius: 100px;
    padding: 8px 20px;
    margin-bottom: 28px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gold);
    letter-spacing: 1px;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.08;
    margin-bottom: 24px;
}

.hero-title .gold {
    color: var(--gold);
    display: block;
}

.hero-title .red {
    color: var(--red-light);
}

.hero-desc {
    font-size: 1.15rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 36px;
    max-width: 500px;
}

.hero-cta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.hero-coin {
    width: min(420px, 100%);
    border-radius: 50%;
}

/* ---- Stats Bar ---- */
.stats-bar {
    position: relative;
    z-index: 1;
    padding: 40px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background: var(--dark-card);
}

.stats-grid {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    text-align: center;
}

.stat-item {
    padding: 8px;
}

.stat-number {
    font-family: 'Syne', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* ---- Mission Section ---- */
.mission {
    position: relative;
    z-index: 1;
    padding: 100px 0;
}

.mission-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    text-align: center;
}

.mission-quote {
    font-family: 'Syne', sans-serif;
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 700;
    line-height: 1.3;
    max-width: 800px;
    margin: 0 auto 24px;
}

.mission-quote .gold {
    color: var(--gold);
}

.mission-desc {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ---- Program Highlights (Landing) ---- */
.program-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.program-card {
    background: var(--dark-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 36px 28px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.program-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--red-light));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.program-card:hover {
    border-color: rgba(212, 168, 67, 0.3);
    transform: translateY(-6px);
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.4);
}

.program-card:hover::before {
    opacity: 1;
}

.program-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: rgba(212, 168, 67, 0.08);
    border: 1px solid rgba(212, 168, 67, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.program-card-number {
    font-family: 'Syne', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 8px;
    opacity: 0.7;
}

.program-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--cream);
}

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

/* ---- Audience Section ---- */
.audience-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.audience-card {
    background: var(--dark-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 40px 28px;
    text-align: center;
    transition: all 0.3s ease;
}

.audience-card:hover {
    border-color: rgba(45, 106, 79, 0.4);
    transform: translateY(-4px);
}

.audience-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.audience-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--cream);
}

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

/* ---- Board & Team Section ---- */
.board-section {
    padding: 100px 0;
    background: var(--dark);
    border-top: 1px solid var(--border);
}

.board-section .section-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Featured card (President/Chair) */
.board-featured-card {
    display: flex;
    gap: 36px;
    align-items: flex-start;
    background: var(--dark-card);
    border: 1px solid var(--gold);
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 32px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(212, 168, 67, 0.15);
}

.board-featured-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-dark));
}

.board-featured-card:hover {
    border-color: var(--gold-light);
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(212, 168, 67, 0.3);
    transform: translateY(-4px);
}

/* Regular board member cards */
.board-member-card {
    display: flex;
    gap: 28px;
    align-items: flex-start;
    background: var(--dark-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 32px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.board-member-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background: var(--gold);
    opacity: 0.6;
}

.board-member-card:hover {
    border-color: rgba(212, 168, 67, 0.3);
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

/* Board grid for non-featured members */
.board-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

/* Avatar / Initials circle */
.board-member-avatar {
    flex-shrink: 0;
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: var(--dark-accent);
    border: 2px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.board-member-avatar-chair {
    width: 88px;
    height: 88px;
    border-color: var(--gold);
    background: linear-gradient(135deg, var(--dark-card), var(--dark-accent));
    box-shadow: 0 0 20px rgba(212, 168, 67, 0.2);
}

.board-initials {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: 1.1rem;
    color: var(--cream);
    letter-spacing: 0.05em;
}

.board-member-avatar-chair .board-initials {
    font-size: 1.4rem;
    color: var(--gold);
}

/* Member info */
.board-member-info {
    flex: 1;
    min-width: 0;
}

.board-member-name {
    font-family: 'Syne', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--cream);
    margin-bottom: 6px;
}

.board-featured-card .board-member-name {
    font-size: 1.6rem;
}

.board-member-role {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Syne', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--gold);
    margin-bottom: 16px;
}

.board-featured-card .board-member-role {
    font-size: 1.05rem;
}

.board-role-icon {
    font-size: 1.1rem;
    line-height: 1;
}

.board-member-responsibility {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.65;
    margin-bottom: 20px;
}

.board-featured-card .board-member-responsibility {
    font-size: 1rem;
}

/* Key Focus tags */
.board-member-focus {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
}

.board-focus-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-right: 4px;
}

.board-focus-tag {
    display: inline-block;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--cream);
    background: var(--dark-accent);
    border: 1px solid var(--border);
    border-radius: 100px;
    padding: 4px 14px;
    white-space: nowrap;
}

.board-featured-card .board-focus-tag {
    background: rgba(212, 168, 67, 0.1);
    border-color: rgba(212, 168, 67, 0.3);
    color: var(--gold-light);
}

/* ---- CTA Banner ---- */
.cta-banner {
    position: relative;
    z-index: 1;
    padding: 100px 0;
    text-align: center;
    background: linear-gradient(180deg, var(--dark) 0%, rgba(139, 26, 26, 0.08) 50%, var(--dark) 100%);
}

.cta-banner h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: 16px;
}

.cta-banner p {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 36px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.cta-banner .gold {
    color: var(--gold);
}

/* ---- Page Headers ---- */
.page-header {
    padding: 160px 0 80px;
    text-align: center;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 0%, rgba(212, 168, 67, 0.06) 0%, transparent 60%);
    pointer-events: none;
}

.page-header h1 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 16px;
}

.page-header .subtitle {
    font-size: 1.15rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ---- Curriculum Page ---- */
.curriculum-module {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 32px;
    align-items: flex-start;
    padding: 48px 0;
    border-bottom: 1px solid var(--border);
    scroll-margin-top: 90px;
}

.curriculum-module:last-child {
    border-bottom: none;
}

.module-number-badge {
    width: 72px;
    height: 72px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--red), var(--red-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--gold-light);
    border: 2px solid rgba(212, 168, 67, 0.3);
    flex-shrink: 0;
}

.module-content h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--cream);
}

.module-content .module-tagline {
    font-size: 1rem;
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 12px;
    font-style: italic;
}

.module-content p {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 16px;
}

.module-topics {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.topic-tag {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(212, 168, 67, 0.06);
    border: 1px solid rgba(212, 168, 67, 0.15);
    border-radius: 100px;
    font-size: 0.8rem;
    color: var(--gold);
    font-weight: 500;
}

/* ---- Curriculum Module Enhancements ---- */
.module-header-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 12px;
    flex-wrap: wrap;
}

.module-header-row h3 {
    margin-bottom: 0 !important;
    flex: 1;
    min-width: 0;
}

.module-duration {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 14px;
    background: rgba(45, 106, 79, 0.12);
    border: 1px solid rgba(45, 106, 79, 0.3);
    border-radius: 100px;
    font-size: 0.78rem;
    color: var(--green-light);
    font-weight: 600;
    letter-spacing: 0.02em;
    white-space: nowrap;
    flex-shrink: 0;
    margin-top: 4px;
}

.module-outcomes {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 16px 20px;
    margin-bottom: 16px;
}

.outcomes-label {
    display: block;
    font-size: 0.7rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--green-light);
    font-weight: 700;
    margin-bottom: 10px;
}

.outcomes-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.outcomes-list li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--cream);
    line-height: 1.5;
}

.outcomes-list li::before {
    content: "→";
    color: var(--green-light);
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 1px;
}

/* ---- About Page ---- */
.about-story {
    max-width: 800px;
    margin: 0 auto;
}

.about-story p {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 24px;
}

.about-story p.lead {
    font-size: 1.3rem;
    color: var(--cream);
    font-weight: 500;
}

.about-story .pull-quote {
    font-family: 'Syne', sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--gold);
    border-left: 3px solid var(--red);
    padding-left: 24px;
    margin: 40px 0;
    line-height: 1.4;
}

.about-values {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.value-card {
    background: var(--dark-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 32px 24px;
    text-align: center;
}

.value-number {
    font-family: 'Syne', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--gold);
    margin-bottom: 12px;
}

.value-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--cream);
}

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

/* ---- Partner Inquiry Form ---- */
.inquiry-section {
    position: relative;
    z-index: 1;
    padding: 0 0 100px;
}

.inquiry-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: flex-start;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.inquiry-info h2 {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 16px;
}

.inquiry-info p {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 32px;
}

.inquiry-benefit {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
    align-items: flex-start;
}

.inquiry-benefit-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(212, 168, 67, 0.08);
    border: 1px solid rgba(212, 168, 67, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.inquiry-benefit h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 4px;
    color: var(--cream);
}

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

.inquiry-form-card {
    background: var(--dark-card);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 40px;
}

.inquiry-form-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.inquiry-form-card .form-subtitle {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 32px;
}

.btn-submit {
    width: 100%;
    padding: 16px;
    background: var(--red);
    color: var(--cream);
    border: none;
    border-radius: 12px;
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: 1.05rem;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}

.btn-submit:hover {
    background: var(--red-light);
    box-shadow: 0 0 30px var(--glow-red);
}

.btn-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Form toast messages */
.form-toast {
    position: fixed;
    top: 80px;
    right: 24px;
    padding: 16px 24px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.95rem;
    z-index: 9999;
    transform: translateX(120%);
    transition: transform 0.3s ease;
    max-width: 400px;
}

.form-toast.show {
    transform: translateX(0);
}

.form-toast.success {
    background: var(--green);
    color: var(--cream);
    border: 1px solid var(--green-light);
}

.form-toast.error {
    background: var(--red-dark);
    color: var(--cream);
    border: 1px solid var(--red);
}

/* ---- Thank You Page ---- */
.thank-you-section {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 24px;
    position: relative;
    z-index: 1;
}

.thank-you-coin {
    width: 140px;
    border-radius: 50%;
    margin-bottom: 32px;
    box-shadow: 0 0 60px rgba(212, 168, 67, 0.3);
}

.thank-you-section h1 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 16px;
}

.thank-you-section p {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 500px;
    margin: 0 auto 32px;
    line-height: 1.7;
}

/* ---- Screen Reader Only Utility ---- */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ---- Animations ---- */
.fade-in {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ---- Reduced Motion ---- */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    .fade-in {
        opacity: 1;
        transform: none;
    }
    html {
        scroll-behavior: auto;
    }
}

/* ---- Responsive ---- */
@media (max-width: 968px) {
    .hero-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-desc {
        margin: 0 auto 36px;
    }

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

    .hero-visual {
        order: -1;
    }

    .hero-coin {
        width: 280px;
    }

    .program-grid,
    .audience-grid,
    .about-values {
        grid-template-columns: 1fr;
    }

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

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

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .curriculum-module {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        background: rgba(10, 10, 10, 0.98);
        padding: 24px;
        gap: 20px;
        border-bottom: 1px solid var(--border);
    }

    .nav-links.open {
        display: flex;
    }

    .nav-toggle {
        display: flex;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .hero {
        padding: 100px 24px 60px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .btn-primary, .btn-secondary {
        width: 100%;
        justify-content: center;
    }

    .hero-cta {
        flex-direction: column;
        align-items: center;
    }

    .inquiry-form-card {
        padding: 24px;
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }

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

/* ============================================
   FAQ ACCORDION — About Page
   ============================================ */

.faq-category {
    margin-bottom: 48px;
}

.faq-category:last-of-type {
    margin-bottom: 56px;
}

.faq-category-title {
    font-family: 'Syne', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(212, 168, 67, 0.15);
    letter-spacing: 0.02em;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.faq-item {
    background: var(--dark);
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(212, 168, 67, 0.3);
}

.faq-item.active {
    border-color: rgba(212, 168, 67, 0.35);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.2);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 20px 24px;
    background: none;
    border: none;
    color: var(--cream);
    font-family: 'DM Sans', sans-serif;
    font-size: 1.05rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    transition: color 0.3s ease;
    gap: 16px;
    min-height: 44px;
    line-height: 1.5;
}

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

.faq-item.active .faq-question {
    color: var(--gold);
}

.faq-chevron {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    color: var(--gold);
    transition: transform 0.3s ease;
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-answer-inner {
    padding: 0 24px 20px;
}

.faq-answer-inner p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 12px;
}

.faq-answer-inner p:last-child {
    margin-bottom: 0;
}

.faq-answer-inner a {
    color: var(--gold);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.faq-answer-inner a:hover {
    color: var(--gold-light);
}

.faq-answer-inner ul,
.faq-answer-inner ol {
    margin: 8px 0 12px 0;
    padding-left: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.faq-answer-inner ul li,
.faq-answer-inner ol li {
    position: relative;
    padding-left: 20px;
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.7;
}

.faq-answer-inner ul li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--green-light);
    font-weight: 700;
}

.faq-answer-inner ol {
    counter-reset: faq-counter;
}

.faq-answer-inner ol li {
    counter-increment: faq-counter;
}

.faq-answer-inner ol li::before {
    content: counter(faq-counter) ".";
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: 700;
    font-size: 0.85rem;
}

.faq-answer-inner strong {
    color: var(--cream);
}

/* FAQ CTA */
.faq-cta {
    text-align: center;
    padding: 48px 24px;
    background: var(--dark);
    border: 1px solid var(--border);
    border-radius: 16px;
}

.faq-cta-text {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-bottom: 24px;
    line-height: 1.6;
}

.faq-cta-text strong {
    color: var(--gold);
}

.faq-cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* FAQ Responsive — Tablet (769–1024px) */
@media (min-width: 769px) and (max-width: 1024px) {
    .faq-question {
        padding: 18px 20px;
        font-size: 1rem;
    }

    .faq-answer-inner {
        padding: 0 20px 18px;
    }
}

/* FAQ Responsive — Mobile (≤768px) */
@media (max-width: 768px) {
    .faq-category {
        margin-bottom: 40px;
    }

    .faq-category-title {
        font-size: 1.15rem;
    }

    .faq-question {
        padding: 16px 18px;
        font-size: 0.98rem;
        min-height: 48px;
    }

    .faq-answer-inner {
        padding: 0 18px 16px;
    }

    .faq-answer-inner p,
    .faq-answer-inner ul li,
    .faq-answer-inner ol li {
        font-size: 0.92rem;
    }

    .faq-cta {
        padding: 36px 20px;
    }

    .faq-cta-text {
        font-size: 1.05rem;
    }

    .faq-cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .faq-cta-buttons .btn-primary,
    .faq-cta-buttons .btn-secondary {
        width: 100%;
        max-width: 320px;
        justify-content: center;
    }
}

/* FAQ Responsive — Small Mobile (≤480px) */
@media (max-width: 480px) {
    .faq-category {
        margin-bottom: 32px;
    }

    .faq-category-title {
        font-size: 1.05rem;
        margin-bottom: 16px;
    }

    .faq-question {
        padding: 14px 16px;
        font-size: 0.93rem;
    }

    .faq-answer-inner {
        padding: 0 16px 14px;
    }

    .faq-answer-inner p,
    .faq-answer-inner ul li,
    .faq-answer-inner ol li {
        font-size: 0.88rem;
    }

    .faq-cta {
        padding: 28px 16px;
        border-radius: 12px;
    }

    .faq-cta-text {
        font-size: 1rem;
    }
}

/* FAQ Responsive — Extra Small (≤375px) */
@media (max-width: 375px) {
    .faq-category-title {
        font-size: 0.98rem;
    }

    .faq-question {
        padding: 14px 14px;
        font-size: 0.88rem;
        gap: 12px;
    }

    .faq-chevron {
        width: 18px;
        height: 18px;
    }

    .faq-answer-inner {
        padding: 0 14px 12px;
    }
}

/* FAQ Responsive — 320px */
@media (max-width: 320px) {
    .faq-question {
        padding: 12px 12px;
        font-size: 0.85rem;
    }

    .faq-answer-inner {
        padding: 0 12px 12px;
    }

    .faq-answer-inner p,
    .faq-answer-inner ul li,
    .faq-answer-inner ol li {
        font-size: 0.84rem;
    }
}

/* ===== Ministry tagline ===== */
.ministry-tagline {
    font-family: 'Syne', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    margin-top: 0.5rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

/* ===== Faith page styles ===== */
.faith-hero {
    padding: 120px 0 80px;
    text-align: center;
    background: radial-gradient(ellipse at top center, rgba(212, 168, 67, 0.08) 0%, transparent 70%);
}

.faith-intro {
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--cream);
    opacity: 0.85;
}

.faith-categories {
    padding: 80px 0;
}

.faith-category {
    margin-bottom: 4rem;
}

.faith-category-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border);
}

.faith-category-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    background: rgba(212, 168, 67, 0.1);
    border: 1px solid rgba(212, 168, 67, 0.3);
    flex-shrink: 0;
}

.faith-category-title {
    font-family: 'Syne', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--gold);
    margin: 0;
}

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

@media (max-width: 768px) {
    .scripture-grid {
        grid-template-columns: 1fr;
    }
}

.scripture-card {
    background: var(--dark-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 1.5rem;
    transition: border-color 0.3s, transform 0.2s;
}

.scripture-card:hover {
    border-color: rgba(212, 168, 67, 0.4);
    transform: translateY(-2px);
}

.scripture-ref {
    font-family: 'Syne', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
    display: block;
}

.scripture-text {
    font-size: 0.95rem;
    line-height: 1.65;
    color: var(--cream);
    opacity: 0.85;
    font-style: italic;
    margin: 0;
}

.faith-summary {
    padding: 80px 0;
    background: var(--dark-card);
}

.summary-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 2rem;
}

.summary-table th {
    background: rgba(212, 168, 67, 0.1);
    color: var(--gold);
    font-family: 'Syne', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 1rem 1.25rem;
    text-align: left;
    border-bottom: 2px solid rgba(212, 168, 67, 0.3);
}

.summary-table td {
    padding: 1rem 1.25rem;
    border-bottom: 1px solid var(--border);
    font-size: 0.95rem;
    color: var(--cream);
    opacity: 0.85;
    vertical-align: top;
}

.summary-table tr:last-child td {
    border-bottom: none;
}

.summary-table td:first-child {
    font-weight: 600;
    color: var(--gold);
    opacity: 1;
    width: 25%;
}

.summary-table tr:hover td {
    background: rgba(212, 168, 67, 0.03);
}

.faith-cta-section {
    padding: 80px 0;
    text-align: center;
}

/* ===== Foundation teaser section on landing page ===== */
.foundation-teaser {
    padding: 100px 0;
    text-align: center;
    background: linear-gradient(180deg, transparent 0%, rgba(212, 168, 67, 0.04) 50%, transparent 100%);
}

.foundation-teaser .section-label {
    margin-bottom: 1.5rem;
}

.foundation-teaser h2 {
    font-family: 'Syne', sans-serif;
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 800;
    color: var(--cream);
    margin-bottom: 1.5rem;
}

.foundation-teaser p {
    max-width: 650px;
    margin: 0 auto 2.5rem;
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--cream);
    opacity: 0.8;
}

/* ===== About funding note ===== */
.about-funding-note {
    background: rgba(212, 168, 67, 0.06);
    border-left: 3px solid var(--gold);
    border-radius: 0 8px 8px 0;
    padding: 1rem 1.5rem;
    margin-top: 1.5rem;
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--cream);
    opacity: 0.85;
}

/* ===== Curriculum page responsive grids ===== */
@media (max-width: 768px) {
    .audience-grid {
        grid-template-columns: 1fr !important;
    }
    .partner-steps-grid {
        grid-template-columns: 1fr !important;
    }
    .partner-what-grid {
        grid-template-columns: 1fr !important;
    }
}

/* ============================================
   RESPONSIVE IMPROVEMENTS v2 — Full Breakpoint Coverage
   Mobile (320-480) / Tablet (768-1024) / Laptop (1024-1440)
   ============================================ */

/* ---- Hamburger → X animation ---- */
.nav-toggle span {
    transform-origin: center;
}

.nav-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.nav-toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ---- Form toast full-width on mobile ---- */
@media (max-width: 600px) {
    .form-toast {
        right: 16px;
        left: 16px;
        max-width: none;
    }
}

/* ---- Summary table horizontal scroll on mobile ---- */
.summary-table-scroll {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border-radius: 8px;
}

@media (max-width: 640px) {
    .summary-table-scroll {
        margin: 0;
    }
    .summary-table {
        min-width: 480px;
    }
}

/* ---- Tablet (769px–1024px) — intermediate grid states ---- */
@media (min-width: 769px) and (max-width: 1024px) {
    .program-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .audience-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }

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

    .inquiry-grid {
        gap: 40px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }
}

/* ---- Mobile (≤768px) — section padding & spacing ---- */
@media (max-width: 768px) {
    .section-padding {
        padding: 64px 0;
    }

    .container {
        padding: 0 20px;
    }

    .page-header {
        padding: 130px 0 64px;
    }

    .faith-hero {
        padding: 100px 0 60px;
    }

    .faith-categories {
        padding: 48px 0;
    }

    .faith-summary {
        padding: 56px 0;
    }

    .faith-cta-section {
        padding: 56px 0;
    }

    .mission {
        padding: 64px 0;
    }

    .cta-banner {
        padding: 64px 0;
    }

    .foundation-teaser {
        padding: 64px 0;
    }

    .stats-bar {
        padding: 32px 0;
    }

    .footer {
        padding: 48px 0 24px;
    }

    .footer-grid {
        gap: 24px;
    }

    /* Nav brand text */
    .nav-brand-text {
        font-size: 1rem;
    }

    /* Section label letter-spacing */
    .section-label {
        font-size: 0.8rem;
        letter-spacing: 2px;
    }

    /* Pull quote */
    .about-story .pull-quote {
        font-size: 1.3rem;
        padding-left: 18px;
    }

    /* Mission quote */
    .mission-quote {
        font-size: clamp(1.5rem, 4vw, 2.2rem);
    }

    /* Footer links — minimum touch target */
    .footer-links a {
        display: inline-block;
        padding: 6px 0;
        min-height: 44px;
        line-height: 32px;
    }

    /* Board & Team Section - mobile responsive */
    .board-section {
        padding: 64px 0;
    }

    .board-featured-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 24px;
        padding: 32px 24px;
    }

    .board-member-avatar-chair {
        width: 80px;
        height: 80px;
    }

    .board-member-name {
        font-size: 1.2rem;
    }

    .board-featured-card .board-member-name {
        font-size: 1.4rem;
    }

    .board-member-role {
        justify-content: center;
    }

    .board-focus-label {
        width: 100%;
        text-align: center;
    }

    .board-member-focus {
        justify-content: center;
    }

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

    .board-member-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 20px;
        padding: 28px 20px;
    }
}

/* ---- Small mobile (≤480px) ---- */
@media (max-width: 480px) {
    .section-padding {
        padding: 48px 0;
    }

    .container {
        padding: 0 16px;
    }

    .page-header {
        padding: 100px 0 48px;
    }

    .page-header h1 {
        font-size: clamp(1.8rem, 7vw, 2.5rem);
    }

    .page-header .subtitle {
        font-size: 1rem;
    }

    .section-title {
        font-size: clamp(1.6rem, 6vw, 2rem);
    }

    .section-subtitle {
        font-size: 1rem;
    }

    .nav-brand-text {
        font-size: 0.9rem;
    }

    .mission {
        padding: 48px 0;
    }

    .cta-banner {
        padding: 48px 0;
    }

    .foundation-teaser {
        padding: 48px 0;
    }

    .faith-hero {
        padding: 90px 0 48px;
    }

    .faith-categories {
        padding: 40px 0;
    }

    /* Card padding */
    .program-card {
        padding: 28px 20px;
    }

    .audience-card {
        padding: 28px 20px;
    }

    .card {
        padding: 24px;
    }

    /* Curriculum module */
    .module-content h3 {
        font-size: 1.2rem;
    }

    /* Stat numbers */
    .stat-number {
        font-size: 2rem;
    }

    .stat-label {
        font-size: 0.82rem;
    }

    /* Footer */
    .footer {
        padding: 40px 0 20px;
    }

    .footer-desc {
        max-width: 100%;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: center;
        text-align: center;
        font-size: 0.8rem;
        gap: 8px;
    }

    .footer-legal-links {
        font-size: 0.8rem;
    }

    /* About story pull quote */
    .about-story .pull-quote {
        font-size: 1.2rem;
        margin: 24px 0;
    }

    /* Thank you page */
    .thank-you-section {
        padding: 100px 16px 60px;
    }

    .thank-you-section h1 {
        font-size: 2rem;
    }

    .thank-you-coin {
        width: 100px;
    }

    /* Inquiry form card */
    .inquiry-form-card {
        padding: 28px 20px;
    }

    /* Form toast */
    .form-toast {
        right: 12px;
        left: 12px;
    }

    /* Faith summary table */
    .summary-table td,
    .summary-table th {
        padding: 0.8rem 1rem;
        font-size: 0.88rem;
    }

    /* Board & Team Section - small mobile */
    .board-section {
        padding: 48px 0;
    }

    .board-featured-card {
        padding: 24px 16px;
        gap: 16px;
    }

    .board-member-avatar-chair {
        width: 72px;
        height: 72px;
    }

    .board-member-name {
        font-size: 1.1rem;
    }

    .board-featured-card .board-member-name {
        font-size: 1.2rem;
    }

    .board-member-role {
        font-size: 0.88rem;
    }

    .board-member-responsibility {
        font-size: 0.88rem;
    }

    .board-focus-tag {
        font-size: 0.75rem;
        padding: 3px 10px;
    }

    .board-member-card {
        padding: 24px 16px;
    }
}

/* ---- Extra small (≤375px) ---- */
@media (max-width: 375px) {
    .nav-brand-text {
        font-size: 0.82rem;
        letter-spacing: 0;
    }

    .nav-logo {
        width: 36px;
        height: 36px;
    }

    .hero-title {
        font-size: 1.8rem;
    }

    .btn-primary, .btn-secondary {
        padding: 14px 20px;
        font-size: 0.95rem;
    }

    .stats-grid {
        gap: 8px;
    }

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

    .stat-label {
        font-size: 0.75rem;
    }

    .section-label {
        font-size: 0.75rem;
        letter-spacing: 1.5px;
        padding: 6px 12px;
    }

    .program-card {
        padding: 24px 16px;
    }

    .audience-card {
        padding: 24px 16px;
    }
}

/* ============================================
   PRESS KIT PAGE
   ============================================ */

/* ---- Press Section Layout ---- */
.press-section {
    max-width: 900px;
    margin: 0 auto;
}

.press-section-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 32px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border);
}

.press-section-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    background: rgba(212, 168, 67, 0.1);
    border: 1px solid rgba(212, 168, 67, 0.3);
    flex-shrink: 0;
}

.press-section-title {
    font-family: 'Syne', sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--gold);
    margin: 0;
}

/* ---- Organization Overview ---- */
.press-lead {
    font-size: 1.1rem;
    color: var(--cream);
    line-height: 1.8;
    opacity: 0.9;
    margin-bottom: 36px;
}

.press-lead strong {
    color: var(--gold);
}

.press-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.press-stat {
    background: var(--dark-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 24px 16px;
    text-align: center;
}

.press-stat-number {
    font-family: 'Syne', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 8px;
}

.press-stat-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* ---- Founder Bio ---- */
.press-founder-grid {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 48px;
    align-items: start;
}

.press-headshot-placeholder {
    width: 100%;
    aspect-ratio: 1;
    border-radius: 16px;
    overflow: hidden;
    border: 2px solid var(--gold);
    box-shadow: 0 0 30px var(--glow-gold);
    background: var(--dark);
    display: flex;
    align-items: center;
    justify-content: center;
}

.press-headshot-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.press-headshot-caption {
    text-align: center;
    margin-top: 16px;
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    color: var(--cream);
}

.press-availability {
    text-align: center;
    margin-top: 12px;
    font-size: 0.85rem;
    color: var(--green-light);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.press-availability-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--green-light);
    flex-shrink: 0;
}

.press-founder-bio p {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 20px;
}

.press-founder-bio p:last-child {
    margin-bottom: 0;
}

.press-founder-bio strong {
    color: var(--cream);
}

/* ---- Press-Ready Quotes ---- */
.press-quotes-note {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 32px;
    line-height: 1.6;
    font-style: italic;
}

.press-quotes-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.press-quote-card {
    background: var(--dark-card);
    border: 1px solid var(--border);
    border-left: 3px solid var(--red);
    border-radius: 0 12px 12px 0;
    padding: 28px;
    transition: border-color 0.3s ease, transform 0.2s ease;
}

.press-quote-card:hover {
    border-color: rgba(212, 168, 67, 0.3);
    border-left-color: var(--gold);
    transform: translateY(-2px);
}

.press-quote-label {
    font-family: 'Syne', sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
}

.press-quote-text {
    font-size: 1.05rem;
    color: var(--cream);
    line-height: 1.7;
    margin: 0 0 16px;
    font-style: italic;
    opacity: 0.9;
}

.press-quote-attr {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* ---- Fact Sheet ---- */
.press-fact-sheet {
    background: var(--dark);
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
}

.press-fact-row {
    display: grid;
    grid-template-columns: 200px 1fr;
    border-bottom: 1px solid var(--border);
}

.press-fact-row:last-child {
    border-bottom: none;
}

.press-fact-label {
    padding: 16px 20px;
    font-family: 'Syne', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--gold);
    background: rgba(212, 168, 67, 0.04);
    letter-spacing: 0.03em;
}

.press-fact-value {
    padding: 16px 20px;
    font-size: 0.95rem;
    color: var(--cream);
    line-height: 1.6;
    opacity: 0.9;
}

/* ---- Logo & Brand Assets ---- */
.press-brand-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.press-logo-card {
    background: var(--dark-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
}

.press-logo-preview {
    padding: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 240px;
}

.press-logo-img {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    object-fit: cover;
}

.press-logo-info {
    padding: 20px 24px;
    border-top: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.press-logo-info strong {
    font-family: 'Syne', sans-serif;
    color: var(--cream);
    font-size: 1rem;
}

.press-logo-info span {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.press-download-btn {
    display: inline-block;
    margin-top: 8px;
    padding: 8px 20px;
    background: var(--gold);
    color: var(--dark);
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: 0.78rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 6px;
    text-decoration: none;
    transition: background 0.3s ease;
    width: fit-content;
}

.press-download-btn:hover {
    background: var(--gold-light);
    color: var(--dark);
}

.press-colors-card {
    background: var(--dark-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 28px;
}

.press-colors-card h3 {
    font-family: 'Syne', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--cream);
    margin-bottom: 20px;
}

.press-color-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.press-color-item {
    display: flex;
    align-items: center;
    gap: 14px;
}

.press-color-swatch {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    flex-shrink: 0;
}

.press-color-item strong {
    display: block;
    font-size: 0.9rem;
    color: var(--cream);
    margin-bottom: 2px;
}

.press-color-item code {
    font-size: 0.82rem;
    color: var(--text-muted);
    font-family: 'DM Sans', monospace;
    background: rgba(255,255,255,0.04);
    padding: 2px 8px;
    border-radius: 4px;
}

.press-usage-note {
    margin-top: 20px;
    padding: 14px 16px;
    background: rgba(212, 168, 67, 0.06);
    border-left: 3px solid var(--gold);
    border-radius: 0 6px 6px 0;
    font-size: 0.88rem;
    color: var(--cream);
    line-height: 1.6;
    opacity: 0.85;
}

.press-usage-note strong {
    color: var(--gold);
}

/* ---- Media Contact ---- */
.press-contact-card {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.press-contact-icon {
    font-size: 3rem;
    margin-bottom: 16px;
}

.press-contact-card h2 {
    font-family: 'Syne', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    color: var(--cream);
    margin-bottom: 12px;
}

.press-contact-desc {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.press-contact-email {
    display: inline-block;
    font-family: 'Syne', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--gold);
    text-decoration: none;
    padding: 12px 28px;
    background: rgba(212, 168, 67, 0.1);
    border: 1px solid rgba(212, 168, 67, 0.3);
    border-radius: 10px;
    transition: all 0.3s ease;
    margin-bottom: 20px;
}

.press-contact-email:hover {
    background: rgba(212, 168, 67, 0.2);
    color: var(--gold-light);
    box-shadow: 0 0 20px var(--glow-gold);
}

.press-contact-note {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.7;
    max-width: 550px;
    margin: 0 auto 32px;
}

.press-contact-ctas {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ---- In the News ---- */
.press-news-placeholder {
    text-align: center;
    padding: 48px 24px;
    background: var(--dark);
    border: 1px dashed rgba(212, 168, 67, 0.2);
    border-radius: 12px;
}

.press-news-placeholder p {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 8px;
}

.press-news-placeholder p:last-child {
    margin-bottom: 0;
}

/* ---- Press Page Responsive ---- */
@media (max-width: 968px) {
    .press-founder-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .press-founder-photo {
        max-width: 280px;
        margin: 0 auto;
    }

    .press-brand-grid {
        grid-template-columns: 1fr;
    }

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

    .press-quotes-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .press-section-title {
        font-size: 1.3rem;
    }

    .press-fact-row {
        grid-template-columns: 1fr;
    }

    .press-fact-label {
        padding: 12px 16px 4px;
        font-size: 0.78rem;
    }

    .press-fact-value {
        padding: 4px 16px 14px;
        font-size: 0.9rem;
    }

    .press-contact-email {
        font-size: 1rem;
        padding: 10px 20px;
    }

    .press-contact-card h2 {
        font-size: 1.6rem;
    }
}

@media (max-width: 480px) {
    .press-stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .press-stat {
        padding: 18px 12px;
    }

    .press-stat-number {
        font-size: 1.6rem;
    }

    .press-quote-card {
        padding: 20px;
    }

    .press-quote-text {
        font-size: 0.95rem;
    }

    .press-logo-preview {
        padding: 28px;
        min-height: 180px;
    }

    .press-logo-img {
        width: 120px;
        height: 120px;
    }

    .press-colors-card {
        padding: 20px;
    }

    .press-contact-ctas {
        flex-direction: column;
        align-items: center;
    }

    .press-founder-photo {
        max-width: 220px;
    }
}

@media (max-width: 375px) {
    .press-section-header {
        gap: 12px;
    }

    .press-section-icon {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    .press-section-title {
        font-size: 1.15rem;
    }

    .press-stat-number {
        font-size: 1.4rem;
    }

    .press-stat-label {
        font-size: 0.78rem;
    }
}

/* ============================================
   BOARD & TEAM SECTION
   ============================================ */

.board-section {
    padding: 100px 20px;
    background: var(--dark);
    position: relative;
}

.board-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

/* Featured Card (President) */
.board-featured-card {
    display: flex;
    align-items: flex-start;
    gap: 36px;
    background: var(--dark-card);
    border: 1px solid var(--gold);
    border-radius: 16px;
    padding: 40px;
    margin-bottom: 32px;
    box-shadow: 0 0 40px rgba(212, 168, 67, 0.08);
}

/* Regular Members Grid */
.board-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.board-member-card {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    background: var(--dark-accent);
    border: 1px solid rgba(212, 168, 67, 0.25);
    border-left: 4px solid var(--gold);
    border-radius: 12px;
    padding: 28px;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.board-member-card:hover {
    border-color: var(--gold);
    box-shadow: 0 4px 24px rgba(212, 168, 67, 0.12);
}

/* Avatars */
.board-member-avatar {
    flex-shrink: 0;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold-dark), var(--gold));
    border: 2px solid var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
}

.board-member-avatar-chair {
    width: 88px;
    height: 88px;
    background: linear-gradient(135deg, var(--red-dark), var(--gold));
    border: 2px solid var(--gold);
    box-shadow: 0 0 20px rgba(212, 168, 67, 0.3);
}

.board-initials {
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--dark);
    letter-spacing: 0.05em;
}

.board-member-avatar-chair .board-initials {
    font-size: 1.4rem;
}

/* Info */
.board-member-info {
    flex: 1;
    min-width: 0;
}

.board-member-name {
    font-family: 'Syne', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--cream);
    margin-bottom: 6px;
}

.board-featured-card .board-member-name {
    font-size: 1.6rem;
}

.board-member-role {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 14px;
}

.board-role-icon {
    margin-right: 6px;
}

.board-member-responsibility {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 16px;
}

/* Focus Tags */
.board-member-focus {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.board-focus-label {
    font-size: 0.78rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-weight: 600;
}

.board-focus-tag {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--gold);
    background: rgba(212, 168, 67, 0.1);
    border: 1px solid rgba(212, 168, 67, 0.3);
    border-radius: 20px;
    padding: 3px 12px;
    letter-spacing: 0.03em;
}

/* Responsive */
@media (max-width: 768px) {
    .board-featured-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 28px 20px;
    }

    .board-member-focus {
        justify-content: center;
    }

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

    .board-member-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .board-section {
        padding: 64px 16px;
    }
}

@media (max-width: 480px) {
    .board-featured-card .board-member-name {
        font-size: 1.3rem;
    }

    .board-member-avatar-chair {
        width: 72px;
        height: 72px;
    }
}
