.as-callto {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, .75fr) minmax(420px, 680px);
    gap: clamp(2.5rem, 5vw, 5.5rem);
    overflow: hidden;
    padding: clamp(2.5rem, 7vw, 5.5rem);
    border: 1px solid rgba(222, 44, 69, .45);
    border-radius: 0;
    background: #050505;
    color: #fff;
    box-shadow: none;
    isolation: isolate;
}

.as-callto::before {
    position: absolute;
    top: clamp(1rem, 3vw, 1.75rem);
    right: clamp(1rem, 3vw, 1.75rem);
    width: clamp(4rem, 12vw, 8rem);
    height: 2px;
    background: #de2c45;
    content: "";
}

.as-callto__glow {
    position: absolute;
    inset: auto -5rem -7rem auto;
    width: 18rem;
    height: 18rem;
    border: 1px solid rgba(222, 44, 69, .28);
    border-radius: 999px;
    background: rgba(222, 44, 69, .16);
    z-index: -1;
}

.as-callto__content,
.as-callto__form {
    position: relative;
    z-index: 1;
}

.as-callto__eyebrow {
    margin: 0 0 1rem;
    color: #de2c45;
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: .18em;
    line-height: 1.2;
    text-transform: uppercase;
}

.as-callto__title {
    max-width: 11ch;
    margin: 0;
    color: #fff;
    font-size: clamp(2.4rem, 8vw, 5.75rem);
    font-weight: 800;
    letter-spacing: -.055em;
    line-height: .9;
}

.as-callto__subtitle {
    max-width: 38rem;
    margin: 1.75rem 0 0;
    color: rgba(255, 255, 255, .72);
    font-size: clamp(1rem, 2vw, 1.2rem);
    line-height: 1.55;
}

.as-callto__form {
    align-self: end;
    padding: clamp(1.75rem, 4vw, 3rem);
    border: 2px solid #de2c45;
    background: #111;
    box-shadow: 10px 10px 0 #de2c45;
}

.as-callto__label {
    display: block;
    margin: 0 0 .9rem;
    color: #fff;
    font-size: .78rem;
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.as-callto__fields {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 1.35rem;
    row-gap: 1.45rem;
}

.as-callto__field {
    min-width: 0;
}

.as-callto__field[hidden] {
    display: none;
}

.as-callto__field--full {
    grid-column: 1 / -1;
}

.as-callto__input {
    min-width: 0;
    flex: 1 1 auto;
    width: 100%;
    border: 2px solid #de2c45;
    border-radius: 16px;
    padding: 1.22rem 1.25rem;
    background: #050505;
    box-shadow: inset 0 0 0 3px rgba(222, 44, 69, .12);
    color: #fff;
    font: inherit;
    outline: 3px solid transparent;
    outline-offset: 4px;
    transition: border-color .2s ease, outline-color .2s ease, background-color .2s ease;
    color-scheme: dark;
}

.as-callto__textarea {
    display: block;
    min-height: 9rem;
    resize: vertical;
}

.as-callto__input::placeholder {
    color: rgba(255, 255, 255, .5);
}

.as-callto__input:focus {
    border-color: #de2c45;
    background: #111;
    outline-color: rgba(222, 44, 69, .45);
    box-shadow: inset 0 0 0 3px rgba(222, 44, 69, .22);
}

.as-callto__button {
    display: block;
    width: 100%;
    margin-top: 1.75rem;
    flex: 0 0 auto;
    border: 1px solid #de2c45;
    border-radius: 0;
    padding: 1.15rem 1.45rem;
    background: #de2c45;
    color: #fff;
    cursor: pointer;
    font: inherit;
    font-size: .78rem;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
    transition: background-color .2s ease, color .2s ease, transform .2s ease;
}

.as-callto__button:hover,
.as-callto__button:focus-visible {
    background: transparent;
    color: #fff;
    transform: translateY(-1px);
}

.as-callto__button:disabled {
    cursor: wait;
    opacity: .65;
    transform: none;
}

.as-callto__privacy,
.as-callto__message {
    margin: 1.2rem 0 0;
    color: rgba(255, 255, 255, .62);
    font-size: .88rem;
    line-height: 1.45;
}

.as-callto__message {
    min-height: 1.2em;
    font-weight: 800;
}

.as-callto__message--success {
    color: #72f0a0;
}

.as-callto__message--error {
    color: #ff9aa8;
}

@media (max-width: 760px) {
    .as-callto {
        grid-template-columns: 1fr;
    }

    .as-callto::before {
        width: 3.5rem;
    }

    .as-callto__title {
        max-width: 8ch;
    }

    .as-callto__form {
        box-shadow: 6px 6px 0 #de2c45;
    }

    .as-callto__fields {
        grid-template-columns: 1fr;
    }

    .as-callto__button {
        width: 100%;
    }
}
