:root {
    --cream: #f5f0e8;
    --cream-dark: #ede5d0;
    --ink: #1a1410;
    --ink-mid: #3d2e20;
    --ink-light: #7a6a58;
    --gold: #b8860b;
    --gold-light: #d4a843;
    --gold-pale: #f0dfa0;
    --crimson: #8b1a1a;
    --green-dark: #1a3a2a;
    --white: #ffffff;
    --shadow: rgba(26, 20, 16, 0.15);
}

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Jost', sans-serif;
    background-color: var(--cream);
    color: var(--ink);
    direction: ltr;
    text-align: left;
    line-height: 1.8;
    overflow-x: hidden;
}

    /* Noise texture */
    body::before {
        content: '';
        position: fixed;
        inset: 0;
        background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
        pointer-events: none;
        z-index: 1000;
        opacity: 0.5;
    }

::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: var(--cream-dark);
}

::-webkit-scrollbar-thumb {
    background: var(--gold);
    border-radius: 3px;
}

h1, h2, h3 {
    font-family: 'Cormorant Garamond', serif;
    line-height: 1.3;
    font-weight: 700;
}

/* ===== NAV ===== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 3rem;
    background: rgba(245, 240, 232, 0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(184, 134, 11, 0.2);
    transition: box-shadow 0.3s;
}

    .nav.scrolled {
        box-shadow: 0 2px 20px var(--shadow);
    }

.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    text-decoration: none;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--crimson);
    letter-spacing: 0.04em;
}

.nav-logo {
    height: 38px;
    width: auto;
    display: block;
    object-fit: contain;
}

.nav-brand-text {
    white-space: nowrap;
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

    .nav-links a {
        text-decoration: none;
        color: var(--ink-mid);
        font-size: 0.8rem;
        font-weight: 500;
        letter-spacing: 0.08em;
        text-transform: uppercase;
        transition: color 0.2s;
        position: relative;
    }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 0;
            height: 1px;
            background: var(--gold);
            transition: width 0.3s;
        }

        .nav-links a:hover {
            color: var(--gold);
        }

            .nav-links a:hover::after {
                width: 100%;
            }

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 4px;
}

    .nav-toggle span {
        display: block;
        width: 24px;
        height: 2px;
        background: var(--ink);
        border-radius: 2px;
        transition: all 0.3s;
    }

/* ===== HERO ===== */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    padding: 8rem 2rem 4rem;
    isolation: isolate;
    background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(139,26,26,0.08) 0%, transparent 70%), radial-gradient(ellipse 60% 40% at 80% 100%, rgba(184,134,11,0.06) 0%, transparent 60%), var(--cream);
}

.hero-bg-img {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -1;
    pointer-events: none;
}

.hero-ornament {
    position: absolute;
    top: 80px;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 80px;
    background: linear-gradient(to bottom, transparent, var(--gold), transparent);
    opacity: 0.6;
}

    .hero-ornament::before, .hero-ornament::after {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        border-radius: 50%;
    }

    .hero-ornament::before {
        width: 8px;
        height: 8px;
        background: var(--gold);
    }

    .hero-ornament::after {
        width: 20px;
        height: 20px;
        border: 1px solid var(--gold);
        opacity: 0.4;
    }

.hero-frame {
    position: absolute;
    inset: 20px;
    border: 1px solid rgba(184,134,11,0.12);
    pointer-events: none;
}

    .hero-frame::before {
        content: '';
        position: absolute;
        inset: 8px;
        border: 1px solid rgba(184,134,11,0.06);
    }

    .hero-frame .corner {
        position: absolute;
        width: 20px;
        height: 20px;
        border-color: var(--gold);
        border-style: solid;
        opacity: 0.4;
    }

        .hero-frame .corner.tl {
            top: 0;
            left: 0;
            border-width: 1px 0 0 1px;
        }

        .hero-frame .corner.tr {
            top: 0;
            right: 0;
            border-width: 1px 1px 0 0;
        }

        .hero-frame .corner.bl {
            bottom: 0;
            left: 0;
            border-width: 0 0 1px 1px;
        }

        .hero-frame .corner.br {
            bottom: 0;
            right: 0;
            border-width: 0 1px 1px 0;
        }

.hero-date {
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    font-weight: 500;
    opacity: 0;
    animation: fadeUp 0.8s 0.2s forwards;
}

.hero-badge {
    display: inline-block;
    background: var(--crimson);
    color: var(--cream);
    font-size: 0.7rem;
    padding: 0.3rem 1rem;
    border-radius: 2px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 2rem;
    font-weight: 600;
    opacity: 0;
    animation: fadeUp 0.8s 0.4s forwards;
}

.hero-title {
    font-size: clamp(2.4rem, 7vw, 5.5rem);
    font-weight: 700;
    font-family: 'Cormorant Garamond', serif;
    color: var(--ink);
    line-height: 1.15;
    margin-bottom: 1rem;
    opacity: 0;
    animation: fadeUp 0.8s 0.6s forwards;
}

    .hero-title em {
        font-style: italic;
        color: var(--crimson);
    }

.hero-subtitle {
    font-size: clamp(0.95rem, 2.5vw, 1.2rem);
    color: var(--ink-mid);
    max-width: 600px;
    margin: 0 auto 3rem;
    font-weight: 300;
    opacity: 0;
    animation: fadeUp 0.8s 0.8s forwards;
}

