/* ========================================
   BOOKINGS PAGE — Vanini Space (brown/pink)
   vanini.space
   ======================================== */

/* ============ DESIGN LANGUAGE OVERRIDE ============
   matrix.css is still loaded (for its shared structural chrome — .top-nav,
   .nav-tab, .ipod-*, .glitch-* — this page has never had its own copy of
   that layout CSS, only colour retints on top of it; dropping matrix.css
   entirely broke all of it, see the style-guide-audit follow-up note dated
   2026-08-14). tokens.css now loads alongside it — different variable
   names, no collision — so this :root block below can override matrix.css's
   own green :root values with ones DERIVED from tokens.css, instead of the
   hardcoded, off-palette duplicates that used to sit here (style-guide
   audit S1/S2). Names are kept as-is (--matrix-green legitimately holds
   pink now, not renamed to something like --accent) to avoid a blind
   rename across every call site in this file; that's a real but separate,
   higher-risk follow-up from fixing the values themselves.
   --mag itself is a FILL colour and fails text contrast on this ground
   (2.8:1) — --mag-tint is tokens.css's accessible reading of the same hue
   for text (9.2:1), see tokens.css for the reasoning.
   --font-display is the SINGLE swap point for the planned Anton -> Panchang
   change: once Panchang is self-hosted, edit only the line below. */
:root {
    --matrix-green: var(--mag-tint);
    --matrix-bright: var(--cad);
    --matrix-cyan: var(--bone);
    --matrix-dark-green: var(--bg-secondary);
    --bg-primary: var(--ground);
    --bg-secondary: color-mix(in srgb, var(--ground) 88%, var(--bone));
    --bg-card: color-mix(in srgb, var(--ground) 92%, transparent);
    --bg-input: color-mix(in srgb, var(--ground) 60%, transparent);
    --border-color: color-mix(in srgb, var(--mag) 25%, transparent);
    --border-active: color-mix(in srgb, var(--mag) 70%, transparent);
    --text-primary: var(--bone);
    --text-muted: color-mix(in srgb, var(--bone) 65%, var(--ground));
    --font-mono: var(--sans);
    --font-display: var(--display);
}

/* matrix.css's own `body {}` rule still applies (background: var(--bg-primary),
   now correctly ground-toned via the override above) — this just wins the
   font-family/color half of it, per style-guide audit S3: body text should
   read in --sans (Inter), not matrix.css's --font-mono. Same specificity as
   matrix.css's body rule, source order wins since this file loads after it. */
body {
    font-family: var(--sans);
    color: var(--text-primary);
}

/* Shared app chrome (nav / iPod player / glitch-click bursts) hardcodes
   rgba(var(--accent-rgb),…) and rgba(10,10,10,…) literals in matrix.css instead of
   the tokens above — retint those literals here, scoped to this page,
   rather than editing the shared file. Values match the source rule's blur
   radius / alpha exactly; only the RGB triplet changes. */
.top-nav { background: rgba(34, 25, 15, .97); }
.nav-logo { color: var(--matrix-green); }
.nav-tab:hover { background: rgba(240, 164, 230, .03); }
.ipod-toggle { box-shadow: 0 0 20px rgba(240, 164, 230, .05); }
.ipod-toggle:hover { box-shadow: 0 0 20px rgba(240, 164, 230, .15); }
.ipod-nano.open .ipod-toggle { box-shadow: 0 0 15px rgba(240, 164, 230, .2); }
.ipod-screen { box-shadow: 0 0 40px rgba(240, 164, 230, .05); }
.ipod-progress-bar { background: rgba(240, 164, 230, .15); }
.ipod-progress-knob { box-shadow: 0 0 6px rgba(240, 164, 230, .4); }
.ipod-btn:hover { box-shadow: 0 0 10px rgba(240, 164, 230, .1); }
.ipod-btn.ipod-play:hover { background: rgba(240, 164, 230, .1); box-shadow: 0 0 15px rgba(240, 164, 230, .2); }
.gv-tear .glitch-tear { border-top-color: rgba(240, 164, 230, .3); }
.gv-pixel .glitch-pixel { box-shadow: 0 0 8px rgba(240, 164, 230, .9), 0 0 16px rgba(240, 164, 230, .4); }
.glitch-pixel:nth-child(odd) { box-shadow: 0 0 8px rgba(242, 240, 233, .9), 0 0 16px rgba(242, 240, 233, .4); }
.gv-static .sn-mid { color: rgba(240, 164, 230, .7); }
.gv-static .sn-dim { color: rgba(240, 164, 230, .2); }
.glitch-corrupt:nth-child(3) { text-shadow: 0 0 6px rgba(240, 164, 230, .4); }

