@import url("https://fonts.googleapis.com/css2?family=Merriweather:wght@400;700&family=Source+Sans+3:wght@300;400;600;700&display=swap");

:root{
    --bg: #f9f1e6;
    --surface: rgba(255, 248, 239, 0.92);
    --surface-strong: #fff1e2;
    --text: #2a160b;
    --muted: #6f5242;
    --border: rgba(63, 27, 0, 0.16);

    --primary: #3f1b00;
    --primary-dark: #2b1200;
    --primary-soft: rgba(63, 27, 0, 0.08);

    --secondary: #45C1;
    --secondary-solid: #4455cc;
    --secondary-dark: #2c3a8f;
    --secondary-soft: rgba(68, 85, 204, 0.16);

    --radius: 20px;
    --shadow: 0 22px 45px rgba(63, 27, 0, 0.14);
    --shadow-sm: 0 10px 24px rgba(63, 27, 0, 0.10);

    --container: 1120px;
    --header-height: 84px;

    --font-body: "Source Sans 3", sans-serif;
    --font-display: "Merriweather", serif;
}

*{ box-sizing: border-box; }
html{ -webkit-text-size-adjust: 100%; }
body{
    margin: 0;
    font-family: var(--font-body);
    color: var(--text);
    background-color: var(--bg);
    background-image:
        radial-gradient(circle at 12% -10%, rgba(63, 27, 0, 0.08), transparent 50%),
        radial-gradient(circle at 110% 20%, rgba(68, 85, 204, 0.12), transparent 45%);
    background-repeat: no-repeat;
    background-size: 700px 700px, 620px 620px;
    background-position: left -220px top -160px, right -180px top 120px;
    line-height: 1.65;
    letter-spacing: 0.01em;
    overflow-x: hidden;
}

.page[data-page="home"]{
    background-image:
        radial-gradient(circle at 12% -10%, rgba(63, 27, 0, 0.08), transparent 50%),
        radial-gradient(circle at 110% 20%, rgba(68, 85, 204, 0.12), transparent 45%),
        url("assets/bg-arabic-text.png");
    background-repeat: no-repeat;
    background-size: 700px 700px, 620px 620px, 100% 600px;
    background-position: left -220px top -160px, right -180px top 120px, center var(--header-height);
}

@media (max-width: 900px){
    .page[data-page="home"]{
        background-image:
            radial-gradient(circle at 12% -10%, rgba(63, 27, 0, 0.08), transparent 50%),
            radial-gradient(circle at 110% 20%, rgba(68, 85, 204, 0.12), transparent 45%);
        background-size: 620px 620px, 520px 520px;
        background-position: left -240px top -160px, right -200px top 120px;
    }
    .page[data-page="home"] .hero{
        background-image: url("assets/bg-arabic-text.png");
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center top;
    }
}

a{ color: inherit; text-decoration: none; }
a:hover{ color: var(--primary); }

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

.container{
    width: min(var(--container), calc(100% - 2rem));
    margin: 0 auto;
}

.skip-link{
    position: absolute;
    left: -9999px;
    top: 0;
    background: var(--primary);
    color: #fff;
    padding: .75rem 1rem;
    border-radius: 12px;
    z-index: 9999;
}
.skip-link:focus{ left: 1rem; top: 1rem; }