/* ===== DONATE BUTTON ===== */
.btn-donate {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.9rem 2.8rem;
    background: linear-gradient(135deg, var(--crimson) 0%, #6e1212 100%);
    color: var(--cream);
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.15rem;
    font-weight: 600;
    font-style: italic;
    letter-spacing: 0.06em;
    text-decoration: none;
    border: 1px solid rgba(245, 240, 232, 0.22);
    box-shadow: 0 4px 22px rgba(139, 26, 26, 0.45), inset 0 1px 0 rgba(255,255,255,0.1);
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
    position: relative;
    overflow: hidden;
    margin-bottom: 2.5rem;
    opacity: 0;
    animation: fadeUp 0.8s 1.05s forwards;
}

.btn-donate::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.14) 0%, transparent 55%);
    opacity: 1;
    transition: opacity 0.3s;
}

.btn-donate:hover {
    background: linear-gradient(135deg, #a52020 0%, #8b1a1a 100%);
    box-shadow: 0 7px 32px rgba(139, 26, 26, 0.6), inset 0 1px 0 rgba(255,255,255,0.15);
    transform: translateY(-2px);
    color: var(--cream);
}

.btn-donate:hover::after {
    opacity: 0;
}

.donate-heart {
    font-size: 0.95rem;
    animation: heartbeat 2s ease-in-out infinite;
    display: inline-block;
}

@keyframes heartbeat {
    0%, 100% { transform: scale(1); }
    14%       { transform: scale(1.35); }
    28%       { transform: scale(1); }
    42%       { transform: scale(1.2); }
    56%       { transform: scale(1); }
}

.hero-stats {
    display: flex;
    gap: 3rem;
    justify-content: center;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeUp 0.8s 1s forwards;
}

.hero-stat {
    text-align: center;
    position: relative;
}

    .hero-stat::before {
        content: '';
        position: absolute;
        top: 50%;
        left: -1.5rem;
        transform: translateY(-50%);
        width: 1px;
        height: 40px;
        background: var(--gold);
        opacity: 0.3;
    }

    .hero-stat:first-child::before {
        display: none;
    }

.hero-stat-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--crimson);
    display: block;
    line-height: 1;
}

.hero-stat-label {
    font-size: 0.7rem;
    color: var(--ink-light);
    margin-top: 0.3rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.hero-scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    opacity: 0;
    animation: fadeIn 1s 1.5s forwards;
}

    .hero-scroll span {
        font-size: 0.65rem;
        color: var(--ink-light);
        letter-spacing: 0.15em;
        text-transform: uppercase;
    }

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    animation: scrollPulse 2s infinite;
}

/* ===== SECTIONS ===== */
section {
    padding: 6rem 0;
    position: relative;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-tag {
    display: inline-block;
    font-size: 0.65rem;
    letter-spacing: 0.25em;
    color: var(--gold);
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 1rem;
}

.section-title {
    font-size: clamp(1.8rem, 4vw, 3rem);
    color: var(--ink);
    position: relative;
    display: inline-block;
    font-family: 'Cormorant Garamond', serif;
}

    .section-title::after {
        content: '';
        display: block;
        width: 50px;
        height: 1px;
        background: var(--gold);
        margin: 1rem auto 0;
    }

.section-desc {
    font-size: 0.95rem;
    color: var(--ink-light);
    max-width: 560px;
    margin: 1.5rem auto 0;
    font-weight: 300;
}

/* ===== INCIDENT ===== */
.incident {
    background: linear-gradient(to bottom, var(--cream), var(--cream-dark), var(--cream));
}

.incident-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.incident-text p {
    color: var(--ink-mid);
    margin-bottom: 1.5rem;
    font-size: 0.98rem;
    line-height: 2;
}

    .incident-text p strong {
        color: var(--crimson);
        font-weight: 600;
    }

.incident-timeline {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.timeline-item {
    display: flex;
    gap: 1.5rem;
    position: relative;
}

    .timeline-item:not(:last-child)::before {
        content: '';
        position: absolute;
        top: 32px;
        left: 15px;
        width: 1px;
        height: calc(100%);
        background: linear-gradient(to bottom, var(--gold), rgba(184,134,11,0.1));
    }

.timeline-dot {
    width: 30px;
    height: 30px;
    min-width: 30px;
    border-radius: 50%;
    background: var(--cream);
    border: 2px solid var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
    position: relative;
    z-index: 1;
}

.timeline-dot-inner {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--gold);
}

.timeline-content {
    padding-bottom: 2rem;
}

.timeline-time {
    font-size: 0.7rem;
    color: var(--gold);
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 0.3rem;
}

.timeline-desc {
    font-size: 0.9rem;
    color: var(--ink-mid);
    line-height: 1.7;
}

/* ===== STATISTICS ===== */
.statistics {
    background: var(--ink);
    color: var(--cream);
    position: relative;
    overflow: hidden;
}

    .statistics::before {
        content: '';
        position: absolute;
        top: -50%;
        left: -20%;
        width: 60%;
        padding-bottom: 60%;
        border-radius: 50%;
        background: radial-gradient(circle, rgba(184,134,11,0.08) 0%, transparent 70%);
    }

    .statistics::after {
        content: '';
        position: absolute;
        bottom: -30%;
        right: -10%;
        width: 40%;
        padding-bottom: 40%;
        border-radius: 50%;
        background: radial-gradient(circle, rgba(139,26,26,0.12) 0%, transparent 70%);
    }

    .statistics .section-title {
        color: var(--cream);
    }

    .statistics .section-desc {
        color: rgba(245,240,232,0.5);
    }

    .statistics .section-tag {
        color: var(--gold-light);
    }

    .statistics .section-title::after {
        background: var(--gold-light);
    }

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    margin-top: 3rem;
    background: rgba(184,134,11,0.1);
    border: 1px solid rgba(184,134,11,0.15);
}