/* ============ ATMOSPHERIC BACKGROUND ============ */
/* dvh after vh: vh is the largest mobile viewport, so a bare 100vh page runs
   under the iOS toolbar. vh stays as the fallback for browsers without dvh. */
.bookings-page {
    position: relative;
    min-height: 100vh;
    min-height: 100dvh;
}

.bookings-page::before {
    content: '';
    position: fixed;
    inset: 0;
    z-index: -1;
    background:
        linear-gradient(
            180deg,
            rgba(34, 25, 15, 0.92) 0%,
            rgba(240, 164, 230, 0.15) 25%,
            rgba(34, 25, 15, 0.95) 55%,
            rgba(34, 25, 15, 1) 100%
        );
    pointer-events: none;
}

/* ============ YANTRA BACKGROUND ============ */
.yantra-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    opacity: 0.4;
    mix-blend-mode: screen;
}

/* ============ HERO ============ */
.bookings-hero {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 140px 40px 48px;
}

.bookings-eyebrow {
    font-family: var(--font-mono);
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    color: var(--matrix-green);
    margin-bottom: 16px;
    opacity: 0;
    animation: fadeUp 0.8s ease-out 0.1s forwards;
}

.bookings-title {
    font-family: var(--font-display);
    font-size: clamp(36px, 8vw, 72px);
    font-weight: 700;
    line-height: 1;
    letter-spacing: 4px;
    text-transform: uppercase;
    background: linear-gradient(
        180deg,
        rgba(240, 164, 230, 1) 0%,
        rgba(240, 164, 230, 0.7) 50%,
        rgba(242, 240, 233, 0.5) 100%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0;
    animation: fadeUp 0.8s ease-out 0.2s forwards;
}

.bookings-sub {
    font-family: var(--font-mono);
    font-size: 14px;
    font-weight: 300;
    line-height: 1.6;
    letter-spacing: 0.04em;
    color: var(--text-muted);
    max-width: 480px;
    margin: 20px auto 0;
    opacity: 0;
    animation: fadeUp 0.8s ease-out 0.35s forwards;
}

/* ============ MAIN LAYOUT ============ */
.bookings-main {
    position: relative;
    z-index: 1;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 40px 40px;
    opacity: 0;
    animation: fadeUp 0.8s ease-out 0.45s forwards;
}

@media (min-width: 769px) {
    .bookings-main {
        display: grid;
        grid-template-columns: 1fr 280px;
        grid-template-rows: auto auto;
        gap: 0 40px;
    }
    .bookings-calendar { grid-column: 1; grid-row: 1; }
    .slots-sidebar { grid-column: 2; grid-row: 1; }
    .bookings-inquiry { grid-column: 1 / -1; grid-row: 2; margin-top: 48px; }
}

/* ============ CALENDAR (Desktop) ============ */
.cal {
    position: relative;
    padding: 32px 0 24px;
}

.cal::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--matrix-green), transparent);
}

.cal-controls {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}

.cal-month-wrap {
    flex: 1;
    text-align: center;
}

.cal-month {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--matrix-green);
}

.cal-arrow {
    background: none;
    border: 1px solid var(--border-color);
    border-radius: 2px;
    color: var(--text-primary);
    /* 44x44, not 36x36 — WCAG 2.5.5. These are the only way to change
       month, so they are the last controls that should be fiddly. */
    width: 44px;
    height: 44px;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: border-color 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}

.cal-arrow:hover,
.cal-arrow:focus,
.cal-arrow:active {
    border-color: var(--matrix-green);
    background: rgba(240, 164, 230, 0.06);
    box-shadow: 0 0 15px rgba(240, 164, 230, 0.1);
}

