:root {
    --bg: #00051a;
    --bg-2: #04091e;
    --surface: rgba(8, 14, 38, 0.78);
    --surface-strong: rgba(12, 18, 48, 0.94);
    --line: rgba(255, 255, 255, 0.14);
    --text: #ffffff;
    --muted: rgba(255, 255, 255, 0.72);
    --soft: rgba(255, 255, 255, 0.54);
    --blue: #2c66f7;
    --cyan: #64d5ff;
    --purple: #7e26c7;
    --rose: #ef4f9a;
    --gold: #ffc861;
    --shadow: 0 24px 80px rgba(0, 0, 0, 0.42);
    --radius: 8px;
    --content: min(1160px, calc(100vw - 40px));
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 104px;
    background: var(--bg);
}

body {
    margin: 0;
    min-width: 320px;
    background:
        linear-gradient(180deg, var(--bg) 0%, #020616 44%, #02040c 100%);
    color: var(--text);
    font-family: "Segoe UI", Inter, system-ui, -apple-system, BlinkMacSystemFont, Arial, sans-serif;
    letter-spacing: 0;
}

body.nav-open {
    overflow: hidden;
}

body.homepage-editor-open {
    overflow: hidden;
}

img {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
select,
textarea {
    font: inherit;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 22px;
    min-height: 86px;
    padding: 12px max(20px, calc((100vw - 1180px) / 2));
    background: rgba(0, 5, 26, 0.88);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
}

.brand-link {
    display: inline-flex;
    align-items: center;
}

.brand-link img {
    width: clamp(142px, 16vw, 204px);
    height: auto;
}

.site-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(14px, 2vw, 28px);
    color: rgba(255, 255, 255, 0.86);
    font-size: 15px;
    font-weight: 700;
}

.site-nav a {
    position: relative;
    padding: 12px 0;
}

.site-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 5px;
    height: 2px;
    transform: scaleX(0);
    transform-origin: center;
    background: linear-gradient(90deg, var(--blue), var(--purple));
    transition: transform 180ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after,
.site-nav a[aria-current]::after {
    transform: scaleX(1);
}

.site-nav a[aria-current] {
    color: #ffffff;
}

.site-nav a[aria-current]::after {
    background: linear-gradient(90deg, var(--gold), var(--cyan));
    box-shadow: 0 0 12px rgba(255, 200, 97, 0.44);
}

.nav-toggle {
    display: none;
    align-items: center;
    gap: 8px;
    min-height: 42px;
    padding: 0 14px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    color: var(--text);
    font-weight: 800;
}

.header-cta,
.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 46px;
    border: 0;
    border-radius: 999px;
    font-weight: 900;
    line-height: 1;
    color: var(--text);
}

.header-cta {
    padding: 0 22px;
    background: linear-gradient(135deg, var(--blue), var(--purple));
    box-shadow: 0 12px 36px rgba(44, 102, 247, 0.3);
    white-space: nowrap;
}

.button {
    padding: 0 24px;
}

.button-primary {
    background: linear-gradient(135deg, #3978ff, #8127d8 56%, #b029d6);
    box-shadow: 0 18px 42px rgba(44, 102, 247, 0.34);
}

.button-secondary {
    border: 1px solid rgba(255, 255, 255, 0.26);
    background: rgba(255, 255, 255, 0.1);
}

.button:hover,
.header-cta:hover {
    transform: translateY(-1px);
}

.hero-section {
    position: relative;
    min-height: calc(100svh - 86px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
    border-bottom: 1px solid rgba(126, 38, 199, 0.38);
}

.hero-bg,
.hero-bg::after {
    position: absolute;
    inset: 0;
}

.hero-bg {
    background-image: url("../assets/homepage/hero-lanes.jpeg");
    background-position: center;
    background-size: cover;
    transform: scale(1.02);
}

.hero-bg::after {
    content: "";
    background:
        linear-gradient(90deg, rgba(0, 5, 26, 0.94) 0%, rgba(0, 5, 26, 0.64) 44%, rgba(0, 5, 26, 0.38) 100%),
        linear-gradient(180deg, rgba(0, 5, 26, 0.46) 0%, rgba(0, 5, 26, 0.7) 76%, var(--bg) 100%);
}

.hero-inner {
    position: relative;
    z-index: 1;
    width: var(--content);
    margin: 0 auto;
    padding: clamp(70px, 9vw, 118px) 0 36px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(260px, 360px);
    gap: clamp(28px, 6vw, 72px);
    align-items: center;
}

.hero-copy {
    max-width: 780px;
}

.hero-copy h1 {
    margin: 0;
    max-width: 820px;
    font-size: clamp(46px, 8.2vw, 106px);
    line-height: 0.92;
    letter-spacing: 0;
    text-wrap: balance;
}

.hero-copy p {
    max-width: 650px;
    margin: 24px 0 0;
    color: rgba(255, 255, 255, 0.82);
    font-size: clamp(18px, 2.1vw, 23px);
    line-height: 1.42;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 32px;
}

.hero-live-status {
    display: none;
    align-items: center;
    gap: 11px;
    margin-top: 16px;
    min-height: 54px;
    padding: 10px 12px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: var(--radius);
    background: rgba(3, 8, 28, 0.76);
    color: var(--text);
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.28);
}

.hero-live-status svg {
    flex: 0 0 auto;
    width: 21px;
    height: 21px;
}

.hero-live-status span {
    min-width: 0;
    display: grid;
    gap: 2px;
}

.hero-live-status strong {
    font-size: 15px;
    line-height: 1.1;
}

.hero-live-status small {
    color: var(--muted);
    font-size: 12px;
    font-weight: 750;
    line-height: 1.25;
}

.hero-live-status.is-open {
    border-color: rgba(83, 230, 164, 0.42);
    background: rgba(30, 170, 105, 0.18);
}

.hero-live-status.is-open svg,
.hero-live-status.is-open strong {
    color: #7effbd;
}

.hero-live-status.is-closed {
    border-color: rgba(255, 200, 97, 0.45);
    background: rgba(255, 200, 97, 0.14);
}

.hero-live-status.is-closed svg,
.hero-live-status.is-closed strong {
    color: var(--gold);
}

.hero-live-status.is-warning {
    border-color: rgba(239, 79, 154, 0.45);
    background: rgba(239, 79, 154, 0.13);
}

.hero-live-status.is-warning svg,
.hero-live-status.is-warning strong {
    color: #ff9ac6;
}

.hero-live-status.is-loading svg {
    animation: spin 900ms linear infinite;
}

.hero-card {
    display: grid;
    place-items: center;
    align-content: center;
    gap: 10px;
    min-height: 320px;
    padding: 0;
}

.hero-ball-button {
    appearance: none;
    width: min(100%, 278px);
    aspect-ratio: 1;
    margin: 0 auto;
    padding: 0;
    display: grid;
    place-items: center;
    overflow: hidden;
    border: 0;
    border-radius: 50%;
    background: transparent;
    cursor: pointer;
    filter: drop-shadow(0 20px 32px rgba(0, 0, 0, 0.46));
    transform: translateY(0) scale(1);
    transform-origin: center;
    will-change: transform;
    clip-path: circle(50% at 50% 50%);
}

.hero-ball-button:hover {
    filter: drop-shadow(0 22px 36px rgba(0, 0, 0, 0.52)) saturate(1.08);
}

.hero-ball-button:focus-visible {
    outline: 3px solid rgba(100, 213, 255, 0.74);
    outline-offset: 6px;
}

.hero-ball-rotor {
    width: 100%;
    height: 100%;
    display: block;
    overflow: hidden;
    border-radius: 50%;
    transform: rotate(var(--hero-ball-rotation, 0deg));
    transform-origin: center;
    will-change: transform;
    clip-path: circle(50% at 50% 50%);
}

.hero-ball-rotor img {
    width: 100%;
    height: 100%;
    display: block;
    border-radius: inherit;
    object-fit: cover;
}

.hero-ball-button.is-dropped {
    pointer-events: none;
    animation: heroBallDrop 900ms cubic-bezier(0.68, -0.04, 0.72, 0.42) forwards;
}

.hero-ball-confetti {
    position: fixed;
    inset: 0;
    z-index: 80;
    pointer-events: none;
    overflow: hidden;
}

.hero-ball-confetti i {
    position: absolute;
    top: -16px;
    left: var(--confetti-left, 50%);
    width: var(--confetti-size, 8px);
    height: calc(var(--confetti-size, 8px) * 1.8);
    border-radius: 2px;
    background: var(--confetti-color, var(--gold));
    opacity: 0;
    transform: translate3d(0, -20px, 0) rotate(0deg);
    animation: heroBallConfettiFall var(--confetti-duration, 1500ms) cubic-bezier(0.18, 0.74, 0.32, 1) forwards;
    animation-delay: var(--confetti-delay, 0ms);
}

.hero-ball-drop-count {
    min-width: 34px;
    min-height: 24px;
    padding: 4px 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 1px;
    border: 1px solid rgba(255, 200, 97, 0.24);
    border-radius: 999px;
    background: radial-gradient(circle at 50% 20%, rgba(255, 255, 255, 0.12), rgba(5, 10, 34, 0.1) 62%);
    color: #fff4c6;
    font-size: clamp(14px, 1.35vw, 18px);
    font-weight: 900;
    line-height: 1;
    font-variant-numeric: tabular-nums;
    opacity: 0.86;
    text-shadow:
        0 0 8px rgba(255, 200, 97, 0.92),
        0 0 18px rgba(100, 213, 255, 0.48),
        0 0 30px rgba(143, 91, 255, 0.32);
    box-shadow:
        0 0 12px rgba(255, 200, 97, 0.18),
        inset 0 0 14px rgba(100, 213, 255, 0.1);
    transform: translateY(0) scale(1);
}

.hero-ball-drop-count.is-counting {
    animation: heroBallCounterGlow 1450ms cubic-bezier(0.2, 0.9, 0.18, 1) both;
}

.hero-ball-count-digit {
    width: 0.68em;
    height: 1em;
    display: inline-block;
    overflow: hidden;
    line-height: 1;
    text-align: center;
}

.hero-ball-count-reel {
    display: flex;
    flex-direction: column;
    animation: heroBallDigitRoll 980ms cubic-bezier(0.2, 0.86, 0.18, 1) forwards;
    animation-delay: var(--digit-delay, 260ms);
    transform: translateY(0);
    will-change: transform;
}

.hero-ball-count-reel span {
    height: 1em;
    line-height: 1;
}

.proof-strip {
    position: relative;
    z-index: 1;
    width: var(--content);
    margin: 0 auto 28px;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: var(--radius);
    overflow: hidden;
    background: rgba(255, 255, 255, 0.12);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.32);
}

