:root {
    --teal: #0c5455;
    --teal-deep: #073f40;
    --teal-night: #062f30;
    --sage: #8fa89b;
    --sage-pale: #dbe4dd;
    --cream: #f7f3ec;
    --cream-deep: #eee7dc;
    --paper: #fffdf8;
    --gold: #e6b124;
    --gold-soft: #f2d77e;
    --ink: #1d2523;
    --ink-soft: #52605c;
    --line: rgba(29, 37, 35, 0.18);
    --serif: "Fraunces", Georgia, serif;
    --sans: "DM Sans", "Helvetica Neue", sans-serif;
    --header-height: 76px;
    --shell: min(1240px, calc(100vw - 40px));
    --ease: cubic-bezier(.22, .68, 0, 1);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--header-height) + 24px);
}

body {
    margin: 0;
    overflow-x: hidden;
    background: var(--cream);
    color: var(--ink);
    font-family: var(--sans);
    font-size: 16px;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}

body.menu-open {
    overflow: hidden;
}

::selection {
    background: var(--gold);
    color: var(--teal-night);
}

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

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

button,
input,
textarea,
select {
    font: inherit;
}

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

h1,
h2,
h3,
h4,
p,
figure {
    margin-top: 0;
}

h1,
h2,
h3,
h4 {
    text-wrap: balance;
}

p {
    text-wrap: pretty;
}

.shell {
    width: var(--shell);
    margin-inline: auto;
}

.section-space {
    padding-block: 108px;
}

.skip-link {
    position: fixed;
    z-index: 2000;
    top: 12px;
    left: 12px;
    padding: 10px 16px;
    background: var(--gold);
    color: var(--teal-night);
    font-weight: 700;
    transform: translateY(-180%);
    transition: transform .2s ease;
}

.skip-link:focus {
    transform: translateY(0);
}

.eyebrow {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    color: var(--teal);
    font-size: .71rem;
    font-weight: 600;
    letter-spacing: .15em;
    line-height: 1.4;
    text-transform: uppercase;
}

.eyebrow span {
    color: var(--ink-soft);
}

.eyebrow--light {
    color: var(--gold-soft);
}

.eyebrow--light span {
    color: rgba(255, 255, 255, .68);
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    min-height: 54px;
    gap: 24px;
    padding: 13px 20px;
    border: 1px solid transparent;
    border-radius: 4px;
    font-size: .84rem;
    font-weight: 600;
    letter-spacing: .02em;
    line-height: 1.2;
    transition: color .35s var(--ease), background-color .35s var(--ease), transform .35s var(--ease);
}

.button svg,
.header-contact svg {
    width: 19px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.7;
    transition: transform .35s var(--ease);
}

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

.button:hover svg,
.button:focus-visible svg,
.header-contact:hover svg,
.header-contact:focus-visible svg {
    transform: translateX(4px);
}

.button--gold {
    background: var(--gold);
    color: var(--teal-night);
}

.button--gold:hover,
.button--gold:focus-visible {
    background: #f1c64f;
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding-block: 5px;
    border-bottom: 1px solid rgba(29, 37, 35, .5);
    color: var(--ink);
    font-size: .84rem;
    font-weight: 600;
    line-height: 1.2;
    transition: gap .3s var(--ease), border-color .3s ease;
}

.text-link:hover,
.text-link:focus-visible {
    gap: 13px;
    border-color: var(--gold);
}

.text-link--light {
    border-bottom-color: rgba(255, 255, 255, .48);
    color: #fff;
}

/* Header */
.site-header {
    position: fixed;
    z-index: 1000;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    color: #fff;
    transition: height .35s var(--ease), color .35s ease, background-color .35s ease, box-shadow .35s ease;
}

.site-header::after {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 1px;
    background: rgba(255, 255, 255, .24);
    content: "";
    transition: background-color .35s ease;
}

.site-header.header-solid,
.site-header.menu-open {
    background: rgba(247, 243, 236, .97);
    box-shadow: 0 10px 35px rgba(7, 63, 64, .08);
    color: var(--ink);
}

.site-header.header-solid::after,
.site-header.menu-open::after {
    background: var(--line);
}

.site-header__inner {
    position: relative;
    z-index: 3;
    display: flex;
    align-items: center;
    height: 100%;
}

.brand {
    display: block;
    width: clamp(220px, 34vw, 290px);
    margin-right: auto;
}

.brand img {
    display: block;
    width: 100%;
    height: auto;
    filter: none;
    transform-origin: left center;
    transition: transform .35s ease;
}

.desktop-nav,
.header-contact {
    display: none;
}

.menu-toggle {
    position: relative;
    z-index: 4;
    display: grid;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 0;
    background: transparent;
    color: inherit;
    cursor: pointer;
    place-items: center;
}

.menu-toggle span {
    position: absolute;
    width: 24px;
    height: 1.5px;
    background: currentColor;
    transition: transform .3s var(--ease), top .3s var(--ease);
}

.menu-toggle span:first-child { top: 17px; }
.menu-toggle span:last-child { top: 25px; }
.menu-toggle[aria-expanded="true"] span:first-child { top: 22px; transform: rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:last-child { top: 22px; transform: rotate(-45deg); }

.mobile-menu {
    position: fixed;
    z-index: 2;
    inset: 0;
    display: grid;
    padding: calc(var(--header-height) + 48px) 20px 48px;
    background: var(--cream);
    color: var(--ink);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-20px);
    transition: opacity .3s ease, transform .4s var(--ease);
    place-items: center stretch;
}

.mobile-menu[aria-hidden="false"] {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.mobile-menu nav {
    width: min(100%, 560px);
    margin-inline: auto;
    border-top: 1px solid var(--line);
}

.mobile-menu a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 2px;
    border-bottom: 1px solid var(--line);
    font-family: var(--serif);
    font-size: clamp(1.7rem, 8vw, 2.5rem);
    line-height: 1.1;
}

.mobile-menu a span {
    font-family: var(--sans);
    font-size: .68rem;
    letter-spacing: .12em;
}

