:root{
    --bg:#f5f7f6;
    --paper:#ffffff;
    --paper-soft:#eef3f1;

    --deep:#173b3d;
    --deep-2:#244c4d;
    --deep-3:#345f5d;

    --teal:#628c88;
    --teal-soft:#dce9e5;
    --sage:#84957e;
    --cream:#f1ede4;
    --mauve:#8f808e;

    --text:#203638;
    --muted:#647674;
    --line:#d7e1dd;

    --max:1240px;
    --shadow:0 18px 50px rgba(27,60,59,.08);
}

*{box-sizing:border-box}

html{
    scroll-behavior:smooth;
    background:var(--bg);
}

body{
    margin:0;
    color:var(--text);
    background:var(--bg);
    font-family:
        Inter,
        "Helvetica Neue",
        Helvetica,
        Arial,
        sans-serif;
    -webkit-font-smoothing:antialiased;
}

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

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

.wrap{
    width:min(var(--max),calc(100% - 72px));
    margin:auto;
}

/* HEADER */

.corp-header{
    position:sticky;
    top:0;
    z-index:50;
    background:rgba(250,252,251,.94);
    border-bottom:1px solid rgba(207,220,216,.9);
    backdrop-filter:blur(18px);
}

.corp-head{
    min-height:86px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:34px;
}

.wordmark{
    white-space:nowrap;
    color:#173b3d;
    font-size:23px;
    font-weight:620;
    letter-spacing:-.035em;
}

.wordmark span{
    color:#738681;
    font-weight:420;
}

.corp-nav{
    display:flex;
    align-items:center;
    justify-content:flex-end;
    gap:28px;
    margin-left:auto;
}

.corp-nav>a:not(.shop-button){
    position:relative;
    color:#526765;
    font-size:14px;
    font-weight:620;
}

.corp-nav>a:not(.shop-button)::after{
    content:"";
    position:absolute;
    left:0;
    right:100%;
    bottom:-8px;
    height:1px;
    background:var(--teal);
    transition:right .18s ease;
}

.corp-nav>a:not(.shop-button):hover::after{
    right:0;
}

.shop-button{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-height:46px;
    padding:0 21px;
    border-radius:3px;
    background:var(--deep);
    color:#fff;
    font-size:14px;
    font-weight:700;
    letter-spacing:.01em;
    transition:.18s ease;
}

.shop-button:hover{
    background:var(--deep-2);
}

/* HERO */

.corp-hero{
    background:#eef3f1;
}

.hero-grid{
    width:min(1500px,100%);
    margin:auto;
    min-height:680px;
    display:grid;
    grid-template-columns:minmax(0,.88fr) minmax(500px,1.12fr);
}

.hero-copy{
    display:flex;
    flex-direction:column;
    justify-content:center;
    padding:88px max(54px,calc((100vw - 1240px)/2)) 88px
            max(54px,calc((100vw - 1240px)/2));
}

.eyebrow{
    margin-bottom:25px;
    color:#718b85;
    font-size:12px;
    line-height:1;
    font-weight:760;
    text-transform:uppercase;
    letter-spacing:.19em;
}

.hero-copy h1{
    max-width:690px;
    margin:0;
    color:#183a3c;
    font-family:Georgia,"Times New Roman",serif;
    font-size:clamp(47px,5.2vw,76px);
    line-height:1.04;
    font-weight:400;
    letter-spacing:-.045em;
}

.hero-copy p{
    max-width:610px;
    margin:30px 0 0;
    color:#5f7471;
    font-size:18px;
    line-height:1.72;
}

.hero-actions{
    display:flex;
    flex-wrap:wrap;
    gap:24px;
    align-items:center;
    margin-top:38px;
}

.text-action{
    display:inline-flex;
    align-items:center;
    gap:11px;
    color:#315d5b;
    font-size:14px;
    font-weight:720;
}

.text-action::after{
    content:"→";
    transition:transform .16s ease;
}

.text-action:hover::after{
    transform:translateX(4px);
}

.hero-media{
    min-height:680px;
    position:relative;
    overflow:hidden;
}

.hero-media img{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
    object-fit:cover;
    object-position:center;
}

.hero-media::after{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(
        90deg,
        rgba(33,64,63,.09),
        rgba(33,64,63,0)
    );
}

/* GENERAL */

.section{
    padding:110px 0;
}

