:root {
    --navy: #071a33;
    --navy-2: #0c2749;
    --navy-3: #12375e;

    --gold: #e9ad32;
    --gold-light: #f5ca69;
    --gold-dark: #b97916;

    --cream: #f6f0e3;
    --cream-2: #eee3cf;

    --white: #ffffff;
    --ink: #162235;
    --muted: #647083;

    --shell: 1180px;

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


* {
    box-sizing: border-box;
}


html {
    scroll-behavior: smooth;
}


body {
    margin: 0;

    font-family:
        Inter,
        ui-sans-serif,
        system-ui,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;

    color: var(--ink);
    background: var(--cream);
}


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


a {
    color: inherit;
}


.shell {
    width: min(calc(100% - 36px), var(--shell));
    margin-inline: auto;
}


/* HEADER */

.site-header {
    position: absolute;
    inset: 0 0 auto 0;
    z-index: 20;

    padding: 18px 0;
}


.nav-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}


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

    color: white;
    text-decoration: none;
}


.brand img {
    width: 62px;
    height: 62px;
    object-fit: contain;
}


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


.brand strong {
    font-size: 1.05rem;
    letter-spacing: .08em;
    text-transform: uppercase;
}


.brand small {
    opacity: .7;
    margin-top: 2px;
}


/* BUTTONS */

.button {
    display: inline-flex;
    justify-content: center;
    align-items: center;

    min-height: 52px;

    padding: 0 28px;

    border-radius: 999px;

    font-weight: 900;
    letter-spacing: .04em;
    text-transform: uppercase;

    text-decoration: none;

    transition:
        transform .18s ease,
        box-shadow .18s ease,
        background .18s ease;
}


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


.button-primary {
    background: var(--gold);
    color: var(--navy);

    box-shadow:
        0 12px 30px rgba(233, 173, 50, .25);
}


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


.button-secondary {
    border: 1px solid rgba(255,255,255,.4);
    color: white;
    background: rgba(255,255,255,.06);
    backdrop-filter: blur(8px);
}


.button-small {
    min-height: 44px;
    padding-inline: 20px;

    background: var(--gold);
    color: var(--navy);
}


.button-gold {
    background: var(--gold);
    color: var(--navy);

    width: 100%;
}


/* HERO */

.hero {
    position: relative;
    overflow: hidden;

    min-height: 850px;

    display: flex;
    align-items: center;

    padding:
        145px 0
        120px;

    background:
        radial-gradient(
            circle at 20% 20%,
            rgba(37, 90, 145, .35),
            transparent 36%
        ),
        linear-gradient(
            135deg,
            #06172d,
            #081c36 55%,
            #0d2c50
        );

    color: white;
}


.hero::before {
    content: "";

    position: absolute;
    inset: 0;

    opacity: .18;

    background-image:
        repeating-radial-gradient(
            circle at 0 0,
            transparent 0,
            transparent 17px,
            rgba(255,255,255,.11) 18px,
            transparent 20px
        );

    mask-image:
        linear-gradient(
            to right,
            rgba(0,0,0,.75),
            transparent 70%
        );
}


.hero-layout {
    position: relative;
    z-index: 3;

    display: grid;
    grid-template-columns: 1.2fr .8fr;

    gap: 70px;
    align-items: center;
}


.eyebrow {
    display: inline-flex;

    font-size: .8rem;
    font-weight: 900;

    letter-spacing: .19em;
    text-transform: uppercase;

    color: var(--gold);

    margin-bottom: 18px;
}


.eyebrow.dark {
    color: var(--gold-dark);
}


.eyebrow.gold {
    color: var(--gold);
}


.campaign-lockup {
    display: flex;
    align-items: center;
    gap: 14px;

    line-height: .8;

    margin-bottom: 22px;
}


.campaign-number {
    font-size: clamp(5.5rem, 10vw, 9.5rem);

    font-weight: 1000;
    letter-spacing: -.075em;

    color: var(--gold);
}