/* Chapter progress */
.chapter-progress {
    position: fixed;
    z-index: 900;
    right: 16px;
    bottom: 14px;
    left: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 50px;
    gap: 6px;
    padding: 6px 10px;
    border: 1px solid rgba(29, 37, 35, .12);
    border-radius: 6px;
    background: rgba(247, 243, 236, .94);
    box-shadow: 0 12px 30px rgba(7, 63, 64, .12);
    backdrop-filter: blur(16px);
}

.chapter-progress__line {
    display: none;
}

.chapter-progress a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 18px;
    min-height: 30px;
    color: var(--ink-soft);
    font-size: .61rem;
    font-weight: 600;
    letter-spacing: .02em;
    line-height: 1;
    white-space: nowrap;
}

.chapter-progress a i {
    display: block;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: currentColor;
}

.chapter-progress a span {
    display: none;
}

.chapter-progress a.chapter-active {
    min-width: 90px;
    gap: 7px;
    color: var(--teal);
}

.chapter-progress a.chapter-active i {
    width: 7px;
    height: 7px;
    background: var(--gold);
}

.chapter-progress a.chapter-active span {
    display: block;
}

/* Hero */
.hero {
    position: relative;
    min-height: 100svh;
    overflow: hidden;
    background: var(--teal-deep);
    color: #fff;
}

.hero::before {
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180' viewBox='0 0 180 180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.035'/%3E%3C/svg%3E");
    content: "";
    pointer-events: none;
}

.hero__glow {
    position: absolute;
    top: 18%;
    left: -16%;
    width: 58vw;
    aspect-ratio: 1;
    border-radius: 50%;
    background: rgba(143, 168, 155, .12);
    filter: blur(1px);
}

.hero__inner {
    position: relative;
    z-index: 1;
    display: grid;
    min-height: 100svh;
    padding-top: calc(var(--header-height) + 58px);
    padding-bottom: 118px;
    gap: 58px;
}

.hero__copy {
    align-self: center;
}

.hero__eyebrow {
    color: var(--gold-soft);
    opacity: 0;
    animation: heroFade .8s .15s var(--ease) forwards;
}

.hero__title {
    max-width: 780px;
    margin-bottom: 28px;
    font-family: var(--serif);
    font-size: clamp(3.15rem, 14.3vw, 6.8rem);
    font-weight: 500;
    letter-spacing: -.052em;
    line-height: .92;
}

.hero-line {
    display: block;
    overflow: hidden;
    padding-bottom: .07em;
}

.hero-line > span {
    display: block;
    transform: translateY(115%);
    animation: heroLine 1.05s var(--ease) forwards;
}

.hero-line:nth-child(1) > span { animation-delay: .2s; }
.hero-line:nth-child(2) > span { animation-delay: .34s; }
.hero-line:nth-child(3) > span { animation-delay: .48s; color: var(--gold-soft); }

.hero__intro {
    max-width: 620px;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, .75);
    font-size: .98rem;
    line-height: 1.75;
    opacity: 0;
    animation: heroFade .9s .75s var(--ease) forwards;
}

.hero__actions {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    gap: 21px;
    opacity: 0;
    animation: heroFade .9s .92s var(--ease) forwards;
}

.hero__visual {
    position: relative;
    min-height: 440px;
    align-self: center;
    opacity: 0;
    transform: scale(.96);
    animation: heroVisual 1.3s .3s var(--ease) forwards;
}

.hero__photo-main,
.hero__photo-inset {
    position: absolute;
    margin: 0;
    overflow: hidden;
    border-radius: 5px;
}

.hero__photo-main {
    inset: 0 0 60px 36px;
}

.hero__photo-main::after,
.hero__photo-inset::after {
    position: absolute;
    inset: 0;
    background: rgba(7, 63, 64, .11);
    content: "";
    pointer-events: none;
}

.hero__photo-main img,
.hero__photo-inset img {
    width: 100%;
    height: calc(100% + 80px);
    object-fit: cover;
    transform: translate3d(0, var(--parallax-y, 0), 0) scale(1.04);
}

.hero__photo-inset {
    bottom: 0;
    left: 0;
    width: 42%;
    aspect-ratio: .86;
    border: 7px solid var(--teal-deep);
}

.hero__caption {
    position: absolute;
    right: 0;
    bottom: 16px;
    display: flex;
    align-items: flex-end;
    flex-direction: column;
    margin: 0;
    color: rgba(255, 255, 255, .66);
    font-size: .65rem;
    letter-spacing: .08em;
    line-height: 1.45;
    text-transform: uppercase;
}

.hero__caption span {
    color: #fff;
    font-family: var(--serif);
    font-size: 1.08rem;
    letter-spacing: 0;
    text-transform: none;
}

.scroll-cue {
    position: absolute;
    z-index: 2;
    bottom: 83px;
    left: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, .58);
    font-size: .63rem;
    font-weight: 600;
    letter-spacing: .11em;
    text-transform: uppercase;
}

.scroll-cue i {
    position: relative;
    display: block;
    width: 43px;
    height: 1px;
    overflow: hidden;
    background: rgba(255, 255, 255, .24);
}

.scroll-cue i::after {
    position: absolute;
    inset: 0;
    background: var(--gold);
    content: "";
    transform: translateX(-100%);
    animation: scrollCue 2.4s ease-in-out infinite;
}

@keyframes heroLine { to { transform: translateY(0); } }
@keyframes heroFade { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: translateY(0); } }
@keyframes heroVisual { to { opacity: 1; transform: scale(1); } }
@keyframes scrollCue { 50%, 100% { transform: translateX(100%); } }

/* Moving identity strip */
.brand-strip {
    overflow: hidden;
    border-bottom: 1px solid rgba(230, 177, 36, .35);
    background: var(--gold);
    color: var(--teal-night);
}

.brand-strip__track {
    display: flex;
    align-items: center;
    width: max-content;
    min-height: 64px;
    animation: marquee 32s linear infinite;
    will-change: transform;
}

.brand-strip__group {
    display: flex;
    flex: none;
    align-items: center;
    justify-content: space-around;
    width: max-content;
    min-width: 100vw;
}