.page{
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

main{ flex: 1; }

.section{
    padding: 3.5rem 0;
    position: relative;
}
.section--tight{
    padding: 2.25rem 0;
}
.section--surface{
    background: var(--surface);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    backdrop-filter: blur(6px);
}

.wat-we-doen {
    padding: 6rem 0 6rem 0;
}

.section__intro{
    max-width: 72ch;
}
.eyebrow{
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    font-size: .72rem;
    letter-spacing: .3em;
    text-transform: uppercase;
    color: var(--secondary-solid);
    font-weight: 700;
}
.eyebrow::before{
    content: "";
    width: 32px;
    height: 2px;
    background: var(--secondary-solid);
    opacity: .6;
}

h1, h2, h3{
    font-family: var(--font-display);
    line-height: 1.15;
    margin: 0 0 .75rem 0;
    font-weight: 600;
}
h1{ font-size: clamp(2rem, 2.6vw, 3rem); }
h2{ font-size: clamp(1.4rem, 2vw, 2rem); }
h3{ font-size: 1.15rem; }

p{ margin: 0 0 1rem 0; }

.text-muted{ color: var(--muted); }

.card{
    position: relative;
    padding: 1.15rem 1.35rem;
    border-radius: 18px 18px 12px 18px;
    border: 1px solid rgba(63, 27, 0, 0.12);
    background: linear-gradient(150deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.45));
    box-shadow: none;
    overflow: hidden;
}
.card::after{
    content: "";
    position: absolute;
    left: 1.15rem;
    bottom: .85rem;
    width: 64px;
    height: 2px;
    background: linear-gradient(90deg, var(--secondary-solid), transparent);
    opacity: .45;
}
.card--flat{
    background: transparent;
    border: 1px dashed rgba(63, 27, 0, 0.2);
}
.card--flat::after{ display: none; }

.grid{
    display: grid;
    gap: 1.4rem;
}
.grid--3{
    grid-template-columns: repeat(3, minmax(0, 1fr));
}
.grid--2{
    grid-template-columns: repeat(2, minmax(0, 1fr));
}
@media (min-width: 940px){
    .grid--3 > :nth-child(2){ transform: translateY(10px); }
    .grid--3 > :nth-child(3){ transform: translateY(-6px); }
}
.grid--even{
    align-items: stretch;
}
.grid--even .card{
    height: 100%;
    display: flex;
    flex-direction: column;
}
@media (min-width: 940px){
    .grid--even > :nth-child(2),
    .grid--even > :nth-child(3){
        transform: none;
    }
}
@media (max-width: 860px){
    .grid--3, .grid--2{ grid-template-columns: 1fr; }
    .grid--3 > :nth-child(2),
    .grid--3 > :nth-child(3){ transform: none; }
}

.btn-row{
    display: flex;
    gap: .75rem;
    flex-wrap: wrap;
    margin-top: 1rem;
    align-items: center;
}

.btn{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: .75rem 1.2rem;
    min-height: 44px;
    border-radius: 999px;
    border: 1px solid var(--border);
    text-decoration: none;
    font-weight: 600;
    letter-spacing: .01em;
    transition: transform .08s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
}
.btn:active{ transform: translateY(1px); }
.btn:focus-visible{
    outline: 2px solid var(--secondary-solid);
    outline-offset: 3px;
}

