/* =========================================================
   VARIABLES
========================================================= */

:root {
    --primary: #941b28;
    --primary-dark: #74131d;
    --primary-light: #b42636;

    --black: #101214;
    --dark: #181b1e;

    --text: #25282b;
    --text-light: #656a70;

    --white: #ffffff;
    --off-white: #f8f7f4;
    --soft: #f1f0ec;

    --border: #dfdfdc;

    --gold: #d6a64d;

    --container: 1180px;

    --radius-small: 8px;
    --radius: 16px;
    --radius-large: 26px;

    --shadow:
        0 18px 60px rgba(0, 0, 0, 0.10);
}


/* =========================================================
   RESET
========================================================= */

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


html {
    scroll-behavior: smooth;
}


body {
    font-family: "Inter", sans-serif;
    color: var(--text);
    background: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}


img {
    width: 100%;
    max-width: 100%;
    display: block;
}


button,
input,
textarea,
select {
    font: inherit;
}


button {
    cursor: pointer;
}


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


h1,
h2,
h3,
h4 {
    line-height: 1.08;
}


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


/* =========================================================
   GENERAL
========================================================= */

.section {
    padding: 110px 0;
}


.section-soft {
    background: var(--off-white);
}


.section-dark {
    background: var(--dark);
    color: var(--white);
}


.section-heading {
    max-width: 720px;
    margin-bottom: 55px;
}


.section-heading.centered {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}


.section-heading h2,
.foundation-content h2,
.fundraising-copy h2 {
    font-family: "Playfair Display", serif;
    font-size: clamp(2.5rem, 5vw, 4.3rem);
    letter-spacing: -0.03em;
    margin: 14px 0 20px;
}


.section-heading h2 span,
.foundation-content h2 span,
.fundraising-copy h2 span {
    color: var(--primary);
}


.section-heading p,
.foundation-content p,
.fundraising-copy p {
    font-size: 1.05rem;
    color: var(--text-light);
}


.dark-heading p {
    color: rgba(255, 255, 255, 0.68);
}


.dark-heading h2 span {
    color: #ffbdc4;
}


.eyebrow {
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-size: 0.72rem;
    font-weight: 800;
    color: var(--primary);
}


.eyebrow-light {
    color: #ffd4d8;
}


/* =========================================================
   BUTTONS
========================================================= */

.btn {
    min-height: 48px;
    padding: 0 22px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border-radius: 8px;
    border: 1px solid transparent;

    font-weight: 700;
    font-size: 0.92rem;

    transition:
        background 0.25s ease,
        transform 0.25s ease,
        border 0.25s ease;
}


.btn:hover {
    transform: translateY(-2px);
}


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


.btn-primary:hover {
    background: var(--primary-light);
}


.btn-large {
    min-height: 56px;
    padding: 0 30px;
}


.btn-glass {
    background: rgba(255, 255, 255, 0.10);
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.40);
    backdrop-filter: blur(12px);
}


.btn-glass:hover {
    background: rgba(255, 255, 255, 0.18);
}


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


.btn-outline-dark {
    background: transparent;
    border-color: #c7c7c7;
    color: var(--text);
}


.btn-full {
    width: 100%;
}


/* =========================================================
   HEADER
========================================================= */

.header {
    width: 100%;
    height: 82px;

    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;

    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(16px);

    border-bottom: 1px solid rgba(0, 0, 0, 0.06);

    transition: box-shadow 0.3s ease;
}


.header.scrolled {
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.09);
}


.header-inner {
    height: 100%;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 25px;
}


.brand {
    display: flex;
    align-items: center;
    gap: 12px;
}


.brand-logo {
    width: 46px;
    height: 46px;

    object-fit: contain;
}


.brand-text {
    display: flex;
    flex-direction: column;
}


.brand-text strong {
    font-size: 0.88rem;
}


.brand-text span {
    color: var(--text-light);
    font-size: 0.68rem;
}


