/* =====================================================
   TOGETHER MAGAZINE
   GRANTS & COMMUNITY SUPPORT
   FULL PAGE CSS
===================================================== */


/* =====================================================
   ROOT
===================================================== */

:root{

    --cream:#f4f0e8;
    --cream-dark:#ebe4d7;

    --white:#ffffff;

    --charcoal:#20211f;
    --charcoal-2:#2d2e2b;

    --muted:#74736d;
    --line:#d7d0c4;

    --mustard:#c79a42;
    --orange:#d9783d;

    --sage:#7d8b70;

    --serif:"Playfair Display", serif;
    --sans:"DM Sans", sans-serif;
    --script:"Caveat", cursive;

    --container:1240px;

}


/* =====================================================
   RESET
===================================================== */

*,
*::before,
*::after{

    box-sizing:border-box;

}


html{

    width:100%;
    max-width:100%;

    scroll-behavior:smooth;

    overflow-x:hidden;

}


body{

    width:100%;
    max-width:100%;

    margin:0;

    background:var(--cream);

    color:var(--charcoal);

    font-family:var(--sans);

    font-size:16px;

    line-height:1.65;

    overflow-x:hidden;

}


body.no-scroll{

    overflow:hidden;

}


img{

    display:block;

    max-width:100%;

}


a{

    color:inherit;

    text-decoration:none;

}


button,
input,
textarea{

    font:inherit;

}


button{

    cursor:pointer;

}


.container{

    width:min(
        var(--container),
        calc(100% - 70px)
    );

    margin:0 auto;

}


/* =====================================================
   LOADER
===================================================== */

.loader{

    position:fixed;

    inset:0;

    z-index:9999;

    display:flex;

    flex-direction:column;

    justify-content:center;

    align-items:center;

    background:var(--charcoal);

    transition:
        opacity .7s ease,
        visibility .7s ease;

}


.loader.hide{

    opacity:0;

    visibility:hidden;

}


.loader-logo{

    color:white;

    font-family:var(--serif);

    font-size:42px;

    letter-spacing:3px;

    text-align:center;

}


.loader-logo small{

    display:block;

    margin-top:-5px;

    font-family:var(--sans);

    font-size:10px;

    font-weight:700;

    letter-spacing:6px;

}


.loader-line{

    width:150px;

    height:2px;

    margin-top:30px;

    background:rgba(255,255,255,.15);

    overflow:hidden;

}


.loader-line span{

    display:block;

    width:0;

    height:100%;

    background:var(--mustard);

    animation:
        loading 1.2s ease forwards;

}


@keyframes loading{

    to{
        width:100%;
    }

}


/* =====================================================
   HEADER
===================================================== */

.site-header{

    position:relative;

    z-index:1000;

    width:100%;

    background:var(--cream);

    border-bottom:1px solid var(--line);

    transition:
        background .3s ease,
        box-shadow .3s ease;

}


.site-header.scrolled{

    position:sticky;

    top:0;

    background:rgba(244,240,232,.94);

    backdrop-filter:blur(12px);

    box-shadow:
        0 8px 30px rgba(0,0,0,.05);

}


.header-top{

    width:100%;

    padding:
        11px 35px;

    display:flex;

    justify-content:space-between;

    align-items:center;

    border-bottom:1px solid var(--line);

    font-size:10px;

    font-weight:700;

    letter-spacing:2px;

}


.header-top-center{

    opacity:.55;

}


.header-main{

    width:min(
        var(--container),
        calc(100% - 70px)
    );

    min-height:94px;

    margin:auto;

    display:flex;

    align-items:center;

    justify-content:space-between;

    gap:30px;

}


/* LOGO */

.logo{

    display:flex;

    align-items:center;

    gap:12px;

    flex-shrink:0;

}


.logo-symbol{

    position:relative;

    width:34px;

    height:34px;

}


.logo-symbol i{

    position:absolute;

    width:13px;

    height:13px;

    border-radius:50%;

}


.logo-symbol i:nth-child(1){

    left:0;
    top:3px;

    background:var(--orange);

}


.logo-symbol i:nth-child(2){

    right:0;
    top:0;

    background:var(--mustard);

}


.logo-symbol i:nth-child(3){

    left:5px;
    bottom:0;

    background:var(--sage);

}


.logo-symbol i:nth-child(4){

    right:2px;
    bottom:4px;

    background:var(--charcoal);

}


.logo-name{

    font-family:var(--serif);

    font-size:25px;

    font-weight:500;

    line-height:.9;

    letter-spacing:1px;

}


.logo-name small{

    display:block;

    margin-top:5px;

    font-family:var(--sans);

    font-size:7px;

    font-weight:700;

    letter-spacing:4px;

}


/* NAV */

.nav{

    display:flex;

    align-items:center;

    justify-content:center;

    gap:26px;

}


.nav a{

    position:relative;

    padding:10px 0;

    font-size:13px;

    font-weight:600;

}


.nav a::after{

    content:"";

    position:absolute;

    left:0;

    bottom:3px;

    width:0;

    height:1px;

    background:var(--charcoal);

    transition:width .3s ease;

}


.nav a:hover::after,
.nav a.active::after{

    width:100%;

}


/* HEADER ACTIONS */

.header-actions{

    display:flex;

    align-items:center;

    gap:15px;

}


.issue-btn{

    display:inline-flex;

    align-items:center;

    gap:12px;

    padding:13px 17px;

    background:var(--charcoal);

    color:white;

    font-size:10px;

    font-weight:700;

    letter-spacing:1px;

    transition:
        transform .3s ease,
        background .3s ease;

}