.brand-strip span {
    padding-inline: 19px;
    font-family: var(--serif);
    font-size: 1.08rem;
    white-space: nowrap;
}

.brand-strip i {
    color: var(--teal);
    font-size: .6rem;
    font-style: normal;
}

@keyframes marquee { to { transform: translate3d(-50%, 0, 0); } }

/* Shared reveal motion */
.reveal,
.stagger-item {
    opacity: 0;
    transform: translate3d(0, 30px, 0);
    transition: opacity .85s var(--ease), transform .9s var(--ease);
}

.reveal.reveal-visible,
.stagger-item.reveal-visible {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}

.parallax-soft {
    will-change: transform;
}

/* Origin */
.origin {
    background: var(--cream);
}

.section-heading {
    max-width: 940px;
    margin-bottom: 76px;
}

.section-heading h2,
.ecosystem__heading h2,
.community__heading h2 {
    max-width: 900px;
    margin-bottom: 25px;
    font-family: var(--serif);
    font-size: clamp(2.55rem, 8.7vw, 5.2rem);
    font-weight: 500;
    letter-spacing: -.045em;
    line-height: 1.02;
}

.section-heading > p:last-child,
.community__heading > p:last-child {
    max-width: 650px;
    margin-bottom: 0;
    color: var(--ink-soft);
    font-size: .98rem;
}

.origin-story {
    display: grid;
    gap: 60px;
}

.origin-visual {
    position: relative;
    height: min(75svh, 700px);
    min-height: 470px;
    overflow: hidden;
    border-radius: 6px;
    background: var(--sage-pale);
}

.origin-photo {
    position: absolute;
    inset: 0;
    margin: 0;
    opacity: 0;
    transition: opacity .75s var(--ease), transform .9s var(--ease);
    transform: scale(1.025);
}

.origin-photo::after {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(6, 47, 48, .55), transparent 45%);
    content: "";
}

.origin-photo--active {
    opacity: 1;
    transform: scale(1);
}

.origin-photo img {
    width: 100%;
    height: calc(100% + 100px);
    object-fit: cover;
    object-position: center;
    transform: translate3d(0, var(--parallax-y, -50px), 0) scale(1.03);
}

.origin-visual figcaption {
    position: absolute;
    z-index: 4;
    right: 24px;
    bottom: 24px;
    left: 24px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
    color: #fff;
}

.origin-visual figcaption span {
    font-family: var(--serif);
    font-size: 1.45rem;
}

.origin-visual figcaption small {
    color: rgba(255, 255, 255, .66);
    font-size: .65rem;
    letter-spacing: .08em;
    text-align: right;
    text-transform: uppercase;
}

.timeline {
    margin: 0;
    padding: 0;
    list-style: none;
}

.timeline__item {
    position: relative;
    display: grid;
    padding: 30px 0 48px;
    border-top: 1px solid var(--line);
    gap: 24px;
    transition: color .35s ease;
}

.timeline__item::before {
    position: absolute;
    top: -1px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    content: "";
    transition: width .65s var(--ease);
}

.timeline__item.timeline-active::before {
    width: 100%;
}

.timeline__year {
    margin-bottom: 0;
    color: var(--sage);
    font-family: var(--serif);
    font-size: clamp(3.6rem, 14vw, 7.5rem);
    font-weight: 500;
    letter-spacing: -.06em;
    line-height: .85;
    transition: color .45s ease;
}

.timeline-active .timeline__year {
    color: var(--teal);
}

.timeline__year--word {
    font-size: clamp(3.2rem, 13vw, 6.7rem);
}

.timeline__item h3 {
    margin-bottom: 12px;
    font-family: var(--serif);
    font-size: clamp(1.65rem, 5vw, 2.35rem);
    font-weight: 500;
    letter-spacing: -.025em;
    line-height: 1.15;
}

.timeline__item div p {
    max-width: 490px;
    margin-bottom: 0;
    color: var(--ink-soft);
    font-size: .94rem;
}

/* Values */
.values {
    position: relative;
    /* `hidden` creates a scroll container and prevents the intro column from
       sticking. `clip` keeps the decorative rings contained without changing
       the sticky containing block. */
    overflow: clip;
    background: var(--paper);
}

.values::after {
    position: absolute;
    top: 5%;
    right: -10%;
    width: 42vw;
    aspect-ratio: 1;
    border: 1px solid rgba(143, 168, 155, .21);
    border-radius: 50%;
    box-shadow: 0 0 0 80px rgba(143, 168, 155, .035), 0 0 0 160px rgba(143, 168, 155, .025);
    content: "";
    pointer-events: none;
}

.values__layout {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 70px;
}

.values__intro h2 {
    max-width: 630px;
    margin-bottom: 24px;
    font-family: var(--serif);
    font-size: clamp(2.65rem, 9vw, 5.1rem);
    font-weight: 500;
    letter-spacing: -.045em;
    line-height: 1.01;
}

.values__intro > p:not(.eyebrow) {
    max-width: 510px;
    color: var(--ink-soft);
}

.values__arabic {
    display: block;
    margin-top: 42px;
    color: var(--sage);
    font-family: serif;
    font-size: clamp(2rem, 7vw, 3.2rem);
    line-height: 1.5;
}

.values__panels {
    border-bottom: 1px solid var(--line);
}

.value-panel {
    position: relative;
    min-height: 430px;
    padding: 24px 0 28px;
    overflow: hidden;
    border-top: 1px solid var(--line);
}

.value-panel__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--teal);
    font-size: .72rem;
    font-weight: 600;
    letter-spacing: .12em;
}

.value-panel__top i {
    position: relative;
    display: block;
    width: 34px;
    height: 34px;
    border: 1px solid var(--sage);
    border-radius: 50%;
    transition: background-color .4s ease, transform .45s var(--ease);
}

.value-panel__top i::before,
.value-panel__top i::after {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 10px;
    height: 1px;
    background: currentColor;
    content: "";
    transform: translate(-50%, -50%);
}

.value-panel__top i::after { transform: translate(-50%, -50%) rotate(90deg); }

