/* ============================================================
   BARAKA DANBAKI FOUNDATION — v2
   Palette: brand blue / gold / orange
   ============================================================ */
:root {
    /* Brand */
    --blue: #1E73B7;
    --blue-dk: #0A5C9E;
    --gold: #FFC61A;
    --orange: #F7941D;
    --flame: #F05A28;
    --white: #FFFFFF;

    /* Derived neutrals */
    --ink: #08304F;
    --ink-2: #0C3F68;
    --text: #12293D;
    --muted: #5A7186;
    --mist: #F1F6FA;
    --line: rgba(10, 92, 158, .16);
    --line-dk: rgba(255, 255, 255, .18);

    --display: 'Inter', system-ui, sans-serif;
    --body: 'Inter', Georgia, serif;
    --util: 'Inter', system-ui, sans-serif;

    --wrap: 1180px;
    --gut: clamp(20px, 5vw, 64px);
    --sec: clamp(72px, 10vw, 132px);
    --r: 14px;
    --nav-h: 76px;
}

*,
*::before,
*::after {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    scroll-padding-top: var(--nav-h)
}

body {
    margin: 0;
    background: var(--white);
    color: var(--text);
    font-family: var(--body);
    font-size: clamp(16.5px, 1.05vw, 18.5px);
    font-weight: 300;
    line-height: 1.65;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

a {
    color: inherit
}

h1,
h2,
h3,
h4 {
    font-family: var(--display);
    font-weight: 700;
    line-height: 1.02;
    letter-spacing: -.025em;
    margin: 0
}

p {
    margin: 0 0 1.05em
}

p:last-child {
    margin-bottom: 0
}

ul {
    margin: 0;
    padding: 0;
    list-style: none
}

button {
    font: inherit
}

.wrap {
    max-width: var(--wrap);
    margin: 0 auto;
    padding-inline: var(--gut)
}

.sec {
    padding-block: var(--sec)
}

.eyebrow {
    font-family: var(--util);
    font-weight: 700;
    font-size: .68rem;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--blue-dk);
    display: inline-flex;
    align-items: center;
    gap: .6em;
    margin: 0 0 1.4rem;
}

.eyebrow::before {
    content: "";
    width: 26px;
    height: 3px;
    background: var(--gold);
    flex: none;
    border-radius: 2px
}

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

.on-dark .eyebrow::before {
    background: var(--flame)
}

.h2 {
    font-size: clamp(2.05rem, 5.1vw, 3.5rem)
}

.h3 {
    font-size: clamp(1.3rem, 2.3vw, 1.6rem);
    letter-spacing: -.02em
}

.lede {
    font-size: clamp(1.1rem, 1.55vw, 1.32rem);
    color: var(--muted);
    max-width: 62ch;
    line-height: 1.6
}

.on-dark .lede {
    color: rgba(255, 255, 255, .78)
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .55em;
    font-family: var(--util);
    font-weight: 700;
    font-size: .83rem;
    letter-spacing: .03em;
    padding: .82em 1.5em;
    border-radius: 100px;
    text-decoration: none;
    border: 1.5px solid transparent;
    cursor: pointer;
    transition: transform .18s ease, background .2s ease, color .2s ease, border-color .2s ease, box-shadow .2s ease;
}

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

.btn--gold {
    background: var(--gold);
    color: var(--ink);
    box-shadow: 0 6px 20px rgba(255, 198, 26, .28)
}

#menu a.btn.btn--gold {
    font-weight: 700;
    padding: 5px 20px;
}

.btn--blue {
    background: var(--blue);
    color: var(--white)
}

.btn--blue:hover {
    background: var(--blue-dk)
}

.btn--ghost {
    border-color: rgba(255, 255, 255, .5);
    color: var(--white)
}

.btn--ghost:hover {
    border-color: var(--gold);
    color: var(--gold)
}

.btn--outline {
    border-color: var(--line);
    color: var(--blue-dk)
}

.btn--outline:hover {
    border-color: var(--blue);
    background: var(--mist)
}

.btn--lg {
    padding: 1em 1.9em;
    font-size: .9rem
}

/* ============================================================
   Nav
   ============================================================ */
.skip {
    position: absolute;
    left: -9999px;
    top: 0;
    z-index: 300;
    background: var(--gold);
    color: var(--ink);
    padding: .8rem 1.2rem;
    font-family: var(--util);
    font-weight: 700
}