.stat-card {
    background: rgba(26,20,16,0.8);
    padding: 3rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: background 0.3s;
}

    .stat-card:hover {
        background: rgba(61,46,32,0.6);
    }

    .stat-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 2px;
        background: linear-gradient(to right, transparent, var(--gold), transparent);
        opacity: 0;
        transition: opacity 0.3s;
    }

    .stat-card:hover::before {
        opacity: 1;
    }

.stat-icon {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    display: block;
    opacity: 0.7;
}

.stat-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.8rem, 5vw, 4.5rem);
    font-weight: 700;
    color: var(--gold-light);
    display: block;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-title {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--cream);
    margin-bottom: 0.5rem;
    letter-spacing: 0.03em;
}

.stat-sub {
    font-size: 0.75rem;
    color: rgba(245,240,232,0.4);
    line-height: 1.6;
}

.stat-card.featured {
    background: linear-gradient(135deg, rgba(139,26,26,0.3), rgba(26,20,16,0.9));
}

    .stat-card.featured .stat-number {
        color: #ff9999;
    }

/* ===== MARTYRS ===== */
.martyrs {
    background: var(--cream);
}

.martyrs-note {
    background: rgba(184,134,11,0.08);
    border: 1px solid rgba(184,134,11,0.2);
    border-left: 3px solid var(--gold);
    padding: 1rem 1.5rem;
    border-radius: 4px;
    font-size: 0.85rem;
    color: var(--ink-mid);
    margin-bottom: 3rem;
    text-align: center;
}

.martyrs-filter {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.filter-btn {
    padding: 0.5rem 1.5rem;
    border: 1px solid rgba(184,134,11,0.3);
    background: transparent;
    color: var(--ink-mid);
    font-family: 'Jost', sans-serif;
    font-size: 0.75rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    cursor: pointer;
    border-radius: 2px;
    transition: all 0.2s;
    font-weight: 500;
}

    .filter-btn:hover, .filter-btn.active {
        background: var(--gold);
        color: var(--white);
        border-color: var(--gold);
    }

.martyrs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 1.5rem;
}

.martyr-card {
    text-align: center;
    transition: transform 0.3s;
    display: block;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

    .martyr-card:hover {
        transform: translateY(-4px);
        text-decoration: none;
        color: inherit;
    }

.martyr-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin: 0 auto 1rem;
    background: linear-gradient(135deg, var(--cream-dark), var(--gold-pale));
    border: 2px solid rgba(184,134,11,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--gold);
    position: relative;
}

    .martyr-avatar::after {
        content: '';
        position: absolute;
        inset: 0;
        border-radius: 50%;
        border: 1px solid rgba(184,134,11,0.2);
        pointer-events: none;
    }

.martyr-avatar img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    object-position: top center;
    display: block;
}

.martyr-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 0.2rem;
}

.martyr-detail {
    font-size: 0.7rem;
    color: var(--ink-light);
}

.martyr-badge {
    display: inline-block;
    font-size: 0.6rem;
    padding: 0.15rem 0.5rem;
    border-radius: 20px;
    margin-top: 0.3rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.badge-student {
    background: rgba(26,58,42,0.12);
    color: var(--green-dark);
}

.badge-teacher {
    background: rgba(139,26,26,0.1);
    color: var(--crimson);
}

.martyrs-more {
    text-align: center;
    margin-top: 3rem;
}

.btn-ghost {
    display: inline-block;
    padding: 0.75rem 2.5rem;
    border: 1px solid var(--gold);
    color: var(--gold);
    font-family: 'Jost', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    background: transparent;
    transition: all 0.3s;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
}

    .btn-ghost:hover {
        background: var(--gold);
        color: var(--white);
    }

/* ===== TESTIMONIALS ===== */
.testimonials {
    background: linear-gradient(to bottom, var(--cream-dark), var(--cream));
}

.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.testimonial-card {
    background: var(--white);
    padding: 2.5rem;
    position: relative;
    box-shadow: 0 4px 30px rgba(26,20,16,0.06);
    border: 1px solid rgba(184,134,11,0.1);
}

    .testimonial-card::before {
        content: '\201C';
        position: absolute;
        top: 1rem;
        left: 1.5rem;
        font-size: 5rem;
        color: var(--gold-pale);
        font-family: 'Cormorant Garamond', serif;
        line-height: 1;
    }

.testimonial-text {
    font-size: 0.95rem;
    color: var(--ink-mid);
    line-height: 2;
    font-weight: 300;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
    font-style: italic;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.05rem;
}

.testimonial-source {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    border-top: 1px solid rgba(184,134,11,0.15);
    padding-top: 1rem;
}

.testimonial-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--gold-pale);
    border: 1px solid var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
}

