/* ============================================================
   Book page section styles
   Source: NYC-Cupola/designs/book/index.html (inline <style>)
   Mirror this file from the design source — do not edit in place
   without updating the source first.
   ============================================================ */

/* Override site.css v1 heading color for v2 ink within <main>.
   Same workaround as home.css/about.css; remove during Phase 10. */
main h1, main h2, main h3, main h4, main h5, main h6 {
    color: var(--ink-primary);
}

/* CLS fix: reserve vertical space on the booking app to keep the wizard
   from collapsing while Vue boots and async data fetches resolve. */
#booking-app {
    min-height: 520px;
}

.book-head {
    position: relative;
    margin-top: -64px;
    padding: calc(64px + var(--space-9)) var(--container-px) var(--space-6);
    background: var(--surface-mark);
    overflow: hidden;
    min-height: 40vh;
    display: flex;
    align-items: flex-end;
}

@media (max-width: 600px) {
    .book-head {
        padding: calc(64px + var(--space-6)) var(--container-px) var(--space-5);
        min-height: 35vh;
    }
}

.book-head__video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.book-head::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, oklch(13% 0.025 268 / 0.45) 0%, oklch(13% 0.025 268 / 0.70) 55%, oklch(13% 0.025 268 / 0.95) 85%, var(--surface-base) 100%), radial-gradient(ellipse 95% 100% at 60% 50%, transparent 30%, oklch(13% 0.025 268 / 0.35) 100%);
    z-index: 1;
    pointer-events: none;
}

@media (prefers-reduced-motion: reduce) {
    .book-head__video {
        display: none;
    }
}

.book-head__inner {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
}
/* Stacked Centre 360 logo above the eyebrow. Left-aligned to match
     the rest of the inner content; sized to read as brand presence
     without overpowering the hero headline below. */
.book-head__brand {
    display: block;
    height: 168px;
    width: auto;
    max-width: 100%;
    margin: 0 0 var(--space-5);
    object-fit: contain;
}

@media (max-width: 600px) {
    .book-head__brand {
        height: 124px;
        margin-bottom: var(--space-4);
    }
}

.book-head h1 {
    margin: 0 0 var(--space-3);
    font-family: var(--serif-display);
    font-weight: 400;
    font-size: clamp(32px, 5vw, 56px);
    line-height: var(--lh-tight);
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.book-head p {
    margin: 0;
    font-size: 15px;
    line-height: 1.65;
    color: var(--ink-soft);
}

@media (max-width: 600px) {
    .book-head p {
        font-size: 14px;
    }
}

.book-grid {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: var(--space-7) var(--container-px) var(--space-10);
    display: grid;
    grid-template-columns: minmax(0, 4fr) minmax(0, 7fr);
    gap: var(--space-8);
    align-items: flex-start;
}

@media (max-width: 960px) {
    .book-grid {
        grid-template-columns: 1fr;
        gap: var(--space-6);
    }
}

/* Elevated-moment aside (portrait em-card variant) */
.book-aside {
    position: sticky;
    top: 96px;
    align-self: start;
    display: grid;
    gap: var(--space-5);
}

@media (max-width: 960px) {
    .book-aside {
        position: static;
    }
}

.book-aside__card {
    position: relative;
}

.book-aside__media {
    position: relative;
    aspect-ratio: 4 / 5;
    overflow: hidden;
    background: var(--surface-mark);
}

    .book-aside__media img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 8s linear;
        display: block;
    }

.book-aside__card:hover .book-aside__media img,
.book-aside__card:focus-within .book-aside__media img {
    transform: scale(1.04);
}

.book-aside__media-veil {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 38%, oklch(13% 0.025 268 / 0.74) 72%, oklch(10% 0.022 268 / 0.95) 100%);
}

.book-aside__chip {
    position: absolute;
    top: var(--space-4);
    left: var(--space-4);
    z-index: 2;
    padding: 6px 12px;
    border: 1px solid var(--gold-soft);
    background: oklch(13% 0.025 268 / 0.72);
    backdrop-filter: blur(8px);
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold-accent);
}

.book-aside__caption {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: var(--space-5) var(--space-6) var(--space-5);
    z-index: 2;
}

.book-aside__anchor {
    display: block;
    font-family: var(--serif-display);
    font-size: clamp(36px, 4vw, 48px);
    line-height: 0.9;
    letter-spacing: 0.02em;
    color: var(--gold-accent);
    margin-bottom: var(--space-3);
}