.skip:focus {
    left: 12px;
    top: 12px
}

.nav {
    position: fixed;
    inset: 0 0 auto;
    z-index: 120;
    transition: background .3s ease, box-shadow .3s ease
}

.nav.stuck {
    background: var(--white);
    box-shadow: 0 2px 22px rgba(8, 48, 79, .1)
}

.nav__in {
    max-width: var(--wrap);
    margin: 0 auto;
    padding: 0 var(--gut);
    height: var(--nav-h);
    display: flex;
    align-items: center;
    gap: 2rem
}

.brand {
    display: flex;
    align-items: center;
    gap: .7rem;
    text-decoration: none;
    flex: none
}

.mark {
    width: 64px;
    height: 64px;
    flex: none;
    border-radius: 10px;
    background: var(--gold);
    display: grid;
    place-items: center;
    font-family: var(--display);
    font-weight: 800;
    font-size: 1.1rem;
    color: var(--ink);
}

.brand__txt {
    font-family: var(--util);
    font-weight: 700;
    font-size: .79rem;
    /* letter-spacing: .13em; */
    text-transform: uppercase;
    color: var(--white);
    line-height: 1.25;
    transition: color .3s ease
}

.brand__txt span {
    display: block;
    color: var(--gold);
    font-size: .66rem;
    /* letter-spacing: .19em */
}

.nav.stuck .brand__txt {
    color: var(--ink)
}

.nav.stuck .brand__txt span {
    color: var(--blue)
}

.menu {
    display: flex;
    align-items: center;
    gap: 1.6rem;
    margin-left: auto
}

.menu a {
    font-family: var(--util);
    font-weight: 500;
    font-size: .83rem;
    color: rgba(255, 255, 255, .9);
    text-decoration: none;
    padding: .35rem 0;
    position: relative;
    transition: color .3s ease
}

.nav.stuck .menu a {
    color: var(--text)
}

.menu a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 100%;
    bottom: 0;
    height: 2px;
    background: var(--gold);
    transition: right .25s ease
}

.menu a:hover::after,
.menu a:focus-visible::after {
    right: 0
}

.nav.stuck .menu .btn {
    color: var(--ink)
}

.burger {
    display: none;
    margin-left: auto;
    background: none;
    border: 0;
    padding: 10px;
    cursor: pointer
}

.burger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    margin: 5px 0;
    transition: transform .25s ease, opacity .2s ease, background .3s ease
}

.nav.stuck .burger span {
    background: var(--ink)
}

.burger[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg)
}

.burger[aria-expanded="true"] span:nth-child(2) {
    opacity: 0
}

.burger[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg)
}

/* ============================================================
   Hero slider
   ============================================================ */
.slider {
    position: relative;
    height: min(88vh, 760px);
    min-height: 520px;
    background: var(--ink);
    overflow: hidden
}

.slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity .8s ease, visibility .8s ease
}

.slide.active {
    opacity: 1;
    visibility: visible
}

.slide__bg {
    position: absolute;
    inset: 0;
    background: var(--ink-2);
    overflow: hidden
}

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

.slide.active .slide__bg {
    animation: kb 9s ease-out forwards
}

@keyframes kb {
    from {
        transform: scale(1.06)
    }

    to {
        transform: scale(1)
    }
}

