
/*:root {
    --ink: #0B1220;
    --ink-soft: #3A4252;
    --paper: #F6F4EE;
    --paper-alt: #ECE8DD;
    --paper-line: rgba(11,18,32,.13);
    --royal: #003087;
    --royal-deep: #001B4D;
    --royal-mid: #0A3E9A;
    --gold: #C9972A;
    --gold-soft: #E4C57A;
    --teal: #0E7C7B;
    --teal-soft: #BFE0DD;
    --white: #FFFFFF;
    --display: 'Cormorant Garamond', serif;
    --body: 'DM Sans', sans-serif;
    --mono: 'IBM Plex Mono', monospace;
    --wrap: min(1240px, 92vw);
    --ease: cubic-bezier(.22,.68,.16,1);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

@@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    * {
        animation-duration: .001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .001ms !important;
        scroll-behavior: auto !important;
    }
}

body {
    margin: 0;
    background: var(--paper);
    color: var(--ink);
    font-family: var(--body);
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

img, svg {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
}

h1, h2, h3, h4 {
    margin: 0;
    font-family: var(--display);
    font-weight: 600;
    letter-spacing: .002em;
}

p {
    margin: 0;
}

.wrap {
    width: var(--wrap);
    margin: 0 auto;
}

::selection {
    background: var(--gold-soft);
    color: var(--royal-deep);
}

:focus-visible {
    outline: 2.5px solid var(--gold);
    outline-offset: 3px;
}

.eyebrow {
    font-family: var(--mono);
    font-size: 12.5px;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--teal);
    display: flex;
    align-items: center;
    gap: 10px;
}

    .eyebrow::before {
        content: "";
        width: 22px;
        height: 1px;
        background: var(--teal);
        display: inline-block;
    }

    .eyebrow.on-dark {
        color: var(--gold-soft);
    }

        .eyebrow.on-dark::before {
            background: var(--gold-soft);
        }

.btn {
    font-family: var(--body);
    font-weight: 700;
    font-size: 14.5px;
    letter-spacing: .01em;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 26px;
    border-radius: 2px;
    text-decoration: none;
    cursor: pointer;
    border: 1px solid transparent;
    transition: transform .35s var(--ease), background .3s, color .3s, border-color .3s;
}

    .btn:hover {
        transform: translateY(-2px);
    }

.btn-gold {
    background: var(--gold);
    color: var(--royal-deep);
}

    .btn-gold:hover {
        background: var(--gold-soft);
    }

.btn-outline {
    border-color: currentColor;
    color: inherit;
    background: transparent;
}

    .btn-outline:hover {
        background: var(--ink);
        color: var(--paper);
        border-color: var(--ink);
    }

    .btn-outline.on-dark {
        border-color: rgba(246,244,238,.55);
        color: var(--paper);
    }

        .btn-outline.on-dark:hover {
            background: var(--paper);
            color: var(--royal-deep);
        }

.btn svg {
    width: 14px;
    height: 14px;
}*/

/* ============================================================
   NAV
   ============================================================ */


/*header.site-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 20px 0;
    transition: background .4s var(--ease), padding .4s var(--ease), box-shadow .4s var(--ease);
}

    header.site-nav .wrap {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

.brandmark {
    display: flex;
    align-items: center;
    gap: 18px;
    text-decoration: none;
    color: #fff;
}

.brand-logo {
    width: 72px;
    height: 72px;
    object-fit: contain;
    flex-shrink: 0;
}

.brand-text {
    display: flex;
    flex-direction: column;
}

    .brand-text h2 {
        margin: 0;
        font-family: var(--display);
        font-size: 2rem;
        font-weight: 700;
        color: #fff;
        line-height: 1;
        letter-spacing: .02em;
    }

    .brand-text .centre-name {
        margin-top: 8px;
        font-size: .82rem;
        color: var(--gold);
        letter-spacing: 3px;
        line-height: 1.5;
        text-transform: uppercase;
        font-weight: 600;
    }*/

/* .brandmark{
  display:flex; align-items:center; gap:12px;
  text-decoration:none; color:var(--paper);
}
.brandmark .glyph{
  width:38px; height:38px; border:1px solid currentColor; border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  font-family:var(--display); font-weight:700; font-size:16px; letter-spacing:.02em;
}
.brandmark .word{display:flex; flex-direction:column; line-height:1.1;}
.brandmark .word b{font-family:var(--display); font-size:19px; font-weight:700; letter-spacing:.02em;}
.brandmark .word span{font-family:var(--mono); font-size:9.5px; letter-spacing:.1em; text-transform:uppercase; opacity:.75;}
 */


/*nav.links {
    display: flex;
    align-items: center;
    gap: 34px;
}*/
    /* nav.links a{
  color:var(--paper); text-decoration:none; font-size:13.5px; font-weight:500;
  letter-spacing:.02em; position:relative; padding-bottom:4px;
} */

    /*nav.links a {
        color: #fff;
        text-decoration: none;
        font-size: 14px;
        font-weight: 600;
        letter-spacing: .05em;
        text-transform: uppercase;
        transition: .3s;
        position: relative;
    }

        nav.links a::after {
            content: "";
            position: absolute;
            left: 0;
            bottom: 0;
            height: 1px;
            width: 0%;
            background: var(--gold);
            transition: width .3s var(--ease);
        }

        nav.links a:hover::after {
            width: 100%;
        }

    nav.links a {
        white-space: nowrap;
    }*/
/* .nav-cta{
  border:1px solid rgba(246,244,238,.55);
  padding:9px 18px; border-radius:2px; font-size:12.5px !important; font-weight:700 !important;
  text-transform:uppercase; letter-spacing:.08em !important;
} */

/*.nav-cta {
    background: transparent;
    border: 2px solid var(--gold);
    color: #fff !important;
    padding: 12px 28px;
    border-radius: 4px;
    white-space: nowrap;
    font-weight: 700;
    letter-spacing: .08em !important;
    transition: .35s;
}

    .nav-cta:hover {
        background: var(--gold);
        color: var(--royal-deep) !important;
    }*/
/* .nav-cta:hover{background:var(--paper); color:var(--royal-deep);}
.nav-cta::after{display:none;}
 */
/* header.site-nav.scrolled{
  background:rgba(0,27,77,.94);
  backdrop-filter:blur(10px);
  padding:13px 0;
  box-shadow:0 8px 30px rgba(0,0,0,.18);
} */

/*header.site-nav.scrolled {
    background: rgba(0,31,84,.97);
    backdrop-filter: blur(12px);
    box-shadow: 0 10px 30px rgba(0,0,0,.25);
    padding: 12px 0;
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--paper);
    cursor: pointer;
    padding: 6px;
}

    .mobile-toggle svg {
        width: 24px;
        height: 24px;
    }

@@media (max-width:900px) {
    nav.links {
        position: fixed;
        inset: 0 0 0 auto;
        width: min(320px,82vw);
        height: 100vh;
        background: var(--royal-deep);
        flex-direction: column;
        align-items: flex-start;
        padding: 100px 32px 40px;
        gap: 26px;
        transform: translateX(100%);
        transition: transform .45s var(--ease);

        .brand-logo {
            width: 56px;
            height: 56px;
        }

        .brand-text h2 {
            font-size: 1.4rem;
        }

        .brand-text span {
            font-size: .6rem;
            letter-spacing: .12em;
        }
    }

        nav.links.open {
            transform: translateX(0);
        }

        nav.links a {
            font-size: 17px;
        }

    .mobile-toggle {
        display: block;
    }
}*/


/* ============================================================
   HERO
   ============================================================ */