.cal-today-btn {
    font-family: var(--font-mono);
    /* 9px is below the point where letterspaced uppercase mono stays
       readable on a phone. */
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--text-muted);
    background: none;
    border: 1px solid var(--border-color);
    border-radius: 2px;
    height: 44px;
    padding: 0 16px;
    cursor: pointer;
    transition: color 0.3s ease, border-color 0.3s ease;
}

.cal-today-btn:hover,
.cal-today-btn:focus,
.cal-today-btn:active {
    color: var(--matrix-green);
    border-color: var(--matrix-green);
}

/* ---- Weekday headers ---- */
.cal-weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    margin-bottom: 4px;
}

.cal-wd {
    font-family: var(--font-mono);
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--text-muted);
    text-align: center;
    padding: 8px 0;
}

.cal-wd--weekend {
    color: var(--matrix-green);
    text-shadow: 0 0 8px rgba(240, 164, 230, 0.3);
}

/* ---- Day grid ---- */
.cal-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 6px;
}

.cal-grid--exiting {
    opacity: 0;
    transform: translateY(-6px);
    transition: opacity 0.25s ease, transform 0.25s ease;
}

button.cal-day {
    font: inherit;
    padding: 0;
    appearance: none;
    -webkit-appearance: none;
}

.cal-day {
    position: relative;
    aspect-ratio: 1.3 / 1;
    /* aspect-ratio alone put these at 51x39 on a landscape phone, where the
       grid is wide and short. The floor wins over the ratio there. */
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid transparent;
    border-radius: 2px;
    background: transparent;
    transition: border-color 0.3s ease, background 0.3s ease, box-shadow 0.4s ease, transform 0.3s ease;
}

.cal-day-num {
    font-family: var(--font-mono);
    font-size: 13px;
    font-weight: 300;
    color: var(--text-primary);
    position: relative;
    z-index: 1;
}

.cal-day--empty {
    border: none;
}

/* Today */
.cal-day--today {
    border-color: var(--matrix-green) !important;
    background: rgba(240, 164, 230, 0.08);
    box-shadow: 0 0 12px rgba(240, 164, 230, 0.15), inset 0 0 12px rgba(240, 164, 230, 0.05);
}

.cal-day--today::before {
    content: '';
    position: absolute;
    top: 5px;
    right: 5px;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--matrix-green);
}

.cal-day--today .cal-day-num {
    font-weight: 600;
    color: var(--matrix-green);
}

/* Past */
.cal-day--past {
    opacity: 0.2;
    pointer-events: none;
}

/* Unavailable */
.cal-day--unavailable {
    opacity: 0.3;
}

.cal-day--unavailable .cal-day-num {
    color: var(--text-muted);
}

/* Available */
.cal-day--available {
    cursor: pointer;
    background: rgba(240, 164, 230, 0.03);
    border-color: rgba(240, 164, 230, 0.12);
}

.cal-day--available::after {
    content: '';
    position: absolute;
    left: 0;
    top: 15%;
    bottom: 15%;
    width: 2px;
    border-radius: 1px;
    background: linear-gradient(180deg, var(--matrix-green), var(--matrix-bright));
    transition: opacity 0.3s ease;
}

.cal-day--available:hover {
    background: rgba(240, 164, 230, 0.08);
    border-color: var(--border-color);
    box-shadow: 0 0 20px rgba(240, 164, 230, 0.15), 0 0 40px rgba(242, 240, 233, 0.08);
    transform: translateY(-1px);
}

/* Booked / played */
.cal-day--played {
    background: rgba(242, 240, 233, 0.08);
    cursor: pointer;
}

.cal-day--played .cal-day-num {
    position: relative;
}

.cal-day--played .cal-day-num::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--matrix-cyan);
    opacity: 0.7;
}

/* Selected */
.cal-day--selected {
    background: rgba(240, 164, 230, 0.1);
    border-color: var(--matrix-green) !important;
    box-shadow: 0 0 16px rgba(240, 164, 230, 0.2);
}