/* Placeholder texture inside slides */
.slide--a .slide__bg {
    background: linear-gradient(140deg, #0A5C9E, #08304F)
}

.slide--b .slide__bg {
    background: linear-gradient(140deg, #1E73B7, #0A5C9E)
}

.slide--c .slide__bg {
    background: linear-gradient(140deg, #0C3F68, #1E73B7)
}

.slide__bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image: repeating-linear-gradient(135deg, rgba(255, 255, 255, .05) 0 1px, transparent 1px 13px);
}

.slide__scrim {
    position: absolute;
    inset: 0;
    background: linear-gradient(92deg, rgba(6, 38, 63, .9) 0%, rgba(6, 38, 63, .68) 46%, rgba(6, 38, 63, .25) 100%)
}

.slide__inner {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    padding-top: var(--nav-h)
}

.slide__inner>.wrap {
    width: 100%;
    margin-inline: auto;
}

.slide__copy {
    max-width: 52ch;
    color: var(--white)
}

.slide__copy h1 {
    font-size: clamp(2rem, 4.4vw, 3.2rem);
    letter-spacing: -.038em;
    line-height: 1;
    margin: 0 0 1.3rem
}

.slide__copy h1 em {
    font-style: normal;
    color: var(--gold)
}

.slide__copy p {
    font-size: clamp(1.05rem, 1.5vw, 1.24rem);
    color: rgba(255, 255, 255, .85);
    margin-bottom: 2rem;
    max-width: 46ch;
    line-height: 1.2;
}

.slide__cta {
    display: flex;
    flex-wrap: wrap;
    gap: .8rem
}

.slide__ph {
    position: absolute;
    left: var(--gut);
    bottom: 1.4rem;
    font-family: var(--util);
    font-weight: 600;
    font-size: .66rem;
    /* letter-spacing: .16em; */
    text-transform: uppercase;
    color: rgba(255, 255, 255, .42);
}

/* Slider controls */
.slider__ui {
    position: absolute;
    left: 0;
    right: 0;
    bottom: -15px;
    z-index: 5;
    pointer-events: none
}

.slider__bar {
    max-width: var(--wrap);
    margin: 0 auto;
    padding: 0 var(--gut) clamp(22px, 4vw, 38px);
    display: flex;
    align-items: center;
    gap: 1.5rem;
    pointer-events: auto
}

.dots {
    display: flex;
    gap: .65rem;
    margin-right: auto
}

.dot {
    width: 34px;
    height: 4px;
    border-radius: 3px;
    background: rgba(255, 255, 255, .32);
    border: 0;
    padding: 0;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: background .25s ease
}

.dot:hover {
    background: rgba(255, 255, 255, .55)
}

.dot[aria-selected="true"] {
    background: rgba(255, 255, 255, .32)
}

.dot i {
    position: absolute;
    inset: 0;
    width: 0;
    background: var(--gold);
    display: block
}

.dot[aria-selected="true"] i {
    width: 100%;
    transition: width var(--dur, 6500ms) linear
}

.arrows {
    display: flex;
    gap: .55rem
}

.arrow {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 1.5px solid rgba(255, 255, 255, .42);
    background: transparent;
    color: var(--white);
    display: grid;
    place-items: center;
    cursor: pointer;
    transition: background .2s ease, border-color .2s ease, color .2s ease
}

.arrow:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--ink)
}

.arrow svg {
    width: 18px;
    height: 18px
}

/* Marquee strip */
.strip {
    background: var(--gold);
    color: var(--ink);
    padding: .85rem 0;
    overflow: hidden
}

.strip__track {
    display: flex;
    width: max-content;
    animation: slide 38s linear infinite
}

.strip__set {
    display: flex;
    flex: none
}

.strip span {
    font-family: var(--util);
    font-weight: 700;
    font-size: .76rem;
    /* letter-spacing: .2em; */
    text-transform: uppercase;
    padding: 0 1.5rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    white-space: nowrap
}

.strip span::after {
    content: "";
    width: 7px;
    height: 7px;
    background: var(--flame);
    transform: rotate(45deg);
    flex: none
}

@keyframes slide {
    from {
        transform: translateX(0)
    }

    to {
        transform: translateX(-50%)
    }
}

.strip:hover .strip__track {
    animation-play-state: paused
}

/* ============================================================
   Placeholders
   ============================================================ */
.ph {
    position: relative;
    background: var(--mist);
    border: 1px solid var(--line);
    border-radius: var(--r);
    display: grid;
    place-content: center;
    text-align: center;
    padding: 1.6rem;
    gap: .45rem;
    background-image: repeating-linear-gradient(135deg, rgba(30, 115, 183, .07) 0 1px, transparent 1px 11px)
}

.ph--dark {
    background: var(--ink-2);
    border-color: var(--line-dk);
    background-image: repeating-linear-gradient(135deg, rgba(255, 255, 255, .05) 0 1px, transparent 1px 11px)
}

.ph__tag {
    font-family: var(--util);
    font-weight: 700;
    font-size: .66rem;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--blue)
}

.ph--dark .ph__tag {
    color: var(--gold)
}

.ph__note {
    font-family: var(--util);
    font-weight: 500;
    font-size: .78rem;
    color: var(--muted);
    max-width: 24ch;
    margin: 0 auto;
    line-height: 1.45
}