.issue-btn:hover{

    transform:translateY(-2px);

    background:var(--orange);

}


.issue-btn i{

    font-size:11px;

}


/* HAMBURGER */

.hamburger{

    display:none;

    width:42px;

    height:42px;

    padding:10px;

    border:1px solid var(--line);

    background:transparent;

}


.hamburger span{

    display:block;

    width:100%;

    height:2px;

    margin:5px 0;

    background:var(--charcoal);

}


/* =====================================================
   MOBILE MENU
===================================================== */

.mobile-menu{

    position:fixed;

    inset:0;

    z-index:2000;

    background:var(--charcoal);

    color:white;

    opacity:0;

    visibility:hidden;

    transform:translateY(-100%);

    transition:
        opacity .4s ease,
        visibility .4s ease,
        transform .5s cubic-bezier(.77,0,.18,1);

    overflow-y:auto;

}


.mobile-menu.open{

    opacity:1;

    visibility:visible;

    transform:translateY(0);

}


.mobile-close{

    position:absolute;

    top:25px;

    right:25px;

    width:45px;

    height:45px;

    border:1px solid rgba(255,255,255,.2);

    background:transparent;

    color:white;

    font-size:20px;

}


.mobile-inner{

    width:min(
        600px,
        calc(100% - 50px)
    );

    margin:0 auto;

    padding:
        100px 0 50px;

}


.mobile-logo{

    font-family:var(--serif);

    font-size:35px;

    letter-spacing:2px;

}


.mobile-logo small{

    display:block;

    margin-top:-3px;

    font-family:var(--sans);

    font-size:8px;

    font-weight:700;

    letter-spacing:5px;

}


.mobile-caption{

    margin-top:8px;

    margin-bottom:55px;

    color:rgba(255,255,255,.45);

    font-size:10px;

    font-weight:700;

    letter-spacing:2px;

}


.mobile-menu nav a{

    display:grid;

    grid-template-columns:45px 1fr auto;

    align-items:center;

    gap:15px;

    padding:17px 0;

    border-bottom:1px solid rgba(255,255,255,.1);

    font-family:var(--serif);

    font-size:28px;

}


.mobile-menu nav a span{

    color:var(--mustard);

    font-family:var(--sans);

    font-size:10px;

    font-weight:700;

}


.mobile-menu nav a i{

    color:rgba(255,255,255,.4);

    font-size:15px;

}


.mobile-menu nav a.active{

    color:var(--mustard);

}


/* =====================================================
   HERO
===================================================== */

.grants-hero{

    position:relative;

    min-height:720px;

    display:flex;

    align-items:center;

    background:var(--charcoal);

    color:white;

    overflow:hidden;

}


.hero-pattern{

    position:absolute;

    inset:0;

    opacity:.09;

    background-image:
        linear-gradient(
            90deg,
            transparent 49%,
            white 50%,
            transparent 51%
        );

    background-size:90px 90px;

    transform:rotate(-8deg) scale(1.5);

}


.hero-pattern::after{

    content:"";

    position:absolute;

    inset:0;

    background:
        radial-gradient(
            circle at 78% 28%,
            rgba(199,154,66,.45),
            transparent 25%
        );

}


.grants-hero-inner{

    position:relative;

    z-index:2;

    padding-top:80px;

    padding-bottom:90px;

}


.hero-number{

    position:absolute;

    right:4%;

    top:50%;

    transform:translateY(-50%);

    font-family:var(--serif);

    font-size:clamp(
        250px,
        30vw,
        520px
    );

    line-height:.7;

    color:rgba(255,255,255,.025);

    pointer-events:none;

}


.hero-label{

    display:flex;

    align-items:center;

    gap:14px;

    margin-bottom:30px;

    color:rgba(255,255,255,.55);

    font-size:11px;

    font-weight:700;

    letter-spacing:2.5px;

}


.label-line{

    width:50px;

    height:1px;

    background:var(--mustard);

}


.grants-hero h1{

    max-width:950px;

    margin:0;

    font-family:var(--serif);

    font-size:clamp(
        70px,
        9vw,
        145px
    );

    font-weight:400;

    line-height:.88;

    letter-spacing:-5px;

}


.grants-hero h1 em{

    color:var(--mustard);

    font-weight:400;

}


.hero-bottom{

    width:100%;

    max-width:1100px;

    margin-top:70px;

    padding-top:30px;

    display:grid;

    grid-template-columns:
        minmax(300px,600px)
        auto;

    align-items:end;

    justify-content:space-between;

    gap:50px;

    border-top:1px solid rgba(255,255,255,.15);

}


.hero-bottom p{

    max-width:620px;

    margin:0;

    color:rgba(255,255,255,.7);

    font-size:17px;

    line-height:1.8;

}


.hero-arrow{

    display:inline-flex;

    align-items:center;

    gap:15px;

    padding:15px 0;

    color:white;

    font-size:10px;

    font-weight:700;

    letter-spacing:1.5px;

}


.hero-arrow i{

    width:40px;

    height:40px;

    display:grid;

    place-items:center;

    border:1px solid rgba(255,255,255,.3);

    transition:
        background .3s ease,
        color .3s ease;

}


.hero-arrow:hover i{

    background:var(--mustard);

    color:var(--charcoal);

}


.hero-handwriting{

    position:absolute;

    right:9%;

    bottom:45px;

    z-index:2;

    color:var(--mustard);

    font-family:var(--script);

    font-size:32px;

    transform:rotate(-7deg);

    opacity:.9;

}


/* =====================================================
   COMMON
===================================================== */