/* ============ WEEK STRIP (Mobile) ============ */
.week-strip {
    display: none;
    align-items: center;
    gap: 8px;
    padding: 24px 0 12px;
}

.week-nav-btn {
    background: none;
    border: 1px solid var(--border-color);
    border-radius: 2px;
    color: var(--text-muted);
    width: 44px;
    height: 44px;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    cursor: pointer;
    transition: border-color 0.3s ease, color 0.3s ease;
}

.week-nav-btn:hover {
    border-color: var(--matrix-green);
    color: var(--matrix-green);
}

.week-strip-days {
    display: flex;
    gap: 6px;
    flex: 1;
    /* `safe center` rather than `center`: a centred flex line that overflows
       its scroll container pushes the FIRST item to a negative offset, which
       no scrollbar can ever reach — at 320px Monday sat at x=-15 and was
       simply unreachable. `safe` falls back to flex-start when it overflows. */
    justify-content: safe center;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.week-strip-days::-webkit-scrollbar { display: none; }

.week-strip-label {
    display: none;
    font-family: var(--font-mono);
    font-size: 12px;
    font-weight: 300;
    letter-spacing: 0.08em;
    color: var(--text-muted);
    text-align: center;
    padding-bottom: 16px;
}

.week-day-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 10px 12px;
    border: 1px solid rgba(240, 164, 230, 0.12);
    border-radius: 2px;
    background: transparent;
    color: var(--text-muted);
    min-width: 52px;
    scroll-snap-align: center;
    transition: all 0.3s ease;
}

.week-day-card .wdc-name {
    font-family: var(--font-mono);
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.week-day-card .wdc-num {
    font-family: var(--font-mono);
    font-size: 18px;
    font-weight: 300;
}

.week-day-card--available {
    border-color: var(--border-color);
    color: var(--text-primary);
    cursor: pointer;
    background: rgba(240, 164, 230, 0.03);
}

.week-day-card--available:hover {
    border-color: var(--matrix-green);
    background: rgba(240, 164, 230, 0.08);
}

.week-day-card--available::after {
    content: '';
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--matrix-green);
    margin-top: 2px;
    box-shadow: 0 0 6px rgba(240, 164, 230, 0.4);
}

.week-day-card--past {
    opacity: 0.2;
    pointer-events: none;
}

.week-day-card--booked {
    border-color: rgba(242, 240, 233, 0.15);
    cursor: pointer;
}

.week-day-card--booked::after {
    content: '';
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--matrix-cyan);
    margin-top: 2px;
}

.week-day-card--selected {
    border-color: var(--matrix-green) !important;
    background: rgba(240, 164, 230, 0.1) !important;
    color: var(--matrix-green);
    box-shadow: 0 0 12px rgba(240, 164, 230, 0.2);
}

/* ============ POETIC TIME SLOTS (Mobile) ============ */
.time-slots-mobile {
    display: none;
    gap: 8px;
    /* Bottom padding clears the fixed .ipod-nano player button (44px tall,
       20px inset from the viewport bottom) so it doesn't sit on top of the
       last rows' right-aligned time once scrolled to the end of the list —
       this only ever renders on mobile, see the display:flex override below. */
    padding: 0 0 84px;
}

.time-slot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 18px;
    border: 1px solid rgba(240, 164, 230, 0.12);
    border-radius: 2px;
    background: transparent;
    color: var(--text-muted);
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    text-align: left;
}

.time-slot:hover {
    border-color: var(--matrix-green);
    background: rgba(240, 164, 230, 0.06);
    color: var(--matrix-green);
}

.time-slot--selected {
    border-color: var(--matrix-green);
    background: rgba(240, 164, 230, 0.1);
    color: var(--matrix-green);
    box-shadow: 0 0 12px rgba(240, 164, 230, 0.2);
}

.time-slot-name {
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 1px;
}

.time-slot-time {
    font-family: var(--font-mono);
    font-size: 12px;
    font-weight: 300;
    letter-spacing: 0.1em;
}

.time-slot--disabled {
    opacity: 0.3;
    pointer-events: none;
}

