﻿
:root {
    --plum: #3f1c46;
    --plum-light: #5a2864;
    --plum-deep: #2a1230;
    --sand: #e3dfdc;
    --sand-light: #f0ede9;
    --sand-dark: #ccc7c2;
    --cream: #faf8f5;
    --white: #ffffff;
    --text-dark: #1a0e1e;
    --text-mid: #5a4f60;
    --gold: #c9a96e;
    --gold-light: #e8d5a3;
    --font-calisto: 'Calisto MT';
    --font-outfit: 'Outfit';
}

/* ── BREADCRUMB ── */
.breadcrumb {
/*    margin-top: 72px;*/
    padding: 16px 48px;
    font-size: 14px;
    letter-spacing: 0.08em;
    color: var(--text-mid);
    margin-bottom:0;
    font-weight:400;
}

    .breadcrumb a {
        text-decoration: none;
        color: var(--text-mid);
    }

    .breadcrumb span {
        margin: 0 8px;
    }

/* ── HERO ── */
.hero {
    position: relative;
    background: var(--plum);
    padding: 100px 48px 90px;
    overflow: hidden;
}

    .hero::before {
        content: '';
        position: absolute;
        inset: 0;
        background: radial-gradient(ellipse 60% 70% at 90% 40%, rgba(201,169,110,0.1) 0%, transparent 65%), radial-gradient(ellipse 40% 60% at 5% 90%, rgba(255,255,255,0.03) 0%, transparent 60%);
    }

.hero-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(227,223,220,0.07);
}

.hero-ring-1 {
    width: 480px;
    height: 480px;
    top: -180px;
    right: -120px;
}

.hero-ring-2 {
    width: 280px;
    height: 280px;
    top: -60px;
    right: 20px;
}

.hero-ring-3 {
    width: 600px;
    height: 600px;
    bottom: -320px;
    left: -200px;
    border-color: rgba(201,169,110,0.05);
}

.hero-inner {
/*    max-width: 1160px;*/
    margin: 0 auto;
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 60px;
    align-items: end;
}

.hero-eyebrow {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

    .hero-eyebrow::before {
        content: '';
        width: 32px;
        height: 1px;
        background: var(--gold);
    }

.hero-heading {
/*    font-family: var(--font-calisto);*/
    font-family: var(--font-calisto);
    font-size: clamp(44px, 5.5vw, 65px);
    font-weight: 300;
    line-height: 1.07;
    color: var(--sand);
    letter-spacing: -0.01em;
}

    .hero-heading em {
        font-style: italic;
        color: var(--gold-light);
    }

.hero-sub-heading {
    font-family: var(--font-calisto);
    font-size: 20px;
    font-style: italic;
    color: rgba(227,223,220,0.5);
    margin-top: 20px;
    max-width: 460px;
    line-height: 1.6;
}

.hero-badge {
    flex-shrink: 0;
    border: 1px solid rgba(201,169,110,0.3);
    padding: 28px 32px;
    text-align: center;
    min-width: 200px;
}

.hero-badge-num {
    font-family: var(--font-calisto);
    font-size: 52px;
    font-weight: 300;
    color: var(--gold-light);
    line-height: 1;
    display: block;
}

.hero-badge-label {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: rgba(227,223,220,0.5);
    margin-top: 6px;
    display: block;
}

.hero-badge-divider {
    width: 24px;
    height: 1px;
    background: var(--gold);
    margin: 16px auto;
}

.hero-badge-sub {
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0.05em;
    color: rgba(227,223,220,0.4);
    display: block;
}

/* ── INTRO ── */
.intro {
    background: var(--cream);
    padding: 96px 48px;
}

.intro-inner {
    max-width: 1160px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 5fr 4fr;
    gap: 80px;
    align-items: start;
}

.section-label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
}

    .section-label::before {
        content: '';
        width: 24px;
        height: 1px;
        background: var(--gold);
    }

