:root {
    --bg: #050505;
    --surface: rgba(255, 255, 255, 0.03);
    --border: rgba(255, 255, 255, 0.1);
    --text: #ffffff;
    --muted: #9a9a9a;
    --accent: #ffffff;
    --font-h: 'Space Grotesk', system-ui, sans-serif;
    --font-b: 'Outfit', system-ui, sans-serif;
    --radius: 14px;
}

* {
    box-sizing: border-box;
}

body.booking-body {
    margin: 0;
    min-height: 100vh;
    color: var(--text);
    font-family: var(--font-b);
    background: var(--bg);
    -webkit-font-smoothing: antialiased;
}

.booking-bg {
    position: fixed;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(900px 500px at 15% -10%, rgba(255, 255, 255, 0.07), transparent 55%),
        radial-gradient(700px 400px at 90% 10%, rgba(255, 255, 255, 0.04), transparent 50%),
        linear-gradient(180deg, #070707 0%, #050505 40%, #050505 100%);
    z-index: -1;
}

.booking-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px clamp(20px, 4vw, 48px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(12px);
    position: sticky;
    top: 0;
    z-index: 5;
    background: rgba(5, 5, 5, 0.65);
}

.booking-brand {
    font-family: var(--font-h);
    font-weight: 700;
    letter-spacing: 0.14em;
    font-size: 0.82rem;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--text);
}

.booking-nav {
    display: flex;
    gap: 22px;
}

.booking-nav a {
    color: var(--muted);
    text-decoration: none;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.72rem;
}

.booking-nav a:hover {
    color: var(--text);
}

.booking-main {
    max-width: 980px;
    margin: 0 auto;
    padding: clamp(32px, 5vw, 72px) clamp(20px, 4vw, 48px) 80px;
}

.booking-kicker {
    text-transform: uppercase;
    letter-spacing: 0.28em;
    font-size: 0.68rem;
    color: var(--muted);
    margin: 0 0 12px;
}

.booking-hero h1 {
    font-family: var(--font-h);
    font-size: clamp(2.1rem, 4vw, 3.2rem);
    letter-spacing: -0.03em;
    margin: 0 0 14px;
}

.booking-lede {
    max-width: 52ch;
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.65;
    margin: 0;
}

.booking-panel {
    margin-top: 40px;
    border: 1px solid var(--border);
    border-radius: calc(var(--radius) + 4px);
    padding: clamp(22px, 3vw, 32px);
    background: var(--surface);
    box-shadow: 0 40px 120px rgba(0, 0, 0, 0.45);
}

.booking-grid {
    display: grid;
    gap: 20px;
}

@media (min-width: 720px) {
    .booking-grid {
        grid-template-columns: minmax(260px, 300px) 1fr;
        align-items: start;
    }
}

.booking-grid--2 {
    grid-template-columns: 1fr;
}

@media (min-width: 720px) {
    .booking-grid--2 {
        grid-template-columns: 1fr 1fr;
    }
}

.booking-field--wide {
    grid-column: 1 / -1;
}

@media (min-width: 720px) {
    .booking-field--wide {
        grid-column: 2;
    }
}

.booking-field label,
.booking-label {
    display: block;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: var(--muted);
    margin-bottom: 10px;
}

.booking-field--calendar {
    min-width: 0;
}

.booking-calendar {
    border: 1px solid var(--border);
    border-radius: 12px;
    background: rgba(0, 0, 0, 0.35);
    padding: 14px 14px 12px;
    font-family: var(--font-b);
}

.booking-cal__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 14px;
}

.booking-cal__title {
    margin: 0;
    font-family: var(--font-h);
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--text);
}

.booking-cal__nav {
    flex: 0 0 auto;
    width: 38px;
    height: 38px;
    border-radius: 10px;
    border: 1px solid var(--border);
    background: rgba(0, 0, 0, 0.25);
    color: var(--text);
    font-size: 1.15rem;
    line-height: 1;
    cursor: pointer;
    transition: border-color 0.2s ease, background 0.2s ease, transform 0.15s ease;
}

.booking-cal__nav:hover:not(:disabled) {
    border-color: rgba(255, 255, 255, 0.35);
    transform: translateY(-1px);
}

.booking-cal__nav:disabled {
    opacity: 0.28;
    cursor: not-allowed;
    transform: none;
}

.booking-cal__weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 4px;
    margin-bottom: 6px;
}

.booking-cal__weekday {
    text-align: center;
    font-size: 0.65rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--muted);
    padding: 4px 0;
}

.booking-cal__grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 4px;
}

.booking-cal__pad,
.booking-cal__day {
    aspect-ratio: 1;
    min-height: 0;
}

