:root {
    --ink: #0c0c0c;
    --ink-soft: #3f3f46;
    --paper: #ffffff;
    --soft: #f4f4f5;
    --line: #e4e4e7;
    --muted: #71717a;
    --accent: #0c0c0c;
    --white: #ffffff;
    --serif: "Newsreader", Georgia, "Times New Roman", serif;
    --sans: "Figtree", "Trebuchet MS", sans-serif;
    --pad-x: clamp(1.15rem, 4vw, 4rem);
    --pad-y: clamp(3.25rem, 7vw, 6rem);
    --header-h: 4.25rem;
    --ease: ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ink);
    background: var(--paper);
    font-family: var(--sans);
    font-size: 1rem;
    line-height: 1.65;
    letter-spacing: -0.01em;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

body.nav-open {
    overflow: hidden;
}

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

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

button,
a {
    -webkit-tap-highlight-color: transparent;
}

:focus-visible {
    outline: 2px solid var(--ink);
    outline-offset: 3px;
}

.skip-link {
    position: absolute;
    left: 1rem;
    top: -4rem;
    z-index: 100;
    padding: 0.7rem 1rem;
    background: var(--ink);
    color: var(--white);
    font-weight: 700;
    font-size: 0.88rem;
}

.skip-link:focus {
    top: 1rem;
}

.site-header {
    position: fixed;
    z-index: 40;
    inset: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    min-height: var(--header-h);
    padding: 0.75rem var(--pad-x);
    color: var(--white);
    transition: background 180ms var(--ease), color 180ms var(--ease), border-color 180ms var(--ease);
}

.site-header.is-scrolled,
.site-header.is-open {
    color: var(--ink);
    background: rgba(255, 255, 255, 0.96);
    border-bottom: 1px solid var(--line);
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
}

.brand__mark {
    display: grid;
    width: 36px;
    aspect-ratio: 1;
    place-items: center;
    border: 1.5px solid currentColor;
    font-family: var(--sans);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.04em;
}

.brand__text {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: clamp(0.85rem, 1.8vw, 1.5rem);
    font-size: 0.84rem;
    font-weight: 600;
}

.site-nav a {
    position: relative;
    opacity: 0.72;
    transition: opacity 160ms var(--ease);
}