.desktop-nav {
    margin-left: auto;

    display: flex;
    align-items: center;
    gap: 28px;
}


.desktop-nav a {
    font-size: 0.84rem;
    font-weight: 600;
    color: #4b5055;
}


.desktop-nav a:hover {
    color: var(--primary);
}


.mobile-menu-button {
    display: none;

    width: 44px;
    height: 44px;

    border: 0;
    background: transparent;
}


.mobile-menu-button span {
    display: block;

    width: 25px;
    height: 2px;

    background: var(--black);

    margin: 5px auto;
}


.mobile-menu {
    display: none;
}


/* =========================================================
   HERO
========================================================= */

.hero {
    min-height: 820px;

    position: relative;

    display: flex;
    align-items: center;

    color: var(--white);

    overflow: hidden;
}


.hero-background,
.hero-overlay {
    position: absolute;
    inset: 0;
}


.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


.hero-overlay {
    background:
        linear-gradient(
            90deg,
            rgba(7, 8, 9, 0.93) 0%,
            rgba(7, 8, 9, 0.78) 45%,
            rgba(7, 8, 9, 0.28) 75%,
            rgba(7, 8, 9, 0.35) 100%
        );
}


.hero-content {
    position: relative;
    z-index: 2;

    padding-top: 100px;
}


.hero-copy {
    max-width: 740px;
}


.emergency-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    color: #ffced3;
}


.pulse-dot {
    width: 9px;
    height: 9px;

    border-radius: 50%;
    background: #ff4f61;

    box-shadow: 0 0 0 0 rgba(255, 79, 97, 0.5);

    animation: pulse 1.7s infinite;
}


@keyframes pulse {

    70% {
        box-shadow: 0 0 0 10px rgba(255, 79, 97, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 79, 97, 0);
    }

}


.hero h1 {
    font-family: "Playfair Display", serif;

    font-size: clamp(4rem, 8vw, 7.4rem);
    letter-spacing: -0.05em;

    margin: 18px 0 25px;
}


.hero h1 span {
    display: block;
    color: #ffc5cb;
}


.hero-lead {
    max-width: 670px;

    font-size: clamp(1.05rem, 2vw, 1.3rem);

    color: rgba(255, 255, 255, 0.86);
}


.hero-actions {
    display: flex;
    gap: 14px;

    margin-top: 38px;
}


.hero-trust {
    margin-top: 65px;

    display: flex;
    flex-wrap: wrap;
    gap: 45px;
}


.hero-trust div {
    display: flex;
    flex-direction: column;

    border-left: 1px solid rgba(255, 255, 255, 0.25);

    padding-left: 16px;
}


.hero-trust strong {
    font-size: 0.88rem;
}


.hero-trust span {
    font-size: 0.76rem;

    color: rgba(255, 255, 255, 0.6);
}


/* =========================================================
   EMERGENCY STRIP
========================================================= */

.emergency-strip {
    background: var(--primary);
    color: var(--white);
}


.emergency-strip-inner {
    min-height: 86px;

    display: flex;
    align-items: center;

    gap: 22px;
}


.emergency-icon {
    width: 42px;
    height: 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    flex: 0 0 auto;

    border-radius: 50%;

    background: rgba(255, 255, 255, 0.15);
}


.emergency-strip p {
    flex: 1;

    font-size: 0.9rem;
}


.emergency-strip a {
    font-weight: 700;
    white-space: nowrap;
}


/* =========================================================
   PHOTO GRID
========================================================= */

.photo-grid {
    display: grid;
    gap: 20px;
}


.photo-grid-main {
    grid-template-columns: 1.5fr 1fr;
}


.photo-card {
    height: 360px;

    position: relative;

    overflow: hidden;

    border-radius: var(--radius);

    cursor: zoom-in;

    background: #ddd;
}


.photo-card:first-child {
    height: 740px;

    grid-row: span 2;
}


