/* =========================================================
   FULL-SCREEN CAUSE SPLASH POPUP
========================================================= */

.cause-splash {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 28px;
    overflow: hidden;
    color: #071b12;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.36s ease;
}

.cause-splash.is-visible {
    opacity: 1;
    pointer-events: auto;
}

.cause-splash.is-closing {
    opacity: 0;
    pointer-events: none;
}

.cause-splash-bg {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(255,255,255,0.96), rgba(255,255,255,0.64), rgba(255,255,255,0.88)),
        url('../imgs/page-sjm.png') center / cover no-repeat;
    filter: saturate(1.25) contrast(1.05);
    transform: scale(1.04);
}

.cause-splash-glow {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 28% 28%, rgba(31, 255, 113, 0.30), transparent 28%),
        radial-gradient(circle at 78% 72%, rgba(114, 240, 188, 0.24), transparent 34%),
        linear-gradient(180deg, rgba(255,255,255,0.18), rgba(6,19,15,0.20));
}


/* =========================================================
   SHARED CARD STYLES
========================================================= */

.cause-splash-card {
    position: relative;
    width: min(1120px, 100%);
    max-height: calc(100vh - 56px);
    overflow: auto;
    padding: clamp(28px, 5vw, 58px);
    border-radius: 34px;
    background:
        linear-gradient(135deg, rgba(255,255,255,0.94), rgba(246,255,250,0.86));
    border: 1px solid rgba(8, 20, 17, 0.12);
    box-shadow: 0 40px 120px rgba(0, 0, 0, 0.38);
    backdrop-filter: blur(16px);
}

.cause-splash-card::before {
    content: "";
    position: absolute;
    inset: 14px;
    border-radius: 26px;
    border: 1px solid rgba(23, 107, 62, 0.16);
    pointer-events: none;
}

.cause-splash.is-visible .cause-splash-card {
    animation: splashIn 0.45s ease-out;
}

.cause-splash-close {
    position: absolute;
    top: 18px;
    right: 22px;
    z-index: 4;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(7, 27, 18, 0.12);
    border-radius: 999px;
    background: rgba(255,255,255,0.72);
    color: #071b12;
    font-size: 34px;
    line-height: 38px;
    cursor: pointer;
}

.cause-splash-pill {
    display: inline-flex;
    align-items: center;
    margin-bottom: 22px;
    padding: 10px 16px;
    border-radius: 999px;
    background: #071b12;
    color: #38ff62;
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    box-shadow: 0 0 36px rgba(56, 255, 98, 0.24);
}

