:root {
--primary: #9F3E23;
--primary-dark: #7c2f1b;
    --secondary: #0f172a;
    --text: #475569;
    --bg: #ffffff;
    --muted: #f8fafc;
    --border: #e2e8f0;
    --success: #166534;
    --warning: #92400e;
    --danger: #991b1b;
}

.header-logo img {
    height: 170px;
    width: auto;
    display: block;
}

@media (max-width: 991px) {
    .header-logo img {
        height: 85px;
    }
}
.cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: #1f2937;
    color: #fff;
    padding: 16px;
    border-radius: 12px;
    display: none;
    z-index: 9999;
}

.donation-mode {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.donation-mode__btn {
    padding: 10px 20px;
    border-radius: 30px;
    border: 1px solid #ddd;
    background: #fff;
    cursor: pointer;
}

.donation-mode__btn.active {
    background: #9F3E23;
    color: #fff;
    border-color: #9F3E23;
}

.donation-project-select {
    margin-bottom: 20px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: Inter, Arial, sans-serif;
    color: var(--text);
    background: var(--bg);
    animation: fadeIn .4s ease;
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.container { width: min(1180px, calc(100% - 32px)); margin: 0 auto; }
.narrow { width: min(760px, calc(100% - 32px)); margin: 0 auto; }

#loader {
    position: fixed;
    inset: 0;
    background: white;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}
.spinner {
    width: 42px;
    height: 42px;
    border: 4px solid #eee;
    border-top: 4px solid var(--primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

#progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 4px;
    background: var(--primary);
    width: 0%;
    z-index: 9998;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 40;
    background: rgba(255,255,255,.94);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--border);
}
.nav {
    min-height: 74px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}
.logo {
    font-weight: 800;
    font-size: 1.35rem;
    color: var(--secondary);
}
.menu {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}
.menu a {
    font-weight: 600;
    color: var(--secondary);
}

.hero {
    padding: 96px 0 74px;
    background: linear-gradient(135deg, #fff7ed, #ffffff);
}
.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 40px;
    align-items: center;
}
.hero-content h1 {
    font-size: clamp(2.4rem, 5vw, 4.4rem);
    line-height: 1.05;
    color: var(--secondary);
    margin: 14px 0 18px;
}
.hero-content p {
    font-size: 1.08rem;
    max-width: 650px;
}
.badge, .tag, .chip {
    display: inline-block;
    border-radius: 999px;
    padding: 7px 12px;
    font-weight: 700;
}
.badge {
    background: #ffedd5;
    color: #9a3412;
}
.tag {
    background: #fff7ed;
    color: var(--primary-dark);
}
.chip {
    background: white;
    color: var(--secondary);
    border: 1px solid var(--border);
}
.chip-btn {
    cursor: pointer;
    font: inherit;
}
.hero-card, .card, .form-card, .content-card, .impact-box {
    background: white;
    border: 1px solid var(--border);
    border-radius: 20px;
    box-shadow: 0 14px 34px rgba(15, 23, 42, 0.08);
}
.hero-card {
    padding: 28px;
}
.hero-actions, .quick-amounts {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 24px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 20px;
    border-radius: 999px;
    font-weight: 700;
    transition: all .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
    background: var(--primary);
    color: white;
}
.btn-primary:hover { background: var(--primary-dark); }
.btn-outline {
    border: 1px solid var(--border);
    color: var(--secondary);
    background: white;
}

.section { padding: 80px 0; }
.section-dark {
    background: var(--secondary);
    color: white;
}
.page-head {
    padding: 64px 0 26px;
    background: var(--muted);
    border-bottom: 1px solid var(--border);
}
.page-head h1 {
    color: var(--secondary);
    margin: 0 0 8px;
}
.section-head {
    text-align: center;
    margin-bottom: 34px;
}
.section-head h2 {
    color: var(--secondary);
    font-size: 2rem;
    margin: 8px 0 0;
}
.eyebrow {
    color: var(--primary);
    text-transform: uppercase;
    font-size: .85rem;
    font-weight: 800;
    letter-spacing: .04em;
}

.grid-3, .footer-grid, .admin-stats {
    display: grid;
    gap: 24px;
}
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.footer-grid { grid-template-columns: 1.5fr 1fr 1fr; }

.card {
    transition: all .25s ease;
}
.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 22px 44px rgba(0,0,0,0.10);
}
.card-body, .form-card, .content-card, .impact-box, .admin-card {
    padding: 24px;
}
.card-body h3 {
    color: var(--secondary);
    margin: 14px 0 10px;
}
.text-link {
    display: inline-block;
    margin-top: 12px;
    color: var(--primary);
    font-weight: 700;
}

