﻿
:root {
    --plum: #3f1c46;
    --plum-light: #5a2864;
    --plum-deep: #2a1230;
    --sand: #e3dfdc;
    --sand-light: #f0ede9;
    --sand-dark: #ccc7c2;
    --cream: #faf8f5;
    --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.06em;
    color: var(--text-mid);
    font-weight: 400;
    margin-bottom:0;
}

    .breadcrumb a {
        text-decoration: none;
        color: var(--text-mid);
    }

    .breadcrumb span {
        margin: 0 8px;
    }

/* ── HERO ── */
.hero {
    position: relative;
    background: var(--plum);
    padding: 88px 48px 80px;
    overflow: hidden;
}

    .hero::before {
        content: '';
        position: absolute;
        inset: 0;
        background: radial-gradient(ellipse 55% 65% at 92% 38%, rgba(201,169,110,0.11) 0%, transparent 65%), radial-gradient(ellipse 35% 55% at 4% 88%, 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: 460px;
    height: 460px;
    top: -170px;
    right: -100px;
}

.hero-ring-2 {
    width: 260px;
    height: 260px;
    top: -50px;
    right: 30px;
}

.hero-ring-3 {
    width: 580px;
    height: 580px;
    bottom: -300px;
    left: -200px;
    border-color: rgba(201,169,110,0.05);
}

.hero-inner {
/*    max-width: 1160px;*/
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.hero-eyebrow {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 12px;
}

    .hero-eyebrow::before {
        content: '';
        width: 32px;
        height: 1px;
        background: var(--gold);
    }

.hero-heading {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(44px, 5.5vw, 72px);
    font-weight: 300;
    line-height: 1.07;
    color: var(--sand);
    letter-spacing: -0.01em;
    margin-bottom: 20px;
}

    .hero-heading em {
        font-style: italic;
        color: var(--gold-light);
    }

.hero-sub {
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px;
    font-style: italic;
    font-weight: 300;
    color: rgba(227,223,220,0.58);
    max-width: 580px;
    line-height: 1.65;
}

/* ── MAIN LAYOUT: left col content + right col form ── */
.page-body {
    max-width: 1160px;
    margin: 0 auto;
    padding: 80px 48px 96px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: start;
}

/* ── LEFT COLUMN ── */
.left-col {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

/* Section label */
.section-label {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.26em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
}

    .section-label::before {
        content: '';
        width: 24px;
        height: 1px;
        background: var(--gold);
    }

.section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(30px, 3vw, 44px);
    font-weight: 400;
    line-height: 1.12;
    color: var(--plum);
    margin-bottom: 28px;
    letter-spacing: -0.01em;
}

    .section-title em {
        font-style: italic;
    }

.body-text {
    font-size: 16px;
    font-weight: 300;
    line-height: 1.88;
    color: var(--text-mid);
}

/* Benefits list */
.benefits-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0;
}

    .benefits-list li {
        display: flex;
        align-items: flex-start;
        gap: 16px;
        padding: 16px 0;
        border-bottom: 1px solid var(--sand);
        font-size: 15px;
        font-weight: 400;
        line-height: 1.6;
        color: var(--text-dark);
        opacity: 0;
        transform: translateX(-16px);
        transition: opacity 0.45s ease, transform 0.45s ease;
    }

        .benefits-list li:first-child {
            border-top: 1px solid var(--sand);
        }

        .benefits-list li.visible {
            opacity: 1;
            transform: none;
        }

.diamond {
    width: 8px;
    height: 8px;
    flex-shrink: 0;
    background: var(--plum);
    transform: rotate(45deg);
    margin-top: 7px;
}

/* Who can apply pills */
.applicant-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 4px;
}

.applicant-pill {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 18px;
    background: var(--sand-light);
    border: 1px solid var(--sand-dark);
    font-size: 14px;
    font-weight: 400;
    color: var(--text-dark);
    transition: background 0.25s, border-color 0.25s;
    opacity: 0;
    transform: scale(0.95);
    transition: opacity 0.4s ease, transform 0.4s ease, background 0.25s;
}

    .applicant-pill.visible {
        opacity: 1;
        transform: scale(1);
    }

    .applicant-pill:hover {
        background: var(--sand);
        border-color: var(--plum);
    }

.pill-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--plum);
    flex-shrink: 0;
}