.value-panel__body {
    position: relative;
    z-index: 2;
    margin-top: 94px;
}

.value-panel h3 {
    margin-bottom: 14px;
    color: var(--teal-deep);
    font-family: var(--serif);
    font-size: clamp(2.4rem, 8vw, 4.2rem);
    font-weight: 500;
    letter-spacing: -.04em;
    line-height: 1;
}

.value-panel__body p {
    max-width: 500px;
    margin-bottom: 0;
    color: var(--ink-soft);
    font-size: .94rem;
}

.value-panel__word {
    position: absolute;
    right: 0;
    bottom: -38px;
    margin: 0;
    color: rgba(143, 168, 155, .12);
    font-family: var(--serif);
    font-size: clamp(6rem, 29vw, 11rem);
    font-weight: 600;
    letter-spacing: -.08em;
    line-height: .75;
    pointer-events: none;
    transition: color .45s ease, transform .55s var(--ease);
}

.value-panel:hover .value-panel__top i {
    background: var(--gold);
    transform: rotate(45deg);
}

.value-panel:hover .value-panel__word {
    color: rgba(230, 177, 36, .14);
    transform: translateX(-10px);
}

/* Ecosystem */
.ecosystem {
    background: var(--cream-deep);
}

.ecosystem__heading {
    display: grid;
    gap: 25px;
    margin-bottom: 56px;
}

.ecosystem__heading h2 {
    max-width: 770px;
    margin-bottom: 0;
}

.ecosystem__heading > p {
    max-width: 560px;
    margin-bottom: 0;
    color: var(--ink-soft);
}

.ecosystem-map {
    display: flex;
    align-items: center;
    margin-bottom: 36px;
    color: var(--teal);
    font-size: .63rem;
    font-weight: 600;
    letter-spacing: .09em;
    text-transform: uppercase;
}

.ecosystem-map i {
    flex: 1;
    height: 1px;
    margin-inline: 8px;
    background: rgba(12, 84, 85, .24);
}

.ecosystem-groups {
    display: grid;
    gap: 90px;
}

.ecosystem-group__header {
    display: grid;
    margin-bottom: 30px;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(12, 84, 85, .22);
    gap: 10px;
}

.ecosystem-group__header > p:first-child {
    margin: 0;
    color: var(--teal);
    font-size: .62rem;
    font-weight: 600;
    letter-spacing: .13em;
    text-transform: uppercase;
}

.ecosystem-group__header > p:first-child span {
    display: inline-grid;
    width: 28px;
    height: 28px;
    margin-right: 9px;
    border: 1px solid currentColor;
    border-radius: 50%;
    place-items: center;
}

.ecosystem-group__header h3 {
    margin: 0;
    color: var(--teal-deep);
    font-family: var(--serif);
    font-size: clamp(2.2rem, 5vw, 4.2rem);
    font-weight: 500;
    letter-spacing: -.045em;
    line-height: 1;
}

.ecosystem-group__header > p:last-child {
    max-width: 570px;
    margin: 0;
    color: var(--ink-soft);
    font-size: .88rem;
}

.ecosystem-group--business {
    padding: clamp(26px, 4vw, 52px);
    border: 1px solid rgba(12, 84, 85, .17);
    border-radius: 8px;
    background:
        linear-gradient(135deg, rgba(218, 144, 91, .11), transparent 48%),
        rgba(255, 253, 248, .66);
}

.ecosystem-group--business .ecosystem-group__header > p:first-child {
    color: #a85f38;
}

.program-grid {
    display: grid;
    gap: 16px;
}

.program-card {
    min-width: 0;
    overflow: hidden;
    border: 1px solid rgba(29, 37, 35, .13);
    border-radius: 6px;
    background: var(--paper);
    box-shadow: 0 12px 28px rgba(7, 63, 64, .035);
}

.program-card > a {
    display: flex;
    min-height: 100%;
    padding: 10px 10px 18px;
    flex-direction: column;
}

.program-card__image {
    position: relative;
    aspect-ratio: 1.35;
    margin-bottom: 18px;
    overflow: hidden;
    border-radius: 3px;
    background: var(--sage-pale);
}

.program-card__image::after {
    position: absolute;
    inset: 0;
    background: rgba(7, 63, 64, .05);
    content: "";
}

.program-card__image--tint::after { background: rgba(12, 84, 85, .23); }
.program-card__image--gold::after { background: rgba(230, 177, 36, .12); }

.program-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .8s var(--ease);
}

.program-card:nth-child(1) img,
.program-card:nth-child(7) img,
.program-card:nth-child(8) img {
    object-position: center 32%;
}

.program-card__meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    padding-inline: 9px;
    color: var(--teal);
    font-size: .63rem;
    font-weight: 600;
    letter-spacing: .09em;
    text-transform: uppercase;
}

.program-card h3 {
    margin-bottom: 9px;
    padding-inline: 9px;
    color: var(--teal-deep);
    font-family: var(--serif);
    font-size: 1.72rem;
    font-weight: 500;
    letter-spacing: -.035em;
    line-height: 1.08;
}

.program-card p {
    margin-bottom: 20px;
    padding-inline: 9px;
    color: var(--ink-soft);
    font-size: .85rem;
    line-height: 1.6;
}

.program-card__link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
    padding: 14px 9px 0;
    border-top: 1px solid var(--line);
    font-size: .72rem;
    font-weight: 600;
}

.program-card__link i {
    color: var(--teal);
    font-style: normal;
    transition: transform .35s var(--ease);
}

.program-card:hover .program-card__image img,
.program-card:focus-within .program-card__image img {
    transform: scale(1.06);
}

.program-card:hover .program-card__link i,
.program-card:focus-within .program-card__link i {
    transform: translate(3px, -3px);
}

.program-card--business {
    border-color: rgba(168, 95, 56, .22);
    box-shadow: 0 18px 45px rgba(98, 63, 39, .07);
}

.program-card--business .program-card__image {
    aspect-ratio: 1.5;
}

.program-card--business .program-card__meta,
.program-card--business .program-card__link i {
    color: #9b5938;
}