.ph--dark .ph__note {
    color: rgba(255, 255, 255, .55)
}

/* Panels */
.panel-dark {
    background: var(--ink);
    color: var(--white)
}

.panel-blue {
    background: var(--blue-dk);
    color: var(--white)
}

.panel-mist {
    background: var(--mist)
}

/* ============================================================
   About
   ============================================================ */
.about__grid {
    display: grid;
    grid-template-columns: .95fr 1.05fr;
    gap: clamp(32px, 5vw, 80px);
    align-items: start
}

.about__aside .ph {
    aspect-ratio: 3/4
}

.pull {
    border-left: 4px solid var(--gold);
    padding: .15rem 0 .15rem 1.4rem;
    margin-top: 2rem;
    font-size: 1.12rem;
    font-style: italic;
    line-height: 1.5
}

/* Vision / mission */
.vm {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.15rem
}

.vm__card {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--r);
    padding: clamp(1.6rem, 3vw, 2.4rem);
    position: relative;
    overflow: hidden
}

.vm__card::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 5px;
    background: var(--blue)
}

.vm__card:nth-child(2)::before {
    background: var(--flame)
}

.vm__card h3 {
    margin-bottom: .8rem
}

.vm__card p {
    color: var(--muted)
}

/* Values */
.values {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: var(--line-dk);
    border: 1px solid var(--line-dk);
    border-radius: var(--r);
    overflow: hidden
}

.value {
    background: var(--ink);
    padding: clamp(1.4rem, 2.4vw, 1.9rem);
    transition: background .25s ease
}

.value:hover {
    background: var(--ink-2)
}

.value h3 {
    font-size: 1.06rem;
    color: var(--gold);
    margin-bottom: .5rem
}

.value p {
    font-size: .94rem;
    color: rgba(255, 255, 255, .72);
    line-height: 1.55
}

.value:nth-child(7) {
    grid-column: span 2
}

/* What we do */
.work {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.15rem
}

.work__card {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--r);
    padding: clamp(1.5rem, 2.6vw, 2rem);
    display: flex;
    flex-direction: column;
    gap: .7rem;
    transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease
}

.work__card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 36px rgba(8, 48, 79, .1);
    border-color: rgba(30, 115, 183, .45)
}

.work__icon {
    width: 36px;
    height: 36px;
    color: var(--blue)
}

.work__card:nth-child(2) .work__icon {
    color: var(--flame)
}

.work__card:nth-child(3) .work__icon {
    color: var(--orange)
}

.work__card:nth-child(5) .work__icon {
    color: var(--orange)
}

.work__card:nth-child(6) .work__icon {
    color: var(--flame)
}

.work__card h3 {
    font-size: 1.12rem
}

.work__card p {
    color: var(--muted);
    font-size: .97rem;
    line-height: 1.55
}

/* Flagship */
.flag {
    display: grid;
    gap: 1.15rem;
    grid-template-columns: 1fr 1fr
}

.flag__card {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--r);
    overflow: hidden;
    display: flex;
    flex-direction: column
}

.flag__card .ph {
    aspect-ratio: 16/9;
    border: 0;
    border-radius: 0;
    border-bottom: 1px solid var(--line)
}

.flag__body {
    padding: clamp(1.5rem, 2.6vw, 2.1rem)
}

.flag__kicker {
    font-family: var(--util);
    font-weight: 700;
    font-size: .64rem;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--flame);
    display: block;
    margin-bottom: .7rem
}

.flag__card h3 {
    margin-bottom: .7rem
}

.flag__card p {
    color: var(--muted);
    font-size: .99rem
}

/* ============================================================
   Gallery
   ============================================================ */
.gal__head {
    display: flex;
    flex-wrap: wrap;
    gap: 1.6rem;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: clamp(28px, 4vw, 44px)
}

.filters {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem
}

.filter {
    font-family: var(--util);
    font-weight: 600;
    font-size: .79rem;
    letter-spacing: .02em;
    padding: .6em 1.15em;
    border: 1.5px solid var(--line);
    border-radius: 100px;
    background: var(--white);
    color: var(--muted);
    cursor: pointer;
    transition: all .2s ease
}

.filter:hover {
    border-color: var(--blue);
    color: var(--blue-dk)
}

