/* =========================================================
   3AM FOUNDATION
   GLOBAL STYLESHEET
========================================================= */


/* =========================================================
   ROOT VARIABLES
========================================================= */

:root {

    /* Brand Colors */

    --orange: #f47b20;
    --orange-dark: #d9630d;
    --orange-light: #fff1e6;
    --orange-soft: #fff8f3;

    --black: #0b0b0b;
    --black-soft: #151515;

    --white: #ffffff;

    --grey-50: #fafafa;
    --grey-100: #f4f4f4;
    --grey-200: #e8e8e8;
    --grey-300: #d4d4d4;
    --grey-500: #737373;
    --grey-700: #404040;

    /* Typography */

    --font-heading: "Manrope", sans-serif;
    --font-body: "DM Sans", sans-serif;

    /* Layout */

    --container-width: 1240px;

    /* Radius */

    --radius-small: 8px;
    --radius-medium: 14px;
    --radius-large: 24px;

    /* Shadows */

    --shadow-small:
        0 4px 18px rgba(0, 0, 0, 0.06);

    --shadow-medium:
        0 12px 35px rgba(0, 0, 0, 0.10);

    --shadow-large:
        0 25px 70px rgba(0, 0, 0, 0.15);

    /* Transition */

    --transition-fast:
        0.2s ease;

    --transition:
        0.35s ease;

}


/* =========================================================
   RESET
========================================================= */

* {

    margin: 0;
    padding: 0;

    box-sizing: border-box;

}


html {

    scroll-behavior: smooth;

}


body {

    font-family: var(--font-body);

    background: var(--white);

    color: var(--black);

    line-height: 1.6;

    overflow-x: hidden;

}


body.menu-open {

    overflow: hidden;

}


img {

    max-width: 100%;

    display: block;

}


a {

    color: inherit;

    text-decoration: none;

}


button,
input,
textarea,
select {

    font: inherit;

}


button {

    border: none;

    cursor: pointer;

}


ul {

    list-style: none;

}


/* =========================================================
   GLOBAL CONTAINER
========================================================= */

.container {

    width: min(
        calc(100% - 40px),
        var(--container-width)
    );

    margin-inline: auto;

}


/* =========================================================
   TYPOGRAPHY
========================================================= */

h1,
h2,
h3,
h4,
h5,
h6 {

    font-family: var(--font-heading);

    line-height: 1.15;

    font-weight: 800;

}


p {

    color: var(--grey-700);

}


/* =========================================================
   PAGE LOADER
========================================================= */

.page-loader {

    position: fixed;

    inset: 0;

    z-index: 9999;

    display: flex;

    align-items: center;

    justify-content: center;

    background: var(--black);

    transition:
        opacity 0.6s ease,
        visibility 0.6s ease;

}


.page-loader.loaded {

    opacity: 0;

    visibility: hidden;

}


.loader-content {

    display: flex;

    flex-direction: column;

    align-items: center;

    gap: 14px;

    color: var(--white);

    font-family: var(--font-heading);

    font-size: 12px;

    letter-spacing: 3px;

    font-weight: 700;

}


.loader-symbol {

    width: 58px;

    height: 58px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background: var(--orange);

    color: var(--white);

    font-size: 25px;

    animation: loaderPulse 1.2s infinite ease-in-out;

}


/* =========================================================
   ANNOUNCEMENT BAR
========================================================= */

.announcement-bar {

    background: var(--black);

    color: var(--white);

    min-height: 38px;

    display: flex;

    align-items: center;

}


.announcement-inner {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;

}


.announcement-message {

    display: flex;

    align-items: center;

    gap: 9px;

    font-size: 12px;

    font-weight: 500;

}


.announcement-message i {

    color: var(--orange);

}


.announcement-link {

    display: flex;

    align-items: center;

    gap: 7px;

    color: var(--orange);

    font-size: 12px;

    font-weight: 700;

    text-transform: uppercase;

    letter-spacing: 0.5px;

    transition:
        color var(--transition-fast),
        gap var(--transition-fast);

}


.announcement-link:hover {

    color: var(--white);

    gap: 11px;

}


/* =========================================================
   HEADER
========================================================= */

.site-header {

    position: sticky;

    top: 0;

    z-index: 1000;

    background:
        rgba(255, 255, 255, 0.96);

    backdrop-filter:
        blur(15px);

    border-bottom:
        1px solid rgba(0, 0, 0, 0.06);

    transition:
        box-shadow var(--transition),
        background var(--transition);

}


.site-header.scrolled {

    box-shadow: var(--shadow-small);

}


/* =========================================================
   NAV CONTAINER
========================================================= */

.nav-container {

    min-height: 82px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 25px;

}


/* =========================================================
   BRAND
========================================================= */

.brand {

    display: inline-flex;

    align-items: center;

    gap: 11px;

    flex-shrink: 0;

}


.brand-mark {

    width: 44px;

    height: 44px;

    border-radius: 12px;

    display: flex;

    align-items: center;

    justify-content: center;


    font-size: 20px;


}


.brand-text {

    display: flex;

    flex-direction: column;

    line-height: 1;

}


.brand-text strong {

    font-family: var(--font-heading);

    font-size: 20px;

    font-weight: 800;

    letter-spacing: -0.5px;

}


.brand-text span {

    margin-top: 4px;

    color: var(--grey-500);

    font-size: 8px;

    letter-spacing: 2px;

    font-weight: 700;

}


/* =========================================================
   MAIN NAVIGATION
========================================================= */

.main-nav ul {

    display: flex;

    align-items: center;

    gap: 27px;

}


.nav-link {

    position: relative;

    display: inline-flex;

    align-items: center;

    min-height: 82px;

    color: var(--grey-700);

    font-size: 13px;

    font-weight: 600;

    transition:
        color var(--transition-fast);

}


.nav-link::after {

    content: "";

    position: absolute;

    left: 0;

    bottom: 0;

    width: 0;

    height: 3px;

    border-radius: 10px 10px 0 0;

    background: var(--orange);

    transition:
        width var(--transition);

}


.nav-link:hover,
.nav-link.active {

    color: var(--orange);

}


.nav-link:hover::after,
.nav-link.active::after {

    width: 100%;

}


/* =========================================================
   NAV ACTIONS
========================================================= */

.nav-actions {

    display: flex;

    align-items: center;

    gap: 10px;

}


.nav-request {

    display: inline-flex;

    align-items: center;

    gap: 7px;

    color: var(--black);

    font-size: 12px;

    font-weight: 700;

    white-space: nowrap;

    transition:
        color var(--transition-fast);

}


.nav-request i {

    color: var(--orange);

}


.nav-request:hover {

    color: var(--orange);

}


/* =========================================================
   BUTTON SYSTEM
========================================================= */

.btn {

    min-height: 46px;

    padding: 0 20px;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 9px;

    border-radius: 8px;

    font-family: var(--font-heading);

    font-size: 12px;

    font-weight: 800;

    transition:
        transform var(--transition-fast),
        background var(--transition-fast),
        color var(--transition-fast),
        box-shadow var(--transition-fast);

}


.btn:hover {

    transform: translateY(-2px);

}


.btn-orange {

    background: var(--orange);

    color: var(--white);

    box-shadow:
        0 8px 20px rgba(244, 123, 32, 0.20);

}


.btn-orange:hover {

    background: var(--orange-dark);

    box-shadow:
        0 12px 25px rgba(244, 123, 32, 0.28);

}


.btn-outline {

    background: transparent;

    color: var(--black);

    border: 1px solid var(--black);

}


.btn-outline:hover {

    background: var(--black);

    color: var(--white);

}


/* =========================================================
   MOBILE MENU BUTTON
========================================================= */

.mobile-menu-toggle {

    display: none;

    width: 44px;

    height: 44px;

    border-radius: 8px;

    background: var(--black);

    align-items: center;

    justify-content: center;

    flex-direction: column;

    gap: 5px;

}


.mobile-menu-toggle span {

    width: 20px;

    height: 2px;

    border-radius: 5px;

    background: var(--white);

    transition:
        transform var(--transition),
        opacity var(--transition);

}


.mobile-menu-toggle.active span:nth-child(1) {

    transform:
        translateY(7px)
        rotate(45deg);

}


.mobile-menu-toggle.active span:nth-child(2) {

    opacity: 0;

}


.mobile-menu-toggle.active span:nth-child(3) {

    transform:
        translateY(-7px)
        rotate(-45deg);

}


/* =========================================================
   MOBILE NAV OVERLAY
========================================================= */

.mobile-nav-overlay {

    position: fixed;

    inset: 0;

    z-index: 998;

    background:
        rgba(0, 0, 0, 0.55);

    opacity: 0;

    visibility: hidden;

    transition:
        opacity var(--transition),
        visibility var(--transition);

}


.mobile-nav-overlay.active {

    opacity: 1;

    visibility: visible;

}


/* =========================================================
   PART 1 PLACEHOLDER HERO
   This will be replaced/expanded in INDEX PART 2
========================================================= */

.page-placeholder {

    min-height: 620px;

    display: flex;

    align-items: center;

    position: relative;

    overflow: hidden;

    background:

        radial-gradient(
            circle at 85% 20%,
            rgba(244, 123, 32, 0.12),
            transparent 30%
        ),

        linear-gradient(
            135deg,
            var(--orange-soft),
            var(--white) 55%
        );

}


.page-placeholder::before {

    content: "";

    position: absolute;

    width: 500px;

    height: 500px;

    right: -180px;

    bottom: -220px;

    border-radius: 50%;

    background:
        rgba(244, 123, 32, 0.08);

}


.placeholder-content {

    position: relative;

    z-index: 2;

    max-width: 760px;

    padding: 90px 0;

}


.eyebrow {

    display: inline-flex;

    align-items: center;

    gap: 8px;

    margin-bottom: 20px;

    color: var(--orange-dark);

    font-family: var(--font-heading);

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 2px;

    text-transform: uppercase;

}


.eyebrow::before {

    content: "";

    width: 30px;

    height: 2px;

    background: var(--orange);

}


.placeholder-content h1 {

    max-width: 800px;

    margin-bottom: 22px;

    font-size:
        clamp(42px, 6vw, 76px);

    letter-spacing: -3px;

}


.placeholder-content h1 span {

    color: var(--orange);

}


.placeholder-content p {

    max-width: 650px;

    margin-bottom: 32px;

    font-size: 17px;

    line-height: 1.8;

}


.placeholder-actions {

    display: flex;

    align-items: center;

    flex-wrap: wrap;

    gap: 12px;

}


/* =========================================================
   FOOTER PLACEHOLDER
========================================================= */

.site-footer {

    background: var(--black);

    color: var(--white);

}


.footer-placeholder {

    min-height: 180px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 30px;

}


.footer-brand {

    display: flex;

    align-items: center;

    gap: 10px;

}


.footer-brand .brand-mark {

    width: 38px;

    height: 38px;

    font-size: 16px;

}


.footer-brand .brand-text strong {

    color: var(--white);

    font-size: 17px;

}


.footer-brand .brand-text span {

    color: #999;

}


.site-footer p {

    margin-top: 12px;

    color: #aaa;

    font-size: 12px;

}


.footer-copy {

    margin-top: 0 !important;

    text-align: right;

}


/* =========================================================
   LOADER ANIMATION
========================================================= */

@keyframes loaderPulse {

    0%,
    100% {

        transform: scale(1);

        box-shadow:
            0 0 0 0
            rgba(244, 123, 32, 0.4);

    }

    50% {

        transform: scale(1.08);

        box-shadow:
            0 0 0 15px
            rgba(244, 123, 32, 0);

    }

}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1100px) {

    .main-nav ul {

        gap: 17px;

    }


    .nav-request {

        display: none;

    }

}


@media (max-width: 900px) {

    .main-nav {

        position: fixed;

        top: 0;

        right: -100%;

        z-index: 999;

        width: min(360px, 88vw);

        height: 100vh;

        padding:
            110px 30px 40px;

        background: var(--white);

        box-shadow:
            -15px 0 50px
            rgba(0, 0, 0, 0.12);

        transition:
            right 0.4s ease;

        overflow-y: auto;

    }


    .main-nav.active {

        right: 0;

    }


    .main-nav ul {

        display: flex;

        flex-direction: column;

        align-items: stretch;

        gap: 0;

    }


    .nav-link {

        min-height: auto;

        padding: 17px 0;

        font-size: 15px;

        border-bottom:
            1px solid var(--grey-200);

    }


    .nav-link::after {

        display: none;

    }


    .nav-link.active {

        color: var(--orange);

    }


    .nav-actions {

        display: none;

    }


    .mobile-menu-toggle {

        display: flex;

        position: relative;

        z-index: 1001;

    }


    .placeholder-content {

        padding: 80px 0;

    }

}


@media (max-width: 600px) {

    .container {

        width: min(
            calc(100% - 28px),
            var(--container-width)
        );

    }


    .announcement-inner {

        justify-content: center;

    }


    .announcement-message span {

        display: none;

    }


    .announcement-link {

        font-size: 11px;

    }


    .nav-container {

        min-height: 72px;

    }


    .brand-mark {

        width: 40px;

        height: 40px;

        font-size: 18px;

    }


    .brand-text strong {

        font-size: 18px;

    }


    .page-placeholder {

        min-height: 650px;

    }


    .placeholder-content {

        padding: 70px 0;

    }


    .placeholder-content h1 {

        font-size: 43px;

        letter-spacing: -2px;

    }


    .placeholder-content p {

        font-size: 15px;

    }


    .placeholder-actions {

        flex-direction: column;

        align-items: stretch;

    }


    .placeholder-actions .btn {

        width: 100%;

    }


    .footer-placeholder {

        padding: 45px 0;

        flex-direction: column;

        align-items: flex-start;

    }


    .footer-copy {

        text-align: left;

    }

}


@media (max-width: 380px) {

    .placeholder-content h1 {

        font-size: 38px;

    }

}

/* =========================================================
   INDEX PART 2
   HERO SECTION
========================================================= */


/* =========================================================
   HERO WRAPPER
========================================================= */

.hero {

    position: relative;

    min-height: calc(100vh - 120px);

    min-height: 760px;

    display: flex;

    align-items: center;

    overflow: hidden;

    background: var(--black);

    color: var(--white);

}


/* =========================================================
   HERO BACKGROUND
========================================================= */

.hero-background {

    position: absolute;

    inset: 0;

    z-index: 0;

}


.hero-image {

    width: 100%;

    height: 100%;

    object-fit: cover;

    object-position: center;

    animation:
        heroImageZoom 12s
        ease-in-out infinite alternate;

}


/* =========================================================
   HERO OVERLAY
========================================================= */

.hero-overlay {

    position: absolute;

    inset: 0;

    z-index: 1;

    background:

        linear-gradient(
            90deg,
            rgba(0, 0, 0, 0.92) 0%,
            rgba(0, 0, 0, 0.78) 42%,
            rgba(0, 0, 0, 0.50) 72%,
            rgba(0, 0, 0, 0.70) 100%
        );

}


/* =========================================================
   HERO ORANGE GLOWS
========================================================= */

.hero-glow {

    position: absolute;

    z-index: 2;

    border-radius: 50%;

    pointer-events: none;

    filter: blur(20px);

}


.hero-glow-one {

    width: 420px;

    height: 420px;

    top: -220px;

    right: 5%;

    background:
        rgba(244, 123, 32, 0.16);

}


.hero-glow-two {

    width: 300px;

    height: 300px;

    bottom: -180px;

    left: 38%;

    background:
        rgba(244, 123, 32, 0.10);

}


/* =========================================================
   HERO CONTAINER
========================================================= */

.hero-container {

    position: relative;

    z-index: 5;

    width: min(
        calc(100% - 40px),
        var(--container-width)
    );

    min-height: 760px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 80px;

}


/* =========================================================
   HERO CONTENT
========================================================= */

.hero-content {

    width: min(720px, 100%);

    padding:
        80px 0;

}


.hero-eyebrow {

    display: flex;

    align-items: center;

    gap: 12px;

    margin-bottom: 22px;

    color: var(--orange);

    font-family: var(--font-heading);

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 2.4px;

    text-transform: uppercase;

    animation:
        heroFadeUp 0.8s
        0.15s both;

}


.eyebrow-line {

    width: 38px;

    height: 2px;

    flex-shrink: 0;

    background: var(--orange);

}


/* =========================================================
   HERO TITLE
========================================================= */

.hero-title {

    max-width: 850px;

    margin-bottom: 27px;

    color: var(--white);

    font-size:
        clamp(48px, 6.2vw, 82px);

    font-weight: 800;

    line-height: 1.03;

    letter-spacing: -4px;

    animation:
        heroFadeUp 0.9s
        0.3s both;

}


.hero-title span {

    display: block;

    color: var(--orange);

}


/* =========================================================
   HERO DESCRIPTION
========================================================= */

.hero-description {

    max-width: 660px;

    margin-bottom: 34px;

    color: rgba(255, 255, 255, 0.82);

    font-size: 16px;

    line-height: 1.85;

    animation:
        heroFadeUp 0.9s
        0.45s both;

}


/* =========================================================
   HERO ACTIONS
========================================================= */

.hero-actions {

    display: flex;

    align-items: center;

    flex-wrap: wrap;

    gap: 12px;

    animation:
        heroFadeUp 0.9s
        0.6s both;

}


.hero-primary-btn {

    min-height: 54px;

    padding-inline: 23px;

}


.hero-light-btn {

    min-height: 54px;

    color: var(--white);

    border:
        1px solid rgba(255, 255, 255, 0.35);

    background:
        rgba(255, 255, 255, 0.08);

    backdrop-filter: blur(8px);

}


.hero-light-btn:hover {

    color: var(--black);

    background: var(--white);

    border-color: var(--white);

}


/* =========================================================
   HERO TRUST MESSAGE
========================================================= */

.hero-trust {

    display: flex;

    align-items: center;

    gap: 12px;

    max-width: 500px;

    margin-top: 35px;

    padding-top: 24px;

    border-top:
        1px solid
        rgba(255, 255, 255, 0.14);

    animation:
        heroFadeUp 0.9s
        0.75s both;

}


.trust-icon {

    width: 40px;

    height: 40px;

    flex-shrink: 0;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background:
        rgba(244, 123, 32, 0.15);

    color: var(--orange);

    font-size: 16px;

}


.hero-trust strong {

    display: block;

    margin-bottom: 3px;

    color: var(--white);

    font-family: var(--font-heading);

    font-size: 12px;

}


.hero-trust span {

    display: block;

    color:
        rgba(255, 255, 255, 0.58);

    font-size: 11px;

}


/* =========================================================
   HERO SIDE CARD
========================================================= */

.hero-side-card {

    position: relative;

    width: 360px;

    flex-shrink: 0;

    animation:
        heroCardReveal 1s
        0.75s both;

}


/* =========================================================
   FLOATING BLOOD DROP
========================================================= */

.floating-blood-drop {

    position: absolute;

    top: -45px;

    right: -25px;

    z-index: 4;

}


.blood-drop-circle {

    width: 72px;

    height: 72px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background: var(--orange);

    color: var(--white);

    font-size: 26px;

    border:
        5px solid
        rgba(255, 255, 255, 0.15);

    box-shadow:
        0 15px 45px
        rgba(244, 123, 32, 0.35);

    animation:
        bloodDropFloat 3s
        ease-in-out infinite;

}


/* =========================================================
   IMPACT CARD
========================================================= */

.hero-impact-card {

    position: relative;

    padding: 35px;

    border:
        1px solid
        rgba(255, 255, 255, 0.15);

    border-radius: 20px;

    background:
        rgba(12, 12, 12, 0.76);

    backdrop-filter:
        blur(18px);

    box-shadow:
        0 30px 80px
        rgba(0, 0, 0, 0.35);

}


.impact-label {

    display: inline-block;

    margin-bottom: 17px;

    color: var(--orange);

    font-family: var(--font-heading);

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 2px;

}


.hero-impact-card h3 {

    max-width: 280px;

    color: var(--white);

    font-size: 25px;

    line-height: 1.3;

    letter-spacing: -1px;

}


.impact-divider {

    width: 100%;

    height: 1px;

    margin: 25px 0;

    background:
        rgba(255, 255, 255, 0.12);

}


/* =========================================================
   IMPACT MINI GRID
========================================================= */

.impact-mini-grid {

    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 10px;

}


.impact-mini-item {

    min-height: 95px;

    padding: 16px;

    display: flex;

    flex-direction: column;

    justify-content: space-between;

    border-radius: 12px;

    background:
        rgba(255, 255, 255, 0.055);

    transition:
        transform var(--transition),
        background var(--transition);

}


.impact-mini-item:hover {

    transform: translateY(-4px);

    background:
        rgba(244, 123, 32, 0.13);

}


.impact-mini-item i {

    color: var(--orange);

    font-size: 17px;

}


.impact-mini-item span {

    color:
        rgba(255, 255, 255, 0.72);

    font-family: var(--font-heading);

    font-size: 10px;

    font-weight: 700;

    line-height: 1.4;

}


/* =========================================================
   HERO SCROLL INDICATOR
========================================================= */

.hero-scroll {

    position: absolute;

    left: 50%;

    bottom: 25px;

    z-index: 10;

    transform:
        translateX(-50%);

    display: flex;

    flex-direction: column;

    align-items: center;

    gap: 7px;

    color:
        rgba(255, 255, 255, 0.55);

    font-family: var(--font-heading);

    font-size: 8px;

    font-weight: 800;

    letter-spacing: 2px;

    transition:
        color var(--transition);

}


.hero-scroll i {

    color: var(--orange);

    font-size: 12px;

    animation:
        scrollBounce 1.8s
        infinite;

}


.hero-scroll:hover {

    color: var(--white);

}


/* =========================================================
   HERO KEYFRAMES
========================================================= */

@keyframes heroFadeUp {

    from {

        opacity: 0;

        transform:
            translateY(30px);

    }

    to {

        opacity: 1;

        transform:
            translateY(0);

    }

}


@keyframes heroCardReveal {

    from {

        opacity: 0;

        transform:
            translateX(50px)
            scale(0.96);

    }

    to {

        opacity: 1;

        transform:
            translateX(0)
            scale(1);

    }

}


@keyframes heroImageZoom {

    from {

        transform: scale(1);

    }

    to {

        transform: scale(1.06);

    }

}


@keyframes bloodDropFloat {

    0%,
    100% {

        transform:
            translateY(0)
            rotate(0deg);

    }

    50% {

        transform:
            translateY(-10px)
            rotate(4deg);

    }

}


@keyframes scrollBounce {

    0%,
    100% {

        transform:
            translateY(0);

    }

    50% {

        transform:
            translateY(6px);

    }

}


/* =========================================================
   HERO RESPONSIVE — TABLET
========================================================= */

@media (max-width: 1050px) {

    .hero {

        min-height: 760px;

    }


    .hero-container {

        gap: 35px;

    }


    .hero-content {

        max-width: 600px;

    }


    .hero-title {

        font-size:
            clamp(45px, 6vw, 68px);

    }


    .hero-side-card {

        width: 320px;

    }


    .hero-impact-card {

        padding: 28px;

    }

}


/* =========================================================
   HERO RESPONSIVE — MOBILE
========================================================= */

@media (max-width: 900px) {

    .hero {

        min-height:
            calc(100svh - 110px);

        min-height: 720px;

    }


    .hero-container {

        min-height: 720px;

        display: flex;

        align-items: center;

    }


    .hero-overlay {

        background:

            linear-gradient(
                90deg,
                rgba(0, 0, 0, 0.91),
                rgba(0, 0, 0, 0.74)
            );

    }


    .hero-content {

        max-width: 720px;

    }


    .hero-side-card {

        display: none;

    }


    .hero-scroll {

        bottom: 18px;

    }

}


/* =========================================================
   HERO RESPONSIVE — SMALL MOBILE
========================================================= */

@media (max-width: 600px) {

    .hero {

        min-height:
            calc(100svh - 110px);

        min-height: 700px;

    }


    .hero-container {

        width:
            min(
                calc(100% - 28px),
                var(--container-width)
            );

        min-height: 700px;

    }


    .hero-content {

        padding:
            65px 0 75px;

    }


    .hero-eyebrow {

        margin-bottom: 17px;

        font-size: 8px;

        letter-spacing: 1.5px;

    }


    .eyebrow-line {

        width: 25px;

    }


    .hero-title {

        margin-bottom: 20px;

        font-size:
            clamp(42px, 13vw, 58px);

        letter-spacing: -2.8px;

        line-height: 1.02;

    }


    .hero-description {

        margin-bottom: 27px;

        font-size: 14px;

        line-height: 1.75;

    }


    .hero-actions {

        width: 100%;

        flex-direction: column;

        align-items: stretch;

    }


    .hero-actions .btn {

        width: 100%;

    }


    .hero-trust {

        margin-top: 28px;

        padding-top: 20px;

    }


    .hero-scroll {

        display: none;

    }

}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    .hero-image,
    .blood-drop-circle,
    .hero-scroll i {

        animation: none;

    }


    .hero-content,
    .hero-side-card,
    .hero-eyebrow,
    .hero-description,
    .hero-actions,
    .hero-trust {

        animation: none;

    }

}


/* =========================================================
   INDEX PART 3
   IMPACT STATISTICS
========================================================= */


/* =========================================================
   IMPACT SECTION
========================================================= */

.impact-section {

    position: relative;

    padding: 115px 0;

    background: var(--white);

    overflow: hidden;

}


/* =========================================================
   DECORATIVE BACKGROUND
========================================================= */

.impact-section::before {

    content: "";

    position: absolute;

    width: 450px;

    height: 450px;

    right: -250px;

    top: -180px;

    border-radius: 50%;

    background:
        rgba(244, 123, 32, 0.055);

    pointer-events: none;

}


.impact-section::after {

    content: "";

    position: absolute;

    width: 250px;

    height: 250px;

    left: -150px;

    bottom: -120px;

    border-radius: 50%;

    border:
        1px solid
        rgba(244, 123, 32, 0.12);

    pointer-events: none;

}


/* =========================================================
   IMPACT HEADING
========================================================= */

.impact-heading {

    position: relative;

    z-index: 2;

    max-width: 720px;

    margin-bottom: 55px;

}


.section-eyebrow {

    display: flex;

    align-items: center;

    gap: 10px;

    margin-bottom: 17px;

    color: var(--orange);

    font-family: var(--font-heading);

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 2.3px;

}


.section-eyebrow span {

    width: 32px;

    height: 2px;

    background: var(--orange);

}


.impact-heading h2 {

    margin-bottom: 18px;

    color: var(--black);

    font-size:
        clamp(36px, 5vw, 58px);

    letter-spacing: -2.5px;

    line-height: 1.08;

}


.impact-heading h2 strong {

    color: var(--orange);

}


.impact-heading p {

    max-width: 650px;

    color: var(--grey-500);

    font-size: 15px;

    line-height: 1.8;

}


/* =========================================================
   IMPACT GRID
========================================================= */

.impact-grid {

    position: relative;

    z-index: 2;

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 1px;

    overflow: hidden;

    border:
        1px solid
        var(--grey-200);

    border-radius: 20px;

    background: var(--grey-200);

    box-shadow: var(--shadow-small);

}


/* =========================================================
   IMPACT STAT CARD
========================================================= */

.impact-stat {

    position: relative;

    min-height: 285px;

    padding: 32px 28px;

    background: var(--white);

    transition:
        transform var(--transition),
        background var(--transition);

}


.impact-stat::before {

    content: "";

    position: absolute;

    left: 0;

    top: 0;

    width: 0;

    height: 3px;

    background: var(--orange);

    transition:
        width 0.4s ease;

}


.impact-stat:hover {

    background:
        var(--orange-soft);

    transform:
        translateY(-5px);

    z-index: 3;

}


.impact-stat:hover::before {

    width: 100%;

}


/* =========================================================
   IMPACT ICON
========================================================= */

.impact-icon {

    width: 48px;

    height: 48px;

    display: flex;

    align-items: center;

    justify-content: center;

    margin-bottom: 25px;

    border-radius: 12px;

    background: var(--orange-light);

    color: var(--orange);

    font-size: 18px;

    transition:
        transform var(--transition),
        background var(--transition),
        color var(--transition);

}


.impact-stat:hover .impact-icon {

    transform:
        rotate(-5deg)
        scale(1.08);

    background: var(--orange);

    color: var(--white);

}


/* =========================================================
   IMPACT NUMBER
========================================================= */

.impact-number {

    display: flex;

    align-items: baseline;

    margin-bottom: 8px;

    color: var(--black);

    font-family: var(--font-heading);

    font-size:
        clamp(38px, 4vw, 52px);

    font-weight: 800;

    line-height: 1;

    letter-spacing: -2px;

}


.counter-plus {

    margin-left: 2px;

    color: var(--orange);

    font-size: 25px;

    font-weight: 800;

}


/* =========================================================
   IMPACT TITLE
========================================================= */

.impact-stat h3 {

    margin-bottom: 8px;

    color: var(--black);

    font-size: 14px;

    font-weight: 800;

}


.impact-stat p {

    max-width: 210px;

    color: var(--grey-500);

    font-size: 11px;

    line-height: 1.7;

}


/* =========================================================
   EMERGENCY MESSAGE
========================================================= */

.impact-emergency {

    position: relative;

    z-index: 2;

    margin-top: 35px;

    padding: 27px 30px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 35px;

    border-radius: 18px;

    background: var(--black);

    color: var(--white);

    overflow: hidden;

}


.impact-emergency::before {

    content: "";

    position: absolute;

    width: 240px;

    height: 240px;

    right: -100px;

    top: -120px;

    border-radius: 50%;

    background:
        rgba(244, 123, 32, 0.14);

}


.impact-emergency::after {

    content: "";

    position: absolute;

    width: 2px;

    height: 100%;

    left: 0;

    top: 0;

    background: var(--orange);

}


.emergency-left {

    position: relative;

    z-index: 2;

    display: flex;

    align-items: center;

    gap: 15px;

}


.emergency-pulse {

    width: 52px;

    height: 52px;

    flex-shrink: 0;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background:
        rgba(244, 123, 32, 0.13);

    color: var(--orange);

    font-size: 18px;

    animation:
        emergencyPulse 2s
        infinite;

}


