:root {
    --n: #102750;
    --o: #ff6508;
    --t: #59657a;
    --c: #fff9f5;
    --l: #e9ddd7
}

* {
    box-sizing: border-box;
    /* border: solid 1px red; */
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--n);
    font-family: Poppins, Arial, sans-serif;
    
}

.container {
    width: min(100% - 48px, 1480px);
    margin: auto;
}

.site-header-about {
    position: relative;
    z-index: 10;
    padding: 12px 0;
    background: #FFF9F5;
}
.site-header {
    /* position: sticky; */
    top: 0;
    z-index: 999;
    background: #FDF6F1;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    /* border-bottom: 1px solid rgba(0, 0, 0, .04); */
}

.site-header__inner {
    min-height: 92px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand {
    width: 220px;
}

.brand img {
    width: 100%;
}

.site-menu {
    display: flex;
    align-items: center;
    gap: 34px;
}

.site-menu a {
    position: relative;
    font-size: 16px;
    font-weight: 500;
    color: #29354a;
    text-decoration: none;
    transition: .25s;

}

.site-menu a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0;
    height: 2px;
    background: #FE7A06;
    transition: .25s;
}

.site-menu a:hover {
    color: #FE7A06;
}

.site-menu a:hover::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    width: 46px;
    height: 46px;
    border: none;
    background: transparent;
    cursor: pointer;
    position: relative;
}

.menu-toggle span {
    display: block;
    width: 28px;
    height: 2px;
    background: #0F2345;
    margin: 6px auto;
    transition: .3s;
}

.menu-toggle.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

@media(max-width:900px) {
    .site-menu {
        position: absolute;
        left: 0;
        top: 92px;
        width: 100%;
        background: #fff;
        display: flex;
        flex-direction: column;
        gap: 0;
        overflow: hidden;
        max-height: 0;
        transition: max-height .35s ease;
        box-shadow: 0 15px 35px rgba(0, 0, 0, .08);
    }

    .site-menu.open {
        max-height: 420px;
    }

    .site-menu a {
        width: 100%;
        padding: 18px 30px;
        border-top: 1px solid rgba(0, 0, 0, .05);
    }

    .site-menu a::after {
        display: none;
    }

    .menu-toggle {
        display: block;
    }

}

