.meet-page {
    min-height: calc(100vh - 8rem);
    padding-block: clamp(2rem, 4vw, 4rem);
}

.meet-wrap {
    width: min(100% - 2rem, 74rem);
}

.meet-intro {
    margin-bottom: clamp(1.25rem, 2.5vw, 2rem);
}

.meet-intro h1 {
    max-width: 18ch;
    margin-bottom: 0.45rem;
    font-size: clamp(2.5rem, 4.8vw, 4.8rem);
    line-height: 0.98;
}

.meet-intro p {
    max-width: 42rem;
    margin: 0;
    font-size: clamp(1rem, 1.5vw, 1.2rem);
}

.meet-contact-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem 1.5rem;
    margin-top: 0.55rem;
}

.meet-contact-links a {
    width: fit-content;
    overflow-wrap: anywhere;
}

.meet-form {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem 1.25rem;
    padding: clamp(1.25rem, 2.5vw, 2rem);
    background: #fffaf5;
    border: 1px solid rgba(51, 47, 47, 0.18);
}

.meet-form__field {
    display: grid;
    gap: 0.35rem;
    min-width: 0;
    align-content: start;
}

.meet-form__field > label,
.meet-form__choice legend {
    font-weight: 600;
}

.meet-form input:not([type="radio"]),
.meet-form textarea {
    width: 100%;
    min-width: 0;
    background: #fff;
    color: var(--souvelty-anthracite);
    border: 1px solid rgba(51, 47, 47, 0.32);
    box-shadow: none;
}

.meet-form input:not([type="radio"]) {
    height: 3rem;
    min-height: 3rem;
    padding: 0.7rem 0.85rem;
}

.meet-form input:not([type="radio"]):focus,
.meet-form textarea:focus {
    border-color: var(--souvelty-aubergine);
    outline: 2px solid rgba(58, 29, 48, 0.2);
    outline-offset: 1px;
}

.meet-form__choice {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.55rem;
    margin: 0;
    padding: 0;
    border: 0;
}

.meet-form__choice legend {
    grid-column: 1 / -1;
    margin-bottom: 0;
}

.meet-form__choice label {
    display: flex;
    gap: 0.6rem;
    align-items: center;
    height: 3rem;
    min-height: 3rem;
    padding: 0.65rem 0.8rem;
    border: 1px solid rgba(51, 47, 47, 0.25);
    cursor: pointer;
}

.meet-form__choice input {
    width: 1rem;
    height: 1rem;
    margin: 0;
    accent-color: var(--souvelty-aubergine);
}

.meet-form__choice label:has(input:checked) {
    border-color: var(--souvelty-aubergine);
    box-shadow: inset 0 0 0 1px var(--souvelty-aubergine);
}

.meet-form__conditional {
    display: grid;
    gap: 1rem;
    min-width: 0;
    align-self: start;
}

.meet-form__conditional[hidden] {
    display: none;
}

.meet-form__contact--location {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.meet-form textarea {
    min-height: 6.5rem;
    padding: 0.7rem 0.85rem;
    resize: vertical;
}

.meet-form__privacy {
    align-self: center;
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.45;
}

.meet-form__submit {
    justify-self: end;
    align-self: center;
    min-width: 11rem;
}

.notice {
    margin-bottom: 1rem;
}

@media (max-width: 760px) {
    .meet-page {
        padding-block: 1.75rem 2.5rem;
    }

    .meet-wrap {
        width: min(100% - 1.5rem, 44rem);
    }

    .meet-intro {
        margin-bottom: 1rem;
    }

    .meet-intro h1 {
        font-size: clamp(2.35rem, 11vw, 3.5rem);
    }

    .meet-contact-links {
        display: grid;
        gap: 0.2rem;
    }

    .meet-form {
        grid-template-columns: 1fr;
        gap: 0.85rem;
        padding: 1rem;
    }

    .meet-form__choice,
    .meet-form__contact--location {
        grid-template-columns: 1fr;
    }

    .meet-form__choice {
        gap: 0.45rem;
    }

    .meet-form__choice label,
    .meet-form input:not([type="radio"]) {
        height: 2.8rem;
        min-height: 2.8rem;
    }

    .meet-form__choice label {
        padding: 0.55rem 0.7rem;
    }

    .meet-form textarea {
        min-height: 5.5rem;
    }

    .meet-form__submit {
        justify-self: stretch;
        width: 100%;
    }
}
