/* ══════════════════════════════════════
   AVAILABILITY — Dark section
   ══════════════════════════════════════ */
.vsec-avail {
    background: #0a0a0a;
    padding: 100px 40px;
}

.vsec-avail__inner {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.vsec-avail__eyebrow {
    font-family: 'Outfit', -apple-system, sans-serif;
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #c9963a;
    margin-bottom: 16px;
}

.vsec-avail__title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 44px;
    font-weight: 300;
    color: #ffffff;
    line-height: 1.15;
    margin: 0 0 16px;
}

.vsec-avail__title em { font-style: italic; color: #c9963a; }

.vsec-avail__desc {
    font-family: 'Outfit', -apple-system, sans-serif;
    font-size: 15px;
    font-weight: 300;
    color: rgba(255,255,255,0.45);
    line-height: 1.7;
    margin: 0 0 40px;
}

/* Form */
.vsec-avail__form {
    display: flex;
    align-items: flex-end;
    gap: 12px;
    justify-content: center;
}

.vsec-avail__field {
    display: flex;
    flex-direction: column;
    gap: 6px;
    text-align: left;
}

.vsec-avail__label {
    font-family: 'Outfit', -apple-system, sans-serif;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.35);
}

.vsec-avail__input {
    padding: 14px 20px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    color: #ffffff;
    font-family: 'Outfit', -apple-system, sans-serif;
    font-size: 14px;
    min-width: 220px;
    transition: border-color 0.3s;
}

.vsec-avail__input:focus {
    outline: none;
    border-color: #c9963a;
}

/* Date input colour-scheme for dark bg */
.vsec-avail__input::-webkit-calendar-picker-indicator {
    filter: invert(1) brightness(0.7);
    cursor: pointer;
}

.vsec-avail__button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 36px;
    background: #c9963a;
    color: #0a0a0a;
    font-family: 'Outfit', -apple-system, sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    border: none;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.vsec-avail__button:hover {
    background: #dbb56b;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(201,150,58,0.25);
}

.vsec-avail__button svg {
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.vsec-avail__button:hover svg {
    transform: translateX(4px);
}

/* Responsive */
@media (max-width: 1100px) {
    .vsec-avail { padding: 80px 28px; }
    .vsec-avail__title { font-size: 36px; }
}

@media (max-width: 768px) {
    .vsec-avail { padding: 64px 20px; }
    .vsec-avail__title { font-size: 32px; }
    .vsec-avail__form { flex-direction: column; align-items: stretch; }
    .vsec-avail__input { min-width: 0; width: 100%; }
    .vsec-avail__button { justify-content: center; }
}

/* ── Theme: light override (default is dark) ── */
.vsec-avail.vsec-theme-light .vsec-avail__title { color: #0a0a0a; }
.vsec-avail.vsec-theme-light .vsec-avail__desc { color: #6b6b6b; }
.vsec-avail.vsec-theme-light .vsec-avail__label { color: #999; }
.vsec-avail.vsec-theme-light .vsec-avail__input { background: rgba(0,0,0,0.03); border-color: #e0dbd5; color: #0a0a0a; }
.vsec-avail.vsec-theme-light .vsec-avail__input::-webkit-calendar-picker-indicator { filter: none; }