.about-hero {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    padding: 44px 0 30px;
    background: radial-gradient(circle at 55% 35%, #fff 0, transparent 45%), var(--c);
    /* border: solid 11px red; */
}

.about-hero h1 {
    margin: 14px 0 9px;
    font: 800 clamp(40px, 4.2vw, 58px)/1.05 Manrope, sans-serif;
    letter-spacing: -.07em
}

.about-hero h1 span,
.who h2 span {
    color: var(--o)
}

.about-hero .container>p:not(.pill) {
    max-width: 525px;
    color: var(--t);
    font-size: 16px;
    line-height: 1.6;
    /* border: solid 1px blue; */
}

.pill,
.label {
    color: var(--o);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    /* border: solid 1px blue; */
}

.pill {
    display: inline-flex;
    gap: 7px;
    align-items: center;
    padding: 7px 13px;
    border: 1px solid #ffad79;
    border-radius: 99px;
    /* border: solid 5px green; */
}

.about-hero strong {
    display: flex;
    gap: 8px;
    align-items: center;
    margin-top: 14px;
    color: #687386;
    font-size: 13px;
    /* border: solid 5px green; */
}

.about-hero strong i {
    color: var(--o);
    font-size: 16px;
    /* border: solid 5px green; */
}

.dots {
    position: absolute;
    top: 0;
    left: 51%;
    width: 145px;
    height: 145px;
    opacity: .5;
    background-image: radial-gradient(#f5b48a 1.5px, transparent 1.8px);
    background-size: 15px 15px;
    /* border: solid 5px green; */
}

.orbit {
    position: absolute;
    z-index: -1;
    border: 1px solid rgba(255, 137, 67, .2);
    border-radius: 50%;
    /* border: solid 5px green; */
}

.o1 {
    top: -110px;
    right: -45px;
    width: 480px;
    height: 480px;;
}

.o2 {
    top: -40px;
    right: 30px;
    width: 350px;
    height: 350px;
}

.intro {
    padding: 20px 0 12px;
    /* border: solid 5px green; */
}

.who {
    display: grid;
    grid-template-columns: 230px 2.10fr .8fr;
    gap: 28px;
    align-items: start;
    background-color: #fff8f1a3;
    padding: 32px 38px;
    border: 1px solid #eee8e4;
    border-radius: 16px;
    box-shadow: 0 8px 18px #30231a14;
    /* border: solid 5px green; */
    margin-top: 1%;
}

.label {
    margin: 0 0 13px;
    /* border: solid 1px red; */
}

.left-who{
    margin-top: 2%;
    /* border: solid 1px red; */
}

.label:after {
    display: block;
    width: 17px;
    height: 3px;
    margin-top: 7px;
    background: var(--o);
    content: "";
    /* border: solid 11px red; */
}
/* 
.who>div:first-child {
    padding-right: 28px;
    border-right: 1px solid var(--l);
} */

.who h2 {
    margin: 0;
    font: 800 45px/1.04 Manrope, sans-serif;
    letter-spacing: -.07em;
    /* border: solid 5px green; */
}

.copy  {
    /* border: solid 3px green; */
    padding-left: 38px;
    border-left: 1.9px solid var(--l);
}

.copy p {
    margin: 0 0 10px;
    color: #4d596d;
    font-size: 16px;
    line-height: 1.5;
    width: 100%;
    /* border: solid 3px green; */
}

.who-visual {
    position: relative;
    display: grid;
    width: 220px;
    height: 220px;
    margin-top: 20%;
    place-items: center;
    justify-self: center;
    /* border: solid 5px green; */
}

.who-visual>i {
    position: absolute;
    inset: 9px;
    border: 1px dashed #ff752c8c;
    border-radius: 50%;
    
}

.who-visual img {
    width: 100px;
}

.who-visual b {
    position: absolute;
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border: 1px solid #ffe7da;
    border-radius: 50%;
    background: #fff;
    color: var(--o);
    box-shadow: 0 4px 10px #36271b17;
}

.who-visual b:nth-of-type(1) {
    top: 0;
    right: 8px
}

.who-visual b:nth-of-type(2) {
    top: 46px;
    left: -2px
}

.who-visual b:nth-of-type(3) {
    right: 2px;
    bottom: 0
}

.mission {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 13px;
    margin-top: 20px;
    
}

.mission article {
    display: flex;
    gap: 24px;
    align-items: center;
    padding: 24px 35px;
    border: 1px solid #eee8e4;
    border-radius: 14px;
    box-shadow: 0 7px 17px #30231a0f;
    /* border: solid 5px green; */
}

.mission>article>i {
    display: grid;
    flex: none;
    width: 70px;
    height: 70px;
    place-items: center;
    border-radius: 50%;
    background: #fff0e8;
    color: var(--o);
    font-size: 28px;
    /* border: solid 5px green; */
}

.mission h3 {
    margin: 0;
    font: 700 18px/1.3 Manrope, sans-serif;
    
}

.values {
    padding: 3% 0;
    background: linear-gradient(#fff, #fffaf7);
     /* border: solid 5px green;  */
}

.values header,
.process header {
    text-align: center;
    /* border: solid 5px green; */
}

.values header h2,
.process header h2 {
    margin: 0;
    color: #657187;
    font-size: 16px;
    font-weight: 500;
    /* border: solid 5px green; */
}

.values .label:after,
.process .label:after {
    margin-inline: auto;
    
}

.value-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 12px;
    margin-top: 17px;
    padding: 8px;
     /* border: solid 5px green;  */
}

.value-grid article {
    min-height: 165px;
    padding: 30px 24px;
    border: 1px solid #eee8e4;
    border-radius: 13px;
    box-shadow: 0 6px 12px #30231a0a;
    text-align: center;
    /* border: solid 5px green; */
}

.value-grid i,
.stats>div>article>i {
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: #fff0e8;
    color: var(--o)
}

.value-grid i {
    width: 55px;
    height: 55px;
    margin: auto;
    font-size: 24px;
    /* border: solid 5px green; */
}

.value-grid h3 {
    margin: 10px 0 7px;
    font: 800 17px Manrope, sans-serif;
    /* border: solid 5px green; */
}

.value-grid p,
.process li p {
    color: #687386;
    font-size: 15px;
    line-height: 1.45;
    /* border: solid 5px green; */
}

.process {
    padding: 4% 0;
    /* border: solid 5px red; */
    display: flex;
    
}

.process ol {
    position: relative;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 14px;
    margin: 20px 0 0;
    padding: 0;
    list-style: none;
     /* border: solid 5px green;  */
}

.process ol:before {
    position: absolute;
    top: 30px;
    right: 8%;
    left: 8%;
    height: 1px;
    background: repeating-linear-gradient(90deg, #f3c7ae 0 2px, transparent 2px 5px);
    content: ""
}

.process li {
    position: relative;
    z-index: 1;
    text-align: center
}

.process li>i {
    display: grid;
    width: 61px;
    height: 61px;
    margin: auto;
    place-items: center;
    border: 1px solid #ffe0cd;
    border-radius: 50%;
    background: #fff;
    color: var(--o);
    box-shadow: 0 5px 12px #412d1e14;
    font-size: 24px;
    /* border: solid 5px green; */
}

.process h3 {
    margin: 10px 0 7px;
    font: 800 12px Manrope, sans-serif
}

.process p {
    max-width: 120px;
    margin: auto
}

.stats {
    padding: 28px 0;
    background: #fff7f1;
    /* border: solid 5px green; */
    margin: 0 12% 3% 12%;
    border-radius: 20px;
}

.stats>div {
    display: grid;
    grid-template-columns: repeat(4, 1fr)
}

.stats article {
    display: flex;
    justify-content: center;
    gap: 14px;
    align-items: center;
    padding: 4px 28px
}

.stats article+article {
    border-left: 1px solid var(--l)
}

.stats i {
    width: 62px;
    height: 62px;
    font-size: 24px;
    /* border: solid 5px green; */
}

.stats b {
    display: block;
    font: 800 32px/1 Manrope, sans-serif
}

.stats span {
    display: block;
    margin-top: 5px;
    color: #5f6a7d;
    font-size: 13px;
    /* border: solid 5px green; */
}


/* 
.page-footer {
    padding: 44px 0 0;
    background: #0c1e4c;
    color: #e9edf5;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.35fr repeat(3, 1fr);
    gap: clamp(35px, 6vw, 86px);
    padding-bottom: 34px
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 9px;
    color: #fff;
    font: 800 25px Manrope, sans-serif;
    text-decoration: none
}

.footer-logo img {
    width: 54px;
    height: 54px
}

.footer-logo span span {
    color: var(--o)
}

.tagline {
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .23em;
    text-transform: uppercase;
    
}

.footer-grid>div>p:not(.tagline) {
    max-width: 280px;
    font-size: 13px;
    line-height: 1.7
}

.social {
    display: flex;
    gap: 12px;
    margin-top: 20px
}

.social a {
    display: grid;
    width: 36px;
    height: 36px;
    place-items: center;
    border-radius: 50%;
    background: #fff;
    color: var(--n);
    font-size: 12px;
    font-weight: 800;
    text-decoration: none
}

.footer-grid nav {
    display: grid;
    align-content: start
}

.footer-grid h3 {
    margin: 5px 0 14px;
    color: #fff;
    font: 800 14px Manrope, sans-serif;
    text-transform: uppercase;
    
}

.footer-grid h3:after {
    display: block;
    width: 27px;
    height: 2px;
    margin-top: 10px;
    background: var(--o);
    content: ""
}

.footer-grid nav a {
    min-height: 37px;
    border-bottom: 1px solid #ffffff1c;
    color: #eef0f5;
    font-size: 13px;
    text-decoration: none
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    padding: 22px 0;
    border-top: 1px solid #ffffff2b;
    color: #bfc6d3;
    font-size: 12px
}

.footer-bottom i {
    margin: 0 7px;
    color: var(--o)
}

@media(max-width:1000px) {
    .who {
        grid-template-columns: 210px 1fr
    }

    .who-visual {
        display: none
    }

    .value-grid {
        grid-template-columns: repeat(3, 1fr)
    }

    .value-grid article:last-child {
        grid-column: 2
    }

    .footer-grid {
        grid-template-columns: 1.3fr 1fr 1fr
    }

    .footer-grid nav:last-child {
        grid-column: 2/-1
    }
}

@media(max-width:780px) {
    .container {
        width: min(100% - 32px, 1320px)
    }

    .site-header {
        position: relative
    }

    .nav-inner {
        min-height: 68px
    }

    .brand {
        width: 150px
    }

    .site-menu {
        position: relative
    }

    .site-menu summary {
        display: grid;
        width: 42px;
        height: 42px;
        place-content: center;
        gap: 5px;
        border: 1px solid #dbe0e8;
        border-radius: 9px;
        list-style: none
    }

    .site-menu summary span {
        width: 20px;
        height: 2px;
        background: var(--n)
    }

    .site-menu[open] summary span:first-child {
        transform: translateY(7px) rotate(45deg)
    }

    .site-menu[open] summary span:nth-child(2) {
        opacity: 0
    }

    .site-menu[open] summary span:last-child {
        transform: translateY(-7px) rotate(-45deg)
    }

    .site-menu nav {
        position: absolute;
        top: 52px;
        right: 0;
        display: none;
        width: min(280px, calc(100vw - 32px));
        padding: 12px 20px;
        border: 1px solid #e1e5eb;
        border-radius: 12px;
        background: #fff;
        box-shadow: 0 18px 38px #10275026
    }

    .site-menu[open] nav {
        display: grid
    }

    .site-menu a {
        padding: 12px 0
    }

    .site-menu .active:after {
        display: none
    }

    .who {
        grid-template-columns: 1fr;
        padding: 26px 22px
    }

    .who>div:first-child {
        padding: 0 0 20px;
        border-right: 0;
        border-bottom: 1px solid var(--l)
    }

    .mission {
        grid-template-columns: 1fr
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 36px 27px
    }

    .footer-grid>div {
        grid-column: 1/-1
    }

    .footer-grid nav:last-child {
        grid-column: 1/-1
    }
}

@media(max-width:500px) {
    .about-hero h1 {
        font-size: 40px
    }

    .about-orbit {
        display: none
    }

    .mission article {
        padding: 20px;
        gap: 16px
    }

    .mission>article>i {
        width: 55px;
        height: 55px;
        font-size: 22px
    }

    .value-grid {
        grid-template-columns: 1fr
    }

    .value-grid article:last-child {
        grid-column: auto
    }

    .process ol {
        overflow: auto;
        grid-template-columns: repeat(5, 145px);
        padding-bottom: 8px
    }

    .process ol:before {
        width: 590px;
        right: auto;
        left: 60px
    }

    .stats>div {
        grid-template-columns: 1fr
    }

    .stats article,
    .stats article+article {
        justify-content: flex-start;
        border-top: 1px solid var(--l);
        border-left: 0;
        padding: 15px 5px
    }

    .stats article:first-child {
        border-top: 0
    }

    .footer-grid {
        grid-template-columns: 1fr
    }

    .footer-grid nav:last-child {
        grid-column: auto
    }

    .footer-bottom {
        flex-direction: column;
        gap: 8px
    }
} */

/* ==========. FOOTER ================ */
#glu-end {
    --navy: #102750;
    --orange: #ff6508;
    --text: #515b70;
    --cream: #fff9f4;
    --line: #e6ddd7;
    font-family: Poppins, Arial, sans-serif;
    color: var(--navy);
    background: var(--cream);
}

#glu-end *,
#glu-end *::before,
#glu-end *::after {
    box-sizing: border-box;
}

#glu-end :where(h2, h3, p) {
    margin: 0;
}