.section.white{
    background:#fff;
}

.section.soft{
    background:#eef3f1;
}

.section.dark{
    background:var(--deep);
    color:#fff;
}

.section-head{
    max-width:820px;
    margin-bottom:60px;
}

.section-label{
    margin-bottom:18px;
    color:#78918b;
    font-size:11px;
    font-weight:780;
    letter-spacing:.18em;
    text-transform:uppercase;
}

.section h2{
    margin:0;
    color:#1e3c3e;
    font-family:Georgia,"Times New Roman",serif;
    font-size:clamp(38px,4vw,58px);
    line-height:1.1;
    font-weight:400;
    letter-spacing:-.035em;
}

.section-head p{
    margin:24px 0 0;
    color:#657774;
    font-size:17px;
    line-height:1.75;
}

/* RESEARCH CARDS */

.focus-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    border-top:1px solid var(--line);
    border-left:1px solid var(--line);
}

.focus-card{
    min-height:300px;
    padding:34px 30px;
    border-right:1px solid var(--line);
    border-bottom:1px solid var(--line);
    background:#fff;
}

.focus-no{
    margin-bottom:56px;
    color:#829993;
    font-size:12px;
    letter-spacing:.12em;
}

.focus-card h3{
    margin:0 0 17px;
    color:#244546;
    font-size:18px;
    line-height:1.35;
}

.focus-card p{
    margin:0;
    color:#6b7d79;
    font-size:14px;
    line-height:1.7;
}

/* IMAGE / TEXT */

.editorial-grid{
    display:grid;
    grid-template-columns:1.05fr .95fr;
    align-items:stretch;
    min-height:620px;
}

.editorial-image{
    overflow:hidden;
}

.editorial-image img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.editorial-copy{
    display:flex;
    flex-direction:column;
    justify-content:center;
    padding:80px clamp(45px,7vw,110px);
    background:#1d4243;
    color:#fff;
}

.editorial-copy .section-label{
    color:#a9c0ba;
}

.editorial-copy h2{
    color:#fff;
}

.editorial-copy p{
    margin:26px 0 0;
    color:#cad8d4;
    font-size:16px;
    line-height:1.8;
}

/* SCIENCE */

.science-grid{
    display:grid;
    grid-template-columns:.75fr 1.25fr;
    gap:100px;
}

.science-intro{
    position:sticky;
    top:125px;
    align-self:start;
}

.science-intro h2{
    font-size:48px;
}

.science-copy{
    display:grid;
    gap:0;
}

.science-block{
    padding:0 0 40px;
    margin-bottom:40px;
    border-bottom:1px solid var(--line);
}

.science-block:last-child{
    border-bottom:0;
}

.science-block .number{
    display:inline-block;
    min-width:42px;
    color:#80958f;
    font-size:12px;
}

.science-block h3{
    display:inline;
    margin:0;
    color:#27494a;
    font-size:21px;
    line-height:1.4;
}

.science-block p{
    margin:18px 0 0 46px;
    color:#687a76;
    font-size:15px;
    line-height:1.78;
}

/* PHOTO STRIP */

.photo-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:2px;
    background:#dce5e1;
}

.photo-card{
    position:relative;
    min-height:520px;
    overflow:hidden;
    background:#dce5e1;
}

.photo-card img{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
    object-fit:cover;
    transition:transform .6s ease;
}

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

.photo-caption{
    position:absolute;
    left:26px;
    bottom:24px;
    padding:11px 14px;
    background:rgba(19,51,52,.86);
    color:#eaf0ee;
    font-size:12px;
    letter-spacing:.035em;
    backdrop-filter:blur(8px);
}

/* INSIGHTS */

.insights-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:22px;
}

.insight{
    min-height:320px;
    padding:34px;
    background:#f7f9f8;
    border:1px solid var(--line);
    transition:.18s ease;
}

.insight:hover{
    transform:translateY(-3px);
    background:#fff;
    box-shadow:var(--shadow);
}

.insight-tag{
    margin-bottom:65px;
    color:#81958f;
    font-size:10px;
    font-weight:780;
    text-transform:uppercase;
    letter-spacing:.15em;
}

.insight h3{
    margin:0 0 18px;
    color:#234546;
    font-family:Georgia,"Times New Roman",serif;
    font-size:25px;
    line-height:1.23;
    font-weight:400;
}