.btn--primary{
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
    box-shadow: var(--shadow-sm);
}
.btn--primary:hover{ filter: brightness(1.02); color: #fff; }

.btn--secondary{
    background: rgba(255, 255, 255, 0.7);
    border-color: rgba(63, 27, 0, 0.25);
    color: var(--primary);
}
.btn--secondary:hover{
    border-color: var(--primary);
    box-shadow: 0 12px 22px rgba(63, 27, 0, 0.12);
}
a.btn.btn--secondary[href*="contact"]{
    background: #fff;
}
.page[data-page="home"] .hero .btn--secondary{
    background: #fff;
}

.badge{
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    font-weight: 600;
    background: var(--secondary);
    color: var(--primary);
    border: 1px solid rgba(68, 85, 204, 0.28);
    padding: .35rem .7rem;
    border-radius: 999px;
    letter-spacing: .02em;
}

/* Header */
.site-header{
    position: sticky;
    top: 0;
    background: var(--surface-strong);
    border-bottom: 1px solid var(--border);
    z-index: 50;
}

.header__inner{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem 0;
}

.header__actions{
    display: flex;
    align-items: center;
    gap: .75rem;
}

.brand{
    display: inline-flex;
    align-items: center;
    gap: .85rem;
    text-decoration: none;
}
.brand__logo{
    width: 52px;
    height: 52px;
    border-radius: 14px;
    overflow: hidden;
}
.brand__logo img{
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}
.brand__text{
    display: grid;
    gap: .15rem;
}
.brand__name{
    font-weight: 700;
    font-family: var(--font-display);
    letter-spacing: 0.01em;
}
.brand__tagline{
    font-size: .9rem;
    color: var(--muted);
}

@media (max-width: 640px){
    .brand__logo{
        width: 44px;
        height: 44px;
    }
}

.nav{
    display: flex;
    align-items: center;
    gap: .9rem;
}
.nav a{
    position: relative;
    padding: .35rem .2rem;
}
.nav a::after{
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -.4rem;
    height: 2px;
    background: transparent;
    opacity: 0;
    transition: opacity .2s ease, background .2s ease;
}
.nav a:hover::after{
    background: var(--secondary-solid);
    opacity: .55;
}
.nav a:focus-visible{
    outline: 2px solid var(--secondary-solid);
    outline-offset: 4px;
    border-radius: 10px;
}

.nav a.active,
.nav a[aria-current="page"]{
    color: var(--primary);
}
.nav a.active::after,
.nav a[aria-current="page"]::after{
    background: var(--primary);
    opacity: 1;
}

.nav a.nav__cta{
    margin-left: .4rem;
    padding: .65rem 1.1rem;
    border-radius: 999px;
    background: var(--primary);
    border-color: var(--primary);
    color: #fff !important;
}
.nav__cta::after{ display: none; }
.nav__cta:hover{ filter: brightness(1.03); }

.lang-switch{
    display: inline-flex;
    align-items: center;
    gap: .25rem;
    padding: .2rem;
    border-radius: 999px;
    border: 1px solid rgba(63, 27, 0, 0.18);
    background: #ffffff;
    white-space: nowrap;
}
.lang-switch__link{
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    padding: .3rem .6rem;
    border-radius: 999px;
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--muted);
    transition: background .2s ease, color .2s ease;
}
.lang-switch__link[aria-current="true"]{
    background: #f0edeb;
    color: var(--primary);
}
.lang-switch__link[lang="ar"]{
    letter-spacing: 0;
    text-transform: none;
}
.lang-switch__icon{
    width: 18px;
    height: 12px;
    border-radius: 3px;
    box-shadow: inset 0 0 0 1px rgba(63, 27, 0, 0.2);
    background-color: #ffffff;
    position: relative;
    flex-shrink: 0;
}
.lang-switch__icon--nl{
    background: linear-gradient(180deg, #ae1c28 0 33%, #ffffff 33% 66%, #21468b 66% 100%);
}
.lang-switch__icon--ar{
    background: #ffffff url("assets/icon-arabic.png") center / cover no-repeat;
}
.lang-switch__link:focus-visible{
    outline: 2px solid var(--secondary-solid);
    outline-offset: 2px;
}
.nav .lang-switch{
    margin-left: .6rem;
}
.nav .lang-switch__link::after{
    content: none;
}

/* Mobile nav */
.nav-toggle{
    display: none;
    align-items: center;
    gap: .5rem;
    border: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.7);
    padding: .55rem .75rem;
    border-radius: 999px;
    cursor: pointer;
}
.nav-toggle__label{ font-weight: 700; }
.nav-toggle__icon{
    width: 18px;
    height: 12px;
    display: inline-block;
    position: relative;
}
.nav-toggle__icon::before,
.nav-toggle__icon::after{
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--primary);
    border-radius: 2px;
}
.nav-toggle__icon::before{ top: 0; }
.nav-toggle__icon::after{ bottom: 0; }
.nav-toggle:focus-visible{
    outline: 2px solid var(--secondary-solid);
    outline-offset: 3px;
}