.photo-card img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform 0.5s ease;
}


.photo-card:hover img {
    transform: scale(1.035);
}


.photo-card::after {
    content: "";

    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            0deg,
            rgba(0, 0, 0, 0.76) 0%,
            transparent 55%
        );
}


.photo-caption {
    position: absolute;

    left: 25px;
    right: 25px;
    bottom: 25px;

    z-index: 2;

    display: flex;

    gap: 15px;

    color: var(--white);
}


.photo-caption > span {
    font-size: 0.7rem;
    opacity: 0.7;
}


.photo-caption h3 {
    margin-bottom: 5px;
}


.photo-caption p {
    font-size: 0.82rem;

    color: rgba(255, 255, 255, 0.72);
}


/* =========================================================
   HELP CARDS
========================================================= */

.help-grid {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 20px;
}


.help-card {
    min-height: 330px;

    position: relative;

    background: var(--white);

    border: 1px solid var(--border);
    border-radius: var(--radius);

    padding: 30px;

    transition: transform 0.3s ease, box-shadow 0.3s ease;
}


.help-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}


.help-number {
    position: absolute;

    top: 22px;
    right: 22px;

    color: #bbb;
    font-size: 0.74rem;
}


.help-icon {
    width: 52px;
    height: 52px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 65px;

    border-radius: 50%;

    background: #f6e6e8;
    color: var(--primary);

    font-size: 1.2rem;
    font-weight: 800;
}


.help-card h3 {
    font-size: 1.2rem;

    margin-bottom: 15px;
}


.help-card p {
    font-size: 0.9rem;

    color: var(--text-light);
}


/* =========================================================
   DONATION SECTION
========================================================= */

.donation-section {
    position: relative;

    background:
        radial-gradient(
            circle at top right,
            #ad2434 0,
            transparent 35%
        ),
        var(--primary-dark);

    color: var(--white);
}


.donation-heading p {
    color: rgba(255, 255, 255, 0.72);
}


.donation-heading h2 span {
    color: #ffc6cc;
}


.donation-options {
    max-width: 930px;

    margin: 0 auto;

    display: grid;
    grid-template-columns: 1fr 1fr;

    gap: 24px;
}


.donation-card {
    position: relative;

    padding-top: 30px;

    background: var(--white);
    color: var(--text);

    border-radius: var(--radius-large);

    overflow: hidden;

    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.18);
}


.donation-card.featured {
    transform: scale(1.02);
}


.donation-badge {
    position: absolute;

    top: 0;
    left: 0;
    right: 0;

    min-height: 34px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: var(--primary);
    color: var(--white);

    text-align: center;
    text-transform: uppercase;

    font-size: 0.67rem;
    font-weight: 800;
    letter-spacing: 0.1em;
}


.local-badge {
    background: var(--black);
}


.donation-card-content {
    padding: 42px;
}


.donation-small {
    color: var(--primary);

    text-transform: uppercase;

    font-size: 0.69rem;
    font-weight: 800;
    letter-spacing: 0.1em;
}


.donation-card h3 {
    font-family: "Playfair Display", serif;

    margin: 12px 0 14px;

    font-size: 2rem;
}


.donation-card-content > p {
    color: var(--text-light);

    font-size: 0.92rem;
}


.check-list {
    list-style: none;

    margin: 30px 0;
}


.check-list li {
    display: flex;

    gap: 11px;

    margin: 12px 0;

    font-size: 0.86rem;
}


.check-list li span {
    color: var(--primary);
    font-weight: 800;
}


.donation-security {
    display: block;

    margin-top: 12px;

    text-align: center;

    color: #888;
    font-size: 0.7rem;
}


.qr-area {
    width: 400px;
    height: 400px;

    margin: 25px auto;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 10px;

    border: 1px solid var(--border);

    border-radius: 12px;
}


.qr-area img {
    width: 100%;
    height: 100%;

    object-fit: contain;
}


