/* ============================================================
   BOOKING PAGE — booking.css
   ============================================================ */

#booking-main {
    padding: var(--sv) 0;
    background: var(--black);
    position: relative;
    overflow: hidden;
}
#booking-main::before {
    content: '';
    position: absolute;
    top: -280px; right: -280px;
    width: 700px; height: 700px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--orange-faint), transparent 70%);
    pointer-events: none;
}
#booking-main::after {
    content: '';
    position: absolute;
    bottom: -200px; left: -200px;
    width: 500px; height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(232,99,26,0.04), transparent 70%);
    pointer-events: none;
}

.bm-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--px);
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 80px;
    align-items: start;
}

/* ---- Info Panel ---- */
.bm-info { display: flex; flex-direction: column; gap: 0; }

.bmi-block {
    padding: 28px 0;
    border-bottom: 1px solid var(--black-4);
}
.bmi-block:first-child { padding-top: 0; }

.bmi-label {
    font-family: var(--ff-c);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.3em;
    color: var(--orange);
    text-transform: uppercase;
    margin-bottom: 8px;
}
.bmi-val {
    font-family: var(--ff-c);
    font-size: 17px;
    font-weight: 600;
    letter-spacing: 0.04em;
    color: var(--white-70);
    display: block;
    margin-bottom: 10px;
}
.bmi-link {
    transition: color var(--tf);
}
.bmi-link:hover { color: var(--orange); }
.bmi-note {
    font-size: 13px;
    line-height: 1.75;
    color: var(--muted);
}
.bmi-note em { font-style: italic; }

.bmi-divider { height: 1px; background: transparent; margin: 4px 0; }

/* Socials */
.bmi-socials {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-top: 4px;
}
.bmi-social {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--ff-c);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.1em;
    color: var(--white-40);
    padding: 10px 14px;
    border: 1px solid var(--black-5);
    transition: color var(--tf), border-color var(--tf), background var(--tf);
}
.bmi-social svg { width: 16px; height: 16px; flex-shrink: 0; color: var(--muted); transition: color var(--tf); }
.bmi-social:hover { color: var(--white); border-color: var(--gray); background: var(--black-3); }
.bmi-social:hover svg { color: var(--white); }
.bmi-spotify { }
.bmi-spotify:hover svg { color: #1DB954; }
.bmi-spotify:hover { border-color: rgba(29,185,84,0.3); }

/* Pull quote */
.bmi-quote {
    margin-top: 28px;
    font-family: var(--ff-c);
    font-size: 15px;
    font-weight: 600;
    line-height: 1.5;
    color: var(--muted);
    font-style: italic;
    padding-left: 16px;
    border-left: 2px solid rgba(232,99,26,0.3);
}

/* ---- Form ---- */
.bm-form {
    background: var(--black-2);
    border: 1px solid var(--black-4);
    padding: clamp(32px, 5vw, 56px);
    position: relative;
}
.bm-form::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(to right, var(--orange), rgba(232,99,26,0.2), transparent);
}

.bf-header { margin-bottom: 40px; }
.bf-title {
    font-family: var(--ff-d);
    font-size: clamp(36px, 4.5vw, 56px);
    line-height: 0.95;
    letter-spacing: -0.01em;
    color: var(--white);
    margin-bottom: 12px;
}
.bf-sub {
    font-size: 14px;
    font-weight: 300;
    color: var(--muted);
    line-height: 1.7;
    font-style: italic;
}

.contact-form { display: flex; flex-direction: column; gap: 16px; }

.cf-row-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.cf-field { display: flex; flex-direction: column; gap: 7px; }
.cf-field label {
    font-family: var(--ff-c);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.26em;
    color: var(--muted);
    text-transform: uppercase;
}

.cf-field input,
.cf-field textarea,
.cf-sel-wrap select {
    background: var(--black-3);
    border: 1px solid var(--black-5);
    color: var(--white);
    font-family: var(--ff-c);
    font-size: 15px;
    font-weight: 400;
    letter-spacing: 0.04em;
    padding: 14px 18px;
    outline: none;
    border-radius: 0;
    -webkit-appearance: none;
    appearance: none;
    transition: border-color var(--tf), background var(--tf), box-shadow var(--tf);
    width: 100%;
}
.cf-field input::placeholder,
.cf-field textarea::placeholder { color: var(--muted); }

.cf-field input:focus,
.cf-field textarea:focus,
.cf-sel-wrap select:focus {
    border-color: var(--orange);
    background: var(--black-4);
    box-shadow: 0 0 0 3px rgba(232,99,26,0.1);
}

.cf-field textarea {
    resize: vertical;
    min-height: 140px;
    line-height: 1.65;
}

.cf-sel-wrap { position: relative; }
.cf-sel-wrap select {
    cursor: pointer;
    color: var(--muted);
    padding-right: 40px;
}
.cf-sel-wrap select option { background: var(--black-3); color: var(--white); }
.cf-arr {
    position: absolute;
    right: 16px; top: 50%;
    transform: translateY(-50%);
    color: var(--muted);
    pointer-events: none;
}

.cf-bottom {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-top: 8px;
    flex-wrap: wrap;
}
.cf-note {
    font-size: 12px;
    color: var(--muted);
    font-style: italic;
    line-height: 1.6;
}

/* ---- Responsive ---- */
@media (max-width: 1100px) {
    .bm-inner {
        grid-template-columns: 320px 1fr;
        gap: 56px;
    }
}
@media (max-width: 900px) {
    .bm-inner {
        grid-template-columns: 1fr;
        gap: 56px;
    }
    .bm-info {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 0;
    }
    .bmi-block {
        padding: 20px 24px 20px 0;
    }
    .bmi-divider { display: none; }
    .bmi-quote { display: none; }
}
@media (max-width: 640px) {
    .bm-info { grid-template-columns: 1fr; }
    .bm-form { padding: 28px 24px; }
    .cf-row-2 { grid-template-columns: 1fr; }
    .cf-bottom { flex-direction: column; align-items: flex-start; gap: 12px; }
    .cf-bottom .btn { width: 100%; justify-content: center; }
}