.book-aside__quote {
    margin: 0;
    font-family: var(--serif-quote);
    font-style: italic;
    font-size: 17px;
    line-height: 1.45;
    color: var(--ink-primary);
}

.book-aside__quote-meta {
    display: block;
    margin-top: var(--space-3);
    font-family: var(--mono);
    font-style: normal;
    font-size: 10px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold-accent);
}

.book-aside__meta {
    border: 1px solid var(--hairline);
    background: var(--surface-raise);
}

.book-aside__meta-head {
    padding: var(--space-3) var(--space-4);
    border-bottom: 1px solid var(--hairline);
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold-accent);
    background: var(--gradient-civic-gold);
    color: var(--surface-base);
    font-weight: 700;
}

.book-aside__meta dl {
    margin: 0;
    padding: var(--space-4) var(--space-4) var(--space-3);
    display: grid;
    gap: var(--space-3);
}

.book-aside__meta-row {
    display: grid;
    grid-template-columns: 96px minmax(0, 1fr);
    align-items: start;
    gap: var(--space-3);
    padding-bottom: var(--space-3);
    border-bottom: 1px solid var(--hairline);
}

    .book-aside__meta-row:last-child {
        padding-bottom: 0;
        border-bottom: 0;
    }

.book-aside__meta dt {
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold-accent);
    margin-top: 2px;
}

.book-aside__meta dd {
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
    color: var(--ink-soft);
}

.book-aside__moment {
    position: relative;
    padding: var(--space-5);
    border: 1px solid var(--hairline);
    background: var(--surface-raise);
    overflow: hidden;
}

    .book-aside__moment::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 3px;
        background: var(--gradient-civic-gold);
    }

.book-aside__moment-eyebrow {
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold-accent);
    margin-bottom: var(--space-3);
    display: block;
}

.book-aside__moment-title {
    margin: 0 0 var(--space-3);
    font-family: var(--serif-display);
    font-weight: 400;
    font-size: 24px;
    line-height: 1.1;
    letter-spacing: 0.025em;
    text-transform: uppercase;
    color: var(--ink-primary);
}

.book-aside__moment-body {
    margin: 0 0 var(--space-4);
    font-size: 14px;
    line-height: 1.6;
    color: var(--ink-soft);
}

.book-aside__moment-list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 8px;
}

    .book-aside__moment-list li {
        display: grid;
        grid-template-columns: 32px minmax(0, 1fr);
        gap: 10px;
        align-items: baseline;
        font-size: 13px;
        color: var(--ink-soft);
        padding-bottom: 8px;
        border-bottom: 1px dashed var(--hairline);
    }

        .book-aside__moment-list li:last-child {
            border-bottom: 0;
            padding-bottom: 0;
        }

    .book-aside__moment-list b {
        font-family: var(--mono);
        font-size: 11px;
        letter-spacing: 2px;
        text-transform: uppercase;
        color: var(--gold-accent);
        font-weight: 700;
    }

/* Wizard */
.wizard {
    background: var(--surface-raise);
    border: 1px solid var(--hairline);
    padding: var(--space-7) var(--space-7) var(--space-7);
    /* Step-change scroll target: clear the 64px sticky header + a small
       breathing margin so the wizard heading isn't tucked under it. */
    scroll-margin-top: 80px;
}

@media (max-width: 600px) {
    .wizard {
        padding: var(--space-5) var(--space-4);
    }
}

/* Segmented progress step indicator */
.wizard__steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    margin: 0 0 var(--space-7);
    padding: 0;
    list-style: none;
    position: relative;
}

.wizard__step {
    position: relative;
    padding: 0 0 var(--space-4) 0;
    border-bottom: 2px solid var(--hairline);
    transition: border-color 0.5s cubic-bezier(0.22, 1, 0.36, 1);
    display: grid;
    gap: 4px;
}

    .wizard__step + .wizard__step {
        padding-left: var(--space-4);
    }

.wizard__step-num {
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--ink-quiet);
    transition: color var(--t-fast);
}