/* Impact */
.impact {
    position: relative;
    overflow: hidden;
    background: var(--teal-night);
    color: #fff;
}

.impact::after {
    position: absolute;
    inset: 0;
    background: rgba(6, 47, 48, .82);
    content: "";
}

.impact__photo {
    position: absolute;
    inset: -100px 0;
    background: url("../img/revamp/origin-foundation.jpg") center / cover no-repeat;
    transform: translate3d(0, var(--parallax-y, 0), 0) scale(1.04);
    filter: saturate(.72);
}

.impact__inner {
    position: relative;
    z-index: 2;
    padding-block: 112px;
}

.impact__heading {
    max-width: 810px;
    margin-bottom: 80px;
}

.impact__heading h2 {
    margin-bottom: 0;
    font-family: var(--serif);
    font-size: clamp(2.7rem, 9vw, 5.45rem);
    font-weight: 500;
    letter-spacing: -.045em;
    line-height: 1;
}

.impact__legal {
    display: flex;
    align-items: flex-start;
    padding-block: 25px 36px;
    border-top: 1px solid rgba(255, 255, 255, .25);
    border-bottom: 1px solid rgba(255, 255, 255, .25);
    flex-direction: column;
}

.impact__legal p,
.impact__legal small {
    margin: 0;
    color: rgba(255, 255, 255, .65);
    font-size: .65rem;
    letter-spacing: .09em;
    text-transform: uppercase;
}

.impact__legal strong {
    margin-block: 14px 6px;
    color: var(--gold-soft);
    font-family: var(--serif);
    font-size: clamp(3.8rem, 15vw, 8.4rem);
    font-weight: 500;
    letter-spacing: -.06em;
    line-height: .9;
}

.trust-grid {
    display: grid;
    margin-top: 55px;
    gap: 0;
}

.trust-item {
    padding: 23px 0 30px;
    border-top: 1px solid rgba(255, 255, 255, .22);
}

.trust-item > span {
    color: var(--gold-soft);
    font-size: .64rem;
    letter-spacing: .11em;
}

.trust-item h3 {
    margin: 54px 0 12px;
    font-family: var(--serif);
    font-size: 1.55rem;
    font-weight: 500;
    letter-spacing: -.025em;
}

.trust-item p {
    max-width: 300px;
    margin: 0;
    color: rgba(255, 255, 255, .65);
    font-size: .82rem;
}

/* Community */
.community {
    background: var(--cream);
}

.community__heading {
    max-width: 930px;
    margin-bottom: 65px;
}

.gallery {
    display: grid;
    gap: 32px 16px;
}

.gallery__item {
    margin: 0;
}

.gallery__item > div {
    height: 330px;
    overflow: hidden;
    border-radius: 5px;
    background: var(--sage-pale);
}

.gallery__item--tall > div {
    height: 480px;
}

.gallery__item img {
    width: 100%;
    height: calc(100% + 80px);
    object-fit: cover;
    transform: translate3d(0, var(--parallax-y, -40px), 0) scale(1.02);
}

.gallery__item--tall img { object-position: center 35%; }

.gallery__item figcaption {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    padding-top: 12px;
    border-top: 1px solid var(--line);
    gap: 16px;
}

.gallery__item figcaption span {
    font-family: var(--serif);
    font-size: 1.08rem;
}

.gallery__item figcaption small {
    color: var(--ink-soft);
    font-size: .61rem;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.news-block {
    margin-top: 125px;
    padding-top: 30px;
    border-top: 1px solid var(--line);
}

.subsection-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 36px;
    gap: 30px;
}

.subsection-heading .eyebrow {
    margin-bottom: 8px;
}

.subsection-heading h3,
.testimonial-block__intro h3 {
    margin: 0;
    font-family: var(--serif);
    font-size: clamp(2.2rem, 7vw, 3.6rem);
    font-weight: 500;
    letter-spacing: -.04em;
    line-height: 1;
}

.subsection-heading > .text-link {
    display: none;
}

.news-grid {
    display: grid;
    gap: 18px;
}

.news-card {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 6px;
    background: var(--paper);
}

.news-card__image {
    aspect-ratio: 1.45;
    margin: 9px;
    overflow: hidden;
    border-radius: 3px;
}

.news-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .7s var(--ease);
}

.news-card__body {
    display: flex;
    min-height: 190px;
    padding: 15px 18px 18px;
    flex-direction: column;
}

.news-card time {
    margin-bottom: 24px;
    color: var(--teal);
    font-size: .62rem;
    font-weight: 600;
    letter-spacing: .09em;
    text-transform: uppercase;
}

.news-card h4 {
    margin-bottom: 28px;
    font-family: var(--serif);
    font-size: 1.55rem;
    font-weight: 500;
    letter-spacing: -.028em;
    line-height: 1.17;
}

.news-card__body > span {
    margin-top: auto;
    font-size: .7rem;
    font-weight: 600;
}

.news-card:hover img,
.news-card:focus-within img {
    transform: scale(1.055);
}

.testimonial-block {
    position: relative;
    display: grid;
    margin-top: 110px;
    padding: 60px 24px 28px;
    overflow: hidden;
    border-radius: 6px;
    background: var(--sage-pale);
    gap: 40px;
}

.testimonial-block__mark {
    position: absolute;
    top: -38px;
    right: 20px;
    margin: 0;
    color: rgba(12, 84, 85, .11);
    font-family: var(--serif);
    font-size: 13rem;
    line-height: 1;
}

.testimonial-block__intro {
    position: relative;
    z-index: 1;
}

.testimonial-stage {
    position: relative;
    z-index: 1;
    min-height: 190px;
}

.testimonial-status {
    max-width: 540px;
    color: var(--ink-soft);
}

.testimonial-quote {
    margin: 0;
}

.testimonial-quote blockquote {
    margin: 0 0 28px;
    color: var(--teal-night);
    font-family: var(--serif);
    font-size: clamp(1.6rem, 5.7vw, 2.6rem);
    letter-spacing: -.027em;
    line-height: 1.26;
}