/*.hero {
    position: relative;
    min-height: 100vh;
    background: linear-gradient(175deg, var(--royal-deep) 0%, var(--royal) 62%, #04326b 100%);
    color: var(--paper);
    overflow: hidden;
    padding-top: 150px;
    padding-bottom: 80px;
    display: flex;
    align-items: center;
}

.hero-grain {
    position: absolute;
    inset: 0;
    opacity: .05;
    pointer-events: none;
    mix-blend-mode: overlay;
    z-index: 3;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.hero-photo {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

    .hero-photo img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center 62%;
        filter: grayscale(1) contrast(1.12) brightness(.8);
    }

.hero-tint {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: var(--royal);
    opacity: .5;
    mix-blend-mode: color;
}

.hero-scrim {
    position: absolute;
    inset: 0;
    z-index: 2;
    background: linear-gradient(100deg, rgba(0,27,77,.97) 0%, rgba(0,27,77,.86) 32%, rgba(0,48,135,.48) 58%, rgba(0,48,135,.28) 100%);
}

.hero-bottom-fade {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 180px;
    z-index: 2;
    pointer-events: none;
    background: linear-gradient(to bottom, rgba(0,27,77,0) 0%, var(--royal-deep) 96%);
}

.hero .wrap {
    position: relative;
    z-index: 4;
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 40px;
    align-items: center;
}

.hero-copy .eyebrow {
    margin-bottom: 26px;
}

.hero h1 {
    font-size: clamp(2.6rem, 5vw, 4.35rem);
    font-weight: 600;
    line-height: 1.03;
    letter-spacing: -.01em;
}

    .hero h1 em {
        font-style: italic;
        font-weight: 500;
        color: var(--gold-soft);
    }

.hero .tagline {
    margin-top: 26px;
    font-family: var(--display);
    font-style: italic;
    font-size: clamp(1.15rem,1.7vw,1.45rem);
    color: rgba(246,244,238,.88);
    max-width: 34ch;
    line-height: 1.45;
}

.hero-actions {
    display: flex;
    gap: 16px;
    margin-top: 44px;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    gap: 0;
    margin-top: 64px;
    border-top: 1px solid rgba(246,244,238,.18);
    padding-top: 26px;
}

    .hero-stats .stat {
        flex: 1;
        padding-right: 20px;
    }

        .hero-stats .stat b {
            display: block;
            font-family: var(--mono);
            font-size: clamp(1.3rem,2vw,1.9rem);
            color: var(--gold-soft);
            font-weight: 500;
        }

        .hero-stats .stat span {
            font-size: 12px;
            color: rgba(246,244,238,.7);
            letter-spacing: .01em;
        }*/

/* Basin map — signature visual */
/*.basin-stage {
    position: relative;
    aspect-ratio: 1/1.05;
    max-width: 520px;
    justify-self: end;
    background: rgba(0,27,77,.5);
    border: 1px solid rgba(246,244,238,.14);
    border-radius: 4px;
    backdrop-filter: blur(6px);
    padding: 34px 30px;
}

    .basin-stage svg {
        width: 100%;
        height: 100%;
        overflow: visible;
    }

.basin-caption {
    position: absolute;
    bottom: -6px;
    left: 0;
    right: 0;
    font-family: var(--mono);
    font-size: 10.5px;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: rgba(246,244,238,.55);
    text-align: center;
}

.river-path {
    fill: none;
    stroke: var(--teal-soft);
    stroke-width: 1.6;
    opacity: .85;
    stroke-dasharray: 6 6000;
    animation: draw 5s var(--ease) forwards;
}

    .river-path.p2 {
        animation-delay: .3s;
        stroke: var(--gold-soft);
        opacity: .7;
    }

    .river-path.p3 {
        animation-delay: .6s;
        stroke: #8FB8FF;
        opacity: .6;
    }

@@keyframes draw {
    to {
        stroke-dashoffset: 0;
        stroke-dasharray: 6 3;
    }
}

.basin-node {
    fill: var(--gold-soft);
    r: 3.4;
}

    .basin-node.hq {
        fill: var(--gold);
        r: 5.5;
        stroke: var(--paper);
        stroke-width: 1.4;
    }

.node-pulse {
    fill: none;
    stroke: var(--gold);
    stroke-width: 1.2;
    opacity: 0;
    transform-origin: center;
    transform-box: fill-box;
    animation: pulse 2.6s ease-out infinite;
}

@@keyframes pulse {
    0% {
        opacity: .7;
        transform: scale(.4);
    }

    100% {
        opacity: 0;
        transform: scale(3.4);
    }
}

.basin-label {
    font-family: var(--mono);
    font-size: 9.5px;
    fill: rgba(246,244,238,.62);
    letter-spacing: .04em;
}

    .basin-label.hq {
        fill: var(--gold-soft);
        font-weight: 500;
        font-size: 10.5px;
    }

.scroll-cue {
    position: absolute;
    bottom: 26px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    z-index: 4;
    color: rgba(246,244,238,.55);
}

    .scroll-cue span {
        font-family: var(--mono);
        font-size: 9.5px;
        letter-spacing: .14em;
        text-transform: uppercase;
    }

    .scroll-cue .line {
        width: 1px;
        height: 34px;
        background: linear-gradient(rgba(246,244,238,.7), transparent);
        animation: cuemove 1.8s ease-in-out infinite;
    }

@@keyframes cuemove {
    0%, 100% {
        transform: scaleY(1);
        opacity: .5;
    }

    50% {
        transform: scaleY(.55);
        opacity: 1;
    }
}

@@media (max-width:900px) {
    .hero .wrap {
        grid-template-columns: 1fr;
        text-align: left;
    }

    .basin-stage {
        max-width: 340px;
        margin: 20px auto 0;
        justify-self: center;
    }

    .hero-stats {
        flex-wrap: wrap;
        row-gap: 22px;
    }

        .hero-stats .stat {
            flex: 1 1 45%;
        }
}*/

/* ============================================================
   SECTION SCAFFOLDING
   ============================================================ */
/*section {
    position: relative;
    padding: 118px 0;
}

    section.tight {
        padding: 90px 0;
    }

.section-head {
    display: grid;
    grid-template-columns: .9fr 1.6fr;
    gap: 60px;
    margin-bottom: 64px;
}

    .section-head h2 {
        font-size: clamp(2rem,3.4vw,2.9rem);
        line-height: 1.08;
        letter-spacing: -.005em;
    }

    .section-head .lede {
        font-size: 17px;
        color: var(--ink-soft);
        max-width: 52ch;
        padding-top: 6px;
    }

@@media (max-width:860px) {
    .section-head {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

.band-alt {
    background: var(--paper-alt);
}

.band-dark {
    background: linear-gradient(180deg,var(--royal-deep), #001433);
    color: var(--paper);
}

    .band-dark .eyebrow {
        color: var(--gold-soft);
    }

        .band-dark .eyebrow::before {
            background: var(--gold-soft);
        }

.hr {
    height: 1px;
    background: var(--paper-line);
    width: 100%;
}*/

/* ============================================================
   VISION & MISSION
   ============================================================ */
/*.vm-grid {
    display: grid;
    grid-template-columns: 1fr 1px 1fr;
    gap: 56px;
}

    .vm-grid .divider {
        background: var(--paper-line);
    }

.vm-block .tag {
    font-family: var(--mono);
    font-size: 11.5px;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--royal);
    margin-bottom: 18px;
    display: block;
}

.vm-block h3 {
    font-size: clamp(1.6rem,2.4vw,2.1rem);
    font-style: italic;
    font-weight: 500;
    line-height: 1.28;
    color: var(--royal-deep);
}

.vm-block p.body-text {
    margin-top: 22px;
    font-size: 15.5px;
    color: var(--ink-soft);
    line-height: 1.75;
}

@@media (max-width:820px) {
    .vm-grid {
        grid-template-columns: 1fr;
        gap: 34px;
    }

        .vm-grid .divider {
            height: 1px;
            width: 100%;
        }
}*/

/* ============================================================
   CLUSTERS / THEMATIC FOCUS
   ============================================================ */