.proof-strip div {
    padding: 18px;
    background: rgba(3, 8, 28, 0.72);
}

.proof-strip strong,
.proof-strip span {
    display: block;
}

.proof-strip strong {
    color: #ffffff;
    font-size: clamp(21px, 2.4vw, 32px);
    line-height: 1;
}

.proof-strip span {
    margin-top: 7px;
    color: var(--muted);
    font-weight: 700;
}

.summer-special-band {
    border-top: 1px solid rgba(255, 200, 97, 0.42);
    border-bottom: 1px solid rgba(255, 200, 97, 0.42);
    background:
        linear-gradient(90deg, rgba(255, 200, 97, 0.16), rgba(17, 70, 57, 0.34) 52%, rgba(255, 200, 97, 0.08)),
        #0c1425;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04), 0 18px 46px rgba(0, 0, 0, 0.22);
}

.summer-special-inner {
    width: var(--content);
    min-height: 154px;
    margin: 0 auto;
    padding: 22px 0;
    display: grid;
    grid-template-columns: auto minmax(300px, 1.2fr) minmax(230px, 0.7fr) auto;
    align-items: center;
    gap: clamp(18px, 2.8vw, 38px);
}

.summer-special-icon {
    width: 70px;
    aspect-ratio: 1;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 200, 97, 0.58);
    border-radius: 50%;
    background: rgba(255, 200, 97, 0.14);
    color: var(--gold);
    box-shadow: 0 0 28px rgba(255, 200, 97, 0.2);
}

.summer-special-icon svg {
    width: 34px;
    height: 34px;
}

.summer-special-copy > span {
    color: var(--gold);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.summer-special-copy h2 {
    margin: 5px 0 0;
    color: #ffffff;
    font-size: clamp(25px, 3vw, 38px);
    line-height: 1;
    letter-spacing: 0;
}

.summer-special-copy p {
    max-width: 690px;
    margin: 9px 0 0;
    color: rgba(255, 255, 255, 0.78);
    font-size: 15px;
    line-height: 1.42;
}

.summer-special-details {
    display: grid;
    gap: 8px;
}

.summer-special-details span {
    display: grid;
    gap: 2px;
    color: rgba(255, 255, 255, 0.84);
    font-size: 14px;
    line-height: 1.3;
}

.summer-special-details strong {
    color: var(--gold);
    font-size: 11px;
    text-transform: uppercase;
}

.summer-special-cta {
    min-width: 228px;
    border: 1px solid rgba(255, 200, 97, 0.66);
    background: #e8ad35;
    color: #11192a;
    box-shadow: 0 14px 34px rgba(232, 173, 53, 0.22);
}

.summer-special-cta:hover {
    background: #f4c25d;
}

.live-place-section,
.prices-section,
.specials-section,
.events-section,
.menu-section,
.reservation-section {
    width: var(--content);
    margin: 0 auto;
    padding: clamp(66px, 8vw, 110px) 0;
    scroll-margin-top: 112px;
}

.live-place-section {
    display: grid;
    grid-template-columns: minmax(260px, 0.7fr) minmax(0, 1.3fr);
    gap: 18px;
    align-items: stretch;
    padding-top: clamp(46px, 6vw, 74px);
    padding-bottom: clamp(22px, 3vw, 36px);
}

.live-place-copy {
    display: grid;
    align-content: center;
    padding: 24px 0;
}

.live-place-copy h2 {
    margin: 0;
    font-size: clamp(34px, 5vw, 58px);
    line-height: 0.98;
    letter-spacing: 0;
}

.live-place-copy p {
    margin: 16px 0 0;
    color: var(--muted);
    font-size: 18px;
    line-height: 1.5;
}

.live-place-copy small {
    margin-top: 14px;
    color: var(--soft);
    font-weight: 800;
}

.live-place-grid {
    display: grid;
    grid-template-columns: minmax(260px, 0.9fr) minmax(300px, 1.1fr);
    gap: 14px;
}

.live-place-card,
.live-hours-card {
    display: grid;
    align-content: start;
    gap: 18px;
    min-height: 250px;
    padding: 22px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: var(--radius);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.045)),
        rgba(6, 12, 34, 0.84);
    box-shadow: 0 18px 58px rgba(0, 0, 0, 0.28);
}

.place-status-chip {
    display: inline-flex;
    align-items: center;
    justify-self: start;
    gap: 9px;
    min-height: 38px;
    padding: 0 12px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.08);
    color: var(--text);
    font-size: 14px;
    font-weight: 900;
}

.place-status-chip svg {
    width: 18px;
    height: 18px;
}

.place-status-chip.is-loading svg {
    animation: spin 900ms linear infinite;
}

.place-status-chip.is-open {
    border-color: rgba(83, 230, 164, 0.42);
    background: rgba(30, 170, 105, 0.18);
    color: #7effbd;
}

.place-status-chip.is-closed {
    border-color: rgba(255, 200, 97, 0.45);
    background: rgba(255, 200, 97, 0.14);
    color: var(--gold);
}

.place-status-chip.is-warning {
    border-color: rgba(239, 79, 154, 0.45);
    background: rgba(239, 79, 154, 0.13);
    color: #ff9ac6;
}

.place-rating-line strong,
.place-rating-line span,
.place-contact-lines span,
.place-contact-lines a {
    display: block;
}

.place-rating-line strong {
    color: var(--gold);
    font-size: clamp(38px, 4.4vw, 56px);
    line-height: 0.95;
}

.place-rating-line span,
.place-contact-lines span {
    margin-top: 5px;
    color: var(--muted);
    font-weight: 800;
    line-height: 1.35;
}

@keyframes heroBallDrop {
    0% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }

    18% {
        opacity: 1;
        transform: translateY(-14px) scale(1.03);
    }

    100% {
        opacity: 0;
        transform: translateY(115vh) scale(0.86);
    }
}

@keyframes heroBallCounterGlow {
    0% {
        opacity: 0.72;
        box-shadow:
            0 0 12px rgba(255, 200, 97, 0.18),
            inset 0 0 14px rgba(100, 213, 255, 0.1);
    }

    46% {
        opacity: 1;
        box-shadow:
            0 0 22px rgba(255, 200, 97, 0.42),
            0 0 46px rgba(100, 213, 255, 0.28),
            inset 0 0 20px rgba(255, 200, 97, 0.14);
    }

    100% {
        opacity: 0.86;
        box-shadow:
            0 0 12px rgba(255, 200, 97, 0.18),
            inset 0 0 14px rgba(100, 213, 255, 0.1);
    }
}

@keyframes heroBallDigitRoll {
    0%,
    22% {
        transform: translateY(0);
        filter: blur(0);
    }

    58% {
        transform: translateY(-1.14em);
        filter: blur(1px);
    }

    76% {
        transform: translateY(-0.88em);
        filter: blur(0);
    }

    100% {
        transform: translateY(-1em);
        filter: blur(0);
    }
}

@keyframes heroBallConfettiFall {
    0% {
        opacity: 0;
        transform: translate3d(0, -20px, 0) rotate(0deg);
    }

    10% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        transform: translate3d(var(--confetti-drift, 0px), 110vh, 0) rotate(var(--confetti-spin, 540deg));
    }
}

.place-contact-lines {
    display: grid;
    gap: 6px;
}

.place-contact-lines a,
.place-live-actions a {
    color: var(--cyan);
    font-weight: 900;
}

.place-live-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.place-live-actions a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 40px;
    padding: 0 12px;
    border: 1px solid rgba(100, 213, 255, 0.24);
    border-radius: var(--radius);
    background: rgba(100, 213, 255, 0.08);
}

.live-hours-card > strong {
    color: var(--text);
    font-size: 22px;
}

.opening-hours-list {
    display: grid;
    gap: 8px;
}

.live-hours-card .opening-hours-list div,
.opening-hours .opening-hours-list div {
    display: grid;
    grid-template-columns: minmax(120px, 1fr) auto;
    gap: 18px;
}

.live-hours-card .opening-hours-list div {
    min-height: 38px;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.live-hours-card .opening-hours-list div:last-child {
    border-bottom: 0;
}

.live-hours-card .opening-hours-list span:first-child,
.opening-hours .opening-hours-list span:first-child {
    color: var(--muted);
    font-weight: 800;
}

.live-hours-card .opening-hours-list span:last-child,
.opening-hours .opening-hours-list span:last-child {
    color: var(--text);
    font-weight: 900;
    text-align: right;
}

.section-copy {
    max-width: 760px;
    margin-bottom: 30px;
}

.section-copy h2,
.event-content h2,
.reservation-copy h2 {
    margin: 0;
    font-size: clamp(34px, 5vw, 62px);
    line-height: 0.98;
    letter-spacing: 0;
    text-wrap: balance;
}

.section-copy p,
.event-content p,
.reservation-copy p {
    margin: 16px 0 0;
    color: var(--muted);
    font-size: 18px;
    line-height: 1.58;
}

.section-copy-inverted {
    margin-left: auto;
    text-align: right;
}

.prices-section {
    width: 100%;
    max-width: none;
    padding-left: max(20px, calc((100vw - 1160px) / 2));
    padding-right: max(20px, calc((100vw - 1160px) / 2));
    background:
        linear-gradient(180deg, rgba(44, 102, 247, 0.08), rgba(126, 38, 199, 0.08)),
        #020617;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.price-layout {
    display: grid;
    grid-template-columns: minmax(320px, 0.92fr) minmax(360px, 1.08fr);
    gap: 20px;
    align-items: stretch;
}

.price-image {
    min-height: 460px;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius);
}