.payment-number {
    text-align: center;

    margin-bottom: 20px;
}


.payment-number span {
    display: block;

    color: #777;

    font-size: 0.72rem;

    margin-bottom: 5px;
}


.payment-number strong {
    display: block;

    font-size: 1.35rem;
}


.copy-button {
    margin-top: 8px;

    border: 0;
    background: transparent;

    color: var(--primary);

    font-weight: 700;
    font-size: 0.77rem;
}


/* =========================================================
   FUNDRAISING
========================================================= */

.fundraising-section {
    background: var(--off-white);
}


.fundraising-box {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;

    gap: 90px;

    align-items: center;
}


.fundraising-copy {
    max-width: 500px;
}


.fundraising-progress {
    background: var(--white);

    border-radius: var(--radius-large);

    padding: 45px;

    box-shadow: var(--shadow);
}


.fundraising-numbers {
    display: flex;
    justify-content: space-between;

    gap: 20px;
}


.fundraising-numbers div {
    display: flex;
    flex-direction: column;
}


.fundraising-numbers span {
    color: var(--text-light);

    font-size: 0.76rem;
}


.fundraising-numbers strong {
    font-size: 1.5rem;
}


.goal-text {
    text-align: right;
}


.progress-bar {
    width: 100%;
    height: 12px;

    margin: 30px 0 13px;

    overflow: hidden;

    border-radius: 30px;

    background: #e9e9e9;
}


.progress-bar-fill {
    width: 0;
    height: 100%;

    border-radius: inherit;

    background: var(--primary);

    transition: width 1.4s ease;
}


.progress-footer {
    display: flex;
    align-items: center;

    gap: 8px;
}


.progress-footer strong {
    color: var(--primary);

    font-size: 1rem;
}


.progress-footer span {
    color: var(--text-light);

    font-size: 0.78rem;
}


/* =========================================================
   PROCESS / TRANSPARENCY
========================================================= */

.process-grid {
    display: grid;

    grid-template-columns: repeat(5, 1fr);

    gap: 14px;
}


.process-card {
    min-height: 240px;

    padding: 28px;

    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 14px;

    background: rgba(255, 255, 255, 0.03);
}


.process-card > span {
    display: inline-block;

    margin-bottom: 70px;

    color: #ffb7bf;

    font-size: 0.71rem;
    font-weight: 800;
}


.process-card h3 {
    margin-bottom: 10px;
}


.process-card p {
    color: rgba(255, 255, 255, 0.6);

    font-size: 0.81rem;
}


.international-disclosure {
    max-width: 930px;

    margin: 55px auto 0;

    display: grid;
    grid-template-columns: 45px 1fr;

    gap: 22px;

    padding: 32px;

    background: rgba(255, 255, 255, 0.06);

    border: 1px solid rgba(255, 255, 255, 0.12);

    border-radius: var(--radius);
}


.disclosure-icon {
    width: 40px;
    height: 40px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: var(--primary);

    font-family: serif;
    font-weight: 700;
}


.international-disclosure h3 {
    margin-bottom: 12px;
}


.international-disclosure p {
    margin-bottom: 12px;

    color: rgba(255, 255, 255, 0.65);

    font-size: 0.85rem;
}


/* =========================================================
   UPDATES
========================================================= */

.update-card {
    margin-bottom: 38px;

    padding: 40px;

    border: 1px solid var(--border);
    border-radius: var(--radius-large);

    background: var(--white);
}


.update-header {
    display: flex;
    justify-content: space-between;

    gap: 30px;

    margin-bottom: 30px;
}


.update-label {
    display: inline-block;

    margin-bottom: 9px;

    color: var(--primary);

    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}


.update-header h3 {
    font-family: "Playfair Display", serif;

    font-size: 2rem;
}


.update-date {
    text-align: right;
}


.update-date span {
    display: block;

    font-size: 0.67rem;

    color: var(--text-light);
}


