/* ============================================================
   Volunteer Page
   ============================================================ */

.volunteer-hero {
    padding: 5rem 0 4rem;
    background: var(--hf-light);
}
.volunteer-hero-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}
.volunteer-hero-content {
    max-width: 640px;
}
.placeholder-frame-hero {
    aspect-ratio: 4 / 3;
    max-width: 480px;
    justify-self: end;
}
.volunteer-hero-content h1 {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    color: var(--hf-text);
    line-height: 1.2;
    margin-bottom: 1rem;
}
.volunteer-hero-sub {
    font-size: 1.1rem;
    color: var(--hf-text);
    line-height: 1.6;
    margin-bottom: 0.75rem;
}
.volunteer-hero-body {
    font-size: 0.925rem;
    color: var(--hf-muted);
    line-height: 1.7;
    margin-bottom: 1.75rem;
}
.volunteer-hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* why volunteer cards */
.volunteer-why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}
.volunteer-why-card {
    padding: 2rem;
    text-align: center;
}
.volunteer-why-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--hf-light);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    color: var(--hf-blue);
}
.volunteer-why-card h3 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    color: var(--hf-text);
    margin-bottom: 0.6rem;
}
.volunteer-why-card p {
    font-size: 0.875rem;
    color: var(--hf-muted);
    line-height: 1.65;
}

/* category overview cards */
.volunteer-category-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}
.volunteer-category-card {
    background: var(--hf-white);
    border-radius: 16px;
    padding: 2.5rem 2rem;
    text-align: center;
    border: 1.5px solid rgba(0,0,0,0.05);
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    display: flex;
    flex-direction: column;
    align-items: center;
}
.volunteer-category-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: var(--hf-blue);
    color: var(--hf-white);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
}
.volunteer-category-card h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    color: var(--hf-text);
    margin-bottom: 0.7rem;
}
.volunteer-category-card p {
    font-size: 0.875rem;
    color: var(--hf-muted);
    line-height: 1.65;
    margin-bottom: 1.5rem;
    flex: 1;
}

/* role grid */
.volunteer-role-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}
.volunteer-role-card {
    padding: 0;
    overflow: hidden;
}
.volunteer-role-card-inner {
    padding: 1.75rem;
}
.volunteer-role-title {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    color: var(--hf-text);
    margin-bottom: 0.6rem;
}
.volunteer-role-description {
    font-size: 0.875rem;
    color: var(--hf-muted);
    line-height: 1.65;
    margin-bottom: 1rem;
}
.volunteer-responsibility-wrap {
    background: var(--hf-light);
    border-radius: 10px;
    padding: 1.1rem 1.25rem;
    font-size: 0.8rem;
    color: var(--hf-text);
}
.volunteer-responsibility-wrap strong {
    display: block;
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--hf-muted);
    margin-bottom: 0.5rem;
}
.volunteer-responsibility-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.volunteer-responsibility-list li {
    padding: 0.2rem 0 0.2rem 1.2rem;
    position: relative;
    line-height: 1.5;
}
.volunteer-responsibility-list li::before {
    content: "\2022";
    position: absolute;
    left: 0;
    color: var(--hf-blue);
    font-weight: 800;
}

/* cta */
.volunteer-cta-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}
.volunteer-cta .btn-outline:hover {
    background: var(--hf-white);
    color: var(--hf-dark) !important;
    border-color: var(--hf-white) !important;
}

/* Founder & CEO */
.founder-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}
.founder-photo {
    aspect-ratio: 3 / 4;
    max-width: 360px;
    justify-self: center;
}
.founder-content .founder-name {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--hf-blue);
    font-weight: 700;
    margin-bottom: 0.75rem;
}
.founder-content .founder-bio {
    font-size: 0.925rem;
    color: var(--hf-muted);
    line-height: 1.75;
    margin-bottom: 1rem;
}

