/* ============================================
   RESET & BASE — Harvard-Inspired Redesign
   ============================================ */
@import url('https://fonts.googleapis.com/css2?family=Libre+Baskerville:ital,wght@0,400;0,700;1,400&family=Inter:wght@300;400;500;600;700&display=swap');

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

:root {
    --crimson: #a51c30;
    --crimson-dark: #8b1628;
    --navy: #1d2951;
    --navy-dark: #0d1b35;
    --gold: #c9a84c;
    --gold-light: #e8c97a;
    --text: #1a1a1a;
    --text-secondary: #4a4a4a;
    --muted: #6b7280;
    --light: #f9f7f4;
    --warm-white: #fdfcfa;
    --border: #e5e0d8;
    --border-light: #f0ece6;
    --white: #ffffff;
    --blue-dark: #0d1b35;
    --blue-mid: #1d2951;
    --blue: #1e40af;
    --red: #a51c30;
    --red-dark: #8b1628;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.65;
    color: var(--text);
    overflow-x: hidden;
    background: var(--white);
    -webkit-font-smoothing: antialiased;
}

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

/* ============================================
   SECTION HEADERS
   ============================================ */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-family: 'Libre Baskerville', Georgia, serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 1rem;
    letter-spacing: -0.3px;
    line-height: 1.2;
}

.section-header.light h2 { color: white; }
.section-header p { color: var(--muted); font-size: 1.05rem; max-width: 600px; margin: 0 auto; line-height: 1.75; }

.section-line {
    width: 48px;
    height: 3px;
    background: var(--crimson);
    margin: 0 auto 1.25rem;
}

.section-header.light .section-line { background: var(--gold); }

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    z-index: 1000;
    transition: box-shadow 0.3s ease;
}

.navbar.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.08); }

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Libre Baskerville', Georgia, serif;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--text);
    text-decoration: none;
}

.nav-logo-img { height: 80px; width: auto; }

.footer-logo-img {
    height: 55px;
    width: auto;
    filter: brightness(0) invert(1);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 0;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 0.85rem;
    padding: 8px 16px;
    transition: color 0.2s ease;
    position: relative;
    letter-spacing: 0.6px;
    text-transform: uppercase;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0; left: 16px; right: 16px;
    height: 2px;
    background: var(--crimson);
    transform: scaleX(0);
    transition: transform 0.25s ease;
}

.nav-menu a:hover { color: var(--crimson); }
.nav-menu a:hover::after { transform: scaleX(1); }

.nav-menu a.active {
    color: var(--crimson);
    font-weight: 600;
}

.nav-menu a.active::after { transform: scaleX(1); }

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 24px;
    height: 2px;
    background: var(--text);
    transition: all 0.3s ease;
}

/* ============================================
   PAGE HERO (inner pages)
   ============================================ */
.page-hero {
    background: var(--navy-dark);
    color: white;
    padding: 170px 32px 90px;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-bottom: 4px solid var(--crimson);
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 60px,
        rgba(255,255,255,0.015) 60px,
        rgba(255,255,255,0.015) 61px
    );
    pointer-events: none;
}

.page-hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 0 auto;
}

.page-hero-content h1 {
    font-family: 'Libre Baskerville', Georgia, serif;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.15;
    letter-spacing: -0.5px;
}

.page-hero-content p {
    font-size: 1.1rem;
    opacity: 0.75;
    line-height: 1.7;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: url('images/banner.jpg') center center / cover no-repeat;
    color: white;
    padding: 140px 32px 100px;
    position: relative;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, rgba(13,27,53,0.9) 0%, rgba(29,41,81,0.8) 50%, rgba(165,28,48,0.4) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 860px;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(201,168,76,0.12);
    border: 1px solid rgba(201,168,76,0.4);
    color: var(--gold-light);
    padding: 7px 22px;
    border-radius: 2px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    margin-bottom: 2rem;
    animation: fadeInUp 0.8s ease both;
}

.hero h1 {
    font-family: 'Libre Baskerville', Georgia, serif;
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.12;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
    animation: fadeInUp 0.8s ease 0.15s both;
}