.campaign-for {
    transform: rotate(-90deg);

    font-size: 1rem;
    font-weight: 950;

    letter-spacing: .18em;

    color: rgba(255,255,255,.72);
}


.hero h1 {
    max-width: 760px;

    margin:
        0 0
        28px;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: clamp(2.8rem, 5vw, 5rem);
    line-height: .95;

    letter-spacing: -.045em;
}


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

    margin: 0 0 10px;

    color: rgba(255,255,255,.78);

    font-size: 1.17rem;
    line-height: 1.65;
}


.hero-lead-strong {
    color: white;
    font-weight: 850;
}


.hero-actions {
    display: flex;
    flex-wrap: wrap;

    gap: 14px;

    margin-top: 34px;
}


.hero-badge {
    display: flex;
    flex-direction: column;
    align-items: center;

    position: relative;
}


.logo-halo {
    width: min(410px, 100%);

    padding: 34px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(255,255,255,.12),
            rgba(255,255,255,.025) 65%,
            transparent 67%
        );

    filter:
        drop-shadow(
            0 28px 35px
            rgba(0,0,0,.34)
        );
}


.logo-halo img {
    width: 100%;
}


.heritage-line {
    margin-top: 10px;

    text-align: center;

    text-transform: uppercase;
    letter-spacing: .12em;

    font-size: .77rem;

    color: rgba(255,255,255,.55);
}


.heritage-line strong {
    display: block;

    margin-top: 8px;

    color: var(--gold);

    font-size: 1rem;
}


.hero-glow {
    position: absolute;

    width: 480px;
    height: 480px;

    border-radius: 50%;

    filter: blur(110px);

    pointer-events: none;
}


.hero-glow-one {
    left: -200px;
    top: 60px;

    background:
        rgba(23, 87, 145, .28);
}


.hero-glow-two {
    right: -180px;
    bottom: 60px;

    background:
        rgba(233, 173, 50, .12);
}


/* MOUNTAINS */

.mountains {
    position: absolute;
    inset: auto 0 0;
    height: 170px;

    overflow: hidden;

    opacity: .18;
}


.mountain {
    position: absolute;

    bottom: -110px;

    width: 390px;
    height: 310px;

    background: var(--cream);

    transform: rotate(45deg);

    border-radius: 12px;
}


.mountain-one {
    left: 5%;
}


.mountain-two {
    left: 33%;
    bottom: -170px;

    width: 480px;
    height: 380px;
}


.mountain-three {
    right: 4%;
}


/* COMMON SECTIONS */

section {
    position: relative;
}


.section-heading {
    max-width: 760px;
    margin-inline: auto;
    margin-bottom: 48px;
}


.section-heading.centered {
    text-align: center;
}


.section-heading h2 {
    margin:
        0 0
        18px;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: clamp(2.3rem, 4vw, 4rem);

    line-height: 1.04;
    letter-spacing: -.04em;
}


.section-heading p {
    margin: 0;

    color: var(--muted);

    font-size: 1.08rem;
    line-height: 1.65;
}


.section-heading.light h2 {
    color: white;
}


.section-heading.light p {
    color: rgba(255,255,255,.68);
}


/* PROGRESS */

.progress-section {
    padding: 100px 0 115px;

    background:
        linear-gradient(
            180deg,
            #f7f0e4,
            #efe4d0
        );
}


.progress-card {
    max-width: 940px;

    margin-inline: auto;

    padding: 46px;

    border:
        1px solid
        rgba(7,26,51,.08);

    border-radius: 28px;

    background:
        rgba(255,255,255,.76);

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


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

    gap: 20px;

    margin-bottom: 28px;
}


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


.progress-numbers span {
    color: var(--muted);

    font-size: .78rem;
    font-weight: 850;

    letter-spacing: .12em;
    text-transform: uppercase;
}