.price-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.price-table {
    display: grid;
    gap: 10px;
}

.price-row {
    position: relative;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 6px 18px;
    align-items: center;
    padding: 18px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.055);
}

.price-row.is-highlighted {
    padding-right: 106px;
}

.price-row span {
    font-size: 18px;
    font-weight: 900;
}

.price-row small {
    color: var(--soft);
    font-weight: 700;
}

.price-row strong {
    grid-row: span 2;
    color: #ffffff;
    font-size: 30px;
}

.price-row.is-highlighted {
    background: linear-gradient(135deg, rgba(44, 102, 247, 0.26), rgba(126, 38, 199, 0.34));
    border-color: rgba(116, 150, 255, 0.64);
    box-shadow: 0 0 0 1px rgba(255, 200, 97, 0.16), 0 0 28px rgba(255, 200, 97, 0.16);
}

.price-row.is-highlighted::after {
    content: attr(data-price-state-label);
    position: absolute;
    bottom: 14px;
    right: 14px;
    padding: 5px 9px;
    border: 1px solid rgba(255, 200, 97, 0.44);
    border-radius: 999px;
    background: rgba(255, 200, 97, 0.14);
    color: var(--gold);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0;
    text-transform: uppercase;
}

.price-row.is-current-price {
    border-color: rgba(255, 200, 97, 0.76);
    box-shadow: 0 0 0 1px rgba(255, 200, 97, 0.22), 0 0 34px rgba(255, 200, 97, 0.24);
}

.extras-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-top: 18px;
}

.extras-grid div {
    display: grid;
    grid-template-columns: 38px 1fr;
    gap: 4px 12px;
    align-items: center;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.06);
}

.extras-grid svg {
    grid-row: span 2;
    color: var(--cyan);
}

.extras-grid span {
    color: var(--muted);
    font-weight: 800;
}

.extras-grid strong {
    font-size: 20px;
}

.specials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px;
}

.special-card {
    position: relative;
    min-height: 310px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 24px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.04)),
        var(--surface);
}

.special-card::after {
    content: attr(data-special-state-label);
    position: absolute;
    top: 14px;
    right: 14px;
    display: none;
    padding: 5px 9px;
    border: 1px solid rgba(255, 200, 97, 0.44);
    border-radius: 999px;
    background: rgba(255, 200, 97, 0.14);
    color: var(--gold);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0;
    text-transform: uppercase;
}

.special-card span {
    color: var(--cyan);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.special-card h3 {
    margin: 16px 0 10px;
    font-size: clamp(30px, 3vw, 44px);
    line-height: 0.98;
}

.special-card p {
    color: var(--muted);
    line-height: 1.5;
}

.special-card strong {
    color: var(--gold);
    font-size: 26px;
}

.special-card-featured {
    background:
        linear-gradient(140deg, rgba(126, 38, 199, 0.46), rgba(44, 102, 247, 0.28)),
        var(--surface-strong);
    transform: translateY(-18px);
}

.special-card-featured::after {
    display: block;
}

.special-card.is-current-special {
    border-color: rgba(255, 200, 97, 0.76);
    box-shadow: 0 0 0 1px rgba(255, 200, 97, 0.22), 0 0 34px rgba(255, 200, 97, 0.24);
}

.special-card.is-upcoming-special {
    border-color: rgba(116, 150, 255, 0.64);
    box-shadow: 0 0 0 1px rgba(100, 213, 255, 0.14), 0 0 28px rgba(44, 102, 247, 0.18);
}

.events-section {
    display: grid;
    grid-template-columns: minmax(320px, 0.95fr) minmax(340px, 1.05fr);
    gap: 28px;
    align-items: center;
}

.event-media {
    min-height: 600px;
    overflow: hidden;
    border-radius: var(--radius);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
}

.event-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.event-packages {
    display: grid;
    gap: 12px;
    margin-top: 24px;
}

.event-packages div {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 7px 20px;
    padding: 18px;
    border-radius: var(--radius);
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.06);
}

.event-packages span {
    font-weight: 900;
    font-size: 18px;
}

.event-packages small {
    color: var(--muted);
    line-height: 1.45;
}

.event-packages strong {
    grid-row: span 2;
    color: var(--gold);
    font-size: 28px;
}

.homepage-events {
    display: grid;
    gap: 14px;
    margin-top: 24px;
}

.homepage-events-head {
    display: grid;
    gap: 4px;
}

.homepage-events-head span,
.homepage-event-card time,
.legal-grid span {
    color: var(--cyan);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.homepage-events-head strong {
    font-size: 24px;
}

.homepage-events-list {
    display: grid;
    gap: 10px;
}

.homepage-event-card,
.homepage-event-empty {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.06);
}

.homepage-event-empty {
    padding: 16px;
}

.homepage-event-card {
    display: grid;
    gap: 0;
    overflow: hidden;
}

.homepage-event-banner {
    --event-banner-accent: var(--cyan);
    --event-banner-accent-2: var(--gold);
    position: relative;
    isolation: isolate;
    display: grid;
    align-content: center;
    gap: 8px;
    width: 100%;
    min-height: clamp(132px, 15vw, 184px);
    padding: clamp(18px, 3vw, 28px);
    overflow: hidden;
    background:
        radial-gradient(circle at 78% 20%, color-mix(in srgb, var(--event-banner-accent) 34%, transparent), transparent 34%),
        radial-gradient(circle at 16% 76%, color-mix(in srgb, var(--event-banner-accent-2) 22%, transparent), transparent 38%),
        linear-gradient(135deg, #00051a, #16396f 44%, #281064);
    border-bottom: 1px solid rgba(255, 255, 255, 0.13);
}

.homepage-event-banner::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(90deg, rgba(0, 5, 26, 0.46), rgba(0, 5, 26, 0.08) 56%, rgba(0, 5, 26, 0.34));
}

.homepage-event-banner span {
    color: var(--event-banner-accent-2);
    font-size: clamp(14px, 1.6vw, 20px);
    font-weight: 950;
    line-height: 1.1;
    text-transform: uppercase;
}

.homepage-event-banner strong {
    max-width: 13ch;
    color: #fff;
    font-size: clamp(36px, 5.3vw, 66px);
    font-weight: 950;
    line-height: 0.94;
    overflow-wrap: normal;
}

.homepage-event-banner small {
    color: rgba(255, 255, 255, 0.82);
    font-size: clamp(15px, 1.7vw, 22px);
    font-weight: 900;
    line-height: 1.15;
}

.homepage-event-card[data-event-visual="stadtfest"] .homepage-event-banner {
    --event-banner-accent: #64d5ff;
    --event-banner-accent-2: #ffc861;
}

.homepage-event-card[data-event-visual="season-opening"] .homepage-event-banner {
    --event-banner-accent: #ef4f9a;
    --event-banner-accent-2: #64d5ff;
    background:
        radial-gradient(circle at 78% 22%, rgba(239, 79, 154, 0.34), transparent 34%),
        radial-gradient(circle at 16% 76%, rgba(100, 213, 255, 0.22), transparent 38%),
        linear-gradient(135deg, #00051a, #20145b 44%, #72136d);
}

.homepage-event-card[data-event-visual="season-opening"] .homepage-event-banner strong br + * {
    color: #ff9ada;
}

.homepage-event-body {
    display: grid;
    gap: 7px;
    padding: 16px;
}

.homepage-event-body > strong {
    font-size: 20px;
    line-height: 1.15;
    overflow-wrap: anywhere;
}

.homepage-event-body > p {
    margin: 0;
    color: var(--muted);
    line-height: 1.45;
    overflow-wrap: anywhere;
}

.homepage-event-body > span,
.homepage-event-empty {
    color: var(--soft);
    font-weight: 800;
}

.club-note {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 16px;
    align-items: center;
    margin-top: 16px;
    padding: 14px 16px;
    border: 1px solid rgba(100, 213, 255, 0.18);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.045);
}

.club-note span {
    display: block;
    margin-bottom: 5px;
    color: var(--cyan);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0;
    text-transform: uppercase;
}

.club-note strong {
    display: block;
    font-size: 18px;
    line-height: 1.15;
}

.club-note p {
    max-width: 58ch;
    margin: 6px 0 0;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.45;
}

.club-note a {
    justify-self: end;
    padding: 9px 12px;
    border: 1px solid rgba(100, 213, 255, 0.28);
    border-radius: var(--radius);
    color: var(--cyan);
    font-size: 13px;
    font-weight: 900;
    text-decoration: none;
}

.club-note a:hover {
    border-color: rgba(255, 200, 97, 0.5);
    color: var(--gold);
}

.booking-disclosure {
    min-width: 0;
    scroll-margin-top: 142px;
}

.booking-disclosure > summary {
    display: inline-flex;
    flex-wrap: wrap;
    gap: 5px 12px;
    align-items: center;
    max-width: 100%;
    min-height: 44px;
    padding: 10px 14px;
    border: 1px solid rgba(100, 213, 255, 0.24);
    border-radius: 999px;
    background: rgba(100, 213, 255, 0.07);
    color: var(--text);
    cursor: pointer;
    user-select: none;
}

.booking-disclosure > summary::-webkit-details-marker {
    display: none;
}

.booking-disclosure > summary::after {
    content: "+";
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--cyan);
    font-weight: 950;
}

.booking-disclosure[open] > summary::after {
    content: "-";
}

.booking-disclosure > summary span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--cyan);
    font-weight: 950;
}

.reservation-disclosure {
    margin-top: 14px;
}

.reservation-disclosure[open] > summary {
    margin-bottom: 16px;
}

.reservation-disclosure:not([open]) > .reservation-form {
    display: none;
}

.celebration-disclosure:not([open]) > .celebration-panel {
    display: none;
}

.celebration-panel {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
    align-items: start;
    margin-top: 16px;
    padding: clamp(18px, 3vw, 28px);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: var(--radius);
    background: rgba(0, 5, 26, 0.3);
}