.hero-subtitle {
    font-size: 1.15rem;
    margin-bottom: 2.75rem;
    opacity: 0.8;
    line-height: 1.8;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 300;
    animation: fadeInUp 0.8s ease 0.3s both;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    animation: fadeInUp 0.8s ease 0.45s both;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 36px;
    border-radius: 2px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    transition: all 0.25s ease;
    border: 2px solid transparent;
    cursor: pointer;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    font-family: 'Inter', sans-serif;
}

.btn-primary {
    background: var(--crimson);
    color: white;
    border-color: var(--crimson);
}

.btn-primary:hover {
    background: var(--crimson-dark);
    border-color: var(--crimson-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(165,28,48,0.35);
}

.btn-secondary {
    background: transparent;
    color: white;
    border-color: rgba(255,255,255,0.5);
}

.btn-secondary:hover {
    background: white;
    color: var(--text);
    border-color: white;
    transform: translateY(-2px);
}

.btn-large { padding: 16px 48px; font-size: 0.88rem; }

/* ============================================
   ABOUT SECTION
   ============================================ */
.about {
    padding: 110px 0 100px;
    background: var(--warm-white);
    position: relative;
}

.about::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: var(--crimson);
}

.about-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 6rem;
    align-items: start;
}

.about-text p {
    font-size: 1.05rem;
    margin-bottom: 1.75rem;
    color: var(--text-secondary);
    line-height: 1.9;
}

.about-text p:first-of-type {
    font-family: 'Libre Baskerville', Georgia, serif;
    font-size: 1.15rem;
    color: var(--text);
    line-height: 1.85;
}

.about-fundamentals {
    background: var(--white);
    padding: 2.5rem;
    border: 1px solid var(--border);
    border-top: 3px solid var(--crimson);
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.about-fundamentals h3 {
    font-family: 'Libre Baskerville', Georgia, serif;
    font-size: 1.2rem;
    color: var(--text);
    margin-bottom: 1.75rem;
    font-weight: 700;
}

.fundamentals-list { list-style: none; }

.fundamentals-list li {
    display: flex;
    gap: 14px;
    margin-bottom: 1.25rem;
    align-items: flex-start;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid var(--border-light);
}

.fundamentals-list li:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }

.fundamentals-list li i {
    color: var(--crimson);
    margin-top: 4px;
    flex-shrink: 0;
    font-size: 0.9rem;
}

.fundamentals-list li span {
    color: var(--text-secondary);
    font-size: 0.93rem;
    line-height: 1.7;
}

/* ============================================
   VISION / MISSION / VALUES
   ============================================ */
.vision-mission {
    padding: 100px 0;
    background: var(--white);
    border-top: 1px solid var(--border);
}

.vmv-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    background: var(--border);
    border: 1px solid var(--border);
}

.vmv-card {
    background: var(--white);
    padding: 3rem 2.5rem;
    text-align: center;
    transition: background 0.3s ease;
    position: relative;
}

.vmv-card:hover { background: var(--light); }

.vmv-card::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
}

.vision-card::after { background: var(--crimson); }
.mission-card::after { background: var(--navy); }
.values-card::after { background: var(--gold); }

.vmv-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.75rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.vision-card .vmv-icon { border: 2px solid rgba(165,28,48,0.2); background: rgba(165,28,48,0.05); }
.mission-card .vmv-icon { border: 2px solid rgba(29,41,81,0.2); background: rgba(29,41,81,0.05); }
.values-card .vmv-icon { border: 2px solid rgba(201,168,76,0.3); background: rgba(201,168,76,0.07); }

.vision-card .vmv-icon i { color: var(--crimson); }
.mission-card .vmv-icon i { color: var(--navy); }
.values-card .vmv-icon i { color: var(--gold); }

.vmv-icon i { font-size: 1.75rem; }

.vmv-card h3 {
    font-family: 'Libre Baskerville', Georgia, serif;
    font-size: 1.4rem;
    color: var(--text);
    margin-bottom: 1rem;
    font-weight: 700;
}

.vmv-card p {
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 0.97rem;
}

.values-list { list-style: none; text-align: left; }

.values-list li {
    padding: 0.6rem 0;
    color: var(--text-secondary);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid var(--border-light);
}

.values-list li:last-child { border-bottom: none; }
.values-list li i { color: var(--gold); font-size: 0.6rem; }

/* ============================================
   WHAT DRIVES US
   ============================================ */