.progress-numbers strong {
    margin-top: 5px;

    color: var(--navy);

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


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


.progress-track {
    position: relative;

    height: 28px;

    border-radius: 999px;

    background: #d9d5cd;

    overflow: visible;

    box-shadow:
        inset
        0 2px 5px
        rgba(0,0,0,.12);
}


.progress-fill {
    position: absolute;
    inset: 0 auto 0 0;

    width: 0%;

    border-radius: inherit;

    background:
        linear-gradient(
            90deg,
            var(--gold-dark),
            var(--gold),
            var(--gold-light)
        );

    transition: width .8s ease;
}


.progress-marker {
    position: absolute;

    left: 0%;
    top: 50%;

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

    transition: left .8s ease;
}


.progress-marker span {
    display: grid;
    place-items: center;

    min-width: 64px;
    height: 44px;

    padding-inline: 12px;

    border-radius: 999px;

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

    font-weight: 950;

    box-shadow:
        0 6px 16px
        rgba(0,0,0,.22);
}


.progress-stats {
    display: grid;
    grid-template-columns: repeat(3,1fr);

    gap: 24px;

    margin-top: 44px;
}


.stat {
    text-align: center;
}


.stat strong {
    display: block;

    color: var(--navy);

    font-size: 1.7rem;
}


.stat span {
    display: block;

    margin-top: 4px;

    color: var(--muted);

    font-size: .75rem;
    font-weight: 850;

    letter-spacing: .1em;
    text-transform: uppercase;
}


.center-button {
    margin-top: 36px;
    text-align: center;
}


/* IMPACT */

.impact-section {
    padding: 110px 0;

    background:
        radial-gradient(
            circle at 50% -10%,
            #19456e,
            transparent 40%
        ),
        var(--navy);

    color: white;
}


.impact-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);

    gap: 18px;
}


.impact-card {
    padding: 30px 28px;

    border:
        1px solid
        rgba(255,255,255,.11);

    border-radius: 20px;

    background:
        rgba(255,255,255,.045);
}


.impact-icon {
    font-size: 2rem;

    margin-bottom: 20px;
}


.impact-card h3 {
    margin:
        0 0
        12px;

    color: var(--gold);

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 1.4rem;
}


.impact-card p {
    margin: 0;

    color: rgba(255,255,255,.68);

    line-height: 1.6;
}


/* STORY */

.story-section {
    padding: 115px 0;

    background: var(--cream);
}


.story-layout {
    display: grid;
    grid-template-columns: .7fr 1.3fr;

    align-items: center;
    gap: 70px;
}