.section-title {
    font-family: var(--font-calisto);
    font-size: clamp(34px, 3.2vw, 45px);
    font-weight: 400;
    line-height: 1.1;
    color: var(--plum);
    margin-bottom: 32px;
    letter-spacing: -0.01em;
}

    .section-title em {
        font-style: italic;
    }

.body-text {
    font-size: 15px;
    font-weight: 300;
    line-height: 1.9;
    color: var(--text-mid);
}

    .body-text + .body-text {
        margin-top: 22px;
    }

.intro-aside {
    padding-top: 80px;
    display: flex;
    flex-direction: column;
    gap: 1px;
    background: var(--sand);
}

.intro-stat {
    background: var(--cream);
    padding: 32px 28px;
}

.intro-stat-num {
/*    font-family: var(--font-calisto);*/
    font-size: 28px;
    font-weight: 300;
    color: var(--plum);
    line-height: 1;
}

.intro-stat-label {
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--text-mid);
    margin-top: 6px;
    margin-bottom:0.5rem;
}

.intro-stat-desc {
    font-size: 14px;
    font-weight: 300;
    line-height: 1.6;
    color: var(--text-mid);
    margin-top: 8px;
}

/* ── WHAT PARTNERS GET ── */
.partners-get {
    background: var(--plum);
    padding: 96px 48px;
    position: relative;
    overflow: hidden;
}

    .partners-get::after {
        content: '';
        position: absolute;
        bottom: -120px;
        right: -60px;
        width: 500px;
        height: 500px;
        border: 1px solid rgba(201,169,110,0.07);
        border-radius: 50%;
    }

.partners-get-inner {
    max-width: 1160px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.partners-get-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    margin-bottom: 64px;
    align-items: end;
}

.section-title-light {
    font-family: var(--font-calisto);
    font-size: clamp(34px, 3.2vw, 50px);
    font-weight: 300;
    line-height: 1.1;
    color: var(--sand);
    letter-spacing: -0.01em;
}

    .section-title-light em {
        font-style: italic;
        color: var(--gold-light);
    }

.partners-intro-text {
    font-size: 16px;
    font-weight: 300;
    line-height: 1.85;
    color: rgba(227,223,220,0.65);
    padding-top: 12px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: rgba(227,223,220,0.1);
}

.benefit-card {
    background: rgba(63,28,70,0.5);
    padding: 36px 28px;
    transition: background 0.35s;
    position: relative;
}

    .benefit-card:hover {
        background: rgba(255,255,255,0.07);
    }

    .benefit-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 28px;
        right: 28px;
        height: 2px;
        background: var(--gold);
        transform: scaleX(0);
        transform-origin: left;
        transition: transform 0.35s ease;
    }

    .benefit-card:hover::before {
        transform: scaleX(1);
    }

.benefit-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 20px;
    color: var(--gold);
    opacity: 0.8;
}

.benefit-title {
    font-family: 'Jost', sans-serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--sand);
    margin-bottom: 10px;
}

.benefit-text {
    font-size: 14px;
    font-weight: 300;
    line-height: 1.7;
    color: rgba(227,223,220,0.6);
}

/* ── WHO WE WORK WITH ── */
.who-works {
    background: var(--sand-light);
    padding: 96px 48px;
}