/* ============ SLOTS SIDEBAR (Desktop) ============ */
.slots-sidebar {
    display: none;
    padding-top: 32px;
}

@media (min-width: 769px) {
    .slots-sidebar {
        display: block;
        position: sticky;
        top: 120px;
        align-self: start;
    }
}

.sidebar-title {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 400;
    color: var(--matrix-green);
    margin-bottom: 6px;
    letter-spacing: 2px;
}

.sidebar-date {
    font-family: var(--font-mono);
    font-size: 12px;
    font-weight: 300;
    letter-spacing: 0.08em;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.sidebar-slots {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.sidebar-hint {
    font-family: var(--font-mono);
    font-size: 12px;
    font-weight: 300;
    color: var(--text-muted);
    line-height: 1.5;
}

.sidebar-slot-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    border: 1px solid rgba(240, 164, 230, 0.12);
    border-radius: 2px;
    background: transparent;
    color: var(--text-muted);
    font-family: var(--font-mono);
    font-size: 13px;
    font-weight: 300;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: left;
    width: 100%;
}

.sidebar-slot-btn:hover {
    border-color: var(--matrix-green);
    background: rgba(240, 164, 230, 0.06);
    color: var(--matrix-green);
}

.sidebar-slot-btn--selected {
    border-color: var(--matrix-green);
    background: rgba(240, 164, 230, 0.1);
    color: var(--matrix-green);
}

.sidebar-slot-btn .slot-name {
    font-family: var(--font-display);
    letter-spacing: 1px;
}

.sidebar-slot-btn .slot-time {
    font-size: 11px;
    letter-spacing: 0.08em;
    opacity: 0.6;
}

.sidebar-booked {
    font-family: var(--font-mono);
    font-size: 13px;
    font-weight: 300;
    color: var(--matrix-cyan);
    line-height: 1.6;
    padding: 12px 0;
}

/* ============ DIRECT INQUIRY FORM ============ */
.bookings-inquiry {
    position: relative;
}

.bookings-inquiry::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--matrix-green), transparent);
}

.inquiry-title {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 400;
    color: var(--matrix-green);
    padding-top: 40px;
    margin-bottom: 6px;
    letter-spacing: 2px;
}

.inquiry-sub {
    font-family: var(--font-mono);
    font-size: 12px;
    font-weight: 300;
    letter-spacing: 0.06em;
    color: var(--text-muted);
    margin-bottom: 28px;
}

.inquiry-form {
    max-width: 560px;
}

@media (min-width: 769px) {
    .inquiry-form {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0 24px;
    }
    .inquiry-form .inquiry-field:nth-child(1) { grid-column: 1; }
    .inquiry-form .inquiry-field:nth-child(2) { grid-column: 2; }
    .inquiry-form .inquiry-field:nth-child(3) { grid-column: 1 / -1; }
    .inquiry-form .inquiry-field:nth-child(4) { grid-column: 1 / -1; }
    .inquiry-form .inquiry-selected { grid-column: 1 / -1; }
    .inquiry-form .btn-send { grid-column: 1 / -1; }
    .inquiry-form .inquiry-success { grid-column: 1 / -1; }
    .inquiry-form > input[type="hidden"] { display: none; }
}

fieldset.inquiry-field {
    border: none;
    padding: 0;
    margin: 0 0 18px;
}

.inquiry-field {
    margin-bottom: 18px;
}

