:root {
    --navy: #061C3E;
    --sky: #5C90D7;
    --orange: #ffa800;
    --orange-deep: #c98600;
    --grey: #191919;
    --grey-mid: #2a3038;
    --sand: #f3f6fb;
    --cream: #ffffff;
    --ink: #061C3E;
    --muted: #4a5c75;
    --line: #d5deea;
    --teal: #5C90D7;
    --teal-deep: #061C3E;
    --teal-soft: #e7eef9;
    --coral: #ffa800;
    --coral-deep: #c98600;
    --coral-soft: #fff4d6;
    --night: #061C3E;
    --night-2: #191919;
    --mist: #e8eef6;
    --white: #ffffff;
    --frost: #d7e4f6;
    --photo-wash: #dbe4f0;
    --track: #c9d4e4;
    --color-primary: var(--navy);
    --color-accent: var(--orange);
    --color-dark: var(--grey);
    --color-light: var(--sand);
    --grad: linear-gradient(90deg, var(--orange) 0%, var(--orange-deep) 50%, var(--orange) 100%);
    --shadow: 0 22px 50px rgba(6, 28, 62, 0.12);
    --shadow-sm: 0 10px 28px rgba(6, 28, 62, 0.08);
    --radius: 16px;
    --radius-sm: 12px;
    --radius-full: 10px;
    --gutter: clamp(1.15rem, 4vw, 2.4rem);
    --max: 1180px;
    --header: 78px;
    --font-display: "Syne", system-ui, sans-serif;
    --font-hero: "Outfit", "Manrope", system-ui, sans-serif;
    --font-body: "Manrope", system-ui, sans-serif;
    --ease: cubic-bezier(.22, 1, .36, 1);
}
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 7.2rem; }
body {
    margin: 0;
    font-family: var(--font-body);
    font-size: clamp(1rem, 0.35vw + 0.94rem, 1.125rem);
    line-height: 1.7;
    color: var(--ink);
    background: var(--sand);
}
img, svg, video { max-width: 100%; height: auto; display: block; }
a { color: var(--teal-deep); text-decoration: none; }
a:hover { color: var(--coral-deep); }
h1, h2, h3, h4 {
    font-family: var(--font-display);
    line-height: 1.12;
    letter-spacing: -0.04em;
    color: var(--ink);
    margin: 0 0 0.55em;
}
p { margin: 0 0 1em; }
button, input, select, textarea { font: inherit; }
.skip-link {
    position: absolute; left: 1rem; top: -4rem;
    background: var(--coral); color: var(--white);
    padding: 0.6rem 1rem; z-index: 1000; border-radius: 8px;
}
.skip-link:focus { top: 1rem; }
.scroll-progress {
    position: fixed; inset: 0 0 auto; height: 3px; z-index: 80;
    background: linear-gradient(90deg, var(--teal), var(--coral));
    transform: scaleX(0); transform-origin: 0 50%;
    pointer-events: none;
}
.to-top {
    position: fixed;
    right: 1.25rem;
    bottom: 1.25rem;
    z-index: 45;
    width: 52px;
    height: 52px;
    border: 0;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--orange);
    color: var(--navy);
    cursor: pointer;
    box-shadow: 0 12px 28px rgba(6, 28, 62, 0.22);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(14px) scale(0.92);
    transition: opacity .28s ease, transform .28s ease, visibility .28s ease, background .2s ease, color .2s ease;
}
.to-top.is-on {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
}
.to-top:hover,
.to-top:focus-visible {
    background: var(--orange-deep);
    color: var(--white);
}
.to-top svg { width: 22px; height: 22px; display: block; }
@media (prefers-reduced-motion: reduce) {
    .to-top { transition: none; transform: none; }
}
.topbar {
    background: var(--cream);
    color: var(--ink);
    border-bottom: 1px solid var(--line);
    font-size: 0.8rem;
    font-weight: 700;
}
.topbar__inner {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.15rem 1.6rem;
    min-height: 36px;
    overflow-x: auto;
    scrollbar-width: none;
}
.topbar__inner::-webkit-scrollbar { display: none; }
.topbar__item {
    display: inline-flex;
    align-items: center;
    gap: 0.38rem;
    color: var(--ink);
    white-space: nowrap;
    flex: 0 0 auto;
}
.topbar__item svg {
    width: 14px;
    height: 14px;
    color: var(--orange);
    flex: 0 0 auto;
}
.topbar__item:hover { color: var(--orange-deep); }
.topbar__social {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    flex: 0 0 auto;
}
.topbar__social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    color: var(--navy);
}
.topbar__social svg {
    width: 15px;
    height: 15px;
    display: block;
}
.topbar__social a:hover { color: var(--orange); }
@media (max-width: 900px) {
    .topbar__item--addr, .topbar__item--altmail { display: none; }
}
.container { width: min(var(--max), calc(100% - var(--gutter) * 2)); margin-inline: auto; }
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
    padding: 0.88rem 1.35rem; border-radius: var(--radius-full);
    font-weight: 700; border: 0; cursor: pointer; white-space: nowrap;
    position: relative; overflow: hidden; z-index: 0;
    transition: transform .25s var(--ease), box-shadow .25s var(--ease), color .25s, background-position .45s ease, border-color .25s;
}
.btn svg { width: 18px; height: 18px; position: relative; z-index: 1; }
.btn--primary {
    color: var(--white);
    background-color: var(--orange);
    background-image: var(--grad);
    background-size: 200% 1px;
    background-position: 0%;
    box-shadow: 0 12px 28px rgba(255, 168, 0, 0.28);
}
.btn--primary::after {
    content: ""; position: absolute; height: 120%; width: 15px;
    background: var(--white); opacity: 0.22; left: -35%; top: -10%;
    transform: rotate(15deg); transition: left .8s ease; pointer-events: none; z-index: 1;
}
.btn--primary:hover, .btn--primary:focus {
    color: var(--white);
    background-position: 100%;
    transform: translateY(-2px);
}
.btn--primary:hover::after, .btn--primary:focus::after { left: 130%; }
.btn--ghost {
    background: transparent; color: var(--white);
    border: 1px solid rgba(255,255,255,.38);
}
.btn--ghost:hover { background: rgba(92, 144, 215, .18); color: var(--white); border-color: var(--sky); }
.btn--dark { background: var(--navy); color: var(--white); }
.btn--dark:hover {
    color: var(--white);
    background-image: var(--grad);
    background-size: 200% 1px;
    background-position: 100%;
}
.btn--line {
    background: transparent; color: var(--ink);
    border: 1px solid var(--line);
}
.btn--line:hover {
    color: var(--white);
    border-color: transparent;
    background-image: var(--grad);
    background-size: 200% 1px;
    background-position: 100%;
}
.btn:focus-visible, a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
    outline: 3px solid var(--coral); outline-offset: 3px;
}
.header {
    position: sticky; top: 0; z-index: 50;
    background: rgba(243, 246, 251, 0.82);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid transparent;
    overflow: visible;
    transition: top .55s var(--ease), background .3s, box-shadow .3s, border-color .3s;
}
.header.is-hidden {
    top: -160px;
    pointer-events: none;
}
.header.is-hidden .nav__sub { display: none; }
.header.is-condensed, .site:not(.has-dark-hero) .header {
    background: rgba(255, 255, 255, 0.94);
    border-bottom-color: var(--line);
    box-shadow: var(--shadow-sm);
}
.has-dark-hero .hero { margin-top: calc(var(--header) * -1); }
.has-dark-hero:not(.is-scrolled) .header {
    background: transparent;
    border-bottom-color: transparent;
    box-shadow: none;
}
.has-dark-hero:not(.is-scrolled) .nav-toggle span { color: var(--white); background: var(--white); }
.has-dark-hero:not(.is-scrolled) .nav--desktop .nav__item > a { background: transparent; color: var(--white); }
.has-dark-hero:not(.is-scrolled) .nav--desktop .nav__item.is-active > a,
.has-dark-hero:not(.is-scrolled) .nav--desktop .nav__item > a:hover { color: var(--white); background: rgba(255,255,255,.12); }
.header__inner {
    display: flex; align-items: flex-start; gap: 0.85rem;
    min-height: var(--header);
    overflow: visible;
}
.logo {
    flex: 0 0 auto;
    display: flex;
    align-items: flex-start;
    position: relative;
    z-index: 60;
    margin: 0 0 -33px;
    transition: margin .3s var(--ease);
}
.logo__img {
    width: auto; height: 111px;
    max-width: none;
    background: transparent; border-radius: 0;
    padding: 0; box-shadow: none;
    object-fit: contain;
    object-position: top center;
    transition: height .3s var(--ease);
}
.header.is-condensed .header__inner {
    align-items: center;
}
.header.is-condensed .logo {
    margin-bottom: 0;
    align-items: center;
    align-self: center;
}
.header.is-condensed .logo__img { height: 58px; }
.header.is-condensed .nav-toggle { margin-top: 0; }
.has-dark-hero:not(.is-scrolled) .logo__img {
    filter: brightness(0) invert(1);
}
.nav { display: flex; align-items: center; gap: 0.6rem; margin-left: auto; min-height: var(--header); }
.nav__list { display: flex; gap: 0.1rem; list-style: none; margin: 0; padding: 0; }
.nav__item > a {
    display: flex; align-items: center; gap: 0.3rem;
    padding: 0.42rem 0.52rem; color: var(--ink); font-weight: 700; border-radius: 999px;
    font-size: 0.84rem;
}
.nav__item > a:hover, .nav__item.is-active > a { color: var(--teal-deep); }
.nav__item.is-active > a { background: var(--teal-soft); }
.nav__caret {
    width: 7px; height: 7px; border-right: 2px solid currentColor; border-bottom: 2px solid currentColor;
    transform: rotate(45deg) translateY(-2px);
}
.nav__item--parent { position: relative; }
.nav__sub {
    display: none; position: absolute; top: calc(100% - 2px); left: 0; min-width: 210px;
    background: var(--cream); border-radius: 16px; box-shadow: var(--shadow);
    padding: 0.45rem; list-style: none; margin: 0; border: 1px solid var(--line);
}
.nav__item--parent:hover .nav__sub, .nav__item--parent:focus-within .nav__sub { display: block; }
.nav__sub a { display: block; padding: 0.65rem 0.85rem; color: var(--ink); border-radius: 10px; font-weight: 700; }
.nav__sub a:hover, .nav__sub a[aria-current="page"] { background: var(--teal-soft); color: var(--teal-deep); }
.header__tools { display: flex; align-items: center; gap: 0.55rem; flex: 0 0 auto; min-height: var(--header); }
.header__cta { padding: 0.58rem 0.82rem; font-size: 0.82rem; }
.nav-toggle {
    display: none; width: 46px; height: 46px; margin-left: auto; margin-top: 16px;
    border: 0; background: transparent; cursor: pointer; position: relative;
}
.nav-toggle span {
    position: absolute; left: 12px; right: 12px; height: 2px; background: var(--ink); border-radius: 2px; transition: .2s;
}
.nav-toggle span:nth-child(1) { top: 15px; }
.nav-toggle span:nth-child(2) { top: 22px; }
.nav-toggle span:nth-child(3) { top: 29px; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { top: 22px; transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { top: 22px; transform: rotate(-45deg); }
.nav-drawer,
.nav-backdrop { display: none; }

.visually-hidden {
    position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
    overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}
.hero {
    position: relative; isolation: isolate; color: var(--white);
    min-height: min(100svh, 900px); overflow: hidden;
    background: var(--color-primary);
    display: grid; align-items: center;
    font-family: var(--font-hero);
}
.hero__media {
    position: absolute; inset: 0; z-index: 0; pointer-events: none;
}
.hero__media picture,
.hero__media img {
    width: 100%; height: 100%; object-fit: cover; object-position: center 42%;
}
.hero__media::after {
    content: ""; position: absolute; inset: 0;
    background:
        linear-gradient(115deg, rgba(6, 28, 62, .9) 0%, rgba(6, 28, 62, .68) 46%, rgba(6, 28, 62, .5) 100%),
        linear-gradient(to top, rgba(6, 28, 62, .78), transparent 44%);
}
.hero__grid {
    position: absolute; inset: 0; z-index: 0; pointer-events: none;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
    background-size: 64px 64px;
    mask-image: radial-gradient(ellipse at 50% 45%, #000 38%, transparent 78%);
    -webkit-mask-image: radial-gradient(ellipse at 50% 45%, #000 38%, transparent 78%);
}
.hero__glow {
    position: absolute; width: 600px; height: 600px; border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 168, 0, 0.08), transparent 68%);
    top: 12%; left: 4%; pointer-events: none; z-index: 0;
}
.hero__layout {
    position: relative; z-index: 1;
    display: grid;
    align-items: center;
    padding: clamp(7.6rem, 12vw, 9.2rem) 0 5.2rem;
}
.hero__copy { max-width: 100%; }
.hero__status {
    display: inline-flex; align-items: center; gap: 0.55rem;
    margin: 0 0 1.15rem;
    font-family: var(--font-hero);
    font-size: 13px; font-weight: 600; letter-spacing: 0.14em;
    text-transform: uppercase; color: var(--frost);
}
.hero__pulse {
    width: 8px; height: 8px; border-radius: 50%;
    background: var(--color-accent); flex: 0 0 auto;
    box-shadow: 0 0 0 0 rgba(255, 168, 0, 0.55);
    animation: fx-pulse 3.2s var(--ease) infinite;
}
.hero__headline {
    font-family: var(--font-hero);
    font-size: clamp(2.6rem, 5.2vw, 4.1rem);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -0.02em;
    color: var(--white);
    margin: 0 0 1.15rem;
}
.hero__line {
    display: flex; flex-wrap: nowrap; align-items: baseline; gap: 0.28em;
}
.hero__word { overflow: hidden; display: inline-block; white-space: nowrap; }
.hero__word-inner { display: inline-block; }
.hero__rotate-wrap {
    position: relative;
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    min-width: 0;
}
.hero__rotate-sizer {
    visibility: hidden; white-space: nowrap;
    font-family: inherit; font-weight: inherit; font-size: 1em;
    pointer-events: none;
}
.hero__rotate {
    position: absolute; left: 0; top: 0;
    overflow: hidden;
    height: 1.1em;
    width: 8.4em;
    color: var(--color-accent);
    transition: width .6s var(--ease);
}
.hero__rotate-word {
    position: absolute; left: 0; top: 0;
    white-space: nowrap;
    transform: translateY(110%);
    opacity: 0;
}
.hero__rotate-word.is-on {
    transform: none;
    opacity: 1;
}
.hero__underline {
    width: 100%; height: 10px; color: var(--color-accent);
    display: block; margin-top: 0.08em;
}
.hero__lede {
    max-width: 560px;
    margin: 0 0 1.7rem;
    font-size: 18px;
    line-height: 1.6;
    color: var(--frost);
}
.hero__actions {
    display: flex; flex-wrap: wrap; gap: 0.8rem;
}
.hero .btn { min-height: 44px; }
.hero .btn--primary { overflow: hidden; }
.hero .btn--primary::after {
    transition: transform .7s var(--ease);
    transform: translateX(0) rotate(15deg);
    left: -35%;
}
.hero .btn--primary:hover::after,
.hero .btn--primary:focus::after {
    left: -35%;
    transform: translateX(720%) rotate(15deg);
}
.hero .btn--ghost svg { transition: transform .25s var(--ease); }
.hero .btn--ghost:hover svg { transform: translateX(4px); }
.hero__proof {
    display: flex; flex-wrap: wrap; align-items: center; gap: 0.35rem 0.15rem;
    list-style: none; margin: 1.7rem 0 0; padding: 0;
    font-size: 14px; color: var(--frost);
}
.hero__proof li { display: inline-flex; align-items: baseline; gap: 0.35rem; }
.hero__proof li + li::before {
    content: "·"; margin: 0 0.7rem 0 0.45rem; color: var(--sky);
}
.hero__proof b { color: var(--white); font-weight: 800; }
.hero__cue {
    position: absolute; left: 50%; bottom: 1.2rem; z-index: 2;
    transform: translateX(-50%);
    width: 44px; height: 44px;
    display: grid; place-items: center;
    color: var(--frost);
}
.hero__cue-mouse {
    width: 18px; height: 28px;
    border: 1.5px solid currentColor; border-radius: 12px;
    position: relative;
}
.hero__cue-mouse::after {
    content: ""; position: absolute; left: 50%; top: 6px;
    width: 3px; height: 6px; border-radius: 99px;
    background: var(--color-accent);
    transform: translateX(-50%);
}
.hero__cue.is-gone { opacity: 0; pointer-events: none; }
.eyebrow {
    display: inline-flex; align-items: center; gap: 0.5rem;
    color: var(--sky); font-weight: 800; letter-spacing: 0.12em;
    text-transform: uppercase; font-size: 0.72rem; margin-bottom: 1rem;
}
.eyebrow::before {
    content: ""; width: 1.6rem; height: 2px; background: var(--coral);
}

.section { padding: clamp(3.8rem, 8vw, 6.8rem) 0; }
.section--cream { background: var(--cream); }
.section--mist { background: var(--mist); }
.section--night { background: var(--grey); color: var(--sky); }
.section--night h2, .section--night h3 { color: var(--white); }
.section__head { max-width: 720px; margin-bottom: 2.2rem; }
.center { text-align: center; margin-inline: auto; }
.kicker {
    color: var(--teal); font-weight: 800; letter-spacing: 0.14em;
    text-transform: uppercase; font-size: 0.74rem; margin-bottom: 0.55rem;
}
.section h2 { font-size: clamp(1.85rem, 3.6vw, 3rem); }
.reveal { opacity: 1; transform: none; }
html.js .reveal {
    opacity: 0; transform: translateY(28px);
    transition: opacity .7s var(--ease) var(--d, 0ms), transform .7s var(--ease) var(--d, 0ms);
}
html.js .reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    html.js .reveal, .hero__status, .hero__lede, .hero__actions, .hero__proof, .hero__cue, .quote--slide.is-on {
        animation: none !important; opacity: 1; transform: none; transition: none;
    }
    .acc-panel, .testimonial-slider__stage, .testimonial-slider__stage .quote--slide, .nav-drawer, .nav-backdrop, .header {
        transition: none;
    }
    body.is-nav-open .nav-drawer .nav__item {
        animation: none;
        opacity: 1;
        transform: none;
    }
}

.logo-marquee { overflow: hidden; mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.logo-track { display: flex; gap: 2.6rem; align-items: center; width: max-content; animation: marquee 32s linear infinite; }
.logo-track img { height: 44px; width: auto; max-width: 200px; object-fit: contain; filter: grayscale(1) contrast(0.9); opacity: 0.75; }
.logo-track span { display: flex; align-items: center; flex: 0 0 auto; }
.logo-track span:hover img { filter: none; opacity: 1; }
.logo-marquee:hover .logo-track { animation-play-state: paused; }
@keyframes marquee { to { transform: translateX(-50%); } }

.grid-2 { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(1.5rem, 4vw, 3.4rem); align-items: center; }
.bento {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.1rem;
    align-items: stretch;
}
.bento .card {
    grid-column: auto;
    display: flex;
    flex-direction: column;
    height: 100%;
}
.bento .card p { flex: 1; margin-bottom: 0; }
.bento .card .btn { margin-top: 1rem; align-self: flex-start; }
.service-box {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: var(--cream);
    border: 1px solid var(--line);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}
.service-box__item {
    grid-column: span 1;
    display: flex;
    align-items: flex-start;
    gap: 1.15rem;
    margin: 0;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    border-bottom: 1px solid var(--line);
}
.service-box__item.is-full { grid-column: 1 / -1; }
.service-box__item:not(.is-full) + .service-box__item:not(.is-full) {
    border-left: 1px solid var(--line);
}
.service-box__item:last-child { border-bottom: 0; }
.service-box .card:hover {
    transform: none;
    box-shadow: none;
    background: var(--sand);
    border-color: transparent;
}
.service-box__copy { min-width: 0; }
.service-box__copy p { margin-bottom: 0; }
.service-box__copy .btn { margin-top: 1rem; }
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.15rem; align-items: stretch; }
.card {
    background: var(--cream); border: 1px solid var(--line); border-radius: var(--radius);
    padding: 1.45rem; box-shadow: var(--shadow-sm);
    transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s;
}
.card--product {
    padding: 0;
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow: hidden;
}
.card--product__media {
    background: var(--navy);
    display: grid;
    place-items: center;
    padding: 1rem 1rem 0;
    min-height: 210px;
}
.card--product__media img {
    width: 100%;
    height: 210px;
    object-fit: contain;
}
.media-frame--art {
    background: var(--navy);
    display: grid;
    place-items: center;
    padding: 1.1rem;
}
.media-frame--art img {
    width: 100%;
    height: auto;
    min-height: 0;
    object-fit: contain;
}
.card--product__body {
    padding: 1.25rem 1.3rem 1.4rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}
.card--product__body p { color: var(--muted); }
.card--product .checklist { flex: 1; }
.card--product .card__action { margin-top: auto; padding-top: 1.1rem; }
.card--product .card__action .btn { width: 100%; }
.card:hover { transform: translateY(-8px); box-shadow: var(--shadow); border-color: transparent; }
.card:hover .card__icon {
    background-image: var(--grad);
    background-size: 200% 1px;
    background-position: 100%;
}
.service-box__item {
    border: 0;
    border-radius: 0;
    box-shadow: none;
    border-bottom: 1px solid var(--line);
}
.service-box__item:hover {
    transform: none;
    box-shadow: none;
    background: var(--sand);
    border-color: transparent;
    border-bottom-color: var(--line);
}
.card__icon {
    width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center;
    background: var(--navy); color: var(--white); margin-bottom: 1rem;
}
.card__icon svg { width: 26px; height: 26px; }
.card h3 { font-size: 1.2rem; margin-bottom: 0.35rem; }
.media-frame { border-radius: 28px; overflow: hidden; box-shadow: var(--shadow); position: relative; }
.media-frame img { width: 100%; height: 100%; object-fit: cover; min-height: 340px; }
.media-frame--scene {
    background: linear-gradient(155deg, #061C3E 0%, #0c2d5e 58%, #143f7a 100%);
    min-height: 340px;
    display: grid;
    place-items: center;
    padding: 1.15rem 1rem 1.35rem;
}
.media-frame--scene .svg-fx--about {
    width: 100%;
    height: auto;
    max-height: 400px;
}
.badge {
    position: absolute; left: 1.1rem; bottom: 1.1rem;
    background: var(--coral); color: var(--white);
    padding: 0.75rem 1rem 0.7rem; border-radius: 16px; font-weight: 800; font-family: var(--font-display);
    font-size: 2.1rem; line-height: 1; z-index: 2;
}
.badge small { display: block; font-weight: 600; font-size: 0.75rem; }
.tabs { display: flex; flex-wrap: wrap; gap: 0.45rem; margin: 1.2rem 0; }
.tab {
    border: 1px solid var(--line); background: var(--cream); color: var(--ink);
    border-radius: var(--radius-full); padding: 0.45rem 0.95rem; cursor: pointer; font-weight: 700;
}
.tab[aria-selected="true"] { background: var(--teal); color: var(--white); border-color: var(--teal); }
.tab-panel { display: none; }
.tab-panel.is-open { display: block; animation: rise .4s var(--ease); }
.timeline { display: grid; gap: 0; position: relative; padding-left: 1.4rem; }
.timeline::before {
    content: ""; position: absolute; left: 5px; top: 0.4rem; bottom: 0.4rem;
    width: 2px; background: linear-gradient(var(--teal), var(--coral));
}
.timeline-item {
    display: grid; grid-template-columns: 92px 1fr; gap: 1rem;
    position: relative; padding: 0.85rem 0 0.85rem 1.1rem;
}
.timeline-item::before {
    content: ""; position: absolute; left: -1.18rem; top: 1.25rem;
    width: 12px; height: 12px; border-radius: 50%;
    background: var(--cream); border: 3px solid var(--teal);
}
.timeline-year {
    font-family: var(--font-display); font-weight: 800; color: var(--teal-deep); font-size: 1.15rem;
}
.timeline-body { background: var(--cream); border-radius: var(--radius-sm); padding: 1rem 1.1rem; border: 1px solid var(--line); }
.timeline-body h3 { font-size: 1.12rem; margin-bottom: 0.25rem; }
.stats {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem;
}
.section--stats {
    background:
        radial-gradient(900px 280px at 8% 0%, rgba(92, 144, 215, .28), transparent 55%),
        radial-gradient(720px 260px at 100% 100%, rgba(255, 168, 0, .16), transparent 50%),
        var(--navy);
    color: var(--white);
}
.section--stats .kicker { color: var(--orange); }
.stats-intro { max-width: 46rem; margin-bottom: 2.2rem; }
.section--stats h2 {
    color: var(--white);
    font-size: clamp(2.05rem, 4.4vw, 3.55rem);
    max-width: 18ch;
    margin-bottom: 0.55rem;
}
.section--stats .stats-intro p { color: var(--frost); font-size: 1.08rem; }
.section--stats .stat {
    background: rgba(255, 255, 255, .07);
    border: 1px solid rgba(255, 255, 255, .14);
    color: var(--white);
}
.section--stats .stat b { color: var(--white); }
.section--stats .stat span { color: var(--frost); }
.stats-note { margin-top: 1.8rem; color: var(--frost); }
.stats-note a { color: var(--white); text-decoration: underline; text-underline-offset: 3px; }
.stats-note a:hover { color: var(--orange); }
.stat {
    text-align: left; background: var(--grey); color: var(--white);
    border-radius: 18px; padding: 1.35rem 1.25rem;
}
.stat b { display: block; font-family: var(--font-display); font-size: clamp(1.8rem, 3vw, 2.6rem); color: var(--sky); }
.stat span { color: var(--sky); font-size: 0.92rem; }
.quote {
    margin: 0;
    background: var(--cream);
    border-radius: var(--radius);
    padding: 1.5rem;
    border: 1px solid var(--line);
    box-shadow: var(--shadow-sm);
    position: relative;
}
.quote p { color: var(--muted); font-size: 1.05rem; overflow-wrap: break-word; }
.quote footer {
    display: flex; align-items: center; gap: 0.85rem;
    margin-top: 1.2rem; font-weight: 800; color: var(--ink);
}
.quote footer strong { display: block; }
.quote footer span span { display: block; font-weight: 600; color: var(--muted); font-size: 0.92rem; }
.quote__mark {
    width: 46px; height: 46px; border-radius: 12px;
    display: grid; place-items: center;
    background: var(--navy); color: var(--white);
    margin-bottom: 1rem;
}
.quote__mark svg { width: 22px; height: 22px; }
.quote__avatar {
    width: 46px; height: 46px; border-radius: 50%;
    display: grid; place-items: center; flex: 0 0 auto;
    background: var(--navy); color: var(--white);
    font-family: var(--font-display); font-weight: 800; font-size: 0.85rem;
}
.stars { color: var(--coral); letter-spacing: 0.1em; margin-bottom: 0.6rem; }
.section--testimonials { background:
    radial-gradient(700px 220px at 8% 12%, rgba(92, 144, 215, .10), transparent 60%),
    radial-gradient(640px 240px at 92% 88%, rgba(255, 168, 0, .08), transparent 55%),
    var(--sand);
}
.section--testimonials-page { padding-top: 2.4rem; }
.testimonial-slider {
    max-width: 860px; margin: 0 auto;
}
.testimonial-slider__stage {
    background: var(--grey);
    color: var(--sky);
    border-radius: 24px;
    padding: 0;
    box-shadow: var(--shadow);
    overflow: hidden;
    position: relative;
    transition: height .5s var(--ease);
}
.testimonial-slider__stage .quote--slide {
    display: block;
    position: absolute;
    left: 0; right: 0; top: 0;
    background: transparent; border: 0; box-shadow: none;
    padding: clamp(1.6rem, 4vw, 2.8rem);
    margin: 0;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(12px);
    transition: opacity .45s var(--ease), transform .45s var(--ease), visibility .45s;
}
.testimonial-slider__stage .quote--slide.is-on {
    position: relative;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
}
@keyframes quoteIn {
    from { opacity: 0; transform: translateY(14px); }
    to { opacity: 1; transform: none; }
}
.testimonial-slider__stage .quote p {
    color: var(--frost);
    font-size: clamp(1.12rem, 2vw, 1.45rem);
    line-height: 1.55;
    font-weight: 600;
}
.testimonial-slider__stage .quote footer { color: var(--white); }
.testimonial-slider__stage .quote footer span span { color: var(--sky); }
.testimonial-slider__stage .quote__mark { background: var(--navy); color: var(--white); }
.testimonial-slider__stage .quote__avatar { background: var(--navy); color: var(--white); }
.testimonial-slider__tools {
    display: flex; align-items: center; justify-content: center; gap: 0.9rem;
    margin-top: 1.35rem;
}
.slider-btn {
    width: 46px; height: 46px; border-radius: 50%;
    border: 1px solid var(--line); background: var(--cream); color: var(--ink);
    display: grid; place-items: center; cursor: pointer;
    transition: background .2s, color .2s, border-color .2s, transform .2s;
}
.slider-btn svg { width: 18px; height: 18px; }
.slider-btn:hover { background: var(--teal); color: var(--white); border-color: var(--teal); transform: translateY(-1px); }
.slider-dots { display: flex; gap: 0.45rem; }
.slider-dot {
    width: 9px; height: 9px; padding: 0; border: 0; border-radius: 999px;
    background: var(--track); cursor: pointer;
}
.slider-dot.is-on { width: 28px; background: var(--coral); }
.testimonial-more { margin: 2rem 0 0; }
.testimonial-board {
    display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.15rem;
    margin-top: 3rem;
}
.quote--card { padding: 1.45rem 1.5rem 1.55rem; }
.quote--card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: transparent; }
.quote--card { transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s; }
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.35rem; }
.team-grid.three { grid-template-columns: repeat(3, 1fr); }
.team-grid--leads {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 860px;
    margin: 0 auto 1.75rem;
    gap: 1.5rem;
}
.person--lead {
    border-color: rgba(255, 168, 0, 0.55);
    box-shadow: var(--shadow);
}
.person__badge {
    display: inline-block;
    margin: 0 0 0.45rem;
    padding: 0.22rem 0.65rem;
    border-radius: 999px;
    background: var(--navy);
    color: var(--orange);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}