@media (max-width: 860px){
    .nav-toggle{ display: inline-flex; }
    .nav{
        position: absolute;
        left: 0;
        right: 0;
        top: 100%;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: .35rem;
        padding: .75rem 1rem 1rem;
        margin: 0;
        background: var(--surface-strong);
        border-bottom: 1px solid var(--border);
        box-shadow: 0 14px 24px rgba(63, 27, 0, 0.1);
        max-height: calc(100vh - var(--header-height));
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }
    .nav.is-open{ display: flex; }
    .nav a{
        display: flex;
        align-items: center;
        min-height: 44px;
        padding: .6rem .75rem;
        border-radius: 12px;
        border: 1px solid rgba(63, 27, 0, 0.12);
    }
    .nav a::after{ display: none; }
    .nav__cta{
        border-radius: 12px;
        box-shadow: none;
    }
    .lang-switch{
        padding: .15rem;
    }
    .lang-switch__link{
        padding: .35rem .6rem;
    }
    .nav .lang-switch{
        margin-left: 0;
        width: 100%;
        justify-content: center;
    }
    .nav .lang-switch__link{
        border: none;
    }
}

/* Hero */
.hero{
    padding: 7.5rem 0 8rem 0;
    position: relative;
}
.hero--over-ons{
    position: relative;
    color: #fff;
    background-image: url("assets/bg-over-ons.png");
    background-size: 100% auto;
    background-position: center;
    background-repeat: no-repeat;
}
.hero--over-ons::before{
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(63, 27, 0, 0.82), rgba(63, 27, 0, 0.62));
    z-index: 0;
}
.hero--over-ons .hero__inner{
    position: relative;
    z-index: 1;
}
.hero--over-ons .hero__lead{
    color: rgba(255, 255, 255, 0.86);
}
.hero--plannen{
    background-image: url("assets/bg-plannen.png");
    background-size: 100% auto;
    background-position: center;
    background-repeat: no-repeat;
    color: #1e130b;
}
.hero--plannen::before{
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(255, 240, 221, 0.88);
    z-index: 0;
}
.hero--plannen .hero__inner{
    position: relative;
    z-index: 1;
}
.hero--plannen .hero__lead{
    color: rgba(42, 22, 11, 0.8);
}
.hero__inner{
    display: grid;
    gap: 1.2rem;
}
.hero__lead{
    font-size: 1.05rem;
    color: var(--muted);
    max-width: 68ch;
}
.hero__panel{
    margin-top: .5rem;
    display: grid;
    gap: .8rem;
    align-items: center;
}
.hero__logo{
    justify-self: end;
    align-self: center;
    width: min(224px, 56vw);
    filter: drop-shadow(0 18px 28px rgba(63, 27, 0, 0.22));
}
.hero__logo img{
    width: 100%;
    height: auto;
    border-radius: 22px;
}
.hero__note{
    display: grid;
    gap: .4rem;
    padding: 1.1rem 1.2rem;
    border-radius: 18px;
    border: 1px solid rgba(63, 27, 0, 0.16);
    background: rgba(255, 255, 255, 0.75);
    box-shadow: var(--shadow-sm);
}
.hero__note strong{ display: block; margin-bottom: .15rem; }

.page[data-page="home"] .hero::before{
    content: "";
    position: absolute;
    inset: -10% -5% 0 -5%;
    background: linear-gradient(120deg, rgba(249, 241, 230, 0.98), rgba(249, 241, 230, 0.7));
    z-index: 0;
}
.page[data-page="home"] .hero__inner{
    position: relative;
    z-index: 1;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, .8fr);
    grid-template-areas:
        "badge panel"
        "title panel"
        "lead panel"
        "actions panel";
    align-items: center;
}
.page[data-page="home"] .hero__inner > .badge{ grid-area: badge; }
.page[data-page="home"] .hero__inner > h1{ grid-area: title; }
.page[data-page="home"] .hero__inner > .hero__lead{ grid-area: lead; }
.page[data-page="home"] .hero__inner > .btn-row{ grid-area: actions; }
.page[data-page="home"] .hero__inner > .hero__panel{ grid-area: panel; }