.progress {
    height: 10px;
    background: #edf2f7;
    border-radius: 999px;
    overflow: hidden;
    margin: 16px 0 12px;
}
.bar {
    height: 100%;
    background: var(--primary);
}
.meta {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    font-size: .95rem;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}
.form-card label {
    display: block;
    margin-bottom: 6px;
    font-weight: 700;
    color: var(--secondary);
}
.form-card input,
.form-card textarea,
.form-card select {
    width: 100%;
    padding: 12px 14px;
    border-radius: 12px;
    border: 1px solid var(--border);
    font: inherit;
}
.form-card textarea {
    min-height: 140px;
    resize: vertical;
}
.form-card .mb-3,
.form-card div {
    margin-bottom: 16px;
}

.flash-wrap { margin-top: 16px; }
.flash {
    padding: 14px 16px;
    border-radius: 14px;
    margin-bottom: 10px;
    font-weight: 600;
}
.flash-success { background: #dcfce7; color: var(--success); }
.flash-warning { background: #fef3c7; color: var(--warning); }
.flash-error, .flash-danger { background: #fee2e2; color: var(--danger); }

.site-footer {
    background: var(--secondary);
    color: rgba(255,255,255,.86);
    padding: 60px 0;
}
.site-footer h3, .site-footer h4 { color: white; }
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li + li { margin-top: 10px; }

.donation-grid {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 24px;
    align-items: center;
}
.impact-box {
    color: var(--secondary);
}

.text-center { text-align: center; }

.admin-dashboard h1 {
    margin-top: 0;
}
.admin-stats {
    grid-template-columns: repeat(3, 1fr);
    margin-bottom: 24px;
}
.admin-card {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
}

.wysiwyg p:first-child { margin-top: 0; }

@media (max-width: 960px) {
    .hero-grid,
    .grid-3,
    .form-grid,
    .footer-grid,
    .donation-grid,
    .admin-stats {
        grid-template-columns: 1fr;
    }

    .nav, .menu {
        flex-direction: column;
        align-items: flex-start;
    }
}

.projects-slider-section {
    background: #f7f7f7;
}

.home-projects-slider {
    position: relative;
    padding: 20px 46px 10px;
}

.project-slide-card {
    background: #fff;
    border: 1px solid #ececec;
    min-height: 100%;
    box-shadow: 0 10px 28px rgba(0,0,0,0.04);
    transition: transform .25s ease, box-shadow .25s ease;
}

.project-slide-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 38px rgba(0,0,0,0.08);
}

.project-slide-card__image {
    height: 290px;
    overflow: hidden;
    background: #ddd;
}

.project-slide-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.project-slide-card__placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #ddd, #bbb);
}

.project-slide-card__body {
    padding: 34px 34px 38px;
    text-align: center;
}

.home-projects-slider .swiper-button-prev,
.home-projects-slider .swiper-button-next {
    pointer-events: auto;
    z-index: 20;
}
.project-slide-card__body h3 {
    margin: 0 0 22px;
    font-size: 1.4rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #2d2d2d;
}

.project-slide-card__body p {
    color: #787878;
    line-height: 1.9;
    font-size: 1.05rem;
    min-height: 118px;
}

.project-progress {
    position: relative;
    margin: 26px 0 46px;
}

.project-progress__bar {
    width: 100%;
    height: 8px;
    background: #e8e8e8;
    position: relative;
    overflow: hidden;
}

.project-progress__fill {
    height: 100%;
    background: #9F3E23;
}

.project-progress__badge {
    position: absolute;
    right: 0;
    top: -46px;
    transform: translateX(50%);
    background: #9F3E23;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    padding: 7px 12px;
    min-width: 58px;
    text-align: center;
}

.project-progress__badge::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -8px;
    transform: translateX(-50%);
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 8px solid #9F3E23;
}

