.contacts-hero {
    padding: 80px 0;
    background:
        radial-gradient(
            circle at 85% 10%,
            rgba(113, 51, 75, 0.2),
            transparent 34%
        ),
        var(--graphite);
    color: var(--text-light);
}

.contacts-hero__grid {
    display: grid;
    align-items: center;
    gap: 72px;
    grid-template-columns: 1.25fr 0.75fr;
}

.contacts-hero h1 {
    max-width: 830px;
    margin-top: 16px;
    font-family: var(--font-heading);
    font-size: clamp(44px, 5vw, 67px);
    font-weight: 600;
    letter-spacing: -0.055em;
    line-height: 1;
}

.contacts-hero p:not(.section-label) {
    max-width: 650px;
    margin-top: 21px;
    color: var(--text-light-muted);
}

.contacts-hero__phone {
    padding: 30px;
    border: 1px solid var(--border-dark);
    background: rgba(12, 13, 13, 0.34);
}

.contacts-hero__phone > span {
    color: var(--rose-light);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.contacts-hero__phone > a {
    display: block;
    margin-top: 12px;
    font-family: var(--font-heading);
    font-size: clamp(25px, 3vw, 37px);
    font-weight: 600;
}

.contacts-hero__phone > p {
    margin-top: 9px !important;
    font-size: 11px;
}

.contacts-details {
    padding: 56px 0;
    background: var(--rose-light);
}

.contacts-details__grid {
    display: grid;
    gap: 14px;
    grid-template-columns: repeat(3, 1fr);
}

.contact-detail-card {
    min-height: 210px;
    padding: 25px;
    border: 1px solid var(--border);
    background: var(--stone-light);
}

.contact-detail-card > span {
    color: var(--wine);
    font-size: 10px;
    font-weight: 800;
}

.contact-detail-card h2 {
    margin-top: 35px;
    font-family: var(--font-heading);
    font-size: 22px;
}

.contact-detail-card > p,
.contact-detail-card > a {
    display: block;
    margin-top: 9px;
    font-size: 15px;
    font-weight: 700;
}

.contact-detail-card small {
    display: block;
    margin-top: 8px;
    color: var(--text-muted);
    font-size: 10px;
}

.booking-form-section {
    padding: 76px 0;
    background: var(--stone);
}

.booking-form-layout {
    display: grid;
    align-items: start;
    gap: 26px;
    grid-template-columns: 0.72fr 1.28fr;
}

.booking-form-intro {
    position: sticky;
    top: calc(var(--header-height) + 24px);
    padding: 38px;
    background: var(--black-soft);
    color: var(--text-light);
}

.booking-form-intro h2 {
    margin-top: 14px;
    font-family: var(--font-heading);
    font-size: clamp(34px, 3.8vw, 51px);
    line-height: 1.08;
}

.booking-form-intro > p {
    margin-top: 17px;
    color: var(--text-light-muted);
    font-size: 12px;
}

.booking-form-intro ol {
    display: grid;
    gap: 1px;
    margin-top: 28px;
    background: var(--border-dark);
}

.booking-form-intro li {
    display: flex;
    padding: 16px;
    gap: 13px;
    background: var(--black-soft);
}

.booking-form-intro li > span {
    color: var(--rose);
    font-size: 10px;
    font-weight: 800;
}

.booking-form-intro li strong {
    display: block;
    font-size: 11px;
}

.booking-form-intro li p {
    margin-top: 3px;
    color: #8f918d;
    font-size: 9px;
}

.booking-form-card {
    padding: 38px;
    border: 1px solid var(--border);
    background: var(--stone-light);
    box-shadow: var(--shadow);
}

.booking-form__heading {
    margin-bottom: 25px;
}

.booking-form__heading h3 {
    font-family: var(--font-heading);
    font-size: 28px;
}

.booking-form__heading p {
    margin-top: 5px;
    color: var(--text-muted);
    font-size: 11px;
}

.booking-form__grid {
    display: grid;
    gap: 18px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.booking-field {
    display: grid;
    align-content: start;
    gap: 7px;
    min-width: 0;
}

.booking-field--full {
    grid-column: 1 / -1;
}

.booking-field label,
.booking-field legend {
    padding: 0;
    color: var(--text-body);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.booking-field input[type="text"],
.booking-field input[type="tel"],
.booking-field input[type="date"],
.booking-field select,
.booking-field textarea {
    width: 100%;
    min-height: 49px;
    padding: 11px 13px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    outline: none;
    background: var(--stone);
    color: var(--text-dark);
    font-size: 12px;
    transition:
        border-color 180ms ease,
        box-shadow 180ms ease,
        background-color 180ms ease;
}

.booking-field textarea {
    min-height: 125px;
    resize: vertical;
}

.booking-field input:focus,
.booking-field select:focus,
.booking-field textarea:focus {
    border-color: var(--wine);
    background: #e7e5e1;
    box-shadow: 0 0 0 3px rgba(113, 51, 75, 0.12);
}

.booking-field [aria-invalid="true"] {
    border-color: #a9454e !important;
}

.booking-field__error {
    min-height: 15px;
    color: #a13e4b;
    font-size: 9px;
}

.booking-field__hint {
    color: var(--text-muted);
    font-size: 9px;
}

.booking-options {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
}

.booking-option {
    display: inline-flex;
    min-height: 44px;
    padding: 10px 13px;
    align-items: center;
    gap: 8px;
    border: 1px solid var(--border);
    background: var(--stone);
    cursor: pointer;
}

.booking-option input {
    accent-color: var(--wine);
}

.booking-option:has(input:checked) {
    border-color: var(--wine);
    background: var(--rose-pale);
}

.booking-option span {
    font-size: 11px;
    font-weight: 700;
    text-transform: none;
}

.booking-upload {
    position: relative;
    display: flex;
    min-height: 120px;
    padding: 22px;
    align-items: center;
    justify-content: center;
    border: 1px dashed var(--rose-dark);
    background: var(--rose-pale);
    text-align: center;
    transition:
        border-color 180ms ease,
        background-color 180ms ease;
}

.booking-upload:hover,
.booking-upload.is-dragging {
    border-color: var(--wine);
    background: #d8c6cb;
}

.booking-upload input {
    position: absolute;
    z-index: 2;
    inset: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
    opacity: 0;
}

.booking-upload strong {
    display: block;
    font-size: 12px;
}

.booking-upload p {
    margin-top: 5px;
    color: var(--text-muted);
    font-size: 9px;
}

.booking-previews {
    display: grid;
    gap: 8px;
    grid-template-columns: repeat(3, 1fr);
}

.booking-preview {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    border: 1px solid var(--border);
    background: var(--stone);
}

.booking-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.booking-preview span {
    position: absolute;
    right: 5px;
    bottom: 5px;
    left: 5px;
    overflow: hidden;
    padding: 5px;
    background: rgba(12, 13, 13, 0.78);
    color: #fff;
    font-size: 8px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.booking-consent {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    text-transform: none !important;
}

.booking-consent input {
    width: 18px;
    height: 18px;
    flex: 0 0 18px;
    accent-color: var(--wine);
}

.booking-consent span {
    font-size: 10px;
    font-weight: 500;
    line-height: 1.6;
}

.booking-consent a {
    color: var(--wine);
    text-decoration: underline;
}

.booking-submit {
    width: 100%;
}

.booking-submit:disabled {
    cursor: wait;
    opacity: 0.62;
    transform: none;
}

.booking-honeypot {
    position: absolute !important;
    left: -10000px !important;
    overflow: hidden;
    width: 1px;
    height: 1px;
}

.form-message {
    margin-bottom: 24px;
    padding: 16px 18px;
    border-left: 4px solid;
}

.form-message strong {
    display: block;
    font-size: 12px;
}

.form-message p {
    margin-top: 4px;
    font-size: 11px;
}

.form-message--success {
    border-color: #486551;
    background: #d9e4dc;
    color: #20382a;
}

.form-message--error {
    border-color: #a9454e;
    background: #ead5d8;
    color: #612731;
}

.contacts-bottom {
    padding: 68px 0;
    background: var(--graphite);
    color: var(--text-light);
}

.contacts-bottom__grid {
    display: grid;
    align-items: center;
    gap: 70px;
    grid-template-columns: 1fr 0.7fr;
}

.contacts-bottom h2 {
    max-width: 700px;
    margin-top: 14px;
    font-family: var(--font-heading);
    font-size: clamp(35px, 4vw, 54px);
    line-height: 1.08;
}

.contacts-bottom__grid > div:last-child p {
    color: var(--text-light-muted);
    font-size: 12px;
}

.contacts-bottom .button {
    margin-top: 20px;
}

@media (max-width: 1023px) {
    .contacts-hero__grid {
        gap: 42px;
    }

    .booking-form-layout {
        grid-template-columns: 0.82fr 1.18fr;
    }

    .booking-form-intro {
        padding: 28px;
    }

    .booking-form-card {
        padding: 28px;
    }
}

@media (max-width: 767px) {
    .contacts-hero {
        padding: 58px 0;
    }

    .contacts-hero__grid,
    .contacts-details__grid,
    .booking-form-layout,
    .contacts-bottom__grid {
        grid-template-columns: 1fr;
    }

    .contacts-hero h1 {
        font-size: 42px;
    }

    .contacts-details {
        padding: 42px 0;
    }

    .booking-form-section {
        padding: 58px 0;
    }

    .booking-form-intro {
        position: static;
    }

    .booking-form__grid {
        grid-template-columns: 1fr;
    }

    .booking-field--full {
        grid-column: auto;
    }

    .booking-previews {
        grid-template-columns: 1fr 1fr;
    }

    .contacts-bottom {
        padding: 58px 0;
    }

    .contacts-bottom .button {
        width: 100%;
    }
}