.site-nav a::after {
    position: absolute;
    left: 0;
    right: 0;
    bottom: -0.2rem;
    height: 1px;
    background: currentColor;
    content: "";
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 200ms var(--ease);
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a.is-active {
    opacity: 1;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after,
.site-nav a.is-active::after {
    transform: scaleX(1);
}

.nav-toggle {
    display: none;
    width: 42px;
    aspect-ratio: 1;
    border: 1.5px solid currentColor;
    color: inherit;
    background: transparent;
    cursor: pointer;
}

.nav-toggle span {
    display: block;
    width: 16px;
    height: 1.5px;
    margin: 4px auto;
    background: currentColor;
    transition: transform 180ms var(--ease), opacity 180ms var(--ease);
}

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

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

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

.hero {
    position: relative;
    display: grid;
    align-items: end;
    min-height: 90svh;
    overflow: hidden;
    padding: calc(var(--header-h) + 2.25rem) var(--pad-x) clamp(2.5rem, 5vw, 4rem);
    color: var(--white);
}

.hero__image,
.hero__veil {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.hero__image {
    object-fit: cover;
    object-position: 55% center;
    transform: scale(1.06);
    animation: settleImage 1.8s var(--ease) forwards;
}

.hero__veil {
    background:
        linear-gradient(100deg, rgba(0, 0, 0, 0.88) 0%, rgba(0, 0, 0, 0.55) 48%, rgba(0, 0, 0, 0.28) 100%),
        linear-gradient(0deg, rgba(0, 0, 0, 0.7) 0%, transparent 45%);
}

.hero__content {
    position: relative;
    z-index: 1;
    width: min(640px, 100%);
    animation: riseSoft 900ms var(--ease) 120ms both;
}

.hero__brand {
    margin: 0;
    font-family: var(--serif);
    font-size: clamp(2.6rem, 5.5vw, 4.25rem);
    font-weight: 600;
    line-height: 1.05;
    letter-spacing: -0.03em;
}

.hero__roles {
    margin: 0.95rem 0 0;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.82rem;
    font-weight: 600;
}

.hero__intro {
    max-width: 30rem;
    margin: 0.75rem 0 0;
    color: rgba(255, 255, 255, 0.9);
    font-size: clamp(0.98rem, 1.5vw, 1.1rem);
    font-weight: 500;
    line-height: 1.55;
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
    margin-top: 1.85rem;
}

.button {
    display: inline-flex;
    min-height: 46px;
    align-items: center;
    justify-content: center;
    border: 1.5px solid transparent;
    padding: 0.75rem 1.15rem;
    font-size: 0.82rem;
    font-weight: 700;
    transition: background 160ms var(--ease), color 160ms var(--ease), border-color 160ms var(--ease), transform 180ms var(--ease);
}

.button:hover,
.button:focus-visible {
    transform: translateY(-2px);
}

.button--primary {
    color: var(--white);
    background: var(--ink);
}

.button--primary:hover,
.button--primary:focus-visible {
    background: #27272a;
}

.hero .button--primary {
    color: var(--ink);
    background: var(--white);
}

.hero .button--primary:hover,
.hero .button--primary:focus-visible {
    background: #e4e4e7;
}

.button--ghost {
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.55);
    background: transparent;
}

.button--secondary {
    color: var(--ink);
    border-color: var(--line);
    background: transparent;
}

.button--secondary:hover,
.button--secondary:focus-visible {
    border-color: var(--ink);
}

.eyebrow {
    margin: 0 0 0.65rem;
    color: var(--muted);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

h2,
h3,
p {
    overflow-wrap: break-word;
}

h2 {
    margin: 0;
    font-family: var(--serif);
    font-size: clamp(1.55rem, 3vw, 2.35rem);
    font-weight: 600;
    line-height: 1.22;
    letter-spacing: -0.01em;
}

.headline-line {
    display: block;
    box-sizing: border-box;
    width: 100%;
    margin: 0;
    padding: 0;
    border: 0;
    text-align: left;
    text-indent: 0;
    letter-spacing: inherit;
}

.section {
    padding: var(--pad-y) var(--pad-x);
}

.section--soft {
    background: var(--soft);
}

.section--dark {
    color: var(--white);
    background: var(--ink);
}

.section--dark .eyebrow {
    color: #a1a1aa;
}

.section--dark h2 {
    color: var(--white);
}

.section__header {
    max-width: 40rem;
    margin-bottom: clamp(1.5rem, 3vw, 2.4rem);
}

.section__lede {
    max-width: 36rem;
    margin: 0.9rem 0 0;
    color: var(--ink-soft);
}

.mission-strip {
    padding-block: clamp(2.25rem, 4.5vw, 3.25rem);
    border-bottom: 1px solid var(--line);
}

.mission-strip__text {
    max-width: 44rem;
    margin: 0;
    font-family: var(--serif);
    font-size: clamp(1.15rem, 2.1vw, 1.55rem);
    font-weight: 500;
    line-height: 1.45;
    letter-spacing: -0.015em;
}

.about-layout,
.media-split {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
    gap: clamp(1.75rem, 4.5vw, 4rem);
    align-items: center;
}

.about-layout__photo,
.media-split__photo {
    margin: 0;
}

.about-layout__photo img,
.media-split__photo img {
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    object-position: center top;
    transition: transform 700ms var(--ease);
}

.about-layout__photo:hover img,
.media-split__photo:hover img {
    transform: scale(1.03);
}

.about-layout__copy,
.media-split__copy {
    display: grid;
    gap: 1rem;
    align-content: center;
    max-width: 34rem;
}

.media-split__copy {
    justify-self: center;
    text-align: center;
    justify-items: center;
    gap: 1.15rem;
}

.media-split__copy .eyebrow {
    margin-bottom: 0;
}

.media-split__copy h2 {
    max-width: 16em;
}

.media-split__copy p {
    max-width: 32rem;
}

.media-split__copy .button {
    width: auto;
    min-width: 12rem;
    margin-top: 0.35rem;
}

.about-layout__copy h2 {
    max-width: none;
}

.about-layout__copy p,
.media-split__copy p,
.connect p {
    margin: 0;
    color: var(--ink-soft);
}

.media-split__copy .headline-line {
    text-align: center;
}

.impact-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0;
    margin-bottom: 1.75rem;
    border-top: 1px solid var(--line);
}

.impact-grid article {
    padding: 1.25rem 1rem 0 0;
}

.impact-grid article:not(:first-child) {
    padding-left: 1rem;
    border-left: 1px solid var(--line);
}

.impact-grid strong {
    display: block;
    font-family: var(--serif);
    font-size: clamp(1.55rem, 2.6vw, 2.1rem);
    font-weight: 600;
    line-height: 1;
}

.impact-grid span {
    display: block;
    margin-top: 0.55rem;
    color: var(--muted);
    font-size: 0.9rem;
}

.achievement-rail,
.venture-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0;
    margin: 0;
    padding: 0;
    list-style: none;
    border-top: 1px solid var(--line);
}

.section--dark .achievement-rail {
    border-top-color: #27272a;
}

.achievement-rail li,
.venture-list li {
    display: grid;
    gap: 0.3rem;
    padding: 1.1rem 1rem 1.1rem 0;
    border-bottom: 1px solid var(--line);
}

.section--dark .achievement-rail li {
    border-bottom-color: #27272a;
}

.achievement-rail li:nth-child(even),
.venture-list li:nth-child(even) {
    padding-left: 1rem;
    border-left: 1px solid var(--line);
}

.section--dark .achievement-rail li:nth-child(even) {
    border-left-color: #27272a;
}

.achievement-rail span {
    color: var(--muted);
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.section--dark .achievement-rail span {
    color: #a1a1aa;
}

.achievement-rail strong,
.venture-list strong {
    font-size: 1.02rem;
    font-weight: 600;
    line-height: 1.4;
}

.venture-list span {
    color: var(--muted);
    font-size: 0.9rem;
}

.philosophy {
    display: grid;
    gap: 1.35rem;
    margin-bottom: 2.25rem;
}

.philosophy blockquote {
    margin: 0;
    padding-left: 1rem;
    border-left: 2px solid #52525b;
}

.philosophy blockquote p {
    margin: 0;
    font-family: var(--serif);
    font-size: clamp(1.1rem, 1.9vw, 1.4rem);
    font-weight: 500;
    line-height: 1.4;
}

.philosophy footer {
    margin-top: 0.6rem;
    color: #a1a1aa;
    font-size: 0.92rem;
}

.quotes {
    display: grid;
    gap: 1.35rem;
    padding-top: 1.35rem;
    border-top: 1px solid #27272a;
    outline: none;
}

.quote {
    display: none;
    margin: 0;
    gap: 0.85rem;
}

.quote.is-active {
    display: grid;
    animation: fadeQuote 420ms var(--ease) both;
}

.quote blockquote {
    max-width: 38rem;
    margin: 0;
    font-family: var(--serif);
    font-size: clamp(1.1rem, 2vw, 1.45rem);
    font-weight: 500;
    font-style: italic;
    line-height: 1.45;
}

.quote figcaption {
    color: #a1a1aa;
    font-size: 0.82rem;
    font-weight: 600;
}

.quote-controls {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.55rem;
}

.quote-controls button {
    min-height: 40px;
    border: 1px solid #3f3f46;
    padding: 0.4rem 0.8rem;
    color: var(--white);
    background: transparent;
    font: inherit;
    font-size: 0.78rem;
    font-weight: 700;
    cursor: pointer;
}

.quote-dots {
    display: flex;
    gap: 0.3rem;
}

.quote-dot {
    width: 10px;
    min-width: 10px;
    min-height: 10px;
    padding: 0;
    color: transparent;
    overflow: hidden;
}

.quote-dot.is-active {
    background: var(--white);
    border-color: var(--white);
}

.section--media {
    padding-bottom: 0;
}

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

.news-item {
    display: grid;
    grid-template-columns: minmax(130px, 200px) minmax(0, 1fr);
    gap: 1.15rem 1.35rem;
    align-items: start;
    padding: 1.35rem 0;
    border-bottom: 1px solid var(--line);
}

.news-item__media {
    margin: 0;
    overflow: hidden;
}

.news-item__media img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    object-position: center 12%;
}

.news-item__copy {
    display: grid;
    gap: 0.45rem;
}

.news-item time {
    color: var(--muted);
    font-size: 0.78rem;
    font-weight: 600;
}

.news-item h3 {
    margin: 0;
    max-width: 34ch;
    font-family: var(--serif);
    font-size: clamp(1.1rem, 1.8vw, 1.4rem);
    font-weight: 600;
    line-height: 1.3;
}

.news-item h3 a:hover,
.news-item h3 a:focus-visible {
    text-decoration: underline;
    text-underline-offset: 0.12em;
}

.news-item p {
    max-width: 40rem;
    margin: 0;
    color: var(--ink-soft);
}

.news-item__link {
    font-size: 0.82rem;
    font-weight: 700;
}

.news-empty {
    margin: 1rem 0 0;
    color: var(--muted);
}

.news-more {
    margin: 1.5rem 0 0;
}

.faq-list {
    display: grid;
    gap: 0;
    max-width: 46rem;
    border-top: 1px solid var(--line);
}

.faq-item {
    padding: 1rem 0;
    border-bottom: 1px solid var(--line);
}

.faq-item summary {
    cursor: pointer;
    font-family: var(--serif);
    font-size: clamp(1.05rem, 1.7vw, 1.25rem);
    font-weight: 600;
    line-height: 1.35;
    list-style: none;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: "+";
    float: right;
    color: var(--muted);
    font-family: var(--sans);
    font-weight: 700;
}

.faq-item[open] summary::after {
    content: "–";
}

.faq-item p {
    margin: 0.75rem 0 0;
    color: var(--ink-soft);
    max-width: 40rem;
}

.faq-item a {
    text-decoration: underline;
    text-underline-offset: 0.14em;
}

.connect {
    max-width: 42rem;
    padding-top: 1.75rem;
    border-top: 1px solid var(--line);
}

.connect h2 {
    max-width: none;
    margin-bottom: 0.9rem;
}

.connect__email {
    display: inline-block;
    margin-top: 0.9rem;
    color: var(--muted);
    font-size: 0.98rem;
    font-weight: 500;
}

.connect__email:hover,
.connect__email:focus-visible {
    color: var(--ink);
    text-decoration: underline;
    text-underline-offset: 0.16em;
}

.connect__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    margin-top: 1.35rem;
}