.emergency-label {

    display: block;

    margin-bottom: 5px;

    color: var(--orange);

    font-family: var(--font-heading);

    font-size: 8px;

    font-weight: 800;

    letter-spacing: 2px;

}


.emergency-left h3 {

    color: var(--white);

    font-size: 19px;

    line-height: 1.3;

}


.emergency-right {

    position: relative;

    z-index: 2;

    display: flex;

    align-items: center;

    gap: 25px;

}


.emergency-right p {

    max-width: 370px;

    color:
        rgba(255, 255, 255, 0.58);

    font-size: 11px;

    line-height: 1.7;

}


.emergency-link {

    display: inline-flex;

    align-items: center;

    gap: 9px;

    flex-shrink: 0;

    color: var(--orange);

    font-family: var(--font-heading);

    font-size: 11px;

    font-weight: 800;

    white-space: nowrap;

    transition:
        gap var(--transition-fast),
        color var(--transition-fast);

}


.emergency-link:hover {

    gap: 13px;

    color: var(--white);

}


/* =========================================================
   REVEAL ANIMATION
========================================================= */

.reveal {

    opacity: 0;

    transform:
        translateY(30px);

    transition:
        opacity 0.8s ease,
        transform 0.8s ease;

}


.reveal.visible {

    opacity: 1;

    transform:
        translateY(0);

}


/* =========================================================
   STAT CARD STAGGER
========================================================= */

.impact-stat:nth-child(1) {

    transition-delay: 0.05s;

}


.impact-stat:nth-child(2) {

    transition-delay: 0.12s;

}


.impact-stat:nth-child(3) {

    transition-delay: 0.19s;

}


.impact-stat:nth-child(4) {

    transition-delay: 0.26s;

}


/* =========================================================
   EMERGENCY PULSE
========================================================= */

@keyframes emergencyPulse {

    0% {

        box-shadow:
            0 0 0 0
            rgba(244, 123, 32, 0.30);

    }

    70% {

        box-shadow:
            0 0 0 12px
            rgba(244, 123, 32, 0);

    }

    100% {

        box-shadow:
            0 0 0 0
            rgba(244, 123, 32, 0);

    }

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 950px) {

    .impact-section {

        padding: 90px 0;

    }


    .impact-grid {

        grid-template-columns:
            repeat(2, 1fr);

    }


    .impact-stat {

        min-height: 250px;

    }


    .impact-emergency {

        align-items: flex-start;

        flex-direction: column;

        gap: 25px;

    }


    .emergency-right {

        width: 100%;

        justify-content: space-between;

    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    .impact-section {

        padding: 75px 0;

    }


    .impact-heading {

        margin-bottom: 35px;

    }


    .impact-heading h2 {

        font-size: 37px;

        letter-spacing: -1.8px;

    }


    .impact-heading p {

        font-size: 14px;

    }


    .impact-grid {

        grid-template-columns: 1fr;

        border-radius: 16px;

    }


    .impact-stat {

        min-height: auto;

        padding: 27px 24px;

    }


    .impact-icon {

        margin-bottom: 20px;

    }


    .impact-number {

        font-size: 45px;

    }


    .impact-emergency {

        padding: 25px 23px;

        border-radius: 15px;

    }


    .emergency-left {

        align-items: flex-start;

    }


    .emergency-left h3 {

        font-size: 17px;

    }


    .emergency-right {

        align-items: flex-start;

        flex-direction: column;

        gap: 18px;

    }


    .emergency-right p {

        max-width: none;

    }

}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    .reveal {

        opacity: 1;

        transform: none;

        transition: none;

    }


    .emergency-pulse {

        animation: none;

    }

}


/* =========================================================
   INDEX PART 4
   THE PROBLEM / WHY IT MATTERS
========================================================= */


/* =========================================================
   SECTION
========================================================= */

.problem-section {

    position: relative;

    padding: 120px 0;

    background: var(--black);

    color: var(--white);

    overflow: hidden;

}


/* =========================================================
   BACKGROUND DETAILS
========================================================= */

.problem-section::before {

    content: "";

    position: absolute;

    width: 600px;

    height: 600px;

    right: -330px;

    top: -250px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(244, 123, 32, 0.15),
            rgba(244, 123, 32, 0) 70%
        );

    pointer-events: none;

}


.problem-section::after {

    content: "";

    position: absolute;

    width: 400px;

    height: 400px;

    left: -250px;

    bottom: -220px;

    border-radius: 50%;

    border:
        1px solid
        rgba(244, 123, 32, 0.10);

    pointer-events: none;

}


/* =========================================================
   HEADER
========================================================= */

.problem-header {

    position: relative;

    z-index: 2;

    display: grid;

    grid-template-columns:
        1.2fr 0.8fr;

    gap: 90px;

    align-items: end;

    margin-bottom: 60px;

}


.problem-heading h2 {

    max-width: 760px;

    color: var(--white);

    font-size:
        clamp(40px, 5vw, 64px);

    line-height: 1.06;

    letter-spacing: -3px;

}


.problem-heading h2 strong {

    color: var(--orange);

}


.problem-intro {

    padding-bottom: 4px;

}


.problem-intro p {

    margin-bottom: 23px;

    color:
        rgba(255, 255, 255, 0.62);

    font-size: 14px;

    line-height: 1.85;

}


.text-link {

    display: inline-flex;

    align-items: center;

    gap: 9px;

    color: var(--orange);

    font-family: var(--font-heading);

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 0.4px;

    transition:
        gap var(--transition),
        color var(--transition);

}


.text-link:hover {

    gap: 14px;

    color: var(--white);

}


/* =========================================================
   PROBLEM GRID
========================================================= */

.problem-grid {

    position: relative;

    z-index: 2;

    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 18px;

}


/* =========================================================
   PROBLEM CARD
========================================================= */

.problem-card {

    display: grid;

    grid-template-columns:
        43% 57%;

    min-height: 280px;

    border:
        1px solid
        rgba(255, 255, 255, 0.10);

    border-radius: 16px;

    background:
        rgba(255, 255, 255, 0.035);

    overflow: hidden;

    transition:
        transform 0.4s ease,
        border-color 0.4s ease,
        background 0.4s ease;

}


.problem-card:hover {

    transform:
        translateY(-7px);

    border-color:
        rgba(244, 123, 32, 0.45);

    background:
        rgba(244, 123, 32, 0.055);

}


/* =========================================================
   LARGE CARD
========================================================= */

.problem-card-large {

    grid-column:
        span 2;

    grid-template-columns:
        50% 50%;

}


/* =========================================================
   IMAGE
========================================================= */

.problem-image {

    position: relative;

    min-height: 280px;

    overflow: hidden;

}


.problem-image img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    transition:
        transform 0.7s ease;

}


.problem-card:hover
.problem-image img {

    transform:
        scale(1.07);

}


.problem-image-overlay {

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(0, 0, 0, 0.05),
            rgba(0, 0, 0, 0.45)
        );

}


.problem-number {

    position: absolute;

    top: 18px;

    left: 18px;

    width: 39px;

    height: 39px;

    display: flex;

    align-items: center;

    justify-content: center;

    border:
        1px solid
        rgba(255, 255, 255, 0.30);

    border-radius: 50%;

    background:
        rgba(0, 0, 0, 0.45);

    backdrop-filter:
        blur(8px);

    color: var(--white);

    font-family: var(--font-heading);

    font-size: 9px;

    font-weight: 800;

}


/* =========================================================
   CARD CONTENT
========================================================= */

.problem-card-content {

    padding: 32px;

    display: flex;

    flex-direction: column;

    justify-content: center;

}


.problem-card-icon {

    width: 42px;

    height: 42px;

    margin-bottom: 18px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 10px;

    background:
        rgba(244, 123, 32, 0.12);

    color: var(--orange);

    font-size: 16px;

}


.problem-card-content h3 {

    margin-bottom: 10px;

    color: var(--white);

    font-size: 18px;

    line-height: 1.3;

}


.problem-card-content p {

    max-width: 400px;

    margin-bottom: 20px;

    color:
        rgba(255, 255, 255, 0.56);

    font-size: 11px;

    line-height: 1.75;

}


.problem-card-content a {

    display: inline-flex;

    align-items: center;

    gap: 8px;

    width: fit-content;

    color: var(--orange);

    font-family: var(--font-heading);

    font-size: 9px;

    font-weight: 800;

    text-transform: uppercase;

    letter-spacing: 0.6px;

    transition:
        gap var(--transition);

}


.problem-card-content a:hover {

    gap: 13px;

}


/* =========================================================
   BOTTOM BELIEF
========================================================= */

.problem-bottom {

    position: relative;

    z-index: 2;

    margin-top: 40px;

    padding: 30px 35px;

    display: flex;

    align-items: center;

    gap: 22px;

    border:
        1px solid
        rgba(244, 123, 32, 0.22);

    border-radius: 16px;

    background:
        linear-gradient(
            100deg,
            rgba(244, 123, 32, 0.10),
            rgba(255, 255, 255, 0.025)
        );

}


.problem-bottom-mark {

    width: 55px;

    height: 55px;

    flex-shrink: 0;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background: var(--orange);

    color: var(--white);

    font-size: 18px;

    box-shadow:
        0 10px 35px
        rgba(244, 123, 32, 0.20);

}


.problem-bottom-text {

    flex: 1;

}


.problem-bottom-text span {

    display: block;

    margin-bottom: 5px;

    color: var(--orange);

    font-family: var(--font-heading);

    font-size: 8px;

    font-weight: 800;

    letter-spacing: 2px;

}


.problem-bottom-text h3 {

    max-width: 680px;

    color: var(--white);

    font-size: 17px;

    line-height: 1.45;

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 950px) {

    .problem-section {

        padding: 90px 0;

    }


    .problem-header {

        grid-template-columns: 1fr;

        gap: 25px;

        align-items: start;

    }


    .problem-grid {

        grid-template-columns: 1fr;

    }


    .problem-card-large {

        grid-column: span 1;

        grid-template-columns:
            43% 57%;

    }


    .problem-bottom {

        flex-wrap: wrap;

    }


    .problem-bottom-text {

        min-width: 250px;

    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 650px) {

    .problem-section {

        padding: 75px 0;

    }


    .problem-heading h2 {

        font-size: 39px;

        letter-spacing: -2px;

    }


    .problem-intro p {

        font-size: 13px;

    }


    .problem-card,
    .problem-card-large {

        grid-template-columns: 1fr;

    }


    .problem-image {

        min-height: 220px;

        height: 220px;

    }


    .problem-card-content {

        padding: 25px;

    }


    .problem-card-content h3 {

        font-size: 17px;

    }


    .problem-bottom {

        padding: 25px 22px;

        align-items: flex-start;

    }


    .problem-bottom-mark {

        width: 45px;

        height: 45px;

        font-size: 15px;

    }


    .problem-bottom-text {

        min-width: 0;

    }


    .problem-bottom-text h3 {

        font-size: 15px;

    }


    .problem-bottom .btn {

        width: 100%;

    }

}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    .problem-card,
    .problem-image img,
    .text-link,
    .problem-card-content a {

        transition: none;

    }

}

/* =========================================================
   INDEX PART 5
   ABOUT 3AM FOUNDATION PREVIEW
========================================================= */


/* =========================================================
   SECTION
========================================================= */

.about-preview-section {

    position: relative;

    padding: 125px 0;

    background: var(--white);

    overflow: hidden;

}


/* =========================================================
   BACKGROUND DETAIL
========================================================= */

.about-preview-section::before {

    content: "";

    position: absolute;

    width: 500px;

    height: 500px;

    right: -300px;

    bottom: -250px;

    border-radius: 50%;

    border:
        1px solid
        rgba(244, 123, 32, 0.12);

    pointer-events: none;

}


/* =========================================================
   MAIN GRID
========================================================= */

.about-preview-grid {

    position: relative;

    z-index: 2;

    display: grid;

    grid-template-columns:
        0.95fr 1.05fr;

    align-items: center;

    gap: 90px;

}


/* =========================================================
   VISUAL AREA
========================================================= */

.about-preview-visual {

    position: relative;

    min-height: 620px;

}


/* =========================================================
   MAIN IMAGE
========================================================= */

.about-main-image {

    position: absolute;

    top: 0;

    left: 0;

    width: 78%;

    height: 520px;

    overflow: hidden;

    border-radius: 18px;

    box-shadow:
        0 25px 70px
        rgba(0, 0, 0, 0.14);

}


.about-main-image img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    transition:
        transform 0.8s ease;

}


.about-preview-visual:hover
.about-main-image img {

    transform:
        scale(1.045);

}


/* =========================================================
   SMALL IMAGE
========================================================= */

.about-small-image {

    position: absolute;

    right: 0;

    bottom: 25px;

    width: 48%;

    height: 260px;

    padding: 7px;

    border-radius: 16px;

    background: var(--white);

    box-shadow:
        0 20px 55px
        rgba(0, 0, 0, 0.17);

    overflow: hidden;

}


.about-small-image img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    border-radius: 10px;

}


/* =========================================================
   FOUNDATION BADGE
========================================================= */

.about-foundation-badge {

    position: absolute;

    left: -22px;

    bottom: 80px;

    z-index: 5;

    display: flex;

    align-items: center;

    gap: 12px;

    padding: 15px 18px;

    border-radius: 12px;

    background: var(--black);

    color: var(--white);

    box-shadow:
        0 20px 50px
        rgba(0, 0, 0, 0.22);

}


.badge-icon {

    width: 38px;

    height: 38px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background: var(--orange);

    color: var(--white);

    font-size: 14px;

}


.about-foundation-badge strong {

    display: block;

    margin-bottom: 2px;

    color: var(--orange);

    font-family: var(--font-heading);

    font-size: 13px;

    font-weight: 800;

    letter-spacing: 1px;

}


.about-foundation-badge span {

    display: block;

    color:
        rgba(255, 255, 255, 0.58);

    font-size: 9px;

}


/* =========================================================
   ORANGE CIRCLE
========================================================= */

.about-orange-circle {

    position: absolute;

    right: 7%;

    top: 10%;

    z-index: -1;

    width: 85px;

    height: 85px;

    border-radius: 50%;

    background: var(--orange);

    opacity: 0.10;

}


/* =========================================================
   CONTENT
========================================================= */

.about-preview-content {

    max-width: 650px;

}


.about-preview-content h2 {

    margin-bottom: 25px;

    color: var(--black);

    font-size:
        clamp(38px, 4.5vw, 58px);

    line-height: 1.08;

    letter-spacing: -2.8px;

}


.about-preview-content h2 strong {

    color: var(--orange);

}


.about-preview-content > p {

    max-width: 620px;

    margin-bottom: 17px;

    color: var(--grey-500);

    font-size: 14px;

    line-height: 1.85;

}


.about-preview-content .about-lead {

    color: var(--grey-700);

    font-size: 15px;

    font-weight: 500;

}


/* =========================================================
   MISSION / VISION
========================================================= */

.about-values {

    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 12px;

    margin-top: 30px;

}


.about-value {

    display: flex;

    align-items: flex-start;

    gap: 13px;

    padding: 18px;

    border:
        1px solid
        var(--grey-200);

    border-radius: 12px;

    background:
        var(--grey-50);

    transition:
        transform var(--transition),
        border-color var(--transition),
        background var(--transition);

}


.about-value:hover {

    transform:
        translateY(-4px);

    border-color:
        rgba(244, 123, 32, 0.35);

    background:
        var(--orange-soft);

}


.about-value-icon {

    width: 37px;

    height: 37px;

    flex-shrink: 0;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 9px;

    background: var(--orange-light);

    color: var(--orange);

    font-size: 13px;

}


.about-value span {

    display: block;

    margin-bottom: 5px;

    color: var(--orange);

    font-family: var(--font-heading);

    font-size: 7px;

    font-weight: 800;

    letter-spacing: 1.5px;

}


.about-value h3 {

    color: var(--black);

    font-size: 12px;

    line-height: 1.5;

}


/* =========================================================
   ACTIONS
========================================================= */

.about-preview-actions {

    display: flex;

    align-items: center;

    flex-wrap: wrap;

    gap: 24px;

    margin-top: 32px;

}


.about-preview-actions .text-link {

    color: var(--black);

}


.about-preview-actions .text-link:hover {

    color: var(--orange);

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 950px) {

    .about-preview-section {

        padding: 95px 0;

    }


    .about-preview-grid {

        grid-template-columns: 1fr;

        gap: 65px;

    }


    .about-preview-visual {

        width: min(
            700px,
            100%
        );

        min-height: 560px;

        margin: auto;

    }


    .about-preview-content {

        max-width: 750px;

    }


    .about-preview-content h2 {

        max-width: 700px;

    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 650px) {

    .about-preview-section {

        padding: 75px 0;

    }


    .about-preview-grid {

        gap: 50px;

    }


    .about-preview-visual {

        min-height: 450px;

    }


    .about-main-image {

        width: 84%;

        height: 375px;

    }


    .about-small-image {

        width: 48%;

        height: 190px;

        bottom: 10px;

    }


    .about-foundation-badge {

        left: 5px;

        bottom: 45px;

        padding: 12px;

    }


    .badge-icon {

        width: 32px;

        height: 32px;

        font-size: 12px;

    }


    .about-foundation-badge strong {

        font-size: 11px;

    }


    .about-foundation-badge span {

        font-size: 8px;

    }


    .about-preview-content h2 {

        font-size: 39px;

        letter-spacing: -2px;

    }


    .about-preview-content > p {

        font-size: 13px;

    }


    .about-preview-content .about-lead {

        font-size: 14px;

    }


    .about-values {

        grid-template-columns: 1fr;

    }


    .about-preview-actions {

        align-items: stretch;

        flex-direction: column;

        gap: 17px;

    }


    .about-preview-actions .btn {

        width: 100%;

    }

}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    .about-main-image img,
    .about-value {

        transition: none;

    }

}

/* =========================================================
   INDEX PART 6
   WHAT WE DO
========================================================= */


/* =========================================================
   SECTION
========================================================= */

.what-we-do-section {

    position: relative;

    padding: 120px 0;

    background: var(--grey-50);

    overflow: hidden;

}


/* =========================================================
   BACKGROUND DETAILS
========================================================= */

.what-we-do-section::before {

    content: "";

    position: absolute;

    width: 450px;

    height: 450px;

    left: -260px;

    top: -180px;

    border-radius: 50%;

    background:
        rgba(244, 123, 32, 0.055);

    pointer-events: none;

}


.what-we-do-section::after {

    content: "";

    position: absolute;

    width: 250px;

    height: 250px;

    right: -130px;

    bottom: -130px;

    border-radius: 50%;

    border:
        1px solid
        rgba(244, 123, 32, 0.12);

    pointer-events: none;

}


/* =========================================================
   HEADER
========================================================= */

.what-we-do-header {

    position: relative;

    z-index: 2;

    display: grid;

    grid-template-columns:
        1.15fr 0.85fr;

    align-items: end;

    gap: 80px;

    margin-bottom: 55px;

}


.what-we-do-header h2 {

    color: var(--black);

    font-size:
        clamp(40px, 5vw, 62px);

    line-height: 1.05;

    letter-spacing: -3px;

}


.what-we-do-header h2 strong {

    color: var(--orange);

}


.what-we-do-intro {

    padding-bottom: 3px;

}


.what-we-do-intro p {

    max-width: 440px;

    color: var(--grey-500);

    font-size: 13px;

    line-height: 1.85;

}


/* =========================================================
   SERVICES GRID
========================================================= */

.services-grid {

    position: relative;

    z-index: 2;

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 15px;

}


/* =========================================================
   SERVICE CARD
========================================================= */

.service-card {

    position: relative;

    min-height: 360px;

    display: flex;

    flex-direction: column;

    padding: 28px;

    border:
        1px solid
        var(--grey-200);

    border-radius: 16px;

    background: var(--white);

    overflow: hidden;

    transition:
        transform 0.4s ease,
        border-color 0.4s ease,
        box-shadow 0.4s ease;

}


.service-card::before {

    content: "";

    position: absolute;

    width: 130px;

    height: 130px;

    right: -65px;

    top: -65px;

    border-radius: 50%;

    background:
        rgba(244, 123, 32, 0.07);

    transition:
        transform 0.5s ease;

}


.service-card:hover {

    transform:
        translateY(-8px);

    border-color:
        rgba(244, 123, 32, 0.30);

    box-shadow:
        0 20px 55px
        rgba(0, 0, 0, 0.09);

}


.service-card:hover::before {

    transform:
        scale(2.2);

}


/* =========================================================
   FEATURED SERVICE
========================================================= */

.service-card-featured {

    border:
        1px solid
        rgba(244, 123, 32, 0.35);

    background:
        linear-gradient(
            145deg,
            var(--white),
            var(--orange-soft)
        );

}


.service-card-featured::after {

    content: "";

    position: absolute;

    left: 0;

    top: 0;

    width: 100%;

    height: 3px;

    background: var(--orange);

}


/* =========================================================
   CARD TOP
========================================================= */

.service-card-top {

    position: relative;

    z-index: 2;

    display: flex;

    align-items: center;

    justify-content: space-between;

    margin-bottom: 45px;

}


.service-number {

    color: var(--grey-300);

    font-family: var(--font-heading);

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 1px;

}


.service-icon {

    width: 50px;

    height: 50px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 13px;

    background: var(--orange-light);

    color: var(--orange);

    font-size: 18px;

    transition:
        transform 0.35s ease,
        background 0.35s ease,
        color 0.35s ease;

}


.service-card:hover
.service-icon {

    transform:
        rotate(-6deg)
        scale(1.08);

    background: var(--orange);

    color: var(--white);

}


/* =========================================================
   CARD CONTENT
========================================================= */

.service-card-content {

    position: relative;

    z-index: 2;

    flex: 1;

}


.service-label {

    display: block;

    margin-bottom: 8px;

    color: var(--orange);

    font-family: var(--font-heading);

    font-size: 7px;

    font-weight: 800;

    letter-spacing: 1.8px;

}


.service-card-content h3 {

    margin-bottom: 13px;

    color: var(--black);

    font-size: 21px;

    line-height: 1.25;

}


.service-card-content p {

    max-width: 310px;

    color: var(--grey-500);

    font-size: 11px;

    line-height: 1.8;

}


/* =========================================================
   CARD LINK
========================================================= */

.service-link {

    position: relative;

    z-index: 2;

    display: inline-flex;

    align-items: center;

    gap: 8px;

    width: fit-content;

    margin-top: 25px;

    color: var(--black);

    font-family: var(--font-heading);

    font-size: 9px;

    font-weight: 800;

    text-transform: uppercase;

    letter-spacing: 0.6px;

    transition:
        gap 0.3s ease,
        color 0.3s ease;

}


.service-link i {

    color: var(--orange);

}


.service-link:hover {

    gap: 13px;

    color: var(--orange);

}


/* =========================================================
   BOTTOM CTA
========================================================= */

.what-we-do-bottom {

    position: relative;

    z-index: 2;

    display: flex;

    align-items: center;

    gap: 20px;

    margin-top: 38px;

    padding: 27px 30px;

    border-radius: 16px;

    background: var(--black);

    color: var(--white);

    overflow: hidden;

}


.what-we-do-bottom::before {

    content: "";

    position: absolute;

    width: 350px;

    height: 350px;

    right: -180px;

    top: -180px;

    border-radius: 50%;

    background:
        rgba(244, 123, 32, 0.12);

}


.what-we-do-bottom-icon {

    position: relative;

    z-index: 2;

    width: 52px;

    height: 52px;

    flex-shrink: 0;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background:
        rgba(244, 123, 32, 0.13);

    color: var(--orange);

    font-size: 17px;

}


.what-we-do-bottom-content {

    position: relative;

    z-index: 2;

    flex: 1;

}


.what-we-do-bottom-content span {

    display: block;

    margin-bottom: 5px;

    color: var(--orange);

    font-family: var(--font-heading);

    font-size: 7px;

    font-weight: 800;

    letter-spacing: 1.8px;

}


.what-we-do-bottom-content h3 {

    color: var(--white);

    font-size: 16px;

    line-height: 1.45;

}


.what-we-do-bottom .btn {

    position: relative;

    z-index: 2;

    flex-shrink: 0;

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 950px) {

    .what-we-do-section {

        padding: 90px 0;

    }


    .what-we-do-header {

        grid-template-columns: 1fr;

        gap: 20px;

        align-items: start;

    }


    .services-grid {

        grid-template-columns:
            repeat(2, 1fr);

    }


    .what-we-do-bottom {

        flex-wrap: wrap;

    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 650px) {

    .what-we-do-section {

        padding: 75px 0;

    }


    .what-we-do-header {

        margin-bottom: 35px;

    }


    .what-we-do-header h2 {

        font-size: 39px;

        letter-spacing: -2px;

    }


    .what-we-do-intro p {

        font-size: 13px;

    }


    .services-grid {

        grid-template-columns: 1fr;

    }


    .service-card {

        min-height: 320px;

        padding: 25px;

    }


    .service-card-top {

        margin-bottom: 35px;

    }


    .service-card-content h3 {

        font-size: 19px;

    }


    .what-we-do-bottom {

        align-items: flex-start;

        padding: 25px 22px;

    }


    .what-we-do-bottom-icon {

        width: 45px;

        height: 45px;

        font-size: 15px;

    }


    .what-we-do-bottom-content {

        min-width: 0;

    }


    .what-we-do-bottom-content h3 {

        font-size: 14px;

    }


    .what-we-do-bottom .btn {

        width: 100%;

        margin-top: 5px;

    }

}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    .service-card,
    .service-card::before,
    .service-icon,
    .service-link {

        transition: none;

    }

}

/* =========================================================
   INDEX PART 7
   HOW YOU CAN HELP
========================================================= */


/* =========================================================
   SECTION
========================================================= */

.help-section {

    position: relative;

    padding: 125px 0;

    background: var(--white);

    overflow: hidden;

}


/* =========================================================
   BACKGROUND
========================================================= */

.help-section::before {

    content: "";

    position: absolute;

    width: 550px;

    height: 550px;

    left: -350px;

    top: 100px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(244, 123, 32, 0.08),
            rgba(244, 123, 32, 0) 70%
        );

    pointer-events: none;

}


.help-section::after {

    content: "";

    position: absolute;

    width: 300px;

    height: 300px;

    right: -180px;

    bottom: 50px;

    border-radius: 50%;

    border:
        1px solid
        rgba(244, 123, 32, 0.12);

    pointer-events: none;

}


/* =========================================================
   HEADER
========================================================= */

.help-header {

    position: relative;

    z-index: 2;

    max-width: 800px;

    margin-bottom: 60px;

}


.help-header h2 {

    max-width: 760px;

    margin-bottom: 20px;

    color: var(--black);

    font-size:
        clamp(40px, 5vw, 64px);

    line-height: 1.05;

    letter-spacing: -3px;

}


.help-header h2 strong {

    color: var(--orange);

}


.help-header p {

    max-width: 620px;

    color: var(--grey-500);

    font-size: 14px;

    line-height: 1.85;

}


/* =========================================================
   HELP GRID
========================================================= */

.help-grid {

    position: relative;

    z-index: 2;

    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 16px;

}


/* =========================================================
   HELP CARD
========================================================= */

.help-card {

    position: relative;

    min-height: 365px;

    padding: 32px;

    display: flex;

    flex-direction: column;

    border:
        1px solid
        var(--grey-200);

    border-radius: 18px;

    background: var(--white);

    overflow: hidden;

    transition:
        transform 0.4s ease,
        border-color 0.4s ease,
        box-shadow 0.4s ease;

}


.help-card:hover {

    transform:
        translateY(-8px);

    border-color:
        rgba(244, 123, 32, 0.35);

    box-shadow:
        0 25px 60px
        rgba(0, 0, 0, 0.09);

}


/* =========================================================
   PRIMARY CARD
========================================================= */

.help-card-primary {

    background:
        linear-gradient(
            140deg,
            var(--black) 0%,
            #171717 100%
        );

    border-color: var(--black);

}


.help-card-primary h3 {

    color: var(--white);

}


.help-card-primary .help-card-content p {

    color:
        rgba(255, 255, 255, 0.58);

}


.help-card-primary .help-card-number {

    color:
        rgba(255, 255, 255, 0.30);

}


.help-card-primary .help-card-link {

    color: var(--orange);

}


/* =========================================================
   CARD NUMBER
========================================================= */

.help-card-number {

    position: relative;

    z-index: 3;

    color: var(--grey-300);

    font-family: var(--font-heading);

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 1px;

}


/* =========================================================
   CARD ICON
========================================================= */

.help-card-icon {

    position: relative;

    z-index: 3;

    width: 55px;

    height: 55px;

    margin-top: 30px;

    margin-bottom: 25px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 14px;

    background: var(--orange-light);

    color: var(--orange);

    font-size: 20px;

    transition:
        transform 0.4s ease,
        background 0.4s ease,
        color 0.4s ease;

}


.help-card:hover
.help-card-icon {

    transform:
        rotate(-7deg)
        scale(1.08);

    background: var(--orange);

    color: var(--white);

}


/* =========================================================
   CONTENT
========================================================= */

.help-card-content {

    position: relative;

    z-index: 3;

    flex: 1;

}


.help-card-content span {

    display: block;

    margin-bottom: 8px;

    color: var(--orange);

    font-family: var(--font-heading);

    font-size: 7px;

    font-weight: 800;

    letter-spacing: 1.8px;

}


.help-card-content h3 {

    margin-bottom: 13px;

    color: var(--black);

    font-size: 24px;

    line-height: 1.2;

}


.help-card-content p {

    max-width: 430px;

    color: var(--grey-500);

    font-size: 11px;

    line-height: 1.8;

}


/* =========================================================
   LINK
========================================================= */

.help-card-link {

    position: relative;

    z-index: 3;

    display: inline-flex;

    align-items: center;

    gap: 9px;

    width: fit-content;

    color: var(--black);

    font-family: var(--font-heading);

    font-size: 9px;

    font-weight: 800;

    text-transform: uppercase;

    letter-spacing: 0.7px;

    transition:
        gap 0.3s ease,
        color 0.3s ease;

}


.help-card-link i {

    color: var(--orange);

}


.help-card-link:hover {

    gap: 14px;

    color: var(--orange);

}