.wizard__step-label {
    font-family: var(--serif-display);
    font-size: 20px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--ink-soft);
    transition: color var(--t-fast);
}
/* Mobile: collapse to current-step pill, hide inactive labels */
@media (max-width: 600px) {
    .wizard__steps {
        grid-template-columns: 1fr;
        margin-bottom: var(--space-5);
        border: 1px solid var(--hairline);
        background: var(--surface-mark);
        padding: var(--space-3) var(--space-4);
    }

    .wizard__step {
        display: none;
        border-bottom: 0;
        padding: 0;
    }

        .wizard__step.is-active {
            display: grid;
            grid-template-columns: auto 1fr auto;
            align-items: center;
            gap: var(--space-3);
        }

            .wizard__step.is-active .wizard__step-num {
                font-size: 11px;
                color: var(--gold-accent);
                grid-row: 1;
            }

            .wizard__step.is-active .wizard__step-label {
                font-size: 18px;
                color: var(--ink-primary);
                grid-column: 1 / -1;
                grid-row: 2;
            }

            .wizard__step.is-active::before {
                position: absolute;
                right: var(--space-4);
                top: 50%;
                transform: translateY(-50%);
                font-family: var(--mono);
                font-size: 10px;
                letter-spacing: 2px;
                text-transform: uppercase;
                color: var(--ink-quiet);
            }

        .wizard__step[data-step="1"].is-active::before {
            content: "Step 01 of 03";
        }

        .wizard__step[data-step="2"].is-active::before {
            content: "Step 02 of 03";
        }

        .wizard__step[data-step="3"].is-active::before {
            content: "Step 03 of 03";
        }
}

.wizard__step.is-active {
    border-bottom-color: var(--gold-cta);
}

    .wizard__step.is-active .wizard__step-num,
    .wizard__step.is-active .wizard__step-label {
        color: var(--gold-accent);
    }

.wizard__step.is-done {
    border-bottom-color: var(--gold-soft);
}

    .wizard__step.is-done .wizard__step-num {
        color: var(--gold-soft);
    }

    .wizard__step.is-done .wizard__step-label {
        color: var(--ink-primary);
    }

    .wizard__step.is-done::after {
        content: "";
        position: absolute;
        right: 8px;
        top: 6px;
        width: 14px;
        height: 14px;
        background: var(--gradient-civic-gold);
        clip-path: polygon(20% 50%, 0% 70%, 40% 100%, 100% 30%, 80% 10%, 40% 70%);
    }

.wizard__panels {
    position: relative;
}

.wizard__panel {
    opacity: 0;
    transform: translateX(24px);
    transition: opacity 0.2s cubic-bezier(0.22, 1, 0.36, 1), transform 0.2s cubic-bezier(0.22, 1, 0.36, 1);
    visibility: hidden;
    position: absolute;
    inset: 0;
}

    .wizard__panel.is-active {
        opacity: 1;
        transform: translateX(0);
        visibility: visible;
        position: relative;
    }

.wizard__panel-h {
    margin: 0 0 var(--space-2);
    font-family: var(--sans);
    font-weight: 700;
    font-size: var(--fs-h3);
    text-transform: uppercase;
    letter-spacing: 0.01em;
    color: var(--ink-primary);
}

.wizard__panel-sub {
    margin: 0 0 var(--space-5);
    font-size: 14px;
    color: var(--ink-soft);
}

/* Date grid */
.date-month {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: var(--space-3) 0 var(--space-4);
}

.date-month__name {
    font-family: var(--serif-display);
    font-size: 22px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--ink-primary);
}

.date-month__nav {
    display: flex;
    gap: 8px;
}

    .date-month__nav button {
        width: 34px;
        height: 34px;
        background: transparent;
        border: 1px solid var(--hairline);
        color: var(--ink-soft);
        font-size: 14px;
        transition: color var(--t-fast), border-color var(--t-fast);
    }

        .date-month__nav button:hover {
            color: var(--gold-accent);
            border-color: var(--gold-soft);
        }

.date-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 6px;
}

.date-grid__dow {
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: 2px;
    color: var(--ink-quiet);
    text-transform: uppercase;
    text-align: center;
    padding: 4px 0 10px;
    border-bottom: 1px solid var(--hairline);
    margin-bottom: 4px;
}

.date-cell {
    position: relative;
    padding: 0;
    text-align: left;
    background: transparent;
    border: 1px solid var(--hairline);
    border-radius: var(--radius-input);
    color: var(--ink-primary);
    font-family: var(--sans);
    font-size: 17px;
    font-weight: 500;
    transition: background var(--t-fast), color var(--t-fast), border-color var(--t-fast), transform 0.15s ease-out;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    cursor: pointer;
}

