.request-layout {
    display: grid;
    grid-template-columns: minmax(0, .85fr) minmax(520px, 1.15fr);
    gap: clamp(34px, 6vw, 90px);
    min-height: calc(100vh - 150px);
    padding: clamp(46px, 7vw, 90px) clamp(18px, 6vw, 92px);
    background:
        linear-gradient(110deg, rgba(10, 23, 30, .97), rgba(15, 63, 59, .86)),
        url('https://images.unsplash.com/photo-1505236858219-8359eb29e329?auto=format&fit=crop&w=1800&q=80') center / cover fixed;
}

.request-intro {
    align-self: center;
    color: #fff;
}

.request-intro h1 {
    max-width: 650px;
    margin: 0 0 18px;
    font-size: clamp(2.4rem, 5vw, 5rem);
    line-height: 1;
}

.request-intro > p:not(.eyebrow) {
    max-width: 630px;
    color: rgba(255, 255, 255, .76);
    font-size: 1.06rem;
}

.selected-artist {
    display: grid;
    gap: 6px;
    max-width: 560px;
    margin-top: 34px;
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, .22);
    border-radius: 8px;
    background: rgba(255, 255, 255, .1);
}

.selected-artist span,
.selected-artist small {
    color: rgba(255, 255, 255, .68);
}

.selected-artist span {
    font-size: .74rem;
    font-weight: 900;
    text-transform: uppercase;
}

.selected-artist strong {
    font-size: 1.2rem;
}

.selected-artist b {
    color: #fed7aa;
}

.request-form-panel {
    align-self: center;
    padding: clamp(24px, 4vw, 42px);
    border: 1px solid rgba(255, 255, 255, .35);
    border-radius: 8px;
    background: rgba(255, 255, 255, .98);
    box-shadow: 0 28px 70px rgba(0, 0, 0, .25);
}

.request-form-panel h2 {
    margin: 0;
    font-size: 1.8rem;
}

.request-privacy {
    margin: 18px 0 0;
    color: var(--muted);
    font-size: .78rem;
}

.request-success {
    display: grid;
    justify-items: start;
    gap: 16px;
    padding: 26px;
}

.request-success span {
    font-size: 1.1rem;
    font-weight: 900;
}

.honeypot {
    position: absolute;
    left: -10000px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

@media (max-width: 920px) {
    .request-layout {
        grid-template-columns: 1fr;
        background-attachment: scroll;
    }
}

@media (max-width: 620px) {
    .request-form-panel .grid-form {
        grid-template-columns: 1fr;
    }
}