.filter[aria-pressed="true"] {
    background: var(--blue-dk);
    border-color: var(--blue-dk);
    color: var(--white)
}

.gal {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    grid-auto-rows: 170px
}

.tile {
    position: relative;
    border-radius: var(--r);
    overflow: hidden;
    border: 1px solid var(--line);
    background: var(--mist);
    cursor: pointer;
    padding: 0;
    text-align: left;
    display: block;
    background-image: repeating-linear-gradient(135deg, rgba(30, 115, 183, .07) 0 1px, transparent 1px 11px);
    transition: opacity .35s ease, transform .35s ease, box-shadow .25s ease
}

.tile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease
}

.tile:hover img {
    transform: scale(1.05)
}

.tile:hover {
    box-shadow: 0 16px 36px rgba(8, 48, 79, .14)
}

.tile--w2 {
    grid-column: span 2
}

.tile--h2 {
    grid-row: span 2
}

.tile__inner {
    position: absolute;
    inset: 0;
    display: grid;
    place-content: center;
    text-align: center;
    padding: 1.1rem;
    gap: .35rem
}

.tile__tag {
    font-family: var(--util);
    font-weight: 700;
    font-size: .6rem;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--blue)
}

.tile__note {
    font-family: var(--util);
    font-weight: 500;
    font-size: .74rem;
    color: var(--muted);
    line-height: 1.4;
    max-width: 22ch;
    margin: 0 auto
}

.tile__cap {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 2.4rem 1rem .95rem;
    background: linear-gradient(transparent, rgba(6, 38, 63, .88));
    color: var(--white);
    font-family: var(--util);
    font-weight: 600;
    font-size: .8rem;
    line-height: 1.35;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity .28s ease, transform .28s ease
}

.tile:hover .tile__cap,
.tile:focus-visible .tile__cap {
    opacity: 1;
    transform: none
}

.tile__cat {
    display: block;
    font-size: .62rem;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: .25rem
}

.tile.hide {
    display: none
}

/* Lightbox */
.lb {
    position: fixed;
    inset: 0;
    z-index: 200;
    background: rgba(6, 38, 63, .94);
    display: none;
    align-items: center;
    justify-content: center;
    padding: clamp(20px, 5vw, 60px)
}

.lb.open {
    display: flex
}

.lb__box {
    max-width: 940px;
    width: 100%;
    position: relative
}

.lb__stage {
    background: var(--ink-2);
    border: 1px solid var(--line-dk);
    border-radius: var(--r);
    aspect-ratio: 16/10;
    display: grid;
    place-content: center;
    text-align: center;
    padding: 2rem;
    gap: .5rem;
    overflow: hidden;
    background-image: repeating-linear-gradient(135deg, rgba(255, 255, 255, .05) 0 1px, transparent 1px 13px)
}

.lb__stage img {
    width: 100%;
    height: 100%;
    object-fit: contain
}

.lb__cap {
    color: var(--white);
    font-family: var(--util);
    font-weight: 600;
    font-size: .92rem;
    margin-top: 1rem;
    display: flex;
    flex-wrap: wrap;
    gap: .5rem 1rem;
    align-items: baseline
}

.lb__cap b {
    color: var(--gold);
    font-size: .66rem;
    letter-spacing: .18em;
    text-transform: uppercase;
    font-weight: 700
}

.lb__close {
    position: absolute;
    top: -52px;
    right: 0;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1.5px solid rgba(255, 255, 255, .4);
    background: transparent;
    color: var(--white);
    display: grid;
    place-items: center;
    cursor: pointer;
    transition: background .2s ease, color .2s ease, border-color .2s ease
}

.lb__close:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--ink)
}

.lb__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 1.5px solid rgba(255, 255, 255, .4);
    background: rgba(6, 38, 63, .5);
    color: var(--white);
    display: grid;
    place-items: center;
    cursor: pointer;
    transition: background .2s ease, color .2s ease, border-color .2s ease
}

.lb__nav:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--ink)
}

.lb__nav--prev {
    left: -64px
}

.lb__nav--next {
    right: -64px
}

.lb svg {
    width: 18px;
    height: 18px
}

/* ============================================================
   Impact
   ============================================================ */
.stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(20px, 3vw, 40px);
    margin-bottom: clamp(40px, 6vw, 68px)
}

.stat {
    border-top: 3px solid rgba(255, 255, 255, .28);
    padding-top: 1.2rem
}