.celebration-copy {
    display: grid;
    grid-template-columns: minmax(230px, 0.34fr) minmax(0, 1fr);
    gap: 12px 26px;
    align-items: start;
    max-width: none;
    padding: clamp(16px, 2vw, 22px);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: var(--radius);
    background:
        linear-gradient(135deg, rgba(100, 213, 255, 0.08), rgba(126, 38, 199, 0.09)),
        rgba(255, 255, 255, 0.035);
}

.celebration-copy > span,
.celebration-form-head > span {
    color: var(--cyan);
    font-size: 12px;
    font-weight: 950;
    text-transform: uppercase;
}

.celebration-copy > span {
    grid-column: 1 / -1;
}

.celebration-copy h2,
.celebration-form-head h3 {
    margin: 0;
    font-size: clamp(34px, 4vw, 54px);
    line-height: 0.96;
}

.celebration-copy p,
.celebration-form-head p,
.celebration-actions p {
    margin: 0;
    color: var(--muted);
    line-height: 1.55;
}

.celebration-points {
    display: grid;
    grid-column: 1 / -1;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    margin: 2px 0 0;
    padding: 0;
    list-style: none;
}

.celebration-points li {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 10px;
    align-items: start;
    color: rgba(255, 255, 255, 0.82);
    font-weight: 800;
    line-height: 1.35;
}

.celebration-points i {
    color: var(--cyan);
}

.celebration-form {
    display: grid;
    gap: 18px;
    padding: clamp(18px, 3vw, 30px);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: var(--radius);
    background:
        linear-gradient(160deg, rgba(100, 213, 255, 0.11), rgba(126, 38, 199, 0.08)),
        rgba(4, 8, 28, 0.92);
    box-shadow: var(--shadow);
}

.celebration-form-head {
    display: grid;
    gap: 8px;
}

.celebration-form-head h3 {
    font-size: clamp(30px, 4vw, 48px);
}

.celebration-form-grid {
    align-items: start;
}

.celebration-form-grid.form-grid-split {
    grid-template-columns: minmax(220px, 0.9fr) minmax(280px, 1.1fr);
}

.celebration-options {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.celebration-options label {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: 10px;
    min-height: 48px;
    padding: 10px 12px;
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.065);
}

.celebration-options input {
    width: 18px;
    min-height: 18px;
    accent-color: var(--cyan);
}

.celebration-message {
    display: grid;
}

.celebration-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    align-items: center;
    justify-content: space-between;
}

.celebration-actions p {
    max-width: 440px;
    font-size: 14px;
    font-weight: 800;
}

.event-inquiry-wizard {
    min-width: 0;
}

.event-inquiry-wizard .reservation-step-head h3 {
    font-size: clamp(28px, 4vw, 46px);
}

.event-time-field {
    margin-top: 2px;
}

.event-day.is-event-special:not(:disabled)::after {
    background: var(--gold);
    box-shadow: 0 0 12px rgba(255, 200, 97, 0.9);
}

.event-day.is-open:not(:disabled)::after,
.event-day.is-event-special:not(:disabled)::after {
    display: none;
}

.event-day.is-event-special span {
    color: var(--gold);
}

.event-day span {
    display: none;
}

.menu-section {
    width: 100%;
    max-width: none;
    padding-left: max(20px, calc((100vw - 1160px) / 2));
    padding-right: max(20px, calc((100vw - 1160px) / 2));
    background: #050918;
    scroll-margin-top: 112px;
}

.menu-page-main {
    background: #050918;
}

.legal-page-main {
    background: #050918;
}

.menu-page .menu-section {
    padding-top: clamp(82px, 9vw, 126px);
}

.legal-page .legal-page-section {
    padding-top: clamp(82px, 9vw, 126px);
}

.menu-teaser-board {
    display: grid;
    grid-template-columns: minmax(360px, 0.68fr) minmax(260px, 0.32fr);
    gap: 18px;
    align-items: stretch;
}

.menu-teaser-board img {
    width: 100%;
    height: 100%;
    min-height: 230px;
    max-height: 300px;
    object-fit: cover;
    border-radius: var(--radius);
    border: 1px solid var(--line);
}

.menu-teaser-copy {
    display: grid;
    align-content: center;
    gap: 22px;
    min-width: 0;
    padding: clamp(20px, 3vw, 34px);
    border-radius: var(--radius);
    background:
        linear-gradient(135deg, rgba(44, 102, 247, 0.16), rgba(255, 200, 97, 0.08)),
        rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.menu-category-stack {
    display: grid;
    gap: 24px;
}

.menu-page .menu-category {
    overflow: hidden;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.026)),
        rgba(7, 12, 32, 0.94);
    box-shadow: 0 18px 60px rgba(0, 0, 0, 0.24);
}

.menu-category-banner {
    --menu-banner-image: url("../assets/homepage/food-drink-2.jpeg");
    --menu-banner-position: center;
    --menu-banner-accent: var(--gold);
    position: relative;
    isolation: isolate;
    min-height: 166px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
    padding: clamp(20px, 3vw, 30px);
    overflow: hidden;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.menu-category-banner::before,
.menu-category-banner::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -2;
}

.menu-category-banner::before {
    background-image: var(--menu-banner-image);
    background-position: var(--menu-banner-position);
    background-size: cover;
    opacity: 0.44;
    filter: saturate(1.08) contrast(1.06);
}

.menu-category-banner::after {
    z-index: -1;
    background:
        radial-gradient(circle at 88% 18%, color-mix(in srgb, var(--menu-banner-accent) 38%, transparent), transparent 28%),
        linear-gradient(90deg, rgba(0, 5, 26, 0.92), rgba(0, 5, 26, 0.58) 58%, rgba(0, 5, 26, 0.76)),
        linear-gradient(0deg, rgba(0, 5, 26, 0.82), transparent 58%);
}

.menu-category-banner-copy {
    min-width: 0;
    max-width: 720px;
}

.menu-category-banner-copy span {
    display: inline-flex;
    align-items: center;
    min-height: 24px;
    padding: 4px 9px;
    border-radius: 999px;
    color: #061026;
    background: var(--menu-banner-accent);
    font-size: 12px;
    font-weight: 1000;
    text-transform: uppercase;
}

.menu-category-banner h3 {
    margin: 10px 0 0;
    color: var(--text);
    font-size: clamp(28px, 4.2vw, 54px);
    line-height: 0.95;
}

.menu-category-banner p {
    max-width: 650px;
    margin: 12px 0 0;
    color: rgba(255, 255, 255, 0.84);
    font-size: clamp(15px, 1.55vw, 18px);
    font-weight: 750;
    line-height: 1.4;
}

.menu-category-banner svg {
    position: relative;
    flex: 0 0 auto;
    width: clamp(52px, 7vw, 92px);
    height: clamp(52px, 7vw, 92px);
    padding: clamp(12px, 1.7vw, 18px);
    border: 1px solid color-mix(in srgb, var(--menu-banner-accent) 42%, transparent);
    border-radius: 26px;
    background:
        linear-gradient(135deg, color-mix(in srgb, var(--menu-banner-accent) 19%, transparent), rgba(255, 255, 255, 0.06)),
        rgba(0, 5, 26, 0.42);
    color: color-mix(in srgb, var(--menu-banner-accent) 78%, white);
    opacity: 0.94;
    filter: drop-shadow(0 16px 30px rgba(0, 0, 0, 0.34));
}

.menu-category-banner[data-menu-banner="speisen"] {
    --menu-banner-image: url("../assets/homepage/food-drink-2.jpeg");
    --menu-banner-position: center 54%;
    --menu-banner-accent: #ffc861;
}

.menu-category-banner[data-menu-banner="pizza"] {
    --menu-banner-image: url("../assets/homepage/food-drink-2.jpeg");
    --menu-banner-position: center 46%;
    --menu-banner-accent: #ff7d4d;
}

.menu-category-banner[data-menu-banner="alkoholfrei"] {
    --menu-banner-image: url("../assets/homepage/food-drink-1.jpeg");
    --menu-banner-position: center 36%;
    --menu-banner-accent: #64d5ff;
}

.menu-category-banner[data-menu-banner="bier"] {
    --menu-banner-image: url("../assets/homepage/atmosphere.jpeg");
    --menu-banner-position: center 58%;
    --menu-banner-accent: #f5b847;
}

.menu-category-banner[data-menu-banner="cocktails"] {
    --menu-banner-image: url("../assets/homepage/food-drink-1.jpeg");
    --menu-banner-position: center 62%;
    --menu-banner-accent: #ef4f9a;
}

.menu-category-banner[data-menu-banner="longdrinks"] {
    --menu-banner-image: url("../assets/homepage/food-drink-1.jpeg");
    --menu-banner-position: center 42%;
    --menu-banner-accent: #8b5cff;
}

.menu-category-banner[data-menu-banner="wein"] {
    --menu-banner-image: url("../assets/homepage/catering.jpeg");
    --menu-banner-position: center 50%;
    --menu-banner-accent: #ff8fb7;
}

.menu-category-banner[data-menu-banner="spirituosen"] {
    --menu-banner-image: url("../assets/homepage/food-drink-1.jpeg");
    --menu-banner-position: right 48%;
    --menu-banner-accent: #9ef0ff;
}

.menu-category-banner[data-menu-banner="aktionen"] {
    --menu-banner-image: url("../assets/homepage/price-lanes.jpeg");
    --menu-banner-position: center;
    --menu-banner-accent: #d783ff;
}

.menu-page .menu-price-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: clamp(18px, 3vw, 34px);
    padding: clamp(16px, 2.4vw, 24px) clamp(18px, 3vw, 30px);
}

.menu-page .menu-action-list {
    padding: clamp(16px, 2.4vw, 24px) clamp(18px, 3vw, 30px);
}

.menu-price-list {
    display: grid;
}