.eyebrow{

    display:block;

    margin-bottom:22px;

    color:var(--orange);

    font-size:11px;

    font-weight:700;

    letter-spacing:2.5px;

}


.reveal{

    opacity:0;

    transform:translateY(35px);

    transition:
        opacity .8s ease,
        transform .8s cubic-bezier(.22,1,.36,1);

}


.reveal.visible{

    opacity:1;

    transform:translateY(0);

}


/* =====================================================
   INTRO
===================================================== */

.grant-intro{

    padding:140px 0;

    background:var(--cream);

}


.intro-grid{

    display:grid;

    grid-template-columns:
        160px
        minmax(0,800px);

    gap:80px;

    justify-content:center;

}


.intro-index{

    display:flex;

    flex-direction:column;

    align-items:flex-start;

    gap:18px;

    padding-top:12px;

}


.intro-index span{

    font-family:var(--serif);

    font-size:60px;

    line-height:1;

}


.intro-index div{

    width:35px;

    height:1px;

    background:var(--mustard);

}


.intro-index small{

    font-size:9px;

    font-weight:700;

    letter-spacing:1.5px;

    color:var(--muted);

}


.intro-content h2{

    max-width:850px;

    margin:0 0 40px;

    font-family:var(--serif);

    font-size:clamp(
        44px,
        5vw,
        72px
    );

    font-weight:400;

    line-height:1.03;

    letter-spacing:-2px;

}


.intro-content h2 em{

    color:var(--orange);

}


.intro-content > p{

    max-width:730px;

    margin:0;

    color:#62615c;

    font-size:17px;

    line-height:1.9;

}


/* =====================================================
   PRIORITIES
===================================================== */

.priorities {
    padding: 60px 0 60px;
    background: #e9e2d6;
}


.section-heading{

    display:grid;

    grid-template-columns:
        minmax(0,1fr)
        minmax(280px,430px);

    align-items:end;

    gap:60px;

    margin-bottom:65px;

}


.section-heading h2{

    margin:0;

    font-family:var(--serif);

    font-size:clamp(
        48px,
        6vw,
        78px
    );

    font-weight:400;

    line-height:1;

    letter-spacing:-2px;

}


.section-heading h2 em{

    color:var(--orange);

}


.section-heading > p{

    margin:0;

    color:var(--muted);

    font-size:16px;

    line-height:1.8;

}


.priority-grid{

    display:grid;

    grid-template-columns:
        repeat(3,1fr);

    gap:1px;

    background:var(--line);

    border:1px solid var(--line);

}


.priority-card{

    position:relative;

    min-height:360px;

    padding:32px;

    background:var(--cream);

    overflow:hidden;

    transition:
        transform .35s ease,
        background .35s ease,
        color .35s ease;

}


.priority-card::before{

    content:"";

    position:absolute;

    left:0;

    bottom:0;

    width:100%;

    height:4px;

    background:var(--mustard);

    transform:scaleX(0);

    transform-origin:left;

    transition:transform .4s ease;

}


.priority-card:hover{

    transform:translateY(-7px);

    background:var(--charcoal);

    color:white;

    z-index:2;

}


.priority-card:hover::before{

    transform:scaleX(1);

}


.priority-top{

    display:flex;

    align-items:center;

    justify-content:space-between;

}


.priority-top span{

    font-family:var(--serif);

    font-size:21px;

    color:var(--mustard);

}


.priority-top i{

    color:#aaa;

    font-size:13px;

    transition:transform .3s ease;

}


.priority-card:hover .priority-top i{

    transform:translate(4px,-4px);

    color:var(--mustard);

}


.priority-icon{

    margin-top:42px;

    color:var(--orange);

    font-size:30px;

}


.priority-card h3{

    max-width:330px;

    margin:20px 0;

    font-family:var(--serif);

    font-size:29px;

    font-weight:400;

    line-height:1.15;

}


.priority-line{

    width:45px;

    height:1px;

    margin:18px 0;

    background:var(--mustard);

}


.priority-card p{

    max-width:330px;

    margin:0;

    color:var(--muted);

    font-size:15px;

    line-height:1.75;

}


.priority-card:hover p{

    color:rgba(255,255,255,.62);

}


/* =====================================================
   OPPORTUNITIES
===================================================== */

.opportunities{

    padding:60px 0;

    background:var(--cream);

}


.opportunity-layout{

    display:grid;

    grid-template-columns:
        minmax(300px,.8fr)
        minmax(400px,1.2fr);

    gap:100px;

}


.opportunity-heading{

    position:relative;

}


.opportunity-heading h2{

    margin:0;

    font-family:var(--serif);

    font-size:clamp(
        50px,
        6vw,
        80px
    );

    font-weight:400;

    line-height:1;

    letter-spacing:-2px;

}


.opportunity-heading h2 em{

    color:var(--orange);

}


.big-number{

    margin-top:100px;

    color:#ded7ca;

    font-family:var(--serif);

    font-size:180px;

    line-height:.7;

}


.opportunity-content{

    padding-top:15px;

}


.large-copy{

    margin:0 0 25px;

    font-family:var(--serif);

    font-size:28px;

    line-height:1.4;

}


.opportunity-content > p:not(.large-copy){

    max-width:620px;

    color:var(--muted);

    font-size:16px;

    line-height:1.85;

}


.process-list{

    margin-top:55px;

    border-top:1px solid var(--line);

}


.process-item{

    display:grid;

    grid-template-columns:60px 1fr;

    gap:25px;

    padding:25px 0;

    border-bottom:1px solid var(--line);

}


.process-item > span{

    color:var(--mustard);

    font-family:var(--serif);

    font-size:18px;

}