.date-cell__num {
    position: absolute;
    top: 6px;
    left: 8px;
    font-variant-numeric: tabular-nums;
    line-height: 1;
}

.date-cell__status {
    position: absolute;
    bottom: 6px;
    left: 8px;
    right: 8px;
    font-family: var(--mono);
    font-size: 9px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--ink-quiet);
    line-height: 1;
}
/* Mobile date cells: grow numeral, drop microcopy, lean on color/pattern state */
@media (max-width: 600px) {
    .date-grid {
        gap: 4px;
    }

    .date-grid__dow {
        font-size: 9px;
        letter-spacing: 1px;
        padding: 2px 0 6px;
    }

    .date-cell {
        font-size: 19px;
    }

    .date-cell__num {
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        font-weight: 600;
    }

    .date-cell__status {
        display: none;
    }

    .date-cell--soldout .date-cell__num {
        text-decoration-thickness: 1.2px;
    }
    /* selected state stays readable via centered numeral over color fill */
}

/* state: empty */
.date-cell--empty {
    border: 0;
    background: transparent;
    cursor: default;
}

/* state: available (open) */
.date-cell--available {
    background: oklch(17% 0.030 268);
    border-color: var(--gold-soft);
}

    .date-cell--available .date-cell__num {
        color: var(--ink-primary);
    }

    .date-cell--available .date-cell__status {
        color: var(--gold-accent);
    }

    .date-cell--available::after {
        content: "";
        position: absolute;
        left: 0;
        right: 0;
        bottom: 0;
        height: 3px;
        background: var(--gradient-civic-gold);
    }

    .date-cell--available:hover {
        border-color: var(--gold-accent);
        transform: translateY(-1px);
    }

/* state: low availability */
.date-cell--low {
    background: linear-gradient(180deg, oklch(60% 0.13 70 / 0.18) 0%, oklch(17% 0.030 268) 100%);
    border-color: var(--gold-cta);
}

    .date-cell--low .date-cell__status {
        color: var(--gold-cta);
    }

    .date-cell--low::after {
        content: "";
        position: absolute;
        left: 0;
        right: 0;
        bottom: 0;
        height: 3px;
        background: var(--gold-cta);
    }

/* state: sold out */
.date-cell--soldout {
    background: repeating-linear-gradient( 135deg, oklch(13% 0.025 268), oklch(13% 0.025 268) 6px, oklch(55% 0.16 25 / 0.18) 6px, oklch(55% 0.16 25 / 0.18) 8px );
    border-color: oklch(55% 0.16 25 / 0.5);
    cursor: not-allowed;
}

    .date-cell--soldout .date-cell__num {
        color: oklch(70% 0.12 25 / 0.85);
        text-decoration: line-through;
        text-decoration-thickness: 1.5px;
        text-decoration-color: oklch(60% 0.15 25 / 0.8);
    }

    .date-cell--soldout .date-cell__status {
        color: oklch(70% 0.12 25 / 0.85);
    }

/* state: closed (disabled) */
.date-cell--disabled {
    background: repeating-linear-gradient( 135deg, oklch(13% 0.025 268), oklch(13% 0.025 268) 8px, oklch(17% 0.030 268) 8px, oklch(17% 0.030 268) 9px );
    border-color: var(--hairline);
    color: var(--ink-faint);
    cursor: not-allowed;
}

    .date-cell--disabled .date-cell__num {
        color: var(--ink-faint);
        opacity: 0.55;
    }

    .date-cell--disabled .date-cell__status {
        display: none;
    }

/* state: selected (overrides) */
.date-cell.is-selected {
    background: var(--gold-cta);
    border-color: var(--gold-cta-border);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px oklch(64% 0.13 70 / 0.35);
}

    .date-cell.is-selected::after {
        display: none;
    }

    .date-cell.is-selected .date-cell__num {
        color: var(--surface-base);
        text-decoration: none;
    }

    .date-cell.is-selected .date-cell__status {
        color: var(--surface-base);
        font-weight: 700;
    }

.date-legend {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 8px;
    margin-top: var(--space-5);
    padding: var(--space-4);
    background: var(--surface-mark);
    border: 1px solid var(--hairline);
}

@media (max-width: 600px) {
    .date-legend {
        grid-template-columns: 1fr 1fr;
        gap: 6px 12px;
        padding: var(--space-3);
    }
}