.menu-price-list div {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    column-gap: 14px;
    row-gap: 3px;
    align-items: start;
    padding: 10px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.menu-price-list div:first-child {
    border-top: 0;
}

.menu-price-list span {
    min-width: 0;
    font-weight: 800;
    line-height: 1.25;
}

.menu-price-list small {
    grid-column: 1;
    color: var(--muted);
    font-size: 13px;
    font-weight: 700;
    line-height: 1.35;
}

.menu-price-list strong {
    color: var(--gold);
    font-weight: 900;
    line-height: 1.2;
    text-align: right;
    white-space: nowrap;
}

.menu-note {
    margin: 12px 0 0;
    color: var(--gold);
    font-size: 14px;
    font-weight: 900;
    line-height: 1.35;
}

.menu-action-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.menu-action-list div {
    min-width: 0;
    display: grid;
    gap: 5px;
    padding: 16px;
    border-radius: var(--radius);
    background: rgba(255, 200, 97, 0.1);
    border: 1px solid rgba(255, 200, 97, 0.24);
}

.menu-action-list span {
    color: var(--gold);
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
}

.menu-action-list strong {
    font-weight: 900;
}

.menu-action-list small {
    color: var(--muted);
    font-weight: 700;
    line-height: 1.35;
}

.menu-fineprint {
    margin: 0;
    color: var(--soft);
    font-size: 13px;
    font-weight: 700;
    line-height: 1.45;
}

.menu-page-cta {
    width: var(--content);
    margin: 0 auto;
    padding: 0 0 clamp(66px, 8vw, 110px);
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 18px;
    align-items: center;
}

.menu-page-cta span {
    display: block;
    color: var(--gold);
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
}

.menu-page-cta strong {
    display: block;
    margin-top: 6px;
    font-size: clamp(22px, 2.5vw, 34px);
    line-height: 1.2;
}

.menu-page-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: flex-end;
}

.reservation-section {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    align-items: start;
    scroll-margin-top: 142px;
}

.booking-cta-section {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
    gap: clamp(24px, 5vw, 72px);
    align-items: center;
    scroll-margin-top: 118px;
    min-height: 330px;
    padding: clamp(34px, 6vw, 76px) clamp(22px, 6vw, 78px);
    border-top: 1px solid rgba(100, 213, 255, 0.18);
    border-bottom: 1px solid rgba(255, 200, 97, 0.16);
    background:
        linear-gradient(120deg, rgba(44, 102, 247, 0.13), transparent 52%),
        rgba(10, 15, 36, 0.74);
}

.booking-cta-kicker {
    color: var(--cyan);
    font-size: 12px;
    font-weight: 950;
    text-transform: uppercase;
}

.booking-cta-section .reservation-copy {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 12px;
    align-items: start;
}

.booking-cta-section .reservation-copy h2 {
    max-width: 720px;
    margin: 0;
    font-size: 64px;
    line-height: 1;
}

.booking-cta-section .reservation-copy p {
    max-width: 680px;
    margin: 0;
    color: var(--muted);
    font-size: 20px;
    line-height: 1.5;
}

.booking-cta-actions {
    display: grid;
    gap: 12px;
}

.booking-cta-actions .button {
    justify-content: center;
    min-height: 54px;
}

.booking-cta-phone {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: 46px;
    color: var(--cyan);
    font-weight: 900;
}

.booking-cta-phone svg {
    width: 19px;
    height: 19px;
}

@media (max-width: 820px) {
    .booking-cta-section {
        grid-template-columns: 1fr;
        min-height: 0;
    }

    .booking-cta-section .reservation-copy h2 {
        font-size: 42px;
    }

    .booking-cta-section .reservation-copy p {
        font-size: 16px;
    }
}

.reservation-copy {
    position: static;
}

.reservation-copy h2 {
    scroll-margin-top: 112px;
}

.contact-mini {
    display: grid;
    gap: 12px;
    margin-top: 24px;
}

.contact-mini a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--cyan);
    font-weight: 900;
}

.reservation-form {
    display: grid;
    gap: 16px;
    padding: clamp(18px, 3vw, 30px);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: var(--radius);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.04)),
        rgba(4, 8, 28, 0.92);
    box-shadow: var(--shadow);
}

.reservation-flow-rail {
    display: grid;
    align-content: start;
    gap: 14px;
    min-width: 0;
}

.reservation-step-nav {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding-bottom: 4px;
    scrollbar-width: thin;
    scrollbar-color: rgba(114, 226, 255, 0.45) rgba(255, 255, 255, 0.08);
}

.reservation-step-nav::-webkit-scrollbar {
    height: 6px;
}

.reservation-step-nav::-webkit-scrollbar-track {
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
}

.reservation-step-nav::-webkit-scrollbar-thumb {
    border-radius: 999px;
    background: rgba(114, 226, 255, 0.45);
}

.reservation-step-button {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 4px 10px;
    align-items: center;
    flex: 0 0 min(210px, 76vw);
    min-height: 72px;
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.055);
    color: var(--text);
    text-align: left;
    cursor: pointer;
}

.reservation-step-button span {
    display: inline-flex;
    grid-row: span 2;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 999px;
    background: rgba(100, 213, 255, 0.12);
    color: var(--cyan);
    font-weight: 950;
}

.reservation-step-button strong {
    font-size: 14px;
    line-height: 1.1;
}

.reservation-step-button small {
    min-width: 0;
    overflow: hidden;
    color: var(--muted);
    font-size: 11px;
    font-weight: 800;
    line-height: 1.25;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.reservation-step-button.is-active {
    border-color: rgba(255, 200, 97, 0.72);
    background: linear-gradient(135deg, rgba(44, 102, 247, 0.22), rgba(126, 38, 199, 0.22));
    box-shadow: 0 0 0 1px rgba(255, 200, 97, 0.12);
}

.reservation-step-button.is-active span,
.reservation-step-button.is-complete span {
    background: linear-gradient(135deg, var(--blue), var(--purple));
    color: #fff;
}

.reservation-step-button:disabled {
    cursor: not-allowed;
    opacity: 0.46;
}

.reservation-step-card {
    min-width: 0;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: var(--radius);
    background: rgba(0, 5, 26, 0.36);
}

.reservation-step-deck {
    min-width: 0;
    scroll-margin-top: 118px;
}

.reservation-step {
    display: grid;
    gap: 16px;
}

.reservation-step[hidden] {
    display: none;
}

.reservation-step-head {
    display: grid;
    gap: 8px;
}

.reservation-step-head h3 {
    margin: 0;
    font-size: clamp(30px, 4vw, 48px);
    line-height: 1;
}

.reservation-step-head p {
    max-width: 760px;
    margin: 0;
    color: var(--muted);
    font-size: 16px;
    line-height: 1.45;
}

.reservation-step-card {
    display: grid;
    gap: 16px;
    padding: 16px;
}

.reservation-step-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    justify-content: space-between;
}

.reservation-step-actions > span {
    color: var(--soft);
    font-size: 13px;
    font-weight: 850;
}

.reservation-step-actions .button:disabled {
    cursor: not-allowed;
    opacity: 0.5;
    transform: none;
}

.reservation-picker {
    display: grid;
    grid-template-columns: minmax(300px, 1.05fr) minmax(260px, 0.95fr);
    gap: 16px;
    align-items: stretch;
}

.reservation-calendar,
.reservation-day-panel {
    min-width: 0;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: var(--radius);
    background: rgba(0, 5, 26, 0.36);
}

.reservation-calendar {
    padding: 16px;
}

.reservation-calendar-head {
    display: grid;
    grid-template-columns: 42px 1fr 42px;
    gap: 10px;
    align-items: center;
    margin-bottom: 14px;
}

.reservation-calendar-head strong {
    text-align: center;
    font-size: clamp(20px, 2vw, 27px);
}

.reservation-month-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.08);
    color: var(--text);
    cursor: pointer;
}

.reservation-month-button:disabled {
    cursor: not-allowed;
    opacity: 0.36;
}

.reservation-weekdays,
.reservation-calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, minmax(0, 1fr));
    gap: 6px;
}

.reservation-weekdays {
    margin-bottom: 7px;
    color: var(--soft);
    font-size: 12px;
    font-weight: 900;
    text-align: center;
    text-transform: uppercase;
}

.reservation-calendar-grid {
    min-height: 282px;
}

.reservation-day {
    position: relative;
    display: grid;
    align-content: center;
    justify-items: center;
    gap: 2px;
    min-height: 44px;
    border: 1px solid rgba(255, 255, 255, 0.11);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.06);
    color: var(--text);
    cursor: pointer;
}

.reservation-day strong {
    font-size: 15px;
    line-height: 1;
}

.reservation-day span {
    max-width: 100%;
    overflow: hidden;
    color: var(--soft);
    font-size: 10px;
    font-weight: 900;
    text-overflow: clip;
    white-space: nowrap;
}

.reservation-day.is-muted {
    opacity: 0.32;
}

.reservation-day.is-closed,
.reservation-day:disabled {
    cursor: not-allowed;
    opacity: 0.42;
}

.reservation-day.is-next-month {
    border-style: dashed;
    background: rgba(255, 255, 255, 0.04);
}

.reservation-day.is-next-month:not(:disabled) {
    opacity: 0.78;
}

.reservation-day.is-next-month:disabled {
    opacity: 0.5;
}

.reservation-day.is-open:not(:disabled)::after {
    content: "";
    width: 5px;
    height: 5px;
    border-radius: 999px;
    background: var(--cyan);
    box-shadow: 0 0 12px rgba(100, 213, 255, 0.9);
}

.reservation-day.is-selected {
    border-color: rgba(255, 200, 97, 0.8);
    background: linear-gradient(135deg, rgba(44, 102, 247, 0.34), rgba(126, 38, 199, 0.42));
    box-shadow: 0 0 0 2px rgba(255, 200, 97, 0.12), 0 16px 34px rgba(0, 0, 0, 0.28);
}

.reservation-day.has-summer-special:not(:disabled) {
    border-color: rgba(255, 200, 97, 0.78);
    background: linear-gradient(145deg, rgba(255, 200, 97, 0.2), rgba(255, 153, 51, 0.08));
    box-shadow: inset 0 0 0 1px rgba(255, 200, 97, 0.16), 0 0 16px rgba(255, 200, 97, 0.12);
}

.reservation-day.has-summer-special:not(:disabled) strong {
    color: var(--gold);
}

.reservation-day.has-summer-special.is-open:not(:disabled)::after {
    background: var(--gold);
    box-shadow: 0 0 12px rgba(255, 200, 97, 0.9);
}