#glu-end a {
    text-decoration: none;
}

.glu-wrap {
    width: min(100% - 48px, 1458px);
    margin-inline: auto;
}


#glu-end .glu-footer {
    position: relative;
    overflow: hidden;
    padding: 39px 0 0;
    background-color: #0C1E4C;
}

#glu-end .glu-footer-grid {
    display: grid;
    grid-template-columns: 1.35fr repeat(3, 1fr);
    gap: clamp(35px, 6vw, 86px);
    padding-bottom: 34px;
}

#glu-end .glu-logo {
    display: inline-flex !important;
    width: auto !important;
    height: auto !important;
    align-items: center !important;
    gap: 10px !important;
    padding: 0 5% 0 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    color: #FEF7F1!important;
    font: 800 35px/1 Manrope, Poppins, sans-serif !important;
    letter-spacing: -.02em !important;
}

.GUL-foot-logo {
    width: 60px;
    height: 60px;
}

#glu-end .glu-logo>span:last-child>span {
    color: var(--orange);
}

#glu-end .glu-tagline {
    margin: 13px 0 23px !important;
    color: #fbfbfb !important;
    font-size: 11px !important;
    font-weight: 700 !important;
    letter-spacing: .25em !important;
    text-transform: uppercase !important;
}

#glu-end .glu-brand-copy {
    max-width: 285px;
    color: #f2f2f2;
    font-size: 14px;
    line-height: 1.7;
}