.testimonial-name {
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--ink);
}

.testimonial-role {
    font-size: 0.7rem;
    color: var(--ink-light);
}

.testimonial-card.featured {
    background: var(--ink);
    border-color: rgba(184,134,11,0.2);
}

    .testimonial-card.featured .testimonial-text {
        color: rgba(245,240,232,0.8);
    }

    .testimonial-card.featured::before {
        color: rgba(184,134,11,0.15);
    }

    .testimonial-card.featured .testimonial-source {
        border-top-color: rgba(184,134,11,0.15);
    }

    .testimonial-card.featured .testimonial-name {
        color: var(--cream);
    }

    .testimonial-card.featured .testimonial-role {
        color: rgba(245,240,232,0.4);
    }

/* ===== MEDIA ===== */
.media {
    background: var(--cream);
}

.media-tabs {
    display: flex;
    gap: 0;
    justify-content: center;
    margin-bottom: 3rem;
    border-bottom: 1px solid rgba(184,134,11,0.2);
}

.media-tab {
    padding: 0.75rem 2rem;
    border: none;
    background: transparent;
    font-family: 'Jost', sans-serif;
    font-size: 0.75rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--ink-light);
    cursor: pointer;
    border-bottom: 2px solid transparent;
    margin-bottom: -1px;
    transition: all 0.2s;
    font-weight: 500;
}

    .media-tab.active {
        color: var(--gold);
        border-bottom-color: var(--gold);
    }

    .media-tab:hover {
        color: var(--gold);
    }

.media-panel {
    display: none;
}

    .media-panel.active {
        display: block;
    }

.news-list {
    display: flex;
    flex-direction: column;
    gap: 1px;
    background: rgba(184,134,11,0.1);
    border: 1px solid rgba(184,134,11,0.15);
}

.news-item {
    background: var(--white);
    padding: 1.5rem 2rem;
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 1.5rem;
    align-items: center;
    transition: background 0.2s;
}

    .news-item:hover {
        background: var(--cream);
    }

.news-date {
    font-size: 0.7rem;
    color: var(--gold);
    font-weight: 700;
    text-align: center;
    min-width: 60px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.news-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--ink);
}

.news-source {
    font-size: 0.7rem;
    color: var(--ink-light);
    margin-top: 0.2rem;
}

.news-arrow {
    color: var(--gold);
    opacity: 0.5;
    font-size: 1.2rem;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
}

.video-card {
    background: var(--ink);
    aspect-ratio: 16/9;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s;
}

    .video-card:hover {
        transform: scale(1.02);
    }

    .video-card::before {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(to top, rgba(26,20,16,0.7), transparent);
    }

.video-play {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(184,134,11,0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--white);
    position: relative;
    z-index: 1;
    transition: transform 0.3s, background 0.3s;
}

.video-card:hover .video-play {
    transform: scale(1.1);
    background: var(--gold);
}

.video-label {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    font-size: 0.75rem;
    color: rgba(245,240,232,0.8);
    z-index: 1;
    font-weight: 500;
    letter-spacing: 0.05em;
}

/* ===== TRIBUTE / CANDLES ===== */
.tribute {
    background: var(--ink);
    color: var(--cream);
    text-align: center;
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.candles-row {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin: 3rem 0;
    flex-wrap: wrap;
}

.candle {
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: candleFlicker 3s infinite;
}

    .candle:nth-child(2) {
        animation-delay: 0.5s;
    }

    .candle:nth-child(3) {
        animation-delay: 1s;
    }

    .candle:nth-child(4) {
        animation-delay: 1.5s;
    }

    .candle:nth-child(5) {
        animation-delay: 0.8s;
    }

.candle-flame {
    width: 14px;
    height: 22px;
    background: radial-gradient(ellipse at 50% 100%, #ffdd00 0%, #ff8800 40%, rgba(255,100,0,0.3) 70%, transparent 100%);
    border-radius: 50% 50% 30% 30%;
    filter: blur(0.5px);
    box-shadow: 0 0 10px rgba(255,200,0,0.6), 0 0 20px rgba(255,150,0,0.3);
}

.candle-body {
    width: 18px;
    background: linear-gradient(to bottom, #e8d5c0, #c4a882);
    border-radius: 2px 2px 4px 4px;
    height: 60px;
    margin-top: 2px;
    position: relative;
}

    .candle-body::after {
        content: '';
        position: absolute;
        top: 0;
        left: 3px;
        width: 4px;
        height: 100%;
        background: rgba(255,255,255,0.15);
        border-radius: 2px;
    }

.candle-base {
    width: 24px;
    height: 5px;
    background: rgba(184,134,11,0.4);
    border-radius: 2px;
}

.tribute-verse {
    max-width: 620px;
    margin: 0 auto;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    color: rgba(245,240,232,0.75);
    line-height: 2.2;
    font-weight: 300;
    font-style: italic;
}

    .tribute-verse strong {
        color: var(--gold-light);
        font-style: normal;
        font-weight: 700;
    }

/* ===== CONTRIBUTE ===== */
.contribute {
    background: var(--cream-dark);
    text-align: center;
}

.contribute-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.contribute-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border: 1px solid rgba(184,134,11,0.1);
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

    .contribute-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 8px 30px rgba(26,20,16,0.1);
    }

.contribute-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.contribute-title {
    font-size: 1.1rem;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 0.75rem;
}

.contribute-desc {
    font-size: 0.82rem;
    color: var(--ink-light);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

/* ===== FOOTER ===== */
footer {
    background: var(--ink);
    color: rgba(245,240,232,0.5);
    text-align: center;
    padding: 3rem 2rem;
    font-size: 0.8rem;
    line-height: 2;
}

    footer a {
        color: var(--gold-light);
        text-decoration: none;
    }

.footer-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 1rem;
}

.footer-logo-img {
    height: 56px;
    width: auto;
    display: block;
    object-fit: contain;
    margin-bottom: 0.5rem;
    filter: brightness(0) invert(0.92);
    opacity: 0.85;
}

.footer-logo-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--cream);
    letter-spacing: 0.04em;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin: 1rem 0 0.5rem;
}