.reservation-day.has-summer-special.is-selected {
    border-color: var(--gold);
    background: linear-gradient(135deg, rgba(255, 200, 97, 0.3), rgba(126, 38, 199, 0.34));
    box-shadow: 0 0 0 2px rgba(255, 200, 97, 0.2), 0 16px 34px rgba(0, 0, 0, 0.28);
}

.reservation-day-panel {
    display: grid;
    align-content: start;
    gap: 12px;
    padding: 16px;
}

.reservation-day-panel > span {
    color: var(--cyan);
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
}

.reservation-day-panel > strong {
    font-size: clamp(22px, 3vw, 32px);
    line-height: 1.08;
}

.reservation-info-list {
    display: grid;
    gap: 7px;
}

.reservation-info-list div {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 8px 12px;
    align-items: center;
    min-height: 38px;
    padding: 10px 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.06);
}

.reservation-info-list span {
    color: var(--muted);
    font-size: 13px;
    font-weight: 800;
}

.reservation-info-list strong {
    color: var(--gold);
    font-size: 15px;
    text-align: right;
}

.reservation-time-slots {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.reservation-time-slot {
    min-height: 39px;
    padding: 0 12px;
    border: 1px solid rgba(100, 213, 255, 0.24);
    border-radius: var(--radius);
    background: rgba(100, 213, 255, 0.08);
    color: var(--text);
    font-weight: 900;
    cursor: pointer;
}

.reservation-time-slot.is-selected {
    border-color: rgba(255, 200, 97, 0.8);
    background: rgba(255, 200, 97, 0.18);
    color: var(--gold);
}

.reservation-time-slots:empty {
    display: none;
}

.reservation-day-panel p {
    min-height: 20px;
    margin: 0;
    color: var(--soft);
    font-size: 13px;
    font-weight: 800;
    line-height: 1.4;
}

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

.form-grid-split {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: stretch;
}

.form-field-group {
    display: grid;
    align-content: start;
    gap: 14px;
    min-width: 0;
    padding: 14px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.045);
}

.form-field-group h4 {
    margin: 0 0 2px;
    color: var(--gold);
    font-size: 13px;
    font-weight: 950;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.form-field-group label {
    min-height: 88px;
}

label,
fieldset {
    min-width: 0;
}

label {
    display: grid;
    gap: 8px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 13px;
    font-weight: 900;
}

.field-note {
    color: var(--muted);
    font-size: 12px;
    font-weight: 750;
    line-height: 1.35;
}

.reservation-resource-field {
    display: grid;
    gap: 8px;
    min-height: 88px;
    margin: 0;
    padding: 0;
    border: 0;
}

.reservation-resource-field legend {
    padding: 0;
    color: rgba(255, 255, 255, 0.82);
    font-size: 13px;
    font-weight: 900;
}

.reservation-resource-switch {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 6px;
    padding: 5px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: var(--radius);
    background: rgba(0, 5, 26, 0.34);
}

.reservation-resource-switch label {
    min-height: 44px;
    display: grid;
    place-items: center;
    gap: 0;
    padding: 9px 8px;
    border-radius: calc(var(--radius) - 2px);
    color: var(--muted);
    font-size: 12px;
    font-weight: 900;
    text-align: center;
    cursor: pointer;
}

.reservation-resource-switch input {
    position: absolute;
    width: 1px;
    height: 1px;
    min-height: 0;
    opacity: 0;
    pointer-events: none;
}

.reservation-resource-switch label:has(input:checked) {
    color: #fff;
    background: linear-gradient(135deg, rgba(44, 102, 247, 0.7), rgba(126, 38, 199, 0.72));
    box-shadow: 0 0 0 1px rgba(255, 200, 97, 0.32);
}

.reservation-resource-switch label:focus-within {
    outline: 2px solid var(--cyan);
    outline-offset: 2px;
}

.field-error {
    color: #ff6b6b;
    font-size: 12px;
    font-weight: 900;
    line-height: 1.35;
}

.field-error[hidden] {
    display: none;
}

.booking-success-popup {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: grid;
    place-items: center;
    padding: 20px;
    background: rgba(0, 5, 26, 0.78);
    backdrop-filter: blur(18px);
}

.booking-success-dialog {
    display: grid;
    justify-items: center;
    gap: 14px;
    width: min(100%, 460px);
    padding: clamp(24px, 5vw, 34px);
    border: 1px solid rgba(255, 200, 97, 0.42);
    border-radius: 18px;
    background:
        radial-gradient(circle at top, rgba(255, 200, 97, 0.18), transparent 46%),
        linear-gradient(160deg, rgba(100, 213, 255, 0.12), rgba(126, 38, 199, 0.15)),
        #11182b;
    box-shadow: 0 28px 100px rgba(0, 0, 0, 0.48);
    text-align: center;
}

.booking-success-icon {
    display: inline-grid;
    place-items: center;
    width: 54px;
    height: 54px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--blue), var(--purple));
    color: #ffffff;
    font-size: 30px;
    font-weight: 950;
}

.booking-success-dialog h2 {
    margin: 0;
    font-size: clamp(28px, 6vw, 40px);
    line-height: 1;
}

.booking-success-dialog p {
    max-width: 34ch;
    margin: 0;
    color: var(--muted);
    font-size: 16px;
    line-height: 1.5;
}

input,
select,
textarea {
    width: 100%;
    min-height: 48px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.08);
    color: var(--text);
    padding: 12px 14px;
    outline: none;
}

input:not([type="checkbox"]):not([type="radio"]),
select {
    height: 52px;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus {
    -webkit-text-fill-color: var(--text);
    box-shadow: 0 0 0 1000px #202639 inset;
    caret-color: var(--text);
    transition: background-color 9999s ease-in-out 0s;
}

select {
    appearance: none;
    background:
        linear-gradient(45deg, transparent 50%, rgba(255, 255, 255, 0.72) 50%) calc(100% - 20px) 20px / 7px 7px no-repeat,
        linear-gradient(135deg, rgba(255, 255, 255, 0.72) 50%, transparent 50%) calc(100% - 15px) 20px / 7px 7px no-repeat,
        rgba(255, 255, 255, 0.08);
}

select option {
    background: #ffffff;
    color: #111827;
    font-weight: 800;
}

select option:checked {
    background: var(--blue);
    color: #ffffff;
}

textarea {
    min-height: 118px;
    resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
    border-color: rgba(100, 213, 255, 0.8);
    box-shadow: 0 0 0 3px rgba(44, 102, 247, 0.22);
}

input.is-invalid,
select.is-invalid,
textarea.is-invalid {
    border-color: rgba(255, 107, 107, 0.9);
    box-shadow: 0 0 0 3px rgba(255, 107, 107, 0.16);
}

.form-check-card {
    grid-template-columns: auto 1fr;
    grid-column: 1 / -1;
    align-items: center;
    gap: 12px;
    min-height: 72px;
    padding: 12px 14px;
    border: 1px solid rgba(100, 213, 255, 0.22);
    border-radius: var(--radius);
    background: rgba(100, 213, 255, 0.075);
}

.form-check-card input {
    width: 18px;
    min-height: 18px;
    accent-color: var(--blue);
}

.form-check-card span {
    display: grid;
    gap: 3px;
}

.form-check-card strong {
    color: var(--text);
    font-size: 15px;
}

.form-check-card small {
    color: var(--muted);
    line-height: 1.35;
}

fieldset {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 0;
    padding: 0;
    border: 0;
}

legend {
    width: 100%;
    margin-bottom: 2px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 13px;
    font-weight: 900;
}

fieldset label {
    display: inline-flex;
    align-items: center;
    min-height: 42px;
    padding: 0 16px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.07);
}

fieldset input,
.privacy-check input {
    width: auto;
    min-height: 0;
    accent-color: var(--blue);
}

.reservation-offers {
    display: grid;
    gap: 12px;
}

.reservation-offer-legend {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.reservation-offer-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.reservation-offers .offer-card {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: start;
    gap: 12px;
    min-height: 0;
    padding: 14px;
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.06);
    cursor: pointer;
}

.offer-card[hidden],
.offer-extra[hidden] {
    display: none;
}

.offer-card input {
    margin-top: 4px;
}

.offer-card-body {
    display: grid;
    gap: 5px;
    min-width: 0;
}

.offer-card-body strong {
    color: #fff;
    font-size: 18px;
    line-height: 1.1;
}

.offer-card-body small {
    color: var(--muted);
    font-size: 13px;
    font-weight: 750;
    line-height: 1.42;
}

.offer-price-comparison {
    display: block;
    margin-top: 5px;
    padding-top: 9px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    color: var(--gold);
    font-size: 13px;
    font-weight: 900;
    line-height: 1.38;
}

.offer-card.is-selected .offer-price-comparison {
    color: #ffe29b;
}

.offer-kicker {
    color: var(--cyan);
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
}

.offer-card.is-selected {
    border-color: rgba(255, 200, 97, 0.7);
    background: linear-gradient(135deg, rgba(44, 102, 247, 0.24), rgba(126, 38, 199, 0.28));
    box-shadow: 0 0 0 1px rgba(255, 200, 97, 0.12);
}

.reservation-offers .offer-card-featured {
    grid-column: 1 / -1;
    border-color: rgba(255, 200, 97, 0.72);
    background: linear-gradient(135deg, rgba(255, 200, 97, 0.18), rgba(255, 153, 51, 0.08));
    box-shadow: inset 0 0 0 1px rgba(255, 200, 97, 0.1), 0 12px 30px rgba(0, 0, 0, 0.2);
}

.offer-card-featured .offer-kicker,
.offer-card-featured .offer-card-body strong {
    color: var(--gold);
}

.reservation-offers .offer-card-featured.is-selected {
    border-color: var(--gold);
    background: linear-gradient(135deg, rgba(255, 200, 97, 0.3), rgba(126, 38, 199, 0.26));
    box-shadow: 0 0 0 2px rgba(255, 200, 97, 0.16), 0 12px 32px rgba(0, 0, 0, 0.24);
}