#glu-end .glu-socials {
    display: flex;
    gap: 13px;
    margin-top: 23px;
}

#glu-end .glu-socials a {
    display: grid !important;
    width: 40px !important;
    height: 40px !important;
    place-items: center !important;
    padding: 0 !important;
    border: 0 !important;
    border-radius: 50% !important;
    background: #f0edf0 !important;
    color: var(--navy) !important;
    font-size: 16px !important;
}

#glu-end .glu-socials a:hover {
    background: var(--orange) !important;
    color: #fff !important;
}

#glu-end .glu-link-col {
    display: grid;
    align-content: start;
}

#glu-end .glu-link-col h3 {
    position: relative;
    margin: 4px 0 14px;
    color: white;
    font: 800 14px/1 Manrope, Poppins, sans-serif;
    letter-spacing: .04em;
    text-transform: uppercase;
}

#glu-end .glu-link-col h3::after {
    display: block;
    width: 27px;
    height: 2px;
    margin-top: 10px;
    content: "";
    background: var(--orange);

}

#glu-end .glu-link-col a {
    display: flex !important;
    width: auto !important;
    height: auto !important;
    min-height: 37px !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 1px !important;
    padding: 0 20% 0 0 !important;
    border: 0 !important;
    border-bottom: 1px solid rgba(19, 40, 79, .1) !important;
    border-radius: 0 !important;
    background: transparent !important;
    color: #f6f6f6 !important;
    font-size: 14px !important;
    transition: color .2s ease, padding .2s ease !important;
    /* border: solid 1px red !important; */
}