.footer-links a {
    color: rgba(245,240,232,0.65);
    font-size: 0.78rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--gold-light);
}

.footer-divider {
    width: 60px;
    height: 1px;
    background: rgba(184,134,11,0.3);
    margin: 1.5rem auto;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes scrollPulse {
    0%, 100% {
        opacity: 0.3;
    }

    50% {
        opacity: 1;
    }
}

@keyframes candleFlicker {
    0%, 100% {
        transform: scaleX(1) rotate(0deg);
    }

    25% {
        transform: scaleX(0.95) rotate(-1deg);
    }

    50% {
        transform: scaleX(1.05) rotate(0.5deg);
    }

    75% {
        transform: scaleX(0.97) rotate(1deg);
    }
}

/* Scroll reveal */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s, transform 0.7s;
}

    .reveal.visible {
        opacity: 1;
        transform: translateY(0);
    }

.reveal-delay-1 {
    transition-delay: 0.1s;
}

.reveal-delay-2 {
    transition-delay: 0.2s;
}

.reveal-delay-3 {
    transition-delay: 0.3s;
}

.reveal-delay-4 {
    transition-delay: 0.4s;
}

.reveal-delay-5 {
    transition-delay: 0.5s;
}

/* ===== RESPONSIVE ===== */

/* Tablet (768px) — fills the gap between mobile and desktop */
@media (max-width: 768px) {
    .hero-stats {
        gap: 1.5rem;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .news-list {
        gap: 0;
    }

    .video-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .martyrs-grid {
        grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
    }

    .contribute-grid {
        grid-template-columns: 1fr 1fr;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    section {
        padding: 5rem 0;
    }

    .container {
        padding: 0 1.25rem;
    }
}

@media (max-width: 900px) {
    .incident-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .contribute-grid {
        grid-template-columns: 1fr;
    }

    .nav {
        padding: 0.75rem 1.25rem;
    }

    .nav-logo {
        height: 30px;
    }

    .nav-brand-text {
        display: none;
    }

    .nav-links {
        display: none;
    }

        .nav-links.open {
            display: flex;
            flex-direction: column;
            position: fixed;
            top: 56px;
            left: 0;
            right: 0;
            background: var(--cream);
            padding: 2rem;
            gap: 1.5rem;
            border-bottom: 1px solid rgba(184,134,11,0.2);
            z-index: 99;
        }

    .nav-toggle {
        display: flex;
    }
}

@media (max-width: 600px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }

    .btn-donate {
        padding: 0.8rem 2rem;
        font-size: 1rem;
    }

    .hero-stats {
        gap: 1.5rem;
    }

    .hero-stat::before {
        display: none;
    }

    .martyrs-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    section {
        padding: 4rem 0;
    }

    .news-item {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }

    .news-arrow {
        display: none;
    }

    .hero-frame {
        display: none;
    }
}

/* ─────────────────────────────────────────────────────────────
   MARTYR PROFILE PAGE
   ───────────────────────────────────────────────────────────── */

/* Hero -------------------------------------------------------- */
.mp-hero {
    background:
        radial-gradient(ellipse 70% 50% at 50% 0%,   rgba(184,134,11,0.07) 0%, transparent 70%),
        radial-gradient(ellipse 50% 40% at 15% 100%, rgba(139,26,26,0.08)  0%, transparent 55%),
        var(--ink);
    padding: 5rem 2rem 4.5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.mp-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 3px,
        rgba(255,255,255,0.012) 3px,
        rgba(255,255,255,0.012) 4px
    );
    pointer-events: none;
}

/* Photo ring -------------------------------------------------- */
.mp-photo-wrap {
    position: relative;
    display: inline-block;
    margin-bottom: 2rem;
}

.mp-photo-wrap::before {
    content: '';
    position: absolute;
    inset: -14px;
    border-radius: 50%;
    border: 1px solid rgba(184,134,11,0.22);
}

.mp-photo-wrap::after {
    content: '';
    position: absolute;
    inset: -26px;
    border-radius: 50%;
    border: 1px solid rgba(184,134,11,0.09);
}

.mp-photo {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    border: 3px solid rgba(184,134,11,0.55);
    box-shadow:
        0 0 0 1px rgba(184,134,11,0.18),
        0 8px 40px rgba(0,0,0,0.55),
        inset 0 0 30px rgba(0,0,0,0.2);
    overflow: hidden;
    background: linear-gradient(145deg, #2a2218, #1a1410);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4.5rem;
    position: relative;
}

.mp-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
}

