:root {
    --ink: #17211c;
    --muted: #66736e;
    --paper: #f4f1e8;
    --surface: #fffaf0;
    --line: rgba(23, 33, 28, 0.14);
    --forest: #123c32;
    --reef: #0f8a8d;
    --clay: #b56546;
    --gold: #d5a24a;
    --white: #ffffff;
    --shadow: 0 24px 80px rgba(18, 60, 50, 0.18);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-snap-type: y mandatory;
}

body {
    margin: 0;
    background: var(--paper);
    color: var(--ink);
    font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    letter-spacing: 0;
}

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

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

.topbar {
    position: fixed;
    z-index: 30;
    top: 0;
    left: 0;
    right: 0;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 24px;
    min-height: 72px;
    padding: 18px clamp(18px, 4vw, 52px);
    color: var(--white);
    transition: background 220ms ease, color 220ms ease, box-shadow 220ms ease;
}

.topbar.is-scrolled {
    background: rgba(244, 241, 232, 0.92);
    color: var(--ink);
    box-shadow: 0 12px 40px rgba(23, 33, 28, 0.1);
    backdrop-filter: blur(18px);
}

.brand,
.topnav,
.nav-cta {
    display: flex;
    align-items: center;
}

.brand {
    gap: 12px;
    font-weight: 800;
    font-size: 0.92rem;
}

.brand-mark {
    width: 32px;
    height: 32px;
    border: 2px solid currentColor;
    border-radius: 50%;
    position: relative;
}

.brand-mark::after {
    content: "";
    position: absolute;
    inset: 7px 4px 4px 8px;
    border-left: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(-18deg);
}

.topnav {
    gap: 22px;
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
}

.topnav a {
    opacity: 0.82;
}

.topnav a:hover,
.topnav a:focus-visible {
    opacity: 1;
}

.nav-cta {
    justify-self: end;
    width: max-content;
    min-height: 40px;
    padding: 0 18px;
    border: 1px solid currentColor;
    border-radius: 999px;
    font-size: 0.82rem;
    font-weight: 800;
    text-transform: uppercase;
}

.rail {
    position: fixed;
    z-index: 25;
    top: 50%;
    right: 28px;
    display: grid;
    gap: 12px;
    transform: translateY(-50%);
}

.rail a {
    width: 10px;
    height: 10px;
    border: 1px solid rgba(255, 255, 255, 0.82);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 0 0 1px rgba(23, 33, 28, 0.08);
}

.rail a.is-active {
    background: var(--gold);
    border-color: var(--gold);
}

.deck {
    min-height: 100vh;
}

.slide {
    position: relative;
    min-height: 100vh;
    scroll-snap-align: start;
    scroll-snap-stop: always;
    overflow: hidden;
    display: flex;
    align-items: center;
    background: var(--paper);
}

.slide-inner {
    position: relative;
    z-index: 2;
    width: min(1180px, calc(100% - 56px));
    margin: 0 auto;
    padding: 104px 0 56px;
}

.hero > img,
.asset > img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-shade {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(12, 22, 20, 0.88), rgba(12, 22, 20, 0.45) 42%, rgba(12, 22, 20, 0.12)),
        linear-gradient(0deg, rgba(12, 22, 20, 0.46), rgba(12, 22, 20, 0.08));
}

.hero-content {
    color: var(--white);
    padding-top: 128px;
}