@media (max-width: 960px){
    .page[data-page="home"] .hero__inner{
        grid-template-columns: 1fr;
        grid-template-areas:
            "badge"
            "title"
            "lead"
            "actions"
            "panel";
    }
    .hero__logo{
        justify-self: center;
        margin-top: .5rem;
    }
}
@media (min-width: 1024px){
    .section{
        padding: 4.25rem 0;
    }
    .hero{
        padding: 8rem 0 8.5rem 0;
    }
    .hero__lead{
        font-size: 1.1rem;
    }
    .btn-row{
        gap: 1rem;
    }
    .nav a{
        padding: .5rem .35rem;
    }
}
@media (min-width: 1200px){
    .section__intro{
        max-width: 78ch;
    }
    .card{
        padding: 1.25rem 1.45rem;
    }
}
@media (max-width: 900px){
    .hero--over-ons,
    .hero--plannen{
        background-size: cover;
        background-position: center;
    }
}
@media (max-width: 720px){
    .header__inner{
        padding: .75rem 0;
    }
    .section{
        padding: 2.75rem 0;
    }
    .wat-we-doen{
        padding: 3.5rem 0;
    }
    .hero{
        padding: 5.5rem 0 6rem 0;
    }
    .hero__inner{
        gap: 1rem;
    }
    .hero__lead{
        font-size: 1rem;
    }
    .hero__panel{
        justify-items: center;
    }
    .btn-row{
        flex-direction: column;
        align-items: stretch;
    }
    .btn-row .btn{
        width: 100%;
    }
}
@media (max-width: 560px){
    .brand{
        gap: .6rem;
    }
    .brand__logo{
        width: 40px;
        height: 40px;
    }
    .brand__tagline{
        display: none;
    }
    .brand__name{
        font-size: 1rem;
    }
    .hero__logo{
        width: min(200px, 72vw);
    }
    .inline{
        flex-direction: column;
        align-items: stretch;
    }
    .inline .choice{
        width: 100%;
    }
    .doc-actions{
        flex-direction: column;
        align-items: stretch;
    }
    .doc-actions .btn{
        width: 100%;
    }
}

/* Founders */
.section--founders{
    padding-top: 3.75rem;
}
.founders{
    margin-top: 1.5rem;
    display: grid;
    gap: 1.5rem;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}
.founder-card{
    position: relative;
    display: grid;
    gap: .85rem;
    padding: 1rem;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(63, 27, 0, 0.12);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}
.founder-card::before{
    content: "";
    position: absolute;
    top: -40px;
    right: -40px;
    width: 140px;
    height: 140px;
    background: radial-gradient(circle, var(--secondary), transparent 70%);
    opacity: .7;
}
.founder-card__media{
    border-radius: 16px 16px 8px 16px;
    overflow: hidden;
    aspect-ratio: 1 / 1;
}
.founder-card__media img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(0.95);
}
.founder-card__body h3{
    margin: 0;
    font-size: 1.2rem;
}
.founder-card__title{
    margin: .15rem 0 0 0;
    font-weight: 600;
    color: var(--secondary-solid);
    letter-spacing: .06em;
    text-transform: uppercase;
    font-size: .78rem;
}
@media (min-width: 980px){
    .founder-card:nth-child(2){ transform: translateY(10px); }
    .founder-card:nth-child(3){ transform: translateY(-6px); }
}
@media (max-width: 900px){
    .founders{ grid-template-columns: 1fr; }
}

/* Forms */
.form{
    display: grid;
    gap: .95rem;
    max-width: 720px;
}
.field{
    display: grid;
    gap: .35rem;
}
label{ font-weight: 650; }
input, textarea, select{
    width: 100%;
    padding: .75rem .85rem;
    border-radius: 14px;
    outline: none;
    border: 1px solid rgba(63, 27, 0, 0.2);
    background: rgba(255, 255, 255, 0.85);
    font: inherit;
    color: var(--text);
}
textarea{ min-height: 140px; resize: vertical; }
input:focus, textarea:focus, select:focus{
    border-color: var(--primary);
    box-shadow: 0 0 0 4px var(--primary-soft);
}