.who-works-inner {
    max-width: 1160px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.partner-types {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.partner-type {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 22px 0;
    border-bottom: 1px solid var(--sand-dark);
    opacity: 0;
    transform: translateX(-20px);
    transition: opacity 0.5s, transform 0.5s;
}

    .partner-type:first-child {
        border-top: 1px solid var(--sand-dark);
    }

    .partner-type.visible {
        opacity: 1;
        transform: none;
    }

.partner-type-icon {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    background: var(--plum);
    display: flex;
    align-items: center;
    justify-content: center;
}

    .partner-type-icon svg {
        width: 20px;
        height: 20px;
        color: var(--gold-light);
    }

.partner-type-text {
    font-size: 18px;
    font-weight: 400;
    color: var(--text-dark);
    line-height: 1.5;
    margin-bottom: 0.5rem;
}

.partner-type-sub {
    font-size: 14px;
    font-weight: 300;
    color: var(--text-mid);
    margin-top: 2px;
    margin-bottom:0;
}

.who-works-right {
    padding-top: 12px;
}

.who-works-callout {
    background: var(--plum);
    padding: 44px 40px;
    position: relative;
    overflow: hidden;
}

    .who-works-callout::before {
        content: '';
        position: absolute;
        top: -30px;
        right: -30px;
        width: 120px;
        height: 120px;
        border: 1px solid rgba(201,169,110,0.15);
        border-radius: 50%;
    }

.who-works-callout-text {
    font-family: var(--font-calisto);
    font-size: 20px;
    font-style: italic;
    font-weight: 300;
    color: var(--sand);
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

    .who-works-callout-text strong {
        font-style: normal;
        font-weight: 500;
        color: var(--gold-light);
    }

.callout-rule {
    width: 36px;
    height: 1px;
    background: var(--gold);
    margin: 24px 0;
}

.callout-cta {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.2s;
    position: relative;
    z-index: 1;
}

    .callout-cta:hover {
        gap: 16px;
        color:var(--gold);
        transform:translateX(10px;);
        transform-origin:left;
    }

    .callout-cta::after {
        content: '→';
    }

/* ── CREDIT PROGRAMME ── */
.credit {
    background: var(--cream);
    padding: 96px 48px;
}

.credit-inner {
    max-width: 1160px;
    margin: 0 auto;
}

.credit-banner {
    background: var(--plum);
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 60px;
    align-items: center;
    padding: 64px 64px;
    position: relative;
    overflow: hidden;
}

    .credit-banner::before {
        content: '';
        position: absolute;
        inset: 0;
        background: radial-gradient(ellipse 50% 80% at 100% 50%, rgba(201,169,110,0.1) 0%, transparent 65%);
    }

.credit-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(227,223,220,0.05);
}

.credit-ring-1 {
    width: 300px;
    height: 300px;
    right: 100px;
    top: -120px;
}

.credit-ring-2 {
    width: 180px;
    height: 180px;
    right: 160px;
    top: -30px;
}

.credit-left {
    position: relative;
    z-index: 2;
}

.credit-label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}

    .credit-label::before {
        content: '';
        width: 24px;
        height: 1px;
        background: var(--gold);
    }

.credit-title {
    font-family: var(--font-calisto);
    font-size: clamp(32px, 3vw, 48px);
    font-weight: 300;
    line-height: 1.1;
    color: var(--sand);
    margin-bottom: 20px;
}

    .credit-title em {
        font-style: italic;
        color: var(--gold-light);
    }

.credit-body {
    font-size: 15px;
    font-weight: 300;
    line-height: 1.85;
    color: rgba(227,223,220,0.7);
    max-width: 520px;
}

.credit-note {
    font-size: 14px;
    font-weight: 400;
    color: rgba(227,223,220,0.35);
    margin-top: 20px;
    line-height: 1.6;
    font-style: italic;
    letter-spacing:1px;
}

.credit-right {
    flex-shrink: 0;
    position: relative;
    z-index: 2;
    text-align: center;
    border: 1px solid rgba(201,169,110,0.25);
    padding: 40px 44px;
    min-width: 220px;
}

.credit-amount {
    font-family: var(--font-calisto);
    font-size: 54px;
    font-weight: 300;
    color: var(--gold-light);
    line-height: 1;
    display: block;
}

.credit-amount-label {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: rgba(227,223,220,0.45);
    margin-top: 6px;
    display: block;
}

.credit-divider {
    width: 24px;
    height: 1px;
    background: rgba(201,169,110,0.4);
    margin: 18px auto;
}

.credit-tagline {
    font-family: var(--font-calisto);
    font-size: 18px;
    font-style: italic;
    color: rgba(227,223,220,0.5);
    display: block;
}

/* ── LONG TERM ── */
.longterm {
    background: var(--sand-light);
    padding: 96px 48px;
}

.longterm-inner {
    max-width: 1160px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.longterm-visual {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    background: var(--sand-dark);
}

.longterm-tile {
    background: var(--cream);
    padding: 36px 28px;
    position: relative;
}

    .longterm-tile.filled {
        background: var(--plum);
    }

.longterm-tile-num {
    font-family: var(--font-calisto);
    font-size: 48px;
    font-weight: 300;
    color: var(--plum);
    line-height: 1;
    margin-bottom: 8px;
}

.longterm-tile.filled .longterm-tile-num {
    color: var(--gold-light);
}

.longterm-tile-label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-mid);
}