/* image placeholder frames */
.placeholder-frame {
    background: var(--hf-light);
    border: 2px dashed rgba(0,0,0,0.12);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--hf-muted);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    aspect-ratio: 16 / 9;
    width: 100%;
    position: relative;
    overflow: hidden;
}
.placeholder-frame::before {
    content: "";
    display: block;
    width: 40px;
    height: 32px;
    margin-right: 8px;
    background: currentColor;
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='3' width='18' height='18' rx='2' ry='2'/%3E%3Ccircle cx='8.5' cy='8.5' r='1.5'/%3E%3Cpolyline points='21 15 16 10 5 21'/%3E%3C/svg%3E") center/contain no-repeat;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='3' width='18' height='18' rx='2' ry='2'/%3E%3Ccircle cx='8.5' cy='8.5' r='1.5'/%3E%3Cpolyline points='21 15 16 10 5 21'/%3E%3C/svg%3E") center/contain no-repeat;
    background-color: var(--hf-muted);
    -webkit-mask-size: contain;
    mask-size: contain;
}
.placeholder-frame-sm {
    aspect-ratio: 4 / 3;
    max-width: 320px;
}
.placeholder-frame-banner {
    aspect-ratio: 21 / 9;
    max-width: 100%;
}

/* ============================================================
   Responsive
   ============================================================ */

:root {
    --hf-blue:      #0057b3;
    --hf-red:       #c81e1e;
    --hf-dark:      #00203f;
    --hf-text:      #1a2a3a;
    --hf-muted:     #6b7d93;
    --hf-light:     #f0f6fc;
    --hf-white:     #ffffff;

    --font-body:    'Inter', system-ui, -apple-system, sans-serif;
    --font-heading: 'Lora', Georgia, serif;
    --font-alt:     'Nunito', sans-serif;

    --radius: 18px;
    --radius-sm: 10px;
    --shadow: 0 12px 30px rgba(0,0,0,0.12);
    --shadow-sm: 0 4px 15px rgba(0,0,0,0.08);
    --transition: 0.25s ease;
}

/* ─── Reset ─────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-font-smoothing: antialiased; scroll-behavior: smooth; }
body {
    font-family: var(--font-body);
    font-size: 0.875rem;
    line-height: 1.6;
    color: var(--hf-text);
    background: var(--hf-light);
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ─── Container ─────────────────────────────────────────── */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 6vw;
}

/* ─── Navbar ────────────────────────────────────────────── */
.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--hf-white);
    border-bottom: 1px solid rgba(0,0,0,0.06);
}
.nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 6vw;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
}
.nav-logo img { height: 36px; width: auto; }
.nav-links {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}
.nav-links > li > a {
    padding: 0.5rem 0.85rem;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--hf-text);
    border-radius: var(--radius-sm);
    transition: background var(--transition);
}
.nav-links > li > a:hover,
.nav-links > li > a.active {
    background: var(--hf-light);
}
.nav-dropdown {
    position: relative;
}
.nav-dropdown .dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--hf-white);
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-sm);
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(6px);
    transition: all var(--transition);
    z-index: 1001;
    padding: 0.4rem;
}
.nav-dropdown:hover .dropdown,
.nav-dropdown.open .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.dropdown li a {
    display: block;
    padding: 0.5rem 0.85rem;
    font-size: 0.8rem;
    color: var(--hf-text);
    border-radius: 6px;
    transition: background var(--transition);
}
.dropdown li a:hover {
    background: var(--hf-light);
}
.nav-donate a {
    background: var(--hf-blue) !important;
    color: var(--hf-white) !important;
    padding: 0.5rem 1.25rem !important;
    border-radius: 100px !important;
    font-weight: 700 !important;
}
.nav-donate a:hover {
    opacity: 0.9;
}

/* ─── Hamburger ─────────────────────────────────────────── */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 10px;
    z-index: 210;
}
.hamburger span {
    display: block;
    width: 25px;
    height: 2.5px;
    background: var(--hf-text);
    border-radius: 2px;
    transition: transform var(--transition), opacity var(--transition);
}