.date-legend__row {
    display: grid;
    grid-template-columns: 24px minmax(0, 1fr);
    gap: 10px;
    align-items: center;
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--ink-soft);
}

.date-legend__swatch {
    height: 18px;
    border-radius: 2px;
    border: 1px solid var(--hairline);
}

.date-legend__swatch--open {
    background: oklch(17% 0.030 268);
    border-color: var(--gold-soft);
    position: relative;
}

    .date-legend__swatch--open::after {
        content: "";
        position: absolute;
        left: 0;
        right: 0;
        bottom: 0;
        height: 3px;
        background: var(--gradient-civic-gold);
    }

.date-legend__swatch--low {
    background: linear-gradient(180deg, oklch(60% 0.13 70 / 0.18) 0%, oklch(17% 0.030 268) 100%);
    border-color: var(--gold-cta);
    position: relative;
}

    .date-legend__swatch--low::after {
        content: "";
        position: absolute;
        left: 0;
        right: 0;
        bottom: 0;
        height: 3px;
        background: var(--gold-cta);
    }

.date-legend__swatch--sold {
    background: repeating-linear-gradient(135deg, oklch(13% 0.025 268), oklch(13% 0.025 268) 4px, oklch(55% 0.16 25 / 0.18) 4px, oklch(55% 0.16 25 / 0.18) 6px);
    border-color: oklch(55% 0.16 25 / 0.5);
}

.date-legend__swatch--closed {
    background: repeating-linear-gradient(135deg, oklch(13% 0.025 268), oklch(13% 0.025 268) 5px, oklch(17% 0.030 268) 5px, oklch(17% 0.030 268) 6px);
}

/* Time grid */
.time-day {
    margin: 0 0 var(--space-5);
    padding: var(--space-4);
    border: 1px solid var(--gold-faint);
    background: oklch(75% 0.10 85 / 0.05);
}

.time-day__label {
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 2px;
    color: var(--gold-accent);
    text-transform: uppercase;
    margin-bottom: 6px;
}

.time-day__date {
    font-family: var(--serif-display);
    font-size: 22px;
    letter-spacing: 0.04em;
    color: var(--ink-primary);
    text-transform: uppercase;
}

.time-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 10px;
}

@media (max-width: 600px) {
    .time-grid {
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }

    .time-cell {
        padding: var(--space-3) var(--space-3) var(--space-4);
        font-size: 22px;
        min-height: 88px;
    }

    .time-cell__cap {
        font-size: 9px;
        letter-spacing: 1.5px;
    }
}

.time-cell {
    position: relative;
    padding: var(--space-4) var(--space-4) var(--space-5);
    background: oklch(17% 0.030 268);
    border: 1px solid var(--gold-soft);
    border-radius: var(--radius-input);
    color: var(--ink-primary);
    font-family: var(--serif-display);
    font-size: 26px;
    letter-spacing: 0.04em;
    display: flex;
    flex-direction: column;
    gap: 6px;
    align-items: flex-start;
    text-align: left;
    overflow: hidden;
    transition: background var(--t-fast), color var(--t-fast), border-color var(--t-fast), transform 0.15s ease-out;
    cursor: pointer;
}
/* Day eyebrow + date — replaced inline styles with classes so .is-selected
     can flip ink colors via the cascade. */
.time-cell__day {
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 2px;
    color: var(--gold-accent);
    text-transform: uppercase;
    font-weight: 700;
}

.time-cell__date {
    font-family: var(--serif-display);
    font-weight: 400;
    font-size: 26px;
    letter-spacing: 0.04em;
    line-height: 1.05;
    color: var(--ink-primary);
    /* Poiret One ships only at weight 400 — these stroke duplicates fake
       a heavier weight without changing the typographic identity. */
    text-shadow: 0.5px 0 0 currentColor, -0.5px 0 0 currentColor;
}

.time-cell::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 3px;
    background: var(--gradient-civic-gold);
    opacity: 0.6;
    transition: opacity var(--t-fast), height var(--t-fast);
}

.time-cell:hover {
    border-color: var(--gold-accent);
    transform: translateY(-1px);
}

    .time-cell:hover::after {
        opacity: 1;
        height: 4px;
    }