/* =========================================================
   DECORATIVE ICON
========================================================= */

.help-card-decoration {

    position: absolute;

    right: -45px;

    bottom: -50px;

    z-index: 1;

    color:
        rgba(244, 123, 32, 0.055);

    font-size: 170px;

    transform:
        rotate(-15deg);

    transition:
        transform 0.6s ease,
        color 0.6s ease;

}


.help-card:hover
.help-card-decoration {

    transform:
        rotate(-5deg)
        scale(1.1);

    color:
        rgba(244, 123, 32, 0.09);

}


.help-card-primary
.help-card-decoration {

    color:
        rgba(244, 123, 32, 0.09);

}


/* =========================================================
   LARGE CTA
========================================================= */

.help-cta {

    position: relative;

    z-index: 2;

    display: grid;

    grid-template-columns:
        1fr 0.85fr;

    align-items: center;

    gap: 60px;

    margin-top: 40px;

    padding: 35px 38px;

    border-radius: 18px;

    background: var(--black);

    overflow: hidden;

}


.help-cta-glow {

    position: absolute;

    width: 400px;

    height: 400px;

    right: -220px;

    top: -220px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(244, 123, 32, 0.22),
            rgba(244, 123, 32, 0) 70%
        );

    pointer-events: none;

}


/* =========================================================
   CTA LEFT
========================================================= */

.help-cta-left {

    position: relative;

    z-index: 2;

    display: flex;

    align-items: center;

    gap: 18px;

}


.help-cta-icon {

    width: 56px;

    height: 56px;

    flex-shrink: 0;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background:
        rgba(244, 123, 32, 0.13);

    color: var(--orange);

    font-size: 18px;

}


.help-cta-left span {

    display: block;

    margin-bottom: 5px;

    color: var(--orange);

    font-family: var(--font-heading);

    font-size: 7px;

    font-weight: 800;

    letter-spacing: 2px;

}


.help-cta-left h3 {

    color: var(--white);

    font-size: 20px;

    line-height: 1.35;

}


/* =========================================================
   CTA RIGHT
========================================================= */

.help-cta-right {

    position: relative;

    z-index: 2;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 30px;

}


.help-cta-right p {

    max-width: 330px;

    color:
        rgba(255, 255, 255, 0.57);

    font-size: 11px;

    line-height: 1.75;

}


.help-cta-link {

    display: inline-flex;

    align-items: center;

    gap: 9px;

    flex-shrink: 0;

    color: var(--orange);

    font-family: var(--font-heading);

    font-size: 9px;

    font-weight: 800;

    text-transform: uppercase;

    white-space: nowrap;

    transition:
        gap 0.3s ease,
        color 0.3s ease;

}


.help-cta-link:hover {

    gap: 14px;

    color: var(--white);

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 950px) {

    .help-section {

        padding: 95px 0;

    }


    .help-header {

        margin-bottom: 45px;

    }


    .help-grid {

        grid-template-columns:
            repeat(2, 1fr);

    }


    .help-card {

        min-height: 340px;

    }


    .help-cta {

        grid-template-columns: 1fr;

        gap: 25px;

    }


    .help-cta-right {

        align-items: flex-start;

    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 650px) {

    .help-section {

        padding: 75px 0;

    }


    .help-header h2 {

        font-size: 39px;

        letter-spacing: -2px;

    }


    .help-header p {

        font-size: 13px;

    }


    .help-grid {

        grid-template-columns: 1fr;

    }


    .help-card {

        min-height: 325px;

        padding: 27px;

    }


    .help-card-content h3 {

        font-size: 21px;

    }


    .help-card-decoration {

        font-size: 135px;

    }


    .help-cta {

        padding: 27px 23px;

    }


    .help-cta-left {

        align-items: flex-start;

    }


    .help-cta-icon {

        width: 45px;

        height: 45px;

        font-size: 15px;

    }


    .help-cta-left h3 {

        font-size: 17px;

    }


    .help-cta-right {

        align-items: flex-start;

        flex-direction: column;

        gap: 18px;

    }


    .help-cta-right p {

        max-width: none;

    }

}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    .help-card,
    .help-card-icon,
    .help-card-decoration,
    .help-card-link,
    .help-cta-link {

        transition: none;

    }

}

/* =========================================================
   INDEX PART 8
   OUR IMPACT / STORIES
========================================================= */


/* =========================================================
   SECTION
========================================================= */

.impact-stories-section {

    position: relative;

    padding: 125px 0;

    background: var(--grey-50);

    overflow: hidden;

}


/* =========================================================
   BACKGROUND DETAIL
========================================================= */

.impact-stories-section::before {

    content: "";

    position: absolute;

    width: 520px;

    height: 520px;

    right: -330px;

    top: 100px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(244, 123, 32, 0.08),
            rgba(244, 123, 32, 0) 70%
        );

    pointer-events: none;

}


/* =========================================================
   HEADER
========================================================= */

.impact-stories-header {

    position: relative;

    z-index: 2;

    display: grid;

    grid-template-columns: 1fr 0.8fr;

    align-items: end;

    gap: 70px;

    margin-bottom: 55px;

}


.impact-stories-header h2 {

    color: var(--black);

    font-size:
        clamp(40px, 5vw, 62px);

    line-height: 1.05;

    letter-spacing: -3px;

}


.impact-stories-header h2 strong {

    color: var(--orange);

}


.impact-stories-header-right {

    display: flex;

    align-items: flex-end;

    justify-content: space-between;

    gap: 30px;

}


.impact-stories-header-right p {

    max-width: 370px;

    color: var(--grey-500);

    font-size: 12px;

    line-height: 1.8;

}


.impact-gallery-link {

    display: inline-flex;

    align-items: center;

    gap: 8px;

    flex-shrink: 0;

    color: var(--black);

    font-family: var(--font-heading);

    font-size: 9px;

    font-weight: 800;

    text-transform: uppercase;

    white-space: nowrap;

    transition:
        gap 0.3s ease,
        color 0.3s ease;

}


.impact-gallery-link i {

    color: var(--orange);

}


.impact-gallery-link:hover {

    gap: 13px;

    color: var(--orange);

}


/* =========================================================
   FEATURED STORY
========================================================= */

.featured-impact-story {

    position: relative;

    z-index: 2;

    display: grid;

    grid-template-columns: 1.12fr 0.88fr;

    min-height: 510px;

    margin-bottom: 18px;

    border-radius: 18px;

    background: var(--black);

    overflow: hidden;

    box-shadow:
        0 25px 70px
        rgba(0, 0, 0, 0.13);

}


/* =========================================================
   FEATURED IMAGE
========================================================= */

.featured-impact-image {

    position: relative;

    min-height: 510px;

    overflow: hidden;

}


.featured-impact-image img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    transition:
        transform 0.8s ease;

}


.featured-impact-story:hover
.featured-impact-image img {

    transform: scale(1.045);

}


.featured-impact-image-overlay {

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(0, 0, 0, 0.02),
            rgba(0, 0, 0, 0.18)
        );

    pointer-events: none;

}


.featured-impact-tag {

    position: absolute;

    left: 25px;

    top: 25px;

    display: inline-flex;

    align-items: center;

    gap: 8px;

    padding: 9px 12px;

    border-radius: 30px;

    background:
        rgba(0, 0, 0, 0.68);

    color: var(--white);

    backdrop-filter: blur(8px);

    font-family: var(--font-heading);

    font-size: 7px;

    font-weight: 800;

    letter-spacing: 1.4px;

}


.featured-impact-tag i {

    color: var(--orange);

}


/* =========================================================
   FEATURED CONTENT
========================================================= */

.featured-impact-content {

    display: flex;

    flex-direction: column;

    justify-content: center;

    padding: 60px 55px;

}


.impact-story-category {

    display: block;

    margin-bottom: 15px;

    color: var(--orange);

    font-family: var(--font-heading);

    font-size: 7px;

    font-weight: 800;

    letter-spacing: 2px;

}


.featured-impact-content h3 {

    max-width: 500px;

    margin-bottom: 18px;

    color: var(--white);

    font-size:
        clamp(30px, 3.2vw, 44px);

    line-height: 1.12;

    letter-spacing: -1.5px;

}


.featured-impact-content > p {

    max-width: 480px;

    margin-bottom: 30px;

    color:
        rgba(255, 255, 255, 0.56);

    font-size: 12px;

    line-height: 1.85;

}


/* =========================================================
   FEATURED META
========================================================= */

.featured-impact-meta {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 20px;

    margin-bottom: 32px;

    padding-top: 20px;

    border-top:
        1px solid
        rgba(255, 255, 255, 0.10);

}


.featured-impact-meta span {

    display: block;

    margin-bottom: 6px;

    color:
        rgba(255, 255, 255, 0.34);

    font-family: var(--font-heading);

    font-size: 6px;

    font-weight: 800;

    letter-spacing: 1.5px;

}


.featured-impact-meta strong {

    color:
        rgba(255, 255, 255, 0.75);

    font-size: 10px;

    font-weight: 500;

}


/* =========================================================
   STORY GRID
========================================================= */

.impact-story-grid {

    position: relative;

    z-index: 2;

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 15px;

}


/* =========================================================
   STORY CARD
========================================================= */

.impact-story-card {

    border:
        1px solid
        var(--grey-200);

    border-radius: 15px;

    background: var(--white);

    overflow: hidden;

    transition:
        transform 0.4s ease,
        box-shadow 0.4s ease,
        border-color 0.4s ease;

}


.impact-story-card:hover {

    transform:
        translateY(-7px);

    border-color:
        rgba(244, 123, 32, 0.30);

    box-shadow:
        0 20px 50px
        rgba(0, 0, 0, 0.08);

}


/* =========================================================
   STORY IMAGE
========================================================= */

.impact-story-image {

    position: relative;

    height: 235px;

    overflow: hidden;

}


.impact-story-image img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    transition:
        transform 0.7s ease;

}


.impact-story-card:hover
.impact-story-image img {

    transform: scale(1.06);

}


.impact-story-date {

    position: absolute;

    top: 15px;

    right: 15px;

    padding: 7px 10px;

    border-radius: 20px;

    background:
        rgba(0, 0, 0, 0.72);

    color: var(--white);

    backdrop-filter: blur(6px);

    font-family: var(--font-heading);

    font-size: 6px;

    font-weight: 800;

    letter-spacing: 1.2px;

}


/* =========================================================
   STORY CONTENT
========================================================= */

.impact-story-content {

    padding: 24px;

}


.impact-story-content > span {

    display: block;

    margin-bottom: 9px;

    color: var(--orange);

    font-family: var(--font-heading);

    font-size: 7px;

    font-weight: 800;

    letter-spacing: 1.7px;

}


.impact-story-content h3 {

    min-height: 50px;

    margin-bottom: 12px;

    color: var(--black);

    font-size: 17px;

    line-height: 1.35;

}


.impact-story-content p {

    min-height: 58px;

    margin-bottom: 20px;

    color: var(--grey-500);

    font-size: 10px;

    line-height: 1.75;

}


.impact-story-content a {

    display: inline-flex;

    align-items: center;

    gap: 8px;

    color: var(--black);

    font-family: var(--font-heading);

    font-size: 8px;

    font-weight: 800;

    text-transform: uppercase;

    transition:
        gap 0.3s ease,
        color 0.3s ease;

}


.impact-story-content a i {

    color: var(--orange);

}


.impact-story-content a:hover {

    gap: 13px;

    color: var(--orange);

}


/* =========================================================
   GALLERY CTA
========================================================= */

.impact-gallery-cta {

    position: relative;

    z-index: 2;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 30px;

    margin-top: 35px;

    padding: 25px 30px;

    border:
        1px solid
        rgba(244, 123, 32, 0.20);

    border-radius: 15px;

    background: var(--orange-soft);

}


.impact-gallery-cta-left {

    display: flex;

    align-items: center;

    gap: 15px;

}


.impact-gallery-camera {

    width: 48px;

    height: 48px;

    flex-shrink: 0;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 12px;

    background: var(--orange);

    color: var(--white);

    font-size: 15px;

}


.impact-gallery-cta-left span {

    display: block;

    margin-bottom: 5px;

    color: var(--orange);

    font-family: var(--font-heading);

    font-size: 7px;

    font-weight: 800;

    letter-spacing: 1.6px;

}


.impact-gallery-cta-left h3 {

    color: var(--black);

    font-size: 15px;

}


.impact-gallery-button {

    display: inline-flex;

    align-items: center;

    gap: 9px;

    flex-shrink: 0;

    padding: 13px 18px;

    border-radius: 7px;

    background: var(--black);

    color: var(--white);

    font-family: var(--font-heading);

    font-size: 8px;

    font-weight: 800;

    text-transform: uppercase;

    transition:
        transform 0.3s ease,
        background 0.3s ease,
        gap 0.3s ease;

}


.impact-gallery-button i {

    color: var(--orange);

}


.impact-gallery-button:hover {

    transform: translateY(-2px);

    gap: 13px;

    background: var(--orange);

}


.impact-gallery-button:hover i {

    color: var(--white);

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 950px) {

    .impact-stories-section {

        padding: 95px 0;

    }


    .impact-stories-header {

        grid-template-columns: 1fr;

        gap: 25px;

    }


    .impact-stories-header-right {

        align-items: flex-start;

    }


    .featured-impact-story {

        grid-template-columns: 1fr;

    }


    .featured-impact-image {

        min-height: 400px;

    }


    .featured-impact-content {

        padding: 45px;

    }


    .impact-story-grid {

        grid-template-columns:
            repeat(2, 1fr);

    }


    .impact-story-card:last-child {

        grid-column: span 2;

    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 650px) {

    .impact-stories-section {

        padding: 75px 0;

    }


    .impact-stories-header {

        margin-bottom: 35px;

    }


    .impact-stories-header h2 {

        font-size: 39px;

        letter-spacing: -2px;

    }


    .impact-stories-header-right {

        flex-direction: column;

        align-items: flex-start;

        gap: 17px;

    }


    .impact-stories-header-right p {

        font-size: 12px;

    }


    .featured-impact-image {

        min-height: 290px;

    }


    .featured-impact-content {

        padding: 35px 25px;

    }


    .featured-impact-content h3 {

        font-size: 29px;

    }


    .featured-impact-meta {

        grid-template-columns: 1fr;

        gap: 14px;

    }


    .impact-story-grid {

        grid-template-columns: 1fr;

    }


    .impact-story-card:last-child {

        grid-column: auto;

    }


    .impact-story-image {

        height: 220px;

    }


    .impact-gallery-cta {

        align-items: flex-start;

        flex-direction: column;

        padding: 22px;

    }


    .impact-gallery-button {

        width: 100%;

        justify-content: center;

    }

}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    .featured-impact-image img,
    .impact-story-image img,
    .impact-story-card,
    .impact-gallery-button {

        transition: none;

    }

}


/* =========================================================
   INDEX PART 9
   BLOOD ACCESS / EMERGENCY ACTION
========================================================= */


/* =========================================================
   SECTION
========================================================= */

.blood-access-section {

    position: relative;

    padding: 125px 0;

    background: var(--white);

    overflow: hidden;

}


/* =========================================================
   MAIN WRAPPER
========================================================= */

.blood-access-wrapper {

    position: relative;

    display: grid;

    grid-template-columns:
        1fr 0.9fr;

    align-items: center;

    gap: 80px;

    min-height: 480px;

    padding: 65px;

    border-radius: 22px;

    background: var(--black);

    overflow: hidden;

    box-shadow:
        0 30px 80px
        rgba(0, 0, 0, 0.16);

}


/* =========================================================
   BACKGROUND GLOW
========================================================= */

.blood-access-glow {

    position: absolute;

    width: 600px;

    height: 600px;

    right: -300px;

    top: -320px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(244, 123, 32, 0.23),
            rgba(244, 123, 32, 0) 68%
        );

    pointer-events: none;

}


.blood-access-wrapper::before {

    content: "";

    position: absolute;

    width: 1px;

    height: 70%;

    right: 50%;

    top: 15%;

    background:
        rgba(255, 255, 255, 0.07);

}


/* =========================================================
   CONTENT
========================================================= */

.blood-access-content {

    position: relative;

    z-index: 2;

}


.blood-access-label {

    display: flex;

    align-items: center;

    gap: 9px;

    margin-bottom: 22px;

    color: var(--orange);

    font-family: var(--font-heading);

    font-size: 8px;

    font-weight: 800;

    letter-spacing: 2px;

}


/* =========================================================
   PULSE DOT
========================================================= */

.blood-pulse {

    position: relative;

    width: 8px;

    height: 8px;

    border-radius: 50%;

    background: var(--orange);

}


.blood-pulse::before {

    content: "";

    position: absolute;

    inset: -5px;

    border: 1px solid var(--orange);

    border-radius: 50%;

    opacity: 0.5;

    animation:
        bloodPulse 2s infinite;

}


@keyframes bloodPulse {

    0% {

        transform: scale(0.7);

        opacity: 0.7;

    }

    70% {

        transform: scale(1.7);

        opacity: 0;

    }

    100% {

        transform: scale(1.7);

        opacity: 0;

    }

}


/* =========================================================
   HEADING
========================================================= */

.blood-access-content h2 {

    max-width: 650px;

    margin-bottom: 22px;

    color: var(--white);

    font-size:
        clamp(42px, 5vw, 65px);

    line-height: 1.02;

    letter-spacing: -3px;

}


.blood-access-content h2 strong {

    color: var(--orange);

}


.blood-access-content > p {

    max-width: 570px;

    color:
        rgba(255, 255, 255, 0.57);

    font-size: 13px;

    line-height: 1.9;

}


/* =========================================================
   EMERGENCY NOTICE
========================================================= */

.blood-emergency-note {

    display: flex;

    align-items: flex-start;

    gap: 12px;

    max-width: 570px;

    margin-top: 30px;

    padding: 15px;

    border:
        1px solid
        rgba(255, 255, 255, 0.08);

    border-radius: 10px;

    background:
        rgba(255, 255, 255, 0.035);

}


.blood-emergency-icon {

    width: 34px;

    height: 34px;

    flex-shrink: 0;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 8px;

    background:
        rgba(244, 123, 32, 0.12);

    color: var(--orange);

    font-size: 12px;

}


.blood-emergency-note strong {

    display: block;

    margin-bottom: 4px;

    color: var(--white);

    font-size: 10px;

}


.blood-emergency-note span {

    display: block;

    color:
        rgba(255, 255, 255, 0.43);

    font-size: 9px;

    line-height: 1.65;

}


/* =========================================================
   ACTION PANEL
========================================================= */

.blood-action-panel {

    position: relative;

    z-index: 2;

    display: flex;

    flex-direction: column;

    gap: 12px;

}


/* =========================================================
   ACTION CARD
========================================================= */

.blood-action-card {

    position: relative;

    display: grid;

    grid-template-columns:
        auto 1fr auto;

    align-items: center;

    gap: 17px;

    padding: 22px;

    border:
        1px solid
        rgba(255, 255, 255, 0.09);

    border-radius: 13px;

    background:
        rgba(255, 255, 255, 0.045);

    transition:
        transform 0.35s ease,
        background 0.35s ease,
        border-color 0.35s ease;

}


.blood-action-card:hover {

    transform:
        translateX(7px);

    border-color:
        rgba(244, 123, 32, 0.45);

    background:
        rgba(244, 123, 32, 0.09);

}


/* =========================================================
   ACTION ICON
========================================================= */

.blood-action-icon {

    width: 50px;

    height: 50px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 11px;

    background:
        rgba(244, 123, 32, 0.12);

    color: var(--orange);

    font-size: 17px;

    transition:
        transform 0.35s ease,
        background 0.35s ease;

}


.blood-action-card:hover
.blood-action-icon {

    transform:
        scale(1.08)
        rotate(-5deg);

    background: var(--orange);

    color: var(--white);

}


/* =========================================================
   ACTION CONTENT
========================================================= */

.blood-action-content span {

    display: block;

    margin-bottom: 5px;

    color: var(--orange);

    font-family: var(--font-heading);

    font-size: 6px;

    font-weight: 800;

    letter-spacing: 1.6px;

}


.blood-action-content h3 {

    margin-bottom: 5px;

    color: var(--white);

    font-size: 17px;

}


.blood-action-content p {

    color:
        rgba(255, 255, 255, 0.42);

    font-size: 9px;

    line-height: 1.5;

}


/* =========================================================
   ARROW
========================================================= */

.blood-action-arrow {

    width: 34px;

    height: 34px;

    display: flex;

    align-items: center;

    justify-content: center;

    border:
        1px solid
        rgba(255, 255, 255, 0.10);

    border-radius: 50%;

    color: var(--orange);

    font-size: 10px;

    transition:
        transform 0.35s ease,
        background 0.35s ease,
        color 0.35s ease;

}


.blood-action-card:hover
.blood-action-arrow {

    transform:
        translateX(4px);

    background: var(--orange);

    color: var(--white);

}


/* =========================================================
   BLOOD BANK STRIP
========================================================= */

.blood-bank-strip {

    display: grid;

    grid-template-columns:
        auto 1fr auto;

    align-items: center;

    gap: 25px;

    margin-top: 18px;

    padding: 22px 25px;

    border:
        1px solid
        var(--grey-200);

    border-radius: 14px;

    background: var(--grey-50);

}


.blood-bank-strip-left {

    display: flex;

    align-items: center;

    gap: 13px;

}


.blood-bank-strip-icon {

    width: 43px;

    height: 43px;

    flex-shrink: 0;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 10px;

    background: var(--orange-light);

    color: var(--orange);

    font-size: 14px;

}


.blood-bank-strip-left span {

    display: block;

    margin-bottom: 4px;

    color: var(--orange);

    font-family: var(--font-heading);

    font-size: 6px;

    font-weight: 800;

    letter-spacing: 1.6px;

}


.blood-bank-strip-left h3 {

    color: var(--black);

    font-size: 14px;

}


.blood-bank-strip > p {

    color: var(--grey-500);

    font-size: 10px;

    line-height: 1.6;

}


.blood-bank-strip-link {

    display: inline-flex;

    align-items: center;

    gap: 8px;

    flex-shrink: 0;

    color: var(--black);

    font-family: var(--font-heading);

    font-size: 8px;

    font-weight: 800;

    text-transform: uppercase;

    white-space: nowrap;

    transition:
        gap 0.3s ease,
        color 0.3s ease;

}


.blood-bank-strip-link i {

    color: var(--orange);

}


.blood-bank-strip-link:hover {

    gap: 13px;

    color: var(--orange);

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 950px) {

    .blood-access-section {

        padding: 95px 0;

    }


    .blood-access-wrapper {

        grid-template-columns: 1fr;

        gap: 45px;

        padding: 50px;

    }


    .blood-access-wrapper::before {

        display: none;

    }


    .blood-action-panel {

        max-width: 700px;

    }


    .blood-bank-strip {

        grid-template-columns: 1fr;

        gap: 15px;

    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 650px) {

    .blood-access-section {

        padding: 75px 0;

    }


    .blood-access-wrapper {

        gap: 35px;

        padding: 38px 22px;

        border-radius: 17px;

    }


    .blood-access-content h2 {

        font-size: 40px;

        letter-spacing: -2px;

    }


    .blood-access-content > p {

        font-size: 12px;

    }


    .blood-action-card {

        grid-template-columns:
            auto 1fr auto;

        gap: 11px;

        padding: 17px;

    }


    .blood-action-icon {

        width: 42px;

        height: 42px;

        font-size: 14px;

    }


    .blood-action-content h3 {

        font-size: 15px;

    }


    .blood-action-content p {

        font-size: 8px;

    }


    .blood-action-arrow {

        width: 29px;

        height: 29px;

        font-size: 8px;

    }


    .blood-bank-strip {

        padding: 20px;

    }


    .blood-bank-strip > p {

        font-size: 10px;

    }


    .blood-bank-strip-link {

        justify-content: flex-start;

    }

}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    .blood-pulse::before,
    .blood-action-card,
    .blood-action-icon,
    .blood-action-arrow,
    .blood-bank-strip-link {

        animation: none;

        transition: none;

    }

}


/* =========================================================
   INDEX PART 10
   3AM BLOOD DONATION VAN
========================================================= */


/* =========================================================
   SECTION
========================================================= */

.donation-van-section {

    position: relative;

    padding: 125px 0;

    background: var(--white);

    overflow: hidden;

}


/* =========================================================
   MAIN WRAPPER
========================================================= */

.donation-van-wrapper {

    position: relative;

    display: grid;

    grid-template-columns: 1fr 1fr;

    min-height: 590px;

    border-radius: 22px;

    background: var(--grey-50);

    overflow: hidden;

    border:
        1px solid
        var(--grey-200);

}


/* =========================================================
   VISUAL
========================================================= */

.donation-van-visual {

    position: relative;

    min-height: 590px;

    overflow: hidden;

    background: var(--black);

}


.donation-van-visual img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    transition:
        transform 1s ease;

}


.donation-van-wrapper:hover
.donation-van-visual img {

    transform: scale(1.035);

}


.donation-van-overlay {

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            180deg,
            rgba(0, 0, 0, 0.10),
            rgba(0, 0, 0, 0.68)
        );

}


/* =========================================================
   STATUS LABEL
========================================================= */

.van-status {

    position: absolute;

    top: 25px;

    left: 25px;

    display: flex;

    align-items: center;

    gap: 8px;

    padding: 9px 13px;

    border-radius: 30px;

    background:
        rgba(0, 0, 0, 0.65);

    color: var(--white);

    backdrop-filter: blur(8px);

    font-family: var(--font-heading);

    font-size: 7px;

    font-weight: 800;

    letter-spacing: 1.4px;

}


.van-status-dot {

    width: 7px;

    height: 7px;

    border-radius: 50%;

    background: var(--orange);

    box-shadow:
        0 0 0 5px
        rgba(244, 123, 32, 0.15);

    animation:
        vanPulse 2s infinite;

}


@keyframes vanPulse {

    0% {

        box-shadow:
            0 0 0 0
            rgba(244, 123, 32, 0.35);

    }

    70% {

        box-shadow:
            0 0 0 8px
            rgba(244, 123, 32, 0);

    }

    100% {

        box-shadow:
            0 0 0 0
            rgba(244, 123, 32, 0);

    }

}


/* =========================================================
   IMPACT BADGE
========================================================= */

.van-impact-badge {

    position: absolute;

    left: 25px;

    bottom: 25px;

    display: flex;

    align-items: center;

    gap: 12px;

    padding: 15px 17px;

    border:
        1px solid
        rgba(255, 255, 255, 0.10);

    border-radius: 12px;

    background:
        rgba(0, 0, 0, 0.62);

    backdrop-filter: blur(10px);

}


.van-impact-badge > i {

    width: 38px;

    height: 38px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 9px;

    background:
        rgba(244, 123, 32, 0.15);

    color: var(--orange);

    font-size: 14px;

}


.van-impact-badge span {

    display: block;

    margin-bottom: 4px;

    color: var(--orange);

    font-family: var(--font-heading);

    font-size: 6px;

    font-weight: 800;

    letter-spacing: 1.4px;

}


.van-impact-badge strong {

    display: block;

    color: var(--white);

    font-size: 10px;

    font-weight: 600;

}


/* =========================================================
   CONTENT
========================================================= */

.donation-van-content {

    display: flex;

    flex-direction: column;

    justify-content: center;

    padding: 65px;

}


.donation-van-content .section-eyebrow {

    margin-bottom: 20px;

}


.donation-van-content h2 {

    max-width: 500px;

    margin-bottom: 20px;

    color: var(--black);

    font-size:
        clamp(40px, 4.2vw, 58px);

    line-height: 1.04;

    letter-spacing: -2.5px;

}


.donation-van-content h2 strong {

    color: var(--orange);

}


.donation-van-content > p {

    max-width: 530px;

    margin-bottom: 30px;

    color: var(--grey-500);

    font-size: 12px;

    line-height: 1.85;

}


/* =========================================================
   FEATURES
========================================================= */

.van-features {

    display: flex;

    flex-direction: column;

    gap: 14px;

    margin-bottom: 30px;

}


.van-feature {

    display: flex;

    align-items: flex-start;

    gap: 13px;

}


.van-feature-icon {

    width: 37px;

    height: 37px;

    flex-shrink: 0;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 9px;

    background: var(--orange-light);

    color: var(--orange);

    font-size: 11px;

    transition:
        transform 0.3s ease,
        background 0.3s ease;

}


.van-feature:hover
.van-feature-icon {

    transform:
        translateY(-2px);

    background: var(--orange);

    color: var(--white);

}


.van-feature h3 {

    margin-bottom: 3px;

    color: var(--black);

    font-size: 12px;

}


.van-feature p {

    max-width: 420px;

    color: var(--grey-500);

    font-size: 9px;

    line-height: 1.6;

}


/* =========================================================
   ACTIONS
========================================================= */

.van-actions {

    display: flex;

    align-items: center;

    gap: 22px;

}


.van-secondary-link {

    display: inline-flex;

    align-items: center;

    gap: 8px;

    color: var(--black);

    font-family: var(--font-heading);

    font-size: 8px;

    font-weight: 800;

    text-transform: uppercase;

    transition:
        gap 0.3s ease,
        color 0.3s ease;

}


.van-secondary-link i {

    color: var(--orange);

}


.van-secondary-link:hover {

    gap: 13px;

    color: var(--orange);

}


/* =========================================================
   BOTTOM MESSAGE
========================================================= */

.van-bottom-message {

    display: grid;

    grid-template-columns:
        auto 1fr 1fr;

    align-items: center;

    gap: 20px;

    margin-top: 18px;

    padding: 23px 28px;

    border:
        1px solid
        rgba(244, 123, 32, 0.18);

    border-radius: 14px;

    background: var(--orange-soft);

}


.van-bottom-icon {

    width: 45px;

    height: 45px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 11px;

    background: var(--orange);

    color: var(--white);

    font-size: 14px;

}


.van-bottom-message span {

    display: block;

    margin-bottom: 4px;

    color: var(--orange);

    font-family: var(--font-heading);

    font-size: 6px;

    font-weight: 800;

    letter-spacing: 1.6px;

}


.van-bottom-message h3 {

    color: var(--black);

    font-size: 15px;

}