.drives-section {
    padding: 100px 0;
    background: var(--light);
    border-top: 1px solid var(--border);
}

.drives-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
}

.drive-item {
    background: var(--white);
    padding: 2.5rem 3rem;
    display: flex;
    gap: 1.75rem;
    align-items: flex-start;
    transition: background 0.25s ease;
}

.drive-item:hover { background: var(--warm-white); }

.drive-number {
    font-family: 'Libre Baskerville', Georgia, serif;
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--crimson);
    opacity: 0.25;
    flex-shrink: 0;
    line-height: 1;
    min-width: 48px;
}

.drive-item h4 {
    font-family: 'Libre Baskerville', Georgia, serif;
    font-size: 1.1rem;
    color: var(--text);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.drive-item p {
    color: var(--text-secondary);
    line-height: 1.75;
    font-size: 0.95rem;
}

/* ============================================
   STRATEGIC FOCUS
   ============================================ */
.strategy-section {
    padding: 110px 0;
    background: var(--navy-dark);
    color: white;
    position: relative;
}

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

.strategy-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
    font-size: 1.05rem;
    line-height: 1.85;
    opacity: 0.75;
}

.strategy-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.06);
}

.strategy-card {
    background: var(--navy-dark);
    padding: 2.5rem 2rem;
    text-align: center;
    transition: background 0.3s ease;
    border-top: 3px solid transparent;
}

.strategy-card:hover {
    background: rgba(255,255,255,0.04);
    border-top-color: var(--gold);
}

.strategy-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    border: 1px solid rgba(201,168,76,0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.strategy-icon i { font-size: 1.4rem; color: var(--gold); }

.strategy-card h3 {
    font-family: 'Libre Baskerville', Georgia, serif;
    font-size: 1.05rem;
    margin-bottom: 0.75rem;
    font-weight: 700;
    line-height: 1.3;
}

.strategy-card p {
    opacity: 0.65;
    font-size: 0.9rem;
    line-height: 1.7;
}

/* ============================================
   BOARD MEMBERS
   ============================================ */
.board-section {
    padding: 100px 0;
    background: var(--warm-white);
    border-top: 1px solid var(--border);
}

.board-member {
    display: flex;
    gap: 3rem;
    margin-bottom: 2px;
    padding: 3rem;
    background: var(--white);
    align-items: flex-start;
    transition: all 0.25s ease;
    border-left: 4px solid transparent;
}

.board-member:hover {
    background: var(--light);
    border-left-color: var(--crimson);
}

.board-member.reverse { flex-direction: row-reverse; }
.member-photo { flex-shrink: 0; }

.member-photo-img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 0;
    box-shadow: 0 4px 16px rgba(0,0,0,0.12);
    border: 3px solid var(--white);
    outline: 1px solid var(--border);
}

.photo-placeholder {
    width: 150px;
    height: 150px;
    background: var(--light);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
}

.photo-placeholder i { font-size: 3rem; color: var(--muted); }
.member-info { flex: 1; }

.member-info h3 {
    font-family: 'Libre Baskerville', Georgia, serif;
    font-size: 1.45rem;
    color: var(--text);
    margin-bottom: 0.25rem;
    font-weight: 700;
}

.member-title {
    display: inline-block;
    color: var(--crimson);
    font-weight: 500;
    font-size: 0.82rem;
    margin-bottom: 1.25rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.member-bio p {
    color: var(--text-secondary);
    line-height: 1.85;
    margin-bottom: 0.75rem;
    font-size: 0.97rem;
}

.member-education {
    background: var(--light);
    padding: 0.75rem 1.25rem;
    border-left: 3px solid var(--navy);
    font-size: 0.9rem !important;
    color: var(--text-secondary);
}

/* ============================================
   DONATE SECTION
   ============================================ */
.donate {
    padding: 110px 0;
    background: var(--navy-dark);
    color: white;
    position: relative;
}

.donate::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--crimson), var(--gold));
}

.donate-content {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 3rem;
}

.donate-form {
    background: var(--white);
    padding: 3rem;
    border-top: 3px solid var(--crimson);
    color: var(--text);
    box-shadow: 0 8px 40px rgba(0,0,0,0.2);
}