#glu-end .glu-link-col a:hover {
    padding-left: 5px !important;
    background: transparent !important;
    color: var(--orange) !important;
}

#glu-end .glu-link-col a i {
    font-size: 11px;
    color: white;
}

#glu-end .glu-footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    padding: 24px 0;
    border-top: 1px solid var(--line);
    color: #bcbcbc;
    font-size: 13px;
}

#glu-end .glu-footer-bottom i {
    margin: 0 8px;
    color: var(--orange);
}

@media (max-width:1080px) {
    #glu-end .glu-cta-card {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    #glu-end .glu-cta-copy {
        max-width: 590px;
    }

    #glu-end .glu-systems {
        max-width: 700px;
        width: 100%;
    }

    #glu-end .glu-footer-grid {
        grid-template-columns: 1.35fr 1fr 1fr;
    }

    #glu-end .glu-link-col:last-child {
        grid-column: 2 / -1;
    }

    #glu-end .glu-brand-col {
        grid-row: span 2;
    }
}

@media (max-width:700px) {
    .glu-wrap {
        width: min(100% - 32px, 1318px);
    }

    #glu-end .glu-cta {
        padding-top: 32px;
    }

    #glu-end .glu-cta-card {
        min-height: 0;
        padding: 33px 22px;
        border-radius: 20px;
    }

    #glu-end .glu-cta-copy h2 {
        margin-top: 23px;
        font-size: clamp(38px, 11vw, 50px);
    }

    #glu-end .glu-cta-description {
        font-size: 15px;
    }

    #glu-end .glu-actions {
        flex-direction: column;
        gap: 11px;
    }

    #glu-end .glu-button {
        width: 100% !important;
    }

    #glu-end .glu-rating {
        gap: 11px;
        font-size: 12px;
    }

    #glu-end .glu-rating span {
        font-size: 18px;
        letter-spacing: 1px;
    }

    #glu-end .glu-systems {
        gap: 29px;
    }

    #glu-end .glu-system-row-top {
        grid-template-columns: repeat(3, 1fr);
        gap: 22px 0;
        padding-bottom: 28px;
    }

    #glu-end .glu-system-row-bottom {
        grid-template-columns: repeat(2, 1fr);
        padding: 0;
    }

    #glu-end .glu-system {
        gap: 8px;
        padding: 3px 6px;
        font-size: 12px;
    }

    #glu-end .glu-system i {
        font-size: 24px;
    }

    #glu-end .glu-system-row-top .glu-system:nth-child(4) {
        border-left: 0;
    }

    #glu-end .glu-system-row-top .glu-system:nth-child(4),
    #glu-end .glu-system-row-top .glu-system:nth-child(5) {
        border-top: 1px solid var(--line);
        padding-top: 18px;
    }

    #glu-end .glu-system-row-bottom .glu-system:nth-child(3) {
        border-left: 0;
    }

    #glu-end .glu-system-row-bottom .glu-system:nth-child(3),
    #glu-end .glu-system-row-bottom .glu-system:nth-child(4) {
        border-top: 1px solid var(--line);
        padding-top: 18px;
    }

    #glu-end .glu-footer {
        padding-top: 46px;
    }

    #glu-end .glu-footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 39px 28px;
    }

    #glu-end .glu-brand-col {
        grid-row: auto;
        grid-column: 1 / -1;
    }

    #glu-end .glu-link-col:last-child {
        grid-column: 1 / -1;
    }

    #glu-end .glu-footer-bottom {
        flex-direction: column;
        gap: 8px;
        padding-block: 19px;
        font-size: 12px;
    }
}