.van-bottom-message > p {

    color: var(--grey-500);

    font-size: 10px;

    line-height: 1.7;

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 950px) {

    .donation-van-section {

        padding: 95px 0;

    }


    .donation-van-wrapper {

        grid-template-columns: 1fr;

    }


    .donation-van-visual {

        min-height: 470px;

    }


    .donation-van-content {

        padding: 50px;

    }


    .van-bottom-message {

        grid-template-columns:
            auto 1fr;

    }


    .van-bottom-message > p {

        grid-column: 2;

    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 650px) {

    .donation-van-section {

        padding: 75px 0;

    }


    .donation-van-wrapper {

        border-radius: 17px;

    }


    .donation-van-visual {

        min-height: 330px;

    }


    .donation-van-content {

        padding: 35px 23px;

    }


    .donation-van-content h2 {

        font-size: 39px;

        letter-spacing: -2px;

    }


    .donation-van-content > p {

        font-size: 11px;

    }


    .van-impact-badge {

        left: 17px;

        bottom: 17px;

    }


    .van-status {

        top: 17px;

        left: 17px;

    }


    .van-actions {

        align-items: flex-start;

        flex-direction: column;

        gap: 17px;

    }


    .van-actions .btn {

        width: 100%;

        justify-content: center;

    }


    .van-bottom-message {

        grid-template-columns: 1fr;

        gap: 13px;

        padding: 22px;

    }


    .van-bottom-message > p {

        grid-column: auto;

    }

}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    .van-status-dot,
    .donation-van-visual img,
    .van-feature-icon,
    .van-secondary-link {

        animation: none;

        transition: none;

    }

}


/* =========================================================
   INDEX PART 11
   MISSION / VISION / VALUES
========================================================= */


/* =========================================================
   SECTION
========================================================= */

.foundation-identity-section {

    position: relative;

    padding: 125px 0;

    background: var(--grey-50);

    overflow: hidden;

}


.foundation-identity-section::before {

    content: "";

    position: absolute;

    width: 500px;

    height: 500px;

    left: -330px;

    top: 300px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(244, 123, 32, 0.08),
            rgba(244, 123, 32, 0) 70%
        );

    pointer-events: none;

}


/* =========================================================
   INTRO
========================================================= */

.foundation-identity-intro {

    position: relative;

    z-index: 2;

    display: grid;

    grid-template-columns: 1fr 0.72fr;

    align-items: end;

    gap: 80px;

    margin-bottom: 55px;

}


.foundation-identity-intro h2 {

    max-width: 700px;

    color: var(--black);

    font-size:
        clamp(40px, 5vw, 63px);

    line-height: 1.04;

    letter-spacing: -3px;

}


.foundation-identity-intro h2 strong {

    color: var(--orange);

}


.foundation-identity-intro > p {

    max-width: 420px;

    color: var(--grey-500);

    font-size: 12px;

    line-height: 1.85;

}


/* =========================================================
   MISSION / VISION FEATURE
========================================================= */

.identity-feature {

    position: relative;

    z-index: 2;

    display: grid;

    grid-template-columns:
        45px 60px 1fr;

    align-items: center;

    gap: 25px;

    min-height: 250px;

    margin-bottom: 14px;

    padding: 40px 45px;

    border-radius: 18px;

    background: var(--white);

    border:
        1px solid
        var(--grey-200);

    overflow: hidden;

    transition:
        transform 0.4s ease,
        box-shadow 0.4s ease,
        border-color 0.4s ease;

}


.identity-feature:hover {

    transform:
        translateY(-5px);

    border-color:
        rgba(244, 123, 32, 0.25);

    box-shadow:
        0 25px 60px
        rgba(0, 0, 0, 0.07);

}


/* =========================================================
   NUMBER
========================================================= */

.identity-feature-number {

    align-self: flex-start;

    padding-top: 5px;

    color: var(--orange);

    font-family: var(--font-heading);

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 1px;

}


/* =========================================================
   ICON
========================================================= */

.identity-feature-icon {

    width: 60px;

    height: 60px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 15px;

    background: var(--orange-light);

    color: var(--orange);

    font-size: 20px;

    transition:
        transform 0.4s ease,
        background 0.4s ease,
        color 0.4s ease;

}


.identity-feature:hover
.identity-feature-icon {

    transform:
        rotate(-5deg)
        scale(1.05);

    background: var(--orange);

    color: var(--white);

}


/* =========================================================
   CONTENT
========================================================= */

.identity-feature-content {

    position: relative;

    z-index: 2;

}


.identity-feature-content span {

    display: block;

    margin-bottom: 9px;

    color: var(--orange);

    font-family: var(--font-heading);

    font-size: 7px;

    font-weight: 800;

    letter-spacing: 1.8px;

}


.identity-feature-content h3 {

    max-width: 720px;

    margin-bottom: 12px;

    color: var(--black);

    font-size:
        clamp(22px, 2.5vw, 32px);

    line-height: 1.2;

    letter-spacing: -0.8px;

}


.identity-feature-content p {

    max-width: 720px;

    color: var(--grey-500);

    font-size: 11px;

    line-height: 1.85;

}


/* =========================================================
   DECORATIVE SYMBOL
========================================================= */

.identity-feature-symbol {

    position: absolute;

    right: -45px;

    bottom: -65px;

    color:
        rgba(244, 123, 32, 0.055);

    font-size: 190px;

    transform:
        rotate(-10deg);

    transition:
        transform 0.6s ease,
        color 0.6s ease;

}


.identity-feature:hover
.identity-feature-symbol {

    transform:
        rotate(0deg)
        scale(1.08);

    color:
        rgba(244, 123, 32, 0.08);

}


/* =========================================================
   VALUES
========================================================= */

.identity-values {

    position: relative;

    z-index: 2;

    margin-top: 45px;

    padding: 45px;

    border-radius: 18px;

    background: var(--black);

    overflow: hidden;

}


.identity-values::before {

    content: "";

    position: absolute;

    width: 400px;

    height: 400px;

    right: -250px;

    top: -250px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(244, 123, 32, 0.18),
            rgba(244, 123, 32, 0) 70%
        );

}


/* =========================================================
   VALUES HEADER
========================================================= */

.identity-values-header {

    position: relative;

    z-index: 2;

    display: grid;

    grid-template-columns: 1fr 0.7fr;

    gap: 60px;

    align-items: end;

    margin-bottom: 35px;

}


.identity-values-header > div > span {

    display: block;

    margin-bottom: 8px;

    color: var(--orange);

    font-family: var(--font-heading);

    font-size: 7px;

    font-weight: 800;

    letter-spacing: 2px;

}


.identity-values-header h3 {

    color: var(--white);

    font-size:
        clamp(28px, 3vw, 38px);

    line-height: 1.1;

    letter-spacing: -1px;

}


.identity-values-header > p {

    max-width: 380px;

    color:
        rgba(255, 255, 255, 0.45);

    font-size: 11px;

    line-height: 1.8;

}


/* =========================================================
   VALUES GRID
========================================================= */

.identity-values-grid {

    position: relative;

    z-index: 2;

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    border-top:
        1px solid
        rgba(255, 255, 255, 0.08);

    border-left:
        1px solid
        rgba(255, 255, 255, 0.08);

}


.identity-value {

    min-height: 180px;

    padding: 25px;

    border-right:
        1px solid
        rgba(255, 255, 255, 0.08);

    border-bottom:
        1px solid
        rgba(255, 255, 255, 0.08);

    transition:
        background 0.35s ease;

}


.identity-value:hover {

    background:
        rgba(244, 123, 32, 0.055);

}


/* =========================================================
   VALUE ICON
========================================================= */

.identity-value-icon {

    width: 37px;

    height: 37px;

    margin-bottom: 18px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 9px;

    background:
        rgba(244, 123, 32, 0.11);

    color: var(--orange);

    font-size: 11px;

    transition:
        transform 0.35s ease,
        background 0.35s ease;

}


.identity-value:hover
.identity-value-icon {

    transform:
        rotate(-6deg);

    background: var(--orange);

    color: var(--white);

}


/* =========================================================
   VALUE CONTENT
========================================================= */

.identity-value h4 {

    margin-bottom: 7px;

    color: var(--white);

    font-size: 13px;

}


.identity-value p {

    max-width: 230px;

    color:
        rgba(255, 255, 255, 0.40);

    font-size: 9px;

    line-height: 1.7;

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 950px) {

    .foundation-identity-section {

        padding: 95px 0;

    }


    .foundation-identity-intro {

        grid-template-columns: 1fr;

        gap: 25px;

    }


    .identity-feature {

        grid-template-columns:
            40px 55px 1fr;

        padding: 35px;

    }


    .identity-values {

        padding: 35px;

    }


    .identity-values-header {

        grid-template-columns: 1fr;

        gap: 20px;

    }


    .identity-values-grid {

        grid-template-columns:
            repeat(2, 1fr);

    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 650px) {

    .foundation-identity-section {

        padding: 75px 0;

    }


    .foundation-identity-intro {

        margin-bottom: 35px;

    }


    .foundation-identity-intro h2 {

        font-size: 39px;

        letter-spacing: -2px;

    }


    .foundation-identity-intro > p {

        font-size: 11px;

    }


    .identity-feature {

        grid-template-columns: 1fr;

        gap: 16px;

        min-height: auto;

        padding: 28px 23px;

    }


    .identity-feature-number {

        padding-top: 0;

    }


    .identity-feature-icon {

        width: 48px;

        height: 48px;

        border-radius: 12px;

        font-size: 16px;

    }


    .identity-feature-content h3 {

        font-size: 23px;

    }


    .identity-feature-content p {

        font-size: 10px;

    }


    .identity-feature-symbol {

        font-size: 130px;

    }


    .identity-values {

        padding: 28px 20px;

    }


    .identity-values-header h3 {

        font-size: 28px;

    }


    .identity-values-grid {

        grid-template-columns: 1fr;

    }


    .identity-value {

        min-height: auto;

        padding: 22px;

    }

}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    .identity-feature,
    .identity-feature-icon,
    .identity-feature-symbol,
    .identity-value,
    .identity-value-icon {

        transition: none;

    }

}


/* =========================================================
   INDEX PART 12
   MEET OUR TEAM
========================================================= */


/* =========================================================
   SECTION
========================================================= */

.home-team-section {

    position: relative;

    padding: 125px 0;

    background: var(--white);

    overflow: hidden;

}


/* =========================================================
   HEADER
========================================================= */

.home-team-header {

    display: grid;

    grid-template-columns: 1fr 0.65fr;

    align-items: end;

    gap: 70px;

    margin-bottom: 55px;

}


.home-team-header h2 {

    max-width: 680px;

    color: var(--black);

    font-size:
        clamp(40px, 5vw, 62px);

    line-height: 1.03;

    letter-spacing: -3px;

}


.home-team-header h2 strong {

    display: block;

    color: var(--orange);

}


.home-team-header-right {

    max-width: 430px;

}


.home-team-header-right p {

    margin-bottom: 20px;

    color: var(--grey-500);

    font-size: 11px;

    line-height: 1.85;

}


/* =========================================================
   VIEW ALL LINK
========================================================= */

.team-view-all {

    display: inline-flex;

    align-items: center;

    gap: 9px;

    color: var(--black);

    font-family: var(--font-heading);

    font-size: 8px;

    font-weight: 800;

    letter-spacing: 0.5px;

    text-transform: uppercase;

    transition:
        color 0.3s ease,
        gap 0.3s ease;

}


.team-view-all i {

    color: var(--orange);

}


.team-view-all:hover {

    gap: 14px;

    color: var(--orange);

}


/* =========================================================
   TEAM GRID
========================================================= */

.home-team-grid {

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 14px;

}


/* =========================================================
   TEAM CARD
========================================================= */

.home-team-card {

    position: relative;

    overflow: hidden;

}


.home-team-image {

    position: relative;

    height: 370px;

    overflow: hidden;

    border-radius: 14px;

    background: var(--grey-200);

}


.home-team-image img {

    width: 100%;

    height: 100%;

    object-fit: cover;


    transform: scale(1.01);

    transition:
        transform 0.7s ease,
        filter 0.7s ease;

}


.home-team-card:hover
.home-team-image img {

    transform: scale(1.06);

    

}


/* =========================================================
   IMAGE OVERLAY
========================================================= */

.home-team-image-overlay {

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            180deg,
            rgba(0, 0, 0, 0.03),
            rgba(0, 0, 0, 0.62)
        );

    pointer-events: none;

}


/* =========================================================
   NUMBER
========================================================= */

.home-team-number {

    position: absolute;

    top: 17px;

    left: 17px;

    width: 30px;

    height: 30px;

    display: flex;

    align-items: center;

    justify-content: center;

    border:
        1px solid
        rgba(255, 255, 255, 0.22);

    border-radius: 50%;

    background:
        rgba(0, 0, 0, 0.30);

    color: var(--white);

    backdrop-filter: blur(6px);

    font-family: var(--font-heading);

    font-size: 7px;

    font-weight: 800;

}


/* =========================================================
   SOCIAL LINKS
========================================================= */

.home-team-socials {

    position: absolute;

    right: 15px;

    bottom: 15px;

    display: flex;

    flex-direction: column;

    gap: 6px;

    opacity: 0;

    transform:
        translateY(10px);

    transition:
        opacity 0.35s ease,
        transform 0.35s ease;

}


.home-team-card:hover
.home-team-socials {

    opacity: 1;

    transform:
        translateY(0);

}


.home-team-socials a {

    width: 31px;

    height: 31px;

    display: flex;

    align-items: center;

    justify-content: center;

    border:
        1px solid
        rgba(255, 255, 255, 0.15);

    border-radius: 50%;

    background:
        rgba(0, 0, 0, 0.50);

    color: var(--white);

    backdrop-filter: blur(6px);

    font-size: 9px;

    transition:
        background 0.3s ease,
        color 0.3s ease,
        transform 0.3s ease;

}


.home-team-socials a:hover {

    background: var(--orange);

    color: var(--white);

    transform:
        scale(1.08);

}


/* =========================================================
   TEAM INFORMATION
========================================================= */

.home-team-info {

    display: flex;

    align-items: flex-start;

    justify-content: space-between;

    gap: 10px;

    padding: 18px 2px 0;

}


.home-team-info h3 {

    margin-bottom: 5px;

    color: var(--black);

    font-size: 14px;

    line-height: 1.25;

}


.home-team-info span {

    color: var(--orange);

    font-family: var(--font-heading);

    font-size: 6px;

    font-weight: 800;

    letter-spacing: 1.4px;

}


.home-team-info > i {

    margin-top: 3px;

    color: var(--grey-300);

    font-size: 10px;

    transition:
        color 0.3s ease,
        transform 0.3s ease;

}


.home-team-card:hover
.home-team-info > i {

    color: var(--orange);

    transform:
        translate(2px, -2px);

}


/* =========================================================
   BIO
========================================================= */

.home-team-bio {

    max-width: 280px;

    margin-top: 10px;

    color: var(--grey-500);

    font-size: 9px;

    line-height: 1.7;

}


/* =========================================================
   TEAM CTA
========================================================= */

.home-team-cta {

    display: grid;

    grid-template-columns:
        auto 1fr auto;

    align-items: center;

    gap: 18px;

    margin-top: 45px;

    padding: 25px 28px;

    border-radius: 14px;

    background: var(--black);

}


.home-team-cta-icon {

    width: 47px;

    height: 47px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 11px;

    background:
        rgba(244, 123, 32, 0.13);

    color: var(--orange);

    font-size: 15px;

}


.home-team-cta-text span {

    display: block;

    margin-bottom: 5px;

    color: var(--orange);

    font-family: var(--font-heading);

    font-size: 6px;

    font-weight: 800;

    letter-spacing: 1.7px;

}


.home-team-cta-text h3 {

    color: var(--white);

    font-size: 15px;

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1050px) {

    .home-team-grid {

        grid-template-columns:
            repeat(2, 1fr);

    }


    .home-team-image {

        height: 420px;

    }

}


@media (max-width: 950px) {

    .home-team-section {

        padding: 95px 0;

    }


    .home-team-header {

        grid-template-columns: 1fr;

        gap: 25px;

    }


    .home-team-header-right {

        max-width: 600px;

    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    .home-team-section {

        padding: 75px 0;

    }


    .home-team-header {

        margin-bottom: 35px;

    }


    .home-team-header h2 {

        font-size: 39px;

        letter-spacing: -2px;

    }


    .home-team-header h2 strong {

        display: inline;

    }


    .home-team-header-right p {

        font-size: 10px;

    }


    .home-team-grid {

        grid-template-columns: 1fr;

        gap: 30px;

    }


    .home-team-image {

        height: 430px;

    }


    .home-team-socials {

        opacity: 1;

        transform: translateY(0);

    }


    .home-team-info h3 {

        font-size: 15px;

    }


    .home-team-bio {

        font-size: 9px;

    }


    .home-team-cta {

        grid-template-columns:
            auto 1fr;

        gap: 14px;

        padding: 22px;

    }


    .home-team-cta .btn {

        grid-column: 1 / -1;

        width: 100%;

        justify-content: center;

        margin-top: 5px;

    }

}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    .home-team-image img,
    .home-team-socials,
    .home-team-socials a,
    .home-team-info > i,
    .team-view-all {

        transition: none;

    }

}


/* =========================================================
   INDEX PART 13
   PARTNERS & SPONSORS
========================================================= */


/* =========================================================
   SECTION
========================================================= */

.home-partners-section {

    position: relative;

    padding: 125px 0;

    background: var(--grey-50);

    overflow: hidden;

}


.home-partners-section::after {

    content: "";

    position: absolute;

    width: 600px;

    height: 600px;

    right: -400px;

    top: 100px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(244, 123, 32, 0.08),
            rgba(244, 123, 32, 0) 70%
        );

    pointer-events: none;

}


/* =========================================================
   HEADER
========================================================= */

.home-partners-header {

    position: relative;

    z-index: 2;

    display: grid;

    grid-template-columns: 1fr 0.65fr;

    align-items: end;

    gap: 70px;

    margin-bottom: 50px;

}


.home-partners-header h2 {

    max-width: 650px;

    color: var(--black);

    font-size:
        clamp(40px, 5vw, 62px);

    line-height: 1.03;

    letter-spacing: -3px;

}


.home-partners-header h2 strong {

    color: var(--orange);

}


.home-partners-header > p {

    max-width: 420px;

    color: var(--grey-500);

    font-size: 11px;

    line-height: 1.85;

}


/* =========================================================
   PARTNERSHIP OPTIONS
========================================================= */

.partnership-options {

    position: relative;

    z-index: 2;

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 12px;

}


/* =========================================================
   PARTNERSHIP CARD
========================================================= */

.partnership-card {

    position: relative;

    display: flex;

    flex-direction: column;

    min-height: 360px;

    padding: 27px;

    border:
        1px solid
        var(--grey-200);

    border-radius: 15px;

    /* background: var(--white); */

    overflow: hidden;

    transition:
        transform 0.4s ease,
        background 0.4s ease,
        border-color 0.4s ease,
        box-shadow 0.4s ease;

}


.partnership-card::before {

    content: "";

    position: absolute;

    width: 160px;

    height: 160px;

    right: -100px;

    top: -100px;

    border-radius: 50%;

    background:
        rgba(244, 123, 32, 0.10);

    transition:
        transform 0.5s ease;

}


.partnership-card:hover {

    transform:
        translateY(-7px);

    border-color:
        rgba(244, 123, 32, 0.28);

    box-shadow:
        0 25px 60px
        rgba(0, 0, 0, 0.08);

}


.partnership-card:hover::before {

    transform: scale(2.4);

}


/* =========================================================
   PRIMARY CARD
========================================================= */

.partnership-card-primary {

    background: var(--black);

    border-color: var(--black);

}


.partnership-card-primary
.partnership-card-content h3 {

    color: var(--white);

}


.partnership-card-primary
.partnership-card-content p {

    color:
        rgba(16, 1, 1, 0.43);

}


.partnership-card-primary
.partnership-card-footer {

    border-top-color:
        rgba(255, 255, 255, 0.10);

}


.partnership-card-primary
.partnership-card-footer span {

    color: var(--white);

}


/* =========================================================
   CARD TOP
========================================================= */

.partnership-card-top {

    position: relative;

    z-index: 2;

    display: flex;

    align-items: flex-start;

    justify-content: space-between;

}


.partnership-icon {

    width: 46px;

    height: 46px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 11px;

    background: var(--orange-light);

    color: var(--orange);

    font-size: 14px;

    transition:
        transform 0.4s ease,
        background 0.4s ease,
        color 0.4s ease;

}


.partnership-card:hover
.partnership-icon {

    transform:
        rotate(-6deg)
        scale(1.05);

    background: var(--orange);

    color: var(--white);

}


.partnership-number {

    color: var(--grey-300);

    font-family: var(--font-heading);

    font-size: 7px;

    font-weight: 800;

    letter-spacing: 1px;

}


.partnership-card-primary
.partnership-number {

    color:
        rgba(255, 255, 255, 0.25);

}


/* =========================================================
   CARD CONTENT
========================================================= */

.partnership-card-content {

    position: relative;

    z-index: 2;

    margin-top: auto;

    margin-bottom: 25px;

}


.partnership-card-content > span {

    display: block;

    margin-bottom: 9px;

    color: var(--orange);

    font-family: var(--font-heading);

    font-size: 6px;

    font-weight: 800;

    letter-spacing: 1.5px;

}


.partnership-card-content h3 {

    margin-bottom: 12px;

    color: var(--black);

    font-size: 21px;

    line-height: 1.15;

    letter-spacing: -0.4px;

}


.partnership-card-content p {

    color: var(--grey-500);

    font-size: 9px;

    line-height: 1.75;

}


/* =========================================================
   CARD FOOTER
========================================================= */

.partnership-card-footer {

    position: relative;

    z-index: 2;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 10px;

    padding-top: 17px;

    border-top:
        1px solid
        var(--grey-200);

}


.partnership-card-footer span {

    color: var(--black);

    font-family: var(--font-heading);

    font-size: 7px;

    font-weight: 800;

    text-transform: uppercase;

}


.partnership-card-footer i {

    color: var(--orange);

    font-size: 9px;

    transition:
        transform 0.3s ease;

}


.partnership-card:hover
.partnership-card-footer i {

    transform:
        translateX(5px);

}


/* =========================================================
   PARTNER NETWORK
========================================================= */

.partner-network {

    position: relative;

    z-index: 2;

    margin-top: 55px;

    padding: 40px;

    border:
        1px solid
        var(--grey-200);

    border-radius: 17px;

    background: var(--white);

}


.partner-network-header {

    display: grid;

    grid-template-columns: 1fr 0.6fr;

    align-items: end;

    gap: 50px;

    margin-bottom: 30px;

}


.partner-network-header span {

    display: block;

    margin-bottom: 7px;

    color: var(--orange);

    font-family: var(--font-heading);

    font-size: 6px;

    font-weight: 800;

    letter-spacing: 1.8px;

}


.partner-network-header h3 {

    color: var(--black);

    font-size: 23px;

    letter-spacing: -0.6px;

}


.partner-network-header > p {

    color: var(--grey-500);

    font-size: 9px;

    line-height: 1.7;

}


/* =========================================================
   LOGO GRID
========================================================= */

.partner-logo-grid {

    display: grid;

    grid-template-columns:
        repeat(6, 1fr);

    border-top:
        1px solid
        var(--grey-200);

    border-left:
        1px solid
        var(--grey-200);

}


.partner-logo {

    height: 95px;

    display: flex;

    align-items: center;

    justify-content: center;

    padding: 20px;

    border-right:
        1px solid
        var(--grey-200);

    border-bottom:
        1px solid
        var(--grey-200);

    /* background: var(--white);

    transition:
        background 0.3s ease; */

}


.partner-logo:hover {

    background: var(--grey-50);

}


.partner-logo img {

    max-width: 110px;

    max-height: 42px;

    width: auto;

    height: auto;

    object-fit: contain;

    /* filter: grayscale(100%);

    opacity: 0;

    transition:
        filter 0.35s ease,
        opacity 0.35s ease,
        transform 0.35s ease; */

}


.partner-logo:hover img {

    filter: grayscale(0%);

    opacity: 1;

    transform: scale(1.05);

}


/* =========================================================
   CORPORATE CTA
========================================================= */

.corporate-partner-cta {

    position: relative;

    z-index: 2;

    display: grid;

    grid-template-columns:
        auto 1fr auto;

    align-items: center;

    gap: 20px;

    margin-top: 15px;

    padding: 28px;

    border-radius: 15px;

    background: var(--black);

    overflow: hidden;

}


.corporate-partner-cta::before {

    content: "";

    position: absolute;

    width: 350px;

    height: 350px;

    right: -190px;

    top: -220px;

    border-radius: 50%;

    background:
        rgba(244, 123, 32, 0.13);

}


.corporate-partner-cta-icon {

    position: relative;

    z-index: 2;

    width: 49px;

    height: 49px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 11px;

    background:
        rgba(244, 123, 32, 0.12);

    color: var(--orange);

    font-size: 15px;

}


.corporate-partner-cta-content {

    position: relative;

    z-index: 2;

}


.corporate-partner-cta-content span {

    display: block;

    margin-bottom: 5px;

    color: var(--orange);

    font-family: var(--font-heading);

    font-size: 6px;

    font-weight: 800;

    letter-spacing: 1.7px;

}


.corporate-partner-cta-content h3 {

    margin-bottom: 6px;

    color: var(--white);

    font-size: 17px;

}


.corporate-partner-cta-content p {

    max-width: 650px;

    color:
        rgba(255, 255, 255, 0.42);

    font-size: 9px;

    line-height: 1.7;

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1100px) {

    .partnership-options {

        grid-template-columns:
            repeat(2, 1fr);

    }


    .partnership-card {

        min-height: 330px;

    }


    .partner-logo-grid {

        grid-template-columns:
            repeat(3, 1fr);

    }

}


@media (max-width: 950px) {

    .home-partners-section {

        padding: 95px 0;

    }


    .home-partners-header {

        grid-template-columns: 1fr;

        gap: 25px;

    }


    .partner-network-header {

        grid-template-columns: 1fr;

        gap: 15px;

    }


    .corporate-partner-cta {

        grid-template-columns:
            auto 1fr;

    }


    .corporate-partner-cta .btn {

        grid-column: 1 / -1;

    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    .home-partners-section {

        padding: 75px 0;

    }


    .home-partners-header h2 {

        font-size: 39px;

        letter-spacing: -2px;

    }


    .home-partners-header > p {

        font-size: 10px;

    }


    .partnership-options {

        grid-template-columns: 1fr;

        gap: 10px;

    }


    .partnership-card {

        min-height: 320px;

        padding: 23px;

    }


    .partner-network {

        padding: 23px 18px;

    }


    .partner-network-header h3 {

        font-size: 21px;

    }


    .partner-logo-grid {

        grid-template-columns:
            repeat(2, 1fr);

    }


    .partner-logo {

        height: 80px;

    }


    .partner-logo img {

        max-width: 90px;

    }


    .corporate-partner-cta {

        grid-template-columns:
            1fr;

        padding: 23px;

    }


    .corporate-partner-cta .btn {

        width: 100%;

        justify-content: center;

    }

}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    .partnership-card,
    .partnership-card::before,
    .partnership-icon,
    .partnership-card-footer i,
    .partner-logo,
    .partner-logo img {

        transition: none;

    }

}

/* =========================================================
   INDEX PART 14
   LATEST FROM 3AM / STORIES
========================================================= */


/* =========================================================
   SECTION
========================================================= */

.home-stories-section {

    position: relative;

    padding: 125px 0;

    background: var(--white);

    overflow: hidden;

}


/* =========================================================
   HEADER
========================================================= */

.home-stories-header {

    display: grid;

    grid-template-columns: 1fr 0.65fr;

    align-items: end;

    gap: 70px;

    margin-bottom: 50px;

}


.home-stories-header h2 {

    max-width: 650px;

    color: var(--black);

    font-size:
        clamp(40px, 5vw, 62px);

    line-height: 1.03;

    letter-spacing: -3px;

}


.home-stories-header h2 strong {

    color: var(--orange);

}


.home-stories-header-right {

    max-width: 420px;

}


.home-stories-header-right p {

    margin-bottom: 20px;

    color: var(--grey-500);

    font-size: 11px;

    line-height: 1.85;

}


/* =========================================================
   VIEW ALL
========================================================= */

.stories-view-all {

    display: inline-flex;

    align-items: center;

    gap: 9px;

    color: var(--black);

    font-family: var(--font-heading);

    font-size: 8px;

    font-weight: 800;

    text-transform: uppercase;

    transition:
        color 0.3s ease,
        gap 0.3s ease;

}


.stories-view-all i {

    color: var(--orange);

}


.stories-view-all:hover {

    gap: 14px;

    color: var(--orange);

}


/* =========================================================
   FEATURED STORY
========================================================= */

.featured-story {

    display: grid;

    grid-template-columns:
        1.2fr 0.8fr;

    min-height: 480px;

    margin-bottom: 14px;

    border-radius: 18px;

    background: var(--black);

    overflow: hidden;

}


.featured-story-image {

    position: relative;

    min-height: 480px;

    overflow: hidden;

}


.featured-story-image img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    transform: scale(1.01);

    transition:
        transform 0.8s ease;

}


.featured-story:hover
.featured-story-image img {

    transform: scale(1.06);

}


/* =========================================================
   IMAGE OVERLAY
========================================================= */

.featured-story-overlay {

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            180deg,
            rgba(0, 0, 0, 0.02),
            rgba(0, 0, 0, 0.55)
        );

}


/* =========================================================
   FEATURED LABEL
========================================================= */

.featured-story-label {

    position: absolute;

    top: 22px;

    left: 22px;

    padding: 8px 12px;

    border:
        1px solid
        rgba(255, 255, 255, 0.20);

    border-radius: 30px;

    background:
        rgba(0, 0, 0, 0.35);

    color: var(--white);

    backdrop-filter: blur(8px);

    font-family: var(--font-heading);

    font-size: 6px;

    font-weight: 800;

    letter-spacing: 1.5px;

}


/* =========================================================
   DATE
========================================================= */