.testimonial-quote figcaption {
    display: flex;
    align-items: center;
    gap: 13px;
    color: var(--ink-soft);
    font-size: .78rem;
}

.testimonial-quote figcaption i {
    width: 28px;
    height: 1px;
    background: var(--teal);
}

.testimonial-controls {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 13px;
}

.testimonial-controls[hidden] { display: none; }

.testimonial-controls button {
    display: grid;
    width: 42px;
    height: 42px;
    padding: 0;
    border: 1px solid rgba(12, 84, 85, .35);
    border-radius: 50%;
    background: transparent;
    color: var(--teal);
    cursor: pointer;
    transition: background-color .25s ease, color .25s ease;
    place-items: center;
}

.testimonial-controls button:hover,
.testimonial-controls button:focus-visible {
    background: var(--teal);
    color: #fff;
}

.testimonial-controls p {
    margin: 0 5px;
    color: var(--ink-soft);
    font-size: .66rem;
    letter-spacing: .08em;
}

/* Invitation */
.invitation {
    position: relative;
    display: grid;
    min-height: 92svh;
    overflow: hidden;
    background: var(--teal-night);
    color: #fff;
    place-items: center;
}

.invitation__media,
.invitation__overlay {
    position: absolute;
    inset: 0;
}

.invitation__media img {
    width: 100%;
    height: calc(100% + 130px);
    object-fit: cover;
    transform: translate3d(0, var(--parallax-y, -65px), 0) scale(1.03);
}

.invitation__overlay {
    background: rgba(6, 47, 48, .82);
}

.invitation__inner {
    position: relative;
    z-index: 2;
    padding-block: 130px 150px;
}

.invitation h2 {
    max-width: 950px;
    margin-bottom: 28px;
    font-family: var(--serif);
    font-size: clamp(3.1rem, 12vw, 7.4rem);
    font-weight: 500;
    letter-spacing: -.055em;
    line-height: .93;
}

.invitation__text {
    max-width: 650px;
    margin-bottom: 36px;
    color: rgba(255, 255, 255, .73);
}

.invitation__actions {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    gap: 22px;
}

/* Footer */
.site-footer {
    padding-block: 78px 90px;
    background: var(--cream-deep);
}

.site-footer__lead {
    padding-bottom: 43px;
    border-bottom: 1px solid var(--line);
}

.footer-brand {
    display: block;
    width: min(280px, 85%);
    margin-bottom: 17px;
}

.footer-brand img {
    width: 100%;
    height: auto;
}

.site-footer__lead p {
    margin: 0;
    color: var(--teal);
    font-family: var(--serif);
    font-size: 1.15rem;
}

.site-footer__grid {
    display: grid;
    padding-block: 48px;
    gap: 40px 20px;
}

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