.donate-form h3 {
    font-family: 'Libre Baskerville', Georgia, serif;
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: var(--text);
    font-weight: 700;
}

.amount-options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.amount-btn {
    padding: 13px;
    border: 1px solid var(--border);
    background: var(--white);
    border-radius: 0;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: 'Inter', sans-serif;
    color: var(--text);
}

.amount-btn:hover,
.amount-btn.active {
    border-color: var(--crimson);
    background: var(--crimson);
    color: white;
}

.custom-amount {
    margin-bottom: 1.5rem;
}

.custom-amount label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text);
    font-size: 0.8rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.custom-amount input {
    width: 100%;
    padding: 11px 14px;
    border: 1px solid var(--border);
    border-radius: 0;
    font-size: 0.97rem;
    transition: border-color 0.2s ease;
    font-family: 'Inter', sans-serif;
    color: var(--text);
}

.custom-amount input:focus {
    outline: none;
    border-color: var(--crimson);
}

.donation-type {
    display: flex;
    gap: 2rem;
    margin-bottom: 1.5rem;
}

.donation-type label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    font-size: 0.95rem;
}

.campaign-select {
    margin-bottom: 1.5rem;
}

.campaign-select label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text);
    font-size: 0.8rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.campaign-select select {
    width: 100%;
    padding: 11px 14px;
    border: 1px solid var(--border);
    border-radius: 0;
    font-size: 0.97rem;
    background: var(--white);
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    color: var(--text);
}

.campaign-select select:focus { outline: none; border-color: var(--crimson); }

.donor-info h4,
.payment-method h4 {
    font-family: 'Libre Baskerville', Georgia, serif;
    font-size: 1.05rem;
    margin-bottom: 1.25rem;
    color: var(--text);
    font-weight: 700;
    border-bottom: 1px solid var(--border);
    padding-bottom: 0.75rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.donor-info input {
    width: 100%;
    padding: 11px 14px;
    border: 1px solid var(--border);
    border-radius: 0;
    font-size: 0.97rem;
    transition: border-color 0.2s ease;
    margin-bottom: 0.75rem;
    font-family: 'Inter', sans-serif;
    color: var(--text);
}

.donor-info input:focus {
    outline: none;
    border-color: var(--crimson);
}

.payment-options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.payment-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1.25rem;
    border: 1px solid var(--border);
    border-radius: 0;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 0.85rem;
}

.payment-option:hover {
    border-color: var(--navy);
}

.payment-option input {
    margin-bottom: 0.5rem;
}

.payment-option i {
    font-size: 1.4rem;
    color: var(--navy);
    margin-bottom: 0.4rem;
}

.donate-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.info-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-top: 3px solid var(--gold);
    padding: 2rem;
}