.featured-story-date {

    position: absolute;

    right: 22px;

    bottom: 22px;

    width: 58px;

    height: 58px;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    border-radius: 11px;

    background: var(--orange);

    color: var(--white);

}


.featured-story-date span {

    font-family: var(--font-heading);

    font-size: 6px;

    font-weight: 800;

    letter-spacing: 1px;

}


.featured-story-date strong {

    font-family: var(--font-heading);

    font-size: 20px;

    line-height: 1;

}


/* =========================================================
   FEATURED CONTENT
========================================================= */

.featured-story-content {

    display: flex;

    flex-direction: column;

    justify-content: center;

    padding: 55px;

}


.story-meta {

    display: flex;

    align-items: center;

    flex-wrap: wrap;

    gap: 12px;

    margin-bottom: 18px;

}


.story-meta span {

    color: var(--orange);

    font-family: var(--font-heading);

    font-size: 6px;

    font-weight: 800;

    letter-spacing: 1.5px;

}


.story-meta span + span {

    padding-left: 12px;

    border-left:
        1px solid
        rgba(255, 255, 255, 0.15);

}


.featured-story-content h3 {

    max-width: 500px;

    margin-bottom: 18px;

    color: var(--white);

    font-size:
        clamp(28px, 3vw, 40px);

    line-height: 1.12;

    letter-spacing: -1px;

}


.featured-story-content > p {

    max-width: 500px;

    color:
        rgba(255, 255, 255, 0.42);

    font-size: 10px;

    line-height: 1.85;

}


/* =========================================================
   FEATURED FOOTER
========================================================= */

.featured-story-footer {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 15px;

    margin-top: 35px;

    padding-top: 20px;

    border-top:
        1px solid
        rgba(255, 255, 255, 0.10);

}


.story-read-link {

    display: inline-flex;

    align-items: center;

    gap: 9px;

    color: var(--white);

    font-family: var(--font-heading);

    font-size: 7px;

    font-weight: 800;

    text-transform: uppercase;

    transition:
        color 0.3s ease,
        gap 0.3s ease;

}


.story-read-link i {

    color: var(--orange);

}


.story-read-link:hover {

    gap: 14px;

    color: var(--orange);

}


.story-event-type {

    display: inline-flex;

    align-items: center;

    gap: 6px;

    color:
        rgba(255, 255, 255, 0.35);

    font-family: var(--font-heading);

    font-size: 6px;

    font-weight: 800;

    letter-spacing: 1px;

}


.story-event-type i {

    color: var(--orange);

}


/* =========================================================
   STORY GRID
========================================================= */

.stories-grid {

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 14px;

}


/* =========================================================
   STORY CARD
========================================================= */

.story-card {

    position: relative;

    border:
        1px solid
        var(--grey-200);

    border-radius: 15px;

    background: var(--white);

    overflow: hidden;

    transition:
        transform 0.4s ease,
        box-shadow 0.4s ease,
        border-color 0.4s ease;

}


.story-card:hover {

    transform:
        translateY(-6px);

    border-color:
        rgba(244, 123, 32, 0.25);

    box-shadow:
        0 25px 55px
        rgba(0, 0, 0, 0.07);

}


/* =========================================================
   CARD IMAGE
========================================================= */

.story-card-image {

    position: relative;

    display: block;

    height: 235px;

    overflow: hidden;

}


.story-card-image img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    transition:
        transform 0.7s ease;

}


.story-card:hover
.story-card-image img {

    transform:
        scale(1.06);

}


.story-card-overlay {

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            180deg,
            rgba(0, 0, 0, 0.02),
            rgba(0, 0, 0, 0.45)
        );

}


.story-card-category {

    position: absolute;

    left: 16px;

    bottom: 16px;

    padding: 7px 10px;

    border-radius: 30px;

    background: var(--orange);

    color: var(--white);

    font-family: var(--font-heading);

    font-size: 5px;

    font-weight: 800;

    letter-spacing: 1.2px;

}


/* =========================================================
   CARD CONTENT
========================================================= */

.story-card-content {

    padding: 22px;

}


.story-card-meta {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 10px;

    margin-bottom: 12px;

}


.story-card-meta span {

    color: var(--grey-400);

    font-family: var(--font-heading);

    font-size: 6px;

    font-weight: 800;

    letter-spacing: 0.8px;

}


.story-card-content h3 {

    margin-bottom: 10px;

    color: var(--black);

    font-size: 18px;

    line-height: 1.25;

    letter-spacing: -0.3px;

}


.story-card-content p {

    margin-bottom: 20px;

    color: var(--grey-500);

    font-size: 9px;

    line-height: 1.75;

}


/* =========================================================
   CARD LINK
========================================================= */

.story-card-link {

    display: inline-flex;

    align-items: center;

    gap: 8px;

    color: var(--black);

    font-family: var(--font-heading);

    font-size: 7px;

    font-weight: 800;

    text-transform: uppercase;

    transition:
        color 0.3s ease,
        gap 0.3s ease;

}


.story-card-link i {

    color: var(--orange);

}


.story-card-link:hover {

    gap: 13px;

    color: var(--orange);

}


/* =========================================================
   UPDATES CTA
========================================================= */

.stories-updates-cta {

    display: grid;

    grid-template-columns:
        auto 1fr auto;

    align-items: center;

    gap: 18px;

    margin-top: 45px;

    padding: 26px 28px;

    border-radius: 15px;

    background: var(--grey-50);

    border:
        1px solid
        var(--grey-200);

}


.stories-updates-icon {

    width: 47px;

    height: 47px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 11px;

    background: var(--orange-light);

    color: var(--orange);

    font-size: 14px;

}


.stories-updates-content span {

    display: block;

    margin-bottom: 5px;

    color: var(--orange);

    font-family: var(--font-heading);

    font-size: 6px;

    font-weight: 800;

    letter-spacing: 1.6px;

}


.stories-updates-content h3 {

    margin-bottom: 4px;

    color: var(--black);

    font-size: 15px;

}


.stories-updates-content p {

    color: var(--grey-500);

    font-size: 9px;

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1000px) {

    .home-stories-header {

        grid-template-columns: 1fr;

        gap: 25px;

    }


    .featured-story {

        grid-template-columns: 1fr;

    }


    .featured-story-image {

        min-height: 430px;

    }


    .featured-story-content {

        padding: 40px;

    }


    .stories-grid {

        grid-template-columns:
            repeat(2, 1fr);

    }

}


@media (max-width: 700px) {

    .home-stories-section {

        padding: 90px 0;

    }


    .stories-updates-cta {

        grid-template-columns:
            auto 1fr;

    }


    .stories-updates-cta .btn {

        grid-column: 1 / -1;

    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    .home-stories-section {

        padding: 75px 0;

    }


    .home-stories-header {

        margin-bottom: 35px;

    }


    .home-stories-header h2 {

        font-size: 39px;

        letter-spacing: -2px;

    }


    .home-stories-header-right p {

        font-size: 10px;

    }


    .featured-story {

        border-radius: 14px;

    }


    .featured-story-image {

        min-height: 340px;

    }


    .featured-story-content {

        padding: 28px 23px;

    }


    .featured-story-content h3 {

        font-size: 29px;

    }


    .featured-story-content > p {

        font-size: 9px;

    }


    .featured-story-footer {

        align-items: flex-start;

        flex-direction: column;

    }


    .stories-grid {

        grid-template-columns: 1fr;

        gap: 12px;

    }


    .story-card-image {

        height: 245px;

    }


    .story-card-content {

        padding: 20px;

    }


    .stories-updates-cta {

        grid-template-columns: 1fr;

        padding: 23px;

    }


    .stories-updates-cta .btn {

        width: 100%;

        justify-content: center;

    }

}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    .featured-story-image img,
    .stories-view-all,
    .story-read-link,
    .story-card,
    .story-card-image img,
    .story-card-link {

        transition: none;

    }

}


/* =========================================================
   INDEX PART 15
   EMERGENCY BLOOD ACCESS
========================================================= */


/* =========================================================
   SECTION
========================================================= */

.blood-emergency-section {

    position: relative;

    padding: 120px 0;

    background: var(--black);

    overflow: hidden;

}


.blood-emergency-section::before {

    content: "";

    position: absolute;

    width: 650px;

    height: 650px;

    left: -400px;

    top: -250px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(244, 123, 32, 0.17),
            rgba(244, 123, 32, 0) 70%
        );

    pointer-events: none;

}


.blood-emergency-section::after {

    content: "";

    position: absolute;

    width: 500px;

    height: 500px;

    right: -350px;

    bottom: -300px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(244, 123, 32, 0.10),
            rgba(244, 123, 32, 0) 70%
        );

    pointer-events: none;

}


/* =========================================================
   MAIN WRAPPER
========================================================= */

.blood-emergency-wrapper {

    position: relative;

    z-index: 2;

    display: grid;

    grid-template-columns: 0.85fr 1.15fr;

    gap: 70px;

    align-items: center;

}


/* =========================================================
   EYEBROW
========================================================= */

.blood-emergency-eyebrow {

    display: inline-flex;

    align-items: center;

    gap: 8px;

    margin-bottom: 20px;

    color: var(--orange);

    font-family: var(--font-heading);

    font-size: 7px;

    font-weight: 800;

    letter-spacing: 1.8px;

}


/* =========================================================
   PULSE DOT
========================================================= */

.blood-pulse-dot {

    position: relative;

    width: 7px;

    height: 7px;

    border-radius: 50%;

    background: var(--orange);

}


.blood-pulse-dot::before {

    content: "";

    position: absolute;

    inset: -5px;

    border: 1px solid var(--orange);

    border-radius: 50%;

    animation:
        bloodPulse 1.8s ease-out infinite;

}


@keyframes bloodPulse {

    0% {

        transform: scale(0.6);

        opacity: 0.9;

    }

    70% {

        transform: scale(1.7);

        opacity: 0;

    }

    100% {

        transform: scale(1.7);

        opacity: 0;

    }

}


/* =========================================================
   MAIN HEADING
========================================================= */

.blood-emergency-content h2 {

    max-width: 620px;

    margin-bottom: 20px;

    color: var(--white);

    font-size:
        clamp(42px, 5vw, 65px);

    line-height: 1.02;

    letter-spacing: -3px;

}


.blood-emergency-content h2 strong {

    color: var(--orange);

}


.blood-emergency-content > p {

    max-width: 510px;

    color:
        rgba(255, 255, 255, 0.47);

    font-size: 11px;

    line-height: 1.9;

}


/* =========================================================
   INFORMATION NOTE
========================================================= */

.blood-emergency-note {

    display: flex;

    align-items: flex-start;

    gap: 10px;

    max-width: 500px;

    margin-top: 28px;

    padding-top: 20px;

    border-top:
        1px solid
        rgba(255, 255, 255, 0.09);

}


.blood-emergency-note i {

    margin-top: 2px;

    color: var(--orange);

    font-size: 11px;

}


.blood-emergency-note span {

    color:
        rgba(255, 255, 255, 0.30);

    font-size: 8px;

    line-height: 1.7;

}


/* =========================================================
   ACTIONS
========================================================= */

.blood-emergency-actions {

    display: flex;

    flex-direction: column;

    gap: 9px;

}


/* =========================================================
   ACCESS CARD
========================================================= */

.blood-access-card {

    position: relative;

    display: grid;

    grid-template-columns: auto 1fr auto;

    align-items: center;

    gap: 18px;

    min-height: 135px;

    padding: 22px 24px;

    border:
        1px solid
        rgba(255, 255, 255, 0.09);

    border-radius: 14px;

    background:
        rgba(255, 255, 255, 0.035);

    overflow: hidden;

    transition:
        transform 0.4s ease,
        background 0.4s ease,
        border-color 0.4s ease;

}


.blood-access-card::before {

    content: "";

    position: absolute;

    width: 180px;

    height: 180px;

    right: -130px;

    top: -100px;

    border-radius: 50%;

    background:
        rgba(244, 123, 32, 0.10);

    transition:
        transform 0.5s ease;

}


.blood-access-card:hover {

    transform:
        translateX(7px);

    border-color:
        rgba(244, 123, 32, 0.35);

    background:
        rgba(244, 123, 32, 0.055);

}


.blood-access-card:hover::before {

    transform:
        scale(2);

}


/* =========================================================
   ACCESS ICON
========================================================= */

.blood-access-card-icon {

    position: relative;

    z-index: 2;

    width: 53px;

    height: 53px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 13px;

    background:
        rgba(244, 123, 32, 0.12);

    color: var(--orange);

    font-size: 16px;

    transition:
        transform 0.4s ease,
        background 0.4s ease,
        color 0.4s ease;

}


.blood-access-card:hover
.blood-access-card-icon {

    transform:
        scale(1.07)
        rotate(-5deg);

    background: var(--orange);

    color: var(--white);

}


/* =========================================================
   ACCESS CONTENT
========================================================= */

.blood-access-card-content {

    position: relative;

    z-index: 2;

}


.blood-access-card-content > span {

    display: block;

    margin-bottom: 6px;

    color: var(--orange);

    font-family: var(--font-heading);

    font-size: 6px;

    font-weight: 800;

    letter-spacing: 1.5px;

}


.blood-access-card-content h3 {

    margin-bottom: 6px;

    color: var(--white);

    font-size: 19px;

}


.blood-access-card-content p {

    max-width: 500px;

    color:
        rgba(255, 255, 255, 0.36);

    font-size: 9px;

    line-height: 1.65;

}


/* =========================================================
   ACCESS ARROW
========================================================= */

.blood-access-arrow {

    position: relative;

    z-index: 2;

    width: 35px;

    height: 35px;

    display: flex;

    align-items: center;

    justify-content: center;

    border:
        1px solid
        rgba(255, 255, 255, 0.12);

    border-radius: 50%;

    color:
        rgba(255, 255, 255, 0.45);

    font-size: 9px;

    transition:
        transform 0.35s ease,
        background 0.35s ease,
        color 0.35s ease;

}


.blood-access-card:hover
.blood-access-arrow {

    transform:
        translateX(5px);

    background: var(--orange);

    color: var(--white);

    border-color: var(--orange);

}


/* =========================================================
   EMERGENCY STRIP
========================================================= */

.blood-emergency-strip {

    position: relative;

    z-index: 2;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 30px;

    margin-top: 14px;

    padding: 23px 25px;

    border:
        1px solid
        rgba(244, 123, 32, 0.20);

    border-radius: 14px;

    background:
        rgba(244, 123, 32, 0.065);

}


.blood-emergency-strip-left {

    display: flex;

    align-items: center;

    gap: 15px;

}


.emergency-strip-icon {

    width: 43px;

    height: 43px;

    display: flex;

    align-items: center;

    justify-content: center;

    flex-shrink: 0;

    border-radius: 10px;

    background: var(--orange);

    color: var(--white);

    font-size: 13px;

}


.blood-emergency-strip-left span {

    display: block;

    margin-bottom: 5px;

    color: var(--orange);

    font-family: var(--font-heading);

    font-size: 6px;

    font-weight: 800;

    letter-spacing: 1.5px;

}


.blood-emergency-strip-left h3 {

    color: var(--white);

    font-size: 14px;

}


/* =========================================================
   STRIP LINK
========================================================= */

.emergency-strip-link {

    display: inline-flex;

    align-items: center;

    gap: 9px;

    flex-shrink: 0;

    color: var(--white);

    font-family: var(--font-heading);

    font-size: 7px;

    font-weight: 800;

    text-transform: uppercase;

    transition:
        color 0.3s ease,
        gap 0.3s ease;

}


.emergency-strip-link i {

    color: var(--orange);

}


.emergency-strip-link:hover {

    gap: 14px;

    color: var(--orange);

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1000px) {

    .blood-emergency-wrapper {

        grid-template-columns: 1fr;

        gap: 50px;

    }


    .blood-emergency-content h2 {

        max-width: 700px;

    }


    .blood-emergency-content > p {

        max-width: 650px;

    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    .blood-emergency-section {

        padding: 80px 0;

    }


    .blood-emergency-content h2 {

        font-size: 41px;

        letter-spacing: -2px;

    }


    .blood-emergency-content > p {

        font-size: 10px;

    }


    .blood-emergency-note span {

        font-size: 8px;

    }


    .blood-access-card {

        grid-template-columns:
            auto 1fr;

        padding: 20px;

    }


    .blood-access-arrow {

        position: absolute;

        right: 17px;

        top: 50%;

        transform:
            translateY(-50%);

    }


    .blood-access-card:hover
    .blood-access-arrow {

        transform:
            translate(4px, -50%);

    }


    .blood-access-card-content {

        padding-right: 25px;

    }


    .blood-access-card-content h3 {

        font-size: 17px;

    }


    .blood-access-card-content p {

        font-size: 8px;

    }


    .blood-emergency-strip {

        flex-direction: column;

        align-items: flex-start;

        padding: 21px;

    }


    .emergency-strip-link {

        padding-left: 58px;

    }

}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    .blood-pulse-dot::before {

        animation: none;

    }


    .blood-access-card,
    .blood-access-card::before,
    .blood-access-card-icon,
    .blood-access-arrow,
    .emergency-strip-link {

        transition: none;

    }

}


/* =========================================================
   INDEX PART 16
   FINAL CTA + FOOTER
========================================================= */


/* =========================================================
   FINAL IMPACT SECTION
========================================================= */

.final-impact-section {

    position: relative;

    padding: 105px 0;

    background: var(--orange);

    overflow: hidden;

}


.final-impact-section::before {

    content: "";

    position: absolute;

    width: 600px;

    height: 600px;

    right: -250px;

    top: -350px;

    border-radius: 50%;

    background:
        rgba(0, 0, 0, 0.10);

}


.final-impact-section::after {

    content: "";

    position: absolute;

    width: 350px;

    height: 350px;

    left: -200px;

    bottom: -220px;

    border-radius: 50%;

    border:
        1px solid
        rgba(255, 255, 255, 0.12);

}


/* =========================================================
   CTA WRAPPER
========================================================= */

.final-impact-wrapper {

    position: relative;

    z-index: 2;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 60px;

}


.final-impact-content {

    max-width: 850px;

}


.final-impact-eyebrow {

    color: var(--white);

}


.final-impact-eyebrow span {

    background: var(--white);

}


.final-impact-content h2 {

    max-width: 800px;

    margin-bottom: 20px;

    color: var(--white);

    font-size:
        clamp(43px, 6vw, 75px);

    line-height: 0.99;

    letter-spacing: -4px;

}


.final-impact-content h2 strong {

    color: var(--black);

}


.final-impact-content > p {

    max-width: 610px;

    color:
        rgba(255, 255, 255, 0.68);

    font-size: 11px;

    line-height: 1.9;

}


/* =========================================================
   CTA ACTIONS
========================================================= */

.final-impact-actions {

    display: flex;

    align-items: center;

    gap: 10px;

    margin-top: 30px;

}


.final-impact-actions .btn-orange {

    background: var(--black);

    color: var(--white);

}


.final-impact-actions .btn-orange:hover {

    background:
        rgba(0, 0, 0, 0.82);

}


.btn-outline-light {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 10px;

    min-height: 47px;

    padding: 0 21px;

    border:
        1px solid
        rgba(255, 255, 255, 0.45);

    border-radius: 7px;

    color: var(--white);

    font-family: var(--font-heading);

    font-size: 7px;

    font-weight: 800;

    text-transform: uppercase;

    transition:
        background 0.3s ease,
        border-color 0.3s ease,
        color 0.3s ease;

}


.btn-outline-light:hover {

    border-color: var(--white);

    background: var(--white);

    color: var(--black);

}


/* =========================================================
   CTA MARK
========================================================= */

.final-impact-mark {

    position: relative;

    width: 180px;

    height: 180px;

    flex-shrink: 0;

    display: flex;

    align-items: center;

    justify-content: center;

}


.final-impact-mark::before,
.final-impact-mark::after {

    content: "";

    position: absolute;

    inset: 0;

    border:
        1px solid
        rgba(255, 255, 255, 0.20);

    border-radius: 50%;

}


.final-impact-mark::after {

    inset: 20px;

    border-color:
        rgba(255, 255, 255, 0.15);

}


.final-impact-circle {

    position: relative;

    z-index: 2;

    width: 75px;

    height: 75px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background: var(--black);

    color: var(--orange);

    font-size: 23px;

}


.final-impact-mark > span {

    position: absolute;

    bottom: 7px;

    right: -15px;

    color:
        rgba(255, 255, 255, 0.45);

    font-family: var(--font-heading);

    font-size: 7px;

    font-weight: 900;

    letter-spacing: 4px;

}


/* =========================================================
   FOOTER
========================================================= */

.site-footer {

    position: relative;

    padding: 75px 0 0;

    background: var(--black);

    color: var(--white);

}


/* =========================================================
   FOOTER MAIN
========================================================= */

.footer-main {

    display: grid;

    grid-template-columns:
        1.45fr
        0.65fr
        0.75fr
        1fr;

    gap: 55px;

    padding-bottom: 60px;

}


/* =========================================================
   FOOTER BRAND
========================================================= */

.footer-logo {

    display: inline-flex;

    align-items: center;

    margin-bottom: 20px;

}


.footer-logo img {

    width: auto;

    max-width: 150px;

    max-height: 55px;

    object-fit: contain;

}


.footer-brand > p {

    max-width: 340px;

    margin-bottom: 23px;

    color:
        rgba(255, 255, 255, 0.38);

    font-size: 9px;

    line-height: 1.85;

}


/* =========================================================
   SOCIALS
========================================================= */

.footer-socials {

    display: flex;

    align-items: center;

    gap: 7px;

}


.footer-socials a {

    width: 32px;

    height: 32px;

    display: flex;

    align-items: center;

    justify-content: center;

    border:
        1px solid
        rgba(255, 255, 255, 0.10);

    border-radius: 50%;

    color:
        rgba(255, 255, 255, 0.48);

    font-size: 9px;

    transition:
        background 0.3s ease,
        color 0.3s ease,
        border-color 0.3s ease,
        transform 0.3s ease;

}


.footer-socials a:hover {

    background: var(--orange);

    border-color: var(--orange);

    color: var(--white);

    transform:
        translateY(-3px);

}


/* =========================================================
   FOOTER COLUMNS
========================================================= */

.footer-column h4 {

    margin-bottom: 19px;

    color: var(--white);

    font-family: var(--font-heading);

    font-size: 7px;

    font-weight: 800;

    letter-spacing: 1.5px;

    text-transform: uppercase;

}


.footer-column ul {

    display: flex;

    flex-direction: column;

    gap: 11px;

}


.footer-column ul a {

    color:
        rgba(255, 255, 255, 0.40);

    font-size: 9px;

    transition:
        color 0.3s ease,
        padding-left 0.3s ease;

}


.footer-column ul a:hover {

    padding-left: 4px;

    color: var(--orange);

}


/* =========================================================
   CONTACT
========================================================= */

.footer-contact {

    display: flex;

    flex-direction: column;

}


.footer-contact-item {

    display: flex;

    align-items: flex-start;

    gap: 10px;

    margin-bottom: 13px;

    color:
        rgba(255, 255, 255, 0.40);

    font-size: 9px;

    line-height: 1.5;

}


.footer-contact-item i {

    width: 13px;

    margin-top: 2px;

    color: var(--orange);

    font-size: 9px;

}


.footer-contact-item a {

    color:
        rgba(255, 255, 255, 0.40);

    transition:
        color 0.3s ease;

}


.footer-contact-item a:hover {

    color: var(--orange);

}


.footer-contact-link {

    display: inline-flex;

    align-items: center;

    gap: 8px;

    margin-top: 5px;

    color: var(--white);

    font-family: var(--font-heading);

    font-size: 7px;

    font-weight: 800;

    text-transform: uppercase;

}


.footer-contact-link i {

    color: var(--orange);

}


/* =========================================================
   FOOTER UPDATES
========================================================= */

.footer-updates {

    display: grid;

    grid-template-columns: 0.8fr 1.2fr;

    align-items: center;

    gap: 50px;

    padding: 30px 0;

    border-top:
        1px solid
        rgba(255, 255, 255, 0.08);

    border-bottom:
        1px solid
        rgba(255, 255, 255, 0.08);

}


.footer-updates-content span {

    display: block;

    margin-bottom: 7px;

    color: var(--orange);

    font-family: var(--font-heading);

    font-size: 6px;

    font-weight: 800;

    letter-spacing: 1.7px;

}


.footer-updates-content h3 {

    margin-bottom: 5px;

    color: var(--white);

    font-size: 17px;

}


.footer-updates-content p {

    color:
        rgba(255, 255, 255, 0.35);

    font-size: 8px;

    line-height: 1.6;

}


/* =========================================================
   SUBSCRIBE FORM
========================================================= */

.footer-subscribe-form {

    display: flex;

    align-items: center;

    gap: 8px;

}


.footer-input-wrap {

    position: relative;

    flex: 1;

}


.footer-input-wrap i {

    position: absolute;

    left: 15px;

    top: 50%;

    transform:
        translateY(-50%);

    color:
        rgba(255, 255, 255, 0.35);

    font-size: 10px;

}


.footer-input-wrap input {

    width: 100%;

    height: 47px;

    padding:
        0 15px 0 40px;

    border:
        1px solid
        rgba(255, 255, 255, 0.10);

    border-radius: 7px;

    outline: none;

    background:
        rgba(255, 255, 255, 0.045);

    color: var(--white);

    font-family: var(--font-body);

    font-size: 9px;

    transition:
        border-color 0.3s ease,
        background 0.3s ease;

}


.footer-input-wrap input::placeholder {

    color:
        rgba(255, 255, 255, 0.27);

}


.footer-input-wrap input:focus {

    border-color:
        rgba(244, 123, 32, 0.60);

    background:
        rgba(255, 255, 255, 0.07);

}


.footer-subscribe-form .btn {

    flex-shrink: 0;

}


/* =========================================================
   FOOTER BOTTOM
========================================================= */

.footer-bottom {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;

    min-height: 70px;

}


.footer-bottom > p {

    color:
        rgba(255, 255, 255, 0.25);

    font-size: 7px;

}


.footer-legal {

    display: flex;

    align-items: center;

    gap: 20px;

}


.footer-legal a {

    color:
        rgba(255, 255, 255, 0.27);

    font-size: 7px;

    transition:
        color 0.3s ease;

}


.footer-legal a:hover {

    color: var(--orange);

}


/* =========================================================
   FLOATING DONATE
========================================================= */

.floating-donate {

    position: fixed;

    right: 25px;

    bottom: 25px;

    z-index: 900;

    display: flex;

    align-items: center;

    gap: 9px;

    padding: 8px 14px 8px 8px;

    border-radius: 40px;

    background: var(--orange);

    color: var(--white);

    box-shadow:
        0 12px 35px
        rgba(0, 0, 0, 0.20);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;

}


.floating-donate:hover {

    transform:
        translateY(-4px);

    box-shadow:
        0 18px 40px
        rgba(0, 0, 0, 0.25);

}


.floating-donate-icon {

    width: 32px;

    height: 32px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background: var(--white);

    color: var(--orange);

    font-size: 10px;

}


.floating-donate-text {

    font-family: var(--font-heading);

    font-size: 7px;

    font-weight: 800;

    letter-spacing: 0.7px;

    text-transform: uppercase;

}


/* =========================================================
   BACK TO TOP
========================================================= */

.back-to-top {

    position: fixed;

    right: 25px;

    bottom: 82px;

    z-index: 899;

    width: 38px;

    height: 38px;

    display: flex;

    align-items: center;

    justify-content: center;

    border:
        1px solid
        rgba(0, 0, 0, 0.12);

    border-radius: 50%;

    background: var(--white);

    color: var(--black);

    font-size: 9px;

    cursor: pointer;

    opacity: 0;

    visibility: hidden;

    transform:
        translateY(10px);

    transition:
        opacity 0.3s ease,
        visibility 0.3s ease,
        transform 0.3s ease,
        background 0.3s ease,
        color 0.3s ease;

}


.back-to-top.show {

    opacity: 1;

    visibility: visible;

    transform:
        translateY(0);

}


.back-to-top:hover {

    background: var(--orange);

    color: var(--white);

    border-color: var(--orange);

}


/* =========================================================
   MOBILE ACTION BAR
========================================================= */

.mobile-action-bar {

    display: none;

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1050px) {

    .footer-main {

        grid-template-columns:
            1.3fr
            0.7fr
            0.8fr;

    }


    .footer-contact {

        grid-column: 1 / -1;

    }


    .footer-brand > p {

        max-width: 450px;

    }


    .final-impact-mark {

        width: 145px;

        height: 145px;

    }

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 800px) {

    .final-impact-wrapper {

        flex-direction: column;

        align-items: flex-start;

    }


    .final-impact-mark {

        display: none;

    }


    .footer-updates {

        grid-template-columns: 1fr;

        gap: 25px;

    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    .final-impact-section {

        padding: 80px 0;

    }


    .final-impact-content h2 {

        font-size: 43px;

        letter-spacing: -2.5px;

    }


    .final-impact-content > p {

        font-size: 10px;

    }


    .final-impact-actions {

        flex-direction: column;

        align-items: stretch;

    }


    .final-impact-actions .btn {

        width: 100%;

        justify-content: center;

    }


    .site-footer {

        padding-top: 55px;

        padding-bottom: 75px;

    }


    .footer-main {

        grid-template-columns: 1fr;

        gap: 38px;

        padding-bottom: 40px;

    }


    .footer-contact {

        grid-column: auto;

    }


    .footer-brand > p {

        font-size: 9px;

    }


    .footer-updates {

        padding: 25px 0;

    }


    .footer-subscribe-form {

        flex-direction: column;

        align-items: stretch;

    }


    .footer-subscribe-form .btn {

        width: 100%;

        justify-content: center;

    }


    .footer-bottom {

        flex-direction: column;

        align-items: flex-start;

        justify-content: center;

        padding: 18px 0;

    }


    .footer-legal {

        flex-wrap: wrap;

        gap: 12px 18px;

    }


    .floating-donate {

        right: 15px;

        bottom: 75px;

    }


    .back-to-top {

        right: 15px;

        bottom: 128px;

    }


    /* ---------------------------------------------
       MOBILE ACTION BAR
    --------------------------------------------- */

    .mobile-action-bar {

        position: fixed;

        left: 0;

        right: 0;

        bottom: 0;

        z-index: 1000;

        height: 62px;

        display: grid;

        grid-template-columns:
            repeat(4, 1fr);

        background: var(--white);

        border-top:
            1px solid
            var(--grey-200);

        box-shadow:
            0 -8px 30px
            rgba(0, 0, 0, 0.08);

    }


    .mobile-action-bar a {

        display: flex;

        flex-direction: column;

        align-items: center;

        justify-content: center;

        gap: 4px;

        color: var(--grey-500);

        font-family: var(--font-heading);

        font-size: 5px;

        font-weight: 800;

        text-transform: uppercase;

        transition:
            color 0.3s ease,
            background 0.3s ease;

    }


    .mobile-action-bar a i {

        color: var(--orange);

        font-size: 12px;

    }


    .mobile-action-bar a:hover {

        background: var(--orange-light);

        color: var(--orange);

    }


    .mobile-action-bar a:first-child {

        background: var(--orange);

        color: var(--white);

    }


    .mobile-action-bar a:first-child i {

        color: var(--white);

    }

}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    .final-impact-actions .btn,
    .footer-socials a,
    .footer-column ul a,
    .footer-contact-link,
    .footer-input-wrap input,
    .floating-donate,
    .back-to-top,
    .footer-socials a {

        transition: none;

    }

}