.process-item strong{

    display:block;

    margin-bottom:5px;

    font-family:var(--serif);

    font-size:22px;

    font-weight:500;

}


.process-item p{

    margin:0;

    color:var(--muted);

    font-size:15px;

}


/* =====================================================
   STATUS
===================================================== */

.priorities {
    padding: 60px 0 60px;
    background: #e9e2d6;
}


.status-card{

    position:relative;

    min-height:440px;

    padding:75px 90px;

    display:grid;

    grid-template-columns:90px 1fr;

    gap:60px;

    align-items:center;

    background:var(--charcoal);

    color:white;

    overflow:hidden;

}


.status-card::after{

    content:"";

    position:absolute;

    right:-180px;

    bottom:-240px;

    width:520px;

    height:520px;

    border:1px solid rgba(199,154,66,.3);

    border-radius:50%;

    box-shadow:
        0 0 0 45px rgba(199,154,66,.04),
        0 0 0 90px rgba(199,154,66,.025);

}


.status-decoration{

    position:absolute;

    left:-25px;

    top:-25px;

    width:180px;

    height:180px;

    border:1px solid rgba(255,255,255,.08);

    border-radius:50%;

}


.status-decoration span{

    position:absolute;

    width:8px;

    height:8px;

    border-radius:50%;

    background:var(--mustard);

}


.status-decoration span:nth-child(1){

    left:85px;
    top:-4px;

}


.status-decoration span:nth-child(2){

    right:-4px;
    top:85px;

}


.status-decoration span:nth-child(3){

    bottom:10px;
    left:15px;

}


.status-number{

    position:relative;

    z-index:2;

    color:var(--mustard);

    font-family:var(--serif);

    font-size:26px;

}


.status-content{

    position:relative;

    z-index:2;

    max-width:720px;

}


.status-badge{

    display:flex;

    align-items:center;

    gap:10px;

    margin-bottom:20px;

    color:rgba(255,255,255,.55);

    font-size:10px;

    font-weight:700;

    letter-spacing:2px;

}


.status-badge span{

    width:7px;

    height:7px;

    border-radius:50%;

    background:var(--mustard);

    box-shadow:
        0 0 0 5px rgba(199,154,66,.1);

}


.status-content h2{

    margin:0 0 25px;

    font-family:var(--serif);

    font-size:clamp(
        45px,
        5vw,
        70px
    );

    font-weight:400;

    line-height:1;

}


.status-content h2 em{

    color:var(--mustard);

}


.status-content > p{

    max-width:680px;

    margin:0;

    color:rgba(255,255,255,.66);

    font-size:16px;

    line-height:1.85;

}


.status-note{

    width:max-content;

    max-width:100%;

    margin-top:30px;

    padding:13px 18px;

    display:flex;

    align-items:center;

    gap:12px;

    border:1px solid rgba(255,255,255,.12);

    color:rgba(255,255,255,.7);

    font-size:12px;

}


.status-note i{

    color:var(--mustard);

}


/* =====================================================
   GET INVOLVED
===================================================== */

.get-involved {
    padding: 60px 0;
    background: #e5ddd0;
}


.involved-grid{

    display:grid;

    grid-template-columns:
        minmax(300px,1fr)
        minmax(350px,1fr);

    gap:100px;

}


.involved-left{

    position:relative;

}


.involved-left h2{

    margin:0;

    max-width:650px;

    font-family:var(--serif);

    font-size:clamp(
        48px,
        6vw,
        78px
    );

    font-weight:400;

    line-height:1;

    letter-spacing:-2px;

}


.involved-left h2 em{

    color:var(--orange);

}


.involved-number{

    margin-top:80px;

    color:#d4cbbc;

    font-family:var(--serif);

    font-size:170px;

    line-height:.6;

}


.involved-right{

    display:flex;

    flex-direction:column;

    justify-content:flex-end;

    padding-bottom:15px;

}


.involved-lead{

    margin:0;

    font-family:var(--serif);

    font-size:27px;

    line-height:1.45;

}


.involved-actions{

    margin-top:50px;

    padding-top:30px;

    border-top:1px solid rgba(32,33,31,.18);

}


.primary-cta{

    width:100%;

    max-width:480px;

    min-height:70px;

    padding:0 22px 0 28px;

    display:flex;

    align-items:center;

    justify-content:space-between;

    background:var(--charcoal);

    color:white;

    font-size:11px;

    font-weight:700;

    letter-spacing:1.5px;

    transition:
        background .3s ease,
        transform .3s ease;

}


.primary-cta:hover{

    background:var(--orange);

    transform:translateY(-3px);

}


.primary-cta i{

    width:40px;

    height:40px;

    display:grid;

    place-items:center;

    border:1px solid rgba(255,255,255,.2);

}


.email-link{

    display:inline-flex;

    align-items:center;

    gap:10px;

    margin-top:25px;

    color:var(--charcoal);

    font-size:14px;

    font-weight:600;

    border-bottom:1px solid var(--charcoal);

    padding-bottom:4px;

}


.email-link i{

    font-size:12px;

}


/* =====================================================
   CLOSING
===================================================== */

.closing-section{

    position:relative;

    min-height:480px;

    display:flex;

    align-items:center;

    justify-content:center;

    background:var(--charcoal);

    color:white;

    overflow:hidden;

}


.closing-word{

    position:absolute;

    left:50%;

    top:50%;

    transform:
        translate(-50%,-50%);

    white-space:nowrap;

    color:rgba(255,255,255,.025);

    font-family:var(--serif);

    font-size:clamp(
        130px,
        25vw,
        380px
    );

    line-height:1;

}