.help{
    font-size: .95rem;
    color: var(--muted);
}

/* Donate options */
.choice-grid{
    display: grid;
    gap: .65rem;
}
.choice{
    display: grid;
    grid-template-columns: 20px 1fr;
    gap: .65rem;
    align-items: start;
    padding: .85rem;
    border-radius: 14px;
    border: 1px solid rgba(63, 27, 0, 0.18);
    background: rgba(255, 255, 255, 0.75);
    transition: border-color .2s ease, box-shadow .2s ease, transform .08s ease;
}
.choice:hover{
    border-color: rgba(63, 27, 0, 0.35);
    box-shadow: 0 10px 18px rgba(63, 27, 0, 0.08);
}
.choice input{ margin-top: .2rem; }

.inline{
    display: flex;
    gap: .75rem;
    flex-wrap: wrap;
}
.inline .choice{
    grid-template-columns: 20px 1fr;
    width: min(320px, 100%);
}

/* Document embeds */
.doc-block{
    display: grid;
    gap: 1.25rem;
}
.doc-block--two{
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: start;
}
.doc-block--compact .doc-embed{
    height: 360px;
}
@media (max-width: 900px){
    .doc-block--two{
        grid-template-columns: 1fr;
    }
    .doc-block--compact .doc-embed{
        height: 320px;
    }
    .doc-embed{
        width: 100%;
        margin-top: 1.5rem;
        height: min(60vh, 640px);
    }
}
.doc-embed{
    width: 65%;
    margin: 2rem auto 0;
    display: block;
    height: min(72vh, 820px);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    background: #fff;
}
.doc-actions{
    display: flex;
    gap: .75rem;
    flex-wrap: wrap;
}

/* Footer */
.site-footer{
    background: var(--surface);
    border-top: 1px solid var(--border);
    padding: 2.2rem 0;
}
.footer__inner{
    display: grid;
    gap: 1.5rem;
    grid-template-columns: repeat(3, auto);
    align-items: center;
    justify-content: center;
    text-align: left;
}
.footer__links{
    display: grid;
    gap: .35rem;
}
.footer__links a{
    text-decoration: none;
    color: var(--muted);
}
.footer__links a:hover{ color: var(--primary); }
.footer__small{
    margin: 0;
    font-size: .95rem;
}
.footer__meta{
    color: var(--muted);
}

@media (max-width: 860px){
    .footer__inner{
        grid-template-columns: 1fr;
        justify-items: center;
        text-align: center;
    }
}
@media (max-width: 480px){
    .toast{
        white-space: normal;
        text-align: center;
    }
}

/* Toast */
.toast{
    position: fixed;
    left: 50%;
    bottom: 18px;
    transform: translateX(-50%) translateY(12px);
    opacity: 0;
    pointer-events: none;
    padding: .85rem 1rem;
    border-radius: 999px;
    border: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.96);
    box-shadow: var(--shadow);
    transition: opacity .12s ease, transform .12s ease;
    max-width: calc(100% - 2rem);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.toast.is-visible{
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}
.toast[data-type="success"]{
    border-color: rgba(63, 27, 0, 0.3);
}
.toast[data-type="warn"]{
    border-color: rgba(240, 140, 20, 0.45);
}

@keyframes fade-rise{
    from{
        opacity: 0;
        transform: translateY(14px);
    }
    to{
        opacity: 1;
        transform: translateY(0);
    }
}

.hero__inner,
.founder-card{
    animation: fade-rise .7s ease both;
}
.founder-card:nth-child(2){ animation-delay: .08s; }
.founder-card:nth-child(3){ animation-delay: .16s; }

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