.inquiry-label {
    display: block;
    font-family: var(--font-mono);
    /* 9px letterspaced uppercase mono is not a readable field label on a
       phone; these name the fields a booking enquiry depends on. */
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.inquiry-input {
    width: 100%;
    /* min-height 44 rather than relying on padding + line-height, which
       landed these at 42px. */
    min-height: 44px;
    font-family: var(--font-mono);
    /* 16px: below this iOS Safari zooms the page on focus, which on a
       no-horizontal-scroll layout leaves the field half off-screen. */
    font-size: 16px;
    font-weight: 300;
    color: var(--matrix-green);
    background: var(--bg-input);
    border: 1px solid var(--border-color);
    border-radius: 2px;
    padding: 12px 14px;
    transition: border-color 0.4s ease, box-shadow 0.4s ease;
}

.inquiry-input::placeholder {
    color: var(--text-muted);
    opacity: 0.5;
}

/* No `outline: none` here — the ring comes from site-shell.css. The border
   tint and glow below are decoration on top of it, not a replacement for
   it; on their own they measured about 1.1:1 against the field's own
   background, which is not a focus indicator. */
.inquiry-input:focus {
    border-color: var(--border-active);
    box-shadow: 0 0 10px rgba(240, 164, 230, 0.1);
}

.inquiry-textarea {
    min-height: 100px;
    resize: vertical;
}

/* Checkboxes */
.inquiry-checks {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.inquiry-check {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-mono);
    font-size: 12px;
    font-weight: 300;
    color: var(--text-primary);
    cursor: pointer;
}

.inquiry-check input[type="checkbox"] {
    display: none;
}

.inquiry-checkmark {
    width: 16px;
    height: 16px;
    border: 1px solid var(--border-color);
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: border-color 0.3s, background 0.3s;
    flex-shrink: 0;
}

.inquiry-check input:checked + .inquiry-checkmark {
    border-color: var(--matrix-green);
    background: var(--matrix-green);
}

.inquiry-check input:checked + .inquiry-checkmark::after {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--bg-primary);
}

/* Selected day indicator */
.inquiry-selected {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    background: var(--bg-card);
    margin-bottom: 18px;
}

.inquiry-selected-label {
    font-family: var(--font-mono);
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--text-muted);
}

.inquiry-selected-value {
    font-family: var(--font-display);
    font-size: 13px;
    color: var(--matrix-green);
    flex: 1;
    letter-spacing: 1px;
}

.inquiry-selected-clear {
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 16px;
    cursor: pointer;
    padding: 0 4px;
    transition: color 0.3s;
}

.inquiry-selected-clear:hover {
    color: var(--matrix-red);
}

/* Submit */
.btn-send {
    width: 100%;
    font-family: var(--font-mono);
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--matrix-green);
    background: transparent;
    border: 1px solid var(--matrix-green);
    border-radius: 2px;
    padding: 16px 32px;
    cursor: pointer;
    transition: background 0.4s ease, color 0.4s ease, box-shadow 0.4s ease;
    margin-top: 8px;
}

.btn-send:hover {
    background: var(--matrix-green);
    color: var(--bg-primary);
    box-shadow: 0 0 20px rgba(240, 164, 230, 0.2);
}

