.hero__img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: -2;
    filter: none;
    pointer-events: none;
}

.hero--center .hero__content {
    width: 100%;
    text-align: center;
    display: grid;
    place-items: center;
}

.hero--contact .hero-title {
    font-size: clamp(32px, 6vw, 84px);
    font-weight: 800;
    letter-spacing: .02em;
    margin-bottom: 14px;
}

.hero--contact .btn {
    backdrop-filter: blur(2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, .25);
    margin-top: 80px;
}

@media (max-width: 420px) {
    .hero--contact .btn {
        margin-top: 28px;
    }
}

/* ===== Talk ===== */
.talk {
    background: #fff;
    text-align: center;
    padding: 100px 0 150px;
}

.talk__title {
    font-size: clamp(22px, 3vw, 36px);
    font-weight: 500;
    margin: 0 0 8px;
    letter-spacing: -0.01em;
    color: #0b0d12;
}

.talk__lead {
    max-width: 1000px;
    margin: 0 auto 24px;
    color: #111111;
    line-height: 1.6;
    font-size: clamp(16px, 1.6vw, 20px);
    font-family: Montserrat, Garet;
}

.talk__rule {
    height: 2px;
    border: 0;
    background: #b8b8b8;
    width: min(1100px, 96%);
    margin: 90px auto 110px;
}

.talk__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(24px, 4vw, 40px);
    align-items: start;
}

.talk__item {
    display: grid;
    justify-items: center;
    gap: 14px;
}

.talk__icon {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    display: grid;
    place-items: center;
}

.talk__icon img {
    width: 120px;
    height: 120px;
}

.talk__value {
    font-weight: 900;
    font-size: clamp(16px, 2vw, 22px);
    color: #000;
    text-decoration: none;
    text-align: center;
    line-height: 1.35;
}

.talk__value:hover {
    text-decoration: underline;
}

.talk address {
    font-style: normal;
}

@media (max-width: 860px) {
    .talk__grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .talk__icon {
        width: 120px;
        height: 120px;
    }
}

/* ===== Booking ===== */
.booking {
    background: #000;
    padding: 100px 0;
    text-align: center;
}

.booking__title {
    color: #fff;
    font-weight: 700;
    font-size: clamp(20px, 2vw, 26px);
    margin: 0;
}

/* ===== Contact Form ===== */
.formsec__title.contact {
    font-size: clamp(20px, 1.8vw, 30px);
    line-height: 0.9;
}