.update-date strong {
    font-size: 0.8rem;
}


.update-information {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 16px;

    margin-bottom: 28px;
}


.update-information div {
    padding: 14px 18px;

    background: var(--off-white);

    border-radius: 9px;
}


.update-information span {
    display: block;

    color: var(--text-light);

    font-size: 0.68rem;

    margin-bottom: 3px;
}


.update-information strong {
    font-size: 0.83rem;
}


.update-gallery {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 12px;
}


.update-gallery img {
    height: 260px;

    object-fit: cover;

    border-radius: 10px;

    cursor: zoom-in;
}


.update-description {
    max-width: 850px;

    margin-top: 24px;

    color: var(--text-light);

    font-size: 0.9rem;
}


/* =========================================================
   SHARE
========================================================= */

.share-section {
    padding: 75px 0;

    background: var(--primary);
    color: var(--white);
}


.share-inner {
    display: grid;

    grid-template-columns: 1fr auto;

    gap: 50px;

    align-items: center;
}


.share-inner h2 {
    max-width: 720px;

    margin-top: 10px;

    font-family: "Playfair Display", serif;

    font-size: clamp(2rem, 4vw, 3.3rem);
}


.share-inner h2 span {
    color: #ffc6cc;
}


.share-buttons {
    display: flex;

    gap: 8px;
}


.share-btn {
    min-height: 46px;

    padding: 0 18px;

    border-radius: 7px;

    border: 1px solid rgba(255, 255, 255, 0.35);

    background: transparent;
    color: var(--white);

    font-size: 0.78rem;
    font-weight: 700;
}


.share-btn:hover {
    background: rgba(255, 255, 255, 0.12);
}


/* =========================================================
   FOUNDATION
========================================================= */

.foundation-grid {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 80px;

    align-items: center;
}


.foundation-image img {
    height: 650px;

    object-fit: cover;

    border-radius: var(--radius-large);
}


.foundation-lead {
    font-size: 1.18rem !important;

    margin-bottom: 22px;
}


.foundation-content > p:not(.foundation-lead) {
    margin-bottom: 35px;
}


.foundation-facts {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    border-top: 1px solid var(--border);

    padding-top: 28px;
}


.foundation-facts div {
    display: flex;
    flex-direction: column;
}


.foundation-facts strong {
    font-family: "Playfair Display", serif;

    color: var(--primary);

    font-size: 2rem;
}


.foundation-facts span {
    color: var(--text-light);

    font-size: 0.7rem;
}


/* =========================================================
   FAQ
========================================================= */

.faq-container {
    max-width: 900px;
}


.faq-list {
    border-top: 1px solid var(--border);
}


.faq-item {
    border-bottom: 1px solid var(--border);
}


.faq-question {
    width: 100%;

    min-height: 84px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;

    border: 0;

    background: transparent;

    text-align: left;

    color: var(--text);

    font-weight: 700;
}


.faq-question strong {
    color: var(--primary);

    font-size: 1.4rem;

    transition: transform 0.3s ease;
}


.faq-answer {
    max-height: 0;

    overflow: hidden;

    transition: max-height 0.35s ease;
}


.faq-answer p {
    padding: 0 50px 25px 0;

    color: var(--text-light);

    font-size: 0.9rem;
}


.faq-item.active .faq-answer {
    max-height: 300px;
}


.faq-item.active .faq-question strong {
    transform: rotate(45deg);
}


/* =========================================================
   FINAL CTA
========================================================= */

.final-cta {
    padding: 115px 0;

    position: relative;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 80% 20%,
            #bc3444,
            transparent 35%
        ),
        #7d1721;

    color: var(--white);
}


.final-cta-inner {
    max-width: 900px;

    text-align: center;
}


.final-cta h2 {
    margin: 15px 0 20px;

    font-family: "Playfair Display", serif;

    font-size: clamp(2.6rem, 5vw, 5rem);
}