.btn-send:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.inquiry-success {
    font-family: var(--font-mono);
    font-size: 12px;
    color: var(--matrix-green);
    text-align: center;
    margin-top: 14px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.inquiry-success.visible {
    opacity: 1;
}

/* ============ LOCATION BADGE ============ */
.bookings-location {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 40px 24px 60px;
    opacity: 0;
    animation: fadeUp 0.8s ease-out 0.6s forwards;
}

.location-coords {
    font-family: var(--font-mono);
    font-size: 12px;
    font-weight: 300;
    letter-spacing: 0.12em;
    color: var(--text-muted);
}

.location-divider {
    width: 24px;
    height: 1px;
    background: var(--border-color);
}

.location-city {
    font-family: var(--font-display);
    font-size: 13px;
    color: var(--text-muted);
    letter-spacing: 1px;
}

/* ============ RESPONSIVE: Mobile ============ */
@media (max-width: 768px) {
    .bookings-hero {
        padding: 120px 24px 32px;
    }

    .bookings-sub {
        font-size: 13px;
    }

    .bookings-main {
        padding: 0 20px 32px;
    }

    /* Hide desktop calendar, show mobile strip */
    .cal { display: none; }
    .week-strip { display: flex; }
    .week-strip-label { display: block; }
    .time-slots-mobile { display: flex; flex-direction: column; }

    .inquiry-title { padding-top: 32px; }
    .inquiry-form { max-width: 100%; }
}

@media (max-width: 480px) {
    .bookings-hero {
        padding: 100px 16px 24px;
    }

    .bookings-main {
        padding: 0 16px 24px;
    }

    .bookings-sub {
        font-size: 12px;
        letter-spacing: 0.02em;
    }

    .week-day-card {
        padding: 8px 8px;
        min-width: 44px;
    }

    .week-day-card .wdc-num {
        font-size: 16px;
    }

    .time-slot {
        padding: 12px 14px;
    }
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (prefers-reduced-motion: reduce) {
    .bookings-eyebrow,
    .bookings-title,
    .bookings-sub,
    .bookings-main,
    .bookings-location {
        animation: none;
        opacity: 1;
    }
}

@media (pointer: coarse) {
    .inquiry-check {
        padding: 6px 0;
        min-height: 44px;
    }

    .inquiry-checkmark {
        width: 22px;
        height: 22px;
    }

    .time-slot {
        min-height: 48px;
    }

    .week-day-card {
        min-height: 64px;
    }

    .sidebar-slot-btn {
        min-height: 48px;
    }
}

/* ============ EMBEDDED IN LANDING PAGE ============ */
.bookings-page--embedded::before {
    display: none;
}
.bookings-page--embedded {
    min-height: auto;
}

/* ============ LANDING PAGE VARIANT ============ */
.bookings-page--landing::before {
    background:
        linear-gradient(
            180deg,
            rgba(34, 25, 15, 0.55) 0%,
            rgba(240, 164, 230, 0.10) 25%,
            rgba(34, 25, 15, 0.50) 55%,
            rgba(34, 25, 15, 0.65) 100%
        );
}

/* Bottom padding for mobile bottom nav */
@media (max-width: 768px) {
    .bookings-page--landing {
        padding-bottom: 80px;
    }
}

/* ---- Mobile Brand Header ---- */
.landing-brand-mobile {
    display: none;
    text-align: center;
    padding: 0 24px 24px;
}

.landing-brand-name {
    font-family: var(--font-display);
    font-size: 14vw;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--matrix-green);
    opacity: 0.9;
    margin: 0;
}

@media (max-width: 768px) {
    .bookings-page--landing .landing-brand-mobile {
        display: block;
    }
}

/* ---- "Select Date" Heading ---- */
.week-strip-heading {
    display: none;
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 400;
    color: var(--matrix-green);
    text-align: center;
    margin: 0 0 16px;
    opacity: 0.7;
    letter-spacing: 2px;
}

@media (max-width: 768px) {
    .bookings-page--landing .week-strip-heading {
        display: block;
    }
}

/* ---- Atmospheric Image + "Our Base" ---- */
.landing-base-section {
    display: none;
    padding: 48px 24px 32px;
}

.landing-atmo-img {
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 4px;
    background: linear-gradient(135deg, var(--bg-secondary), var(--matrix-dark-green), rgba(242, 240, 233, 0.2));
    margin-bottom: 32px;
}

.landing-base-info {
    padding: 0;
}

.landing-base-heading {
    font-family: var(--font-mono);
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--text-muted);
    margin: 0 0 8px;
}

.landing-base-city {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 400;
    color: var(--matrix-green);
    margin: 0 0 4px;
    letter-spacing: 2px;
}

.landing-base-address {
    font-family: var(--font-mono);
    font-size: 13px;
    font-weight: 300;
    color: var(--text-muted);
    margin: 0;
}

@media (max-width: 768px) {
    .bookings-page--landing .landing-base-section {
        display: block;
    }
}

/* ---- Mobile Bottom Nav Bar ---- */
.landing-bottom-nav {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(34, 25, 15, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-top: 1px solid var(--border-color);
    padding: 8px 0 env(safe-area-inset-bottom, 0);
}

@media (max-width: 768px) {
    .bookings-page--landing .landing-bottom-nav {
        display: flex;
        justify-content: space-around;
        align-items: center;
    }
}

.bottom-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 8px 12px;
    color: var(--text-muted);
    text-decoration: none;
    font-family: var(--font-mono);
    font-size: 10px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    min-width: 44px;
    min-height: 44px;
    justify-content: center;
    transition: color 0.2s;
}

.bottom-nav-item:hover,
.bottom-nav-item:active {
    color: var(--matrix-green);
}

.bottom-nav-icon {
    font-size: 18px;
    line-height: 1;
}