/* ─── Hero ──────────────────────────────────────────────── */
.hero {
    position: relative;
    min-height: 92vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 5rem 6vw 4rem;
    overflow: hidden;
}
.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center top;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(21,21,21,0.72) 0%, rgba(21,21,21,0.82) 100%);
}
.hero-accent {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 60% 40%, rgba(200,30,30,0.18) 0%, transparent 60%);
}
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 860px;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0,87,179,0.2);
    border: 1px solid rgba(0,87,179,0.4);
    border-radius: 100px;
    padding: 0.4rem 1.1rem;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--hf-white);
    margin-bottom: 1.75rem;
}
.hero-badge span {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--hf-white);
}
.hero h1 {
    font-family: var(--font-heading);
    font-size: clamp(2.6rem, 5.5vw, 4.4rem);
    line-height: 1.1;
    color: var(--hf-white);
    margin-bottom: 1.25rem;
    font-weight: 700;
}
.hero h1 em { font-style: italic; color: var(--hf-blue); }
.hero p {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.7);
    font-weight: 300;
    max-width: 620px;
    margin: 0 auto 2.5rem;
    line-height: 1.75;
}
.hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ─── Buttons ───────────────────────────────────────────── */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    border-radius: 100px;
    font-weight: 800;
    font-size: 0.95rem;
    text-decoration: none;
    text-align: center;
    transition: all var(--transition);
    cursor: pointer;
    border: none;
    font-family: var(--font-body);
}
.btn-primary {
    background: var(--hf-blue);
    color: var(--hf-white);
}
.btn-primary:hover { opacity: 0.9; }
.btn-outline {
    background: transparent;
    color: var(--hf-white);
    border: 2px solid rgba(255,255,255,0.35);
}
.btn-outline:hover { border-color: rgba(255,255,255,0.6); }
.btn-outline-dark {
    background: transparent;
    color: var(--hf-text);
    border: 2px solid var(--hf-text);
}
.btn-outline-dark:hover { background: var(--hf-text); color: var(--hf-white); }

/* ─── Stats Bar ─────────────────────────────────────────── */
.stats-bar {
    display: flex;
    margin-top: 4rem;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius);
    overflow: hidden;
    position: relative;
    z-index: 2;
}
.stat-item {
    flex: 1;
    padding: 1.5rem;
    text-align: center;
    border-right: 1px solid rgba(255,255,255,0.08);
}
.stat-item:last-child { border-right: none; }
.stat-num {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    color: var(--hf-blue);
    font-weight: 600;
}
.stat-label {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.55);
    margin-top: 0.2rem;
    line-height: 1.4;
}

/* ─── Alert Banner ──────────────────────────────────────── */
.alert-banner {
    background: var(--hf-blue);
    color: var(--hf-white);
    padding: 1.4rem 6vw;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    text-align: center;
}
.alert-banner strong {
    font-size: 1rem;
    font-weight: 800;
}
.alert-banner p {
    font-size: 0.875rem;
    opacity: 0.9;
    margin: 0;
}
.alert-banner .btn {
    background: var(--hf-white);
    color: var(--hf-dark);
    padding: 0.55rem 1.5rem;
    font-size: 0.85rem;
    white-space: nowrap;
}

/* ─── Section ───────────────────────────────────────────── */
.section {
    padding: 5.5rem 6vw;
}
.section-alt { background: var(--hf-white); }
.section-dark { background: var(--hf-dark); color: var(--hf-white); }
.section-light { background: var(--hf-light); }
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3.5rem;
}
.section-label {
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--hf-blue);
    margin-bottom: 0.6rem;
    display: block;
}
.section-header h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 3.2vw, 2.6rem);
    color: var(--hf-text);
    line-height: 1.2;
    margin-bottom: 0.9rem;
}
.section-dark .section-header h2 { color: var(--hf-white); }
.section-desc {
    font-size: 0.975rem;
    color: var(--hf-muted);
    font-weight: 300;
    line-height: 1.75;
}

/* ─── Cards ─────────────────────────────────────────────── */
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}
.card {
    background: var(--hf-white);
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid rgba(0,0,0,0.08);
    transition: transform var(--transition), box-shadow var(--transition);
}
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow-sm); }
.card-img {
    height: 180px;
    display: flex;
    align-items: flex-start;
    padding: 1rem;
}
.card-tag {
    background: var(--hf-white);
    border-radius: 100px;
    padding: 0.28rem 0.85rem;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.07em;
    text-transform: uppercase;
}
.card-body { padding: 1.4rem; }
.card-date {
    font-size: 0.72rem;
    color: var(--hf-muted);
    font-weight: 600;
    margin-bottom: 0.4rem;
    letter-spacing: 0.04em;
}
.card-body h3 {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    color: var(--hf-text);
    line-height: 1.45;
    margin-bottom: 0.75rem;
}
.card-body p {
    font-size: 0.82rem;
    color: var(--hf-muted);
    line-height: 1.6;
}