.time-cell.is-selected {
    background: var(--gold-cta);
    background-image: var(--gradient-civic-gold);
    color: var(--surface-base);
    border-color: var(--gold-cta-border);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px oklch(64% 0.13 70 / 0.35);
}

    .time-cell.is-selected::after {
        display: none;
    }

    .time-cell.is-selected .time-cell__day,
    .time-cell.is-selected .time-cell__date,
    .time-cell.is-selected .time-cell__cap {
        color: var(--surface-base);
    }
    /* Invert the seat bar on selection: dark fill sits on a translucent-white
     track so the progress ratio reads against the gold tile background.
     Without this, dark fill + dark default track = a single dark band. */
    .time-cell.is-selected .time-cell__seat-bar {
        background: rgba(255, 255, 255, 0.55);
        border-color: rgba(13, 19, 38, 0.25);
    }

    .time-cell.is-selected .time-cell__seat-fill {
        background: var(--surface-base);
        background-image: none;
    }
    /* Diagonal gold-on-gold shimmer when a tile becomes selected. Runs once,
     then sits dormant. Same easing as the landmark-tile sheen. */
    .time-cell.is-selected::before {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(110deg, transparent 34%, oklch(100% 0.001 240 / 0.45) 50%, transparent 66%);
        background-repeat: no-repeat;
        background-size: 220% 100%;
        background-position: 220% 0;
        pointer-events: none;
        mix-blend-mode: screen;
        z-index: 4;
        animation: time-cell-sheen 1.8s cubic-bezier(0.22, 1, 0.36, 1) 1 forwards;
    }

@keyframes time-cell-sheen {
    from {
        background-position: 220% 0;
    }

    to {
        background-position: -120% 0;
    }
}

@media (prefers-reduced-motion: reduce) {
    .time-cell.is-selected::before {
        animation: none;
        opacity: 0;
    }
}

.time-cell--soldout {
    background: repeating-linear-gradient(135deg, oklch(13% 0.025 268), oklch(13% 0.025 268) 8px, oklch(55% 0.16 25 / 0.14) 8px, oklch(55% 0.16 25 / 0.14) 10px);
    border-color: oklch(55% 0.16 25 / 0.45);
    color: oklch(70% 0.12 25 / 0.85);
    cursor: not-allowed;
}

    .time-cell--soldout::after {
        display: none;
    }

    .time-cell--soldout .time-cell__cap {
        color: oklch(70% 0.12 25 / 0.9);
    }

.time-cell__cap {
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: 2px;
    color: var(--gold-accent);
    text-transform: uppercase;
    font-weight: 600;
}

.time-cell__seat-bar {
    display: block;
    width: 100%;
    height: 4px;
    background: var(--surface-mark);
    border: 1px solid var(--hairline);
    border-radius: 2px;
    overflow: hidden;
    margin-top: 4px;
}

.time-cell__seat-fill {
    display: block;
    height: 100%;
    background: var(--gradient-civic-gold);
}

.time-cell--soldout .time-cell__seat-bar {
    display: none;
}

/* Visitor form */
.visitor-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-5);
}

@media (max-width: 600px) {
    .visitor-grid {
        grid-template-columns: 1fr;
    }
}

.visitor-grid .field--full {
    grid-column: 1 / -1;
}

.stepper {
    display: inline-flex;
    align-items: center;
    border: 1px solid var(--ink-faint);
    border-radius: var(--radius-input);
    background: var(--surface-base);
}

    .stepper button {
        width: 44px;
        height: 44px;
        background: transparent;
        border: 0;
        color: var(--gold-accent);
        font-size: 18px;
    }

        .stepper button:disabled {
            color: var(--ink-faint);
            cursor: not-allowed;
        }

    .stepper input {
        width: 64px;
        text-align: center;
        background: transparent;
        border: 0;
        border-left: 1px solid var(--ink-faint);
        border-right: 1px solid var(--ink-faint);
        color: var(--ink-primary);
        font-family: var(--sans);
        font-size: 16px;
        font-weight: 700;
        height: 44px;
    }

.summary {
    margin-top: var(--space-6);
    border: 1px solid var(--gold-soft);
    background: var(--surface-mark);
    overflow: hidden;
}