.info-card h3 {
    font-family: 'Libre Baskerville', Georgia, serif;
    font-size: 1.05rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.info-card ul { list-style: none; }

.info-card li { padding: 0.45rem 0; color: rgba(255,255,255,0.75); position: relative; padding-left: 1.5rem; font-size: 0.93rem; border-bottom: 1px solid rgba(255,255,255,0.06); }
.info-card li:last-child { border-bottom: none; }

.info-card li::before {
    content: '—';
    position: absolute;
    left: 0;
    color: var(--gold);
}

.info-card p {
    color: rgba(255,255,255,0.7);
    line-height: 1.7;
    font-size: 0.93rem;
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact {
    padding: 100px 0;
    background: var(--warm-white);
    border-top: 1px solid var(--border);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-info > h3 {
    font-family: 'Libre Baskerville', Georgia, serif;
    font-size: 1.2rem;
    color: var(--text);
    font-weight: 700;
}

.contact-card {
    background: var(--white);
    padding: 2rem;
    border: 1px solid var(--border);
    border-left: 3px solid transparent;
    transition: all 0.25s ease;
}

.contact-card:hover {
    border-left-color: var(--crimson);
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.contact-card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.contact-card-header i {
    width: 44px;
    height: 44px;
    background: rgba(29,41,81,0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--navy);
    flex-shrink: 0;
}

.contact-card-header h4 {
    font-family: 'Libre Baskerville', Georgia, serif;
    font-size: 1.05rem;
    color: var(--text);
    margin-bottom: 0.15rem;
    font-weight: 700;
}

.contact-role {
    color: var(--crimson);
    font-weight: 500;
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-details p {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 0.5rem;
    color: var(--text-secondary);
    font-size: 0.93rem;
}

.contact-details i {
    color: var(--navy);
    width: 18px;
    text-align: center;
}

.contact-details a {
    color: var(--navy);
    text-decoration: none;
    transition: color 0.2s ease;
}

.contact-details a:hover {
    color: var(--crimson);
}

.contact-form {
    background: var(--white);
    padding: 2.5rem;
    border-top: 3px solid var(--navy);
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.contact-form h3 {
    font-family: 'Libre Baskerville', Georgia, serif;
    font-size: 1.3rem;
    color: var(--text);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid var(--border);
    border-radius: 0;
    font-size: 0.97rem;
    margin-bottom: 0.75rem;
    transition: border-color 0.2s ease;
    font-family: 'Inter', sans-serif;
    color: var(--text);
    background: var(--white);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--crimson);
}

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

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--navy-dark);
    color: white;
    padding: 70px 0 28px;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--crimson), var(--gold));
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h3,
.footer-section h4 {
    font-family: 'Libre Baskerville', Georgia, serif;
    margin-bottom: 1.25rem;
    color: white;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 0.2px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 1rem;
}

.footer-section p {
    color: #94a3b8;
    line-height: 1.75;
    margin-bottom: 1rem;
    font-size: 0.92rem;
}

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

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

.footer-section ul li a {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.2s ease;
    font-size: 0.92rem;
}

.footer-section ul li a:hover { color: var(--gold-light); }

.social-links {
    display: flex;
    gap: 0.75rem;
    margin-top: 1rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border: 1px solid rgba(255,255,255,0.15);
    color: #94a3b8;
    text-decoration: none;
    transition: all 0.2s ease;
    font-size: 0.9rem;
}

.social-links a:hover {
    border-color: var(--crimson);
    background: var(--crimson);
    color: white;
}

.newsletter-form {
    display: flex;
    gap: 0;
    margin-top: 1rem;
}

.newsletter-form input {
    flex: 1;
    padding: 10px 14px;
    border: 1px solid rgba(255,255,255,0.15);
    background: rgba(255,255,255,0.05);
    border-radius: 0;
    color: white;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
}

.newsletter-form input::placeholder { color: #64748b; }

.newsletter-form button {
    padding: 10px 18px;
    background: var(--crimson);
    color: white;
    border: none;
    border-radius: 0;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    transition: background 0.2s ease;
    font-family: 'Inter', sans-serif;
}

.newsletter-form button:hover { background: var(--crimson-dark); }

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.08);
    color: #64748b;
    font-size: 0.88rem;
}

/* ============================================
   HOME PAGE — TEASER ELEMENTS
   ============================================ */
.read-more-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--crimson);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-top: 1.5rem;
    transition: gap 0.2s ease, color 0.2s ease;
    border-bottom: 1px solid transparent;
    padding-bottom: 2px;
}

.read-more-link:hover {
    gap: 12px;
    color: var(--crimson-dark);
    border-bottom-color: var(--crimson);
}

.read-more-light {
    color: var(--gold-light);
    border-bottom-color: transparent;
}

.read-more-light:hover {
    color: white;
    border-bottom-color: var(--gold-light);
}

.home-teaser-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 3rem;
    gap: 2rem;
}

.home-teaser-header h2 {
    font-family: 'Libre Baskerville', Georgia, serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--text);
    line-height: 1.2;
    margin-bottom: 0.5rem;
}

.home-teaser-header p {
    color: var(--muted);
    font-size: 1rem;
    line-height: 1.6;
    max-width: 500px;
}

.home-teaser-header .read-more-link { margin-top: 0; flex-shrink: 0; }

.home-teaser-vmv {
    padding: 100px 0;
    background: var(--white);
    border-top: 1px solid var(--border);
}

.home-teaser-board {
    padding: 100px 0;
    background: var(--warm-white);
    border-top: 1px solid var(--border);
}

.board-teaser-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
}

.board-teaser-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.25rem;
    transition: background 0.25s ease;
}

.board-teaser-card:hover { background: var(--light); }