/* =========================================================
   3AM FOUNDATION
   ANIMATION ENGINE
========================================================= */


/* =========================================================
   BASE REVEAL
========================================================= */

.reveal.will-reveal {

    opacity: 0;

    transform:
        translateY(35px);

    transition:
        opacity 0.75s ease,
        transform 0.75s cubic-bezier(
            0.22,
            1,
            0.36,
            1
        );

}


.reveal.revealed {

    opacity: 1;

    transform:
        translateY(0);

}


/* =========================================================
   FADE UP
========================================================= */

.reveal-up.will-reveal {

    opacity: 0;

    transform:
        translateY(45px);

}


.reveal-up.revealed {

    opacity: 1;

    transform:
        translateY(0);

}


/* =========================================================
   FADE DOWN
========================================================= */

.reveal-down.will-reveal {

    opacity: 0;

    transform:
        translateY(-45px);

}


.reveal-down.revealed {

    opacity: 1;

    transform:
        translateY(0);

}


/* =========================================================
   FADE LEFT
========================================================= */

.reveal-left.will-reveal {

    opacity: 0;

    transform:
        translateX(-55px);

}


.reveal-left.revealed {

    opacity: 1;

    transform:
        translateX(0);

}


/* =========================================================
   FADE RIGHT
========================================================= */

.reveal-right.will-reveal {

    opacity: 0;

    transform:
        translateX(55px);

}


.reveal-right.revealed {

    opacity: 1;

    transform:
        translateX(0);

}


/* =========================================================
   SCALE / ZOOM
========================================================= */

.reveal-scale.will-reveal {

    opacity: 0;

    transform:
        scale(0.90);

}


.reveal-scale.revealed {

    opacity: 1;

    transform:
        scale(1);

}


/* =========================================================
   PURE FADE
========================================================= */

.reveal-fade.will-reveal {

    opacity: 0;

}


.reveal-fade.revealed {

    opacity: 1;

}


/* =========================================================
   STAGGERED CHILDREN
========================================================= */

[data-stagger] > * {

    transition-delay:
        var(--stagger-delay, 0ms);

}


/* =========================================================
   ANIMATION SPEED VARIATIONS
========================================================= */

.reveal-slow.will-reveal {

    transition-duration:
        1.1s;

}


.reveal-fast.will-reveal {

    transition-duration:
        0.45s;

}


/* =========================================================
   DELAY UTILITIES
========================================================= */

.delay-1 {

    transition-delay:
        100ms !important;

}


.delay-2 {

    transition-delay:
        200ms !important;

}


.delay-3 {

    transition-delay:
        300ms !important;

}


.delay-4 {

    transition-delay:
        400ms !important;

}


.delay-5 {

    transition-delay:
        500ms !important;

}


/* =========================================================
   HOVER LIFT
========================================================= */

.hover-lift {

    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease;

}


.hover-lift:hover {

    transform:
        translateY(-7px);

}


/* =========================================================
   IMAGE REVEAL
========================================================= */

.image-reveal {

    overflow: hidden;

}


.image-reveal img {

    transform:
        scale(1.08);

    transition:
        transform 1.2s
        cubic-bezier(
            0.22,
            1,
            0.36,
            1
        );

}


.image-reveal.revealed img {

    transform:
        scale(1);

}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    .reveal.will-reveal,
    .reveal-up.will-reveal,
    .reveal-down.will-reveal,
    .reveal-left.will-reveal,
    .reveal-right.will-reveal,
    .reveal-scale.will-reveal,
    .reveal-fade.will-reveal {

        opacity: 1;

        transform: none;

        transition: none;

    }


    .image-reveal img {

        transform: none;

        transition: none;

    }


    .hover-lift:hover {

        transform: none;

    }

}


/* =========================================================
   3AM FOUNDATION
   PREMIUM INTERACTIVE EFFECTS
========================================================= */


/* =========================================================
   FLOATING ELEMENTS
========================================================= */

.floating-element {

    animation:
        threeAMFloat
        var(--float-speed, 4s)
        ease-in-out
        infinite;

    animation-delay:
        var(--float-delay, 0s);

}


@keyframes threeAMFloat {

    0%,
    100% {

        transform:
            translate3d(0, 0, 0);

    }

    50% {

        transform:
            translate3d(
                0,
                -12px,
                0
            );

    }

}


/* =========================================================
   TILT ELEMENTS
========================================================= */

[data-tilt] {

    transform-style:
        preserve-3d;

    will-change:
        transform;

}


/* =========================================================
   MAGNETIC BUTTONS
========================================================= */

[data-magnetic] {

    will-change:
        transform;

}


/* =========================================================
   SPOTLIGHT
========================================================= */

.spotlight-enabled {

    position:
        relative;

    overflow:
        hidden;

}


.spotlight-enabled::before {

    content:
        "";

    position:
        absolute;

    width:
        300px;

    height:
        300px;

    left:
        var(--spotlight-x, 50%);

    top:
        var(--spotlight-y, 50%);

    transform:
        translate(
            -50%,
            -50%
        );

    border-radius:
        50%;

    background:
        radial-gradient(
            circle,
            rgba(
                255,
                255,
                255,
                0.12
            ),
            transparent 70%
        );

    opacity:
        0;

    pointer-events:
        none;

    transition:
        opacity 0.3s ease;

    z-index:
        2;

}


.spotlight-enabled:hover::before {

    opacity:
        1;

}


/* =========================================================
   MOUSE GLOW
========================================================= */

.mouse-glow {

    position:
        fixed;

    width:
        280px;

    height:
        280px;

    top:
        0;

    left:
        0;

    border-radius:
        50%;

    pointer-events:
        none;

    z-index:
        0;

    background:
        radial-gradient(
            circle,
            rgba(
                244,
                126,
                32,
                0.08
            ) 0%,
            rgba(
                244,
                126,
                32,
                0.035
            ) 30%,
            transparent 70%
        );

    transform:
        translate3d(
            50vw,
            50vh,
            0
        )
        translate(
            -50%,
            -50%
        );

    will-change:
        transform;

}


/* =========================================================
   IMAGE PARALLAX
========================================================= */

.image-parallax-container {

    overflow:
        hidden;

    position:
        relative;

}


.image-parallax-container img {

    width:
        100%;

    height:
        100%;

    object-fit:
        cover;

    transform:
        scale(1.02);

    transition:
        transform 0.8s
        cubic-bezier(
            0.22,
            1,
            0.36,
            1
        );

    will-change:
        transform;

}


/* =========================================================
   HERO VISUAL DEPTH
========================================================= */

.hero-section [data-parallax] {

    will-change:
        transform;

}


/* =========================================================
   INTERACTIVE CARD
========================================================= */

.interactive-card {

    transition:
        box-shadow 0.4s ease,
        transform 0.4s ease;

}


.interactive-card:hover {

    box-shadow:
        0 20px 50px
        rgba(
            0,
            0,
            0,
            0.12
        );

}


/* =========================================================
   REDUCED MOTION
========================================================= */

.reduced-motion *,
.reduced-motion *::before,
.reduced-motion *::after {

    animation-duration:
        0.01ms !important;

    animation-iteration-count:
        1 !important;

    transition-duration:
        0.01ms !important;

    scroll-behavior:
        auto !important;

}


@media (prefers-reduced-motion: reduce) {

    .floating-element {

        animation:
            none;

    }


    .mouse-glow {

        display:
            none;

    }


    [data-tilt],
    [data-magnetic] {

        transform:
            none !important;

    }

}


/* =========================================================
   MOBILE PERFORMANCE
========================================================= */

@media (max-width: 768px) {

    .mouse-glow {

        display:
            none;

    }


    [data-tilt] {

        transform:
            none !important;

    }


    [data-magnetic] {

        transform:
            none !important;

    }

}


/* =========================================================
   3AM FOUNDATION
   FORM ENGINE STYLES
========================================================= */


/* =========================================================
   FORM MESSAGE
========================================================= */

.form-message {

    width:
        100%;

    padding:
        15px 18px;

    margin-bottom:
        20px;

    border-radius:
        8px;

    font-size:
        0.95rem;

    line-height:
        1.6;

}


.form-message.success {

    background:
        rgba(
            34,
            197,
            94,
            0.10
        );

    border:
        1px solid
        rgba(
            34,
            197,
            94,
            0.30
        );

}


.form-message.error {

    background:
        rgba(
            220,
            38,
            38,
            0.08
        );

    border:
        1px solid
        rgba(
            220,
            38,
            38,
            0.25
        );

}


.form-message.info {

    background:
        rgba(
            244,
            126,
            32,
            0.08
        );

    border:
        1px solid
        rgba(
            244,
            126,
            32,
            0.25
        );

}


/* =========================================================
   FIELD ERROR
========================================================= */

.field-error {

    border-color:
        #dc2626 !important;

    box-shadow:
        0 0 0 3px
        rgba(
            220,
            38,
            38,
            0.08
        ) !important;

}


.form-field-error {

    display:
        block;

    margin-top:
        6px;

    color:
        #dc2626;

    font-size:
        0.82rem;

    line-height:
        1.4;

}


/* =========================================================
   CHARACTER COUNTER
========================================================= */

.character-counter {

    display:
        block;

    margin-top:
        6px;

    text-align:
        right;

    font-size:
        0.78rem;

    opacity:
        0.65;

}


.character-counter.limit-reached {

    color:
        #dc2626;

    opacity:
        1;

}


/* =========================================================
   SELECTED FILE
========================================================= */

.selected-file-name {

    display:
        block;

    margin-top:
        8px;

    font-size:
        0.82rem;

    opacity:
        0.7;

    word-break:
        break-word;

}


/* =========================================================
   LOADING BUTTON
========================================================= */

button.is-loading,
input[type="submit"].is-loading {

    cursor:
        wait;

    opacity:
        0.8;

}


/* =========================================================
   BUTTON SPINNER
========================================================= */

.button-spinner {

    display:
        inline-block;

    width:
        15px;

    height:
        15px;

    margin-right:
        8px;

    border:
        2px solid
        currentColor;

    border-right-color:
        transparent;

    border-radius:
        50%;

    vertical-align:
        -2px;

    animation:
        threeAMSpinner
        0.7s linear
        infinite;

}


@keyframes threeAMSpinner {

    to {

        transform:
            rotate(360deg);

    }

}


/* =========================================================
   SUCCESS STATE
========================================================= */

.form-success {

    animation:
        formSuccessIn
        0.45s ease
        both;

}


@keyframes formSuccessIn {

    from {

        opacity:
            0;

        transform:
            translateY(
                10px
            );

    }

    to {

        opacity:
            1;

        transform:
            translateY(
                0
            );

    }

}


/* =========================================================
   3AM FOUNDATION
   GALLERY
========================================================= */

.gallery-grid {

    display:
        grid;

    grid-template-columns:
        repeat(
            3,
            minmax(
                0,
                1fr
            )
        );

    gap:
        28px;

}


.gallery-card {

    position:
        relative;

    overflow:
        hidden;

    background:
        #ffffff;

    border-radius:
        18px;

    border:
        1px solid
        rgba(
            0,
            0,
            0,
            0.08
        );

    box-shadow:
        0 10px 35px
        rgba(
            0,
            0,
            0,
            0.06
        );

    transition:
        transform 0.4s ease,
        box-shadow 0.4s ease;

    animation:
        galleryCardIn
        0.6s ease
        both;

    animation-delay:
        var(
            --gallery-delay,
            0ms
        );

}


.gallery-card:hover {

    transform:
        translateY(
            -8px
        );

    box-shadow:
        0 20px 50px
        rgba(
            0,
            0,
            0,
            0.12
        );

}


.gallery-card-image {

    position:
        relative;

    height:
        270px;

    overflow:
        hidden;

    cursor:
        pointer;

}


.gallery-card-image img {

    width:
        100%;

    height:
        100%;

    object-fit:
        cover;

    transition:
        transform 0.7s
        cubic-bezier(
            0.22,
            1,
            0.36,
            1
        );

}


.gallery-card:hover
.gallery-card-image img {

    transform:
        scale(
            1.07
        );

}


.gallery-category {

    position:
        absolute;

    top:
        16px;

    left:
        16px;

    padding:
        7px 12px;

    border-radius:
        100px;

    background:
        #f47e20;

    color:
        #ffffff;

    font-size:
        0.75rem;

    font-weight:
        700;

}


.gallery-image-count {

    position:
        absolute;

    right:
        16px;

    bottom:
        16px;

    padding:
        7px 11px;

    border-radius:
        100px;

    background:
        rgba(
            0,
            0,
            0,
            0.65
        );

    color:
        #ffffff;

    font-size:
        0.8rem;

}


.gallery-card-content {

    padding:
        24px;

}


.gallery-card-content h3 {

    margin:
        0 0 10px;

    font-size:
        1.25rem;

}


.gallery-card-meta {

    display:
        flex;

    flex-wrap:
        wrap;

    gap:
        8px;

    margin-bottom:
        12px;

    font-size:
        0.78rem;

    opacity:
        0.65;

}


.gallery-card-meta span {

    padding-right:
        8px;

    border-right:
        1px solid
        rgba(
            0,
            0,
            0,
            0.15
        );

}


.gallery-card-meta span:last-child {

    border-right:
        none;

}


.gallery-card-content p {

    margin:
        0 0 20px;

    line-height:
        1.7;

    font-size:
        0.9rem;

    opacity:
        0.75;

}


.gallery-view-button {

    border:
        none;

    background:
        transparent;

    color:
        #f47e20;

    font-weight:
        700;

    cursor:
        pointer;

    padding:
        0;

}


.gallery-view-button:hover {

    text-decoration:
        underline;

}


/* =========================================================
   GALLERY FILTERS
========================================================= */

.gallery-filters {

    display:
        flex;

    flex-wrap:
        wrap;

    gap:
        10px;

    margin:
        30px 0;

}


.gallery-filters button {

    border:
        1px solid
        rgba(
            0,
            0,
            0,
            0.12
        );

    background:
        #ffffff;

    padding:
        10px 17px;

    border-radius:
        100px;

    cursor:
        pointer;

    transition:
        all 0.3s ease;

}


.gallery-filters button:hover,
.gallery-filters button.active {

    background:
        #f47e20;

    border-color:
        #f47e20;

    color:
        #ffffff;

}


/* =========================================================
   GALLERY SEARCH
========================================================= */

.gallery-search input {

    width:
        100%;

    max-width:
        550px;

    padding:
        15px 18px;

    border:
        1px solid
        rgba(
            0,
            0,
            0,
            0.15
        );

    border-radius:
        10px;

    outline:
        none;

    font: inherit;

}


.gallery-search input:focus {

    border-color:
        #f47e20;

    box-shadow:
        0 0 0 4px
        rgba(
            244,
            126,
            32,
            0.1
        );

}


/* =========================================================
   EMPTY STATE
========================================================= */

.gallery-empty {

    padding:
        70px 20px;

    text-align:
        center;

}


.gallery-empty h3 {

    margin-bottom:
        10px;

}


/* =========================================================
   LIGHTBOX
========================================================= */

.threeam-lightbox {

    position:
        fixed;

    inset:
        0;

    z-index:
        9999;

    display:
        flex;

    align-items:
        center;

    justify-content:
        center;

    padding:
        30px;

    visibility:
        hidden;

    opacity:
        0;

    transition:
        opacity 0.3s ease,
        visibility 0.3s ease;

}


.threeam-lightbox.active {

    visibility:
        visible;

    opacity:
        1;

}


.lightbox-overlay {

    position:
        absolute;

    inset:
        0;

    background:
        rgba(
            0,
            0,
            0,
            0.92
        );

}


.lightbox-dialog {

    position:
        relative;

    z-index:
        2;

    width:
        min(
            1100px,
            100%
        );

    max-height:
        92vh;

    overflow:
        auto;

}


.lightbox-image-container {

    position:
        relative;

    display:
        flex;

    align-items:
        center;

    justify-content:
        center;

}


.lightbox-image {

    display:
        block;

    max-width:
        100%;

    max-height:
        70vh;

    object-fit:
        contain;

    border-radius:
        8px;

}


.lightbox-close {

    position:
        absolute;

    top:
        -50px;

    right:
        0;

    width:
        42px;

    height:
        42px;

    border:
        none;

    border-radius:
        50%;

    background:
        rgba(
            255,
            255,
            255,
            0.12
        );

    color:
        #ffffff;

    font-size:
        30px;

    line-height:
        1;

    cursor:
        pointer;

}


.lightbox-prev,
.lightbox-next {

    position:
        absolute;

    top:
        50%;

    transform:
        translateY(
            -50%
        );

    width:
        50px;

    height:
        50px;

    border:
        none;

    border-radius:
        50%;

    background:
        rgba(
            255,
            255,
            255,
            0.14
        );

    color:
        #ffffff;

    font-size:
        35px;

    cursor:
        pointer;

}


.lightbox-prev {

    left:
        15px;

}


.lightbox-next {

    right:
        15px;

}


.lightbox-prev:disabled,
.lightbox-next:disabled {

    opacity:
        0.3;

    cursor:
        default;

}


.lightbox-information {

    display:
        flex;

    align-items:
        flex-start;

    justify-content:
        space-between;

    gap:
        20px;

    margin-top:
        20px;

    color:
        #ffffff;

}


.lightbox-title {

    margin:
        0 0 8px;

    font-size:
        1.5rem;

}


.lightbox-meta {

    display:
        flex;

    flex-wrap:
        wrap;

    gap:
        12px;

    font-size:
        0.85rem;

    opacity:
        0.7;

}


.lightbox-counter {

    white-space:
        nowrap;

    font-size:
        0.9rem;

    opacity:
        0.7;

}


.lightbox-description {

    max-width:
        750px;

    color:
        rgba(
            255,
            255,
            255,
            0.75
        );

    line-height:
        1.7;

}


/* =========================================================
   LIGHTBOX BODY LOCK
========================================================= */

body.lightbox-open {

    overflow:
        hidden;

}


/* =========================================================
   GALLERY ANIMATION
========================================================= */