/*.cluster-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 2px;
    margin-bottom: 0;
    border: 1px solid var(--paper-line);
}

.cluster-tab {
    flex: 1 1 220px;
    background: var(--paper);
    border: none;
    border-right: 1px solid var(--paper-line);
    padding: 26px 24px;
    text-align: left;
    cursor: pointer;
    font-family: var(--body);
    transition: background .3s, color .3s;
    position: relative;
}

    .cluster-tab:last-child {
        border-right: none;
    }

    .cluster-tab .letter {
        font-family: var(--display);
        font-size: 2.1rem;
        font-weight: 600;
        color: var(--royal);
        line-height: 1;
        display: block;
        margin-bottom: 10px;
        transition: color .3s;
    }

    .cluster-tab .name {
        font-size: 13.5px;
        font-weight: 700;
        letter-spacing: .01em;
        line-height: 1.35;
        display: block;
    }

    .cluster-tab .count {
        display: block;
        margin-top: 10px;
        font-family: var(--mono);
        font-size: 10.5px;
        color: var(--ink-soft);
        letter-spacing: .06em;
        text-transform: uppercase;
    }

    .cluster-tab.active {
        background: var(--royal-deep);
        color: var(--paper);
    }

        .cluster-tab.active .letter {
            color: var(--gold-soft);
        }

        .cluster-tab.active .count {
            color: rgba(246,244,238,.65);
        }

    .cluster-tab:hover:not(.active) {
        background: var(--paper-alt);
    }

.cluster-panels {
    border: 1px solid var(--paper-line);
    border-top: none;
    padding: 52px 48px;
    background: var(--white);
}

.cluster-panel {
    display: none;
}

    .cluster-panel.active {
        display: block;
        animation: fadein .5s var(--ease);
    }

@@keyframes fadein {
    from {
        opacity: 0;
        transform: translateY(8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.cluster-panel .panel-head {
    display: flex;
    align-items: baseline;
    gap: 18px;
    margin-bottom: 34px;
    flex-wrap: wrap;
}

    .cluster-panel .panel-head h3 {
        font-size: clamp(1.5rem,2.6vw,2.1rem);
        color: var(--royal-deep);
        font-weight: 600;
    }

    .cluster-panel .panel-head .badge {
        font-family: var(--mono);
        font-size: 11px;
        letter-spacing: .08em;
        text-transform: uppercase;
        background: var(--teal);
        color: var(--white);
        padding: 5px 11px;
        border-radius: 20px;
    }

.foci-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    background: var(--paper-line);
    border: 1px solid var(--paper-line);
}

    .foci-list li {
        background: var(--paper);
        padding: 22px 24px;
        font-size: 14.8px;
        line-height: 1.5;
        color: var(--ink);
        display: flex;
        gap: 14px;
        align-items: flex-start;
    }

        .foci-list li::before {
            content: "";
            width: 6px;
            height: 6px;
            margin-top: 8px;
            flex: none;
            border-radius: 50%;
            background: var(--gold);
        }

@@media (max-width:760px) {
    .foci-list {
        grid-template-columns: 1fr;
    }

    .cluster-panels {
        padding: 34px 22px;
    }

    .cluster-tab {
        flex: 1 1 45%;
    }
}

.geo-strip {
    margin-top: 54px;
    display: grid;
    grid-template-columns: .85fr 1.15fr;
    gap: 48px;
    align-items: center;
    border-top: 1px solid var(--paper-line);
    padding-top: 54px;
}

    .geo-strip .rivers {
        display: flex;
        gap: 28px;
        margin-top: 22px;
        flex-wrap: wrap;
    }

    .geo-strip .river {
        font-family: var(--mono);
        font-size: 11.5px;
        text-transform: uppercase;
        letter-spacing: .06em;
        color: var(--royal);
        border-left: 2px solid var(--teal);
        padding-left: 10px;
    }

.geo-mini svg {
    width: 100%;
    max-width: 300px;
}

@@media (max-width:820px) {
    .geo-strip {
        grid-template-columns: 1fr;
    }
}*/

/* ============================================================
   MODEL — 4 pillars
   ============================================================ */
/*.pillars {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 1px;
    background: var(--paper-line);
    border: 1px solid var(--paper-line);
}

.pillar-card {
    background: var(--paper);
    padding: 38px 28px;
    display: flex;
    flex-direction: column;
    gap: 18px;
    transition: background .35s;
}

    .pillar-card:hover {
        background: var(--white);
    }

    .pillar-card .icon {
        width: 40px;
        height: 40px;
        color: var(--royal);
    }

    .pillar-card h4 {
        font-size: 17px;
        font-weight: 700;
        font-family: var(--body);
        color: var(--royal-deep);
        letter-spacing: .01em;
    }

    .pillar-card p {
        font-size: 14px;
        color: var(--ink-soft);
        line-height: 1.65;
    }

    .pillar-card .num {
        font-family: var(--mono);
        font-size: 11px;
        color: var(--gold);
        letter-spacing: .08em;
    }

@@media (max-width:980px) {
    .pillars {
        grid-template-columns: 1fr 1fr;
    }
}

@@media (max-width:600px) {
    .pillars {
        grid-template-columns: 1fr;
    }
}*/

/* ============================================================
   METRICS
   ============================================================ */
/*.metrics {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 1px;
    background: rgba(246,244,238,.14);
}

.metric-card {
    background: transparent;
    padding: 44px 30px;
    position: relative;
}

    .metric-card .eyebrow {
        margin-bottom: 22px;
    }

    .metric-card .figure {
        font-family: var(--mono);
        font-size: clamp(1.6rem,2.6vw,2.2rem);
        color: var(--gold-soft);
        font-weight: 500;
        display: block;
    }

        .metric-card .figure small {
            font-family: var(--body);
            font-size: 13px;
            color: rgba(246,244,238,.7);
            display: block;
            margin-top: 6px;
            font-weight: 400;
            line-height: 1.5;
        }

    .metric-card ul {
        list-style: none;
        margin: 16px 0 0;
        padding: 0;
        display: flex;
        flex-direction: column;
        gap: 8px;
    }

    .metric-card li {
        font-size: 13px;
        color: rgba(246,244,238,.72);
        line-height: 1.5;
        padding-left: 14px;
        position: relative;
    }

        .metric-card li::before {
            content: "—";
            position: absolute;
            left: 0;
            color: var(--teal-soft);
        }

@@media (max-width:980px) {
    .metrics {
        grid-template-columns: 1fr 1fr;
    }
}

@@media (max-width:600px) {
    .metrics {
        grid-template-columns: 1fr;
    }
}*/

/* ============================================================
   WHY NOW — narrative band
   ============================================================ */
/*.why-now {
    max-width: 900px;
}

    .why-now .lead {
        font-family: var(--display);
        font-style: italic;
        font-weight: 500;
        font-size: clamp(1.5rem,2.6vw,2.15rem);
        line-height: 1.5;
        color: var(--paper);
    }

        .why-now .lead .hl {
            color: var(--gold-soft);
            font-style: normal;
            font-weight: 600;
        }

    .why-now .fine {
        margin-top: 34px;
        font-size: 15px;
        color: rgba(246,244,238,.72);
        max-width: 62ch;
        line-height: 1.8;
    }*/

/* ============================================================
   TEAM
   ============================================================ */
/*.team-note {
    background: var(--paper-alt);
    border: 1px dashed var(--royal-mid);
    padding: 16px 22px;
    margin-bottom: 44px;
    font-size: 13px;
    color: var(--royal-deep);
    font-family: var(--mono);
    letter-spacing: .01em;
    line-height: 1.6;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 34px;
}

.person {
    background: var(--white);
    border: 1px solid var(--paper-line);
}*/
    /* .person .portrait{
  aspect-ratio:4/4.6; background:linear-gradient(155deg,var(--royal) 0%,var(--royal-deep) 100%);
  position:relative; display:flex; align-items:center; justify-content:center; overflow:hidden;
} */

    /*.person .portrait {
        aspect-ratio: 4/4.6;
        background: #f5f5f5;
        position: relative;
        overflow: hidden;
        display: flex;
        justify-content: center;
        align-items: flex-start;*/ /* keeps the head visible */
    /*}

.portrait-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;*/ /* focus on the face instead of the chest */
    /*display: block;
}

.person .portrait .initials {
    font-family: var(--display);
    font-size: 3rem;
    color: rgba(246,244,238,.9);
    font-weight: 600;
}

.person .portrait::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 30% 20%, rgba(201,151,42,.28), transparent 55%);
}

.person .meta {
    padding: 22px 24px 26px;
}

.person .name {
    font-size: 17px;
    font-weight: 700;
    color: var(--royal-deep);
    font-family: var(--body);
}

.person .role {
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--teal);
    margin-top: 6px;
    display: block;
}

.person .bio {
    font-size: 13.5px;
    color: var(--ink-soft);
    margin-top: 14px;
    line-height: 1.6;
}

@@media (max-width:980px) {
    .team-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@@media (max-width:600px) {
    .team-grid {
        grid-template-columns: 1fr;
    }
}





.profile-content {
    background: #fff;
    width: min(760px,92%);
    max-height: 90vh;
    overflow-y: auto;
    border-radius: 8px;
    padding: 40px;
    position: relative;
}

.profile-header {
    text-align: center;
}

.profile-photo {
    width: 220px;
    height: 220px;
    object-fit: cover;
    border-radius: 8px;
    display: block;
    margin: 0 auto 24px;
}

.profile-header h2 {
    margin-bottom: 8px;
    color: var(--royal-deep);
    font-family: var(--display);
}

.profile-header h5 {
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 25px;
}

.profile-content h4 {
    margin-top: 30px;
    margin-bottom: 15px;
    color: var(--royal-deep);
}

.profile-content p {
    line-height: 1.9;
    text-align: justify;
}

.interest-list {
    margin-left: 22px;
    line-height: 2;
}

.profile-footer {
    text-align: center;
    margin-top: 40px;
}

.profile-back {
    background: var(--royal-deep);
    color: #fff;
    border: none;
    padding: 12px 30px;
    cursor: pointer;
    border-radius: 4px;
    font-weight: 600;
    transition: .3s;
}

    .profile-back:hover {
        background: var(--gold);
        color: #fff;
    }*/
