/* booking-request.css */

.event-registration-page {
    min-height: calc(100vh - 88px);
    padding: 3rem 1.5rem 5rem;
    background:
        radial-gradient(circle at 18% 0%, rgba(217, 181, 56, .16), transparent 34%),
        linear-gradient(180deg, rgba(255, 255, 255, .025), transparent 42%),
        var(--bg);
}

.event-registration-shell {
    width: min(100%, 1120px);
    margin: 0 auto;
}

.event-registration-hero,
.event-registration-form {
    border: 1px solid rgba(217, 181, 56, .18);
    background: linear-gradient(180deg, rgba(255, 255, 255, .045), rgba(255, 255, 255, .015)), #181818;
    box-shadow: 0 20px 60px rgba(0, 0, 0, .34);
}

.event-registration-hero {
    position: relative;
    overflow: hidden;
    padding: clamp(1.4rem, 4vw, 2.4rem);
    border-radius: 22px 22px 0 0;
}

    .event-registration-hero::before {
        content: "";
        position: absolute;
        inset: 0;
        pointer-events: none;
        background:
            linear-gradient(135deg, rgba(217, 181, 56, .24), transparent 36%),
            radial-gradient(circle at 84% 20%, rgba(255, 241, 207, .10), transparent 24%);
    }

    .event-registration-hero > * {
        position: relative;
        z-index: 1;
    }