.insight p{
    margin:0;
    color:#687b77;
    font-size:14px;
    line-height:1.7;
}

/* ANALYTICS */

.analysis-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:90px;
    align-items:start;
}

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

.analysis-row{
    display:grid;
    grid-template-columns:160px 1fr;
    gap:28px;
    padding:27px 0;
    border-bottom:1px solid var(--line);
}

.analysis-row strong{
    color:#315352;
    font-size:13px;
}

.analysis-row span{
    color:#6d7f7a;
    font-size:14px;
    line-height:1.65;
}

/* SHOP CTA */

.shop-cta{
    padding:105px 0;
    background:
      radial-gradient(circle at 88% 20%,rgba(132,151,126,.20),transparent 25%),
      radial-gradient(circle at 10% 100%,rgba(143,128,142,.13),transparent 30%),
      #173b3d;
}

.shop-cta-inner{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:70px;
}

.shop-cta h2{
    max-width:710px;
    margin:0;
    color:#fff;
    font-family:Georgia,"Times New Roman",serif;
    font-size:clamp(40px,4.5vw,62px);
    line-height:1.08;
    font-weight:400;
    letter-spacing:-.035em;
}

.shop-cta p{
    max-width:600px;
    margin:22px 0 0;
    color:#c5d4d0;
    font-size:16px;
    line-height:1.7;
}

.shop-cta .shop-button{
    flex:0 0 auto;
    min-height:54px;
    padding:0 29px;
    background:#edf3f0;
    color:#1b4242;
}

.shop-cta .shop-button:hover{
    background:#fff;
}

/* FOOTER */

.corp-footer{
    padding:58px 0 38px;
    background:#102f31;
    color:#afc0bc;
}

.footer-top{
    display:flex;
    justify-content:space-between;
    gap:60px;
    padding-bottom:45px;
    border-bottom:1px solid rgba(214,229,224,.14);
}

.footer-brand{
    color:#fff;
    font-size:21px;
    font-weight:520;
    letter-spacing:-.025em;
}

.footer-links{
    display:flex;
    flex-wrap:wrap;
    gap:26px;
    color:#bdccc8;
    font-size:13px;
}

.footer-bottom{
    display:flex;
    justify-content:space-between;
    gap:40px;
    margin-top:28px;
    color:#7f9993;
    font-size:11px;
    line-height:1.6;
}

.footer-note{
    max-width:730px;
}

/* RESPONSIVE */

@media(max-width:1000px){

    .corp-nav>a:not(.shop-button){
        display:none;
    }

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

    .hero-copy{
        min-height:570px;
    }

    .hero-media{
        min-height:520px;
    }

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

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

    .editorial-image{
        min-height:520px;
    }

    .science-grid{
        grid-template-columns:1fr;
        gap:45px;
    }

    .science-intro{
        position:static;
    }

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

    .analysis-grid{
        grid-template-columns:1fr;
        gap:45px;
    }
}

@media(max-width:700px){

    .wrap{
        width:min(100% - 34px,var(--max));
    }

    .corp-head{
        min-height:74px;
    }

    .wordmark{
        font-size:19px;
    }

    .corp-nav{
        gap:10px;
    }

    .corp-nav .shop-button{
        min-height:40px;
        padding:0 15px;
        font-size:12px;
    }

    .hero-copy{
        min-height:520px;
        padding:65px 24px;
    }

    .hero-copy h1{
        font-size:46px;
    }

    .hero-copy p{
        font-size:16px;
    }

    .hero-media{
        min-height:390px;
    }

    .section{
        padding:76px 0;
    }

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

    .focus-card{
        min-height:240px;
    }

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

    .photo-card{
        min-height:390px;
    }

    .analysis-row{
        grid-template-columns:1fr;
        gap:9px;
    }

    .shop-cta{
        padding:78px 0;
    }

    .shop-cta-inner{
        display:block;
    }

    .shop-cta .shop-button{
        margin-top:32px;
    }

    .footer-top,
    .footer-bottom{
        display:block;
    }

    .footer-links{
        margin-top:28px;
    }

    .footer-bottom>div+div{
        margin-top:18px;
    }
}

/* HE_MOBILE_SHOP_BUTTON_POSITION_V28 */
@media(max-width:700px){
    .corp-nav .shop-button{
        position:relative !important;
        right:18px !important;
        margin-right:0 !important;
    }
}