.summary__head {
    padding: var(--space-3) var(--space-5);
    background: var(--gradient-civic-gold);
    color: var(--surface-base);
    font-family: var(--mono);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.summary__head-anchor {
    font-family: var(--serif-display);
    font-size: 14px;
    letter-spacing: 0.04em;
}

.summary__feature {
    padding: var(--space-5) var(--space-5) var(--space-4);
    border-bottom: 1px solid var(--hairline);
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: end;
    gap: var(--space-4);
}

@media (max-width: 480px) {
    .summary__feature {
        grid-template-columns: 1fr;
        gap: var(--space-2);
        padding: var(--space-4);
    }

    .summary__feature-time {
        text-align: left;
    }
}

.summary__feature-date {
    font-family: var(--serif-display);
    font-size: clamp(28px, 3.5vw, 38px);
    line-height: 1;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    color: var(--ink-primary);
}

.summary__feature-time {
    font-family: var(--mono);
    font-size: 13px;
    letter-spacing: 2px;
    color: var(--gold-accent);
    text-transform: uppercase;
    text-align: right;
    font-weight: 700;
}

.summary__rows {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

@media (max-width: 480px) {
    .summary__rows {
        grid-template-columns: 1fr;
    }
}

.summary__row {
    padding: var(--space-3) var(--space-5);
    border-right: 1px solid var(--hairline);
    border-bottom: 1px solid var(--hairline);
}

    .summary__row:nth-child(2n) {
        border-right: 0;
    }

    .summary__row:last-child, .summary__row:nth-last-child(2):not(:nth-child(2n)) {
        border-bottom: 0;
    }

@media (max-width: 480px) {
    .summary__row {
        border-right: 0;
    }
}

.summary__row dt {
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: 2px;
    color: var(--gold-accent);
    text-transform: uppercase;
    margin-bottom: 4px;
    display: block;
}

.summary__row dd {
    margin: 0;
    font-family: var(--sans);
    font-size: 15px;
    color: var(--ink-primary);
    font-weight: 500;
}

.wizard__foot {
    margin-top: var(--space-7);
    padding-top: var(--space-5);
    border-top: 1px solid var(--hairline);
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: var(--space-5);
}

.wizard__foot__left {
    display: flex;
    align-items: center;
}

.wizard__foot__center {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--ink-quiet);
    border-left: 1px solid var(--hairline);
    border-right: 1px solid var(--hairline);
    padding: 6px var(--space-5);
}

    .wizard__foot__center b {
        color: var(--gold-accent);
        font-weight: 700;
    }

.wizard__foot__right {
    display: flex;
    gap: var(--space-3);
    align-items: center;
    flex-wrap: nowrap;
    justify-self: end;
}

    .wizard__foot__right .btn-ghost[data-action="notify"] {
        /* alt-action: still ghost, but slightly subdued vs. Previous */
        opacity: 0.85;
    }

.wizard__cancel {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--sans);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--ink-quiet);
    text-decoration: none;
    padding: 8px 0;
    border-bottom: 1px solid transparent;
    transition: color var(--t-fast), border-color var(--t-fast);
}

    .wizard__cancel:hover, .wizard__cancel:focus-visible {
        color: var(--ink-soft);
        border-bottom-color: var(--gold-accent);
        outline: none;
    }

@media (max-width: 760px) {
    .wizard__foot {
        grid-template-columns: 1fr;
        gap: var(--space-4);
    }

    .wizard__foot__center {
        order: -1;
        border-left: 0;
        border-right: 0;
        border-top: 0;
        border-bottom: 1px dashed var(--hairline);
        padding: 0 0 var(--space-3);
        justify-content: flex-start;
    }

    .wizard__foot__right {
        justify-self: stretch;
        width: 100%;
        display: grid;
        grid-template-columns: 1fr;
        gap: var(--space-3);
        flex-wrap: wrap;
    }

        .wizard__foot__right .btn-cta,
        .wizard__foot__right .btn-ghost {
            width: 100%;
            justify-content: center;
            min-height: 48px;
        }
            /* Previous becomes secondary line, Confirm/Next is primary above */
            .wizard__foot__right .btn-ghost[data-action="prev"] {
                order: 2;
            }

            .wizard__foot__right .btn-cta[data-action="next"],
            .wizard__foot__right .btn-cta[data-action="confirm"] {
                order: 1;
            }

            .wizard__foot__right .btn-ghost[data-action="notify"] {
                order: 3;
            }

    .wizard__foot__left {
        justify-self: stretch;
        justify-content: center;
        width: 100%;
        padding-top: var(--space-3);
        border-top: 1px solid var(--hairline);
    }

    .wizard__cancel {
        padding: var(--space-2) 0;
    }
}