@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,600;1,400&family=Jost:wght@400;500&display=swap');

.partnership-section {
    min-height : calc(100vh - var(--nav-height) - var(--footer-height));
    display    : flex;
    align-items: stretch;
}

/* ── Left ───────────────────────────────────────────────────────── */

.partnership-left {
    flex          : 1;
    display       : flex;
    flex-direction: column;
    justify-content: center;
    padding       : 5rem 4rem 5rem 6rem;
    background    : var(--beige);
    border-right  : 1px solid var(--border);
    position      : relative;
    overflow      : hidden;
}

.partnership-left::before {
    content      : '';
    position     : absolute;
    top          : -80px;
    left         : -80px;
    width        : 340px;
    height       : 340px;
    border-radius: 50%;
    background   : radial-gradient(circle, rgba(176,141,91,0.10) 0%, transparent 70%);
    pointer-events: none;
}

.partnership-eyebrow {
    font-size     : 0.68rem;
    font-weight   : 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color         : var(--accent);
    margin-bottom : 1.25rem;
}

.partnership-heading {
    font-family  : 'Cormorant Garamond', serif;
    font-size    : clamp(2.2rem, 4vw, 3.2rem);
    font-weight  : 600;
    line-height  : 1.15;
    color        : var(--ink);
    margin-bottom: 1.5rem;
}

.partnership-heading em {
    font-style: italic;
    color     : var(--accent);
}

.partnership-body {
    font-size    : 0.92rem;
    line-height  : 1.75;
    color        : var(--ink-muted);
    max-width    : 380px;
    margin-bottom: 2.5rem;
}

.partnership-perks {
    list-style    : none;
    display       : flex;
    flex-direction: column;
    gap           : 0.65rem;
}

.partnership-perks li {
    font-size    : 0.8rem;
    color        : var(--ink-muted);
    display      : flex;
    align-items  : center;
    gap          : 0.65rem;
    letter-spacing: 0.03em;
}

.partnership-perks li::before {
    content    : '';
    display    : inline-block;
    width      : 18px;
    height     : 1px;
    background : var(--accent);
    flex-shrink: 0;
}

/* ── Right ──────────────────────────────────────────────────────── */

.partnership-right {
    flex           : 1;
    display        : flex;
    align-items    : center;
    justify-content: center;
    padding        : 4rem 5rem 4rem 4rem;
    background     : #faf6ef;
}

.partnership-form-wrap {
    width    : 100%;
    max-width: 460px;
}

.partnership-form-title {
    font-family  : 'Cormorant Garamond', serif;
    font-size    : 1.35rem;
    font-weight  : 600;
    color        : var(--ink);
    margin-bottom: 0.35rem;
    letter-spacing: 0.01em;
}

.partnership-form-sub {
    font-size    : 0.75rem;
    color        : var(--ink-muted);
    letter-spacing: 0.06em;
    margin-bottom: 1.25rem;
}

/* ── Alerts ─────────────────────────────────────────────────────── */

.alert-success {
    background-color: #d4edda;
    color           : #155724;
    padding         : 10px 15px;
    border-radius   : 4px;
    margin-bottom   : 1rem;
    border          : 1px solid #c3e6cb;
    font-size       : 0.8rem;
    letter-spacing  : 0.04em;
}

.alert-error {
    background-color: #f8d7da;
    color           : #721c24;
    padding         : 8px 12px;
    border-radius   : 4px;
    margin-bottom   : 0.5rem;
    border          : 1px solid #f5c6cb;
    font-size       : 0.75rem;
    letter-spacing  : 0.03em;
}

/* ── Form ───────────────────────────────────────────────────────── */

.partnership-form {
    display       : flex;
    flex-direction: column;
    gap           : 1.1rem;
}

.form-row {
    display              : grid;
    grid-template-columns: 1fr 1fr;
    gap                  : 1rem;
}

.form-group {
    display       : flex;
    flex-direction: column;
    gap           : 0.4rem;
}

.form-group label {
    font-size     : 0.65rem;
    font-weight   : 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color         : var(--ink-muted);
}

.attachment-hint {
    text-transform: none;
    letter-spacing: 0;
    font-size     : 0.62rem;
    opacity       : 0.6;
}

.form-group input,
.form-group textarea {
    font-family  : 'Jost', sans-serif;
    font-size    : 0.82rem;
    color        : var(--ink);
    background   : var(--beige);
    border       : 1px solid var(--border);
    border-radius: 2px;
    padding      : 0.65rem 0.85rem;
    outline      : none;
    transition   : border-color 0.2s, box-shadow 0.2s;
    width        : 100%;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(122, 111, 96, 0.45);
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--accent);
    box-shadow  : 0 0 0 3px rgba(176, 141, 91, 0.10);
}

.form-group textarea {
    resize    : none;
    min-height: 110px;
    line-height: 1.6;
}

/* ── File Upload ────────────────────────────────────────────────── */

.form-file-label {
    display      : flex;
    align-items  : center;
    gap          : 0.65rem;
    padding      : 0.65rem 0.85rem;
    background   : var(--beige);
    border       : 1px dashed rgba(176, 141, 91, 0.45);
    border-radius: 2px;
    cursor       : pointer;
    transition   : border-color 0.2s, background 0.2s;
}

.form-file-label:hover {
    border-color: var(--accent);
    background  : rgba(245, 238, 225, 0.96);
}

.form-file-label input[type="file"] {
    display: none;
}

.file-icon {
    color      : var(--accent);
    flex-shrink: 0;
}

.file-text {
    display       : flex;
    flex-direction: column;
    gap           : 0.1rem;
}

.file-text span {
    font-size: 0.78rem;
    color    : var(--ink-muted);
}

.file-text small {
    font-size     : 0.62rem;
    color         : rgba(122, 111, 96, 0.55);
    letter-spacing: 0.04em;
}

.file-name-display {
    font-size : 0.72rem;
    color     : var(--accent);
    margin-top: 0.3rem;
    min-height: 1em;
}

/* ── Button ─────────────────────────────────────────────────────── */

.btn-partnership-submit {
    font-family   : 'Jost', sans-serif;
    font-size     : 0.72rem;
    font-weight   : 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color         : #faf6ef;
    background    : var(--ink);
    border        : 1px solid var(--ink);
    border-radius : 2px;
    padding       : 0.8rem 1.5rem;
    cursor        : pointer;
    transition    : background 0.2s, color 0.2s, border-color 0.2s;
    align-self    : flex-start;
    margin-top    : 0.4rem;
}

.btn-partnership-submit:hover {
    background  : var(--accent);
    border-color: var(--accent);
    color       : #faf6ef;
}

/* ── Responsive ─────────────────────────────────────────────────── */

@media (max-width: 900px) {
    .partnership-section {
        flex-direction: column;
    }

    .partnership-left {
        padding      : 4rem 2.5rem 3rem;
        border-right : none;
        border-bottom: 1px solid var(--border);
    }

    .partnership-right {
        padding: 3rem 2.5rem 4rem;
    }

    .partnership-form-wrap {
        max-width: 100%;
    }
}

@media (max-width: 540px) {
    .form-row {
        grid-template-columns: 1fr;
    }

    .partnership-left {
        padding: 3rem 1.5rem 2.5rem;
    }

    .partnership-right {
        padding: 2.5rem 1.5rem 3rem;
    }
}