.reservation-form .is-offer-locked {
    border-color: rgba(255, 200, 97, 0.56);
    background-color: rgba(255, 200, 97, 0.1);
    cursor: not-allowed;
}

.reservation-form select.is-offer-locked {
    pointer-events: none;
}

.offer-extra {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: start;
    gap: 12px;
    padding: 14px;
    border: 1px solid rgba(100, 213, 255, 0.22);
    border-radius: var(--radius);
    background: rgba(100, 213, 255, 0.08);
}

.offer-extra span {
    display: grid;
    gap: 4px;
}

.offer-extra strong {
    color: #fff;
}

.offer-extra small {
    color: var(--muted);
    font-size: 13px;
    font-weight: 750;
}

.privacy-check {
    grid-template-columns: auto 1fr;
    align-items: start;
    gap: 10px;
    font-weight: 700;
    line-height: 1.45;
}

.form-submit {
    justify-self: start;
    cursor: pointer;
}

.form-submit:disabled {
    cursor: wait;
    opacity: 0.68;
}

.form-status {
    min-height: 22px;
    margin: 0;
    color: var(--cyan);
    font-weight: 800;
}

.form-hp {
    position: absolute;
    left: -10000px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.homepage-edit-button {
    position: fixed;
    right: max(18px, env(safe-area-inset-right));
    bottom: max(18px, env(safe-area-inset-bottom));
    z-index: 90;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    min-height: 46px;
    padding: 0 18px;
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 999px;
    background: linear-gradient(135deg, #ff8a00, #ffc861);
    color: #121622;
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.34);
    font-weight: 900;
    cursor: pointer;
}

.homepage-edit-button svg {
    width: 18px;
    height: 18px;
}

.homepage-editor-overlay {
    position: fixed;
    inset: 0;
    z-index: 120;
    display: grid;
    place-items: center;
    padding: 22px;
    background: rgba(0, 5, 26, 0.78);
    backdrop-filter: blur(18px);
}

.homepage-editor-panel {
    width: min(1180px, 100%);
    max-height: min(900px, calc(100svh - 44px));
    display: grid;
    grid-template-rows: auto auto minmax(0, 1fr);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 10px;
    background: #081026;
    box-shadow: var(--shadow);
}

.homepage-editor-head {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 18px;
    align-items: center;
    padding: 20px;
    background: linear-gradient(135deg, rgba(44, 102, 247, 0.22), rgba(255, 200, 97, 0.12));
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.homepage-editor-head span,
.homepage-editor-section-head p,
.homepage-editor-image-copy small {
    color: var(--muted);
}

.homepage-editor-head h2,
.homepage-editor-section-head h3,
.homepage-editor-image-copy h4 {
    margin: 0;
}

.homepage-editor-head p {
    margin: 5px 0 0;
    max-width: 760px;
    color: var(--muted);
    line-height: 1.45;
}

.homepage-editor-head-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 10px;
}

.homepage-editor-head-actions button,
.homepage-editor-image-actions button {
    min-height: 40px;
    border-radius: 8px;
    font-weight: 900;
    cursor: pointer;
}

.homepage-editor-ghost,
.homepage-editor-image-actions button {
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
}

.homepage-editor-save {
    border: 0;
    background: linear-gradient(135deg, #ff8a00, #ffc861);
    color: #101421;
    padding: 0 18px;
}

.homepage-editor-status {
    min-height: 36px;
    padding: 9px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--muted);
    font-size: 14px;
    font-weight: 800;
}

.homepage-editor-status[data-tone="ok"] {
    color: #9be7b6;
}

.homepage-editor-status[data-tone="error"] {
    color: #ff9a9a;
}

.homepage-editor-status[data-tone="loading"] {
    color: var(--gold);
}

.homepage-editor-body {
    overflow: auto;
    display: grid;
    gap: 18px;
    padding: 20px;
}

.homepage-editor-section {
    display: grid;
    gap: 14px;
}

.homepage-editor-section-head {
    display: grid;
    gap: 4px;
}

.homepage-editor-section-head p {
    margin: 0;
}

.homepage-editor-group {
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.04);
    overflow: hidden;
}

.homepage-editor-group summary {
    cursor: pointer;
    padding: 13px 14px;
    color: #ffffff;
    font-weight: 900;
    background: rgba(255, 255, 255, 0.05);
}

.homepage-editor-field-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    padding: 14px;
}

.homepage-editor-field {
    display: grid;
    gap: 7px;
}

.homepage-editor-field span {
    color: rgba(255, 255, 255, 0.78);
    font-size: 13px;
    font-weight: 900;
}

.homepage-editor-field input,
.homepage-editor-field textarea {
    width: 100%;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 8px;
    background: rgba(0, 0, 0, 0.22);
    color: #ffffff;
    padding: 11px 12px;
    outline: none;
}

.homepage-editor-field textarea {
    min-height: 88px;
    resize: vertical;
    line-height: 1.45;
}

.homepage-editor-field input:focus,
.homepage-editor-field textarea:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(255, 200, 97, 0.16);
}

.homepage-editor-image-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.homepage-editor-image-card {
    display: grid;
    grid-template-columns: 146px minmax(0, 1fr);
    grid-template-areas:
        "preview copy"
        "preview drop"
        "preview actions";
    gap: 12px 14px;
    align-items: start;
    padding: 14px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.045);
}

.homepage-editor-image-preview {
    grid-area: preview;
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(0, 0, 0, 0.25);
}

.homepage-editor-image-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.homepage-editor-image-copy {
    grid-area: copy;
    display: grid;
    gap: 5px;
}

.homepage-editor-image-copy p {
    margin: 0;
    color: var(--muted);
    line-height: 1.4;
}

.homepage-image-dropzone {
    grid-area: drop;
    display: grid;
    gap: 4px;
    padding: 13px;
    border: 1px dashed rgba(255, 255, 255, 0.28);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.055);
    cursor: pointer;
}

.homepage-image-dropzone input {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
}

.homepage-image-dropzone span {
    font-weight: 900;
}

.homepage-image-dropzone small {
    color: var(--muted);
}

.homepage-image-dropzone.is-drag-over {
    border-color: var(--gold);
    background: rgba(255, 200, 97, 0.13);
}

.homepage-editor-image-actions {
    grid-area: actions;
}

.homepage-editor-image-actions button {
    padding: 0 14px;
}

.homepage-editor-image-actions button:disabled {
    opacity: 0.42;
    cursor: not-allowed;
}

@media (min-width: 1100px) {
    .reservation-section {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .reservation-copy {
        position: static;
        display: grid;
        grid-template-columns: minmax(310px, 0.56fr) minmax(360px, 1fr) auto;
        gap: 18px 34px;
        align-items: end;
    }

    .reservation-copy h2,
    .reservation-copy p,
    .contact-mini {
        margin: 0;
    }

    .contact-mini {
        justify-self: end;
        min-width: 0;
        max-width: 100%;
    }

    .contact-mini a {
        min-width: 0;
        overflow-wrap: anywhere;
    }

    .reservation-form {
        grid-template-columns: minmax(210px, 0.25fr) minmax(0, 1fr);
        gap: 22px;
        align-items: start;
    }

    .event-inquiry-wizard.reservation-form {
        grid-template-columns: minmax(210px, 0.25fr) minmax(0, 1fr);
    }

    .event-inquiry-wizard .reservation-step-button {
        min-height: 66px;
        padding: 10px;
    }

    .reservation-flow-rail {
        position: sticky;
        top: 112px;
    }

    .reservation-step-nav {
        display: grid;
        overflow: visible;
        padding-bottom: 0;
    }

    .reservation-step-button {
        flex-basis: auto;
    }

    .reservation-step {
        min-height: 620px;
        align-content: start;
    }

    .reservation-offers {
        min-height: 430px;
    }

    .reservation-finish-card {
        min-height: 430px;
    }

    .reservation-final-actions {
        margin-top: auto;
    }
}

.legal-section {
    width: var(--content);
    margin: 0 auto;
    padding: clamp(50px, 6vw, 78px) 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.legal-section-compact {
    padding-top: 0;
}

.legal-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin-top: 24px;
}

.legal-grid article {
    display: grid;
    align-content: start;
    gap: 8px;
    min-height: 120px;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.055);
}

.legal-grid strong {
    color: var(--text);
    line-height: 1.45;
}

.legal-grid a {
    color: #a9b9ff;
}

.legal-detail {
    color: var(--muted);
    font-size: 14px;
    font-weight: 700;
    text-transform: none;
}

.privacy-policy {
    display: grid;
    gap: 28px;
    max-width: 980px;
}

.privacy-policy > h2,
.privacy-policy > section,
.privacy-policy > p {
    margin: 0;
}

.privacy-policy > section {
    display: grid;
    gap: 10px;
}

.privacy-policy h3 {
    margin: 0;
    color: var(--text);
    font-size: clamp(18px, 2vw, 22px);
}

.privacy-policy p {
    color: var(--muted);
    line-height: 1.7;
}

.privacy-policy a,
.privacy-check a {
    color: #a9b9ff;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.privacy-updated {
    font-weight: 800;
}

.legal-contact-section {
    display: grid;
    gap: 24px;
}

.legal-contact-form {
    width: min(100%, 980px);
    max-width: 980px;
    margin: 0 auto;
    grid-template-columns: 1fr;
    gap: 22px;
    padding: clamp(22px, 3vw, 34px);
}

.legal-contact-form .form-grid {
    grid-template-columns: repeat(3, minmax(180px, 1fr));
    gap: 18px;
}

.legal-contact-form label {
    font-size: 14px;
}

.legal-contact-form input,
.legal-contact-form select,
.legal-contact-form textarea {
    min-height: 56px;
    padding: 15px 16px;
    font-size: 16px;
}

.legal-contact-form textarea {
    min-height: 168px;
}

.form-field-wide {
    grid-column: 1 / -1;
}

.legal-contact-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    align-items: center;
    justify-content: flex-start;
}

.legal-contact-actions .button {
    min-width: 260px;
}

.legal-contact-actions .form-status {
    flex: 1 1 260px;
    margin: 0;
    text-align: left;
}