/* Name & meta ------------------------------------------------- */
.mp-type-label {
    font-family: 'Jost', sans-serif;
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--gold-light);
    margin-bottom: 0.9rem;
    opacity: 0.85;
}

.mp-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.2rem, 5.5vw, 3.8rem);
    font-weight: 600;
    font-style: italic;
    color: var(--cream);
    letter-spacing: 0.04em;
    line-height: 1.15;
    margin: 0 0 1rem;
    text-shadow: 0 2px 16px rgba(0,0,0,0.4);
}

.mp-meta {
    font-family: 'Jost', sans-serif;
    font-size: 0.8rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(245,240,232,0.38);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.mp-meta-dot {
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: rgba(184,134,11,0.4);
    display: inline-block;
}

/* Body -------------------------------------------------------- */
.mp-body {
    background: var(--parchment, #faf7f2);
    padding: 4rem 2rem;
}

.mp-inner {
    max-width: 680px;
    margin: 0 auto;
}

/* Gold ornament divider --------------------------------------- */
.mp-divider {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    margin: 0 0 3.5rem;
    color: var(--gold);
    font-size: 1rem;
}

.mp-divider::before,
.mp-divider::after {
    content: '';
    flex: 1;
    height: 1px;
}

.mp-divider::before {
    background: linear-gradient(to right, transparent, rgba(184,134,11,0.4));
}

.mp-divider::after {
    background: linear-gradient(to left, transparent, rgba(184,134,11,0.4));
}

/* Info grid --------------------------------------------------- */
.mp-info-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0;
    margin-bottom: 3.5rem;
    border: 1px solid rgba(184,134,11,0.18);
    border-radius: 4px;
    overflow: hidden;
}

.mp-info-item {
    flex: 1;
    min-width: 140px;
    padding: 1.2rem 1.5rem;
    text-align: center;
    border-right: 1px solid rgba(184,134,11,0.15);
    background: rgba(184,134,11,0.02);
}

.mp-info-item:last-child {
    border-right: none;
}

.mp-info-label {
    display: block;
    font-family: 'Jost', sans-serif;
    font-size: 0.62rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--ink-light);
    margin-bottom: 0.4rem;
}

.mp-info-value {
    display: block;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--ink);
    letter-spacing: 0.02em;
}

/* Description ------------------------------------------------- */
.mp-description {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.22rem;
    font-style: italic;
    line-height: 2.1;
    color: var(--ink-mid);
    margin: 0 0 3.5rem;
    padding: 1.75rem 2rem 1.75rem 1.75rem;
    border-left: 3px solid rgba(184,134,11,0.45);
    background: rgba(184,134,11,0.028);
    border-radius: 0 6px 6px 0;
    position: relative;
}

.mp-description::before {
    content: '\201C';
    font-family: 'Cormorant Garamond', serif;
    font-size: 5rem;
    color: rgba(184,134,11,0.18);
    position: absolute;
    top: -0.5rem;
    left: 0.5rem;
    line-height: 1;
}

/* Inscription ------------------------------------------------- */
.mp-inscription {
    text-align: center;
    margin-bottom: 2rem;
}

.mp-inscription p {
    font-family: 'Jost', sans-serif;
    font-size: 0.8rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--ink-light);
    margin-bottom: 0.35rem;
}

.mp-inscription-verse {
    font-family: 'Cormorant Garamond', serif !important;
    font-size: 1.15rem !important;
    font-style: italic;
    letter-spacing: 0.03em !important;
    text-transform: none !important;
    color: var(--ink) !important;
    margin-top: 1.5rem !important;
    line-height: 1.9;
}

/* Memorial (candles) ----------------------------------------- */
.mp-memorial {
    background: var(--ink);
    padding: 4rem 2rem 3.5rem;
    text-align: center;
    position: relative;
}

.mp-memorial::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(184,134,11,0.3), transparent);
}

.mp-memorial-text {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 1rem;
    color: rgba(245,240,232,0.38);
    letter-spacing: 0.08em;
    margin-top: 0.5rem;
}

.mp-candles {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 1.5rem;
}

/* Back nav ---------------------------------------------------- */
.mp-back {
    padding: 3rem 2rem;
    text-align: center;
    background: var(--cream);
    border-top: 1px solid rgba(184,134,11,0.12);
}

.mp-back-link {
    font-family: 'Jost', sans-serif;
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--ink-light);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    transition: color 0.2s;
}

.mp-back-link::before {
    content: '←';
    font-size: 1rem;
}

.mp-back-link:hover {
    color: var(--gold);
}

/* Responsive -------------------------------------------------- */
@media (max-width: 600px) {
    .mp-photo {
        width: 160px;
        height: 160px;
        font-size: 3.5rem;
    }

    .mp-photo-wrap::before { inset: -10px; }
    .mp-photo-wrap::after  { inset: -18px; }

    .mp-info-item {
        min-width: 100px;
        padding: 1rem;
    }

    .mp-description {
        font-size: 1.1rem;
        padding: 1.25rem 1.25rem 1.25rem 1.25rem;
    }
}

/* ─────────────────────────────────────────────────────────────
   MARTYRS LIST PAGE  (/martyrs)
   ───────────────────────────────────────────────────────────── */