.closing-inner{

    position:relative;

    z-index:2;

    text-align:center;

}


.closing-mark{

    width:42px;

    height:42px;

    margin:0 auto 25px;

    position:relative;

}


.closing-mark span{

    position:absolute;

    width:16px;

    height:16px;

    border-radius:50%;

}


.closing-mark span:nth-child(1){

    left:0;
    top:2px;

    background:var(--orange);

}


.closing-mark span:nth-child(2){

    right:0;
    top:0;

    background:var(--mustard);

}


.closing-mark span:nth-child(3){

    left:7px;
    bottom:0;

    background:var(--sage);

}


.closing-mark span:nth-child(4){

    right:4px;
    bottom:5px;

    background:white;

}


.closing-inner p{

    margin:0;

    font-family:var(--serif);

    font-size:32px;

    line-height:1.35;

}


.closing-hand{

    margin-top:20px;

    color:var(--mustard);

    font-family:var(--script);

    font-size:34px;

    transform:rotate(-5deg);

}


/* =====================================================
   FOOTER
===================================================== */

.footer{

    padding-top:75px;

    background:#171815;

    color:white;

    overflow:hidden;

}


.footer-main{

    width:min(
        var(--container),
        calc(100% - 70px)
    );

    margin:auto;

    display:grid;

    grid-template-columns:
        minmax(280px,.8fr)
        1.2fr;

    gap:100px;

}


.footer-brand{

    max-width:330px;

}


.footer-mini-symbol{

    display:flex;

    gap:4px;

    margin-bottom:17px;

}


.footer-mini-symbol i{

    width:8px;

    height:8px;

    border-radius:50%;

}


.footer-mini-symbol i:nth-child(1){
    background:var(--orange);
}


.footer-mini-symbol i:nth-child(2){
    background:var(--mustard);
}


.footer-mini-symbol i:nth-child(3){
    background:var(--sage);
}


.footer-mini-symbol i:nth-child(4){
    background:white;
}


.footer-logo{

    font-family:var(--serif);

    font-size:30px;

    letter-spacing:2px;

}


.footer-logo small{

    display:block;

    margin-top:-4px;

    font-family:var(--sans);

    font-size:7px;

    font-weight:700;

    letter-spacing:5px;

}


.footer-brand > p{

    margin:20px 0;

    color:rgba(255,255,255,.5);

    font-size:15px;

}


.footer-issue{

    display:flex;

    gap:20px;

    color:rgba(255,255,255,.35);

    font-size:9px;

    font-weight:700;

    letter-spacing:1.5px;

}


.footer-nav{

    display:grid;

    grid-template-columns:
        repeat(3,1fr);

    gap:40px;

}


.footer-nav div{

    display:flex;

    flex-direction:column;

    align-items:flex-start;

}


.footer-nav span{

    margin-bottom:18px;

    color:var(--mustard);

    font-size:10px;

    font-weight:700;

    letter-spacing:2px;

}


.footer-nav a{

    margin-bottom:10px;

    color:rgba(255,255,255,.62);

    font-size:14px;

    transition:
        color .3s ease,
        transform .3s ease;

}


.footer-nav a:hover{

    color:white;

    transform:translateX(4px);

}


.footer-word{

    width:min(
        var(--container),
        calc(100% - 70px)
    );

    margin:75px auto 35px;

    color:rgba(255,255,255,.035);

    font-family:var(--serif);

    font-size:clamp(
        100px,
        19vw,
        300px
    );

    line-height:.7;

    white-space:nowrap;

}


.footer-bottom{

    width:min(
        var(--container),
        calc(100% - 70px)
    );

    margin:auto;

    min-height:75px;

    display:flex;

    align-items:center;

    justify-content:space-between;

    gap:25px;

    border-top:1px solid rgba(255,255,255,.1);

    color:rgba(255,255,255,.3);

    font-size:10px;

    font-weight:600;

    letter-spacing:1px;

}


#backTop{

    width:42px;

    height:42px;

    display:grid;

    place-items:center;

    border:1px solid rgba(255,255,255,.15);

    background:transparent;

    color:white;

    opacity:0;

    visibility:hidden;

    transform:translateY(10px);

    transition:
        opacity .3s ease,
        visibility .3s ease,
        transform .3s ease;

}


#backTop.show{

    opacity:1;

    visibility:visible;

    transform:translateY(0);

}


#backTop:hover{

    background:var(--mustard);

    color:var(--charcoal);

}


/* =====================================================
   TABLET
===================================================== */

@media(max-width:1000px){

    .nav{

        gap:16px;

    }


    .nav a{

        font-size:12px;

    }


    .issue-btn{

        display:none;

    }


    .priority-grid{

        grid-template-columns:
            repeat(2,1fr);

    }


    .opportunity-layout{

        gap:60px;

    }


    .status-card{

        padding:60px;

    }


    .footer-main{

        gap:60px;

    }

}


/* =====================================================
   MOBILE
===================================================== */