.story-number {
    display: flex;
    flex-direction: column;

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

    min-height: 380px;

    border-radius: 26px;

    background:
        linear-gradient(
            140deg,
            var(--navy),
            var(--navy-3)
        );

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


.story-number span {
    color: var(--gold);

    font-size: clamp(7rem, 14vw, 11rem);

    font-weight: 1000;
    line-height: .85;

    letter-spacing: -.09em;
}


.story-number small {
    margin-top: 15px;

    color: white;

    font-weight: 950;

    letter-spacing: .3em;
}


.story-copy h2 {
    margin:
        0 0
        24px;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: clamp(2.5rem, 4vw, 4.2rem);

    line-height: 1;
    letter-spacing: -.04em;

    color: var(--navy);
}


.story-copy p {
    max-width: 650px;

    color: #536174;

    font-size: 1.08rem;
    line-height: 1.75;
}


/* WHERE */

.where-section {
    padding: 105px 0;

    background:
        linear-gradient(
            180deg,
            var(--cream-2),
            var(--cream)
        );
}


.where-card {
    display: grid;
    grid-template-columns: 1.35fr .65fr;

    overflow: hidden;

    border-radius: 30px;

    background: var(--navy);

    color: white;

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


.where-copy {
    padding: 55px;
}


.where-copy h2 {
    margin:
        0 0
        34px;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: clamp(2.4rem, 4vw, 4rem);

    line-height: 1.03;
}


.event-details {
    display: grid;
    grid-template-columns: repeat(3,1fr);

    gap: 22px;
}


.detail-label {
    display: block;

    margin-bottom: 7px;

    color: rgba(255,255,255,.5);

    font-size: .72rem;
    font-weight: 850;

    letter-spacing: .12em;
    text-transform: uppercase;
}


.event-details strong {
    font-size: 1.02rem;
}


.where-action {
    display: flex;
    flex-direction: column;
    justify-content: center;

    padding: 46px;

    background:
        linear-gradient(
            145deg,
            #153e66,
            #0d2948
        );
}


.where-action p {
    margin:
        0 0
        16px;

    text-align: center;

    font-size: 1.05rem;
}


.where-action small {
    margin-top: 14px;

    text-align: center;

    color: rgba(255,255,255,.5);
}


/* FINAL */

.final-section {
    padding: 105px 0;

    background:
        linear-gradient(
            135deg,
            #041326,
            #092644
        );

    color: white;
}


.final-content {
    display: flex;
    align-items: center;
    justify-content: center;

    gap: 70px;
}


.final-logo {
    width: min(330px, 40vw);

    filter:
        drop-shadow(
            0 20px 30px
            rgba(0,0,0,.35)
        );
}


.final-small {
    color: var(--gold);

    font-size: .78rem;
    font-weight: 900;

    letter-spacing: .17em;
    text-transform: uppercase;
}


.final-content h2 {
    margin:
        14px 0
        16px;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: clamp(3rem, 6vw, 6rem);

    line-height: .92;
    letter-spacing: -.05em;
}


.final-content h2 strong {
    color: var(--gold);
}


.final-content p {
    color: rgba(255,255,255,.65);

    font-size: 1.08rem;

    margin-bottom: 30px;
}


/* FOOTER */

.site-footer {
    padding: 25px 0;

    background: #020c18;

    color: rgba(255,255,255,.55);

    font-size: .85rem;
}


.footer-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;

    gap: 24px;
}


.site-footer strong {
    display: block;

    color: white;
}


.site-footer span {
    display: block;
    margin-top: 2px;
}


.footer-domain {
    font-weight: 850;

    letter-spacing: .06em;

    color: var(--gold);
}


/* RESPONSIVE */

@media (max-width: 900px) {

    .hero {
        min-height: auto;
    }

    .hero-layout,
    .story-layout,
    .where-card {
        grid-template-columns: 1fr;
    }

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

    .hero-copy {
        order: 2;
    }

    .hero-badge {
        order: 1;
    }

    .logo-halo {
        width: 280px;
        padding: 14px;
    }

    .hero-lead {
        margin-inline: auto;
    }

    .hero-actions {
        justify-content: center;
    }

    .campaign-lockup {
        justify-content: center;
    }

    .impact-grid {
        grid-template-columns: repeat(2,1fr);
    }

    .story-number {
        min-height: 260px;
    }

    .event-details {
        grid-template-columns: 1fr;
    }

    .final-content {
        text-align: center;
        flex-direction: column;
    }

    .final-logo {
        width: 250px;
    }

}


@media (max-width: 620px) {

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

    .site-header {
        padding-top: 10px;
    }

    .brand img {
        width: 50px;
        height: 50px;
    }

    .brand span {
        display: none;
    }

    .button-small {
        min-height: 40px;
        padding-inline: 16px;

        font-size: .75rem;
    }

    .hero {
        padding:
            95px 0
            85px;
    }

    .logo-halo {
        width: 225px;
    }

    .campaign-number {
        font-size: 5rem;
    }

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

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

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

    .progress-section,
    .impact-section,
    .story-section,
    .where-section,
    .final-section {
        padding:
            75px 0;
    }

    .progress-card {
        padding:
            34px 22px;
    }

    .progress-numbers {
        align-items: flex-start;
    }

    .progress-numbers strong {
        font-size: 1.65rem;
    }

    .progress-stats {
        grid-template-columns: 1fr;

        gap: 25px;
    }

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

    .story-layout {
        gap: 42px;
    }

    .where-copy,
    .where-action {
        padding:
            38px 25px;
    }

    .footer-wrap {
        flex-direction: column;

        text-align: center;
    }

}