.final-cta h2 span {
    display: block;

    color: #ffc8ce;
}


.final-cta p {
    max-width: 700px;

    margin: 0 auto;

    color: rgba(255, 255, 255, 0.72);
}


.final-actions {
    margin-top: 36px;

    display: flex;
    justify-content: center;

    gap: 12px;
}


/* =========================================================
   FOOTER
========================================================= */

.footer {
    padding: 75px 0 105px;

    background: #0d0f11;
    color: var(--white);
}


.footer-grid {
    display: grid;

    grid-template-columns: 2fr 1fr 1fr 1fr;

    gap: 60px;

    padding-bottom: 55px;

    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}


.footer-brand img {
    width: 60px;

    margin-bottom: 18px;
}


.footer-brand h3 {
    margin-bottom: 10px;
}


.footer-brand p {
    max-width: 300px;

    color: rgba(255, 255, 255, 0.5);

    font-size: 0.81rem;
}


.footer-grid h4 {
    margin-bottom: 20px;

    font-size: 0.78rem;

    text-transform: uppercase;
    letter-spacing: 0.1em;
}


.footer-grid > div:not(.footer-brand) {
    display: flex;
    flex-direction: column;
}


.footer-grid a {
    margin: 5px 0;

    color: rgba(255, 255, 255, 0.55);

    font-size: 0.8rem;
}


.footer-grid a:hover {
    color: var(--white);
}


.footer-bottom {
    padding-top: 25px;

    display: flex;
    justify-content: space-between;

    color: rgba(255, 255, 255, 0.4);

    font-size: 0.7rem;
}


/* =========================================================
   STICKY DONATION
========================================================= */

.sticky-donation {
    position: fixed;

    left: 50%;
    bottom: 20px;

    z-index: 900;

    width: min(calc(100% - 30px), 650px);

    transform:
        translate(-50%, 130px);

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;

    padding: 12px 12px 12px 20px;

    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 14px;

    background: rgba(255, 255, 255, 0.96);

    backdrop-filter: blur(15px);

    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.18);

    transition: transform 0.4s ease;
}


.sticky-donation.visible {
    transform: translate(-50%, 0);
}


.sticky-donation > div {
    display: flex;
    flex-direction: column;
}


.sticky-donation strong {
    font-size: 0.82rem;
}


.sticky-donation span {
    color: var(--text-light);

    font-size: 0.68rem;
}


/* =========================================================
   LIGHTBOX
========================================================= */

.lightbox {
    position: fixed;

    inset: 0;

    z-index: 5000;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 35px;

    background: rgba(0, 0, 0, 0.92);

    opacity: 0;
    visibility: hidden;

    transition:
        opacity 0.3s ease,
        visibility 0.3s ease;
}


.lightbox.active {
    opacity: 1;
    visibility: visible;
}


.lightbox img {
    max-width: 1100px;
    max-height: 90vh;

    object-fit: contain;
}


.lightbox-close {
    position: absolute;

    top: 20px;
    right: 25px;

    width: 45px;
    height: 45px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 0;

    background: transparent;
    color: var(--white);

    font-size: 2.3rem;
}


/* =========================================================
   TOAST
========================================================= */

.toast {
    position: fixed;

    right: 25px;
    bottom: 25px;

    z-index: 6000;

    padding: 12px 20px;

    border-radius: 8px;

    background: var(--black);
    color: var(--white);

    font-size: 0.78rem;

    opacity: 0;

    transform: translateY(20px);

    pointer-events: none;

    transition:
        opacity 0.3s ease,
        transform 0.3s ease;
}


.toast.active {
    opacity: 1;

    transform: translateY(0);
}


/* =========================================================
   RESPONSIVE 1050
========================================================= */