@media(max-width:760px){

    html,
    body{

        width:100%;
        max-width:100%;

        overflow-x:hidden;

    }


    .container,
    .header-main,
    .footer-main,
    .footer-word,
    .footer-bottom{

        width:calc(100% - 30px);

        max-width:100%;

        min-width:0;

    }


    .header-top{

        padding:
            9px 15px;

        font-size:8px;

        letter-spacing:1px;

    }


    .header-top-center{

        display:none;

    }


    .header-main{

        min-height:76px;

    }


    .nav{

        display:none;

    }


    .hamburger{

        display:block;

    }


    .logo-name{

        font-size:21px;

    }


    .grants-hero{

        min-height:auto;

    }


    .grants-hero-inner{

        padding:
            90px 0 100px;

    }


    .hero-number{

        right:-50px;

        top:28%;

        font-size:240px;

    }


    .grants-hero h1{

        font-size:
            clamp(58px,16vw,85px);

        letter-spacing:-3px;

    }


    .hero-label{

        font-size:9px;

        letter-spacing:1.5px;

    }


    .hero-bottom{

        margin-top:55px;

        grid-template-columns:1fr;

        gap:25px;

    }


    .hero-bottom p{

        font-size:16px;

    }


    .hero-handwriting{

        right:20px;

        bottom:35px;

        font-size:25px;

    }


    .grant-intro{

        padding:90px 0;

    }


    .intro-grid{

        grid-template-columns:1fr;

        gap:35px;

    }


    .intro-index{

        flex-direction:row;

        align-items:center;

        gap:15px;

    }


    .intro-index span{

        font-size:40px;

    }


    .intro-index div{

        width:25px;

    }


    .intro-content h2{

        font-size:
            clamp(40px,11vw,58px);

        letter-spacing:-1.5px;

    }


    .intro-content > p{

        font-size:16px;

    }


    .priorities{

        padding:60px 0;

    }


    .section-heading{

        grid-template-columns:1fr;

        gap:25px;

        margin-bottom:45px;

    }


    .section-heading h2{

        font-size:
            clamp(43px,12vw,60px);

    }


    .priority-grid{

        grid-template-columns:1fr;

    }


    .priority-card{

        min-height:auto;

        padding:30px;

    }


    .priority-icon{

        margin-top:35px;

    }


    .priority-card h3{

        font-size:27px;

    }


    .opportunities{

        padding:95px 0;

    }


    .opportunity-layout{

        grid-template-columns:1fr;

        gap:50px;

    }


    .opportunity-heading h2{

        font-size:
            clamp(45px,12vw,62px);

    }


    .big-number{

        margin-top:50px;

        font-size:120px;

    }


    .large-copy{

        font-size:24px;

    }


    .process-item{

        grid-template-columns:45px 1fr;

        gap:15px;

    }


    .status-section{

        padding-bottom:60px;

    }


    .status-card{

        min-height:auto;

        padding:45px 30px 55px;

        grid-template-columns:1fr;

        gap:20px;

    }


    .status-number{

        font-size:22px;

    }


    .status-content h2{

        font-size:
            clamp(43px,12vw,60px);

    }


    .status-note{

        width:100%;

    }


    .get-involved{

        padding:60px 0;

    }


    .involved-grid{

        grid-template-columns:1fr;

        gap:55px;

    }


    .involved-left h2{

        font-size:
            clamp(45px,12vw,62px);

    }


    .involved-number{

        margin-top:55px;

        font-size:120px;

    }


    .involved-lead{

        font-size:24px;

    }


    .primary-cta{

        min-height:64px;

    }


    .closing-section{

        min-height:400px;

    }


    .closing-word{

        font-size:130px;

    }


    .closing-inner p{

        font-size:25px;

    }


    .footer{

        padding-top:60px;

    }


    .footer-main{

        grid-template-columns:1fr;

        gap:55px;

    }


    .footer-nav{

        grid-template-columns:
            repeat(2,1fr);

        gap:35px 20px;

    }


    .footer-word{

        margin-top:65px;

        font-size:105px;

    }


    .footer-bottom{

        padding:20px 0;

        flex-direction:column;

        align-items:flex-start;

    }


    #backTop{

        align-self:flex-end;

    }

}


/* =====================================================
   SMALL MOBILE
===================================================== */

@media(max-width:420px){

    .header-main{

        width:calc(100% - 24px);

    }


    .container{

        width:calc(100% - 30px);

    }


    .grants-hero h1{

        font-size:57px;

        letter-spacing:-2.5px;

    }


    .hero-bottom p{

        font-size:15px;

    }


    .hero-handwriting{

        font-size:22px;

    }


    .intro-content h2{

        font-size:40px;

    }


    .section-heading h2{

        font-size:43px;

    }


    .priority-card{

        padding:25px;

    }


    .priority-card h3{

        font-size:25px;

    }


    .large-copy{

        font-size:22px;

    }


    .status-card{

        padding:
            40px 23px 45px;

    }


    .status-content h2{

        font-size:42px;

    }


    .involved-left h2{

        font-size:42px;

    }


    .closing-inner p{

        font-size:23px;

    }


    .footer-word{

        font-size:95px;

    }

}


/* =====================================================
   ACCESSIBILITY
===================================================== */

@media(prefers-reduced-motion:reduce){

    *,
    *::before,
    *::after{

        animation-duration:.01ms !important;

        animation-iteration-count:1 !important;

        transition-duration:.01ms !important;

        scroll-behavior:auto !important;

    }

}


/* =====================================================
   SHARED MAIN-SITE HEADER / FOOTER COMPATIBILITY
===================================================== */

:root{
    --terracotta:var(--orange);
    --taupe:var(--line);
}

/* =====================================================
   HEADER
===================================================== */

.header{

    position:sticky;

    top:0;

    z-index:1000;

    width:100%;

    background:rgba(248,244,236,.96);

    border-bottom:1px solid var(--taupe);

    backdrop-filter:blur(15px);

}


.header.scrolled{

    box-shadow:
        0 10px 30px
        rgba(31,31,29,.08);

}