.eyebrow {
    margin: 0 0 18px;
    color: var(--gold);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

h1,
h2 {
    margin: 0;
    font-family: Newsreader, Georgia, serif;
    line-height: 0.96;
    letter-spacing: 0;
}

h1 {
    max-width: 760px;
    font-size: clamp(4.5rem, 13vw, 10.5rem);
}

h2 {
    max-width: 860px;
    font-size: clamp(2.6rem, 6vw, 6rem);
}

h3 {
    margin: 0 0 9px;
    font-size: 1rem;
}

p {
    line-height: 1.58;
}

.lead,
.section-lead {
    max-width: 680px;
    margin: 20px 0 0;
    color: rgba(255, 255, 255, 0.84);
    font-size: clamp(1.1rem, 2vw, 1.45rem);
}

.section-lead {
    color: var(--muted);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 34px;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 22px;
    border-radius: 999px;
    font-weight: 800;
    font-size: 0.88rem;
    text-transform: uppercase;
}

.button.primary {
    background: var(--gold);
    color: #1e1608;
}

.button.ghost {
    border: 1px solid rgba(255, 255, 255, 0.68);
}

.metrics {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
}

.hero-metrics {
    max-width: 1120px;
    margin-top: 58px;
}

.hero-metrics article {
    min-width: 0;
    overflow: hidden;
}

.hero-metrics span {
    font-size: min(clamp(2.2rem, 3.2vw, 3.85rem), 4.55vw);
    white-space: nowrap;
}

.metrics article,
.snapshot article,
.structure-grid article,
.risk-list article,
.steps article,
.contact-card {
    background: rgba(255, 250, 240, 0.88);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.metrics article {
    min-height: 112px;
    padding: 22px;
}

.metrics span {
    display: block;
    color: var(--forest);
    font-family: Newsreader, Georgia, serif;
    font-size: clamp(1.9rem, 3vw, 3.2rem);
    font-weight: 700;
    line-height: 1;
}

.metrics p,
.snapshot p,
.structure-grid p {
    margin: 9px 0 0;
    color: var(--muted);
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: uppercase;
}

.two-col {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.86fr);
    align-items: center;
    gap: clamp(32px, 6vw, 82px);
}

.copy {
    min-width: 0;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    margin-top: 34px;
}

.feature-grid article {
    padding-left: 18px;
    border-left: 3px solid var(--reef);
}

.feature-grid p,
.steps p,
.risk-list p {
    margin: 0;
    color: var(--muted);
}

.media-card {
    margin: 0;
    background: var(--surface);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.media-card img {
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
}

.media-card figcaption {
    padding: 14px 16px;
    color: var(--muted);
    font-size: 0.78rem;
}

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

.asset-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(9, 23, 20, 0.86), rgba(9, 23, 20, 0.42) 54%, rgba(9, 23, 20, 0.2));
}

.asset h2 {
    max-width: 920px;
}

.snapshot {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
    margin-top: 42px;
}

.snapshot article {
    min-height: 140px;
    padding: 24px;
}

.snapshot strong {
    display: block;
    margin-top: 14px;
    color: var(--ink);
    font-size: clamp(1rem, 1.5vw, 1.22rem);
    line-height: 1.3;
}

.steps {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 14px;
    margin-top: 42px;
}

.steps article {
    padding: 24px;
    min-height: 242px;
}

.steps span {
    display: block;
    margin-bottom: 28px;
    color: var(--clay);
    font-size: 0.82rem;
    font-weight: 900;
}

.timeline {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 10px;
    margin-top: 18px;
}

.timeline div {
    padding: 14px;
    border-top: 3px solid var(--reef);
    background: rgba(15, 138, 141, 0.08);
}

.timeline span {
    color: var(--forest);
    font-weight: 900;
}

.timeline p {
    margin: 4px 0 0;
    color: var(--muted);
    font-size: 0.86rem;
}

.financials {
    background:
        linear-gradient(135deg, rgba(18, 60, 50, 0.08), transparent 46%),
        var(--paper);
}

.financials .two-col {
    grid-template-columns: minmax(660px, 1.1fr) minmax(320px, 0.9fr);
    gap: clamp(28px, 4vw, 58px);
}

.financials .metrics {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin-top: 30px;
}

.financials .metrics article {
    min-width: 0;
    min-height: 124px;
    padding: 20px 18px;
    overflow: hidden;
}

.financials .metrics span {
    font-size: min(clamp(1.86rem, 2.85vw, 2.72rem), 4.35vw);
    white-space: nowrap;
}

.financials .metrics p {
    line-height: 1.45;
}