.project-slide-card__meta {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
    font-size: 1rem;
    color: #808080;
    margin-bottom: 18px;
}

.project-slide-card__meta strong {
    color: #8b8b8b;
    font-weight: 800;
}

.project-slide-card__meta span:first-child {
    color: #9F3E23;
}

.projects-slider-wrapper {
    position: relative;
}

.projects-prev,
.projects-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    cursor: pointer;
    z-index: 20;
}

.projects-prev {
    left: -25px;
}

.projects-next {
    right: -25px;
}

.projects-prev::after,
.projects-next::after {
    content: "";
    position: absolute;
    width: 14px;
    height: 14px;
    border-top: 3px solid #9F3E23;
    border-right: 3px solid #9F3E23;
    top: 50%;
    left: 50%;
}

.projects-prev::after {
    transform: translate(-40%, -50%) rotate(-135deg);
}

.projects-next::after {
    transform: translate(-60%, -50%) rotate(45deg);
}

.home-projects-prev,
.home-projects-next {
    position: absolute;
    top: 42%;
    width: 44px;
    height: 44px;
    margin-top: -22px;
    z-index: 10;
    cursor: pointer;
    opacity: .45;
    transition: opacity .2s ease, transform .2s ease;
}

.home-projects-prev:hover,
.home-projects-next:hover {
    opacity: 1;
    transform: scale(1.08);
}

.home-projects-prev {
    left: 0;
}

.home-projects-next {
    right: 0;
}

.home-projects-prev::before,
.home-projects-next::before {
    content: "";
    display: block;
    width: 18px;
    height: 18px;
    border-top: 2px solid #bfbfbf;
    border-right: 2px solid #bfbfbf;
    position: absolute;
    top: 50%;
    left: 50%;
}

.home-projects-prev::before {
    transform: translate(-35%, -50%) rotate(-135deg);
}

.home-projects-next::before {
    transform: translate(-65%, -50%) rotate(45deg);
}

@media (max-width: 991px) {
    .project-slide-card__image {
        height: 240px;
    }

    .project-slide-card__body {
        padding: 24px;
    }

    .project-slide-card__body p {
        min-height: auto;
    }
}

.stats-banner {
    position: relative;
    padding: 110px 0;
    background-image: url('/uploads/site/stats-bg.jpg');
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.stats-banner__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.58);
}

.stats-banner .container {
    position: relative;
    z-index: 2;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    align-items: center;
}

.stat-card {
    text-align: center;
    color: #fff;
}

.stat-number {
    font-size: clamp(2.8rem, 5vw, 5rem);
    line-height: 1;
    font-weight: 800;
    color: #fff;
    margin-bottom: 18px;
}

.stat-sep {
    width: 52px;
    height: 3px;
    background: #9F3E23;
    margin: 0 auto 18px;
}

.stat-label {
    margin: 0;
    font-size: 1.05rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #fff;
}

@media (max-width: 991px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        row-gap: 40px;
    }
}

@media (max-width: 640px) {
    .stats-banner {
        padding: 70px 0;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }
}
.about-home-section {
    background: #f3f3f3;
}

.about-home-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
}

.about-home-image {
    min-height: 620px;
    overflow: hidden;
}