/* ---------- Header / Mobile Nav (active version) ---------- */

.site-header-about .site-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 78px;
}

.site-header-about .brand {
    width: 200px;
}

.site-header-about .brand img {
    display: block;
    width: 100%;
}

.site-header-about .site-menu {
    display: flex;
    align-items: center;
    gap: clamp(16px, 2vw, 30px);
}

.site-header-about .site-menu a {
    position: relative;
    color: var(--n);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    padding: 8px 0;
}

.site-header-about .site-menu a:hover {
    color: var(--o);
}

.site-header-about .menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 42px;
    height: 42px;
    border: 1px solid #dbe0e8;
    border-radius: 9px;
    background: #fff;
    cursor: pointer;
}

.site-header-about .menu-toggle span {
    width: 20px;
    height: 2px;
    margin-inline: auto;
    background: var(--n);
    transition: transform .2s ease, opacity .2s ease;
}

.site-header-about .menu-toggle.is-open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.site-header-about .menu-toggle.is-open span:nth-child(2) {
    opacity: 0;
}

.site-header-about .menu-toggle.is-open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ---------- Responsive ---------- */

@media (max-width:1000px) {
    .who {
        grid-template-columns: 210px 1fr;
    }

    .who-visual {
        display: none;
    }

    .value-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .value-grid article:last-child {
        grid-column: 2;
    }

    .process ol {
        grid-template-columns: repeat(5, 1fr);
    }
}

@media (max-width:900px) {
    .stats>.container {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px 0;
    }

    .stats article:nth-child(3) {
        border-left: 0;
    }

    .stats article:nth-child(3),
    .stats article:nth-child(4) {
        border-top: 1px solid var(--l);
        padding-top: 20px;
    }
}

@media (max-width:780px) {
    .container {
        width: min(100% - 32px, 1320px);
    }

    .site-header-about .brand {
        width: 150px;
    }

    .site-header-about .menu-toggle {
        display: flex;
    }

    .site-header-about .site-menu {
        position: absolute;
        top: 100%;
        right: 0;
        left: 0;
        z-index: 30;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        max-height: 0;
        overflow: hidden;
        padding: 0 24px;
        background: #fff;
        box-shadow: 0 18px 38px rgba(16, 39, 80, .15);
        transition: max-height .25s ease, padding .25s ease;
    }

    .site-header-about .site-menu.is-open {
        max-height: 420px;
        padding: 12px 24px 20px;
    }

    .site-header-about .site-menu a {
        padding: 12px 0;
        border-bottom: 1px solid #eee;
    }

    .site-header-about .site-menu a:last-child {
        border-bottom: 0;
    }

    .who {
        grid-template-columns: 1fr;
        padding: 26px 22px;
    }

    .who-visual {
        display: none;
    }

    .copy {
        padding-left: 0;
        border-left: 0;
        padding-top: 20px;
        border-top: 1px solid var(--l);
    }

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

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

    .value-grid article:last-child {
        grid-column: 1 / -1;
    }

    .process ol {
        overflow-x: auto;
        grid-template-columns: repeat(5, 150px);
        padding-bottom: 10px;
    }

    .process ol::before {
        width: 640px;
        right: auto;
        left: 60px;
    }

    .stats {
        margin: 0 5% 10%;
    }
}

@media (max-width:560px) {
    .about-hero h1 {
        font-size: clamp(32px, 9vw, 42px);
    }

    .about-hero .container>p:not(.pill) {
        font-size: 14.5px;
    }

    .who h2 {
        font-size: 34px;
    }

    .mission article {
        padding: 20px;
        gap: 16px;
    }

    .mission>article>i {
        width: 52px;
        height: 52px;
        font-size: 20px;
    }

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

    .value-grid article:last-child {
        grid-column: auto;
    }

    .stats>.container {
        grid-template-columns: 1fr;
    }

    .stats article {
        justify-content: flex-start;
        border-top: 1px solid var(--l);
        border-left: 0 !important;
        padding: 15px 5px;
    }

    .stats article:first-child {
        border-top: 0;
    }
}