@media (max-width: 1050px) {

    .desktop-nav {
        display: none;
    }


    .mobile-menu-button {
        display: block;
    }


    .header-donate {
        margin-left: auto;
    }


    .mobile-menu {
        position: absolute;

        top: 82px;
        left: 0;
        right: 0;

        padding: 20px;

        flex-direction: column;

        background: var(--white);

        border-top: 1px solid var(--border);

        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
    }


    .mobile-menu.active {
        display: flex;
    }


    .mobile-menu a {
        padding: 10px;
    }


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


    .process-grid {
        grid-template-columns: repeat(3, 1fr);
    }


    .fundraising-box {
        grid-template-columns: 1fr;

        gap: 45px;
    }


    .foundation-grid {
        gap: 45px;
    }


    .share-inner {
        grid-template-columns: 1fr;
    }


    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr;

        gap: 40px;
    }

}


/* =========================================================
   RESPONSIVE 800
========================================================= */

@media (max-width: 800px) {

    .section {
        padding: 80px 0;
    }


    .hero {
        min-height: 760px;
    }


    .hero-overlay {
        background:
            linear-gradient(
                90deg,
                rgba(7, 8, 9, 0.9),
                rgba(7, 8, 9, 0.6)
            );
    }


    .photo-grid-main {
        grid-template-columns: 1fr;
    }


    .photo-card,
    .photo-card:first-child {
        height: 440px;
    }


    .donation-options {
        grid-template-columns: 1fr;
    }


    .donation-card.featured {
        transform: none;
    }


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


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


    .foundation-image img {
        height: 500px;
    }


    .update-information {
        grid-template-columns: 1fr;
    }


    .update-gallery img {
        height: 200px;
    }


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

}


/* =========================================================
   RESPONSIVE 600
========================================================= */

@media (max-width: 600px) {

    .container {
        width: min(calc(100% - 30px), var(--container));
    }


    .header {
        height: 72px;
    }


    .brand-logo {
        width: 40px;
        height: 40px;
    }


    .brand-text span {
        display: none;
    }


    .header-donate {
        display: none;
    }


    .mobile-menu {
        top: 72px;
    }


    .hero {
        min-height: 780px;
    }


    .hero-content {
        padding-top: 80px;
    }


    .hero h1 {
        font-size: 3.75rem;
    }


    .hero-actions {
        flex-direction: column;
    }


    .hero-actions .btn {
        width: 100%;
    }


    .hero-trust {
        gap: 18px;
    }


    .hero-trust div {
        width: calc(50% - 10px);
    }


    .emergency-strip-inner {
        padding: 18px 0;

        align-items: flex-start;
    }


    .emergency-strip a {
        display: none;
    }


    .photo-card,
    .photo-card:first-child {
        height: 390px;
    }


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


    .donation-card-content {
        padding: 35px 25px;
    }


    .fundraising-progress {
        padding: 28px 22px;
    }


    .fundraising-numbers strong {
        font-size: 1.05rem;
    }


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


    .process-card {
        min-height: auto;
    }


    .process-card > span {
        margin-bottom: 35px;
    }


    .international-disclosure {
        grid-template-columns: 1fr;
    }


    .update-card {
        padding: 26px 20px;
    }


    .update-header {
        flex-direction: column;
    }


    .update-date {
        text-align: left;
    }


    .update-gallery {
        grid-template-columns: 1fr;
    }


    .update-gallery img {
        height: 290px;
    }


    .share-buttons {
        flex-wrap: wrap;
    }


    .foundation-image img {
        height: 430px;
    }


    .foundation-facts {
        gap: 12px;
    }


    .foundation-facts strong {
        font-size: 1.4rem;
    }


    .final-actions {
        flex-direction: column;
    }


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


    .footer-bottom {
        flex-direction: column;

        gap: 8px;
    }


    .sticky-donation {
        bottom: 10px;

        padding: 10px;
    }


    .sticky-donation span {
        display: none;
    }


    .sticky-donation .btn {
        min-height: 42px;
    }

}