/* ─── Page Header ───────────────────────────────────────── */
.page-header {
    background: var(--hf-dark);
    color: var(--hf-white);
    padding: 4rem 6vw;
    text-align: center;
}
.page-header h1 {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.2;
    margin-bottom: 0.5rem;
}
.page-header p {
    font-size: 1rem;
    color: rgba(255,255,255,0.6);
    max-width: 560px;
    margin: 0 auto;
}

/* ─── Mission Steps ─────────────────────────────────────── */
.mission-steps {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
}
.mission-step {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}
.step-num {
    width: 36px; height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.85rem;
    color: var(--hf-white);
    flex-shrink: 0;
}
.mission-step strong {
    display: block;
    font-size: 0.95rem;
    color: var(--hf-text);
    margin-bottom: 0.2rem;
}
.mission-step span {
    font-size: 0.84rem;
    color: var(--hf-muted);
    line-height: 1.55;
}

/* ─── Blockquote ────────────────────────────────────────── */
.blockquote-card {
    background: var(--hf-blue);
    border-radius: var(--radius);
    padding: 2.2rem;
    color: var(--hf-white);
    margin-top: 2rem;
}
.blockquote-card blockquote {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-style: italic;
    line-height: 1.5;
    margin-bottom: 0.65rem;
}
.blockquote-card cite {
    font-size: 0.8rem;
    opacity: 0.8;
    font-style: normal;
    font-weight: 700;
}

/* ─── Two Column Layout ─────────────────────────────────── */
.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}
@media (max-width: 960px) { .two-col { grid-template-columns: 1fr; gap: 3rem; } }

/* ─── Timeline ──────────────────────────────────────────── */
.timeline-wrapper {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}
.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, var(--hf-blue), #2E6BA4, #4A90D9, #0057b3);
    transform: translateX(-50%);
    border-radius: 3px;
}
.timeline-year {
    margin-bottom: 3rem;
}
.timeline-year-header {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    margin-bottom: 2rem;
}
.timeline-year-badge {
    background: var(--hf-blue);
    color: var(--hf-white);
    border-radius: 100px;
    padding: 0.6rem 2rem;
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    position: relative;
    z-index: 1;
}
.timeline-year-label {
    position: absolute;
    left: 0; right: 0;
    text-align: center;
    top: 110%;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-top: 0.4rem;
}
.timeline-events {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
}
.timeline-event-row {
    display: grid;
    grid-template-columns: 1fr 40px 1fr;
    align-items: center;
    gap: 1rem;
}
.timeline-event-card {
    background: var(--hf-white);
    border-radius: var(--radius-sm);
    padding: 1.25rem 1.5rem;
    border: 1.5px solid rgba(200,30,30,0.2);
    max-width: 340px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.timeline-event-card.right { text-align: right; }
.timeline-event-date {
    font-size: 0.7rem;
    font-weight: 800;
    color: var(--hf-blue);
    letter-spacing: 0.06em;
    margin-bottom: 0.3rem;
    text-transform: uppercase;
}
.timeline-event-card h4 {
    font-family: var(--font-heading);
    font-size: 1rem;
    color: var(--hf-text);
    margin-bottom: 0.3rem;
    font-weight: 700;
}
.timeline-event-location {
    font-size: 0.75rem;
    color: var(--hf-muted);
    font-weight: 600;
    margin-bottom: 0.4rem;
}
.timeline-event-card p {
    font-size: 0.82rem;
    color: var(--hf-muted);
    line-height: 1.6;
    margin: 0;
}
.timeline-dot {
    grid-column: 2;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 2;
}
.timeline-dot-inner {
    width: 16px; height: 16px;
    border-radius: 50%;
    background: var(--hf-blue);
    border: 3px solid var(--hf-white);
    box-shadow: 0 0 0 3px rgba(200,30,30,0.27);
}
.timeline-empty { grid-column: 1; }

/* ─── Gallery ───────────────────────────────────────────── */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1rem;
}
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 0.75rem;
    aspect-ratio: 4/3;
    cursor: zoom-in;
    background: #1a1008;
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
    display: block;
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(21,21,21,0.88));
    padding: 2.5rem 1rem 0.9rem;
    color: var(--hf-light);
    font-size: 0.82rem;
    font-weight: 600;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.gallery-item:hover .gallery-caption { opacity: 1; }