.stat__n {
    font-family: var(--display);
    font-weight: 800;
    font-size: clamp(2.8rem, 7vw, 4.6rem);
    line-height: .9;
    letter-spacing: -.045em;
    color: var(--gold)
}

.stat__l {
    font-family: var(--util);
    font-weight: 600;
    font-size: .74rem;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .82);
    margin-top: .7rem
}

.ticks {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .9rem 2.6rem
}

.ticks li {
    display: flex;
    gap: .85rem;
    align-items: flex-start;
    font-size: 1.02rem;
    color: rgba(255, 255, 255, .92);
    line-height: 1.5
}

.ticks svg {
    width: 20px;
    height: 20px;
    flex: none;
    margin-top: .28em;
    color: var(--gold)
}

/* Partner */
.partner__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(32px, 5vw, 72px);
    align-items: center
}

.partner__grid .ph {
    aspect-ratio: 1
}

.tags {
    display: flex;
    flex-wrap: wrap;
    gap: .6rem;
    margin-top: 2rem
}

.tag {
    font-family: var(--util);
    font-weight: 600;
    font-size: .81rem;
    padding: .6em 1.15em;
    border: 1px solid var(--line);
    border-radius: 100px;
    background: var(--white);
    color: var(--text)
}

/* Get involved */
.ways {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--line);
    border: 1px solid var(--line);
    border-radius: var(--r);
    overflow: hidden;
    margin-bottom: 2.4rem
}

.way {
    background: var(--white);
    padding: clamp(1.4rem, 2.4vw, 1.85rem);
    display: flex;
    flex-direction: column;
    gap: .4rem;
    border-top: 4px solid transparent;
    transition: border-color .25s ease
}

.way:hover {
    border-top-color: var(--gold)
}

.way h3 {
    font-size: 1.02rem
}

.way p {
    font-size: .93rem;
    color: var(--muted);
    line-height: 1.5
}

.involve__cta {
    display: flex;
    flex-wrap: wrap;
    gap: .85rem;
    align-items: center
}

/* Founder */
.founder {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: clamp(32px, 5vw, 72px);
    align-items: center
}

.founder .ph {
    aspect-ratio: 4/5
}

.founder__name {
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    margin-bottom: .35rem
}

.founder__role {
    font-family: var(--util);
    font-weight: 600;
    font-size: .76rem;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 1.5rem
}

/* Contact */
.contact__grid {
    display: grid;
    grid-template-columns: .85fr 1.15fr;
    gap: clamp(32px, 5vw, 72px)
}

.details {
    display: grid;
    gap: 1.4rem;
    margin-top: 2rem
}

.detail {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    text-decoration: none
}

.detail svg {
    width: 22px;
    height: 22px;
    color: var(--gold);
    flex: none;
    margin-top: .2em
}

.detail__k {
    font-family: var(--util);
    font-weight: 600;
    font-size: .68rem;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .55);
    display: block;
    margin-bottom: .2rem
}

.detail__v {
    font-size: 1.03rem;
    color: var(--white)
}

a.detail:hover .detail__v {
    color: var(--gold)
}

.form {
    background: var(--ink-2);
    border: 1px solid var(--line-dk);
    border-radius: var(--r);
    padding: clamp(1.6rem, 3vw, 2.4rem)
}

.field {
    margin-bottom: 1.1rem
}

.field label {
    display: block;
    font-family: var(--util);
    font-weight: 600;
    font-size: .72rem;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .65);
    margin-bottom: .5rem
}

.field input,
.field textarea,
.field select {
    width: 100%;
    background: rgba(255, 255, 255, .06);
    border: 1px solid var(--line-dk);
    border-radius: 9px;
    padding: .85rem 1rem;
    color: var(--white);
    font-family: var(--body);
    font-size: 1rem;
    font-weight: 300;
    transition: border-color .2s ease, background .2s ease
}

.field select {
    font-family: var(--util);
    font-size: .92rem
}

.field select option {
    background: var(--ink-2);
    color: var(--white)
}

.field input:focus,
.field textarea:focus,
.field select:focus {
    outline: none;
    border-color: var(--gold);
    background: rgba(255, 255, 255, .1)
}

.field textarea {
    resize: vertical;
    min-height: 130px
}