.header-top{

    min-height:28px;

    padding:4px 35px;

    display:flex;

    justify-content:space-between;

    align-items:center;

    border-bottom:1px solid var(--taupe);

    color:#777067;

    font-size:10px;

    font-weight:700;

    line-height:1.2;

    letter-spacing:1.5px;

}


.header-top span:nth-child(2){

    color:var(--terracotta);

}


.header-main{

    width:min(
        var(--container),
        calc(100% - 70px)
    );

    min-height:80px;

    margin:auto;

    display:flex;

    align-items:center;

    gap:25px;

}


.logo{

    flex-shrink:0;

    display:flex;

    align-items:center;

    gap:10px;

}


.logo-symbol{

    position:relative;

    width:35px;

    height:31px;

    flex-shrink:0;

}


.logo-symbol i{

    position:absolute;

    width:9px;

    height:9px;

    border-radius:50%;

}


.logo-symbol i:nth-child(1){

    top:0;

    left:13px;

    background:var(--terracotta);

}


.logo-symbol i:nth-child(2){

    top:10px;

    left:0;

    background:var(--mustard);

}


.logo-symbol i:nth-child(3){

    top:10px;

    right:0;

    background:var(--sage);

}


.logo-symbol i:nth-child(4){

    bottom:0;

    left:13px;

    background:var(--charcoal);

}


.logo-name{

    font-family:var(--serif);

    font-size:22px;

    line-height:1;

    letter-spacing:2px;

}


.logo-name small{

    display:block;

    margin-top:4px;

    color:var(--terracotta);

    font-family:var(--sans);

    font-size:8px;

    font-weight:700;

    letter-spacing:3px;

    text-align:center;

}


.nav{

    min-width:0;

    margin-left:auto;

    display:flex;

    align-items:center;

    gap:19px;

}


.nav a{

    position:relative;

    padding:8px 0;

    white-space:nowrap;

    font-size:16px;

    font-weight:500;

    line-height:1.2;

}


.nav a::after{

    content:"";

    position:absolute;

    left:0;

    bottom:0;

    width:0;

    height:2px;

    background:var(--terracotta);

    transition:.3s ease;

}


.nav a:hover::after,
.nav a.active::after{

    width:100%;

}


.header-actions{

    display:flex;

    align-items:center;

    gap:14px;

    flex-shrink:0;

}


.search-btn{

    width:35px;

    height:35px;

    display:grid;

    place-items:center;

    border:0;

    background:transparent;

    color:var(--charcoal);

    font-size:16px;

}


.issue-btn{

    display:flex;

    align-items:center;

    gap:9px;

    padding:11px 15px;

    color:white;

    background:var(--charcoal);

    font-size:16px;

    font-weight:600;

    line-height:1;

    white-space:nowrap;

    transition:.3s ease;

}


.issue-btn:hover{

    background:var(--terracotta);

}


.hamburger{

    display:none;

    width:38px;

    height:38px;

    border:0;

    background:transparent;

}


.hamburger span{

    display:block;

    width:25px;

    height:2px;

    margin:5px auto;

    background:var(--charcoal);

}



/* =====================================================
   MOBILE MENU
===================================================== */

.mobile-menu{

    position:fixed;

    inset:0;

    z-index:5000;

    overflow-y:auto;

    background:var(--charcoal);

    color:var(--cream);

    transform:translateX(100%);

    transition:
        transform .5s
        cubic-bezier(.77,0,.18,1);

}


.mobile-menu.open{

    transform:translateX(0);

}


.mobile-close{

    position:absolute;

    top:22px;

    right:22px;

    width:45px;

    height:45px;

    display:grid;

    place-items:center;

    border:1px solid rgba(255,255,255,.2);

    border-radius:50%;

    background:transparent;

    color:white;

    font-size:20px;

}


.mobile-inner{

    width:100%;

    min-height:100%;

    padding:80px 25px 25px;

    display:flex;

    flex-direction:column;

}


.mobile-logo{

    font-family:var(--serif);

    font-size:30px;

    line-height:1;

    letter-spacing:2px;

}


.mobile-logo small{

    display:block;

    margin-top:5px;

    color:var(--terracotta);

    font-family:var(--sans);

    font-size:8px;

    font-weight:700;

    letter-spacing:3px;

}


.mobile-caption{

    margin-top:12px;

    color:var(--mustard);

    font-size:16px;

    line-height:1.3;

}


.mobile-menu nav{

    width:100%;

    margin-top:35px;

}


.mobile-menu nav a{

    width:100%;

    min-width:0;

    display:grid;

    grid-template-columns:35px minmax(0,1fr) 25px;

    align-items:center;

    gap:12px;

    padding:14px 0;

    border-bottom:1px solid rgba(255,255,255,.12);

    font-family:var(--sans);

    font-size:16px;

    font-weight:500;

    line-height:1.3;

}


.mobile-menu nav a span{

    color:#77736c;

    font-size:12px;

}


.mobile-menu nav a i{

    color:var(--terracotta);

    font-size:12px;

    text-align:right;

}


.mobile-bottom{

    margin-top:auto;

    padding-top:35px;

    color:#77736c;

    font-size:12px;

    letter-spacing:1.5px;

}



/* =====================================================
   SEARCH
===================================================== */

.search-overlay{

    position:fixed;

    inset:0;

    z-index:6000;

    display:flex;

    align-items:center;

    background:var(--cream);

    opacity:0;

    visibility:hidden;

    transition:.3s ease;

}


.search-overlay.open{

    opacity:1;

    visibility:visible;

}


.search-close{

    position:absolute;

    top:25px;

    right:25px;

    width:45px;

    height:45px;

    border:1px solid var(--taupe);

    border-radius:50%;

    background:transparent;

    font-size:18px;

}