/* ─── Lightbox ──────────────────────────────────────────── */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(10,6,3,0.95);
    display: flex;
    align-items: center;
    justify-content: center;
}
.lightbox-inner {
    position: relative;
    max-width: 90vw;
    max-height: 88vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}
.lightbox img {
    max-width: 90vw;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 0.5rem;
    box-shadow: 0 20px 60px rgba(0,0,0,0.7);
    display: block;
}
.lightbox-caption {
    color: rgba(255,255,255,0.8);
    font-size: 0.9rem;
    font-weight: 600;
}
.lightbox-counter {
    margin-left: 1rem;
    color: rgba(255,255,255,0.35);
    font-size: 0.8rem;
}
.lightbox-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    color: var(--hf-white);
    border-radius: 50%;
    width: 48px; height: 48px;
    font-size: 1.4rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10001;
    transition: background 0.2s;
}
.lightbox-btn:hover { background: rgba(200,30,30,0.7); }
.lightbox-prev { left: 1.25rem; }
.lightbox-next { right: 1.25rem; }
.lightbox-close {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    color: var(--hf-white);
    border-radius: 50%;
    width: 40px; height: 40px;
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10001;
    transition: background 0.2s;
}
.lightbox-close:hover { background: rgba(200,30,30,0.7); }

/* ─── Donation ──────────────────────────────────────────── */
.donate-card {
    background: var(--hf-light);
    border-radius: var(--radius);
    padding: 2.5rem;
    border: 1px solid rgba(0,0,0,0.08);
}
.donate-amounts {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-bottom: 1.25rem;
}
.donate-btn {
    padding: 0.6rem 1.25rem;
    border-radius: 100px;
    font-size: 0.875rem;
    font-weight: 700;
    cursor: pointer;
    border: 1.5px solid rgba(0,0,0,0.12);
    background: var(--hf-white);
    color: var(--hf-muted);
    transition: all 0.2s;
    font-family: var(--font-alt);
}
.donate-btn.active {
    background: var(--hf-blue);
    border-color: var(--hf-blue);
    color: var(--hf-white);
}
.donate-desc {
    font-size: 0.82rem;
    color: var(--hf-muted);
    margin-bottom: 1.5rem;
    background: var(--hf-white);
    border-radius: var(--radius-sm);
    padding: 0.85rem 1rem;
    border: 1px solid rgba(0,0,0,0.08);
    display: flex;
    align-items: center;
    gap: 0.65rem;
}

/* ─── Footer ────────────────────────────────────────────── */
.footer {
    background: var(--hf-dark);
    color: var(--hf-white);
    padding: 4rem 6vw 2rem;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}
.footer-brand img { height: 44px; width: auto; filter: brightness(1.1); }
.footer-brand p {
    font-size: 0.84rem;
    color: rgba(255,255,255,0.45);
    margin-top: 1rem;
    line-height: 1.7;
    max-width: 240px;
}
.footer-col h4 {
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.3);
    margin-bottom: 1.25rem;
}
.footer-col li a {
    display: block;
    font-size: 0.84rem;
    color: rgba(255,255,255,0.55);
    margin-bottom: 0.55rem;
    text-decoration: none;
}
.footer-col li a:hover { color: rgba(255,255,255,0.8); }
.footer-newsletter {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 16px;
    padding: 1.75rem 2rem;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1.25rem;
}
.newsletter-label {
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--hf-blue);
    margin-bottom: 0.3rem;
    display: block;
}
.footer-newsletter p {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.65);
    margin: 0;
    font-weight: 300;
}
.newsletter-form {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    flex: 1;
    max-width: 420px;
    min-width: 260px;
}
.newsletter-form input {
    flex: 1;
    padding: 0.7rem 1rem;
    border-radius: 100px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    color: var(--hf-white);
    font-size: 0.875rem;
    font-family: var(--font-alt);
    outline: none;
    min-width: 180px;
}
.newsletter-form button {
    padding: 0.7rem 1.4rem;
    border-radius: 100px;
    background: var(--hf-blue);
    color: var(--hf-white);
    border: none;
    font-weight: 800;
    font-size: 0.875rem;
    cursor: pointer;
    font-family: var(--font-alt);
    white-space: nowrap;
}
.footer-social {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 2rem;
    align-items: center;
    flex-wrap: wrap;
}
.footer-social a {
    width: 38px; height: 38px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.55);
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
}
.footer-social a:hover { background: var(--hf-blue); color: var(--hf-white); }
.footer-login {
    margin-left: 0.5rem;
    padding: 0.45rem 1.1rem;
    border-radius: 100px;
    border: 1px solid rgba(255,255,255,0.2);
    color: rgba(255,255,255,0.65);
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    transition: background 0.2s, color 0.2s, border-color 0.2s;
    white-space: nowrap;
    width: auto;
    height: auto;
}
.footer-login:hover {
    background: rgba(255,255,255,0.1);
    color: var(--hf-white);
    border-color: rgba(255,255,255,0.4);
}
.footer-legal {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 1.5rem;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}
.footer-legal p {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.25);
    margin: 0;
}