.booking-cal__day {
    border-radius: 10px;
    border: 1px solid transparent;
    background: transparent;
    color: var(--text);
    font-family: var(--font-b);
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: border-color 0.2s ease, background 0.2s ease, transform 0.15s ease;
}

.booking-cal__day:hover:not(:disabled):not(.booking-cal__day--muted) {
    border-color: rgba(255, 255, 255, 0.35);
    background: rgba(255, 255, 255, 0.04);
    transform: translateY(-1px);
}

.booking-cal__day:focus-visible {
    outline: none;
    border-color: rgba(255, 255, 255, 0.45);
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.12);
}

.booking-cal__day--muted {
    color: rgba(255, 255, 255, 0.22);
    cursor: default;
    pointer-events: none;
}

.booking-cal__day--closed {
    opacity: 0.35;
    cursor: not-allowed;
    text-decoration: line-through;
    color: var(--muted);
}

.booking-cal__day--disabled {
    color: rgba(255, 255, 255, 0.28);
    cursor: not-allowed;
    opacity: 0.55;
}

.booking-cal__day--disabled:hover {
    transform: none;
    border-color: transparent;
    background: transparent;
}

.booking-cal__day--selected {
    background: var(--accent);
    color: #050505;
    border-color: var(--accent);
}

.booking-cal__day--selected:hover:not(:disabled) {
    background: var(--accent);
    color: #050505;
    border-color: var(--accent);
    transform: translateY(-1px);
}

.booking-field select {
    width: 100%;
    padding: 14px 40px 14px 16px;
    border-radius: 10px;
    border: 1px solid var(--border);
    background: rgba(0, 0, 0, 0.35);
    color: var(--text);
    font-family: var(--font-b);
    font-size: 1rem;
    outline: none;
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%239a9a9a' d='M1 1.5 6 6.5 11 1.5'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
}

.booking-field select:focus {
    border-color: rgba(255, 255, 255, 0.35);
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.12);
}

.booking-field select option {
    color: #111;
    background: #fff;
}

.booking-field input[type="text"],
.booking-field input[type="email"],
.booking-field input[type="tel"] {
    width: 100%;
    padding: 14px 16px;
    border-radius: 10px;
    border: 1px solid var(--border);
    background: rgba(0, 0, 0, 0.35);
    color: var(--text);
    font-family: var(--font-b);
    font-size: 1rem;
    outline: none;
}

.booking-field input:focus {
    border-color: rgba(255, 255, 255, 0.35);
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.12);
}

.booking-slots {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    min-height: 48px;
}

.booking-slot {
    border: 1px solid var(--border);
    background: rgba(0, 0, 0, 0.25);
    color: var(--text);
    padding: 10px 14px;
    border-radius: 999px;
    font-size: 0.9rem;
    letter-spacing: 0.04em;
    cursor: pointer;
    transition: border-color 0.2s ease, transform 0.15s ease, background 0.2s ease;
}

.booking-slot:hover {
    border-color: rgba(255, 255, 255, 0.35);
    transform: translateY(-1px);
}

.booking-slot[aria-pressed="true"] {
    background: var(--accent);
    color: #050505;
    border-color: var(--accent);
}

.booking-slot:disabled {
    opacity: 0.45;
    cursor: not-allowed;
    transform: none;
}

.booking-hint {
    margin: 10px 0 0;
    color: var(--muted);
    font-size: 0.9rem;
}

.booking-details {
    margin-top: 32px;
    padding-top: 28px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.booking-details h2 {
    font-family: var(--font-h);
    font-size: 1.1rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin: 0 0 18px;
}

.booking-optional {
    color: var(--muted);
    text-transform: none;
    letter-spacing: 0;
    font-size: 0.85rem;
}

.booking-actions {
    margin-top: 22px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
}

.booking-btn {
    border: 1px solid var(--accent);
    background: var(--accent);
    color: #050505;
    padding: 14px 26px;
    border-radius: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.72rem;
    cursor: pointer;
    transition: transform 0.15s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}

.booking-btn:hover:not(:disabled) {
    transform: translateY(-1px);
    box-shadow: 0 18px 50px rgba(255, 255, 255, 0.12);
}

.booking-btn:disabled {
    opacity: 0.35;
    cursor: not-allowed;
    box-shadow: none;
}

.booking-msg {
    margin: 0;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.85);
}

.booking-msg--error {
    color: #ffb4b4;
}

.booking-msg--ok {
    color: #b8f5c5;
}

.booking-footer {
    padding: 28px clamp(20px, 4vw, 48px) 40px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    color: #555;
    font-size: 0.82rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.booking-dot {
    opacity: 0.5;
}