.event-registration-kicker {
    margin: 0 0 .45rem;
    color: var(--gold);
    font-size: .75rem;
    font-weight: 900;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.event-registration-hero h1 {
    margin: 0 0 1.5rem;
    color: #fff1cf;
    font-family: var(--head);
    font-size: clamp(2.3rem, 5vw, 4rem);
    line-height: .95;
}

.event-registration-summary {
    display: grid;
    grid-template-columns: 104px minmax(0, 1fr);
    gap: 1.25rem;
    align-items: stretch;
}

.event-registration-date {
    display: grid;
    place-items: center;
    min-height: 112px;
    border: 1px solid rgba(217, 181, 56, .35);
    border-radius: 14px;
    background: #0d0d0d;
    color: var(--gold);
    text-align: center;
}

    .event-registration-date span {
        font-size: .78rem;
        font-weight: 900;
        letter-spacing: .16em;
        text-transform: uppercase;
    }

    .event-registration-date strong {
        margin-top: -.25rem;
        color: #fff1cf;
        font-family: var(--head);
        font-size: 3rem;
        line-height: .9;
    }

.event-registration-main {
    min-width: 0;
    padding: 1rem 0;
}

    .event-registration-main h2 {
        margin: 0 0 .85rem;
        color: #fff;
        font-family: var(--head);
        font-size: clamp(1.45rem, 3vw, 2.15rem);
        line-height: 1.05;
        letter-spacing: .03em;
        text-transform: uppercase;
    }

    .event-registration-main p {
        max-width: 760px;
        margin: .95rem 0 0;
        color: #cfc6b2;
        font-size: 1.05rem;
        line-height: 1.55;
    }

.event-registration-meta {
    display: flex;
    flex-wrap: wrap;
    gap: .65rem;
}

    .event-registration-meta span {
        display: inline-flex;
        align-items: center;
        gap: .45rem;
        min-height: 38px;
        padding: .5rem .7rem;
        border: 1px solid rgba(255, 255, 255, .10);
        border-radius: 999px;
        background: rgba(0, 0, 0, .24);
        color: #f2e7cf;
        font-size: .92rem;
        font-weight: 750;
    }

    .event-registration-meta i {
        color: var(--gold);
        font-size: .9rem;
    }

.event-registration-form {
    display: grid;
    gap: 1rem;
    padding: clamp(1.25rem, 3vw, 2rem);
    border-top: 0;
    border-radius: 0 0 22px 22px;
}

.event-form-heading {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    align-items: end;
    padding-bottom: .75rem;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
}

    .event-form-heading h2 {
        margin: 0;
        color: var(--gold);
        font-family: var(--head);
        font-size: 1.35rem;
        text-transform: uppercase;
        letter-spacing: .06em;
    }

    .event-form-heading p {
        margin: 0;
        color: #bdb4a0;
        font-size: .95rem;
    }

.event-form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.event-form-field {
    display: grid;
    gap: .45rem;
}

    .event-form-field label {
        margin: 0;
        color: #eee2c9;
        font-size: .82rem;
        font-weight: 900;
        letter-spacing: .04em;
    }

.event-registration-form .form-input {
    min-height: 48px;
    border-color: rgba(255, 255, 255, .16);
    background: #090909;
}

.event-registration-form textarea.form-input {
    min-height: 96px;
}

.event-registration-submit {
    min-height: 52px;
    margin-top: .35rem;
    font-weight: 900;
}

html[data-theme="light"] .event-registration-page {
    background:
        radial-gradient(circle at 18% 0%, rgba(184, 137, 31, .16), transparent 34%),
        linear-gradient(180deg, #fffaf0 0%, #f5efe3 58%, #efe6d5 100%) !important;
    color: #251f17 !important;
}

html[data-theme="light"] .event-registration-hero,
html[data-theme="light"] .event-registration-form {
    border-color: rgba(139, 101, 24, .22) !important;
    background: linear-gradient(180deg, #fffaf0, #f6eddd) !important;
    box-shadow: 0 24px 58px rgba(72, 50, 15, .16) !important;
}

html[data-theme="light"] .event-registration-hero::before {
    background:
        linear-gradient(135deg, rgba(198, 149, 38, .16), transparent 38%),
        radial-gradient(circle at 84% 20%, rgba(255, 255, 255, .74), transparent 28%) !important;
}

html[data-theme="light"] .event-registration-kicker,
html[data-theme="light"] .event-form-heading h2 {
    color: #8a6415 !important;
}

html[data-theme="light"] .event-registration-hero h1,
html[data-theme="light"] .event-registration-main h2 {
    color: #231b12 !important;
}

html[data-theme="light"] .event-registration-main p,
html[data-theme="light"] .event-form-heading p {
    color: #65594a !important;
}

html[data-theme="light"] .event-registration-date {
    border-color: rgba(139, 101, 24, .26) !important;
    background: #fffdf8 !important;
    color: #8a6415 !important;
}

html[data-theme="light"] .event-registration-date strong {
    color: #241c12 !important;
}

html[data-theme="light"] .event-registration-meta span {
    border-color: rgba(139, 101, 24, .2) !important;
    background: rgba(255, 255, 255, .74) !important;
    color: #2d251b !important;
}

html[data-theme="light"] .event-form-heading {
    border-bottom-color: rgba(139, 101, 24, .18) !important;
}

html[data-theme="light"] .event-form-field label {
    color: #35291b !important;
}

html[data-theme="light"] .event-registration-form .form-input {
    border-color: rgba(139, 101, 24, .24) !important;
    background: #fffdf8 !important;
    color: #211a12 !important;
}

.booking-request-page {
    background: radial-gradient(circle at top center, rgba(212, 175, 55, .08), transparent 34%), var(--bg);
    padding: 3rem 1.5rem 5rem;
}

.booking-request-shell {
    width: min(100%, 1320px);
    margin: 0 auto;
}

.booking-request-hero {
    margin-bottom: 2rem;
    padding: 3rem;
    background: linear-gradient(135deg, rgba(212, 175, 55, .11), transparent 38%), #181818;
    border: 1px solid rgba(212, 175, 55, .18);
    border-radius: 24px;
    box-shadow: 0 18px 50px rgba(0,0,0,.35);
}

.booking-kicker {
    display: inline-block;
    margin-bottom: .85rem;
    color: var(--gold);
    font-family: var(--head);
    font-size: .9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .16em;
}

.booking-request-hero h1 {
    margin: 0;
    color: #fff1cf;
    font-family: var(--head);
    font-size: clamp(2.5rem, 5vw, 4rem);
    text-transform: uppercase;
    letter-spacing: .04em;
}

.booking-request-hero p {
    max-width: 720px;
    margin: .75rem 0 0;
    color: #cfc6b2;
    font-family: var(--serif);
    font-size: 1.2rem;
    line-height: 1.6;
}

.booking-request-layout {
    display: grid;
    grid-template-columns: 320px minmax(0, 1fr);
    gap: 2rem;
    align-items: start;
}

.booking-request-sidebar {
    position: sticky;
    top: 96px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.booking-step-card,
.booking-help-card,
.booking-panel {
    background: #1c1c1c;
    border: 1px solid rgba(212, 175, 55, .16);
    border-radius: 18px;
    box-shadow: 0 14px 36px rgba(0,0,0,.28);
}

.booking-step-card,
.booking-help-card {
    padding: 1.4rem;
}

.booking-step-number {
    display: inline-grid;
    place-items: center;
    width: 34px;
    height: 34px;
    margin-bottom: .85rem;
    border-radius: 50%;
    background: var(--gold);
    color: #111;
    font-family: var(--head);
    font-weight: 800;
}

.booking-step-card h2,
.booking-help-card h2,
.booking-panel-heading h2 {
    margin: 0;
    color: #fff1cf;
    font-family: var(--head);
    text-transform: uppercase;
    letter-spacing: .06em;
}

.booking-step-card h2,
.booking-help-card h2 {
    font-size: 1.25rem;
}

.booking-type-list {
    display: grid;
    gap: .8rem;
    margin-top: 1.25rem;
}

.booking-type-option {
    position: relative;
    display: block;
    padding: 1rem;
    border-radius: 12px;
    background: #111;
    border: 1px solid #333;
    cursor: pointer;
    transition: background .2s ease, border-color .2s ease, transform .2s ease;
}

    .booking-type-option:hover {
        border-color: var(--gold);
        transform: translateY(-1px);
    }

    .booking-type-option input {
        position: absolute;
        opacity: 0;
        pointer-events: none;
    }

    .booking-type-option span {
        color: #d8d0bf;
        font-family: var(--head);
        font-size: 1.1rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: .05em;
    }

    .booking-type-option:has(input:checked) {
        background: var(--gold);
        border-color: var(--gold);
    }

        .booking-type-option:has(input:checked) span {
            color: #111;
        }

.booking-type-option--disabled {
    opacity: .45;
    cursor: not-allowed;
}

.booking-selected-card {
    border-color: rgba(46, 204, 113, .4);
}

    .booking-selected-card p {
        display: grid;
        gap: .55rem;
        margin: .9rem 0 0;
        color: #fff1cf;
        font-weight: 700;
        line-height: 1.35;
    }

.booking-selected-detail {
    display: grid;
    gap: .15rem;
    padding: .7rem .75rem;
    border: 1px solid rgba(212, 175, 55, .16);
    border-radius: 12px;
    background: rgba(255, 255, 255, .035);
}

.booking-selected-label {
    color: rgba(217, 181, 56, .88);
    font-family: var(--body);
    font-size: .7rem;
    font-weight: 800;
    letter-spacing: .1em;
    line-height: 1;
    text-transform: uppercase;
}

.booking-selected-detail strong {
    color: #fff1cf;
    font-family: var(--body);
    font-size: .96rem;
    font-weight: 750;
    line-height: 1.24;
    overflow-wrap: anywhere;
}

.booking-slot-status {
    display: none;
}

.booking-help-card p {
    display: flex;
    align-items: center;
    gap: .55rem;
    margin: .8rem 0 0;
    color: #cfc6b2;
}

.booking-dot {
    width: 13px;
    height: 13px;
    border-radius: 50%;
    display: inline-block;
}

.booking-dot--green {
    background: #23924f;
}

.booking-dot--red {
    background: #8f3f3f;
}

.booking-request-main {
    min-width: 0;
}

.booking-panel {
    margin-bottom: 1.5rem;
    padding: 2rem;
}

.booking-panel-heading {
    display: flex;
    align-items: center;
    gap: .85rem;
    margin-bottom: 1.5rem;
}

    .booking-panel-heading span {
        display: inline-grid;
        place-items: center;
        width: 34px;
        height: 34px;
        border-radius: 50%;
        background: rgba(212, 175, 55, .14);
        color: var(--gold);
        font-family: var(--head);
        font-weight: 800;
    }

    .booking-panel-heading h2 {
        font-size: 1.35rem;
        color: var(--gold);
    }

.booking-detail-panel[hidden] {
    display: none !important;
}

.booking-mm-row {
    margin-top: 1rem;
}

.booking-calendar-help {
    margin: -0.5rem 0 1.25rem;
    color: #cfc6b2;
    font-family: var(--serif);
    font-size: 1.05rem;
}

.booking-public-calendar {
    background: linear-gradient(180deg, rgba(255,255,255,.025), rgba(255,255,255,0)), #070707;
    border: 1px solid rgba(212,175,55,.18);
    border-radius: 22px;
    padding: 1.5rem;
    overflow: hidden;
    box-shadow: 0 18px 40px rgba(0,0,0,.45), inset 0 1px 0 rgba(255,255,255,.03);
}

    .booking-public-calendar .fc {
        color: #fff1cf;
    }

    .booking-public-calendar .fc-toolbar {
        margin-bottom: 1.5rem !important;
        gap: 1rem;
    }

    .booking-public-calendar .fc-toolbar-title {
        color: #fff1cf;
        font-family: var(--head);
        font-size: 2rem;
        font-weight: 700;
        letter-spacing: .04em;
        text-transform: uppercase;
    }

    .booking-public-calendar .fc-button {
        min-width: 46px;
        height: 46px;
        border-radius: 999px !important;
        border: 0 !important;
        background: #1f2430 !important;
        color: #fff !important;
        box-shadow: none !important;
        transition: background .2s ease, transform .2s ease;
    }

        .booking-public-calendar .fc-button:hover {
            background: var(--orange-soft) !important;
            color: #111 !important;
            transform: translateY(-1px);
        }

    .booking-public-calendar .fc-today-button {
        width: auto;
        padding: 0 1rem !important;
        font-family: var(--head);
        font-size: .9rem;
        text-transform: uppercase;
        letter-spacing: .08em;
    }

    .booking-public-calendar .fc-scrollgrid {
        border: 0 !important;
    }

    .booking-public-calendar .fc-theme-standard td,
    .booking-public-calendar .fc-theme-standard th {
        border-color: rgba(255,255,255,.08) !important;
    }

    .booking-public-calendar .fc-col-header-cell {
        background: #efe2bf;
        border: 0 !important;
        padding: .7rem 0;
    }

    .booking-public-calendar .fc-col-header-cell-cushion {
        color: #c87f2d;
        font-family: var(--head);
        font-size: 1rem;
        font-weight: 700;
        text-transform: uppercase;
        text-decoration: none !important;
    }

    .booking-public-calendar .fc-daygrid-day {
        background: #050505;
        transition: background .2s ease;
    }

        .booking-public-calendar .fc-daygrid-day:hover {
            background: #101010;
        }

    .booking-public-calendar .fc-day-today {
        background: rgba(212,175,55,.12) !important;
    }

    .booking-public-calendar .fc-daygrid-day-frame {
        min-height: 145px;
        padding: .4rem;
        max-width: 100%;
        box-sizing: border-box;
    }

    .booking-public-calendar .fc-daygrid-day-events {
        max-width: 100%;
    }

    .booking-public-calendar .fc-daygrid-event-harness {
        max-width: 100%;
    }

    /* Day number always sits cleanly on top of the cell */
    .booking-public-calendar .fc-daygrid-day-top {
        position: relative;
        z-index: 2;
        justify-content: flex-end;
        padding: .15rem .25rem .35rem;
    }

    .booking-public-calendar .fc-daygrid-day-number {
        color: #ffd873;
        font-family: var(--head);
        font-size: 1rem;
        font-weight: 700;
        text-decoration: none !important;
    }

    /* Hide events on previous/next-month padding days; keep their dim day numbers */
    .booking-public-calendar .fc-day-other .fc-daygrid-day-events,
    .booking-public-calendar .fc-day-other .fc-daygrid-day-bottom {
        display: none !important;
    }

    .booking-public-calendar .fc-day-other {
        background: #030303;
        opacity: .55;
    }

        .booking-public-calendar .fc-day-other .fc-daygrid-day-number {
            color: #4f4637;
        }

    .booking-public-calendar .fc-daygrid-event {
        margin: .35rem 0 0;
        border: 0 !important;
        background: transparent !important;
        max-width: 100%;
    }

.booking-slot-event {
    display: flex;
    align-items: flex-start;
    gap: .4rem;
    width: 100%;
    max-width: 100%;
    min-height: auto;
    padding: .45rem .5rem;
    border-radius: 12px;
    background: linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,0)), #23924f;
    border: 1px solid rgba(255,255,255,.14);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.10), 0 6px 18px rgba(0,0,0,.28);
    overflow: hidden;
    cursor: pointer;
    text-align: left;
    transition: transform .18s ease, box-shadow .18s ease;
    box-sizing: border-box;
}

    .booking-slot-event:hover {
        transform: translateY(-2px);
        box-shadow: inset 0 1px 0 rgba(255,255,255,.12), 0 10px 24px rgba(0,0,0,.35);
    }

.booking-slot-event--selected {
    outline: 3px solid #fff1cf;
    outline-offset: 2px;
}

.booking-slot-event--full {
    background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,0)), #8f3f3f;
    opacity: .82;
    cursor: not-allowed;
}