.cause-splash-kicker {
    display: block;
    margin-bottom: 14px;
    color: #176b3e;
    font-size: 0.88rem;
    font-weight: 900;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.cause-splash h1 {
    margin: 0 0 22px;
    font-family: 'diner-obeseregular', 'Inter', sans-serif;
    font-size: clamp(4.2rem, 10vw, 9.5rem);
    line-height: 0.78;
    letter-spacing: 0.04em;
    color: #071b12;
    text-shadow: 0 0 26px rgba(56, 255, 98, 0.25);
}

.cause-splash h1 span {
    color: #159447;
}

.cause-splash-lead {
    max-width: 740px;
    margin: 0 0 18px;
    color: #0f4a2e;
    font-size: clamp(1.35rem, 3vw, 2.35rem);
    line-height: 1.12;
    font-weight: 900;
}

.cause-splash-body {
    max-width: 700px;
    margin: 0;
    color: #315743;
    font-size: 1.05rem;
    line-height: 1.7;
}


/* =========================================================
   POPUP 1 DESKTOP
========================================================= */

.cause-splash-layout {
    display: grid;
    grid-template-columns: 1.35fr 0.65fr;
    gap: clamp(24px, 5vw, 58px);
    align-items: center;
}

.cause-splash-impact {
    display: grid;
    gap: 14px;
}

.cause-splash-stat {
    padding: 20px;
    border-radius: 22px;
    background: rgba(255,255,255,0.72);
    border: 1px solid rgba(12, 28, 23, 0.10);
    box-shadow: 0 18px 42px rgba(0,0,0,0.08);
}

.cause-splash-stat-main {
    background: linear-gradient(135deg, rgba(56,255,98,0.18), rgba(255,255,255,0.82));
}

.cause-splash-stat span {
    display: block;
    margin-bottom: 8px;
    color: #45695d;
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.cause-splash-stat strong {
    display: block;
    color: #071b12;
    font-size: clamp(2rem, 4vw, 3.4rem);
    line-height: 1;
}

.cause-splash-equation {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
    margin: 34px auto 26px;
    color: #071b12;
    font-weight: 950;
    font-size: clamp(1.4rem, 3.4vw, 3.2rem);
}

.cause-splash-equation span {
    padding: 14px 22px;
    border-radius: 18px;
    background: rgba(56, 255, 98, 0.16);
    border: 1px solid rgba(15, 61, 38, 0.14);
}

.cause-splash-equation b {
    color: #159447;
}


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

.cause-splash-actions {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.cause-splash-btn,
.cause-splash-enter {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 24px;
    border-radius: 999px;
    font-size: 1rem;
    font-weight: 900;
    cursor: pointer;
    transition: 180ms ease;
}

.cause-splash-btn:hover,
.cause-splash-enter:hover {
    transform: translateY(-2px);
}

.cause-splash-btn-primary {
    background: #159447;
    color: #fff;
    box-shadow: 0 0 32px rgba(21, 148, 71, 0.36);
}

.cause-splash-btn-secondary {
    background: #071b12;
    color: #38ff62;
}

.cause-splash-enter {
    border: 2px solid rgba(7, 27, 18, 0.20);
    background: rgba(255,255,255,0.48);
    color: #0f4a2e;
}

.short-btns .cause-splash-btn,
.short-btns .cause-splash-enter {
    width: auto;
}


/* =========================================================
   POPUP 2 DESKTOP - BROCHURE
========================================================= */

.cause-splash-card-brochure {
    max-width: 1120px;
    width: calc(100% - 48px);
    max-height: 88vh;
    padding: 42px 52px 38px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.cause-brochure-layout {
    display: grid;
    grid-template-columns: 1fr 0.95fr;
    gap: 40px;
    align-items: center;
}

.cause-brochure-main {
    position: relative;
    z-index: 2;
    animation: fadeSlideUp 0.6s ease-out forwards;
}

.cause-brochure-title {
    margin: 6px 0 16px;
    font-family: 'diner-obeseregular', Impact, sans-serif;
    font-size: clamp(72px, 8vw, 118px);
    line-height: 0.78;
    letter-spacing: 2px;
    color: #061b10;
}

.cause-brochure-title span {
    display: block;
}

.cause-brochure-title span:nth-child(3) {
    color: #159849;
}

.cause-brochure-lead {
    max-width: 600px;
    margin: 0 0 12px;
    font-size: clamp(24px, 2.6vw, 36px);
    line-height: 1.1;
    font-weight: 900;
    color: #0f4a2e;
}

.cause-brochure-main .cause-splash-body {
    max-width: 560px;
    margin-bottom: 22px;
    font-size: 15px;
    line-height: 1.55;
}

.cause-brochure-impact {
    display: inline-grid;
    grid-template-columns: auto auto auto;
    gap: 14px;
    align-items: center;
    margin-bottom: 26px;
}

.cause-brochure-impact span {
    padding: 14px 20px;
    border-radius: 18px;
    background: rgba(212, 255, 224, 0.72);
    border: 1px solid rgba(21, 160, 76, 0.18);
    font-size: clamp(22px, 2.5vw, 32px);
    font-weight: 900;
}

.cause-brochure-impact b {
    color: #14964c;
    font-size: 30px;
}

.cause-brochure-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    max-width: 560px;
}

.cause-brochure-actions .cause-splash-enter {
    grid-column: 1 / -1;
}

.cause-brochure-actions .cause-splash-btn,
.cause-brochure-actions .cause-splash-enter {
    width: 100%;
    min-height: 54px;
    font-size: 15px;
}

.cause-brochure-visuals {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 430px;
}

.cause-brochure-record {
    position: absolute;
    left: 0;
    bottom: 20px;
    width: 240px;
    transform: rotate(-2deg) translateY(20px);
    animation: slideInLeft 0.7s ease-out forwards;
}

.cause-brochure-shirt {
    position: absolute;
    right: 0;
    top: 0;
    width: 320px;
    transform: rotate(2deg) translateY(-10px);
    animation: slideInRight 0.7s ease-out forwards;
}

.cause-brochure-record img,
.cause-brochure-shirt img {
    width: 100%;
    object-fit: contain;
    filter: drop-shadow(0 22px 30px rgba(0,0,0,0.25));
}

.cause-brochure-record img {
    border-radius: 8px;
}

.cause-brochure-record span,
.cause-brochure-shirt span {
    display: block;
    margin-bottom: 10px;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.15em;
    color: #2e6f58;
    text-transform: uppercase;
}

.cause-brochure-visuals::before {
    content: "WEAR THE VOICE";
    position: absolute;
    right: 0;
    bottom: 0;
    font-family: 'diner-obeseregular', Impact, sans-serif;
    font-size: 70px;
    letter-spacing: 4px;
    color: rgba(21, 152, 73, 0.08);
}


/* =========================================================
   DESKTOP / MOBILE ARTICLE SWITCH
========================================================= */

.cause-splash-desktop {
    display: block;
}

.cause-splash-mobile {
    display: none !important;
}


/* =========================================================
   SIMPLE MOBILE POPUPS
========================================================= */

@media (max-width: 720px) {
    .cause-splash {
        padding: 14px;
        align-items: center;
    }

    .cause-splash-desktop {
        display: none !important;
    }

    .cause-splash-mobile {
        display: block !important;
        width: 100%;
        max-height: calc(100vh - 28px);
        padding: 28px 22px;
        overflow: hidden;
        text-align: center;
        border-radius: 24px;
    }

    .cause-splash-mobile::before {
        inset: 10px;
        border-radius: 18px;
    }

    .cause-splash-close {
        top: 12px;
        right: 12px;
        width: 42px;
        height: 42px;
        font-size: 32px;
        line-height: 36px;
    }

    .cause-splash-mobile .cause-splash-pill {
        max-width: calc(100% - 52px);
        justify-content: center;
        margin-bottom: 18px;
        padding: 10px 14px;
        font-size: 0.66rem;
        line-height: 1.3;
        text-align: center;
    }

    .cause-splash-mobile .cause-splash-kicker {
        margin-bottom: 12px;
        font-size: 0.72rem;
        line-height: 1.35;
        letter-spacing: 0.11em;
    }

    .cause-splash-mobile h1,
    .cause-splash-mobile .cause-brochure-title {
        margin: 0 0 16px;
        font-size: clamp(3rem, 17vw, 5rem);
        line-height: 0.82;
        letter-spacing: 1px;
    }

    .cause-splash-mobile .cause-splash-lead {
        margin: 0 auto 18px;
        font-size: 1.35rem;
        line-height: 1.12;
    }

    .cause-splash-mobile-stat {
        margin: 0 auto 20px;
        padding: 18px;
        border-radius: 20px;
        background: rgba(212, 255, 224, 0.72);
        border: 1px solid rgba(21, 160, 76, 0.18);
    }

    .cause-splash-mobile-stat strong {
        display: block;
        color: #071b12;
        font-size: 2.4rem;
        line-height: 1;
    }

    .cause-splash-mobile-stat span {
        display: block;
        margin-top: 8px;
        color: #315743;
        font-weight: 800;
    }

    .cause-splash-mobile-products {
        display: grid;
        grid-template-columns: 0.8fr 1fr;
        gap: 12px;
        align-items: center;
        margin: 0 auto 20px;
        max-width: 320px;
    }

    .cause-splash-mobile-products img {
        width: 100%;
        max-height: 150px;
        object-fit: contain;
        filter: drop-shadow(0 16px 20px rgba(0,0,0,0.18));
    }

    .cause-splash-mobile .cause-splash-actions {
        display: grid;
        grid-template-columns: 1fr;
        gap: 12px;
        margin-top: 0;
    }

    .cause-splash-mobile .cause-splash-btn,
    .cause-splash-mobile .cause-splash-enter {
        width: 100%;
        min-height: 52px;
        font-size: 0.95rem;
    }
}


/* =========================================================
   ANIMATIONS
========================================================= */

@keyframes splashIn {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.96);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

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

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-40px) rotate(-2deg);
    }
    to {
        opacity: 1;
        transform: translateX(0) rotate(-2deg);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(40px) rotate(2deg);
    }
    to {
        opacity: 1;
        transform: translateX(0) rotate(2deg);
    }
}