.site-footer {
    display: grid;
    grid-template-columns: 1.1fr 1fr 1fr 0.72fr;
    gap: 34px;
    padding: 52px max(20px, calc((100vw - 1160px) / 2));
    background: #000;
    border-top: 1px solid rgba(126, 38, 199, 0.46);
}

.footer-brand p {
    max-width: 280px;
    color: var(--muted);
    line-height: 1.5;
}

address,
.opening-hours,
.legal-links {
    display: grid;
    align-content: start;
    gap: 9px;
    font-style: normal;
    color: var(--muted);
}

address strong,
.opening-hours strong,
.legal-links strong {
    margin-bottom: 6px;
    color: var(--text);
    font-size: 22px;
}

address a,
.legal-links a {
    color: #a9b9ff;
    font-weight: 800;
}

.footer-social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 2px;
}

.footer-social-links a {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 6px 12px;
    border: 1px solid rgba(127, 222, 255, 0.34);
    border-radius: 999px;
    background: rgba(127, 222, 255, 0.08);
    color: var(--cyan);
    line-height: 1;
}

.is-revealed {
    animation: liftIn 520ms ease both;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

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

@media (max-width: 980px) {
    .homepage-editor-overlay {
        padding: 0;
        place-items: stretch;
    }

    .homepage-editor-panel {
        width: 100%;
        max-height: 100svh;
        border-radius: 0;
        border-left: 0;
        border-right: 0;
    }

    .homepage-editor-head {
        grid-template-columns: 1fr;
    }

    .homepage-editor-head-actions {
        justify-content: stretch;
    }

    .homepage-editor-head-actions button {
        flex: 1 1 160px;
    }

    .homepage-editor-field-grid,
    .homepage-editor-image-grid {
        grid-template-columns: 1fr;
    }

    .homepage-editor-image-card {
        grid-template-columns: 132px minmax(0, 1fr);
    }

    .site-header {
        grid-template-columns: auto auto 1fr;
    }

    .nav-toggle {
        display: inline-flex;
        justify-self: end;
        grid-column: 2;
    }

    .site-nav {
        position: fixed;
        inset: 86px 0 auto 0;
        display: none;
        padding: 22px;
        background: rgba(0, 5, 26, 0.985);
        border-bottom: 1px solid rgba(127, 222, 255, 0.24);
        box-shadow: 0 20px 48px rgba(0, 0, 0, 0.46);
        backdrop-filter: blur(24px);
        flex-direction: column;
        align-items: stretch;
    }

    body.nav-open .site-nav {
        display: flex;
    }

    .site-nav a {
        min-height: 46px;
        display: flex;
        align-items: center;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .header-cta {
        grid-column: 3;
        justify-self: end;
        padding: 0 16px;
    }

    .hero-inner,
    .summer-special-inner,
    .live-place-section,
    .live-place-grid,
    .price-layout,
    .events-section,
    .celebration-panel,
    .menu-teaser-board,
    .menu-page-cta,
    .reservation-section,
    .reservation-picker {
        grid-template-columns: 1fr;
    }

    .summer-special-inner {
        grid-template-columns: auto minmax(0, 1fr);
    }

    .summer-special-details,
    .summer-special-cta {
        grid-column: 2;
    }

    .summer-special-cta {
        width: fit-content;
    }

    .menu-teaser-board img {
        min-height: 220px;
        max-height: 300px;
    }

    .menu-page .menu-price-list {
        grid-template-columns: 1fr;
    }

    .menu-page-actions {
        justify-content: flex-start;
    }

    .hero-card,
    .celebration-copy,
    .reservation-copy {
        position: static;
    }

    .proof-strip,
    .specials-grid,
    .extras-grid,
    .legal-grid,
    .site-footer {
        grid-template-columns: 1fr 1fr;
    }

    .event-media {
        min-height: 360px;
    }

    .section-copy-inverted {
        margin-left: 0;
        text-align: left;
    }
}

@media (max-width: 680px) {
    html {
        scroll-padding-top: 84px;
    }

    .homepage-edit-button {
        right: 14px;
        bottom: 14px;
    }

    .homepage-editor-head,
    .homepage-editor-body {
        padding: 16px;
    }

    .homepage-editor-image-card {
        grid-template-columns: 1fr;
        grid-template-areas:
            "preview"
            "copy"
            "drop"
            "actions";
    }

    .homepage-editor-image-preview {
        max-height: 220px;
    }

    :root {
        --content: min(100vw - 28px, 1160px);
    }

    .site-header {
        min-height: 76px;
        grid-template-columns: 1fr auto;
        gap: 12px;
    }

    .brand-link img {
        width: 142px;
    }

    .nav-toggle {
        grid-column: 2;
        padding: 0 12px;
    }

    .nav-toggle span,
    .header-cta {
        display: none;
    }

    .site-nav {
        inset: 76px 0 auto 0;
        background: rgba(0, 5, 26, 0.99);
    }

    .hero-section {
        min-height: auto;
        justify-content: start;
    }

    .hero-inner {
        padding-top: 34px;
        padding-bottom: 10px;
        gap: 16px;
    }

    .hero-copy h1 {
        font-size: clamp(38px, 13vw, 56px);
        line-height: 0.94;
    }

    .hero-copy p {
        margin-top: 14px;
        font-size: 17px;
        line-height: 1.35;
    }

    .hero-actions {
        gap: 10px;
        margin-top: 18px;
    }

    .hero-live-status {
        display: grid;
        grid-template-columns: auto minmax(0, 1fr);
    }

    .hero-card {
        min-height: 104px;
        margin-top: 8px;
        display: flex;
        justify-content: center;
        gap: 8px;
    }

    .hero-ball-button {
        width: min(35vw, 128px);
    }

    .hero-ball-drop-count {
        align-self: center;
    }

    .hero-actions,
    .button,
    .form-submit {
        width: 100%;
    }

    .proof-strip,
    .specials-grid,
    .extras-grid,
    .legal-grid,
    .form-grid,
    .celebration-options,
    .reservation-offer-grid,
    .menu-action-list,
    .site-footer {
        grid-template-columns: 1fr;
    }

    .legal-contact-form .form-grid {
        grid-template-columns: 1fr;
    }

    .reservation-resource-switch {
        grid-template-columns: 1fr;
    }

    .celebration-copy,
    .celebration-points {
        grid-template-columns: 1fr;
    }

    .proof-strip {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        margin-bottom: 16px;
    }

    .summer-special-inner {
        min-height: 0;
        padding: 18px 0;
        grid-template-columns: 48px minmax(0, 1fr);
        gap: 12px;
    }

    .summer-special-icon {
        width: 48px;
        align-self: start;
    }

    .summer-special-icon svg {
        width: 25px;
        height: 25px;
    }

    .summer-special-copy h2 {
        font-size: 25px;
        line-height: 1.06;
    }

    .summer-special-copy p {
        font-size: 14px;
    }

    .summer-special-details {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .summer-special-cta {
        width: 100%;
        min-width: 0;
    }

    .proof-strip div {
        padding: 12px;
    }

    .proof-strip strong {
        font-size: 22px;
    }

    .proof-strip span {
        font-size: 13px;
        line-height: 1.25;
    }

    .price-table {
        order: -1;
    }

    .price-image {
        min-height: 170px;
        max-height: 220px;
    }

    .price-row,
    .event-packages div,
    .menu-price-list div {
        grid-template-columns: 1fr;
    }

    .club-note {
        grid-template-columns: 1fr;
    }

    .club-note a {
        justify-self: stretch;
        text-align: center;
    }

    .price-row.is-highlighted {
        padding-right: 18px;
    }

    .price-row.is-highlighted::after {
        position: static;
        justify-self: start;
        width: fit-content;
        margin-top: 4px;
        grid-row: auto;
    }

    .price-row strong,
    .event-packages strong,
    .menu-price-list strong {
        grid-row: auto;
        text-align: left;
        white-space: normal;
    }

    .menu-teaser-copy {
        padding: 20px;
    }

    .menu-page-actions,
    .menu-page-actions .button {
        width: 100%;
    }

    .menu-category-banner {
        min-height: 190px;
        align-items: flex-end;
    }

    .menu-category-banner svg {
        position: absolute;
        right: 18px;
        top: 18px;
        width: 48px;
        height: 48px;
        opacity: 0.68;
    }

    .special-card-featured {
        transform: none;
    }

    .live-hours-card .opening-hours-list div,
    .opening-hours .opening-hours-list div {
        grid-template-columns: 1fr;
        gap: 3px;
    }

    .live-hours-card .opening-hours-list span:last-child,
    .opening-hours .opening-hours-list span:last-child {
        text-align: left;
    }

    .reservation-section {
        gap: 12px;
        padding-top: 46px;
    }

    .reservation-copy {
        display: grid;
        gap: 10px;
    }

    .reservation-copy h2 {
        font-size: clamp(32px, 10vw, 42px);
    }

    .reservation-copy p {
        margin-top: 0;
        font-size: 15px;
        line-height: 1.4;
    }

    .contact-mini {
        grid-template-columns: 1fr;
        gap: 7px;
        margin-top: 0;
    }

    .contact-mini a {
        min-height: 34px;
        padding: 7px 10px;
        border: 1px solid rgba(100, 213, 255, 0.18);
        border-radius: 8px;
        background: rgba(100, 213, 255, 0.07);
        overflow-wrap: anywhere;
    }

    .booking-disclosure > summary {
        width: 100%;
        justify-content: space-between;
        min-height: 40px;
        padding: 8px 12px;
        border-radius: 8px;
    }

    .legal-contact-form {
        max-width: none;
        margin-left: 0;
    }

    .legal-contact-actions {
        display: grid;
    }

    .legal-contact-actions .form-status {
        text-align: left;
    }

    .reservation-form {
        padding: 14px;
        gap: 12px;
    }

    .reservation-step-button {
        flex: 0 0 min(162px, 68vw);
        min-height: 58px;
        padding: 9px;
    }

    .reservation-step-head h3 {
        font-size: 26px;
    }

    .reservation-step-head p {
        font-size: 14px;
        line-height: 1.4;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.001ms !important;
    }
}