/* ============================================================
   GET INVOLVED — audience tracks
   ============================================================ */
/*.tracks {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 1px;
    background: var(--paper-line);
    border: 1px solid var(--paper-line);
}

.track {
    background: var(--paper);
    padding: 40px 32px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    transition: background .3s, transform .3s;
}

    .track:hover {
        background: var(--white);
        transform: translateY(-4px);
    }

    .track .tk-eyebrow {
        font-family: var(--mono);
        font-size: 11px;
        letter-spacing: .1em;
        text-transform: uppercase;
        color: var(--gold);
    }

    .track h4 {
        font-size: 20px;
        color: var(--royal-deep);
        font-family: var(--display);
        font-weight: 600;
    }

    .track p {
        font-size: 14px;
        color: var(--ink-soft);
        line-height: 1.65;
        flex-grow: 1;
    }

    .track a.tk-link {
        font-size: 13.5px;
        font-weight: 700;
        color: var(--royal);
        text-decoration: none;
        display: inline-flex;
        align-items: center;
        gap: 8px;
    }

        .track a.tk-link svg {
            width: 13px;
            height: 13px;
            transition: transform .3s;
        }

        .track a.tk-link:hover svg {
            transform: translateX(4px);
        }

@@media (max-width:900px) {
    .tracks {
        grid-template-columns: 1fr;
    }
}

.contact-cta {
    margin-top: 70px;
    padding: 56px;
    background: var(--royal-deep);
    color: var(--paper);
    display: grid;
    grid-template-columns: 1.3fr .7fr;
    gap: 40px;
    align-items: center;
}

    .contact-cta h3 {
        font-size: clamp(1.6rem,2.6vw,2.2rem);
        font-weight: 600;
        line-height: 1.2;
    }

    .contact-cta p {
        margin-top: 16px;
        color: rgba(246,244,238,.72);
        font-size: 14.5px;
        max-width: 48ch;
    }

    .contact-cta .actions {
        display: flex;
        flex-direction: column;
        gap: 14px;
        align-items: flex-end;
    }

@@media (max-width:820px) {
    .contact-cta {
        grid-template-columns: 1fr;
        padding: 38px 26px;
    }

        .contact-cta .actions {
            align-items: flex-start;
        }
}*/

/* ============================================================
   FOOTER
   ============================================================ */
/*footer {
    background: var(--ink);
    color: rgba(246,244,238,.6);
    padding: 64px 0 30px;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(246,244,238,.12);
}

.footer-brand .brandmark {
    color: var(--paper);
    margin-bottom: 16px;
}

.footer-brand p {
    font-size: 13px;
    line-height: 1.7;
    max-width: 34ch;
    color: rgba(246,244,238,.55);
}

.footer-col h5 {
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--gold-soft);
    margin-bottom: 18px;
    font-weight: 500;
}

.footer-col a {
    display: block;
    font-size: 13.5px;
    color: rgba(246,244,238,.68);
    text-decoration: none;
    margin-bottom: 12px;
    transition: color .25s;
}

    .footer-col a:hover {
        color: var(--gold-soft);
    }

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 26px;
    font-size: 12px;
    color: rgba(246,244,238,.4);
    flex-wrap: wrap;
    gap: 14px;
}

@@media (max-width:820px) {
    .footer-top {
        grid-template-columns: 1fr 1fr;
        row-gap: 34px;
    }
}*/

/* reveal-on-scroll */
/*.reveal {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity .8s var(--ease), transform .8s var(--ease);
}

    .reveal.in {
        opacity: 1;
        transform: translateY(0);
    }*/

/*============================================================ -->
CONTENT
============================================================ -->*/
.profile-page {
    background: #f7f7f7;
    padding: 140px 0 80px;
}

.profile-container {
    width: 90%;
    align-items: flex-start;
    max-width: 1250px;
    margin: auto;
    background: #fff;
    display: grid;
    grid-template-columns: 340px 1fr;
    gap: 40px;
    padding: 45px;
    box-shadow: 0 15px 40px rgba(0,0,0,.08);
}

.profile-left {
    text-align: center;
}

.profile-image {
    width: 100%;
    border-radius: 6px;
    object-fit: cover;
    box-shadow: 0 10px 30px rgba(0,0,0,.15);
}

.profile-left h2 {
    margin-top: 25px;
    color: #0b2d6b;
    font-size: 30px;
}

.profile-position {
    color: #C9972A;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 10px;
}

.back-btn {
    display: inline-block;
    margin-top: 35px;
    padding: 12px 28px;
    border: 2px solid #0b2d6b;
    color: #0b2d6b;
    text-decoration: none;
    transition: .3s;
}

    .back-btn:hover {
        background: #0b2d6b;
        color: #fff;
    }

.profile-right h1 {
    color: #0b2d6b;
    margin-bottom: 8px;
    font-size: 42px;
}