@keyframes galleryCardIn {

    from {

        opacity:
            0;

        transform:
            translateY(
                25px
            );

    }

    to {

        opacity:
            1;

        transform:
            translateY(
                0
            );

    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (
    max-width: 900px
) {

    .gallery-grid {

        grid-template-columns:
            repeat(
                2,
                minmax(
                    0,
                    1fr
                )
            );

    }

}


@media (
    max-width: 600px
) {

    .gallery-grid {

        grid-template-columns:
            1fr;

    }


    .gallery-card-image {

        height:
            240px;

    }


    .threeam-lightbox {

        padding:
            15px;

    }


    .lightbox-image {

        max-height:
            60vh;

    }


    .lightbox-close {

        top:
            -45px;

    }


    .lightbox-prev,
    .lightbox-next {

        width:
            42px;

        height:
            42px;

        font-size:
            28px;

    }


    .lightbox-information {

        flex-direction:
            column;

    }

}

/* =========================================================
   3AM FOUNDATION
   BLOOD BANK
========================================================= */

.blood-bank-statistics {

    display:
        grid;

    grid-template-columns:
        repeat(
            4,
            1fr
        );

    gap:
        20px;

    margin:
        40px 0;

}


.blood-stat {

    padding:
        25px;

    background:
        #ffffff;

    border:
        1px solid
        rgba(
            0,
            0,
            0,
            0.08
        );

    border-radius:
        16px;

}


.blood-stat strong {

    display:
        block;

    font-size:
        2rem;

    margin-bottom:
        5px;

}


.blood-stat span {

    font-size:
        0.85rem;

    opacity:
        0.65;

}


.blood-bank-controls {

    display:
        flex;

    align-items:
        center;

    justify-content:
        space-between;

    gap:
        20px;

    margin-bottom:
        25px;

}


.blood-bank-controls input[type="search"] {

    width:
        100%;

    max-width:
        500px;

    padding:
        14px 17px;

    border:
        1px solid
        rgba(
            0,
            0,
            0,
            0.15
        );

    border-radius:
        10px;

    outline:
        none;

}


.blood-bank-controls input[type="search"]:focus {

    border-color:
        #f47e20;

}


.blood-filters {

    display:
        flex;

    flex-wrap:
        wrap;

    gap:
        8px;

    margin-bottom:
        30px;

}


.blood-filters button {

    min-width:
        48px;

    padding:
        10px 14px;

    border:
        1px solid
        rgba(
            0,
            0,
            0,
            0.12
        );

    border-radius:
        8px;

    background:
        #ffffff;

    cursor:
        pointer;

    font-weight:
        700;

    transition:
        all 0.25s ease;

}


.blood-filters button:hover,
.blood-filters button.active {

    background:
        #f47e20;

    border-color:
        #f47e20;

    color:
        #ffffff;

}


.blood-inventory-grid {

    display:
        grid;

    grid-template-columns:
        repeat(
            4,
            minmax(
                0,
                1fr
            )
        );

    gap:
        20px;

}


.blood-stock-card {

    padding:
        24px;

    background:
        #ffffff;

    border:
        1px solid
        rgba(
            0,
            0,
            0,
            0.08
        );

    border-radius:
        18px;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;

}


.blood-stock-card:hover {

    transform:
        translateY(
            -6px
        );

    box-shadow:
        0 15px 40px
        rgba(
            0,
            0,
            0,
            0.08
        );

}


.blood-stock-header {

    display:
        flex;

    align-items:
        flex-start;

    justify-content:
        space-between;

    gap:
        12px;

    margin-bottom:
        25px;

}


.blood-group {

    display:
        flex;

    align-items:
        center;

    justify-content:
        center;

    width:
        58px;

    height:
        58px;

    border-radius:
        50%;

    background:
        #111111;

    color:
        #ffffff;

    font-size:
        1.2rem;

    font-weight:
        800;

}


.blood-status {

    display:
        inline-flex;

    align-items:
        center;

    gap:
        5px;

    padding:
        6px 9px;

    border-radius:
        100px;

    font-size:
        0.7rem;

    font-weight:
        700;

}


.blood-status-available
.blood-status {

    background:
        rgba(
            40,
            167,
            69,
            0.1
        );

}


.blood-status-low
.blood-status {

    background:
        rgba(
            244,
            126,
            32,
            0.12
        );

}


.blood-status-critical
.blood-status {

    background:
        rgba(
            220,
            53,
            69,
            0.1
        );

}


.blood-units {

    margin-bottom:
        16px;

}


.blood-units strong {

    font-size:
        2rem;

}


.blood-units span {

    font-size:
        0.8rem;

    opacity:
        0.6;

}


.blood-progress {

    width:
        100%;

    height:
        7px;

    overflow:
        hidden;

    background:
        #eeeeee;

    border-radius:
        100px;

}


.blood-progress span {

    display:
        block;

    height:
        100%;

    background:
        #f47e20;

    border-radius:
        inherit;

    transition:
        width 0.8s ease;

}


.blood-progress-text {

    display:
        flex;

    justify-content:
        space-between;

    margin-top:
        8px;

    font-size:
        0.7rem;

    opacity:
        0.55;

}


.blood-last-updated {

    margin:
        18px 0;

    font-size:
        0.72rem;

    opacity:
        0.55;

}


.blood-request-button {

    width:
        100%;

    padding:
        12px;

    border:
        none;

    border-radius:
        8px;

    background:
        #f47e20;

    color:
        #ffffff;

    font-weight:
        700;

    cursor:
        pointer;

    transition:
        background 0.25s ease,
        transform 0.25s ease;

}


.blood-request-button:hover {

    background:
        #d9650e;

    transform:
        translateY(
            -2px
        );

}


.blood-bank-empty {

    padding:
        70px 20px;

    text-align:
        center;

}


.form-highlight {

    animation:
        formHighlight
        1.5s ease;

}


@keyframes formHighlight {

    0%,
    100% {

        box-shadow:
            none;

    }

    50% {

        box-shadow:
            0 0 0 5px
            rgba(
                244,
                126,
                32,
                0.2
            );

    }

}


@media (
    max-width: 1000px
) {

    .blood-inventory-grid {

        grid-template-columns:
            repeat(
                2,
                1fr
            );

    }


    .blood-bank-statistics {

        grid-template-columns:
            repeat(
                2,
                1fr
            );

    }

}


@media (
    max-width: 600px
) {

    .blood-bank-controls {

        flex-direction:
            column;

        align-items:
            stretch;

    }


    .blood-inventory-grid {

        grid-template-columns:
            1fr;

    }


    .blood-bank-statistics {

        grid-template-columns:
            1fr 1fr;

    }


    .blood-stat strong {

        font-size:
            1.5rem;

    }

}

/* =========================================================
   3AM FOUNDATION
   GLOBAL NAVIGATION
========================================================= */


.site-header {

    position:
        fixed;

    top:
        0;

    left:
        0;

    width:
        100%;

    z-index:
        1000;

    transition:
        transform 0.35s ease,
        background 0.35s ease,
        box-shadow 0.35s ease;

}


.site-header.is-scrolled {

    background:
        rgba(
            255,
            255,
            255,
            0.96
        );

    box-shadow:
        0 8px 30px
        rgba(
            0,
            0,
            0,
            0.08
        );

}


.site-header.header-hidden {

    transform:
        translateY(
            -100%
        );

}


.site-header.navigation-open {

    transform:
        translateY(0);

}


.site-header .container {

    min-height:
        82px;

    display:
        flex;

    align-items:
        center;

    justify-content:
        space-between;

}


.site-navigation {

    display:
        flex;

    align-items:
        center;

    gap:
        25px;

}


.site-navigation > a,
.site-navigation > .nav-dropdown > button {

    position:
        relative;

    border:
        none;

    background:
        transparent;

    color:
        inherit;

    text-decoration:
        none;

    font:
        inherit;

    font-size:
        0.9rem;

    font-weight:
        600;

    cursor:
        pointer;

    padding:
        8px 0;

}


.site-navigation > a::after,
.site-navigation > .nav-dropdown > button::after {

    content:
        "";

    position:
        absolute;

    left:
        0;

    bottom:
        0;

    width:
        0;

    height:
        2px;

    background:
        #f47e20;

    transition:
        width 0.25s ease;

}


.site-navigation > a:hover::after,
.site-navigation > a.active::after,
.site-navigation > .nav-dropdown.has-active > button::after,
.site-navigation > .nav-dropdown > button:hover::after {

    width:
        100%;

}


.nav-dropdown {

    position:
        relative;

}


.dropdown-menu {

    position:
        absolute;

    top:
        calc(
            100% +
            18px
        );

    left:
        50%;

    min-width:
        230px;

    padding:
        10px;

    background:
        #ffffff;

    border-radius:
        12px;

    box-shadow:
        0 20px 50px
        rgba(
            0,
            0,
            0,
            0.12
        );

    opacity:
        0;

    visibility:
        hidden;

    transform:
        translate(
            -50%,
            10px
        );

    transition:
        opacity 0.25s ease,
        transform 0.25s ease,
        visibility 0.25s ease;

}


.nav-dropdown.is-open
.dropdown-menu {

    opacity:
        1;

    visibility:
        visible;

    transform:
        translate(
            -50%,
            0
        );

}


.dropdown-menu a {

    display:
        block;

    padding:
        12px 14px;

    color:
        #111111;

    text-decoration:
        none;

    border-radius:
        7px;

    font-size:
        0.85rem;

    transition:
        background 0.2s ease,
        color 0.2s ease;

}


.dropdown-menu a:hover,
.dropdown-menu a.active {

    background:
        rgba(
            244,
            126,
            32,
            0.08
        );

    color:
        #f47e20;

}


.nav-cta {

    padding:
        12px 18px !important;

    background:
        #f47e20;

    color:
        #ffffff !important;

    border-radius:
        7px;

}


.nav-cta::after {

    display:
        none;

}


.nav-cta:hover {

    background:
        #d9650e;

}


.menu-toggle {

    display:
        none;

    width:
        45px;

    height:
        45px;

    padding:
        10px;

    border:
        none;

    background:
        transparent;

    cursor:
        pointer;

}


.menu-toggle span {

    display:
        block;

    width:
        100%;

    height:
        2px;

    margin:
        5px 0;

    background:
        currentColor;

    transition:
        transform 0.3s ease,
        opacity 0.3s ease;

}


.menu-toggle.is-active
span:nth-child(1) {

    transform:
        translateY(
            7px
        )
        rotate(
            45deg
        );

}


.menu-toggle.is-active
span:nth-child(2) {

    opacity:
        0;

}


.menu-toggle.is-active
span:nth-child(3) {

    transform:
        translateY(
            -7px
        )
        rotate(
            -45deg
        );

}


.menu-overlay {

    position:
        fixed;

    inset:
        0;

    z-index:
        1001;

    background:
        rgba(
            0,
            0,
            0,
            0.55
        );

    opacity:
        0;

    visibility:
        hidden;

    transition:
        opacity 0.3s ease,
        visibility 0.3s ease;

}


.menu-overlay.is-visible {

    opacity:
        1;

    visibility:
        visible;

}


.mobile-navigation {

    position:
        fixed;

    top:
        0;

    right:
        0;

    width:
        min(
            90%,
            380px
        );

    height:
        100vh;

    z-index:
        1002;

    background:
        #ffffff;

    overflow-y:
        auto;

    transform:
        translateX(
            100%
        );

    transition:
        transform 0.4s
        cubic-bezier(
            0.77,
            0,
            0.175,
            1
        );

}


.mobile-navigation.is-open {

    transform:
        translateX(
            0
        );

}


.mobile-navigation-inner {

    padding:
        30px;

}


.mobile-menu-close {

    width:
        42px;

    height:
        42px;

    margin-left:
        auto;

    display:
        flex;

    align-items:
        center;

    justify-content:
        center;

    border:
        none;

    background:
        #111111;

    color:
        #ffffff;

    border-radius:
        50%;

    font-size:
        1.5rem;

    cursor:
        pointer;

}


.mobile-navigation nav {

    display:
        flex;

    flex-direction:
        column;

    gap:
        5px;

    margin-top:
        35px;

}


.mobile-navigation nav > a,
.mobile-navigation nav > .mobile-dropdown > button {

    width:
        100%;

    padding:
        15px 0;

    border:
        none;

    border-bottom:
        1px solid
        rgba(
            0,
            0,
            0,
            0.08
        );

    background:
        transparent;

    color:
        #111111;

    text-align:
        left;

    text-decoration:
        none;

    font:
        inherit;

    font-size:
        1rem;

    font-weight:
        600;

    cursor:
        pointer;

}


.mobile-dropdown > button {

    display:
        flex;

    align-items:
        center;

    justify-content:
        space-between;

}


.mobile-dropdown > button::after {

    content:
        "+";

    font-size:
        1.2rem;

}


.mobile-dropdown.is-open
> button::after {

    content:
        "−";

}


.mobile-dropdown
[data-dropdown-menu] {

    max-height:
        0;

    overflow:
        hidden;

    opacity:
        0;

    transition:
        max-height 0.35s ease,
        opacity 0.35s ease;

}


.mobile-dropdown.is-open
[data-dropdown-menu] {

    max-height:
        500px;

    opacity:
        1;

}


.mobile-dropdown
[data-dropdown-menu] a {

    display:
        block;

    padding:
        11px 15px;

    color:
        #555555;

    text-decoration:
        none;

    font-size:
        0.9rem;

}


.mobile-nav-cta {

    margin-top:
        20px;

    padding:
        15px !important;

    background:
        #f47e20 !important;

    color:
        #ffffff !important;

    border:
        none !important;

    border-radius:
        8px;

    text-align:
        center !important;

}


body.menu-open {

    overflow:
        hidden;

}


@media (
    max-width: 991px
) {

    .site-navigation {

        display:
            none;

    }


    .menu-toggle {

        display:
            block;

    }

}


@media (
    min-width: 992px
) {

    .mobile-navigation,
    .menu-overlay {

        display:
            none;

    }

}


@media (
    max-width: 600px
) {

    .site-header .container {

        min-height:
            70px;

    }


    .mobile-navigation {

        width:
            100%;

    }


    .mobile-navigation-inner {

        padding:
            25px 20px;

    }

}


/* =========================================================
   3AM FOUNDATION
   BLOOD DONATION VAN
========================================================= */


.donation-van-section {

    position:
        relative;

}


.van-status-card {

    display:
        flex;

    align-items:
        center;

    gap:
        18px;

    padding:
        22px;

    margin:
        30px 0;

    background:
        #111111;

    color:
        #ffffff;

    border-radius:
        16px;

}


.van-status-indicator {

    width:
        14px;

    height:
        14px;

    flex:
        0 0 14px;

    border-radius:
        50%;

    background:
        #f47e20;

    box-shadow:
        0 0 0 7px
        rgba(
            244,
            126,
            32,
            0.15
        );

    animation:
        vanPulse
        2s
        infinite;

}


.van-status-indicator[data-status="on-drive"] {

    background:
        #35c759;

    box-shadow:
        0 0 0 7px
        rgba(
            53,
            199,
            89,
            0.15
        );

}


.van-status-card strong {

    display:
        block;

    margin-bottom:
        5px;

}


.van-status-card p {

    margin:
        0;

    opacity:
        0.7;

    font-size:
        0.85rem;

}


@keyframes vanPulse {

    0% {

        transform:
            scale(1);

        opacity:
            1;

    }

    50% {

        transform:
            scale(1.25);

        opacity:
            0.65;

    }

    100% {

        transform:
            scale(1);

        opacity:
            1;

    }

}


.drive-statistics {

    display:
        grid;

    grid-template-columns:
        repeat(
            3,
            1fr
        );

    gap:
        20px;

    margin:
        30px 0;

}


.drive-stat {

    padding:
        24px;

    background:
        #ffffff;

    border:
        1px solid
        rgba(
            0,
            0,
            0,
            0.08
        );

    border-radius:
        15px;

}


.drive-stat strong {

    display:
        block;

    font-size:
        2rem;

    margin-bottom:
        5px;

}


.drive-stat span {

    font-size:
        0.8rem;

    opacity:
        0.6;

}


.drive-controls {

    margin:
        30px 0 20px;

}


.drive-controls input {

    width:
        100%;

    padding:
        14px 17px;

    border:
        1px solid
        rgba(
            0,
            0,
            0,
            0.12
        );

    border-radius:
        9px;

    outline:
        none;

}


.drive-controls input:focus {

    border-color:
        #f47e20;

}


.drive-filters {

    display:
        flex;

    flex-wrap:
        wrap;

    gap:
        8px;

    margin-bottom:
        30px;

}


.drive-filters button {

    padding:
        10px 16px;

    border:
        1px solid
        rgba(
            0,
            0,
            0,
            0.12
        );

    background:
        #ffffff;

    border-radius:
        8px;

    cursor:
        pointer;

    font-weight:
        600;

    transition:
        all 0.25s ease;

}


.drive-filters button:hover,
.drive-filters button.active {

    background:
        #f47e20;

    color:
        #ffffff;

    border-color:
        #f47e20;

}


.donation-drives-grid {

    display:
        grid;

    grid-template-columns:
        repeat(
            3,
            minmax(
                0,
                1fr
            )
        );

    gap:
        25px;

}


.donation-drive-card {

    overflow:
        hidden;

    background:
        #ffffff;

    border:
        1px solid
        rgba(
            0,
            0,
            0,
            0.08
        );

    border-radius:
        18px;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;

}


.donation-drive-card:hover {

    transform:
        translateY(
            -7px
        );

    box-shadow:
        0 20px 50px
        rgba(
            0,
            0,
            0,
            0.1
        );

}


.donation-drive-image {

    position:
        relative;

    height:
        220px;

    overflow:
        hidden;

    background:
        #eeeeee;

}


.donation-drive-image img {

    width:
        100%;

    height:
        100%;

    object-fit:
        cover;

    transition:
        transform 0.5s ease;

}


.donation-drive-card:hover
.donation-drive-image img {

    transform:
        scale(
            1.05
        );

}


.drive-priority-badge {

    position:
        absolute;

    top:
        15px;

    left:
        15px;

    padding:
        7px 10px;

    background:
        #f47e20;

    color:
        #ffffff;

    border-radius:
        100px;

    font-size:
        0.7rem;

    font-weight:
        700;

}


.donation-drive-content {

    padding:
        24px;

}


.drive-status {

    display:
        inline-block;

    margin-bottom:
        12px;

    padding:
        6px 10px;

    border-radius:
        100px;

    font-size:
        0.7rem;

    font-weight:
        700;

}


.drive-status-upcoming {

    background:
        rgba(
            244,
            126,
            32,
            0.1
        );

    color:
        #d9650e;

}


.drive-status-live {

    background:
        rgba(
            53,
            199,
            89,
            0.12
        );

    color:
        #248a3d;

}


.drive-status-past {

    background:
        rgba(
            0,
            0,
            0,
            0.07
        );

    color:
        #555555;

}


.donation-drive-content h3 {

    margin:
        0 0 18px;

    font-size:
        1.25rem;

    line-height:
        1.3;

}


.drive-details {

    display:
        grid;

    gap:
        10px;

    margin-bottom:
        18px;

}


.drive-details div {

    display:
        flex;

    flex-direction:
        column;

    gap:
        2px;

}


.drive-details strong {

    font-size:
        0.7rem;

    text-transform:
        uppercase;

    letter-spacing:
        0.05em;

    opacity:
        0.5;

}


.drive-details span {

    font-size:
        0.82rem;

}


.donation-drive-content > p {

    margin-bottom:
        20px;

    font-size:
        0.85rem;

    line-height:
        1.7;

    opacity:
        0.7;

}


.drive-registration {

    margin-bottom:
        20px;

}


.drive-registration-header {

    display:
        flex;

    justify-content:
        space-between;

    gap:
        10px;

    margin-bottom:
        8px;

    font-size:
        0.7rem;

    opacity:
        0.65;

}


.drive-progress {

    width:
        100%;

    height:
        6px;

    overflow:
        hidden;

    background:
        #eeeeee;

    border-radius:
        100px;

}


.drive-progress span {

    display:
        block;

    height:
        100%;

    background:
        #f47e20;

    border-radius:
        inherit;

    transition:
        width 0.5s ease;

}


.drive-countdown {

    display:
        flex;

    justify-content:
        space-between;

    align-items:
        center;

    gap:
        15px;

    margin:
        20px 0;

    padding:
        13px;

    background:
        #f7f7f7;

    border-radius:
        8px;

}


.drive-countdown span {

    font-size:
        0.7rem;

    opacity:
        0.6;

}


.drive-countdown strong {

    color:
        #f47e20;

    font-size:
        0.8rem;

    text-align:
        right;

}


.drive-register-button {

    display:
        block;

    width:
        100%;

    padding:
        13px;

    background:
        #f47e20;

    color:
        #ffffff;

    text-align:
        center;

    text-decoration:
        none;

    border-radius:
        8px;

    font-size:
        0.85rem;

    font-weight:
        700;

    transition:
        background 0.25s ease,
        transform 0.25s ease;

}


.drive-register-button:hover {

    background:
        #d9650e;

    transform:
        translateY(
            -2px
        );

}


.drive-register-button.disabled {

    background:
        #aaaaaa;

    cursor:
        not-allowed;

    pointer-events:
        none;

}


.drive-empty-state {

    grid-column:
        1 / -1;

    padding:
        70px 20px;

    text-align:
        center;

}


.drive-empty-icon {

    font-size:
        3rem;

    margin-bottom:
        15px;

}


@media (
    max-width: 1000px
) {

    .donation-drives-grid {

        grid-template-columns:
            repeat(
                2,
                1fr
            );

    }

}


@media (
    max-width: 650px
) {

    .drive-statistics {

        grid-template-columns:
            1fr;

    }


    .donation-drives-grid {

        grid-template-columns:
            1fr;

    }


    .van-status-card {

        align-items:
            flex-start;

    }


    .drive-countdown {

        flex-direction:
            column;

        align-items:
            flex-start;

    }


    .drive-countdown strong {

        text-align:
            left;

    }

}




/* ==================================================
   3AM ABOUT SECTION
================================================== */

.home-about-section {
    padding: 110px 0;
    background: #fff;
}


/* HEADER */

.home-about-header {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 70px;
    align-items: end;
    margin-bottom: 70px;
}

.home-about-header h2 {
    max-width: 700px;
}

.home-about-header h2 strong {
    color: #F58220;
}

.home-about-intro p {
    color: #666;
    font-size: 16px;
    line-height: 1.8;
}


/* STORY */

.home-about-story {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 70px;
    align-items: center;
    margin-bottom: 90px;
}

.home-about-story-image {
    min-height: 500px;
    border-radius: 24px;
    overflow: hidden;
    background:
        linear-gradient(
            145deg,
            #F58220,
            #111
        );
}

.story-image-placeholder {
    min-height: 500px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.story-image-placeholder i {
    font-size: 75px;
    margin-bottom: 25px;
}

.story-image-placeholder span {
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 3px;
}

.home-about-story-content h3 {
    font-size: 40px;
    margin: 15px 0 25px;
}

.home-about-story-content h3 strong {
    color: #F58220;
}

.home-about-story-content p {
    color: #666;
    margin-bottom: 16px;
    line-height: 1.8;
}

.story-highlight {
    margin-top: 30px;
    padding: 22px 25px;
    border-left: 4px solid #F58220;
    background: #fff5ec;
}

.story-highlight i {
    color: #F58220;
}

.story-highlight p {
    margin: 8px 0 0;
    color: #222;
    font-weight: 700;
}


/* MISSION / VISION */

.home-about-purpose {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-bottom: 100px;
}

.about-purpose-card {
    padding: 45px;
    background: #111;
    color: #fff;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

.about-purpose-card:nth-child(2) {
    background: #F58220;
}

.about-purpose-icon {
    width: 58px;
    height: 58px;
    border-radius: 14px;
    background: rgba(255,255,255,.15);
    display: grid;
    place-items: center;
    font-size: 22px;
    margin-bottom: 28px;
}

.about-purpose-card > span {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2px;
    opacity: .75;
}

.about-purpose-card h3 {
    font-size: 30px;
    margin: 12px 0 15px;
}

.about-purpose-card p {
    color: rgba(255,255,255,.75);
    line-height: 1.8;
}


/* OBJECTIVES */

.home-about-objectives {
    margin-bottom: 80px;
}

.objectives-header {
    max-width: 650px;
    margin-bottom: 45px;
}

.objectives-header h3 {
    font-size: 38px;
    margin: 12px 0;
}

.objectives-header p {
    color: #666;
}

.objectives-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0 60px;
    border-top: 1px solid #e8e8e8;
}

.objective-item {
    display: grid;
    grid-template-columns: 55px 1fr;
    gap: 20px;
    padding: 30px 0;
    border-bottom: 1px solid #e8e8e8;
}

.objective-number {
    color: #F58220;
    font-size: 13px;
    font-weight: 800;
}

.objective-item h4 {
    font-size: 18px;
    margin-bottom: 8px;
}

.objective-item p {
    color: #777;
    font-size: 14px;
    line-height: 1.7;
}


/* CLOSING */

.home-about-closing {
    padding: 45px 50px;
    background: #f6f6f6;
    border-radius: 20px;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.home-about-closing > div > span {
    color: #F58220;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2px;
}

.home-about-closing h3 {
    font-size: 30px;
    margin-top: 8px;
}

.home-about-closing h3 strong {
    color: #F58220;
}


/* MOBILE */

@media (max-width: 800px) {

    .home-about-header,
    .home-about-story,
    .home-about-purpose {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .home-about-header {
        margin-bottom: 50px;
    }

    .home-about-story-image,
    .story-image-placeholder {
        min-height: 380px;
    }

    .home-about-story-content h3 {
        font-size: 32px;
    }

    .objectives-list {
        grid-template-columns: 1fr;
    }

    .home-about-closing {
        flex-direction: column;
        align-items: flex-start;
        padding: 35px 25px;
    }

}

@media (max-width: 500px) {

    .home-about-section {
        padding: 75px 0;
    }

    .about-purpose-card {
        padding: 30px;
    }

    .about-purpose-card h3 {
        font-size: 25px;
    }

    .objectives-header h3 {
        font-size: 30px;
    }

}

/* ==================================================
   AISHA MEMORIAL IMAGE
================================================== */

.home-about-story-image {
    position: relative;
    min-height: 500px;
    border-radius: 24px;
    overflow: hidden;
    background: #111;
}

.home-about-story-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
}

.aisha-image-overlay {
    position: absolute;
    inset: 0;

    display: flex;
    flex-direction: column;
    justify-content: flex-end;

    padding: 35px;

    background: linear-gradient(
        to top,
        rgba(0,0,0,.85),
        rgba(0,0,0,.05)
    );

    color: #fff;
}

.aisha-image-overlay span {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 3px;
    color: #F58220;
    margin-bottom: 8px;
}

.aisha-image-overlay h4 {
    font-size: 25px;
    margin: 0;
    letter-spacing: .5px;
}


/* IMAGE HOVER */

.home-about-story-image img {
    transition: transform .7s ease;
}

.home-about-story-image:hover img {
    transform: scale(1.05);
}


/* =========================================================
   3AM FOUNDATION — OUR WORK PAGE
========================================================= */

/* =========================================================
   3AM FOUNDATION — OUR WORK
   Standalone stylesheet
========================================================= */

:root {
    --orange: #f26a21;
    --orange-dark: #d95512;
    --orange-light: #fff1e9;

    --black: #0b0b0b;
    --dark: #151515;

    --white: #ffffff;
    --off-white: #f8f8f6;

    --gray: #6c6c6c;
    --light-gray: #e8e8e8;

    --container: 1240px;

    --radius: 18px;

    --shadow:
        0 20px 60px rgba(0,0,0,.08);
}


/* =========================================================
   RESET
========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Inter", sans-serif;
    background: var(--white);
    color: var(--black);
    overflow-x: hidden;
}

img {
    width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

button {
    font-family: inherit;
}

.work-container {
    width: min(1240px, 92%);
    margin: auto;
}


/* =========================================================
   NAVIGATION
========================================================= */

.work-header {
    position: sticky;
    top: 0;
    z-index: 999;

    background: rgba(255,255,255,.96);

    backdrop-filter: blur(15px);

    border-bottom: 1px solid #eeeeee;
}

.work-nav {
    width: min(1240px, 92%);
    height: 82px;
    margin: auto;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 30px;
}

.work-logo {
    display: flex;
    align-items: center;
    gap: 10px;

    font-weight: 800;
}

.logo-mark {
    background: var(--orange);
    color: white;

    padding: 10px 12px;

    font-weight: 800;
    letter-spacing: -1px;
}

.logo-text {
    font-size: 13px;
    letter-spacing: .8px;
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 28px;
}

.desktop-nav a {
    font-size: 13px;
    font-weight: 600;

    color: #555;

    transition: .3s ease;
}

.desktop-nav a:hover,
.desktop-nav a.active {
    color: var(--orange);
}

.nav-button {
    display: flex;
    align-items: center;
    gap: 10px;

    background: var(--orange);
    color: white;

    padding: 13px 20px;

    font-size: 13px;
    font-weight: 700;

    transition: .3s ease;
}

.nav-button:hover {
    background: var(--black);
    transform: translateY(-2px);
}

.mobile-menu-button {
    display: none;

    border: 0;
    background: none;

    font-size: 23px;

    cursor: pointer;
}

.mobile-nav {
    display: none;
}


/* =========================================================
   HERO
========================================================= */

.work-hero {
    min-height: 620px;

    display: flex;
    align-items: center;

    position: relative;

    background:
        linear-gradient(
            90deg,
            rgba(0,0,0,.92),
            rgba(0,0,0,.55),
            rgba(0,0,0,.15)
        ),
        url("images/projects/work-hero.jpg")
        center/cover no-repeat;

    color: white;
}

.work-hero-content {
    max-width: 760px;
}

.eyebrow {
    display: flex;
    align-items: center;
    gap: 10px;

    font-size: 11px;
    font-weight: 800;

    letter-spacing: 2px;

    color: var(--orange);

    margin-bottom: 25px;
}

.eyebrow span {
    width: 35px;
    height: 2px;

    background: var(--orange);

    display: block;
}

.eyebrow.dark {
    color: var(--orange);
}

.work-hero h1 {
    font-family: "Manrope", sans-serif;

    font-size: clamp(50px, 7vw, 88px);

    line-height: .98;

    letter-spacing: -4px;

    margin-bottom: 28px;
}

.work-hero h1 strong {
    color: var(--orange);
}

.work-hero p {
    max-width: 650px;

    color: rgba(255,255,255,.78);

    font-size: 17px;
    line-height: 1.8;

    margin-bottom: 35px;
}

.hero-button {
    display: inline-flex;
    align-items: center;
    gap: 15px;

    background: var(--orange);
    color: white;

    padding: 16px 23px;

    font-size: 13px;
    font-weight: 700;

    transition: .3s ease;
}

.hero-button:hover {
    background: white;
    color: var(--black);
}


/* =========================================================
   INTRO
========================================================= */

.work-intro {
    padding: 110px 0;

    background: var(--off-white);
}

.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;

    gap: 100px;
}

.intro-grid h2,
.section-heading h2 {
    font-family: "Manrope", sans-serif;

    font-size: clamp(38px, 5vw, 62px);

    line-height: 1.05;

    letter-spacing: -3px;
}

.intro-grid h2 strong,
.section-heading h2 strong {
    color: var(--orange);
}

.intro-text {
    padding-top: 35px;
}

.intro-text p {
    color: var(--gray);

    font-size: 16px;
    line-height: 1.8;

    margin-bottom: 20px;
}


/* =========================================================
   WORK SECTION
========================================================= */

.work-section {
    padding: 120px 0;
}

.section-heading {
    display: grid;
    grid-template-columns: 1fr 420px;

    gap: 80px;

    align-items: end;

    margin-bottom: 70px;
}

.section-heading > p {
    color: var(--gray);

    line-height: 1.8;

    font-size: 15px;
}


/* =========================================================
   WORK GRID
========================================================= */

.work-grid {
    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 60px 30px;
}


/* =========================================================
   WORK CARD
========================================================= */

.work-card {
    background: white;

    border: 1px solid #e9e9e9;

    overflow: hidden;

    transition:
        transform .45s ease,
        box-shadow .45s ease,
        border-color .45s ease;

    opacity: 1;
}

.work-card:hover {
    transform: translateY(-8px);

    box-shadow: var(--shadow);

    border-color: transparent;
}


/* =========================================================
   WORK IMAGES
========================================================= */

.work-images {
    display: grid;

    grid-template-columns: 1fr 1fr;

    height: 310px;

    overflow: hidden;
}

.work-image {
    overflow: hidden;
    position: relative;
}

.work-image:first-child {
    border-right: 2px solid white;
}

.work-image img {
    height: 100%;

    object-fit: cover;

    transition:
        transform .7s ease;
}

.work-card:hover .work-image img {
    transform: scale(1.06);
}


/* =========================================================
   WORK CONTENT
========================================================= */

.work-content {
    padding: 30px;
}

.work-meta {
    display: flex;
    flex-wrap: wrap;

    gap: 20px;

    margin-bottom: 17px;
}

.work-meta span {
    display: flex;
    align-items: center;
    gap: 7px;

    color: #777;

    font-size: 11px;
    font-weight: 700;

    letter-spacing: .6px;
}

.work-meta i {
    color: var(--orange);
}

.work-content h3 {
    font-family: "Manrope", sans-serif;

    font-size: 24px;

    line-height: 1.25;

    margin-bottom: 13px;
}

.work-content p {
    color: var(--gray);

    line-height: 1.7;

    font-size: 14px;

    margin-bottom: 25px;
}

.drive-link {
    display: inline-flex;

    align-items: center;

    gap: 10px;

    color: var(--orange);

    font-size: 12px;

    font-weight: 800;

    text-transform: uppercase;

    letter-spacing: .7px;

    transition: .3s ease;
}

.drive-link:hover {
    color: var(--black);

    gap: 15px;
}


/* =========================================================
   LOAD MORE
========================================================= */

.load-more-wrapper {
    display: flex;

    justify-content: center;

    margin-top: 75px;
}

.load-more-button {
    display: inline-flex;

    align-items: center;

    gap: 15px;

    padding: 17px 28px;

    background: var(--black);

    color: white;

    border: none;

    cursor: pointer;

    font-size: 13px;

    font-weight: 700;

    transition: .3s ease;
}

.load-more-button:hover {
    background: var(--orange);

    transform: translateY(-3px);
}

.load-more-button i {
    transition: .3s ease;
}

.load-more-button.open i {
    transform: rotate(180deg);
}


/* =========================================================
   HIDDEN EVENTS
========================================================= */

.work-card.hidden-event {
    display: none;
}


/* =========================================================
   CTA
========================================================= */

.work-cta {
    padding: 100px 0;

    background: var(--off-white);
}

.cta-box {
    background: var(--black);

    color: white;

    padding: 55px;

    display: grid;

    grid-template-columns: 80px 1fr auto;

    gap: 35px;

    align-items: center;
}

.cta-icon {
    width: 70px;
    height: 70px;

    background: var(--orange);

    display: flex;

    align-items: center;
    justify-content: center;

    font-size: 25px;
}

.cta-content span {
    color: var(--orange);

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 2px;
}

.cta-content h2 {
    font-family: "Manrope", sans-serif;

    font-size: 34px;

    margin: 10px 0;
}

.cta-content h2 strong {
    color: var(--orange);
}

.cta-content p {
    max-width: 650px;

    color: #aaa;

    font-size: 14px;

    line-height: 1.7;
}

.cta-actions {
    display: flex;

    flex-direction: column;

    gap: 10px;
}

.cta-primary,
.cta-secondary {
    padding: 14px 25px;

    text-align: center;

    font-size: 12px;

    font-weight: 800;
}

.cta-primary {
    background: var(--orange);
    color: white;
}

.cta-secondary {
    border: 1px solid #555;
    color: white;
}

.cta-primary:hover {
    background: white;
    color: var(--black);
}

.cta-secondary:hover {
    border-color: var(--orange);
    color: var(--orange);
}


/* =========================================================
   FOOTER
========================================================= */

.work-footer {
    background: #080808;

    color: white;

    padding: 80px 0 30px;
}

.footer-grid {
    display: grid;

    grid-template-columns: 2fr 1fr 1fr;

    gap: 80px;

    padding-bottom: 60px;

    border-bottom: 1px solid #292929;
}

.footer-logo {
    color: var(--orange);

    font-weight: 800;

    letter-spacing: 1px;

    margin-bottom: 20px;
}

.footer-grid p {
    max-width: 450px;

    color: #999;

    line-height: 1.8;

    font-size: 14px;
}

.footer-grid h4 {
    font-size: 11px;

    letter-spacing: 1.5px;

    margin-bottom: 20px;

    color: var(--orange);
}

.footer-grid a {
    display: block;

    color: #aaa;

    font-size: 13px;

    margin-bottom: 13px;

    transition: .3s ease;
}

.footer-grid a:hover {
    color: white;
}

.footer-bottom {
    display: flex;

    justify-content: space-between;

    gap: 20px;

    padding-top: 25px;

    color: #666;

    font-size: 11px;
}


/* =========================================================
   REVEAL ANIMATION
========================================================= */

.reveal {
    opacity: 0;

    transform: translateY(35px);

    transition:
        opacity .8s ease,
        transform .8s ease;
}

.reveal.visible {
    opacity: 1;

    transform: translateY(0);
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1000px) {

    .desktop-nav,
    .nav-button {
        display: none;
    }

    .mobile-menu-button {
        display: block;
    }

    .mobile-nav {
        background: white;

        padding: 20px 5% 30px;

        border-top: 1px solid #eee;
    }

    .mobile-nav.open {
        display: block;
    }

    .mobile-nav a {
        display: block;

        padding: 15px 0;

        border-bottom: 1px solid #eee;

        font-weight: 600;

        font-size: 14px;
    }

    .mobile-donate {
        background: var(--orange);

        color: white !important;

        text-align: center;

        margin-top: 15px;

        padding: 15px !important;

        border: none !important;
    }

    .intro-grid,
    .section-heading {
        grid-template-columns: 1fr;

        gap: 30px;
    }

    .intro-text {
        padding-top: 0;
    }

    .cta-box {
        grid-template-columns: 70px 1fr;
    }

    .cta-actions {
        grid-column: 2;
        flex-direction: row;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}


@media (max-width: 700px) {

    .work-hero {
        min-height: 550px;
    }

    .work-hero h1 {
        letter-spacing: -2px;
    }

    .work-intro,
    .work-section {
        padding: 80px 0;
    }

    .work-grid {
        grid-template-columns: 1fr;

        gap: 35px;
    }

    .work-images {
        height: 250px;
    }

    .work-content {
        padding: 24px;
    }

    .cta-box {
        grid-template-columns: 1fr;

        padding: 35px 25px;
    }

    .cta-actions {
        grid-column: auto;

        flex-direction: column;
    }

    .footer-grid {
        grid-template-columns: 1fr;

        gap: 40px;
    }

    .footer-bottom {
        flex-direction: column;
    }
}


@media (max-width: 450px) {

    .work-nav {
        height: 72px;
    }

    .logo-text {
        font-size: 11px;
    }

    .work-images {
        height: 210px;
    }

    .work-meta {
        flex-direction: column;

        gap: 8px;
    }

    .work-content h3 {
        font-size: 21px;
    }
}


/* ==================================================
   UPCOMING ACTIVITIES
================================================== */

.upcoming-activities {
    position: relative;
    margin-bottom: 35px;
    padding: 28px;
    background: #fff7f0;
    border: 1px solid rgba(244, 123, 32, 0.18);
    border-radius: 14px;
    overflow: hidden;
}


/* Animated attention effect */

.upcoming-activities::before {
    content: "";
    position: absolute;
    width: 180px;
    height: 180px;
    border: 1px solid rgba(244, 123, 32, 0.25);
    border-radius: 50%;
    right: -80px;
    top: -80px;
    animation: upcomingOrbit 7s linear infinite;
}


.upcoming-activities::after {
    content: "";
    position: absolute;
    width: 10px;
    height: 10px;
    background: var(--orange);
    border-radius: 50%;
    right: 70px;
    top: 35px;
    box-shadow: 0 0 0 0 rgba(244, 123, 32, 0.5);
    animation: upcomingPulse 2s infinite;
}


@keyframes upcomingOrbit {

    0% {
        transform: rotate(0deg) scale(1);
    }

    50% {
        transform: rotate(180deg) scale(1.15);
    }

    100% {
        transform: rotate(360deg) scale(1);
    }

}


@keyframes upcomingPulse {

    0% {
        box-shadow:
            0 0 0 0 rgba(244, 123, 32, 0.5);
    }

    70% {
        box-shadow:
            0 0 0 14px rgba(244, 123, 32, 0);
    }

    100% {
        box-shadow:
            0 0 0 0 rgba(244, 123, 32, 0);
    }

}


/* HEADER */

.upcoming-header {
    position: relative;
    z-index: 2;

    display: flex;
    justify-content: space-between;
    align-items: center;

    gap: 20px;
    margin-bottom: 22px;
}


.upcoming-title {
    display: flex;
    align-items: center;
    gap: 14px;
}


.upcoming-icon {
    width: 48px;
    height: 48px;

    display: grid;
    place-items: center;

    background: var(--orange);
    color: white;

    border-radius: 50%;

    animation: calendarFloat 2.5s ease-in-out infinite;
}


@keyframes calendarFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-4px);
    }

}


.upcoming-label {
    display: block;

    color: var(--orange);

    font-size: 10px;
    font-weight: 800;

    letter-spacing: 2px;

    margin-bottom: 3px;
}


.upcoming-header h3 {
    font-family: "Manrope", sans-serif;

    font-size: 27px;
    line-height: 1.1;

    color: var(--black);
}


/* SWIPE HINT */

.swipe-hint {
    display: flex;
    align-items: center;
    gap: 8px;

    color: var(--orange);

    font-size: 11px;
    font-weight: 800;

    animation: swipeHint 1.8s ease-in-out infinite;
}


.swipe-hint i {
    font-size: 13px;
}


@keyframes swipeHint {

    0%,
    100% {
        transform: translateX(0);
    }

    50% {
        transform: translateX(7px);
    }

}


/* SLIDER */

.activities-slider {
    position: relative;
    z-index: 2;

    display: flex;

    gap: 18px;

    overflow-x: auto;

    scroll-snap-type: x mandatory;

    scroll-behavior: smooth;

    padding-bottom: 8px;

    scrollbar-width: none;

    -webkit-overflow-scrolling: touch;
}


.activities-slider::-webkit-scrollbar {
    display: none;
}


/* ACTIVITY CARD */

.activity-card {
    position: relative;

    flex: 0 0 100%;

    scroll-snap-align: start;

    min-height: 250px;

    padding: 30px;

    background: white;

    border: 1px solid var(--border);

    border-radius: 12px;

    overflow: hidden;

    transition:
        transform 0.4s ease,
        box-shadow 0.4s ease;
}


.activity-card:hover {
    transform: translateY(-5px);

    box-shadow: var(--shadow);
}


/* FIRST CARD HIGHLIGHT */

.activity-card.featured {
    border: 2px solid var(--orange);

    box-shadow:
        0 10px 35px rgba(244, 123, 32, 0.12);
}


.activity-card.featured::before {
    content: "NEXT";

    position: absolute;

    top: 18px;
    right: 18px;

    background: var(--orange);

    color: white;

    padding: 6px 10px;

    border-radius: 20px;

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 1px;

    animation: nextBlink 2s ease-in-out infinite;
}


@keyframes nextBlink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.55;
    }

}