.site-footer {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 0.7rem 1.25rem;
    padding: 1.25rem var(--pad-x);
    color: #a1a1aa;
    background: var(--ink);
}

.site-footer p,
.site-footer a {
    margin: 0;
    font-size: 0.88rem;
}

.site-footer a:hover,
.site-footer a:focus-visible {
    color: var(--white);
}

.page-inner .site-header {
    color: var(--ink);
    background: rgba(255, 255, 255, 0.96);
    border-bottom: 1px solid var(--line);
}

.inner-main {
    padding-top: calc(var(--header-h) + 1.25rem);
}

.page-title {
    margin: 0;
    font-family: var(--serif);
    font-size: clamp(1.55rem, 3vw, 2.35rem);
    font-weight: 600;
    line-height: 1.18;
    letter-spacing: -0.02em;
}

.page-lede {
    max-width: 36rem;
    margin: 0.85rem 0 0;
    color: var(--ink-soft);
}

.section--news-page .section__header {
    max-width: 42rem;
    margin-bottom: 1.75rem;
}

.article {
    max-width: 42rem;
    margin: 0 auto;
    padding: clamp(1.35rem, 3.5vw, 2.25rem) var(--pad-x) var(--pad-y);
}

.article__header {
    display: grid;
    gap: 0.65rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid var(--line);
}