.footer-column h2 {
    margin-bottom: 18px;
    color: var(--teal);
    font-family: var(--sans);
    font-size: .66rem;
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.footer-column a,
.footer-column p {
    margin-bottom: 8px;
    color: var(--ink-soft);
    font-size: .84rem;
    transition: color .2s ease;
}

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

.site-footer__bottom {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    padding-top: 22px;
    border-top: 1px solid var(--line);
    gap: 20px;
}

.site-footer__bottom p,
.site-footer__bottom a {
    margin: 0;
    color: var(--ink-soft);
    font-size: .66rem;
}

.whatsapp-float {
    position: fixed;
    z-index: 950;
    right: 16px;
    bottom: 76px;
    display: grid;
    width: 48px;
    height: 48px;
    border: 1px solid rgba(255, 255, 255, .28);
    border-radius: 50%;
    background: var(--teal);
    box-shadow: 0 10px 24px rgba(6, 47, 48, .22);
    color: #fff;
    place-items: center;
    transition: transform .3s var(--ease), background-color .3s ease;
}

.whatsapp-float svg {
    width: 22px;
    fill: currentColor;
}

.whatsapp-float span {
    display: none;
}

.whatsapp-float:hover,
.whatsapp-float:focus-visible {
    background: #167f72;
    transform: translateY(-3px);
}

.noscript-note {
    position: fixed;
    z-index: 3000;
    right: 20px;
    bottom: 20px;
    left: 20px;
    padding: 15px;
    border: 1px solid var(--gold);
    background: var(--cream);
    color: var(--ink);
    text-align: center;
}

@media (min-width: 620px) {
    :root {
        --shell: min(1240px, calc(100vw - 70px));
    }

    .section-space { padding-block: 135px; }

    .hero__actions,
    .invitation__actions {
        align-items: center;
        flex-direction: row;
        flex-wrap: wrap;
        gap: 25px 30px;
    }

    .program-grid,
    .news-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

    .gallery__item--wide {
        grid-column: 1 / -1;
    }

    .gallery__item--wide > div { height: 500px; }

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

    .trust-item:nth-child(odd) { padding-right: 25px; }
    .trust-item:nth-child(even) { padding-left: 25px; border-left: 1px solid rgba(255, 255, 255, .22); }

    .site-footer__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 900px) {
    :root {
        --header-height: 90px;
    }

    .site-header.header-solid {
        --header-height: 78px;
    }

    .brand { width: clamp(250px, 19vw, 320px); }

    .site-header.header-solid .brand img,
    .site-header.menu-open .brand img {
        transform: scale(.94);
    }

    .desktop-nav {
        display: flex;
        align-items: center;
        margin-right: 34px;
        gap: 27px;
    }

    .desktop-nav a {
        position: relative;
        font-size: .74rem;
        font-weight: 500;
    }

    .desktop-nav a::after {
        position: absolute;
        right: 0;
        bottom: -6px;
        left: 0;
        height: 1px;
        background: currentColor;
        content: "";
        transform: scaleX(0);
        transform-origin: right;
        transition: transform .3s var(--ease);
    }

    .desktop-nav a:hover::after,
    .desktop-nav a:focus-visible::after {
        transform: scaleX(1);
        transform-origin: left;
    }

    .header-contact {
        display: inline-flex;
        align-items: center;
        gap: 15px;
        padding: 10px 0 10px 18px;
        border-left: 1px solid currentColor;
        font-size: .72rem;
        font-weight: 600;
    }

    .menu-toggle { display: none; }

    .chapter-progress {
        top: 50%;
        right: 22px;
        bottom: auto;
        left: auto;
        display: flex;
        align-items: flex-end;
        width: 138px;
        height: auto;
        padding: 0 0 0 22px;
        border: 0;
        border-radius: 0;
        background: transparent;
        box-shadow: none;
        backdrop-filter: none;
        flex-direction: column;
        gap: 4px;
        transform: translateY(-50%);
    }

    .chapter-progress__line {
        position: absolute;
        top: 14px;
        right: 3px;
        bottom: 14px;
        display: block;
        width: 1px;
        overflow: hidden;
        background: rgba(29, 37, 35, .18);
    }

    .chapter-progress__line span {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: var(--chapter-progress, 0%);
        background: var(--gold);
        transition: height .35s var(--ease);
    }

    .chapter-progress a,
    .chapter-progress a.chapter-active {
        display: flex;
        align-items: center;
        justify-content: flex-end;
        width: 100%;
        min-width: 0;
        min-height: 27px;
        gap: 9px;
        color: var(--ink-soft);
        opacity: .65;
        transition: color .25s ease, opacity .25s ease, transform .3s var(--ease);
    }

    .chapter-progress a span,
    .chapter-progress a.chapter-active span {
        display: block;
        order: 1;
    }

    .chapter-progress a i,
    .chapter-progress a.chapter-active i {
        position: relative;
        right: 0;
        z-index: 2;
        display: block;
        width: 7px;
        height: 7px;
        border: 2px solid var(--cream);
        background: var(--ink-soft);
        order: 2;
    }

    .chapter-progress a.chapter-active {
        color: var(--teal);
        opacity: 1;
        transform: translateX(-5px);
    }

    .chapter-progress a.chapter-active i {
        width: 9px;
        height: 9px;
        border-color: var(--cream);
        background: var(--gold);
    }

    .chapter-progress.chapter-progress--light a,
    .chapter-progress.chapter-progress--light a.chapter-active {
        color: rgba(255, 255, 255, .78);
    }

    .chapter-progress.chapter-progress--light .chapter-progress__line {
        background: rgba(255, 255, 255, .24);
    }

    .chapter-progress.chapter-progress--light a i,
    .chapter-progress.chapter-progress--light a.chapter-active i {
        border-color: var(--teal-deep);
    }

    .chapter-progress.chapter-progress--light a.chapter-active {
        color: #fff;
    }

    .hero__inner {
        grid-template-columns: minmax(0, 1.04fr) minmax(370px, .96fr);
        padding-top: calc(var(--header-height) + 44px);
        padding-bottom: 90px;
        gap: 42px;
    }

    .hero__title {
        font-size: clamp(4.8rem, 7.15vw, 7.2rem);
    }

    .hero__visual {
        min-height: min(76svh, 790px);
        margin-top: 42px;
    }

    .hero__photo-main { inset: 0 0 52px 42px; }
    .hero__photo-inset { width: 43%; }
    .scroll-cue { bottom: 34px; left: max(35px, calc((100vw - 1240px) / 2)); }

    .origin-story {
        grid-template-columns: minmax(0, 1.02fr) minmax(350px, .78fr);
        align-items: start;
        gap: clamp(55px, 7vw, 110px);
    }

    .origin-visual {
        position: sticky;
        top: calc(var(--header-height) + 40px);
    }

    .timeline__item {
        min-height: 68svh;
        align-content: center;
        padding-block: 40px;
    }

    .timeline__year { margin-bottom: 40px; }

    .values__layout {
        grid-template-columns: minmax(350px, .85fr) minmax(440px, 1.15fr);
        align-items: start;
        gap: clamp(75px, 8vw, 140px);
    }

    .values__intro {
        position: sticky;
        top: calc(var(--header-height) + 50px);
    }

    .value-panel { min-height: 75svh; }
    .value-panel__body { margin-top: 30vh; }

    .ecosystem__heading {
        grid-template-columns: 1.4fr .6fr;
        align-items: end;
        gap: 60px;
    }

    .ecosystem-map { margin-bottom: 46px; }

    .ecosystem-group__header {
        grid-template-columns: minmax(240px, .7fr) minmax(340px, 1fr);
        align-items: end;
        column-gap: 60px;
    }

    .ecosystem-group__header > p:first-child {
        grid-column: 1 / -1;
    }

    .program-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .program-grid--business { grid-template-columns: repeat(2, minmax(0, 1fr)); }

    .impact__inner { padding-block: 145px; }

    .impact__legal {
        align-items: flex-end;
        justify-content: space-between;
        flex-direction: row;
    }

    .impact__legal strong { margin: 0; }

    .trust-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
    .trust-item { padding: 23px 25px 30px; border-left: 1px solid rgba(255, 255, 255, .22); }
    .trust-item:first-child { padding-left: 0; border-left: 0; }

    .community__heading { margin-left: 16%; }

    .gallery {
        grid-template-columns: 1.25fr .75fr;
        align-items: start;
        gap: 50px 22px;
    }

    .gallery__item--wide { grid-column: auto; }
    .gallery__item--wide > div { height: 650px; }
    .gallery__item--tall { margin-top: 150px; }
    .gallery__item--tall > div { height: 650px; }
    .gallery__item:nth-child(3) { margin-top: -75px; margin-left: 17%; }
    .gallery__item:nth-child(3) > div { height: 430px; }
    .gallery__item:nth-child(4) { margin-top: 65px; }
    .gallery__item:nth-child(4) > div { height: 420px; }

    .subsection-heading > .text-link { display: inline-flex; }
    .news-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }

    .testimonial-block {
        grid-template-columns: .7fr 1.3fr;
        min-height: 470px;
        padding: 74px 72px 40px;
        gap: 65px;
    }

    .testimonial-controls { grid-column: 2; }

    .invitation__inner { padding-block: 160px; }

    .site-footer__lead {
        display: flex;
        align-items: flex-end;
        justify-content: space-between;
    }

    .site-footer__lead p { margin-bottom: 8px; }
    .site-footer__grid { grid-template-columns: .7fr 1.3fr 1.25fr .75fr; }
    .footer-column--divisions { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); column-gap: 22px; }
    .footer-column--divisions h2 { grid-column: 1 / -1; }
    .whatsapp-float { right: 28px; bottom: 28px; }
}

