/* =====================================================================
   Houston booking design language
   Stepped form-card + custom steppers + restyled shared calendar +
   rich sticky summary card. Adapted from the "ideal design" reference,
   recolored to our --houston-* tokens, our fonts, no heavy motion.
   Everything is scoped under .houston-booking to avoid global collisions.
   ===================================================================== */

.houston-booking {
    --hb-serif: Georgia, "Times New Roman", serif;
}

.houston-booking .band-head {
    margin-bottom: 26px;
}

.houston-booking .band-head .eyebrow {
    display: block;
    margin-bottom: 10px;
}

.houston-booking .band-h {
    color: var(--houston-text);
    font-family: var(--hb-serif);
    font-size: clamp(26px, 3.4vw, 34px);
    font-weight: 600;
    line-height: 1.1;
    margin: 0;
}

.houston-booking .booking-grid {
    align-items: start;
    display: grid;
    gap: 34px;
    grid-template-columns: minmax(0, 1fr) 360px;
}

/* ---------- form card + steps ---------- */
.houston-booking .form-card {
    background: linear-gradient(180deg, rgba(43, 44, 41, 0.92), rgba(33, 34, 31, 0.92));
    border: 1px solid var(--houston-line);
    border-radius: 18px;
    padding: 8px 30px 30px;
}

.houston-booking .step {
    border-bottom: 1px solid var(--houston-line);
    padding: 26px 0;
}

.houston-booking .step:last-of-type {
    border-bottom: 0;
}

.houston-booking .step-head {
    align-items: baseline;
    display: flex;
    gap: 14px;
    margin-bottom: 18px;
}

.houston-booking .step-num {
    border: 1px solid var(--houston-line-strong);
    border-radius: 6px;
    color: var(--houston-teal);
    flex: none;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.1em;
    padding: 3px 8px;
}

.houston-booking .step-head h3 {
    color: var(--houston-text);
    font-family: var(--hb-serif);
    font-size: 22px;
    font-weight: 600;
    line-height: 1.1;
    margin: 0;
}

.houston-booking .step-head .opt {
    color: var(--houston-muted);
    font-family: inherit;
    font-size: 13px;
    font-weight: 600;
}

.houston-booking .step-head .sub {
    color: var(--houston-muted-2);
    font-size: 13px;
    margin-top: 3px;
}

/* ---------- fields ---------- */
.houston-booking .fields {
    display: grid;
    gap: 16px;
    grid-template-columns: 1fr 1fr;
}

.houston-booking .field {
    display: flex;
    flex-direction: column;
    gap: 7px;
    min-width: 0;
}

.houston-booking .field.full {
    grid-column: 1 / -1;
}

.houston-booking label {
    color: var(--houston-muted);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.houston-booking input,
.houston-booking select,
.houston-booking textarea {
    background: var(--houston-bg);
    border: 1px solid var(--houston-line-strong);
    border-radius: 9px;
    box-sizing: border-box;
    color: var(--houston-text);
    font: inherit;
    font-size: 15px;
    padding: 12px 13px;
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
    width: 100%;
}

.houston-booking input::placeholder,
.houston-booking textarea::placeholder {
    color: var(--houston-muted);
}

.houston-booking input:hover,
.houston-booking select:hover,
.houston-booking textarea:hover {
    border-color: var(--houston-teal);
}

.houston-booking input:focus,
.houston-booking select:focus,
.houston-booking textarea:focus {
    border-color: var(--houston-teal);
    box-shadow: 0 0 0 3px rgba(24, 185, 145, 0.18);
    outline: 0;
}

.houston-booking textarea {
    min-height: 88px;
    resize: vertical;
}

.houston-booking select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%2318b991' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-position: right 13px center;
    background-repeat: no-repeat;
    padding-right: 38px;
}

.houston-booking option {
    background: var(--houston-bg);
    color: var(--houston-text);
}

/* ---------- steppers ---------- */
.houston-booking .counts {
    display: grid;
    gap: 16px;
    grid-template-columns: 1fr 1fr;
}