.profile-right .title {
    color: #C9972A;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}


.profile-right section {
    margin-bottom: 45px;
}

.profile-right section {
    margin-top: 0;
    margin-bottom: 10px;
}

.profile-right h3 {
    color: #0b2d6b;
    border-bottom: 2px solid #ddd;
    padding-bottom: 12px;
    margin-bottom: 25px;
}

.profile-right p {
    line-height: 2;
    text-align: justify;
    margin-bottom: 22px;
    color: #444;
}

.profile-right ul {
    margin-left: 20px;
}

.profile-right li {
    margin-bottom: 12px;
    line-height: 1.8;
}

@@media(max-width:900px) {

    .profile-container {
        grid-template-columns: 1fr;
    }

    .profile-left {
        max-width: 380px;
        margin: auto;
    }

    .profile-right h1 {
        font-size: 34px;
    }
}
/* ============================================================
   TABLET + MOBILE PROFILE
============================================================ */

@media (max-width: 900px) {

    .profile-page {
        padding: 115px 0 60px;
    }

    .profile-container {
        width: 92%;
        max-width: 750px;
        margin: 0 auto;
        /* IMPORTANT:
           Change the mobile layout to flex so we can
           place the Back button AFTER the entire profile. */
        display: flex;
        flex-direction: column;
        gap: 0;
        padding: 30px;
        background: #fff;
        box-shadow: 0 8px 30px rgba(0, 0, 0, .08);
    }

    /* --------------------------------------------------------
       PROFILE LEFT
       We make its contents participate directly in the
       profile-container so the Back button can move below
       the complete profile.
    -------------------------------------------------------- */

    .profile-left {
        display: contents;
    }

    /* --------------------------------------------------------
       PROFILE IMAGE
    -------------------------------------------------------- */

    .profile-image {
        order: 1;
        width: 100%;
        height: auto;
        /* IMPORTANT:
           Remove the height restriction that was cropping
           the person's face. */
        max-height: none;
        object-fit: contain;
        object-position: center;
        display: block;
        margin: 0 auto 25px;
        border-radius: 6px;
        box-shadow: 0 8px 25px rgba(0, 0, 0, .12);
    }

    /* These are duplicated because the name/title already
       appear in .profile-right */
    .profile-left h2,
    .profile-position {
        display: none;
        color: #C9972A;
        font-weight: 600;
    }

    /* --------------------------------------------------------
       MAIN PROFILE INFORMATION
    -------------------------------------------------------- */

    .profile-right {
        order: 2;
        width: 100%;
    }

        .profile-right h1 {
            font-size: 34px;
            line-height: 1.2;
            margin: 0 0 10px;
        }

        .profile-right .title {
            font-size: 16px;
            line-height: 1.6;
            letter-spacing: 1px;
            margin-bottom: 30px;
        }

        .profile-right section {
            margin-top: 0;
            margin-bottom: 40px;
        }

        .profile-right h3 {
            font-size: 23px;
            line-height: 1.3;
            color: #0b2d6b;
            border-bottom: 2px solid #ddd;
            padding-bottom: 10px;
            margin-bottom: 20px;
        }

        .profile-right p {
            font-size: 16px;
            line-height: 1.85;
            text-align: left;
            color: #444;
            margin-bottom: 20px;
        }

        .profile-right ul {
            margin: 0;
            padding-left: 22px;
        }

        .profile-right li {
            font-size: 16px;
            line-height: 1.75;
            margin-bottom: 12px;
        }

    /* --------------------------------------------------------
       BACK BUTTON
       
       THIS IS THE IMPORTANT PART.
       
       It now appears AFTER .profile-right, regardless of
       the fact that it originally exists inside .profile-left.
    -------------------------------------------------------- */

    .back-btn {
        order: 3;
        display: block;
        width: 100%;
        box-sizing: border-box;
        text-align: center;
        margin: 15px 0 0;
        padding: 14px 20px;
        border: 2px solid #0b2d6b;
        color: #0b2d6b;
        background: #fff;
        text-decoration: none;
        font-size: 15px;
        transition: .3s;
    }

        .back-btn:hover {
            background: #0b2d6b;
            color: #fff;
        }
}


/* ============================================================
   MOBILE PHONE
============================================================ */

@media (max-width: 600px) {

    .profile-page {
        padding: 105px 0 45px;
    }

    .profile-container {
        width: 94%;
        margin: 0 auto;
        padding: 18px 15px 25px;
        display: flex;
        flex-direction: column;
        box-shadow: 0 6px 22px rgba(0, 0, 0, .07);
    }

    /* --------------------------------------------------------
       FULL IMAGE — NO CROPPING
    -------------------------------------------------------- */

    .profile-image {
        order: 1;
        width: 100%;
        /* Let the actual image determine its height */
        height: auto;
        max-height: none;
        object-fit: contain;
        object-position: center;
        display: block;
        margin: 0 auto 25px;
        border-radius: 6px;
        box-shadow: 0 7px 20px rgba(0, 0, 0, .12);
    }

    /* Hide duplicated information */
    .profile-left h2,
    .profile-position {
        display: none;
    }

    /* --------------------------------------------------------
       PROFILE CONTENT
    -------------------------------------------------------- */

    .profile-right {
        order: 2;
        width: 100%;
    }

        .profile-right h1 {
            font-size: 28px;
            line-height: 1.2;
            margin: 0 0 9px;
        }

        .profile-right .title {
            font-size: 13px;
            line-height: 1.6;
            letter-spacing: .8px;
            margin-bottom: 28px;
        }

        .profile-right section {
            margin-top: 0;
            margin-bottom: 32px;
        }

        .profile-right h3 {
            font-size: 20px;
            line-height: 1.35;
            padding-bottom: 9px;
            margin-bottom: 18px;
        }

        .profile-right p {
            font-size: 15px;
            line-height: 1.8;
            text-align: left;
            margin-bottom: 18px;
        }

        .profile-right ul {
            margin: 0;
            padding-left: 20px;
        }

        .profile-right li {
            font-size: 15px;
            line-height: 1.75;
            margin-bottom: 10px;
        }

    /* --------------------------------------------------------
       BACK BUTTON — ALWAYS LAST
    -------------------------------------------------------- */

    .back-btn {
        order: 3;
        width: 100%;
        display: block;
        box-sizing: border-box;
        margin: 15px 0 0;
        padding: 13px 16px;
        text-align: center;
        font-size: 14px;
        border: 2px solid #0b2d6b;
        background: #fff;
        color: #0b2d6b;
    }
}


/* ============================================================
   VERY SMALL PHONES
============================================================ */

@media (max-width: 380px) {

    .profile-page {
        padding-top: 100px;
    }

    .profile-container {
        width: 95%;
        padding: 15px 12px 22px;
    }

    .profile-image {
        width: 100%;
        height: auto;
        max-height: none;
    }

    .profile-right h1 {
        font-size: 24px;
    }

    .profile-right .title {
        font-size: 12px;
    }

    .profile-right h3 {
        font-size: 18px;
    }

    .profile-right p,
    .profile-right li {
        font-size: 14px;
    }

    .back-btn {
        font-size: 13px;
        padding: 12px 14px;
    }
}
/*</style >*/



/* ============================================================
   TOKENS
   ============================================================ */
:root {
    --ink: #0B1220;
    --ink-soft: #3A4252;
    --paper: #F6F4EE;
    --paper-alt: #ECE8DD;
    --paper-line: rgba(11,18,32,.13);
    --royal: #003087;
    --royal-deep: #001B4D;
    --royal-mid: #0A3E9A;
    --gold: #C9972A;
    --gold-soft: #E4C57A;
    --teal: #0E7C7B;
    --teal-soft: #BFE0DD;
    --white: #FFFFFF;
    --display: 'Cormorant Garamond', serif;
    --body: 'DM Sans', sans-serif;
    --mono: 'IBM Plex Mono', monospace;
    --wrap: min(1240px, 92vw);
    --ease: cubic-bezier(.22,.68,.16,1);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    * {
        animation-duration: .001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .001ms !important;
        scroll-behavior: auto !important;
    }
}

body {
    margin: 0;
    background: var(--paper);
    color: var(--ink);
    font-family: var(--body);
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

img, svg {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
}

h1, h2, h3, h4 {
    margin: 0;
    font-family: var(--display);
    font-weight: 600;
    letter-spacing: .002em;
}

p {
    margin: 0;
}

.wrap {
    width: var(--wrap);
    margin: 0 auto;
}

::selection {
    background: var(--gold-soft);
    color: var(--royal-deep);
}

:focus-visible {
    outline: 2.5px solid var(--gold);
    outline-offset: 3px;
}

.eyebrow {
    font-family: var(--mono);
    font-size: 12.5px;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--teal);
    display: flex;
    align-items: center;
    gap: 10px;
}

    .eyebrow::before {
        content: "";
        width: 22px;
        height: 1px;
        background: var(--teal);
        display: inline-block;
    }

    .eyebrow.on-dark {
        color: var(--gold-soft);
    }

        .eyebrow.on-dark::before {
            background: var(--gold-soft);
        }

.btn {
    font-family: var(--body);
    font-weight: 700;
    font-size: 14.5px;
    letter-spacing: .01em;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 26px;
    border-radius: 2px;
    text-decoration: none;
    cursor: pointer;
    border: 1px solid transparent;
    transition: transform .35s var(--ease), background .3s, color .3s, border-color .3s;
}

    .btn:hover {
        transform: translateY(-2px);
    }

.btn-gold {
    background: var(--gold);
    color: var(--royal-deep);
}

    .btn-gold:hover {
        background: var(--gold-soft);
    }

.btn-outline {
    border-color: currentColor;
    color: inherit;
    background: transparent;
}

    .btn-outline:hover {
        background: var(--ink);
        color: var(--paper);
        border-color: var(--ink);
    }

    .btn-outline.on-dark {
        border-color: rgba(246,244,238,.55);
        color: var(--paper);
    }

        .btn-outline.on-dark:hover {
            background: var(--paper);
            color: var(--royal-deep);
        }

.btn svg {
    width: 14px;
    height: 14px;
}

/* ============================================================
   NAV
   ============================================================ */
header.site-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 20px 0;
    transition: background .4s var(--ease), padding .4s var(--ease), box-shadow .4s var(--ease);
}

    header.site-nav .wrap {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

.brandmark {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--paper, #fff);
    margin-right: 1.5rem;
}

.brand-logo {
    width: 48px;
    height: 48px;
    object-fit: contain;
    flex-shrink: 0;
}

.brand-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    line-height: 1.2;
}

    .brand-text h2 {
        margin: 0;
        font-family: var(--display, sans-serif);
        font-size: 1.15rem;
        font-weight: 700;
        color: #fff;
        line-height: 1.1;
        letter-spacing: .02em;
    }

    .brand-text .centre-name {
        margin-top: 3px;
        font-size: 0.68rem;
        color: var(--gold, #d4af37);
        letter-spacing: 1px;
        line-height: 1.3;
        text-transform: uppercase;
        font-weight: 600;
        opacity: 0.9;
    }

nav.links {
    display: flex;
    align-items: center;
    gap: 34px;
}

    nav.links a {
        color: var(--paper);
        text-decoration: none;
        font-size: 13.5px;
        font-weight: 500;
        letter-spacing: .02em;
        position: relative;
        padding-bottom: 4px;
    }

        nav.links a::after {
            content: "";
            position: absolute;
            left: 0;
            bottom: 0;
            height: 1px;
            width: 0%;
            background: var(--gold);
            transition: width .3s var(--ease);
        }

        nav.links a:hover::after {
            width: 100%;
        }

.nav-cta {
    border: 1px solid rgba(246,244,238,.55);
    padding: 9px 18px;
    border-radius: 2px;
    font-size: 12.5px !important;
    font-weight: 700 !important;
    text-transform: uppercase;
    letter-spacing: .08em !important;
}

    .nav-cta:hover {
        background: var(--paper);
        color: var(--royal-deep);
    }

    .nav-cta::after {
        display: none;
    }

header.site-nav.scrolled {
    background: rgba(0,27,77,.94);
    backdrop-filter: blur(10px);
    padding: 13px 0;
    box-shadow: 0 8px 30px rgba(0,0,0,.18);
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--paper);
    cursor: pointer;
    padding: 6px;
}

    .mobile-toggle svg {
        width: 24px;
        height: 24px;
    }