.article__header time,
.article__byline {
    color: var(--muted);
    font-size: 0.86rem;
}

.article__media {
    margin: 1.35rem 0 0;
}

.article__media img {
    width: 100%;
    max-height: 480px;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    object-position: center 12%;
}

.article__body {
    display: grid;
    gap: 1.05rem;
    padding: 1.5rem 0 1.75rem;
    color: var(--ink-soft);
    font-size: 1.05rem;
    line-height: 1.75;
}

.article__body p {
    margin: 0;
}

.article__source {
    padding-top: 0.5rem;
    border-top: 1px solid var(--line);
    color: var(--muted);
    font-size: 0.92rem;
}

.article__source a {
    text-decoration: underline;
    text-underline-offset: 0.14em;
}

.article__footer {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    padding-top: 1.25rem;
    border-top: 1px solid var(--line);
}

.reveal {
    opacity: 0;
    transform: translateY(16px);
}

.reveal.is-visible {
    animation: riseSoft 700ms var(--ease) forwards;
}

.reveal.is-visible:nth-child(2) {
    animation-delay: 60ms;
}

.reveal.is-visible:nth-child(3) {
    animation-delay: 120ms;
}

@keyframes riseSoft {
    from {
        opacity: 0;
        transform: translateY(16px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes settleImage {
    to {
        transform: scale(1);
    }
}

@keyframes fadeQuote {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 1ms !important;
        transition-duration: 1ms !important;
    }

    .reveal,
    .hero__content,
    .hero__image,
    .quote.is-active {
        opacity: 1;
        transform: none;
        animation: none;
    }

    .about-layout__photo:hover img,
    .media-split__photo:hover img {
        transform: none;
    }
}

@media (max-width: 960px) {
    .about-layout,
    .media-split,
    .impact-grid {
        grid-template-columns: 1fr 1fr;
    }

    .impact-grid article:nth-child(odd) {
        padding-left: 0;
        border-left: 0;
    }

    .impact-grid article:nth-child(even) {
        padding-left: 1rem;
        border-left: 1px solid var(--line);
    }
}

@media (max-width: 760px) {
    .brand__text {
        display: none;
    }

    .nav-toggle {
        display: block;
    }

    .site-nav {
        position: fixed;
        inset: calc(var(--header-h) + 0.35rem) 1rem auto;
        display: grid;
        gap: 0.1rem;
        padding: 0.75rem;
        border: 1px solid var(--line);
        color: var(--ink);
        background: #fff;
        opacity: 0;
        pointer-events: none;
        transform: translateY(-8px);
        transition: opacity 160ms var(--ease), transform 160ms var(--ease);
    }

    .site-header.is-open .site-nav {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
    }

    .site-nav a {
        padding: 0.8rem 0.65rem;
    }

    .hero {
        min-height: 100svh;
    }

    .hero__veil {
        background: linear-gradient(180deg, rgba(0, 0, 0, 0.45) 0%, rgba(0, 0, 0, 0.72) 48%, rgba(0, 0, 0, 0.9) 100%);
    }

    .hero__actions .button,
    .connect__actions .button {
        flex: 1 1 11rem;
    }

    .about-layout,
    .media-split,
    .impact-grid,
    .achievement-rail,
    .venture-list,
    .news-item {
        grid-template-columns: 1fr;
    }

    .impact-grid article,
    .impact-grid article:nth-child(even),
    .achievement-rail li,
    .achievement-rail li:nth-child(even),
    .venture-list li,
    .venture-list li:nth-child(even) {
        padding-left: 0;
        border-left: 0;
    }

    .impact-grid article {
        padding: 1rem 0;
        border-bottom: 1px solid var(--line);
    }

    .site-footer {
        flex-direction: column;
        align-items: flex-start;
    }
}