.person {
    background: var(--cream); border-radius: var(--radius); overflow: hidden;
    border: 1px solid var(--line); box-shadow: var(--shadow-sm);
    display: flex; flex-direction: column;
}
.person__photo {
    display: block; width: 100%; padding: 0; border: 0; background: var(--photo-wash);
    cursor: pointer; aspect-ratio: 4 / 5; overflow: hidden;
}
.person__photo img, .person img {
    width: 100%; height: 100%; object-fit: cover; object-position: top;
    transition: transform .45s var(--ease);
}
.person__photo:hover img, .person__photo:focus-visible img { transform: scale(1.04); }
.person__body {
    padding: 1rem 1.1rem 1.2rem;
    display: flex; flex-direction: column; flex: 1;
}
.person h3 { margin-bottom: 0.2rem; font-size: 1.08rem; }
.person__excerpt { color: var(--muted); font-size: 0.92rem; margin-bottom: 0.95rem; }
.person__actions {
    display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: auto;
}
.person__actions .btn { padding: 0.55rem 0.85rem; font-size: 0.82rem; }
.role { color: var(--teal); font-weight: 800; font-size: 0.95rem; margin-bottom: 0.7rem; }
.person__links { display: flex; gap: 0.6rem; margin-top: 0.8rem; }
.person__links a { width: 36px; height: 36px; border-radius: 50%; display: grid; place-items: center; background: var(--navy); color: var(--white); }
.person__links a:hover { background-image: var(--grad); background-size: 200% 1px; background-position: 100%; color: var(--white); }
.person__links svg { width: 16px; height: 16px; }
.page-hero {
    padding: clamp(6.6rem, 12vw, 8.4rem) 0 1.8rem;
    background:
        radial-gradient(900px 220px at 90% -20%, rgba(92, 144, 215, .18), transparent 60%),
        var(--sand);
}
.page-hero h1 { font-size: clamp(2.1rem, 4.4vw, 3.4rem); margin: 0; }
.page-hero .lede { max-width: 46ch; color: var(--muted); margin: 0.7rem 0 0; }
.crumbs { color: var(--muted); margin-top: 0.55rem; font-size: 0.95rem; }
.crumbs a { color: var(--teal); }
.form {
    display: grid; grid-template-columns: 1fr 1fr; gap: 1rem;
    background: var(--cream); padding: 1.5rem; border-radius: 24px;
    box-shadow: var(--shadow); border: 1px solid var(--line);
}
.form .full { grid-column: 1 / -1; }
.form .alert,
.form .form-status { grid-column: 1 / -1; width: 100%; }
.form label { display: block; font-weight: 800; color: var(--ink); margin-bottom: 0.35rem; }
.form input, .form select, .form textarea {
    width: 100%; border: 1px solid var(--line); border-radius: 12px;
    padding: 0.8rem 0.9rem; background: var(--white);
}
.form textarea { min-height: 140px; resize: vertical; }
.hp { position: absolute; left: -9999px; height: 0; overflow: hidden; }
.alert {
    padding: 0.9rem 1rem; border-radius: 12px; margin-bottom: 1rem; font-weight: 700;
    overflow-wrap: anywhere; word-break: break-word; line-height: 1.45;
}
.form-actions .form-status { margin: 0.85rem 0 0; }
.alert--ok { background: var(--teal-soft); color: var(--teal-deep); }
.alert--err { background: var(--coral-soft); color: var(--coral-deep); }
.form.is-busy { opacity: 0.78; }
.form.is-busy .btn { cursor: wait; }
.recaptcha-note { margin: 0.75rem 0 0; font-size: 0.78rem; font-weight: 600; color: var(--muted); }
.grecaptcha-badge { visibility: hidden; }
.contact-list { display: grid; gap: 1rem; }
.contact-item { display: flex; gap: 0.9rem; align-items: flex-start; }
.contact-item span {
    width: 44px; height: 44px; border-radius: 12px;
    background: var(--navy); color: var(--white);
    display: grid; place-items: center; flex: 0 0 auto;
}
.contact-item svg { width: 20px; height: 20px; }
.acc-item h3, .acc-item h4 { margin: 0; }
.acc-item { border-bottom: 1px solid var(--line); }
.acc-item button {
    width: 100%; text-align: left; background: none; border: 0;
    padding: 1.05rem 2.2rem 1.05rem 0; font-weight: 800; color: var(--ink);
    cursor: pointer; position: relative;
}
.acc-item button::after {
    content: "+"; position: absolute; right: 0; top: 1rem; color: var(--coral); font-size: 1.3rem;
    transition: transform .35s var(--ease);
}
.acc-item button[aria-expanded="true"]::after { transform: rotate(45deg); }
.acc-panel {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows .4s var(--ease);
}
.acc-panel__inner { overflow: hidden; min-height: 0; }
.acc-panel__inner p { padding: 0 0 1rem; color: var(--muted); margin: 0; }
.acc-item.is-open .acc-panel { grid-template-rows: 1fr; }
.video-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
.video-grid iframe { width: 100%; aspect-ratio: 16/9; border: 0; border-radius: 16px; }
.job {
    display: flex; justify-content: space-between; gap: 1rem; align-items: center;
    padding: 1.15rem 1.2rem; margin-bottom: 0.7rem;
    background: var(--cream); border: 1px solid var(--line); border-radius: 18px;
}
.job h2 { font-size: 1.25rem; margin: 0 0 0.3rem; }
.meta { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.chip { background: var(--navy); color: var(--white); border-radius: 999px; padding: 0.2rem 0.7rem; font-size: 0.82rem; font-weight: 800; }
.prose h2 { margin-top: 1.6rem; }
.prose ul { padding-left: 1.2rem; }
.prose li { margin-bottom: 0.4rem; }
.cta-band { background: var(--navy); }
.cta-band__inner { display: flex; justify-content: space-between; align-items: center; gap: 1rem; padding: 1.55rem 0; flex-wrap: wrap; }
.cta-band h2 { margin: 0; color: var(--white); font-size: clamp(1.3rem, 2.5vw, 1.85rem); }
.footer {
    background:
        radial-gradient(900px 280px at 8% 0%, rgba(92, 144, 215, .26), transparent 55%),
        radial-gradient(760px 240px at 100% 110%, rgba(255, 168, 0, .12), transparent 48%),
        var(--navy);
    color: var(--white);
    padding: 3.5rem 0 0;
}
.footer h3 { color: var(--white); font-size: 1.15rem; }
.footer p { color: rgba(255, 255, 255, .88); }
.footer a { color: var(--white); }
.footer a:hover { color: var(--orange); }
.footer__grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr; gap: 2rem; padding-bottom: 2.5rem; }
.footer__social { display: flex; gap: 0.7rem; margin-top: 1rem; }
.footer__social a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,.12);
    color: var(--white);
}
.footer__social a:hover { background: var(--orange); color: var(--white); }
.footer__social svg {
    width: 16px;
    height: 16px;
    display: block;
    margin: 0;
    color: var(--white);
}
.footer p svg { width: 16px; height: 16px; display: inline-block; vertical-align: -3px; margin-right: 0.3rem; color: var(--white); }
.footer__bottom { background: transparent; border-top: 1px solid rgba(255,255,255,.16); }
.footer__bottom-inner { display: flex; justify-content: space-between; gap: 1rem; padding: 1rem 0; font-size: 0.92rem; flex-wrap: wrap; color: rgba(255,255,255,.88); }
.footer__bottom a { color: var(--white); }
.footer__bottom nav { display: flex; gap: 1.2rem; }
.checklist { list-style: none; padding: 0; margin: 1rem 0 0; }
.checklist li { display: flex; gap: 0.6rem; align-items: flex-start; margin-bottom: 0.55rem; }
.checklist svg { width: 18px; height: 18px; color: var(--teal); flex: 0 0 auto; margin-top: 0.2rem; }
.faq-tabs { display: flex; flex-wrap: wrap; gap: 0.45rem; margin-bottom: 1.4rem; }
.accent { color: var(--teal); }
.purpose-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.15rem;
}
.purpose-card {
    background: var(--cream);
    border: 1px solid var(--line);
    border-radius: 22px;
    padding: 1.5rem 1.55rem 1.6rem;
    box-shadow: var(--shadow-sm);
}
.purpose-card--wide { grid-column: 1 / -1; }
.purpose-card h3 { font-size: 1.35rem; }
.value-list { margin: 0.4rem 0 0; padding-left: 1.1rem; }
.value-list li { margin-bottom: 0.55rem; color: var(--muted); }
.value-list strong { color: var(--ink); }
.about-story { align-items: start; }
.member-page {
    display: grid;
    grid-template-columns: 0.78fr 1.22fr;
    gap: clamp(1.5rem, 4vw, 3rem);
    align-items: start;
}
.member-page__photo {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow);
    background: var(--photo-wash);
}
.member-page__photo img { width: 100%; height: auto; object-fit: cover; aspect-ratio: 4 / 5; object-position: top; }
.member-modal {
    width: min(860px, calc(100% - 2rem));
    max-height: min(90vh, 860px);
    overflow: auto;
    border: 0;
    border-radius: 24px;
    padding: 0;
    box-shadow: var(--shadow);
    opacity: 0;
    transform: translateY(18px) scale(0.96);
    transition: opacity .38s var(--ease), transform .38s var(--ease), overlay .38s allow-discrete, display .38s allow-discrete;
}
.member-modal[open] {
    opacity: 1;
    transform: none;
}
@starting-style {
    .member-modal[open] {
        opacity: 0;
        transform: translateY(18px) scale(0.96);
    }
}
.member-modal::backdrop {
    background: rgba(6, 28, 62, 0);
    transition: background .38s var(--ease), overlay .38s allow-discrete, display .38s allow-discrete;
}
.member-modal[open]::backdrop { background: rgba(6, 28, 62, .62); }
@starting-style {
    .member-modal[open]::backdrop { background: rgba(6, 28, 62, 0); }
}
@media (prefers-reduced-motion: reduce) {
    .member-modal, .member-modal::backdrop {
        transition: none;
        transform: none;
        opacity: 1;
    }
}
.member-modal__bar { display: flex; justify-content: flex-end; padding: 0.7rem 0.8rem 0; }
.member-modal__close {
    width: 40px; height: 40px; border: 0; border-radius: 50%;
    background: var(--sand); color: var(--ink); font-size: 1.5rem; line-height: 1; cursor: pointer;
}
.member-modal__layout {
    display: grid;
    grid-template-columns: 0.72fr 1.28fr;
    gap: 1.4rem;
    padding: 0 1.4rem 1.5rem;
    align-items: start;
}
.member-modal__photo-wrap {
    border-radius: 18px;
    overflow: hidden;
    background: var(--photo-wash);
    aspect-ratio: 4 / 5;
}
.member-modal__photo {
    width: 100%; height: 100%; object-fit: cover; object-position: top; display: block;
}
.member-modal__more { margin-top: 1.1rem; }
#member-modal-bio { white-space: pre-wrap; }
#member-modal-role { white-space: pre-line; }