@media (max-width:900px) {
    nav.links {
        position: fixed;
        inset: 0 0 0 auto;
        width: min(320px,82vw);
        height: 100vh;
        background: var(--royal-deep);
        flex-direction: column;
        align-items: flex-start;
        padding: 100px 32px 40px;
        gap: 26px;
        transform: translateX(100%);
        transition: transform .45s var(--ease);
    }

        nav.links.open {
            transform: translateX(0);
        }

        nav.links a {
            font-size: 17px;
        }

    .mobile-toggle {
        display: block;
    }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
    position: relative;
    min-height: 100vh;
    background: linear-gradient(175deg, var(--royal-deep) 0%, var(--royal) 62%, #04326b 100%);
    color: var(--paper);
    overflow: hidden;
    padding-top: 150px;
    padding-bottom: 80px;
    display: flex;
    align-items: center;
}

.hero-grain {
    position: absolute;
    inset: 0;
    opacity: .05;
    pointer-events: none;
    mix-blend-mode: overlay;
    z-index: 3;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.hero-photo {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

    .hero-photo img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center 62%;
        filter: grayscale(1) contrast(1.12) brightness(.8);
    }

.hero-tint {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: var(--royal);
    opacity: .5;
    mix-blend-mode: color;
}

.hero-scrim {
    position: absolute;
    inset: 0;
    z-index: 2;
    background: linear-gradient(100deg, rgba(0,27,77,.97) 0%, rgba(0,27,77,.86) 32%, rgba(0,48,135,.48) 58%, rgba(0,48,135,.28) 100%);
}

.hero-bottom-fade {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 180px;
    z-index: 2;
    pointer-events: none;
    background: linear-gradient(to bottom, rgba(0,27,77,0) 0%, var(--royal-deep) 96%);
}

.hero .wrap {
    position: relative;
    z-index: 4;
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 40px;
    align-items: center;
}

.hero-copy .eyebrow {
    margin-bottom: 26px;
}

.hero h1 {
    font-size: clamp(2.6rem, 5vw, 4.35rem);
    font-weight: 600;
    line-height: 1.03;
    letter-spacing: -.01em;
}

    .hero h1 em {
        font-style: italic;
        font-weight: 500;
        color: var(--gold-soft);
    }

.hero .tagline {
    margin-top: 26px;
    font-family: var(--display);
    font-style: italic;
    font-size: clamp(1.15rem,1.7vw,1.45rem);
    color: rgba(246,244,238,.88);
    max-width: 34ch;
    line-height: 1.45;
}

.hero-actions {
    display: flex;
    gap: 16px;
    margin-top: 44px;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    gap: 0;
    margin-top: 64px;
    border-top: 1px solid rgba(246,244,238,.18);
    padding-top: 26px;
}

    .hero-stats .stat {
        flex: 1;
        padding-right: 20px;
    }

        .hero-stats .stat b {
            display: block;
            font-family: var(--mono);
            font-size: clamp(1.3rem,2vw,1.9rem);
            color: var(--gold-soft);
            font-weight: 500;
        }

        .hero-stats .stat span {
            font-size: 12px;
            color: rgba(246,244,238,.7);
            letter-spacing: .01em;
        }

/* Basin map — signature visual */
.basin-stage {
    position: relative;
    aspect-ratio: 1/1.05;
    max-width: 520px;
    justify-self: end;
    background: rgba(0,27,77,.5);
    border: 1px solid rgba(246,244,238,.14);
    border-radius: 4px;
    backdrop-filter: blur(6px);
    padding: 34px 30px;
}

    .basin-stage svg {
        width: 100%;
        height: 100%;
        overflow: visible;
    }

.basin-caption {
    position: absolute;
    bottom: -6px;
    left: 0;
    right: 0;
    font-family: var(--mono);
    font-size: 10.5px;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: rgba(246,244,238,.55);
    text-align: center;
}

.river-path {
    fill: none;
    stroke: var(--teal-soft);
    stroke-width: 1.6;
    opacity: .85;
    stroke-dasharray: 6 6000;
    animation: draw 5s var(--ease) forwards;
}

    .river-path.p2 {
        animation-delay: .3s;
        stroke: var(--gold-soft);
        opacity: .7;
    }

    .river-path.p3 {
        animation-delay: .6s;
        stroke: #8FB8FF;
        opacity: .6;
    }

@keyframes draw {
    to {
        stroke-dashoffset: 0;
        stroke-dasharray: 6 3;
    }
}

.basin-node {
    fill: var(--gold-soft);
    r: 3.4;
}

    .basin-node.hq {
        fill: var(--gold);
        r: 5.5;
        stroke: var(--paper);
        stroke-width: 1.4;
    }

.node-pulse {
    fill: none;
    stroke: var(--gold);
    stroke-width: 1.2;
    opacity: 0;
    transform-origin: center;
    transform-box: fill-box;
    animation: pulse 2.6s ease-out infinite;
}

@keyframes pulse {
    0% {
        opacity: .7;
        transform: scale(.4);
    }

    100% {
        opacity: 0;
        transform: scale(3.4);
    }
}

.basin-label {
    font-family: var(--mono);
    font-size: 9.5px;
    fill: rgba(246,244,238,.62);
    letter-spacing: .04em;
}

    .basin-label.hq {
        fill: var(--gold-soft);
        font-weight: 500;
        font-size: 10.5px;
    }

.scroll-cue {
    position: absolute;
    bottom: 26px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    z-index: 4;
    color: rgba(246,244,238,.55);
}

    .scroll-cue span {
        font-family: var(--mono);
        font-size: 9.5px;
        letter-spacing: .14em;
        text-transform: uppercase;
    }

    .scroll-cue .line {
        width: 1px;
        height: 34px;
        background: linear-gradient(rgba(246,244,238,.7), transparent);
        animation: cuemove 1.8s ease-in-out infinite;
    }

@keyframes cuemove {
    0%,100% {
        transform: scaleY(1);
        opacity: .5;
    }

    50% {
        transform: scaleY(.55);
        opacity: 1;
    }
}

@media (max-width:900px) {
    .hero .wrap {
        grid-template-columns: 1fr;
        text-align: left;
    }

    .basin-stage {
        max-width: 340px;
        margin: 20px auto 0;
        justify-self: center;
    }

    .hero-stats {
        flex-wrap: wrap;
        row-gap: 22px;
    }

        .hero-stats .stat {
            flex: 1 1 45%;
        }
}

/* ============================================================
   SECTION SCAFFOLDING
   ============================================================ */
section {
    position: relative;
    padding: 118px 0;
}

    section.tight {
        padding: 90px 0;
    }

.section-head {
    display: grid;
    grid-template-columns: .9fr 1.6fr;
    gap: 60px;
    margin-bottom: 64px;
}

    .section-head h2 {
        font-size: clamp(2rem,3.4vw,2.9rem);
        line-height: 1.08;
        letter-spacing: -.005em;
    }

    .section-head .lede {
        font-size: 17px;
        color: var(--ink-soft);
        max-width: 52ch;
        padding-top: 6px;
    }

@media (max-width:860px) {
    .section-head {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

.band-alt {
    background: var(--paper-alt);
}

.band-dark {
    background: linear-gradient(180deg,var(--royal-deep), #001433);
    color: var(--paper);
}

    .band-dark .eyebrow {
        color: var(--gold-soft);
    }

        .band-dark .eyebrow::before {
            background: var(--gold-soft);
        }

.hr {
    height: 1px;
    background: var(--paper-line);
    width: 100%;
}

/* ============================================================
   VISION & MISSION
   ============================================================ */
.vm-grid {
    display: grid;
    grid-template-columns: 1fr 1px 1fr;
    gap: 56px;
}

    .vm-grid .divider {
        background: var(--paper-line);
    }

.vm-block .tag {
    font-family: var(--mono);
    font-size: 11.5px;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--royal);
    margin-bottom: 18px;
    display: block;
}

.vm-block h3 {
    font-size: clamp(1.6rem,2.4vw,2.1rem);
    font-style: italic;
    font-weight: 500;
    line-height: 1.28;
    color: var(--royal-deep);
}

.vm-block p.body-text {
    margin-top: 22px;
    font-size: 15.5px;
    color: var(--ink-soft);
    line-height: 1.75;
}

@media (max-width:820px) {
    .vm-grid {
        grid-template-columns: 1fr;
        gap: 34px;
    }

        .vm-grid .divider {
            height: 1px;
            width: 100%;
        }
}

/* ============================================================
   CLUSTERS / THEMATIC FOCUS
   ============================================================ */
.cluster-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 2px;
    margin-bottom: 0;
    border: 1px solid var(--paper-line);
}

.cluster-tab {
    flex: 1 1 220px;
    background: var(--paper);
    border: none;
    border-right: 1px solid var(--paper-line);
    padding: 26px 24px;
    text-align: left;
    cursor: pointer;
    font-family: var(--body);
    transition: background .3s, color .3s;
    position: relative;
}

    .cluster-tab:last-child {
        border-right: none;
    }

    .cluster-tab .letter {
        font-family: var(--display);
        font-size: 2.1rem;
        font-weight: 600;
        color: var(--royal);
        line-height: 1;
        display: block;
        margin-bottom: 10px;
        transition: color .3s;
    }

    .cluster-tab .name {
        font-size: 13.5px;
        font-weight: 700;
        letter-spacing: .01em;
        line-height: 1.35;
        display: block;
    }

    .cluster-tab .count {
        display: block;
        margin-top: 10px;
        font-family: var(--mono);
        font-size: 10.5px;
        color: var(--ink-soft);
        letter-spacing: .06em;
        text-transform: uppercase;
    }

    .cluster-tab.active {
        background: var(--royal-deep);
        color: var(--paper);
    }

        .cluster-tab.active .letter {
            color: var(--gold-soft);
        }

        .cluster-tab.active .count {
            color: rgba(246,244,238,.65);
        }

    .cluster-tab:hover:not(.active) {
        background: var(--paper-alt);
    }

.cluster-panels {
    border: 1px solid var(--paper-line);
    border-top: none;
    padding: 52px 48px;
    background: var(--white);
}

.cluster-panel {
    display: none;
}

    .cluster-panel.active {
        display: block;
        animation: fadein .5s var(--ease);
    }

@keyframes fadein {
    from {
        opacity: 0;
        transform: translateY(8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.cluster-panel .panel-head {
    display: flex;
    align-items: baseline;
    gap: 18px;
    margin-bottom: 34px;
    flex-wrap: wrap;
}

    .cluster-panel .panel-head h3 {
        font-size: clamp(1.5rem,2.6vw,2.1rem);
        color: var(--royal-deep);
        font-weight: 600;
    }

    .cluster-panel .panel-head .badge {
        font-family: var(--mono);
        font-size: 11px;
        letter-spacing: .08em;
        text-transform: uppercase;
        background: var(--teal);
        color: var(--white);
        padding: 5px 11px;
        border-radius: 20px;
    }

.foci-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    background: var(--paper-line);
    border: 1px solid var(--paper-line);
}

    .foci-list li {
        background: var(--paper);
        padding: 22px 24px;
        font-size: 14.8px;
        line-height: 1.5;
        color: var(--ink);
        display: flex;
        gap: 14px;
        align-items: flex-start;
    }

        .foci-list li::before {
            content: "";
            width: 6px;
            height: 6px;
            margin-top: 8px;
            flex: none;
            border-radius: 50%;
            background: var(--gold);
        }

@media (max-width:760px) {
    .foci-list {
        grid-template-columns: 1fr;
    }

    .cluster-panels {
        padding: 34px 22px;
    }

    .cluster-tab {
        flex: 1 1 45%;
    }
}

.geo-strip {
    margin-top: 54px;
    display: grid;
    grid-template-columns: .85fr 1.15fr;
    gap: 48px;
    align-items: center;
    border-top: 1px solid var(--paper-line);
    padding-top: 54px;
}

    .geo-strip .rivers {
        display: flex;
        gap: 28px;
        margin-top: 22px;
        flex-wrap: wrap;
    }

    .geo-strip .river {
        font-family: var(--mono);
        font-size: 11.5px;
        text-transform: uppercase;
        letter-spacing: .06em;
        color: var(--royal);
        border-left: 2px solid var(--teal);
        padding-left: 10px;
    }

.geo-mini svg {
    width: 100%;
    max-width: 300px;
}

@media (max-width:820px) {
    .geo-strip {
        grid-template-columns: 1fr;
    }
}

/* ============================================================
   MODEL — 4 pillars
   ============================================================ */
.pillars {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 1px;
    background: var(--paper-line);
    border: 1px solid var(--paper-line);
}

.pillar-card {
    background: var(--paper);
    padding: 38px 28px;
    display: flex;
    flex-direction: column;
    gap: 18px;
    transition: background .35s;
}

    .pillar-card:hover {
        background: var(--white);
    }

    .pillar-card .icon {
        width: 40px;
        height: 40px;
        color: var(--royal);
    }

    .pillar-card h4 {
        font-size: 17px;
        font-weight: 700;
        font-family: var(--body);
        color: var(--royal-deep);
        letter-spacing: .01em;
    }

    .pillar-card p {
        font-size: 14px;
        color: var(--ink-soft);
        line-height: 1.65;
    }

    .pillar-card .num {
        font-family: var(--mono);
        font-size: 11px;
        color: var(--gold);
        letter-spacing: .08em;
    }

@media (max-width:980px) {
    .pillars {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width:600px) {
    .pillars {
        grid-template-columns: 1fr;
    }
}

/* ============================================================
   METRICS
   ============================================================ */
.metrics {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 1px;
    background: rgba(246,244,238,.14);
}

.metric-card {
    background: transparent;
    padding: 44px 30px;
    position: relative;
}

    .metric-card .eyebrow {
        margin-bottom: 22px;
    }

    .metric-card .figure {
        font-family: var(--mono);
        font-size: clamp(1.6rem,2.6vw,2.2rem);
        color: var(--gold-soft);
        font-weight: 500;
        display: block;
    }

        .metric-card .figure small {
            font-family: var(--body);
            font-size: 13px;
            color: rgba(246,244,238,.7);
            display: block;
            margin-top: 6px;
            font-weight: 400;
            line-height: 1.5;
        }

    .metric-card ul {
        list-style: none;
        margin: 16px 0 0;
        padding: 0;
        display: flex;
        flex-direction: column;
        gap: 8px;
    }

    .metric-card li {
        font-size: 13px;
        color: rgba(246,244,238,.72);
        line-height: 1.5;
        padding-left: 14px;
        position: relative;
    }

        .metric-card li::before {
            content: "—";
            position: absolute;
            left: 0;
            color: var(--teal-soft);
        }

@media (max-width:980px) {
    .metrics {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width:600px) {
    .metrics {
        grid-template-columns: 1fr;
    }
}

/* ============================================================
   WHY NOW — narrative band
   ============================================================ */
.why-now {
    max-width: 900px;
}

    .why-now .lead {
        font-family: var(--display);
        font-style: italic;
        font-weight: 500;
        font-size: clamp(1.5rem,2.6vw,2.15rem);
        line-height: 1.5;
        color: var(--paper);
    }

        .why-now .lead .hl {
            color: var(--gold-soft);
            font-style: normal;
            font-weight: 600;
        }

    .why-now .fine {
        margin-top: 34px;
        font-size: 15px;
        color: rgba(246,244,238,.72);
        max-width: 62ch;
        line-height: 1.8;
    }

/* ============================================================
   TEAM
   ============================================================ */
.team-note {
    background: var(--paper-alt);
    border: 1px dashed var(--royal-mid);
    padding: 16px 22px;
    margin-bottom: 44px;
    font-size: 13px;
    color: var(--royal-deep);
    font-family: var(--mono);
    letter-spacing: .01em;
    line-height: 1.6;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 34px;
}

.person {
    background: var(--white);
    border: 1px solid var(--paper-line);
}

    /*.person .portrait {
        aspect-ratio: 4/4.6;
        background: linear-gradient(155deg,var(--royal) 0%,var(--royal-deep) 100%);
        position: relative;
        display: flex;
        align-items: flex-start;
        justify-conten align-items: flex-start;t: center;
        overflow: hidden;
    }

        .person .portrait .initials {
            font-family: var(--display);
            font-size: 3rem;
            color: rgba(246,244,238,.9);
            font-weight: 600;
        }

        .person .portrait::after {
            content: "";
            position: absolute;
            inset: 0;
            background-image: radial-gradient(circle at 30% 20%, rgba(201,151,42,.28), transparent 55%);
        }*/


    /* ============================================================
   TEAM PORTRAITS
============================================================ */

    .person .portrait {
        width: 100%;
        aspect-ratio: 4 / 4.6;
        background: linear-gradient(155deg, var(--royal) 0%, var(--royal-deep) 100%);
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: hidden;
    }

        /* Actual staff photograph */
        /*.person .portrait .portrait-img {
            width: 100%;
            height: 100%;
            display: block;
            object-fit: cover;
            object-position: center center;
        }*/

    .person .portrait-img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center center;
        display: block;
        background: #f7f7f7;
    }

        /* Fallback initials */
        .person .portrait .initials {
            position: absolute;
            inset: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: var(--display);
            font-size: 3rem;
            color: rgba(246,244,238,.9);
            font-weight: 600;
        }

        /* Very subtle overlay */
        /*.person .portrait::after {
            content: "";
            position: absolute;
            inset: 0;
            pointer-events: none;
            background: radial-gradient( circle at 30% 20%, rgba(201,151,42,.18), transparent 55% );
        }
*/
  


    .person .meta {
        padding: 22px 24px 26px;
    }

    .person .name {
        font-size: 17px;
        font-weight: 700;
        color: var(--royal-deep);
        font-family: var(--body);
    }

    .person .role {
        font-family: var(--mono);
        font-size: 11px;
        letter-spacing: .06em;
        text-transform: uppercase;
        color: var(--teal);
        margin-top: 6px;
        display: block;
    }

    .person .bio {
        font-size: 13.5px;
        color: var(--ink-soft);
        margin-top: 14px;
        line-height: 1.6;
    }

@media (max-width:980px) {
    .team-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width:600px) {
    .team-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================================
   GET INVOLVED — audience tracks
   ============================================================ */
.tracks {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 1px;
    background: var(--paper-line);
    border: 1px solid var(--paper-line);
}

.track {
    background: var(--paper);
    padding: 40px 32px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    transition: background .3s, transform .3s;
}

    .track:hover {
        background: var(--white);
        transform: translateY(-4px);
    }

    .track .tk-eyebrow {
        font-family: var(--mono);
        font-size: 11px;
        letter-spacing: .1em;
        text-transform: uppercase;
        color: var(--gold);
    }

    .track h4 {
        font-size: 20px;
        color: var(--royal-deep);
        font-family: var(--display);
        font-weight: 600;
    }

    .track p {
        font-size: 14px;
        color: var(--ink-soft);
        line-height: 1.65;
        flex-grow: 1;
    }

    .track a.tk-link {
        font-size: 13.5px;
        font-weight: 700;
        color: var(--royal);
        text-decoration: none;
        display: inline-flex;
        align-items: center;
        gap: 8px;
    }

        .track a.tk-link svg {
            width: 13px;
            height: 13px;
            transition: transform .3s;
        }

        .track a.tk-link:hover svg {
            transform: translateX(4px);
        }

@media (max-width:900px) {
    .tracks {
        grid-template-columns: 1fr;
    }
}

.contact-cta {
    margin-top: 70px;
    padding: 56px;
    background: var(--royal-deep);
    color: var(--paper);
    display: grid;
    grid-template-columns: 1.3fr .7fr;
    gap: 40px;
    align-items: center;
}

    .contact-cta h3 {
        font-size: clamp(1.6rem,2.6vw,2.2rem);
        font-weight: 600;
        line-height: 1.2;
    }

    .contact-cta p {
        margin-top: 16px;
        color: rgba(246,244,238,.72);
        font-size: 14.5px;
        max-width: 48ch;
    }

    .contact-cta .actions {
        display: flex;
        flex-direction: column;
        gap: 14px;
        align-items: flex-end;
    }

@media (max-width:820px) {
    .contact-cta {
        grid-template-columns: 1fr;
        padding: 38px 26px;
    }

        .contact-cta .actions {
            align-items: flex-start;
        }
}

/* ============================================================
   FOOTER
   ============================================================ */
footer {
    background: var(--ink);
    color: rgba(246,244,238,.6);
    padding: 64px 0 30px;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(246,244,238,.12);
}

.footer-brand .brandmark {
    color: var(--paper);
    margin-bottom: 16px;
}

.footer-brand p {
    font-size: 13px;
    line-height: 1.7;
    max-width: 34ch;
    color: rgba(246,244,238,.55);
}

.footer-col h5 {
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--gold-soft);
    margin-bottom: 18px;
    font-weight: 500;
}

.footer-col a {
    display: block;
    font-size: 13.5px;
    color: rgba(246,244,238,.68);
    text-decoration: none;
    margin-bottom: 12px;
    transition: color .25s;
}

    .footer-col a:hover {
        color: var(--gold-soft);
    }

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 26px;
    font-size: 12px;
    color: rgba(246,244,238,.4);
    flex-wrap: wrap;
    gap: 14px;
}

@media (max-width:820px) {
    .footer-top {
        grid-template-columns: 1fr 1fr;
        row-gap: 34px;
    }
}

/* reveal-on-scroll */
/*.reveal {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity .8s var(--ease), transform .8s var(--ease);
}

    .reveal.in {
        opacity: 1;
        transform: translateY(0);
    }*/


/* ============================================================
   REVEAL ANIMATION
============================================================ */

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity .7s ease, transform .7s ease;
}

    .reveal.in,
    .reveal.visible {
        opacity: 1;
        transform: translateY(0);
    }
</style >
</head >
<body >