/* ─── Action Cards (homepage) ───────────────────────────── */
.action-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}
.action-card {
    border-radius: var(--radius);
    overflow: hidden;
    cursor: pointer;
}
.action-card-inner {
    height: 260px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.75rem;
    position: relative;
}
.action-card-inner > div {
    position: relative;
    z-index: 1;
}
.action-card-inner h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--hf-white);
    font-weight: 700;
    margin-bottom: 0.35rem;
}
.action-card-inner p {
    font-size: 0.84rem;
    color: rgba(255,255,255,0.8);
    line-height: 1.5;
    margin-bottom: 1rem;
}
.action-card-inner .btn {
    display: inline-block;
    padding: 0.6rem 1.4rem;
    background: var(--hf-white);
    color: var(--hf-blue);
    font-size: 0.8rem;
}

/* ─── Volunteer Roles ───────────────────────────────────── */
.volunteer-roles {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.volunteer-role {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    background: var(--hf-white);
    border-radius: 16px;
    padding: 1rem 1.25rem;
    border: 1.5px solid rgba(0,0,0,0.06);
}
.volunteer-role-icon {
    font-size: 1.4rem;
    flex-shrink: 0;
}
.volunteer-role h4 {
    font-size: 0.9rem;
    color: var(--hf-text);
    margin-bottom: 0.15rem;
}
.volunteer-role p {
    font-size: 0.82rem;
    color: var(--hf-muted);
    line-height: 1.55;
}

/* ─── Responsive ────────────────────────────────────────── */
@media (max-width: 960px) {
    .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
    .hamburger { display: flex; }
    .nav-links {
        display: none;
        position: absolute;
        top: 64px;
        left: 0;
        right: 0;
        background: var(--hf-white);
        flex-direction: column;
        padding: 1rem 6vw;
        border-bottom: 1px solid rgba(0,0,0,0.06);
        box-shadow: var(--shadow-sm);
    }
    .nav-links.open { display: flex; }
    .nav-links > li > a { display: block; padding: 0.75rem 0; }
    .nav-dropdown .dropdown {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: none;
        padding: 0 0 0.5rem 1rem;
        display: none;
    }
    .nav-dropdown.open .dropdown { display: block; }
    .stats-bar { flex-wrap: wrap; }
    .stat-item { flex: 1 1 50%; border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); }
    .footer-grid { grid-template-columns: 1fr; }
    .timeline-event-row { grid-template-columns: 1fr 40px; }
    .timeline-event-card.right { text-align: left; }
}
@media (max-width: 960px) {
    .volunteer-hero-layout { grid-template-columns: 1fr; gap: 2rem; }
    .founder-layout { grid-template-columns: 1fr; gap: 2rem; text-align: center; }
    .founder-photo { max-width: 280px; }
    .placeholder-frame-hero { max-width: 100%; justify-self: center; }
    .volunteer-why-grid { grid-template-columns: repeat(2, 1fr); }
    .volunteer-category-grid { grid-template-columns: repeat(2, 1fr); }
    .volunteer-role-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
    .volunteer-why-grid { grid-template-columns: 1fr; }
    .volunteer-category-grid { grid-template-columns: 1fr; }
    .volunteer-role-grid { grid-template-columns: 1fr; }
    .volunteer-hero-actions { flex-direction: column; }
    .volunteer-cta-actions { flex-direction: column; align-items: center; }
}