.houston-booking .stepper {
    align-items: stretch;
    background: var(--houston-bg);
    border: 1px solid var(--houston-line-strong);
    border-radius: 9px;
    display: flex;
    overflow: hidden;
}

.houston-booking .stepper.free {
    opacity: 0.9;
}

.houston-booking .stepper button {
    background: transparent;
    border: 0;
    color: var(--houston-teal);
    cursor: pointer;
    font-size: 20px;
    transition: background-color 0.15s ease, color 0.15s ease;
    width: 42px;
}

.houston-booking .stepper button:hover {
    background: rgba(24, 185, 145, 0.14);
}

.houston-booking .stepper button:disabled {
    color: #5a5a54;
    cursor: not-allowed;
}

.houston-booking .stepper input {
    background: transparent;
    border: 0;
    box-shadow: none;
    flex: 1;
    font-variant-numeric: tabular-nums;
    padding: 12px 0;
    text-align: center;
    width: 100%;
}

.houston-booking .stepper input:focus {
    box-shadow: none;
}

.houston-booking .hint {
    color: var(--houston-muted);
    font-size: 12px;
    margin-top: 6px;
}

.houston-booking .hint.warn {
    color: var(--houston-amber);
}

.houston-booking .hint.tax-qualified {
    color: #2e8b57;
}

.houston-booking .hint.tax-not-qualified {
    color: var(--houston-amber);
}

.houston-booking .free-tag {
    border: 1px solid var(--houston-line-strong);
    border-radius: 5px;
    color: var(--houston-teal);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.1em;
    margin-left: 8px;
    padding: 1px 6px;
    vertical-align: middle;
}

/* ---------- calendar step ---------- */
.houston-booking .cal-grid {
    display: grid;
    gap: 26px;
    grid-template-columns: 1.05fr 1fr;
}