.board-teaser-img {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    object-fit: cover;
    object-position: top;
    border: 3px solid var(--white);
    outline: 1px solid var(--border);
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

.board-teaser-card .photo-placeholder {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    border: 2px solid var(--border);
}

.board-teaser-card .photo-placeholder i { font-size: 2rem; }

.board-teaser-info h4 {
    font-family: 'Libre Baskerville', Georgia, serif;
    font-size: 1rem;
    color: var(--text);
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.home-cta {
    padding: 100px 0;
    background: var(--warm-white);
    color: var(--text);
    position: relative;
    border-top: 1px solid var(--border);
}

.home-cta::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--crimson);
}

.home-cta-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 3rem;
}

.home-cta-inner h2 {
    font-family: 'Libre Baskerville', Georgia, serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 0.75rem;
    line-height: 1.2;
}

.home-cta-inner p {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.7;
    max-width: 520px;
}

.home-cta-actions {
    display: flex;
    gap: 1rem;
    flex-shrink: 0;
}

.home-cta .btn-secondary {
    border-color: var(--navy);
    color: var(--navy);
    background: transparent;
}

.home-cta .btn-secondary:hover {
    background: var(--navy);
    color: white;
    border-color: var(--navy);
    transform: translateY(-2px);
}

.home-cta .btn-secondary:active,
.home-cta .btn-secondary:focus {
    background: var(--navy-dark);
    color: white;
    outline: none;
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInRight {
    from { opacity: 0; transform: translateX(20px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1024px) {
    .strategy-grid { grid-template-columns: repeat(2, 1fr); }
    .vmv-grid { grid-template-columns: 1fr; }
    .about-grid { gap: 3rem; }
}

@media (max-width: 768px) {
    .hamburger { display: flex; }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 100px;
        flex-direction: column;
        background: var(--white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 8px 24px rgba(0,0,0,0.08);
        padding: 2rem 0;
        gap: 0;
        border-top: 1px solid var(--border);
    }

    .nav-menu li { padding: 0.75rem 0; }
    .nav-menu.active { left: 0; }
    .nav-menu a::after { display: none; }

    .hero { padding: 120px 20px 60px; }
    .hero h1 { font-size: 2.5rem; }
    .hero-subtitle { font-size: 1rem; }
    .hero-buttons { flex-direction: column; align-items: center; }

    .page-hero { padding: 140px 20px 70px; }
    .page-hero-content h1 { font-size: 2.2rem; }

    .about-grid,
    .donate-content,
    .contact-content { grid-template-columns: 1fr; gap: 2rem; }

    .drives-grid { grid-template-columns: 1fr; }
    .strategy-grid { grid-template-columns: 1fr; }

    .board-member,
    .board-member.reverse {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 2rem;
        border-left: none;
        border-top: 3px solid transparent;
    }

    .board-member:hover { border-top-color: var(--crimson); border-left-color: transparent; }
    .member-bio { text-align: left; }

    .amount-options { grid-template-columns: repeat(2, 1fr); }
    .payment-options { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .donation-type { flex-direction: column; gap: 0.75rem; }

    .footer-content { grid-template-columns: 1fr; text-align: center; }
    .social-links { justify-content: center; }
    .newsletter-form { flex-direction: column; }
    .footer-logo { justify-content: center; }

    .section-header h2 { font-size: 2rem; }
    .container { padding: 0 20px; }

    .home-teaser-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .home-teaser-header .read-more-link { margin-top: 0.5rem; }

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

    .home-cta-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 2rem;
    }

    .home-cta-actions { flex-direction: column; width: 100%; }
    .home-cta-actions .btn { text-align: center; justify-content: center; }
}

@media (max-width: 480px) {
    .hero h1 { font-size: 1.9rem; letter-spacing: -0.5px; }
    .hero-subtitle { font-size: 0.95rem; }
    .hero-tag { font-size: 0.7rem; }
    .page-hero-content h1 { font-size: 1.8rem; }
    .section-header h2 { font-size: 1.75rem; }
    .amount-options { grid-template-columns: 1fr; }
    .photo-placeholder { width: 110px; height: 110px; }
    .member-photo-img { width: 110px; height: 110px; }
    .drive-item { padding: 1.75rem; }
    .donate-form, .contact-form { padding: 1.75rem; }
}