.booking-slot-time {
    flex: 0 0 auto;
    color: #fff;
    font-family: var(--head);
    font-size: 1rem;
    font-weight: 800;
    line-height: 1;
    margin: 0;
    white-space: nowrap;
}

.booking-slot-main {
    min-width: 0;
    display: block;
}

    .booking-slot-main strong {
        display: block;
        margin-bottom: 0;
        color: #fff;
        font-size: .72rem;
        line-height: 1.05;
        font-weight: 700;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .booking-slot-main small {
        display: none;
    }

.booking-request-actions {
    display: flex;
    justify-content: flex-end;
    padding: 1rem 0 0;
}

    .booking-request-actions .btn-gold {
        min-width: 260px;
        min-height: 48px;
    }

html[data-theme="light"] .booking-request-page {
    background:
        radial-gradient(circle at top center, rgba(184, 137, 31, .13), transparent 34%),
        linear-gradient(180deg, #fffaf0 0%, #f5f0e6 62%, #efe6d5 100%) !important;
    color: #241d14 !important;
}

html[data-theme="light"] .booking-request-hero,
html[data-theme="light"] .booking-step-card,
html[data-theme="light"] .booking-help-card,
html[data-theme="light"] .booking-panel,
html[data-theme="light"] .booking-public-calendar {
    border-color: rgba(139, 101, 24, .22) !important;
    background: linear-gradient(180deg, #fffaf0, #f7efdf) !important;
    color: #241d14 !important;
    box-shadow: 0 22px 54px rgba(72, 50, 15, .15) !important;
}

html[data-theme="light"] .booking-request-hero {
    background:
        radial-gradient(circle at 88% 0%, rgba(226, 190, 86, .26), transparent 34%),
        linear-gradient(135deg, rgba(226, 190, 86, .18), transparent 42%),
        #fffaf0 !important;
}

html[data-theme="light"] .booking-kicker,
html[data-theme="light"] .booking-panel-heading h2,
html[data-theme="light"] .booking-selected-label {
    color: #8a6415 !important;
}

html[data-theme="light"] .booking-request-hero h1,
html[data-theme="light"] .booking-step-card h2,
html[data-theme="light"] .booking-help-card h2,
html[data-theme="light"] .booking-selected-detail strong,
html[data-theme="light"] .booking-public-calendar .fc-toolbar-title {
    color: #241d14 !important;
    text-shadow: none !important;
}

html[data-theme="light"] .booking-request-hero p,
html[data-theme="light"] .booking-help-card p,
html[data-theme="light"] .booking-calendar-help,
html[data-theme="light"] .booking-selected-card p {
    color: #5f5548 !important;
}

html[data-theme="light"] .booking-type-option,
html[data-theme="light"] .booking-selected-detail {
    border-color: rgba(139, 101, 24, .18) !important;
    background: #fffdf8 !important;
    color: #241d14 !important;
}

html[data-theme="light"] .booking-type-option:hover {
    border-color: rgba(139, 101, 24, .46) !important;
    background: #fff7e6 !important;
}

html[data-theme="light"] .booking-type-option span {
    color: #2d2419 !important;
}

html[data-theme="light"] .booking-type-option:has(input:checked) {
    background: #b8891f !important;
    border-color: #b8891f !important;
}

html[data-theme="light"] .booking-type-option:has(input:checked) span {
    color: #fffaf0 !important;
}

html[data-theme="light"] .booking-panel-heading span,
html[data-theme="light"] .booking-step-number {
    background: #b8891f !important;
    color: #fffaf0 !important;
}

html[data-theme="light"] .booking-public-calendar .fc {
    color: #241d14 !important;
}

html[data-theme="light"] .booking-public-calendar .fc-button {
    border: 1px solid rgba(139, 101, 24, .18) !important;
    background: #efe3ca !important;
    color: #2d2419 !important;
}

html[data-theme="light"] .booking-public-calendar .fc-button:hover,
html[data-theme="light"] .booking-public-calendar .fc-button:focus {
    background: #b8891f !important;
    color: #fffaf0 !important;
}

html[data-theme="light"] .booking-public-calendar .fc-col-header-cell {
    background: #efe2bf !important;
}

html[data-theme="light"] .booking-public-calendar .fc-col-header-cell-cushion,
html[data-theme="light"] .booking-public-calendar .fc-daygrid-day-number {
    color: #8a6415 !important;
}

html[data-theme="light"] .booking-public-calendar .fc-theme-standard td,
html[data-theme="light"] .booking-public-calendar .fc-theme-standard th {
    border-color: rgba(139, 101, 24, .22) !important;
}

html[data-theme="light"] .booking-public-calendar .fc-daygrid-day {
    background: #fffdf8 !important;
}

html[data-theme="light"] .booking-public-calendar .fc-daygrid-day:hover {
    background: #fff7e6 !important;
}

html[data-theme="light"] .booking-public-calendar .fc-day-today {
    background: rgba(184, 137, 31, .16) !important;
}

html[data-theme="light"] .booking-public-calendar .fc-day-other {
    background: #f2eadb !important;
    opacity: .72;
}

html[data-theme="light"] .booking-public-calendar .fc-day-other .fc-daygrid-day-number {
    color: #9b927f !important;
}

html[data-theme="light"] .booking-slot-event--selected {
    outline-color: #241d14;
}

@media (max-width: 1100px) {
    .booking-request-layout {
        grid-template-columns: 1fr;
    }

    .booking-request-sidebar {
        position: static;
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (min-width: 761px) and (max-width: 1100px) {
    .booking-request-sidebar {
        display: grid;
        grid-template-columns: 1.4fr 1.6fr 1fr;
        gap: 1rem;
        align-items: stretch;
    }

    .booking-step-card,
    .booking-help-card {
        min-height: 0;
        padding: 1.1rem;
    }

    .booking-step-number {
        width: 28px;
        height: 28px;
        margin-bottom: .6rem;
        font-size: .9rem;
    }

    .booking-step-card h2,
    .booking-help-card h2 {
        font-size: 1rem;
        margin-bottom: .8rem;
    }

    .booking-type-list {
        gap: .5rem;
        margin-top: .75rem;
    }

    .booking-type-option {
        padding: .7rem .85rem;
    }

        .booking-type-option span {
            font-size: .95rem;
        }

    .booking-selected-card p {
        font-size: .95rem;
        line-height: 1.35;
    }

    .booking-help-card p {
        margin: .45rem 0;
        font-size: .95rem;
    }

    .booking-selected-card:not([hidden]) {
        position: fixed;
        left: 50%;
        bottom: 0;
        z-index: 300;
        width: min(100% - 2rem, 820px);
        transform: translateX(-50%);
        border-radius: 16px 16px 0 0;
        background: #151515;
        border: 1px solid rgba(46, 204, 113, .7);
        border-bottom: 0;
        box-shadow: 0 -16px 40px rgba(0,0,0,.65);
        padding: 1rem 1.25rem;
    }

        .booking-selected-card:not([hidden]) .booking-step-number {
            display: none;
        }

        .booking-selected-card:not([hidden]) h2 {
            margin: 0 0 .25rem;
            font-size: .9rem;
            color: var(--gold);
        }

        .booking-selected-card:not([hidden]) p {
            grid-template-columns: repeat(4, minmax(0, 1fr));
            gap: .65rem;
            margin: .55rem 0 0;
            font-size: 1rem;
        }

        .booking-selected-card:not([hidden]) .booking-selected-detail {
            padding: .55rem .65rem;
        }

        .booking-selected-card:not([hidden]) .booking-selected-detail strong {
            font-size: .92rem;
        }

    .booking-request-actions {
        padding-bottom: 5.5rem;
    }
}

@media (min-width: 1101px) {
    .booking-public-calendar .fc-daygrid-day-frame {
        min-height: 155px;
    }
}

@media (max-width: 760px) {
    .event-registration-page {
        padding: 1rem .75rem 3rem;
    }

    .event-registration-hero {
        border-radius: 16px 16px 0 0;
    }

    .event-registration-summary {
        grid-template-columns: 1fr;
    }

    .event-registration-date {
        display: flex;
        justify-content: center;
        gap: .6rem;
        min-height: 72px;
    }

        .event-registration-date strong {
            margin: 0;
            font-size: 2.35rem;
        }

    .event-registration-meta span {
        width: 100%;
        border-radius: 12px;
    }

    .event-registration-form {
        border-radius: 0 0 16px 16px;
    }

    .event-form-heading,
    .event-form-grid {
        display: grid;
        grid-template-columns: 1fr;
    }

    .booking-request-page {
        padding: 1rem .75rem 3rem;
    }

    .booking-request-hero {
        padding: 1.5rem;
        border-radius: 16px;
    }

        .booking-request-hero h1 {
            font-size: 2.2rem;
        }

        .booking-request-hero p {
            font-size: 1rem;
        }

    .booking-request-sidebar {
        display: flex;
    }

    .booking-panel {
        padding: 1.25rem;
        border-radius: 14px;
    }

    .form-row.two,
    .form-row.three {
        grid-template-columns: 1fr;
    }

    .booking-calendar-panel {
        margin-left: -.75rem;
        margin-right: -.75rem;
        padding-left: 0;
        padding-right: 0;
        border-left: 0;
        border-right: 0;
        border-radius: 0;
    }

        .booking-calendar-panel .booking-panel-heading,
        .booking-calendar-help {
            margin-left: 1.25rem;
            margin-right: 1.25rem;
        }

    .booking-public-calendar {
        padding: .75rem;
        border-radius: 0;
        border-left: 0;
        border-right: 0;
    }

        .booking-public-calendar .fc-toolbar {
            align-items: center;
        }

        .booking-public-calendar .fc-toolbar-title {
            font-size: 1.35rem;
            white-space: normal;
        }

        .booking-public-calendar .fc-list {
            border: 0 !important;
        }

        .booking-public-calendar .fc-list-day-cushion {
            background: #111 !important;
            color: var(--gold) !important;
            font-family: var(--head);
            text-transform: uppercase;
            padding: .85rem 1rem !important;
            border: 0 !important;
        }

        .booking-public-calendar .fc-list-event:hover td {
            background: transparent !important;
        }

        .booking-public-calendar .fc-list-event td {
            border-color: rgba(255,255,255,.08) !important;
            background: #080808 !important;
            padding: .8rem !important;
        }

        .booking-public-calendar .fc-list-event-time,
        .booking-public-calendar .fc-list-event-graphic {
            display: none;
        }

        .booking-public-calendar .fc-list-event-title {
            color: #fff1cf !important;
        }

    .booking-slot-event {
        display: grid;
        grid-template-columns: 82px 1fr;
        min-height: 96px;
        padding: .95rem;
        border-radius: 14px;
    }

    .booking-slot-time {
        font-size: 1.8rem;
    }

    .booking-slot-main strong {
        font-size: 1.05rem;
        white-space: normal;
        overflow: visible;
        text-overflow: clip;
        line-height: 1.15;
    }

    .booking-slot-main small {
        display: block;
        font-size: .9rem;
    }

    .booking-request-actions {
        justify-content: stretch;
    }

        .booking-request-actions .btn-gold {
            width: 100%;
            min-width: 0;
        }
}

@media (min-width: 761px) {
    .booking-slot-event {
        width: 100%;
        max-width: 100%;
        padding: .5rem .55rem;
        gap: .35rem;
    }

    .booking-slot-time {
        line-height: 1.25;
        font-size: .88rem;
    }

    .booking-slot-main {
        flex: 1 1 auto;
        min-width: 0;
        max-width: 100%;
        overflow: hidden;
    }

        .booking-slot-main strong {
            max-width: 100%;
            font-size: .74rem;
            letter-spacing: .01em;
            white-space: normal;
            line-height: 1.25;
            overflow: visible;
            text-overflow: clip;
            word-break: normal;
            overflow-wrap: break-word;
            hyphens: auto;
        }

        .booking-slot-main small {
            display: block;
            margin-top: .2rem;
            color: rgba(255, 241, 207, .82);
            font-size: .68rem;
            line-height: 1.25;
            font-weight: 500;
            white-space: normal;
            overflow: visible;
            text-overflow: clip;
            word-break: normal;
            overflow-wrap: break-word;
        }

    .booking-slot-event--grid {
        align-items: center;
        justify-content: center;
        gap: .3rem;
        min-height: 46px;
        text-align: center;
    }

    .booking-slot-event--grid .booking-slot-time {
        font-family: var(--body);
        font-weight: 900;
        line-height: 1;
    }

    .booking-slot-event--grid .booking-slot-status {
        display: inline-flex;
    }
}

@media (min-width: 1200px) {
    .booking-slot-event {
        padding: .55rem .65rem;
    }

    .booking-slot-time {
        font-size: .95rem;
    }

    .booking-slot-main strong {
        font-size: .8rem;
    }

    .booking-slot-main small {
        font-size: .72rem;
    }
}