/* Page hero --------------------------------------------------- */
.ml-hero {
    background:
        radial-gradient(ellipse 90% 60% at 50% -5%,  rgba(139,26,26,0.1)   0%, transparent 65%),
        radial-gradient(ellipse 50% 35% at 0%   100%, rgba(184,134,11,0.06) 0%, transparent 55%),
        var(--ink);
    padding: 5.5rem 2rem 4.5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.ml-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(184,134,11,0.04) 1px, transparent 1px);
    background-size: 28px 28px;
    pointer-events: none;
}

.ml-hero-tag {
    font-family: 'Jost', sans-serif;
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: var(--gold-light);
    opacity: 0.8;
    margin-bottom: 1rem;
    display: block;
}

.ml-hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.6rem, 6vw, 4.5rem);
    font-weight: 600;
    font-style: italic;
    color: var(--cream);
    line-height: 1.1;
    margin: 0 0 1rem;
    text-shadow: 0 2px 20px rgba(0,0,0,0.35);
}

.ml-hero-sub {
    font-family: 'Jost', sans-serif;
    font-size: 0.82rem;
    letter-spacing: 0.1em;
    color: rgba(245,240,232,0.4);
    margin-bottom: 3rem;
}

/* Stats strip inside hero ------------------------------------ */
.ml-stats {
    display: flex;
    justify-content: center;
    gap: 0;
    flex-wrap: wrap;
    max-width: 640px;
    margin: 0 auto;
    border: 1px solid rgba(184,134,11,0.18);
    border-radius: 6px;
    overflow: hidden;
}

.ml-stat {
    flex: 1;
    min-width: 110px;
    padding: 1.25rem 1rem;
    border-right: 1px solid rgba(184,134,11,0.15);
    position: relative;
}

.ml-stat:last-child {
    border-right: none;
}

.ml-stat-num {
    display: block;
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.2rem;
    font-weight: 600;
    color: var(--gold-light);
    line-height: 1;
    margin-bottom: 0.3rem;
}

.ml-stat-label {
    display: block;
    font-family: 'Jost', sans-serif;
    font-size: 0.6rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(245,240,232,0.35);
}

/* Sticky filter bar ------------------------------------------ */
.ml-filter {
    background: rgba(250,247,242,0.97);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(184,134,11,0.12);
    padding: 1rem 2rem;
    position: sticky;
    top: 60px;
    z-index: 20;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.ml-filter-btn {
    font-family: 'Jost', sans-serif;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 0.45rem 1.1rem;
    border-radius: 50px;
    border: 1px solid rgba(184,134,11,0.22);
    background: transparent;
    color: var(--ink-light);
    cursor: pointer;
    transition: all 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.ml-filter-btn:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: rgba(184,134,11,0.04);
}

.ml-filter-btn.active {
    background: var(--ink);
    color: var(--cream);
    border-color: var(--ink);
}

.ml-filter-count {
    font-size: 0.62rem;
    background: rgba(255,255,255,0.12);
    border-radius: 50px;
    padding: 0 0.45rem;
    line-height: 1.6;
}

.ml-filter-btn.active .ml-filter-count {
    background: rgba(255,255,255,0.12);
}

.ml-filter-btn:not(.active) .ml-filter-count {
    background: rgba(184,134,11,0.1);
    color: var(--gold);
}

/* Grid body -------------------------------------------------- */
.ml-body {
    background: #faf7f2;
    padding: 3.5rem 2rem 5rem;
    min-height: 50vh;
}

.ml-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(155px, 1fr));
    gap: 1.25rem;
    max-width: 1280px;
    margin: 0 auto;
}

/* Martyr card ----------------------------------------------- */
.ml-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    text-decoration: none;
    color: inherit;
    background: #fff;
    border-radius: 14px;
    border: 1px solid rgba(184,134,11,0.1);
    box-shadow: 0 2px 10px rgba(26,20,16,0.05);
    padding: 1.75rem 1rem 1.25rem;
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
    position: relative;
    overflow: hidden;
}

.ml-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, rgba(184,134,11,0.3), transparent);
    opacity: 0;
    transition: opacity 0.28s;
}

.ml-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 14px 36px rgba(26,20,16,0.13);
    border-color: rgba(184,134,11,0.28);
    text-decoration: none;
    color: inherit;
}

.ml-card:hover::before {
    opacity: 1;
}

.ml-card-photo {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    border: 2px solid rgba(184,134,11,0.28);
    background: linear-gradient(135deg, var(--cream-dark), var(--gold-pale));
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.6rem;
    margin-bottom: 1.1rem;
    box-shadow: 0 4px 16px rgba(0,0,0,0.07);
    transition: border-color 0.28s, box-shadow 0.28s;
    flex-shrink: 0;
}

.ml-card:hover .ml-card-photo {
    border-color: rgba(184,134,11,0.5);
    box-shadow: 0 6px 20px rgba(184,134,11,0.15);
}

.ml-card-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
}

.ml-card-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--ink);
    line-height: 1.35;
    margin-bottom: 0.25rem;
}

.ml-card-age {
    font-family: 'Jost', sans-serif;
    font-size: 0.68rem;
    color: var(--ink-light);
    letter-spacing: 0.05em;
    margin-bottom: 0.65rem;
}