@media (max-width: 1280px) {
    .nav-toggle { display: block; z-index: 90; }
    .nav--desktop { display: none; }
    .header__cta { display: none; }
    .nav-backdrop {
        display: block;
        position: fixed;
        inset: 0;
        z-index: 80;
        background: rgba(6, 28, 62, 0.58);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: opacity .4s var(--ease), visibility .4s var(--ease);
    }
    body.is-nav-open .nav-backdrop {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }
    .nav-drawer {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        z-index: 85;
        width: min(400px, 88vw);
        background: var(--white);
        justify-content: flex-start;
        padding: 1rem 1.15rem 1.25rem;
        box-shadow: -24px 0 60px rgba(6, 28, 62, 0.2);
        transform: translateX(100%);
        transition: transform .45s var(--ease);
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        pointer-events: none;
    }
    body.is-nav-open .nav-drawer {
        transform: translateX(0);
        pointer-events: auto;
    }
    .nav-drawer__head {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 0.7rem;
        padding-bottom: 0.85rem;
        border-bottom: 1px solid var(--line);
        flex: 0 0 auto;
    }
    .nav-drawer__head p {
        margin: 0;
        font-family: var(--font-display);
        font-weight: 800;
        letter-spacing: -0.03em;
        font-size: 1.2rem;
    }
    .nav-close {
        width: 40px;
        height: 40px;
        border: 0;
        border-radius: 50%;
        background: var(--sand);
        color: var(--ink);
        font-size: 1.5rem;
        line-height: 1;
        cursor: pointer;
    }
    .nav-drawer .nav__list { flex-direction: column; gap: 0; flex: 0 0 auto; }
    .nav-drawer .nav__item > a {
        padding: 0.58rem 0.7rem;
        font-size: 1.02rem;
        color: var(--ink);
        background: transparent;
    }
    .nav-drawer .nav__item.is-active > a { background: var(--teal-soft); color: var(--teal-deep); }
    .nav-drawer .nav__caret { display: none; }
    .nav-drawer .nav__sub {
        position: static;
        display: block;
        box-shadow: none;
        padding: 0 0 0.2rem 0.75rem;
        border: 0;
        background: transparent;
    }
    .nav-drawer .nav__sub a { padding: 0.38rem 0.65rem; font-weight: 600; color: var(--muted); }
    .nav-drawer__cta { width: 100%; margin: 0.85rem 0 0; flex: 0 0 auto; }
    .nav-drawer__social {
        display: flex;
        gap: 0.55rem;
        margin-top: 1rem;
        padding-top: 1rem;
        border-top: 1px solid var(--line);
        flex: 0 0 auto;
    }
    .nav-drawer__social a {
        width: 40px;
        height: 40px;
        margin: 0;
        border-radius: 50%;
        display: grid;
        place-items: center;
        background: var(--navy);
        color: var(--white);
    }
    .nav-drawer__social a:hover { background: var(--orange); color: var(--white); }
    .nav-drawer__social svg { width: 16px; height: 16px; margin: 0; color: inherit; }
    body.is-nav-open .nav-drawer .nav__list > .nav__item,
    body.is-nav-open .nav-drawer__cta,
    body.is-nav-open .nav-drawer__social {
        animation: drawerIn .35s var(--ease) both;
    }
    body.is-nav-open .nav-drawer .nav__list > .nav__item:nth-child(1) { animation-delay: .04s; }
    body.is-nav-open .nav-drawer .nav__list > .nav__item:nth-child(2) { animation-delay: .07s; }
    body.is-nav-open .nav-drawer .nav__list > .nav__item:nth-child(3) { animation-delay: .1s; }
    body.is-nav-open .nav-drawer .nav__list > .nav__item:nth-child(4) { animation-delay: .13s; }
    body.is-nav-open .nav-drawer .nav__list > .nav__item:nth-child(5) { animation-delay: .16s; }
    body.is-nav-open .nav-drawer .nav__list > .nav__item:nth-child(6) { animation-delay: .19s; }
    body.is-nav-open .nav-drawer .nav__list > .nav__item:nth-child(7) { animation-delay: .22s; }
    body.is-nav-open .nav-drawer .nav__list > .nav__item:nth-child(8) { animation-delay: .25s; }
    body.is-nav-open .nav-drawer__cta { animation-delay: .28s; }
    body.is-nav-open .nav-drawer__social { animation-delay: .32s; }
    @keyframes drawerIn {
        from { opacity: 0; transform: translateX(16px); }
        to { opacity: 1; transform: none; }
    }
    body.is-nav-open { overflow: hidden; }
    body.is-nav-open .nav-toggle span { background: var(--ink); }
    .bento { grid-template-columns: repeat(2, 1fr); }
    .cards, .team-grid, .team-grid.three, .team-grid--leads, .stats, .testimonial-board, .purpose-grid { grid-template-columns: repeat(2, 1fr); }
    .purpose-card--wide { grid-column: 1 / -1; }
    .footer__grid { grid-template-columns: 1fr 1fr; }
    .hero__layout { grid-template-columns: 1fr; padding-top: 7.4rem; }
    .member-page, .member-modal__layout { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
    .grid-2, .cards, .team-grid, .team-grid.three, .team-grid--leads, .stats, .video-grid, .form, .footer__grid, .job, .bento, .testimonial-board, .service-box, .purpose-grid, .member-page {
        grid-template-columns: 1fr;
        flex-direction: column;
        align-items: flex-start;
    }
    .bento .card, .service-box__item, .service-box__item.is-full, .purpose-card--wide { grid-column: auto; }
    .service-box__item:not(.is-full) + .service-box__item:not(.is-full) { border-left: 0; }
    .hero { min-height: auto; }
    .hero--type { text-align: center; }
    .hero__copy { margin-inline: auto; }
    .hero__status, .hero__proof { justify-content: center; }
    .hero__lede { margin-inline: auto; font-size: 1rem; }
    .hero__headline { font-size: clamp(2.15rem, 8.4vw, 2.6rem); }
    .hero__line { justify-content: center; flex-wrap: wrap; }
    .hero__rotate-wrap { width: 100%; align-items: center; }
    .hero__rotate { left: 50%; transform: translateX(-50%); }
    .hero__actions { flex-direction: column; align-items: center; }
    .hero__grid { background-size: 96px 96px; }
    .header__tools .header__cta { display: none; }
    .logo { margin-bottom: -18px; }
    .logo__img { height: 96px; }
    .header.is-condensed .logo { margin-bottom: 0; }
    .header.is-condensed .logo__img { height: 52px; }
}
@media (max-width: 360px) {
    .logo__img { height: 82px; width: auto; }
    .hero__headline { font-size: 2.6rem; }
}

/* Founders section */
.founders {
    background: var(--color-light);
    font-family: var(--font-hero);
}
.founders h2,
.founders__name,
.founders__quote p,
.founders__co-name,
.founders__eyebrow,
.founders__team-copy h3 {
    font-family: var(--font-hero);
}
.founders__head { max-width: 640px; margin-bottom: 2.4rem; }
.founders__eyebrow {
    margin: 0 0 0.55rem;
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--color-primary);
}
.founders h2 {
    font-family: var(--font-display);
    font-size: 42px;
    font-weight: 800;
}
.founders__intro {
    max-width: 640px;
    color: var(--muted);
    margin: 0;
}
.founders__founder {
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 56px;
    align-items: center;
}
.founders__portrait {
    width: 380px;
    height: 460px;
    max-width: 100%;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--line);
    background: var(--photo-wash);
}
.founders__portrait picture,
.founders__portrait img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
}
.founders__message { min-width: 0; }
.founders__quote-mark {
    display: block;
    width: 40px;
    height: auto;
    color: var(--color-accent);
    opacity: 0.25;
    margin-bottom: 0.7rem;
}
.founders__quote { margin: 0 0 1.15rem; }
.founders__quote p {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 600;
    line-height: 1.55;
    color: var(--color-primary);
    margin: 0;
}
.founders__name {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 800;
    margin: 0 0 0.2rem;
}
.founders__role {
    font-size: 15px;
    font-weight: 600;
    color: var(--color-primary);
    margin: 0 0 1rem;
}
.founders__chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
    list-style: none;
    margin: 0;
    padding: 0;
}
.founders__chips li {
    background: var(--cream);
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 0.32rem 0.85rem;
    font-size: 13px;
    font-weight: 600;
    color: var(--color-primary);
}
.founders__co {
    display: flex;
    align-items: center;
    gap: 28px;
    margin-top: 44px;
    padding: 28px 32px;
    background: var(--cream);
    border: 1px solid var(--line);
    border-radius: 16px;
}
.founders__co-photo {
    width: 110px;
    height: 110px;
    flex: 0 0 110px;
    border-radius: 999px;
    overflow: hidden;
    background: var(--photo-wash);
}
.founders__co-photo picture,
.founders__co-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 18%;
}
.founders__co-body { min-width: 0; }
.founders__co-name {
    font-family: var(--font-display);
    font-size: 19px;
    font-weight: 800;
    margin: 0 0 0.2rem;
}
.founders__co-role {
    font-size: 14px;
    font-weight: 600;
    color: var(--color-primary);
    margin: 0 0 0.55rem;
}
.founders__co-text {
    max-width: 720px;
    color: var(--muted);
    margin: 0;
}
.founders__team {
    display: flex;
    align-items: center;
    gap: 28px;
    margin-top: 40px;
    padding: 30px 36px;
    background: var(--color-primary);
    border-radius: 16px;
}
.founders__avatars {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}
.founders__avatar {
    width: 52px;
    height: 52px;
    margin-left: -14px;
    border-radius: 999px;
    border: 2px solid rgba(6, 28, 62, 0.22);
    display: grid;
    place-items: center;
    font-family: var(--font-hero);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.02em;
    color: var(--white);
    background-color: var(--orange);
    background-image: var(--grad);
    background-size: 200% 100%;
    background-position: 0% 50%;
    box-shadow: 0 8px 18px rgba(255, 168, 0, 0.28);
}
.founders__avatar:first-child { margin-left: 0; }
.founders__avatar:nth-child(2) { background-position: 28% 50%; }
.founders__avatar:nth-child(3) { background-position: 52% 50%; }
.founders__avatar:nth-child(4) { background-position: 76% 50%; }
.founders__avatar:nth-child(5) { background-position: 100% 50%; }
.founders__team-copy { min-width: 0; }
.founders__team-copy h3 {
    font-family: var(--font-display);
    font-size: 17px;
    font-weight: 600;
    color: var(--white);
    margin: 0 0 0.35rem;
}
.founders__team-copy p {
    margin: 0;
    color: var(--frost);
}
@media (max-width: 1024px) {
    .founders h2 { font-size: 36px; }
    .founders__founder {
        grid-template-columns: 1fr;
        gap: 1.75rem;
    }
    .founders__portrait {
        width: min(320px, 100%);
        height: 387px;
    }
}
@media (max-width: 768px) {
    .founders h2 { font-size: 30px; }
    .founders__quote p { font-size: 18px; }
    .founders__founder { gap: 1.35rem; }
    .founders__co {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 1.4rem 1.25rem;
        gap: 1.1rem;
    }
    .founders__co-text { margin-inline: auto; }
    .founders__chips { justify-content: center; }
    .founders__message { text-align: center; }
    .founders__quote-mark { margin-inline: auto; }
    .founders__portrait { margin-inline: auto; }
    .founders__team {
        flex-direction: column;
        align-items: flex-start;
        padding: 1.4rem 1.25rem;
        gap: 1.15rem;
    }
}
@media (max-width: 360px) {
    .founders__chips { justify-content: flex-start; }
    .founders__avatar { width: 46px; height: 46px; font-size: 0.64rem; }
}