@media (min-width: 1180px) {
    .desktop-nav { margin-right: 50px; gap: 34px; }
    .program-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
    .program-grid--business { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .program-card:nth-child(2),
    .program-card:nth-child(4),
    .program-card:nth-child(6),
    .program-card:nth-child(8) { transform: translateY(28px); }

    .program-card:nth-child(2).reveal-visible,
    .program-card:nth-child(4).reveal-visible,
    .program-card:nth-child(6).reveal-visible,
    .program-card:nth-child(8).reveal-visible { transform: translateY(28px); }

    .ecosystem { padding-bottom: 175px; }
    .whatsapp-float { width: auto; min-width: 130px; height: 48px; padding: 0 18px; border-radius: 24px; grid-auto-flow: column; gap: 9px; }
    .whatsapp-float span { display: block; font-size: .7rem; font-weight: 600; }
}

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

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
    }

    .reveal,
    .stagger-item,
    .hero__eyebrow,
    .hero__intro,
    .hero__actions,
    .hero__visual {
        opacity: 1;
        transform: none;
    }

    .hero-line > span { transform: none; }
    .brand-strip__track { animation: none; }

    .parallax-soft,
    .parallax-soft img,
    .hero__photo-main img,
    .hero__photo-inset img,
    .origin-photo img,
    .gallery__item img,
    .invitation__media img,
    .impact__photo {
        transform: none !important;
        will-change: auto;
    }
}

/* ============================================================
   PAGE: tentang-kami.html
   Komponen khusus halaman profil yayasan.
   Semua warna memakai token :root — tidak ada hex mentah.
   ============================================================ */

/* Fakta ringkas di hero — masuk dalam urutan heroFade:
   eyebrow .15s → intro .75s → facts .86s → actions 1.02s */
.page-facts {
    display: grid;
    margin: 0 0 36px;
    padding-top: 26px;
    border-top: 1px solid rgba(255, 253, 248, .22);
    gap: 20px 34px;
    opacity: 0;
    animation: heroFade .9s .86s var(--ease) forwards;
}

.hero--about .hero__actions {
    animation-delay: 1.02s;
}

.page-facts__item dt {
    margin-bottom: 5px;
    color: rgba(255, 253, 248, .58);
    font-size: .66rem;
    font-weight: 600;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.page-facts__item dd {
    margin: 0;
    color: var(--paper);
    font-family: var(--serif);
    font-size: 1.32rem;
    letter-spacing: -.01em;
    line-height: 1.15;
}

/* Chapter: The Vision */
.purpose__layout {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 66px;
}

.purpose__vision h2 {
    max-width: 560px;
    margin-bottom: 30px;
    font-family: var(--serif);
    font-size: clamp(2.55rem, 8.7vw, 4.6rem);
    font-weight: 500;
    letter-spacing: -.045em;
    line-height: 1.02;
}

.purpose__quote {
    margin: 0 0 28px;
    padding-left: 26px;
    border-left: 2px solid var(--gold);
}

.purpose__quote p {
    margin-bottom: 14px;
    color: var(--ink);
    font-family: var(--serif);
    font-size: clamp(1.18rem, 3.4vw, 1.45rem);
    font-weight: 500;
    letter-spacing: -.012em;
    line-height: 1.45;
}

.purpose__quote footer {
    color: var(--ink-soft);
    font-size: .68rem;
    font-weight: 600;
    letter-spacing: .13em;
    text-transform: uppercase;
}

.purpose__pledge {
    max-width: 480px;
    margin-bottom: 0;
    color: var(--ink-soft);
    font-size: 1rem;
}

.purpose__pledge strong {
    color: var(--teal);
    font-weight: 600;
}

.purpose__vision .values__arabic {
    margin-top: 34px;
}

/* Daftar misi */
.mission-list {
    margin: 0;
    padding: 0;
    list-style: none;
    counter-reset: mission;
}

.mission-item {
    display: grid;
    padding: 26px 0;
    border-top: 1px solid var(--line);
    gap: 6px 24px;
}

.mission-item:last-child {
    border-bottom: 1px solid var(--line);
}

.mission-item > span {
    color: var(--sage);
    font-family: var(--serif);
    font-size: 1.5rem;
    letter-spacing: -.02em;
    line-height: 1;
    transition: color .45s ease;
}

.mission-item:hover > span {
    color: var(--gold);
}

.mission-item p {
    max-width: 560px;
    margin-bottom: 0;
    color: var(--ink-soft);
    font-size: .95rem;
}

/* Chapter: The Legitimacy — foto latar khusus halaman ini */
.impact--about .impact__photo {
    background-image: url("../img/revamp/community-harlah.jpg");
}

@media (min-width: 620px) {
    .page-facts {
        grid-auto-flow: column;
        grid-auto-columns: max-content;
    }

    .mission-item {
        grid-template-columns: 54px minmax(0, 1fr);
        align-items: baseline;
    }
}

@media (min-width: 900px) {
    .purpose__layout {
        grid-template-columns: minmax(340px, .92fr) minmax(420px, 1.08fr);
        align-items: start;
        gap: clamp(70px, 8vw, 130px);
    }

    .purpose__vision {
        position: sticky;
        top: calc(var(--header-height) + 50px);
    }

    .mission-item {
        grid-template-columns: 68px minmax(0, 1fr);
        padding: 32px 0;
    }

    .mission-item > span {
        font-size: 1.75rem;
    }
}

/* Halaman ini ikut aturan reduced motion — deklarasi diulang di sini
   karena blok utama berada di atas dan tidak menjangkau kelas baru. */
@media (prefers-reduced-motion: reduce) {
    .page-facts {
        opacity: 1;
        animation: none;
    }

    .purpose__vision {
        position: static;
    }
}