.longterm-tile.filled .longterm-tile-label {
    color: rgba(227,223,220,0.5);
}

.longterm-tile-desc {
    font-size: 14px;
    font-weight: 300;
    line-height: 1.6;
    color: var(--text-mid);
    margin-top: 6px;
}

.longterm-tile.filled .longterm-tile-desc {
    color: rgba(227,223,220,0.5);
}

/* ── CTA SECTION ── */
.cta-section {
    background: var(--cream);
    padding: 96px 48px;
    border-top: 1px solid var(--sand);
}

.cta-inner {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
}

.cta-eyebrow {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 24px;
}

    .cta-eyebrow::before, .cta-eyebrow::after {
        content: '';
        width: 32px;
        height: 1px;
        background: var(--gold);
    }

.cta-title {
    font-family: var(--font-calisto);
    font-size: clamp(36px, 4.5vw, 45px);
    font-weight: 300;
    line-height: 1.08;
    color: var(--plum);
    margin-bottom: 24px;
}

    .cta-title em {
        font-style: italic;
    }

.cta-rule {
    width: 48px;
    height: 1px;
    background: var(--gold);
    margin: 0 auto 28px;
}

.cta-sub {
    font-size: 16px;
    font-weight: 300;
    line-height: 1.8;
    color: var(--text-mid);
    margin-bottom: 44px;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary {
    display: inline-block;
    background: var(--plum);
    color: var(--sand);
    font-family: 'Jost', sans-serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    text-decoration: none;
    padding: 18px 44px;
    transition: background 0.3s;
    transition: 500ms ease;
    border-radius: 0.25rem;
}

    .btn-primary:hover {
        background: var(--plum);
        transform: scale(1.05);
    }

.btn-outline {
    display: inline-block;
    border: 1px solid var(--plum);
    color: var(--plum);
    font-family: 'Jost', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    text-decoration: none;
    padding: 18px 44px;
    transition: all 0.3s;
    transition: 500ms ease;
    border-radius: 0.25rem;
}

    .btn-outline:hover {
        background: var(--plum);
        color: var(--sand);
        transform: scale(1.05);
    }


/* ── REVEAL ── */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

    .reveal.visible {
        opacity: 1;
        transform: none;
    }

.reveal-delay-1 {
    transition-delay: 0.1s;
}

.reveal-delay-2 {
    transition-delay: 0.2s;
}

.reveal-delay-3 {
    transition-delay: 0.3s;
}

.reveal-delay-4 {
    transition-delay: 0.4s;
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
    .hero-inner {
        grid-template-columns: 1fr;
    }

    .hero-badge {
        align-self: flex-start;
    }

    .intro-inner, .who-works-inner, .longterm-inner, .partners-get-header {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .benefits-grid {
        grid-template-columns: 1fr 1fr;
    }

    .credit-banner {
        grid-template-columns: 1fr;
    }

    .credit-right {
        align-self: flex-start;
    }

    .intro-aside {
        padding-top: 0;
    }
}

@media (max-width: 768px) {

    .breadcrumb {
        padding: 14px 20px;
    }

    .hero, .intro, .partners-get, .who-works, .credit, .longterm, .cta-section {
        padding: 64px 20px;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .longterm-visual {
        grid-template-columns: 1fr;
    }

    .credit-banner {
        padding: 44px 28px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero-heading {
        font-size: 40px;
    }
}