.ml-card-badge {
    font-family: 'Jost', sans-serif;
    font-size: 0.55rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    padding: 0.22rem 0.7rem;
    border-radius: 50px;
    margin-top: auto;
}

.ml-badge-student { background: rgba(139,26,26,0.07);  color: var(--crimson); }
.ml-badge-teacher { background: rgba(184,134,11,0.1);  color: #7a5c00; }
.ml-badge-parent  { background: rgba(0,64,128,0.07);   color: #0a4a8a; }
.ml-badge-staff   { background: rgba(26,58,42,0.07);   color: #1a3a2a; }

/* Hidden card state (filter) --------------------------------- */
.ml-card.hidden {
    display: none;
}

/* Empty state ------------------------------------------------ */
.ml-empty {
    grid-column: 1 / -1;
    text-align: center;
    padding: 5rem 2rem;
    color: var(--ink-light);
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    font-style: italic;
}

/* Footer note ----------------------------------------------- */
/* ===== ABOUT PAGE ===== */
.about-hero { padding-bottom: 3.5rem; }

.about-hero-line {
    width: 48px;
    height: 2px;
    background: var(--gold);
    margin: 0 auto;
    opacity: 0.6;
}

/* shared label style */
.about-label {
    font-family: 'Jost', sans-serif;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.5rem;
}

.about-label-light { color: var(--gold-light); opacity: 0.75; }

/* WHO WE ARE */
.about-who {
    background: var(--cream);
    padding: 6rem 2rem;
}

.about-who-inner {
    max-width: 740px;
    margin: 0 auto;
}

.about-who-text p {
    font-size: clamp(1rem, 2.2vw, 1.12rem);
    color: var(--ink-mid);
    line-height: 1.9;
    margin-bottom: 1.4rem;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
}

/* PILLARS GRID */
.about-pillars {
    background: var(--cream-dark);
    padding: 5rem 2rem;
}

.about-pillars-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1040px;
    margin: 0 auto;
}

.about-pillar {
    background: var(--cream);
    border: 1px solid rgba(184,134,11,0.15);
    border-top: 3px solid var(--gold);
    padding: 2rem 1.75rem;
    border-radius: 2px;
}

.about-pillar-icon {
    font-size: 2rem;
    display: block;
    margin-bottom: 1rem;
}

.about-pillar-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 0.75rem;
}

.about-pillar-body {
    font-size: 0.88rem;
    color: var(--ink-light);
    line-height: 1.8;
}

/* MISSION */
.about-mission {
    background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(139,26,26,0.12) 0%, transparent 70%), var(--ink);
    padding: 6rem 2rem;
    text-align: center;
}

.about-mission-inner {
    max-width: 680px;
    margin: 0 auto;
    position: relative;
}

.about-mission-ornament {
    font-family: 'Cormorant Garamond', serif;
    font-size: 7rem;
    color: var(--crimson);
    opacity: 0.18;
    line-height: 0.6;
    margin-bottom: 1.5rem;
    user-select: none;
}

.about-mission-text p {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.15rem, 2.8vw, 1.45rem);
    font-style: italic;
    color: rgba(245,240,232,0.82);
    line-height: 1.85;
    margin-bottom: 1.25rem;
}

.about-mission-text p:first-child {
    font-size: clamp(1.25rem, 3vw, 1.6rem);
    color: var(--cream);
    font-weight: 600;
}

/* CONTACT */
.about-contact {
    background: var(--cream);
    padding: 5rem 2rem;
    border-top: 1px solid rgba(184,134,11,0.12);
}

.about-contact-inner {
    max-width: 540px;
    margin: 0 auto;
}

.about-contact-note {
    font-size: 0.95rem;
    color: var(--ink-light);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.about-contact-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.about-contact-list li {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    font-size: 0.95rem;
    color: var(--ink-mid);
}

.about-contact-list a {
    color: var(--crimson);
    text-decoration: none;
    transition: color 0.2s;
}

.about-contact-list a:hover { color: var(--gold); }

.about-contact-icon {
    width: 32px;
    height: 32px;
    background: rgba(184,134,11,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    color: var(--gold);
    flex-shrink: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .about-pillars-grid { grid-template-columns: 1fr; gap: 1.25rem; }
    .about-who, .about-mission, .about-contact { padding: 4rem 1.5rem; }
    .about-pillars { padding: 4rem 1.5rem; }
}

/* ===================== */
.ml-footer {
    background: var(--ink);
    padding: 4rem 2rem 5rem;
    text-align: center;
    position: relative;
}

.ml-footer::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(184,134,11,0.3), transparent);
}

.ml-footer-note {
    font-family: 'Jost', sans-serif;
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    color: rgba(245,240,232,0.35);
    max-width: 500px;
    margin: 0 auto 2.5rem;
    line-height: 2;
}

.ml-footer-verse {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 1.05rem;
    color: rgba(245,240,232,0.55);
    margin-bottom: 2.5rem;
    line-height: 2;
}

/* Responsive ------------------------------------------------- */
@media (max-width: 768px) {
    .ml-stats {
        max-width: 100%;
    }

    .ml-stat-num {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .ml-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .ml-card-photo {
        width: 90px;
        height: 90px;
        font-size: 2rem;
    }

    .ml-card {
        padding: 1.25rem 0.75rem 1rem;
    }

    .ml-stat {
        min-width: 80px;
    }
}