.form__note {
    font-family: var(--util);
    font-size: .78rem;
    color: rgba(255, 255, 255, .5);
    margin-top: 1rem;
    line-height: 1.5
}

/* Footer */
.foot {
    background: var(--ink);
    color: rgba(255, 255, 255, .62);
    border-top: 4px solid var(--gold);
    padding-block: clamp(40px, 5vw, 58px)
}

.foot__top {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: space-between;
    align-items: flex-start;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--line-dk)
}

.foot .brand__txt {
    color: var(--white)
}

.foot__motto {
    font-family: var(--display);
    font-weight: 700;
    font-size: clamp(1.3rem, 3vw, 1.9rem);
    color: var(--white);
    letter-spacing: -.02em;
    max-width: 16ch;
    line-height: 1.05;
    margin-top: 1.2rem
}

.foot__links {
    display: flex;
    flex-wrap: wrap;
    gap: .7rem 1.6rem
}

.foot__links a {
    font-family: var(--util);
    font-weight: 500;
    font-size: .84rem;
    text-decoration: none;
    color: rgba(255, 255, 255, .68)
}

.foot__links a:hover {
    color: var(--gold)
}

.foot__base {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: space-between;
    padding-top: 1.6rem;
    font-family: var(--util);
    font-size: .76rem
}

/* Reveal */
.rv {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity .7s cubic-bezier(.22, .7, .3, 1), transform .7s cubic-bezier(.22, .7, .3, 1)
}

.rv.in {
    opacity: 1;
    transform: none
}

:focus-visible {
    outline: 3px solid var(--gold);
    outline-offset: 3px;
    border-radius: 3px
}

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width:1080px) {
    .lb__nav--prev {
        left: 8px
    }

    .lb__nav--next {
        right: 8px
    }
}

@media (max-width:960px) {

    .about__grid,
    .partner__grid,
    .founder,
    .contact__grid {
        grid-template-columns: 1fr
    }

    .about__aside {
        order: -1
    }

    .founder .ph {
        max-width: 360px
    }

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

    .work,
    .ways {
        grid-template-columns: 1fr 1fr
    }

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

    .stats {
        grid-template-columns: 1fr;
        gap: 1.6rem
    }

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

    .gal {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 150px
    }

    .slider {
        height: auto;
        min-height: 0
    }

    .slide {
        position: relative;
        display: none;
        opacity: 1;
        visibility: visible
    }

    .slide.active {
        display: block
    }

    .slide__inner {
        padding: calc(var(--nav-h) + 56px) 0 130px
    }

    .slide__copy {
        max-width: none
    }

    .slide__scrim {
        background: linear-gradient(180deg, rgba(6, 38, 63, .72), rgba(6, 38, 63, .9))
    }

    .menu {
        position: fixed;
        inset: var(--nav-h) 0 auto;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        background: var(--white);
        padding: 1rem var(--gut) 2rem;
        box-shadow: 0 18px 30px rgba(8, 48, 79, .16);
        transform: translateY(-145%);
        transition: transform .34s cubic-bezier(.3, .8, .3, 1)
    }

    .menu.open {
        transform: none
    }

    .menu a {
        padding: .95rem 0;
        border-bottom: 1px solid var(--line);
        font-size: .95rem;
        color: var(--text)
    }

    .menu .btn {
        margin-top: 1.2rem;
        align-self: flex-start;
        color: var(--ink)
    }

    .burger {
        display: block
    }
}

@media (max-width:600px) {

    .vm,
    .work,
    .ways,
    .values {
        grid-template-columns: 1fr
    }

    .value:nth-child(7) {
        grid-column: auto
    }

    .gal {
        grid-template-columns: 1fr;
        grid-auto-rows: 190px
    }

    .tile--w2,
    .tile--h2 {
        grid-column: auto;
        grid-row: auto
    }

    .foot__top {
        flex-direction: column
    }

    .arrows {
        display: none
    }
}

@media (min-width: 961px) {
    /* .slider .wrap {
        margin-left: 0;
        margin-right: auto;
    } */
}

@media (prefers-reduced-motion:reduce) {
    * {
        animation-duration: .001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .001ms !important
    }

    html {
        scroll-behavior: auto
    }

    .rv {
        opacity: 1;
        transform: none
    }

    .strip__track,
    .slide.active .slide__bg {
        animation: none
    }
}