/* How it works steps */
.steps {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.step {
    display: grid;
    grid-template-columns: 56px 1fr;
    gap: 0;
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

    .step.visible {
        opacity: 1;
        transform: none;
    }

.step-left {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.step-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px;
    font-weight: 300;
    color: var(--plum);
    line-height: 1;
    width: 48px;
    height: 48px;
    border: 1px solid var(--sand-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.step-line {
    width: 1px;
    flex: 1;
    background: var(--sand-dark);
    margin: 4px 0;
    min-height: 28px;
}

.step:last-child .step-line {
    display: none;
}

.step-content {
    padding: 2px 0 32px 20px;
}

.step-tag {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--plum);
    margin-bottom: 6px;
}

.step-desc {
    font-size: 15px;
    font-weight: 300;
    line-height: 1.7;
    color: var(--text-mid);
}

/* ── RIGHT COLUMN: FORM ── */
.form-col {
    position: sticky;
    top: 100px;
}

.form-card {
    background: var(--plum);
    padding: 52px 44px;
    position: relative;
    overflow: hidden;
}

    .form-card::before {
        content: '';
        position: absolute;
        bottom: -60px;
        right: -60px;
        width: 200px;
        height: 200px;
        border: 1px solid rgba(201,169,110,0.12);
        border-radius: 50%;
    }

    .form-card::after {
        content: '';
        position: absolute;
        top: -40px;
        right: -40px;
        width: 120px;
        height: 120px;
        border: 1px solid rgba(227,223,220,0.06);
        border-radius: 50%;
    }

.form-eyebrow {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.26em;
    text-transform: uppercase;
    color: var(--gold);
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    position: relative;
    z-index: 1;
}

    .form-eyebrow::before {
        content: '';
        width: 20px;
        height: 1px;
        background: var(--gold);
    }

.form-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(28px, 2.5vw, 38px);
    font-weight: 300;
    line-height: 1.12;
    color: var(--sand);
    margin-bottom: 36px;
    position: relative;
    z-index: 1;
}

    .form-title em {
        font-style: italic;
        color: var(--gold-light);
    }

.partner-form {
    position: relative;
    z-index: 1;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-bottom: 14px;
}

    .form-row.full {
        grid-template-columns: 1fr;
    }

.form-group {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.form-label {
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(227,223,220,0.55);
}

.form-input, .form-select {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(227,223,220,0.18);
    color: var(--sand);
    font-family: 'Jost', sans-serif;
    font-size: 15px;
    font-weight: 300;
    padding: 14px 16px;
    outline: none;
/*    width: 100%;*/
    transition: border-color 0.25s, background 0.25s;
    appearance: none;
    -webkit-appearance: none;
}

    .form-input::placeholder {
        color: rgba(227,223,220,0.25);
        font-size: 15px;
    }

    .form-input:focus, .form-select:focus {
        border-color: var(--gold);
        background: rgba(255,255,255,0.1);
    }

.form-select {
    cursor: pointer;
    background-image: none;
}

    .form-select option {
        background: var(--plum-deep);
        color: var(--sand);
        font-size: 15px;
    }

.btn-submit {
    width: 100%;
    margin-top: 22px;
    background: var(--gold);
    color: var(--plum-deep);
    font-family: 'Jost', sans-serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    padding: 18px 32px;
    border: none;
    cursor: pointer;
    transition: background 0.3s, color 0.3s;
}

    .btn-submit:hover {
        background: var(--gold-light);
    }

.form-note {
    margin-top: 18px;
    position: relative;
    z-index: 1;
    font-size: 14px;
    font-weight: 300;
    line-height: 1.7;
    color: rgba(227,223,220,0.45);
    text-align: center;
}

    .form-note a {
        color: var(--gold);
        text-decoration: none;
        font-weight: 400;
    }

        .form-note a:hover {
            text-decoration: underline;
        }



/* ── REVEAL ── */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.65s ease, transform 0.65s ease;
}

    .reveal.visible {
        opacity: 1;
        transform: none;
    }

.reveal-d1 {
    transition-delay: 0.1s;
}

.reveal-d2 {
    transition-delay: 0.2s;
}

.reveal-d3 {
    transition-delay: 0.3s;
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
    .page-body {
        grid-template-columns: 1fr;
        gap: 56px;
    }

    .form-col {
        position: static;
    }
}

@media (max-width: 768px) {

    .breadcrumb {
        padding: 14px 20px;
    }

    .hero {
        padding: 64px 20px;
    }

    .page-body {
        padding: 56px 20px 72px;
    }

    .form-card {
        padding: 36px 24px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }
}