.table-panel {
    display: grid;
    gap: 2px;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.table-panel div {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 18px;
    align-items: center;
    min-height: 62px;
    padding: 18px 20px;
    background: var(--surface);
}

.table-panel span {
    color: var(--forest);
    font-weight: 900;
}

.table-panel .total {
    background: var(--forest);
    color: var(--white);
}

.table-panel .total span,
.table-panel .revenue span {
    color: var(--white);
}

.table-panel .revenue {
    background: var(--clay);
    color: var(--white);
}

.structure-grid,
.risk-list {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
    margin-top: 40px;
}

.structure-grid article {
    padding: 24px;
    min-height: 204px;
}

.structure-grid strong {
    display: block;
    margin-top: 12px;
    color: var(--forest);
    font-size: 1.18rem;
}

.structure-grid span {
    display: block;
    margin-top: 16px;
    color: var(--muted);
    line-height: 1.55;
}

.funds {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    align-items: stretch;
    gap: 14px;
    margin-top: 18px;
}

.funds div {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: 176px;
    padding: 18px;
    border-radius: 8px;
    background: linear-gradient(180deg, var(--reef), var(--forest));
    color: var(--white);
}

.funds span {
    font-family: Newsreader, Georgia, serif;
    font-size: 2.4rem;
    font-weight: 700;
}

.funds p {
    margin: 6px 0 0;
    font-weight: 800;
}

.risk {
    background: var(--forest);
    color: var(--white);
}

.risk h2 {
    max-width: 980px;
}

.risk-list {
    grid-template-columns: repeat(5, minmax(0, 1fr));
}

.risk-list article {
    min-height: 254px;
    padding: 24px;
    background: rgba(255, 250, 240, 0.95);
    color: var(--ink);
}

.contact {
    background:
        linear-gradient(135deg, rgba(181, 101, 70, 0.12), transparent 42%),
        var(--paper);
}

.contact-inner {
    display: grid;
    grid-template-columns: minmax(0, 0.8fr) minmax(320px, 0.52fr);
    align-items: center;
    column-gap: clamp(32px, 7vw, 90px);
    padding: 104px 0 56px;
}

.contact h2 {
    font-size: clamp(2.8rem, 5.2vw, 5.35rem);
}

.next-steps {
    margin: 34px 0 0;
    padding-left: 22px;
    color: var(--muted);
    font-size: clamp(0.96rem, 1.35vw, 1.16rem);
    line-height: 1.72;
}

.contact-cards {
    display: grid;
    gap: 14px;
}

.contact-card {
    padding: 28px;
    align-self: center;
    display: grid;
    grid-template-columns: 128px minmax(0, 1fr);
    align-items: center;
    gap: 22px;
}

.contact-photo {
    width: 128px;
    height: 128px;
    border-radius: 8px;
    object-fit: cover;
    object-position: center 34%;
    flex: 0 0 128px;
}

.contact-photo-placeholder {
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, rgba(15, 138, 141, 0.16), rgba(18, 60, 50, 0.24));
    border: 1px solid var(--line);
    color: var(--forest);
    font-family: Newsreader, Georgia, serif;
    font-size: 3.4rem;
    font-weight: 700;
}

.contact-details {
    min-width: 0;
}

.contact-details p {
    margin: 0 0 10px;
    color: var(--muted);
    font-size: 0.82rem;
    font-weight: 900;
    text-transform: uppercase;
}

.contact-email {
    display: block;
    color: var(--forest);
    font-family: Newsreader, Georgia, serif;
    font-size: clamp(1.32rem, 1.75vw, 2rem);
    font-weight: 700;
    overflow-wrap: anywhere;
}

.contact-channels {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 14px;
}

.contact-channels a,
.contact-channels span,
.contact-languages span {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 0 10px;
    border: 1px solid var(--line);
    border-radius: 999px;
    color: var(--forest);
    font-size: 0.78rem;
    font-weight: 900;
}

.contact-channels span {
    color: var(--muted);
}

.contact-languages {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-top: 12px;
}

.contact-languages span {
    min-height: 26px;
    color: var(--muted);
    font-size: 0.72rem;
}

.disclaimer {
    max-width: 760px;
    margin: 34px 0 0;
    color: var(--muted);
    font-size: 0.84rem;
}

@media (max-width: 980px) {
    html {
        scroll-snap-type: y proximity;
    }

    .topbar {
        grid-template-columns: 1fr auto;
    }

    .topnav {
        display: none;
    }

    .nav-cta {
        min-height: 36px;
        padding: 0 12px;
        font-size: 0.72rem;
    }

    .rail {
        display: none;
    }

    .slide {
        min-height: auto;
    }

    .slide-inner {
        width: min(100% - 36px, 720px);
        padding: 98px 0 48px;
    }

    .hero {
        min-height: 100vh;
    }

    .metrics,
    .snapshot,
    .steps,
    .timeline,
    .structure-grid,
    .funds,
    .risk-list,
    .two-col,
    .contact-inner {
        grid-template-columns: 1fr;
    }

    .financials .two-col {
        grid-template-columns: 1fr;
    }

    .hero-metrics {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        margin-top: 32px;
    }

    .financials .metrics {
        grid-template-columns: 1fr;
    }

    .feature-grid {
        grid-template-columns: 1fr;
    }

    .media-card img {
        aspect-ratio: 16 / 10;
    }

    .contact-card {
        grid-column: auto;
        grid-row: auto;
        grid-template-columns: 96px minmax(0, 1fr);
    }

    .contact-photo {
        width: 96px;
        height: 96px;
        flex-basis: 96px;
    }

}

@media (max-width: 580px) {
    .brand span:last-child {
        max-width: 96px;
        line-height: 1.05;
    }

    .nav-cta {
        max-width: 132px;
        text-align: center;
    }

    h1 {
        font-size: clamp(4rem, 18vw, 5.2rem);
    }

    h2 {
        font-size: clamp(2.4rem, 12vw, 3.5rem);
    }

    .hero-metrics,
    .metrics {
        grid-template-columns: 1fr;
    }

    .financials .metrics {
        grid-template-columns: 1fr;
    }

    .table-panel div {
        grid-template-columns: 1fr;
        gap: 6px;
    }
}