.about-home-image img,
.about-home-placeholder {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.about-home-placeholder {
    background: linear-gradient(135deg, #d8d8d8, #bdbdbd);
}

.about-home-content {
    padding: 110px 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-home-content h2 {
    margin: 0 0 28px;
    font-size: clamp(2rem, 4vw, 3.3rem);
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #222;
}

.about-home-text {
    color: #7c7c7c;
    font-size: 1.05rem;
    line-height: 2;
}

.about-home-btn {
    margin-top: 26px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    min-width: 220px;
    height: 58px;
    padding: 0 26px;
    background: #9F3E23;
    color: #fff;
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    transition: all .2s ease;
}

.about-home-btn:hover {
    background: #db6818;
}

@media (max-width: 991px) {
    .about-home-grid {
        grid-template-columns: 1fr;
    }

    .about-home-image {
        min-height: 340px;
    }

    .about-home-content {
        padding: 60px 24px;
    }
}
.project-hero {
    padding: 70px 0;
    background: linear-gradient(180deg, #fff7f2 0%, #ffffff 100%);
}

.project-hero__grid {
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    gap: 34px;
    align-items: center;
}

.project-hero__media {
    border-radius: 24px;
    overflow: hidden;
    min-height: 520px;
    background: #ddd;
    box-shadow: 0 18px 40px rgba(0,0,0,0.08);
}

.project-hero__media img,
.project-hero__placeholder {
    width: 100%;
    height: 100%;
    min-height: 520px;
    object-fit: cover;
    display: block;
}

.project-hero__placeholder {
    background: linear-gradient(135deg, #dcdcdc, #bcbcbc);
}

.project-pill {
    display: inline-block;
    padding: 8px 14px;
    border-radius: 999px;
    background: #fff0e5;
    color: #9F3E23;
    font-weight: 700;
    margin-bottom: 18px;
}

.project-hero__content h1 {
    font-size: clamp(2.3rem, 4vw, 4rem);
    line-height: 1.05;
    margin: 0 0 18px;
    color: #1f2937;
}

.project-hero__excerpt {
    font-size: 1.08rem;
    line-height: 1.9;
    color: #6b7280;
    margin-bottom: 26px;
}

.project-progress-card {
    background: #fff;
    border: 1px solid #ececec;
    border-radius: 22px;
    padding: 28px;
    box-shadow: 0 14px 34px rgba(0,0,0,0.06);
}

.project-progress-card__top {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    font-weight: 700;
    margin-bottom: 14px;
    color: #374151;
}

.project-progress__bar {
    height: 10px;
    background: #ececec;
    border-radius: 999px;
    overflow: hidden;
}

.project-progress__fill {
    height: 100%;
    background: #9F3E23;
    border-radius: 999px;
}

.project-progress-card__amounts {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    margin: 22px 0 24px;
}

.project-progress-card__amounts strong {
    display: block;
    font-size: 1.25rem;
    color: #111827;
}

.project-progress-card__amounts span {
    color: #6b7280;
    font-size: .95rem;
}

.project-hero__actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.btn-block {
    width: 100%;
}

.project-detail-section {
    padding: 70px 0 100px;
    background: #f8fafc;
}

.project-detail-grid {
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    gap: 28px;
    align-items: start;
}

.project-content-card,
.project-sidebar__card {
    background: #fff;
    border: 1px solid #ececec;
    border-radius: 22px;
    box-shadow: 0 12px 28px rgba(0,0,0,0.05);
}

.project-content-card {
    padding: 34px;
}

.project-content-card h2,
.project-sidebar__card h3 {
    margin-top: 0;
    color: #1f2937;
}

.project-content {
    color: #6b7280;
    line-height: 2;
}

.project-sidebar {
    display: grid;
    gap: 20px;
}

.project-sidebar__card {
    padding: 26px;
}

.project-info-list {
    list-style: none;
    padding: 0;
    margin: 0 0 22px;
}

.project-info-list li {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
}

.project-info-list li:last-child {
    border-bottom: none;
}

.project-info-list span {
    color: #6b7280;
}

.project-info-list strong {
    color: #111827;
}

@media (max-width: 991px) {
    .project-hero__grid,
    .project-detail-grid {
        grid-template-columns: 1fr;
    }

    .project-hero__media,
    .project-hero__media img,
    .project-hero__placeholder {
        min-height: 320px;
    }
}
.donation-amounts {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

.donation-chip {
    border: 1px solid var(--border);
    background: white;
    border-radius: 999px;
    padding: 10px 16px;
    font: inherit;
    cursor: pointer;
}

.donation-chip.is-active {
    border-color: var(--primary);
    background: #fff7ed;
    color: var(--primary-dark);
}

.donation-card .form-check-line {
    margin: 8px 0 18px;
}

.donation-legal-note {
    margin-top: 20px;
    font-size: .95rem;
    color: #64748b;
}
.membership-amounts {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

.membership-chip {
    border: 1px solid var(--border);
    background: white;
    border-radius: 999px;
    padding: 10px 16px;
    font: inherit;
    cursor: pointer;
}

.membership-chip.is-active {
    border-color: var(--primary);
    background: #fff7ed;
    color: var(--primary-dark);
}

.membership-legal-note {
    margin-top: 20px;
    font-size: .95rem;
    color: #64748b;
}
.mobile-menu-toggle {
    display: none;
    border: none;
    background: transparent;
    color: #fff;
    font-size: 28px;
    cursor: pointer;
    padding: 0 12px;
    height: 60px;
}

@media (max-width: 991px) {
    .header-main__inner {
        min-height: auto;
        padding: 20px 0;
        align-items: flex-start;
    }

    .header-contact {
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
        width: 100%;
    }

    .header-donate-btn {
        width: 100%;
        min-width: 0;
    }

    .main-nav__inner {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        min-height: 60px;
        position: relative;
    }

    .mobile-menu-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .main-nav__menu {
        display: none;
        position: absolute;
        top: 60px;
        left: 0;
        right: 0;
        background: #9F3E23;
        flex-direction: column;
        z-index: 100;
    }

    .main-nav__menu.is-open {
        display: flex;
    }

    .main-nav__menu a {
        width: 100%;
        min-height: 54px;
        justify-content: flex-start;
        padding: 0 20px;
        border-left: none;
        border-right: none;
        border-top: 1px solid rgba(255,255,255,0.15);
        box-shadow: none !important;
    }

    .main-nav__actions {
        margin-left: auto;
    }

    .main-nav__actions a {
        width: 52px;
        font-size: 22px;
    }

    .topbar {
        display: none;
    }

    .header-logo a {
        font-size: 34px;
    }
}

@media (max-width: 991px) {

    .main-nav__inner {
        position: relative;
    }

    .main-nav__menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #9F3E23;
        flex-direction: column;
        z-index: 999;
    }

    .main-nav__menu.is-open {
        display: flex;
    }

    .main-nav__menu a {
        display: block;
        width: 100%;
        padding: 16px 20px;
        color: #fff;
        border-top: 1px solid rgba(255,255,255,0.15);
        text-align: left;
    }
}
.main-nav {
    background: #9F3E23;
    position: relative;
    z-index: 50;
}
/* =========================
   RESET MINIMAL
========================= */
* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: Inter, Arial, sans-serif;
    color: #475569;
    background: #fff;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    width: min(1200px, calc(100% - 32px));
    margin: 0 auto;
}

/* =========================
   HEADER
========================= */
.site-header {
    position: relative;
    z-index: 50;
}

/* Top bar */
.topbar {
    background: #f3f3f3;
    border-bottom: 1px solid #e8e8e8;
    font-size: 14px;
    color: #8a8a8a;
}

.topbar__inner {
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.topbar__left,
.topbar__right,
.topbar__links,
.topbar__socials {
    display: flex;
    align-items: center;
    gap: 18px;
}

.topbar__links a:hover,
.topbar__socials a:hover {
    color: #9F3E23;
}

.topbar__socials a {
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #ededed;
    border: 1px solid #e0e0e0;
    font-size: 14px;
    font-weight: 700;
}

/* Main header */
.header-main {
    background: #fff;
}

.header-main__inner {
    min-height: 142px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.header-logo a {
    font-size: 54px;
    line-height: 1;
    font-weight: 800;
    letter-spacing: -2px;
    color: #222;
}

.header-logo span {
    color: #9F3E23;
}

.header-contact {
    display: flex;
    align-items: center;
    gap: 26px;
}

.header-contact__item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 0 24px;
    border-left: 1px solid #ececec;
}

.header-contact__item:first-child {
    border-left: none;
}

.header-contact__icon {
    font-size: 34px;
    color: #d3d3d3;
    line-height: 1;
    flex-shrink: 0;
}

.header-contact__label {
    font-size: 15px;
    font-weight: 800;
    text-transform: uppercase;
    color: #9F3E23;
    margin-bottom: 4px;
}

.header-contact__value {
    font-size: 16px;
    color: #777;
}

.header-donate-btn {
    min-width: 220px;
    height: 62px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 24px;
    border: 2px solid #ececec;
    background: #fff;
    color: #7f7f7f;
    font-size: 18px;
    font-weight: 500;
    transition: all .2s ease;
}

.header-donate-btn:hover {
    border-color: #9F3E23;
    color: #9F3E23;
}

/* Navigation */
.main-nav {
    background: #9F3E23;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.main-nav__inner {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
}

.main-nav__menu {
    display: flex;
    align-items: stretch;
}

.main-nav__menu a {
    min-height: 82px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 32px;
    color: #fff;
    text-transform: uppercase;
    font-size: 18px;
    letter-spacing: 1px;
    border-left: 1px solid rgba(255, 255, 255, 0.16);
    transition: background .2s ease;
}

.main-nav__menu a:last-child {
    border-right: 1px solid rgba(255, 255, 255, 0.16);
}

.main-nav__menu a:hover {
    background: rgba(255, 255, 255, 0.08);
}

.main-nav__menu a.is-active {
    box-shadow: inset 0 -4px 0 #fff;
}

.main-nav__actions {
    display: flex;
    align-items: stretch;
}

.main-nav__actions a {
    width: 78px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 28px;
    border-left: 1px solid rgba(255, 255, 255, 0.16);
}

/* =========================
   FOOTER
========================= */
.site-footer {
    background: #0f172a;
    color: rgba(255,255,255,.85);
    padding: 56px 0;
}

.site-footer h3,
.site-footer h4 {
    color: white;
    margin-top: 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 24px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li + li {
    margin-top: 10px;
}

/* =========================
   FLASH
========================= */
.flash-wrap {
    margin-top: 16px;
}

.flash {
    padding: 14px 16px;
    border-radius: 12px;
    margin-bottom: 10px;
    font-weight: 600;
}

.flash-success {
    background: #dcfce7;
    color: #166534;
}

.flash-warning {
    background: #fef3c7;
    color: #92400e;
}

.flash-error,
.flash-danger {
    background: #fee2e2;
    color: #991b1b;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 1100px) {
    .topbar__inner,
    .header-main__inner,
    .main-nav__inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .topbar__left,
    .topbar__right,
    .header-contact,
    .main-nav__menu {
        flex-wrap: wrap;
    }

    .header-logo a {
        font-size: 42px;
    }

    .header-contact__item {
        border-left: none;
        padding: 0;
    }

    .main-nav__menu a {
        min-height: 60px;
        padding: 0 20px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }
}
/* ===== NAVIGATION ===== */

.main-nav {
    background: #9F3E23;
    position: relative;
    z-index: 100;
}

.main-nav__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 60px;
}

/* MENU DESKTOP */
.main-nav__menu {
    display: flex;
    align-items: center;
    gap: 0;
}

.main-nav__menu a {
    display: flex;
    align-items: center;
    padding: 0 22px;
    height: 60px;
    color: #fff;
    font-weight: 600;
    text-transform: uppercase;
    border-left: 1px solid rgba(255,255,255,0.15);
    transition: background 0.2s ease;
}

.main-nav__menu a:hover,
.main-nav__menu a.is-active {
    background: rgba(255,255,255,0.15);
}

/* BOUTON BURGER */
.mobile-menu-toggle {
    display: none;
    border: none;
    background: transparent;
    color: #fff;
    font-size: 28px;
    cursor: pointer;
    height: 60px;
}

/* ===== MOBILE ===== */

.main-nav {
    background: #9F3E23;
    position: relative;
    z-index: 100;
}

.main-nav__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 60px;
    position: relative;
}

.main-nav__menu {
    display: flex;
    align-items: center;
}

.main-nav__menu a {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 60px;
    padding: 0 22px;
    color: #fff;
    font-weight: 600;
    text-transform: uppercase;
}

.mobile-menu-toggle {
    display: none;
    border: 0;
    background: transparent;
    color: #fff;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
    padding: 0 14px;
    height: 60px;
}

@media (max-width: 991px) {
    .main-nav__menu.is-open + * {
        margin-top: 0;
    }
}
@media (max-width: 991px) {
    .mobile-menu-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .main-nav__menu {
        display: none;
        position: absolute;
        top: 60px;
        left: 0;
        right: 0;
        width: 100%;
        background: #9F3E23;
        flex-direction: column;
        align-items: stretch;
        z-index: 999;
        box-shadow: 0 10px 24px rgba(0,0,0,0.12);
    }

    .main-nav__menu.is-open {
        display: flex;
    }

    .main-nav__menu a {
        display: block;
        width: 100%;
        height: auto;
        padding: 16px 20px;
        text-align: left;
        border-top: 1px solid rgba(255,255,255,0.15);
    }
}