.houston-booking .arrival-stack {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

/* the shared .houston-calendar* component fills its column */
.houston-booking .houston-calendar {
    margin-top: 0;
    max-width: none;
    width: 100%;
}

/* warm "selected day" on booking pages (the reference's coral selection);
   the global SWS calendar keeps its teal selection. */
.houston-booking .houston-calendar-day.is-selected {
    background: #f0440b;
    border-color: #f0440b;
    color: #fff;
}

/* ---------- guided / upsell box ---------- */
.houston-booking .guided {
    align-items: flex-start;
    background: rgba(24, 185, 145, 0.07);
    border: 1px solid var(--houston-line);
    border-radius: 12px;
    cursor: pointer;
    display: flex;
    gap: 14px;
    margin-top: 22px;
    padding: 16px;
}

.houston-booking .guided input {
    accent-color: var(--houston-teal);
    flex: none;
    height: 22px;
    margin-top: 1px;
    padding: 0;
    width: 22px;
}

.houston-booking .guided b {
    color: var(--houston-text);
    font-size: 14.5px;
}

.houston-booking .guided p {
    color: var(--houston-muted-2);
    font-size: 12.5px;
    margin-top: 3px;
}

.houston-booking .guided .incl {
    color: var(--houston-teal);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.1em;
    margin-left: auto;
    text-transform: uppercase;
    white-space: nowrap;
}

/* ---------- submit zone ---------- */
.houston-booking .submit-zone {
    padding-top: 26px;
}

.houston-booking .minitotal {
    align-items: baseline;
    border: 1px dashed var(--houston-line-strong);
    border-radius: 10px;
    color: var(--houston-muted-2);
    display: flex;
    font-size: 13.5px;
    justify-content: space-between;
    margin-bottom: 14px;
    padding: 13px 16px;
}

.houston-booking .minitotal b {
    color: var(--houston-text);
    font-size: 18px;
    font-weight: 800;
}

.houston-booking .btn-block {
    font-size: 14px;
    letter-spacing: normal;
    padding: 16px;
    text-transform: none;
    width: 100%;
}

.houston-booking .alt-link {
    background: none;
    border: 0;
    color: var(--houston-teal);
    cursor: pointer;
    display: block;
    font: inherit;
    font-size: 13.5px;
    margin-top: 14px;
    text-align: center;
    text-decoration: underline;
    text-underline-offset: 3px;
    width: 100%;
}

.houston-booking .alt-link:hover {
    color: #2fd6a8;
}

.houston-booking .alt-link:disabled {
    cursor: default;
    opacity: 0.6;
}

.houston-booking .fineprint {
    color: var(--houston-muted);
    font-size: 12px;
    line-height: 1.6;
    margin-top: 16px;
}

/* ---------- confirm (inquiry success) ---------- */
.houston-booking .confirm {
    background: rgba(24, 185, 145, 0.08);
    border: 1px solid var(--houston-teal);
    border-radius: 14px;
    display: none;
    margin-top: 14px;
    padding: 24px;
}

.houston-booking .confirm.show {
    display: block;
}

.houston-booking .confirm h4 {
    align-items: center;
    color: var(--houston-text);
    display: flex;
    font-family: var(--hb-serif);
    font-size: 21px;
    font-weight: 600;
    gap: 10px;
    margin: 0;
}

.houston-booking .confirm p {
    color: var(--houston-muted-2);
    font-size: 14px;
    margin-top: 8px;
}

/* ---------- sticky summary card ---------- */
.houston-booking .summary {
    position: sticky;
    top: 88px;
}

.houston-booking .eyebrow {
    color: var(--houston-teal);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.22em;
    text-transform: uppercase;
}

.houston-booking .sum-card {
    background: linear-gradient(180deg, rgba(43, 44, 41, 0.96), rgba(33, 34, 31, 0.98));
    border: 1px solid var(--houston-line-strong);
    border-radius: 18px;
    overflow: hidden;
}

.houston-booking .sum-top {
    border-bottom: 1px solid var(--houston-line);
    padding: 22px 24px;
}

.houston-booking .sum-top .eyebrow {
    display: block;
    margin-bottom: 8px;
}

.houston-booking .sum-top h3 {
    color: var(--houston-text);
    font-family: var(--hb-serif);
    font-size: 23px;
    font-weight: 600;
    margin: 0;
}

.houston-booking .sum-body {
    padding: 8px 24px 4px;
}

.houston-booking .sum-row {
    align-items: flex-start;
    border-bottom: 1px solid var(--houston-line);
    color: var(--houston-muted-2);
    display: flex;
    font-size: 14.5px;
    gap: 12px;
    justify-content: space-between;
    padding: 15px 0;
}

.houston-booking .sum-row:last-child {
    border-bottom: 0;
}

.houston-booking .sum-row[hidden] {
    display: none;
}

.houston-booking .sum-row .meta {
    color: var(--houston-muted);
    font-size: 11px;
    margin-top: 2px;
}

.houston-booking .sum-row .val {
    color: var(--houston-text);
    font-variant-numeric: tabular-nums;
    font-weight: 700;
    white-space: nowrap;
}

.houston-booking .sum-row.total {
    color: var(--houston-text);
    font-size: 16px;
}

.houston-booking .sum-row.total .val {
    color: var(--houston-teal);
    font-size: 20px;
    font-weight: 800;
}

.houston-booking .sum-free {
    color: var(--houston-teal);
    font-size: 12px;
    font-weight: 700;
}

.houston-booking .sum-foot {
    background: var(--houston-bg);
    border-top: 1px solid var(--houston-line);
    padding: 18px 24px;
}

.houston-booking .sum-foot .due {
    align-items: baseline;
    color: var(--houston-text);
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
}

.houston-booking .sum-foot .due b {
    font-size: 18px;
    font-weight: 800;
}

.houston-booking .sum-foot p {
    color: var(--houston-muted);
    font-size: 12px;
    line-height: 1.55;
    margin: 0;
}

/* ---------- responsive ---------- */
@media (max-width: 980px) {
    .houston-booking .booking-grid,
    .houston-booking .cal-grid {
        grid-template-columns: 1fr;
    }

    .houston-booking .summary {
        position: static;
    }
}

@media (max-width: 560px) {
    .houston-booking .fields,
    .houston-booking .counts {
        grid-template-columns: 1fr;
    }

    .houston-booking .form-card {
        padding: 6px 18px 22px;
    }
}