.search-container{

    width:min(
        900px,
        calc(100% - 50px)
    );

    margin:auto;

}


.search-container > span{

    color:var(--terracotta);

    font-size:16px;

    font-weight:700;

    letter-spacing:2px;

}


.search-container h2{

    margin-top:18px;

    font-family:var(--serif);

    font-size:clamp(55px,8vw,95px);

    font-weight:400;

    line-height:.9;

}


.search-container h2 em{

    color:var(--terracotta);

}


.search-container form{

    margin-top:45px;

    display:flex;

    border-bottom:2px solid var(--charcoal);

}


.search-container input{

    width:100%;

    min-width:0;

    padding:15px 0;

    border:0;

    outline:0;

    background:transparent;

    font-size:18px;

}


.search-container button{

    width:55px;

    flex-shrink:0;

    border:0;

    background:transparent;

    font-size:18px;

}


#searchMessage{

    margin-top:15px;

    color:var(--terracotta);

    font-size:16px;

}



/* =====================================================
   FOOTER
===================================================== */

.footer{

    padding:75px 0 25px;

    color:var(--cream);

    background:var(--charcoal);

}


.footer-main{

    width:min(
        var(--container),
        calc(100% - 70px)
    );

    margin:auto;

    display:grid;

    grid-template-columns:.8fr 1.2fr;

    gap:100px;

}


.footer-mini-symbol{

    display:flex;

    gap:5px;

    margin-bottom:16px;

}


.footer-mini-symbol i{

    width:8px;

    height:8px;

    border-radius:50%;

}


.footer-mini-symbol i:nth-child(1){

    background:var(--terracotta);

}


.footer-mini-symbol i:nth-child(2){

    background:var(--mustard);

}


.footer-mini-symbol i:nth-child(3){

    background:var(--sage);

}


.footer-mini-symbol i:nth-child(4){

    background:var(--taupe);

}


.footer-logo{

    font-family:var(--serif);

    font-size:30px;

    letter-spacing:2px;

}


.footer-logo small{

    display:block;

    margin-top:3px;

    color:var(--terracotta);

    font-family:var(--sans);

    font-size:8px;

    font-weight:700;

    letter-spacing:3px;

}


.footer-brand > p{

    margin-top:12px;

    color:#817b73;

    font-size:16px;

}


.footer-issue{

    display:flex;

    flex-wrap:wrap;

    gap:20px;

    margin-top:30px;

    color:#66625c;

    font-size:16px;

    font-weight:700;

}


.footer-nav{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:40px;

}


.footer-nav > div{

    display:flex;

    flex-direction:column;

    align-items:flex-start;

}


.footer-nav span{

    margin-bottom:18px;

    color:var(--terracotta);

    font-size:16px;

    font-weight:700;

    letter-spacing:2px;

}


.footer-nav a{

    margin-bottom:10px;

    color:#918b83;

    font-size:16px;

    line-height:1.5;

    transition:.25s ease;

}


.footer-nav a:hover{

    color:var(--cream);

    transform:translateX(4px);

}


.footer-word{

    width:min(
        var(--container),
        calc(100% - 70px)
    );

    margin:75px auto 35px;

    color:rgba(255,255,255,.045);

    font-family:var(--serif);

    font-size:clamp(100px,19vw,290px);

    line-height:.65;

    white-space:nowrap;

}


.footer-bottom{

    width:min(
        var(--container),
        calc(100% - 70px)
    );

    margin:auto;

    padding-top:18px;

    border-top:1px solid rgba(255,255,255,.1);

    display:flex;

    align-items:center;

    justify-content:space-between;

    gap:20px;

    color:#66615a;

    font-size:16px;

}


#backTop{

    width:42px;

    height:42px;

    flex-shrink:0;

    display:grid;

    place-items:center;

    border:1px solid rgba(255,255,255,.15);

    border-radius:50%;

    background:transparent;

    color:var(--cream);

    opacity:0;

    visibility:hidden;

    transform:translateY(10px);

    transition:.3s ease;

}


#backTop.show{

    opacity:1;

    visibility:visible;

    transform:translateY(0);

}




/* =====================================================
   SHARED HEADER / FOOTER RESPONSIVE OVERRIDES
===================================================== */

@media(max-width:1200px){
    .nav{gap:13px;}
    .nav a{font-size:14px;}
    .issue-btn{display:none;}
}

@media(max-width:900px){
    .header-top{display:none;}
    .header-main{
        width:calc(100% - 36px);
        min-height:70px;
    }
    .nav{display:none;}
    .header-actions{margin-left:auto;}
    .hamburger{display:block;}
    .footer-main{
        width:calc(100% - 36px);
        grid-template-columns:1fr;
        gap:50px;
    }
    .footer-word{
        width:calc(100% - 36px);
        font-size:130px;
    }
    .footer-bottom{
        width:calc(100% - 36px);
    }
}

@media(max-width:600px){
    .header-main{
        width:calc(100% - 30px);
        min-height:65px;
    }
    .logo-name{font-size:18px;}
    .header-actions{gap:5px;}
    .search-btn{width:35px;}
    .mobile-inner{
        padding-left:20px;
        padding-right:20px;
    }
    .mobile-menu nav a{font-size:16px;}
    .footer-nav{
        grid-template-columns:1fr 1fr;
        gap:30px;
    }
    .footer-word{font-size:90px;}
    .footer-bottom{
        flex-direction:column;
        align-items:flex-start;
    }
}

@media(max-width:380px){
    .footer-nav{grid-template-columns:1fr;}
}