/* MONTH */

.activity-month {
    color: var(--orange);

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 2px;

    margin-bottom: 12px;
}


/* CONTENT */

.activity-content {
    max-width: 850px;
}


.activity-badge {
    display: inline-flex;

    align-items: center;

    gap: 7px;

    padding: 6px 10px;

    background: #fff1e6;

    color: var(--orange);

    border-radius: 20px;

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 0.8px;

    margin-bottom: 12px;
}


.activity-content h3 {
    font-family: "Manrope", sans-serif;

    font-size: 28px;

    line-height: 1.15;

    color: var(--black);

    margin-bottom: 12px;
}


.activity-content p {
    color: var(--muted);

    font-size: 14px;

    line-height: 1.75;

    max-width: 720px;

    margin-bottom: 18px;
}


/* EVENT */

.activity-event {
    display: inline-flex;

    align-items: center;

    gap: 9px;

    color: var(--black);

    font-size: 12px;

    font-weight: 800;
}


.activity-event i {
    color: var(--orange);
}


/* CARD NUMBER */

.activity-number {
    position: absolute;

    right: 25px;
    bottom: 15px;

    font-family: "Manrope", sans-serif;

    font-size: 70px;

    font-weight: 800;

    color: rgba(244, 123, 32, 0.06);

    line-height: 1;
}


/* DOTS */

.activity-dots {
    position: relative;

    z-index: 2;

    display: flex;

    justify-content: center;

    gap: 7px;

    margin-top: 17px;
}


.activity-dot {
    width: 7px;
    height: 7px;

    border-radius: 50%;

    background: #d8d8d8;

    transition: 0.3s ease;
}


.activity-dot.active {
    width: 24px;

    border-radius: 10px;

    background: var(--orange);
}


/* ==================================================
   FULL CARD EVENT IMAGE
=================================================== */

.activity-card {
    position: relative;
    overflow: hidden;
}


/* BACKGROUND IMAGE */

.activity-bg {
    position: absolute;
    inset: 0;

    z-index: 0;
}

.activity-bg img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    display: block;

    filter: blur(1px);

    transform: scale(1.04);

    animation: eventZoom 8s ease-in-out infinite alternate;
}


/* BLACK OVERLAY */

.activity-bg-overlay {
    position: absolute;
    inset: 0;

    background: rgba(0, 0, 0, 0.68);

    z-index: 1;
}


/* KEEP CONTENT ABOVE IMAGE */

.activity-card > *:not(.activity-bg) {
    position: relative;
    z-index: 2;
}


/* WHITE TEXT */

.activity-card .activity-content h3,
.activity-card .activity-content p,
.activity-card .activity-month,
.activity-card .activity-number {
    color: #fff;
}


/* SUBTLE IMAGE MOVEMENT */

@keyframes eventZoom {

    0% {
        transform: scale(1.04);
    }

    100% {
        transform: scale(1.10);
    }
}


/* REDUCE MOTION FOR USERS WHO PREFER IT */

@media (prefers-reduced-motion: reduce) {

    .activity-bg img {
        animation: none;
    }

}

/* ==================================================
   SPLIT EVENT CARD
=================================================== */

.activity-card {
    position: relative;
    display: grid;

    grid-template-columns: 42% 58%;

    min-height: 330px;

    overflow: hidden;

    border-radius: 20px;
}


/* IMAGE SIDE */

.activity-image {
    position: relative;

    width: 100%;
    height: 100%;

    overflow: hidden;

    order: 1;
}

.activity-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    display: block;

    transition: transform 0.7s ease;
}


/* IMAGE ANIMATION */

@keyframes activityImageMove {

    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.07);
    }
}

.activity-image img {
    animation: activityImageMove 7s ease-in-out infinite alternate;
}


/* TEXT SIDE */

.activity-card .activity-content {
    position: relative;

    order: 2;

    padding: 32px 35px;

    background: #fff;

    z-index: 2;
}


/* MONTH */

.activity-card .activity-month {
    position: relative;

    margin-bottom: 15px;

    font-size: 12px;
    font-weight: 800;

    letter-spacing: 1px;

    color: #10344D;
}


/* TITLE */

.activity-card .activity-content h3 {
    color: #10344D;
}


/* DESCRIPTION */

.activity-card .activity-content p {
    color: #555;
}


/* EVENT */

.activity-card .activity-event {
    margin-top: 20px;
}


/* NUMBER */

.activity-card .activity-number {
    position: absolute;

    right: 18px;
    bottom: 12px;

    z-index: 5;

    font-size: 48px;
    font-weight: 900;

    color: rgba(16, 52, 77, 0.08);
}


/* FEATURED CARD */

.activity-card.featured {
    border: 1px solid rgba(16, 52, 77, 0.12);
}


/* ==================================================
   MOBILE
=================================================== */

@media (max-width: 700px) {

    .activity-card {
        grid-template-columns: 1fr;

        min-height: auto;
    }

    .activity-image {
        height: 190px;

        order: 1;
    }

    .activity-card .activity-content {
        order: 2;

        padding: 25px;
    }

}

/* ==================================================
   RESPONSIVE
================================================== */

@media (max-width: 600px) {

    .upcoming-activities {
        padding: 20px;

        margin-bottom: 25px;
    }


    .upcoming-header {
        align-items: flex-start;
    }


    .upcoming-header h3 {
        font-size: 22px;
    }


    .upcoming-icon {
        width: 42px;
        height: 42px;
    }


    .swipe-hint {
        font-size: 9px;
    }


    .activity-card {
        min-height: 300px;

        padding: 24px;
    }


    .activity-content h3 {
        font-size: 23px;
    }


    .activity-content p {
        font-size: 13px;
    }


    .activity-number {
        font-size: 55px;
    }

}


/* ==================================================
   ABOUT PREVIEW — IMAGE AREA
================================================== */

.about-preview-visual {
    position: relative;
    min-height: 560px;
}


/* ==================================================
   MAIN IMAGE
================================================== */

.about-main-image {
    position: relative;

    width: 82%;
    height: 500px;

    overflow: hidden;

    border-radius: 18px;

    background: #eee;

    box-shadow:
        0 25px 60px rgba(0, 0, 0, 0.16);

    z-index: 2;
}


/* Carousel */

.about-carousel {
    position: relative;

    width: 100%;
    height: 100%;

    overflow: hidden;
}


/* Slides */

.about-slide {
    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;

    opacity: 0;

    transform: scale(1.06);

    transition:
        opacity 0.9s ease,
        transform 4s ease;

    z-index: 1;
}


/* Active image */

.about-slide.active {
    opacity: 1;

    transform: scale(1);

    z-index: 2;
}


/* Dark gradient */

.about-main-image::after {
    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            to top,
            rgba(0,0,0,0.38),
            transparent 45%
        );

    pointer-events: none;

    z-index: 3;
}


/* ==================================================
   CAROUSEL DOTS
================================================== */

.about-carousel-indicator {
    position: absolute;

    left: 25px;
    bottom: 22px;

    display: flex;

    align-items: center;

    gap: 7px;

    z-index: 5;
}


.carousel-dot {
    width: 7px;
    height: 7px;

    border-radius: 50%;

    background: rgba(255,255,255,0.6);

    transition:
        width 0.3s ease,
        background 0.3s ease;
}


.carousel-dot.active {
    width: 25px;

    border-radius: 10px;

    background: var(--orange);
}


/* ==================================================
   SECONDARY IMAGE
================================================== */

.about-small-image {
    position: absolute;

    width: 230px;
    height: 175px;

    right: 0;
    bottom: 25px;

    overflow: hidden;

    border-radius: 14px;

    background: #eee;

    border: 7px solid white;

    box-shadow:
        0 20px 45px rgba(0,0,0,0.18);

    z-index: 4;

    transform: rotate(3deg);

    transition:
        transform 0.4s ease,
        box-shadow 0.4s ease;
}


.about-small-image:hover {
    transform:
        rotate(0deg)
        translateY(-7px);

    box-shadow:
        0 25px 55px rgba(0,0,0,0.22);
}


.about-small-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition:
        transform 0.6s ease;
}


.about-small-image:hover img {
    transform: scale(1.08);
}


/* Small image icon */

.small-image-overlay {
    position: absolute;

    right: 10px;
    bottom: 10px;

    width: 32px;
    height: 32px;

    display: grid;
    place-items: center;

    border-radius: 50%;

    background: var(--orange);

    color: white;

    font-size: 12px;

    box-shadow:
        0 5px 15px rgba(0,0,0,0.2);
}


/* ==================================================
   FOUNDATION BADGE
================================================== */

.about-foundation-badge {
    position: absolute;

    left: -25px;
    top: 55px;

    display: flex;

    align-items: center;

    gap: 12px;

    padding: 14px 18px;

    background: white;

    border-radius: 10px;

    box-shadow:
        0 15px 40px rgba(0,0,0,0.13);

    z-index: 5;

    animation:
        aboutBadgeFloat 3s ease-in-out infinite;
}


@keyframes aboutBadgeFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-6px);
    }

}


.badge-icon {
    width: 40px;
    height: 40px;

    display: grid;
    place-items: center;

    border-radius: 50%;

    background: #fff1e6;

    color: var(--orange);

    font-size: 16px;
}


.about-foundation-badge strong {
    display: block;

    font-family: "Manrope", sans-serif;

    font-size: 17px;

    line-height: 1;
}


.about-foundation-badge span {
    display: block;

    margin-top: 4px;

    color: var(--muted);

    font-size: 10px;

    font-weight: 600;
}


/* ==================================================
   DECORATIVE CIRCLE
================================================== */

.about-orange-circle {
    position: absolute;

    width: 120px;
    height: 120px;

    border: 2px solid var(--orange);

    border-radius: 50%;

    right: 25px;
    top: 5px;

    opacity: 0.22;

    z-index: 1;

    animation:
        aboutCircle 8s linear infinite;
}


@keyframes aboutCircle {

    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }

}


/* ==================================================
   MOBILE
================================================== */

@media (max-width: 800px) {

    .about-preview-visual {
        min-height: 500px;
    }


    .about-main-image {
        width: 88%;
        height: 430px;
    }


    .about-small-image {
        width: 190px;
        height: 145px;

        bottom: 20px;
    }


    .about-foundation-badge {
        left: 10px;
        top: 25px;
    }

}


@media (max-width: 600px) {

    .about-preview-visual {
        min-height: 430px;
    }


    .about-main-image {
        width: 100%;
        height: 390px;

        border-radius: 14px;
    }


    .about-small-image {
        width: 155px;
        height: 120px;

        right: 10px;
        bottom: 5px;

        border-width: 5px;
    }


    .about-foundation-badge {
        left: 10px;
        top: 15px;

        padding: 10px 12px;
    }


    .badge-icon {
        width: 34px;
        height: 34px;
    }


    .about-foundation-badge strong {
        font-size: 14px;
    }


    .about-foundation-badge span {
        font-size: 8px;
    }


    .about-orange-circle {
        display: none;
    }

}




/* =========================================================
   3AM FOUNDATION
   REUSABLE BLOG / ARTICLE STYLES
   ========================================================= */


/* =========================================================
   BLOG HERO
   ========================================================= */

.blog-page .blog-hero {
    position: relative;
    min-height: 520px;
    display: flex;
    align-items: center;
    background:
        linear-gradient(
            120deg,
            rgba(16, 52, 77, 0.97),
            rgba(16, 52, 77, 0.78)
        ),
        url("images/blogbg.jpg") center/cover no-repeat;
    overflow: hidden;
}

.blog-page .blog-hero-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(
            circle at 80% 30%,
            rgba(244, 123, 32, 0.22),
            transparent 35%
        );
}

.blog-page .blog-hero-content {
    position: relative;
    z-index: 2;
    padding-top: 70px;
    padding-bottom: 70px;
    max-width: 850px;
}

.blog-page .blog-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 22px;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #f47b20;
}

.blog-page .blog-eyebrow::before {
    content: "";
    width: 38px;
    height: 2px;
    background: #f47b20;
}

.blog-page .blog-hero h1 {
    margin: 0;
    max-width: 800px;
    font-family: "Manrope", sans-serif;
    font-size: clamp(48px, 7vw, 82px);
    line-height: 0.98;
    font-weight: 800;
    letter-spacing: -3px;
    color: #ffffff;
}

.blog-page .blog-hero h1 span {
    display: block;
    color: #f47b20;
}

.blog-page .blog-hero p {
    max-width: 650px;
    margin: 25px 0 0;
    font-size: 20px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.82);
}


/* =========================================================
   ARTICLE
   ========================================================= */

.blog-page .blog-article {
    background: #ffffff;
    padding: 85px 0 100px;
}

.blog-page .blog-container {
    max-width: 900px;
}


/* META */

.blog-page .blog-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin-bottom: 35px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e9edf0;
}

.blog-page .blog-meta span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: #64727c;
}

.blog-page .blog-meta i {
    color: #f47b20;
}


/* ARTICLE HEADING */

.blog-page .blog-heading h2 {
    margin: 0 0 20px;
    font-family: "Manrope", sans-serif;
    font-size: clamp(32px, 5vw, 52px);
    line-height: 1.12;
    letter-spacing: -1.5px;
    color: #10344d;
}

.blog-page .blog-lead {
    margin: 0;
    font-size: 21px;
    line-height: 1.8;
    font-weight: 500;
    color: #53636e;
}


/* =========================================================
   FOUNDER INTRO
   ========================================================= */

.blog-page .founder-intro {
    display: grid;
    grid-template-columns: 170px 1fr;
    align-items: center;
    gap: 30px;
    margin: 55px 0;
    padding: 25px;
    background: #f7f9fa;
    border-left: 4px solid #f47b20;
}

.blog-page .founder-image {
    width: 170px;
    height: 190px;
    overflow: hidden;
    background: #e8edf0;
}

.blog-page .founder-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-page .founder-label {
    display: block;
    margin-bottom: 10px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2px;
    color: #f47b20;
}

.blog-page .founder-details h3 {
    margin: 0 0 8px;
    font-family: "Manrope", sans-serif;
    font-size: 26px;
    line-height: 1.25;
    color: #10344d;
}

.blog-page .founder-details h3 span {
    font-size: 18px;
    font-weight: 600;
}

.blog-page .founder-details p {
    margin: 0;
    font-size: 15px;
    color: #64727c;
}


/* =========================================================
   ARTICLE BODY
   ========================================================= */

.blog-page .blog-content {
    font-size: 18px;
    line-height: 1.9;
    color: #394954;
}

.blog-page .blog-content p {
    margin: 0 0 26px;
}

.blog-page .blog-content strong {
    color: #10344d;
    font-weight: 700;
}

.blog-page .blog-content h2 {
    margin: 65px 0 22px;
    font-family: "Manrope", sans-serif;
    font-size: clamp(28px, 4vw, 40px);
    line-height: 1.2;
    letter-spacing: -1px;
    color: #10344d;
}


/* =========================================================
   QUOTE
   ========================================================= */

.blog-page .blog-content blockquote {
    position: relative;
    margin: 45px 0;
    padding: 30px 35px 30px 70px;
    border: none;
    background: #10344d;
    font-family: "Manrope", sans-serif;
    font-size: 23px;
    line-height: 1.55;
    font-weight: 700;
    color: #ffffff;
}

.blog-page .blog-content blockquote i {
    position: absolute;
    left: 28px;
    top: 28px;
    font-size: 25px;
    color: #f47b20;
}


/* =========================================================
   LEGACY HIGHLIGHT
   ========================================================= */

.blog-page .blog-highlight {
    margin: 55px 0;
    padding: 45px;
    text-align: center;
    background: #f7f9fa;
    border-top: 3px solid #f47b20;
    border-bottom: 1px solid #e2e7ea;
}

.blog-page .blog-highlight span {
    display: block;
    margin-bottom: 12px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2px;
    color: #f47b20;
}

.blog-page .blog-highlight h3 {
    margin: 0 0 12px;
    font-family: "Manrope", sans-serif;
    font-size: 34px;
    line-height: 1.2;
    color: #10344d;
}

.blog-page .blog-highlight p {
    margin: 0;
    font-size: 17px;
    color: #64727c;
}


/* =========================================================
   GIVING BLOOD CALLOUT
   ========================================================= */

.blog-page .blog-callout {
    display: flex;
    align-items: center;
    gap: 25px;
    margin: 50px 0;
    padding: 32px;
    background: #10344d;
    color: #ffffff;
}

.blog-page .callout-icon {
    flex: 0 0 65px;
    width: 65px;
    height: 65px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: #f47b20;
    font-size: 25px;
}

.blog-page .blog-callout span {
    display: block;
    margin-bottom: 7px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.8px;
    color: #f47b20;
}

.blog-page .blog-callout h3 {
    margin: 0 0 7px;
    font-family: "Manrope", sans-serif;
    font-size: 27px;
    color: #ffffff;
}

.blog-page .blog-callout p {
    margin: 0;
    font-size: 15px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.75);
}


/* =========================================================
   FOUNDER CLOSING
   ========================================================= */

.blog-page .founder-closing {
    margin-top: 75px;
    padding-top: 40px;
    border-top: 1px solid #dfe5e8;
}

.blog-page .closing-line {
    width: 55px;
    height: 3px;
    margin-bottom: 30px;
    background: #f47b20;
}

.blog-page .founder-closing p {
    font-size: 20px;
    line-height: 1.8;
}

.blog-page .founder-closing h3 {
    margin: 35px 0 8px;
    font-family: "Manrope", sans-serif;
    font-size: 28px;
    line-height: 1.35;
    color: #10344d;
}

.blog-page .founder-closing > strong {
    font-size: 18px;
    color: #f47b20;
}


/* =========================================================
   BLOG CTA
   ========================================================= */

.blog-page .blog-cta {
    padding: 85px 0;
    background: #10344d;
}

.blog-page .blog-cta-content {
    max-width: 760px;
    margin: auto;
    text-align: center;
}

.blog-page .blog-cta-content > span {
    display: block;
    margin-bottom: 15px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2px;
    color: #f47b20;
}

.blog-page .blog-cta h2 {
    margin: 0 auto 18px;
    font-family: "Manrope", sans-serif;
    font-size: clamp(30px, 5vw, 48px);
    line-height: 1.15;
    color: #ffffff;
}

.blog-page .blog-cta p {
    margin: 0 auto 30px;
    font-size: 17px;
    color: rgba(255, 255, 255, 0.75);
}

.blog-page .blog-cta-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
}

.blog-page .btn-outline-light {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 25px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    color: #ffffff;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 700;
    transition: 0.3s ease;
}

.blog-page .btn-outline-light:hover {
    background: #ffffff;
    color: #10344d;
}


/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 768px) {

    .blog-page .blog-hero {
        min-height: 430px;
    }

    .blog-page .blog-hero-content {
        padding-top: 55px;
        padding-bottom: 55px;
    }

    .blog-page .blog-hero h1 {
        font-size: clamp(42px, 13vw, 62px);
        letter-spacing: -2px;
    }

    .blog-page .blog-hero p {
        font-size: 17px;
    }

    .blog-page .blog-article {
        padding: 55px 0 70px;
    }

    .blog-page .blog-heading h2 {
        font-size: 32px;
    }

    .blog-page .blog-lead {
        font-size: 18px;
    }

    .blog-page .founder-intro {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 20px;
    }

    .blog-page .founder-image {
        width: 130px;
        height: 150px;
    }

    .blog-page .blog-content {
        font-size: 17px;
        line-height: 1.8;
    }

    .blog-page .blog-content blockquote {
        padding: 28px 25px 28px 55px;
        font-size: 20px;
    }

    .blog-page .blog-highlight {
        padding: 30px 20px;
    }

    .blog-page .blog-highlight h3 {
        font-size: 27px;
    }

    .blog-page .blog-callout {
        align-items: flex-start;
        padding: 25px 20px;
    }

    .blog-page .callout-icon {
        flex-basis: 52px;
        width: 52px;
        height: 52px;
        font-size: 20px;
    }

    .blog-page .blog-callout h3 {
        font-size: 23px;
    }

    .blog-page .founder-closing p {
        font-size: 18px;
    }

    .blog-page .blog-cta {
        padding: 65px 0;
    }

}



/* ==========================================
   3AM FOUNDATION - GET INVOLVED
   ========================================== */

.get-involved {
  --gi-orange: #f47b20;
  --gi-orange-dark: #d9610d;
  --gi-dark: #151515;
  --gi-text: #333333;
  --gi-light: #f7f7f7;
  --gi-border: #e5e5e5;

  color: var(--gi-text);
  background: #fff;
}


/* CONTAINER */

.gi-container {
  width: min(1150px, 92%);
  margin: 0 auto;
}


/* HERO */

.gi-hero {
  background: var(--gi-dark);
  color: #fff;
  padding: 100px 0;
  text-align: center;
}

.gi-hero h1 {
  max-width: 850px;
  margin: 15px auto;
  font-size: clamp(38px, 5vw, 68px);
  line-height: 1.05;
}

.gi-hero p {
  max-width: 650px;
  margin: 20px auto 30px;
  font-size: 18px;
  line-height: 1.7;
  opacity: .85;
}


/* LABEL */

.gi-label {
  color: var(--gi-orange);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
}


/* BUTTONS */

.gi-buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.gi-btn {
  display: inline-block;
  padding: 14px 26px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  transition: all .3s ease;
}


/* ORANGE BUTTON */

.gi-btn-primary {
  background: var(--gi-orange);
  color: #fff;
  border: 1px solid var(--gi-orange);
}

.gi-btn-primary:hover {
  background: var(--gi-orange-dark);
  border-color: var(--gi-orange-dark);
  transform: translateY(-2px);
}


/* OUTLINE */

.gi-btn-outline {
  border: 1px solid rgba(255,255,255,.5);
  color: #fff;
  background: transparent;
}

.gi-btn-outline:hover {
  background: #fff;
  color: var(--gi-dark);
}


/* WHITE BUTTON */

.gi-btn-white {
  background: #fff;
  color: var(--gi-orange);
  border: 1px solid #fff;
}

.gi-btn-white:hover {
  background: var(--gi-light);
  transform: translateY(-2px);
}


/* SECTIONS */

.gi-section {
  padding: 85px 0;
}

.gi-light {
  background: var(--gi-light);
}


/* GENERAL CARDS */

.gi-card,
.gi-donation-box {
  max-width: 850px;
  margin: auto;
  padding: 50px;
  border: 1px solid var(--gi-border);
  background: #fff;
}

.gi-card h2,
.gi-donation-box h2 {
  font-size: 38px;
  margin: 10px 0 15px;
  color: var(--gi-dark);
}

.gi-card p,
.gi-donation-box p {
  line-height: 1.7;
  margin-bottom: 25px;
}

.gi-number {
  color: var(--gi-orange);
  font-weight: 800;
  font-size: 14px;
}


/* SECTION HEADING */

.gi-heading {
  text-align: center;
  max-width: 750px;
  margin: 0 auto 45px;
}

.gi-heading h2 {
  font-size: 42px;
  color: var(--gi-dark);
  margin: 10px 0;
}

.gi-heading p {
  line-height: 1.7;
}


/* SUPPORT GRID */

.gi-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.gi-support-card {
  padding: 30px;
  background: #fff;
  border: 1px solid var(--gi-border);
}

.gi-support-card h3 {
  margin-top: 0;
  color: var(--gi-dark);
}

.gi-support-card p {
  line-height: 1.6;
  margin-bottom: 0;
}


/* BANK DETAILS */

.gi-donation-box {
  text-align: center;
}

.gi-bank-details {
  background: var(--gi-light);
  padding: 20px;
  margin: 25px 0;
  text-align: left;
}

.gi-bank-details p {
  margin: 8px 0;
}


/* ==========================================
   ACTION CARDS
   ========================================== */

.gi-action-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.gi-action-card {
  display: block;
  padding: 35px;
  border: 1px solid var(--gi-border);
  background: #fff;
  text-decoration: none;
  color: var(--gi-text);
  transition: all .3s ease;
}

.gi-action-card:hover {
  transform: translateY(-5px);
  border-color: var(--gi-orange);
  box-shadow: 0 10px 30px rgba(0,0,0,.07);
}

.gi-action-card span {
  color: var(--gi-orange);
  font-weight: 800;
}

.gi-action-card h3 {
  color: var(--gi-dark);
  font-size: 23px;
}

.gi-action-card strong {
  display: inline-block;
  margin-top: 15px;
  color: var(--gi-orange);
}


/* ==========================================
   MAJOR PROJECTS
   ========================================== */

.gi-projects {
  background: var(--gi-light);
}


/* TWO COLUMN PROJECT */

.gi-project {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;

  background: #fff;
  border: 1px solid var(--gi-border);

  margin-bottom: 30px;
  overflow: hidden;
}


/* TEXT SIDE */

.gi-project-content {
  padding: 55px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.gi-project h2 {
  font-size: 36px;
  color: var(--gi-dark);
  margin: 10px 0 15px;
}

.gi-project p {
  line-height: 1.7;
  margin-bottom: 25px;
}


/* ==========================================
   RESPONSIVE IMAGE BOX
   ========================================== */

.gi-project-image {
  width: 100%;
  min-height: 380px;
  background: #eeeeee;
  overflow: hidden;
  position: relative;
}

.gi-project-image img {
  width: 100%;
  height: 100%;
  min-height: 380px;

  display: block;

  object-fit: cover;

  transition: transform .5s ease;
}

.gi-project:hover .gi-project-image img {
  transform: scale(1.03);
}


/* ALTERNATE PROJECT */

.gi-project-reverse .gi-project-content {
  order: 2;
}

.gi-project-reverse .gi-project-image {
  order: 1;
}


/* PROJECT PARTNER BOX */

.gi-partner-box {
  margin-top: 50px;
  padding: 60px 30px;
  text-align: center;

  background: var(--gi-dark);
  color: #fff;
}

.gi-partner-box h2 {
  font-size: 40px;
  margin: 10px 0;
}

.gi-partner-box p {
  max-width: 650px;
  margin: 0 auto 25px;
  line-height: 1.7;
  opacity: .85;
}


/* FINAL CTA */

.gi-final {
  background: var(--gi-orange);
  color: #fff;
  text-align: center;
  padding: 90px 0;
}

.gi-final .gi-label {
  color: #fff;
}

.gi-final h2 {
  font-size: 45px;
  margin: 12px 0;
}

.gi-final p {
  margin-bottom: 30px;
}


/* ==========================================
   TABLET
   ========================================== */

@media (max-width: 900px) {

  .gi-action-grid {
    grid-template-columns: 1fr;
  }

  .gi-project {
    grid-template-columns: 1fr;
  }

  .gi-project-content {
    order: 1 !important;
  }

  .gi-project-image {
    order: 2 !important;
    min-height: 320px;
  }

  .gi-project-image img {
    min-height: 320px;
  }

}


/* ==========================================
   MOBILE
   ========================================== */

@media (max-width: 768px) {

  .gi-hero {
    padding: 70px 0;
  }

  .gi-section {
    padding: 60px 0;
  }

  .gi-card,
  .gi-donation-box,
  .gi-project-content {
    padding: 30px 22px;
  }

  .gi-grid {
    grid-template-columns: 1fr;
  }

  .gi-heading h2,
  .gi-final h2 {
    font-size: 32px;
  }

  .gi-card h2,
  .gi-project h2 {
    font-size: 30px;
  }

  .gi-project-image {
    min-height: 250px;
  }

  .gi-project-image img {
    min-height: 250px;
  }

  .gi-btn {
    width: 100%;
    text-align: center;
    box-sizing: border-box;
  }

  .gi-buttons {
    flex-direction: column;
    width: 100%;
  }

}
