:root {
    --bg: #0b0d10;
    --bg-soft: #11151a;
    --surface: #171c22;
    --surface-2: #1e252d;
    --paper: #f4f1e9;
    --paper-2: #ebe6dc;
    --text: #f6f3ec;
    --text-dark: #111419;
    --muted: #a8afb8;
    --muted-dark: #656d76;
    --accent: #f2b63f;
    --accent-strong: #ffca58;
    --blue: #3b8cff;
    --line: rgba(255, 255, 255, .12);
    --line-dark: rgba(17, 20, 25, .14);
    --radius: 22px;
    --radius-small: 14px;
    --shadow: 0 24px 70px rgba(0, 0, 0, .28);
    --container: 1200px;
    --header-height: 82px;
    color-scheme: dark;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-height) + 18px); }
body {
    margin: 0;
    min-width: 320px;
    background: var(--bg);
    color: var(--text);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 16px;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}
body.nav-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { color: inherit; }
address { font-style: normal; }
::selection { background: var(--accent); color: #151515; }

.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.section { padding: clamp(84px, 9vw, 140px) 0; background: var(--paper); color: var(--text-dark); }
.section--dark { background: var(--bg-soft); color: var(--text); }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }
.skip-link { position: fixed; z-index: 9999; top: 10px; left: 10px; transform: translateY(-160%); padding: 10px 15px; background: var(--accent); color: #111; border-radius: 8px; font-weight: 800; }
.skip-link:focus { transform: none; }

.eyebrow {
    margin: 0 0 12px;
    color: var(--accent);
    font-size: .78rem;
    font-weight: 850;
    letter-spacing: .18em;
    line-height: 1.2;
    text-transform: uppercase;
}
h1, h2, h3, h4 { margin: 0; font-weight: 850; letter-spacing: -.045em; line-height: 1.03; }
h1 { font-size: clamp(3.2rem, 8vw, 7.3rem); max-width: 1040px; }
h2 { font-size: clamp(2.35rem, 5vw, 4.65rem); }
h3 { font-size: clamp(1.75rem, 3vw, 2.85rem); }
h4 { font-size: 1.1rem; }
p { margin: 0 0 1em; }

.button {
    display: inline-flex;
    min-height: 52px;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 13px 24px;
    border: 1px solid transparent;
    border-radius: 999px;
    font-size: .92rem;
    font-weight: 800;
    line-height: 1.15;
    transition: transform .22s ease, background-color .22s ease, border-color .22s ease, color .22s ease;
}
.button:hover { transform: translateY(-2px); }
.button:focus-visible, a:focus-visible, button:focus-visible { outline: 3px solid rgba(242, 182, 63, .45); outline-offset: 3px; }
.button--accent { background: var(--accent); color: #16120b; }
.button--accent:hover { background: var(--accent-strong); }
.button--ghost { border-color: rgba(255,255,255,.35); background: rgba(12,14,17,.25); color: #fff; backdrop-filter: blur(10px); }
.button--ghost:hover { border-color: #fff; background: rgba(255,255,255,.1); }
.button--ghost-light { border-color: rgba(255,255,255,.32); color: #fff; }
.button--ghost-light:hover { background: rgba(255,255,255,.09); border-color: rgba(255,255,255,.65); }
.button--light { background: #fff; color: #111; }
.button--small { min-height: 42px; padding: 10px 18px; font-size: .82rem; }
.text-link { display: inline-flex; align-items: center; gap: 12px; margin-top: 20px; color: var(--text-dark); font-weight: 850; }
.text-link span { display: grid; width: 34px; height: 34px; place-items: center; border-radius: 50%; background: var(--accent); transition: transform .2s ease; }
.text-link:hover span { transform: translateX(4px); }

.site-header {
    position: fixed;
    z-index: 1000;
    inset: 0 0 auto;
    height: var(--header-height);
    border-bottom: 1px solid transparent;
    transition: background-color .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.site-header.is-scrolled { background: rgba(10,12,15,.9); border-color: var(--line); box-shadow: 0 12px 40px rgba(0,0,0,.18); backdrop-filter: blur(18px); }
.header-inner { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 26px; }
.brand { display: inline-flex; align-items: center; gap: 12px; flex: 0 0 auto; }
.brand__mark { display: grid; width: 46px; height: 46px; place-items: center; border: 2px solid var(--accent); border-radius: 13px 3px 13px 3px; color: var(--accent); font-size: 1.55rem; font-style: italic; font-weight: 950; line-height: 1; transform: skew(-6deg); box-shadow: inset 0 0 0 4px rgba(242,182,63,.08); }
.brand__copy { display: flex; flex-direction: column; line-height: 1; }
.brand__copy strong { font-size: 1.15rem; letter-spacing: .11em; }
.brand__copy small { margin-top: 5px; color: var(--muted); font-size: .57rem; font-weight: 750; letter-spacing: .14em; }
.main-nav { display: flex; align-items: center; gap: clamp(14px, 2vw, 28px); }
.main-nav > a:not(.button) { position: relative; color: rgba(255,255,255,.83); font-size: .86rem; font-weight: 700; }
.main-nav > a:not(.button)::after { position: absolute; right: 0; bottom: -8px; left: 0; height: 2px; background: var(--accent); content: ""; transform: scaleX(0); transform-origin: right; transition: transform .2s ease; }
.main-nav > a:hover::after, .main-nav > a.is-active::after { transform: scaleX(1); transform-origin: left; }
.nav-toggle { display: none; width: 46px; height: 46px; padding: 11px; border: 1px solid var(--line); border-radius: 12px; background: rgba(0,0,0,.2); }
.nav-toggle span:not(.sr-only) { display: block; height: 2px; margin: 5px 0; background: #fff; transition: transform .2s, opacity .2s; }

.hero { position: relative; min-height: min(940px, 100svh); overflow: hidden; background: #080a0d; }
.hero__slides, .hero__slide, .hero__veil { position: absolute; inset: 0; }
.hero__slide { margin: 0; opacity: 0; transform: scale(1.04); transition: opacity 1s ease, transform 8s linear; }
.hero__slide.is-active { opacity: 1; transform: scale(1.1); }
.hero__slide img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hero__slide figcaption { position: absolute; right: 24px; bottom: 24px; display: none; }
.hero__veil { background: linear-gradient(90deg, rgba(6,8,10,.92) 0%, rgba(6,8,10,.72) 44%, rgba(6,8,10,.25) 75%, rgba(6,8,10,.4) 100%), linear-gradient(0deg, rgba(6,8,10,.72) 0%, transparent 42%); }
.hero__content { position: relative; z-index: 2; display: flex; min-height: min(940px, 100svh); flex-direction: column; justify-content: center; padding-top: calc(var(--header-height) + 40px); padding-bottom: 110px; }
.hero__content .eyebrow { margin-bottom: 18px; }
.hero__lead { max-width: 730px; margin: 26px 0 32px; color: rgba(255,255,255,.78); font-size: clamp(1rem, 1.5vw, 1.22rem); }
.hero__actions { display: flex; flex-wrap: wrap; gap: 12px; }
.hero__facts { display: flex; flex-wrap: wrap; gap: 10px; margin: 50px 0 0; }
.hero__facts div { min-width: 125px; padding: 15px 20px; border: 1px solid var(--line); border-radius: 16px; background: rgba(10,12,15,.32); backdrop-filter: blur(14px); }
.hero__facts dt { color: var(--accent); font-size: 1.28rem; font-weight: 900; line-height: 1; }
.hero__facts dd { margin: 7px 0 0; color: rgba(255,255,255,.68); font-size: .72rem; font-weight: 750; letter-spacing: .07em; text-transform: uppercase; }
.hero__dots { position: absolute; z-index: 4; right: max(22px, calc((100vw - var(--container))/2)); bottom: 42px; display: flex; gap: 9px; }
.hero__dot { width: 32px; height: 4px; padding: 0; border: 0; border-radius: 999px; background: rgba(255,255,255,.3); cursor: pointer; transition: width .2s, background .2s; }
.hero__dot.is-active { width: 58px; background: var(--accent); }
.hero__scroll { position: absolute; z-index: 4; bottom: 32px; left: 50%; width: 28px; height: 46px; border: 1px solid rgba(255,255,255,.35); border-radius: 999px; transform: translateX(-50%); }
.hero__scroll span { position: absolute; top: 9px; left: 50%; width: 4px; height: 8px; border-radius: 999px; background: var(--accent); animation: scrollCue 1.8s infinite; }
@keyframes scrollCue { 0% { opacity: 0; transform: translate(-50%, 0); } 35% { opacity: 1; } 100% { opacity: 0; transform: translate(-50%, 18px); } }

.quickbar { position: relative; z-index: 5; border-bottom: 1px solid var(--line); background: #0c0f13; }
.quickbar__grid { display: grid; grid-template-columns: repeat(3, 1fr); }
.quickbar__grid > a { display: flex; min-height: 118px; align-items: center; gap: 16px; padding: 22px 28px; border-right: 1px solid var(--line); transition: background .2s; }
.quickbar__grid > a:first-child { border-left: 1px solid var(--line); }
.quickbar__grid > a:hover { background: rgba(255,255,255,.04); }
.quickbar__icon { display: grid; width: 44px; height: 44px; flex: 0 0 auto; place-items: center; border-radius: 50%; background: rgba(242,182,63,.12); color: var(--accent); font-size: 1.15rem; }
.quickbar small, .quickbar strong { display: block; }
.quickbar small { margin-bottom: 3px; color: var(--muted); font-size: .7rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.quickbar strong { font-size: .92rem; }

.split-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, .9fr); align-items: center; gap: clamp(45px, 8vw, 105px); }
.split-media { position: relative; min-height: 600px; }
.split-media::before { position: absolute; z-index: 0; right: -28px; bottom: -28px; width: 70%; height: 70%; border-radius: var(--radius); background: var(--accent); content: ""; }
.split-media img { position: absolute; z-index: 1; inset: 0; width: 100%; height: 100%; border-radius: var(--radius); object-fit: cover; box-shadow: var(--shadow); }
.split-media__badge { position: absolute; z-index: 2; right: -18px; bottom: 38px; display: flex; min-width: 200px; flex-direction: column; padding: 20px 24px; border-radius: 16px; background: #11151a; color: #fff; box-shadow: var(--shadow); }
.split-media__badge strong { color: var(--accent); font-size: 1.5rem; letter-spacing: .12em; }
.split-media__badge span { color: var(--muted); font-size: .78rem; }
.split-copy > .richtext { margin: 26px 0 34px; color: var(--muted-dark); font-size: 1.08rem; }
.feature-list { border-top: 1px solid var(--line-dark); }
.feature-list > div { display: grid; grid-template-columns: 44px 1fr; gap: 18px; padding: 20px 0; border-bottom: 1px solid var(--line-dark); }
.feature-list > div > span { color: var(--accent); font-size: .72rem; font-weight: 900; letter-spacing: .08em; }
.feature-list p { margin: 0; color: var(--muted-dark); }
.feature-list strong { display: block; margin-bottom: 2px; color: var(--text-dark); font-size: 1.02rem; }

.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 60px; margin-bottom: 50px; }
.section-heading > p, .section-heading > .richtext { max-width: 510px; margin: 0; color: var(--muted); }
.section-heading--center { display: block; max-width: 800px; margin-right: auto; margin-left: auto; text-align: center; }
.section-heading--center > .richtext { max-width: 720px; margin: 22px auto 0; color: var(--muted-dark); }
.activity-grid { display: grid; gap: 28px; }
.activity-card { display: grid; grid-template-columns: minmax(300px, .78fr) minmax(0, 1.22fr); min-height: 520px; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); box-shadow: var(--shadow); }
.activity-card:nth-child(even) { grid-template-columns: minmax(0, 1.22fr) minmax(300px, .78fr); }
.activity-card:nth-child(even) .activity-card__image { order: 2; }
.activity-card__image { position: relative; min-height: 420px; overflow: hidden; }
.activity-card__image::after { position: absolute; inset: 0; background: linear-gradient(0deg, rgba(6,8,10,.7), transparent 65%); content: ""; }
.activity-card__image img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s ease; }
.activity-card:hover .activity-card__image img { transform: scale(1.035); }
.activity-card__image > span { position: absolute; z-index: 2; right: 22px; bottom: 22px; left: 22px; color: #fff; font-size: .74rem; font-weight: 850; letter-spacing: .12em; text-transform: uppercase; }
.activity-card__body { padding: clamp(28px, 4.5vw, 58px); }
.activity-card__top { display: flex; align-items: start; justify-content: space-between; gap: 28px; }
.activity-card__intro { margin: 24px 0 14px; color: rgba(255,255,255,.76); font-size: 1.05rem; }
.price { display: flex; min-width: 140px; flex-direction: column; align-items: flex-end; text-align: right; }
.price small { color: var(--muted); font-size: .7rem; font-weight: 750; text-transform: uppercase; }
.price strong { margin: 4px 0; color: var(--accent); font-size: 1.42rem; line-height: 1.1; }
.price span { color: var(--muted); font-size: .68rem; }
.richtext p:last-child, .richtext ul:last-child, .richtext ol:last-child { margin-bottom: 0; }
.richtext a { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; }
.richtext ul, .richtext ol { padding-left: 1.25em; }
.richtext--compact { color: var(--muted); font-size: .93rem; }
.offer-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 28px; }
.offer { padding: 20px; border: 1px solid var(--line); border-radius: var(--radius-small); background: rgba(255,255,255,.025); }
.offer--accent { border-color: rgba(242,182,63,.4); background: rgba(242,182,63,.08); }
.offer small { display: block; color: var(--muted); font-size: .67rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.offer strong { display: block; margin: 4px 0 8px; color: var(--accent); font-size: 1.25rem; }
.offer p { margin: 0; color: var(--muted); font-size: .76rem; line-height: 1.45; }

.sports-section { position: relative; overflow: hidden; background: #0b0d10; color: #fff; }
.sports-section__background { position: absolute; inset: 0; opacity: .18; }
.sports-section__background::after { position: absolute; inset: 0; background: radial-gradient(circle at 15% 50%, rgba(59,140,255,.25), transparent 40%), linear-gradient(90deg, #0b0d10 0%, rgba(11,13,16,.82) 52%, #0b0d10 100%); content: ""; }
.sports-section__background img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.5); }
.sports-grid { position: relative; display: grid; grid-template-columns: minmax(0, .9fr) minmax(360px, .75fr); align-items: center; gap: clamp(50px, 8vw, 110px); }
.sports-copy .richtext { margin-top: 25px; color: var(--muted); }
.league-cloud { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 30px; }
.league-cloud span { padding: 8px 12px; border: 1px solid var(--line); border-radius: 999px; color: rgba(255,255,255,.72); font-size: .72rem; font-weight: 700; }
.events-panel { overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: rgba(18,22,27,.92); box-shadow: var(--shadow); backdrop-filter: blur(12px); }
.events-panel__header { display: flex; align-items: center; gap: 15px; padding: 24px 28px; border-bottom: 1px solid var(--line); }
.events-panel__header small { color: var(--muted); font-size: .67rem; font-weight: 800; letter-spacing: .11em; text-transform: uppercase; }
.events-panel__header h3 { margin-top: 4px; font-size: 1.35rem; letter-spacing: -.02em; }
.live-dot { position: relative; width: 12px; height: 12px; border-radius: 50%; background: #ff4d55; box-shadow: 0 0 0 7px rgba(255,77,85,.12); }
.live-dot::after { position: absolute; inset: -4px; border: 1px solid rgba(255,77,85,.6); border-radius: 50%; content: ""; animation: livePulse 1.7s infinite; }
@keyframes livePulse { to { opacity: 0; transform: scale(1.8); } }
.event-list { max-height: 520px; overflow: auto; }
.event-item { display: grid; grid-template-columns: 72px 1fr; gap: 18px; padding: 22px 28px; border-bottom: 1px solid var(--line); }
.event-item:last-child { border-bottom: 0; }
.event-item--featured { background: rgba(242,182,63,.06); }
.event-date { display: flex; width: 62px; min-height: 62px; flex-direction: column; align-items: center; justify-content: center; border: 1px solid var(--line); border-radius: 12px; background: #0e1115; line-height: 1; }
.event-date strong { color: var(--accent); font-size: 1.35rem; }
.event-date span { margin-top: 5px; color: var(--muted); font-size: .58rem; }
.event-copy small { color: var(--accent); font-size: .65rem; font-weight: 850; text-transform: uppercase; }
.event-copy h4 { margin: 4px 0 7px; }
.event-copy p { margin: 0; color: var(--muted); font-size: .78rem; }
.event-copy time { display: block; margin-top: 8px; color: #fff; font-size: .72rem; font-weight: 800; }
.event-link { display: inline-flex; margin-top: 10px; color: var(--accent); font-size: .72rem; font-weight: 850; text-decoration: none; }
.event-link:hover { text-decoration: underline; }
.empty-events { padding: 48px 32px; text-align: center; }
.empty-events > span { display: block; margin-bottom: 15px; font-size: 2.6rem; }
.empty-events h4 { font-size: 1.25rem; }
.empty-events p { max-width: 390px; margin: 12px auto 22px; color: var(--muted); font-size: .9rem; }

.food-showcase { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 45px; }
.food-showcase > div { min-height: 260px; padding: 34px; border-radius: var(--radius); background: var(--surface); color: #fff; box-shadow: var(--shadow); }
.food-showcase > div:nth-child(2) { background: var(--accent); color: #17120a; }
.food-showcase > div:nth-child(3) { background: #17305b; }
.food-showcase span { display: block; margin-bottom: 70px; font-size: .68rem; font-weight: 900; letter-spacing: .18em; }
.food-showcase strong { display: block; font-size: 2rem; letter-spacing: -.04em; }
.food-showcase p { margin-top: 8px; opacity: .72; }
.menu-tabs { margin-top: 45px; }
.menu-tabs__nav { display: flex; justify-content: center; gap: 8px; margin-bottom: 30px; }
.menu-tabs__nav button { padding: 11px 22px; border: 1px solid var(--line-dark); border-radius: 999px; background: transparent; color: var(--text-dark); font-weight: 800; cursor: pointer; }
.menu-tabs__nav button.is-active { border-color: var(--accent); background: var(--accent); }
.menu-panel { display: none; grid-template-columns: 1fr 1fr; gap: 1px 35px; }
.menu-panel.is-active { display: grid; }
.menu-item { display: flex; justify-content: space-between; gap: 25px; padding: 20px 0; border-bottom: 1px solid var(--line-dark); }
.menu-item h3 { font-size: 1.05rem; letter-spacing: -.015em; }
.menu-item p { margin: 4px 0 0; color: var(--muted-dark); font-size: .82rem; }
.menu-item small { display: block; margin-top: 6px; color: #95701d; font-weight: 700; }
.menu-item > strong { flex: 0 0 auto; color: #8e6712; }

.gallery-section { padding: clamp(80px, 8vw, 125px) 0 0; overflow: hidden; background: var(--paper-2); color: var(--text-dark); }
.gallery-heading { display: flex; align-items: end; justify-content: space-between; gap: 30px; margin-bottom: 40px; }
.gallery-heading > p { max-width: 430px; color: var(--muted-dark); }
.gallery-grid { display: grid; grid-template-columns: 1.25fr .75fr 1fr 1fr; height: clamp(350px, 43vw, 600px); }
.gallery-item { position: relative; overflow: hidden; padding: 0; border: 0; background: #111; cursor: zoom-in; }
.gallery-item::after { position: absolute; inset: 0; background: linear-gradient(0deg, rgba(6,8,10,.75), transparent 50%); content: ""; opacity: .75; transition: opacity .3s; }
.gallery-item:hover::after { opacity: .3; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.gallery-item:hover img { transform: scale(1.045); }
.gallery-item span { position: absolute; z-index: 2; right: 20px; bottom: 18px; left: 20px; color: #fff; font-size: .75rem; font-weight: 800; letter-spacing: .05em; }

.jobs-entry { padding-top: clamp(80px, 8vw, 120px); }
.two-card-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.info-card { min-height: 480px; padding: clamp(32px, 5vw, 64px); border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); }
.info-card--jobs { position: relative; overflow: hidden; background: var(--accent); color: #15110b; }
.info-card--jobs::after { position: absolute; right: -90px; bottom: -120px; width: 330px; height: 330px; border: 65px solid rgba(17,17,17,.08); border-radius: 50%; content: ""; }
.info-card--jobs .eyebrow { color: rgba(20,16,10,.6); }
.info-card .richtext { position: relative; z-index: 2; margin: 25px 0 32px; color: var(--muted); }
.info-card--jobs .richtext { color: rgba(20,16,10,.72); }
.richtext--checklist ul { padding: 0; list-style: none; }
.richtext--checklist li { position: relative; padding: 13px 0 13px 32px; border-bottom: 1px solid var(--line); }
.richtext--checklist li::before { position: absolute; top: 16px; left: 0; display: grid; width: 20px; height: 20px; place-items: center; border-radius: 50%; background: rgba(242,182,63,.13); color: var(--accent); content: "✓"; font-size: .68rem; font-weight: 900; }

.contact-section { position: relative; padding: clamp(90px, 10vw, 150px) 0; overflow: hidden; background: #0a0c0f; }
.contact-section::before { position: absolute; top: -260px; left: -220px; width: 600px; height: 600px; border-radius: 50%; background: radial-gradient(circle, rgba(59,140,255,.16), transparent 68%); content: ""; }
.contact-grid { position: relative; display: grid; grid-template-columns: minmax(0, .85fr) minmax(420px, 1fr); align-items: center; gap: clamp(50px, 8vw, 110px); }
.contact-copy > p:not(.eyebrow) { max-width: 540px; margin: 24px 0 30px; color: var(--muted); font-size: 1.08rem; }
.contact-actions { display: flex; flex-wrap: wrap; gap: 10px; }
.contact-copy address { display: flex; flex-direction: column; margin-top: 38px; color: var(--muted); }
.contact-copy address strong { color: #fff; }
.contact-copy address a { margin-top: 7px; color: var(--accent); }
.hours-card { padding: clamp(28px, 4vw, 48px); border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); box-shadow: var(--shadow); }
.hours-card__header { display: flex; align-items: center; gap: 16px; margin-bottom: 30px; }
.hours-card__header > span { display: grid; width: 48px; height: 48px; place-items: center; border-radius: 50%; background: rgba(242,182,63,.12); color: var(--accent); font-size: 1.3rem; }
.hours-card__header small { color: var(--muted); font-size: .68rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.hours-card__header h3 { margin-top: 4px; font-size: 1.35rem; letter-spacing: -.02em; }
.hours-columns { display: grid; grid-template-columns: 1fr 1fr; gap: 34px; }
.hours-columns h4 { margin-bottom: 12px; color: var(--accent); font-size: .78rem; letter-spacing: .08em; text-transform: uppercase; }
.hours-row { display: flex; justify-content: space-between; gap: 16px; padding: 11px 0; border-bottom: 1px solid var(--line); font-size: .8rem; }
.hours-row span { color: var(--muted); }
.hours-row strong { text-align: right; }
.payment { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-top: 26px; padding: 17px 20px; border-radius: 12px; background: rgba(255,255,255,.04); }
.payment small { color: var(--muted); }
.payment strong { text-align: right; font-size: .82rem; }
.hours-note { margin: 17px 0 0; color: var(--muted); font-size: .68rem; }

.site-footer { padding: 70px 0 25px; border-top: 1px solid var(--line); background: #07090b; }
.footer-grid { display: grid; grid-template-columns: 1.5fr repeat(3, 1fr); gap: 45px; padding-bottom: 55px; }
.brand--footer { margin-bottom: 16px; }
.footer-grid > div:first-child p { color: var(--muted); }
.footer-grid h2 { margin-bottom: 17px; color: var(--muted); font-size: .68rem; letter-spacing: .13em; text-transform: uppercase; }
.footer-grid > div { display: flex; flex-direction: column; align-items: flex-start; }
.footer-grid > div:not(:first-child) a, .footer-grid > div:not(:first-child) span { margin: 4px 0; color: rgba(255,255,255,.72); font-size: .82rem; }
.footer-grid a:hover { color: var(--accent); }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; padding-top: 22px; border-top: 1px solid var(--line); color: var(--muted); font-size: .72rem; }

.lightbox { position: fixed; z-index: 3000; inset: 0; display: grid; place-items: center; padding: 40px; background: rgba(4,5,7,.94); backdrop-filter: blur(10px); }
.lightbox[hidden] { display: none; }
.lightbox img { max-width: min(1400px, 94vw); max-height: 88vh; border-radius: 14px; box-shadow: var(--shadow); }
.lightbox__close { position: fixed; top: 18px; right: 18px; display: grid; width: 48px; height: 48px; place-items: center; border: 1px solid var(--line); border-radius: 50%; background: #15191e; color: #fff; font-size: 1.8rem; cursor: pointer; }

.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
    .reveal { opacity: 1; transform: none; }
}

.legal-page { background: var(--paper); color: var(--text-dark); }
.legal-page .site-header { position: fixed; }
.legal-main { min-height: 80vh; padding: calc(var(--header-height) + 75px) 0 100px; }
.legal-layout { display: grid; grid-template-columns: 220px minmax(0, 800px); gap: 80px; justify-content: center; }
.legal-layout aside { position: sticky; top: calc(var(--header-height) + 35px); align-self: start; }
.legal-layout nav { display: flex; flex-direction: column; border-top: 1px solid var(--line-dark); }
.legal-layout nav a { padding: 12px 0; border-bottom: 1px solid var(--line-dark); color: var(--muted-dark); font-weight: 700; }
.legal-layout nav a.is-active { color: var(--text-dark); }
.legal-content { padding: 45px; border-radius: var(--radius); background: #fff; box-shadow: 0 20px 70px rgba(20,20,20,.08); }
.legal-content h1 { margin-bottom: 40px; font-size: clamp(2.4rem, 6vw, 4.2rem); }
.legal-content .richtext h2 { margin: 32px 0 12px; font-size: 1.4rem; letter-spacing: -.02em; }
.legal-content .richtext h2:first-child { margin-top: 0; }
.legal-content .richtext { color: #4f5660; }
.legal-updated { margin-top: 45px; padding-top: 20px; border-top: 1px solid var(--line-dark); color: var(--muted-dark); font-size: .75rem; }

.setup-state { display: grid; min-height: 100vh; place-items: center; padding: 30px; background: var(--bg); }
.setup-card { width: min(680px, 100%); padding: 50px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); box-shadow: var(--shadow); }
.brand--large { margin-bottom: 30px; }
.setup-card h1 { font-size: 2.4rem; }
.setup-card p { color: var(--muted); }
.setup-card code, .setup-card pre { border-radius: 7px; background: rgba(255,255,255,.07); color: var(--accent); }
.setup-card code { padding: 2px 6px; }
.setup-card pre { overflow: auto; padding: 15px; font-size: .78rem; white-space: pre-wrap; }

@media (max-width: 1050px) {
    :root { --header-height: 74px; }
    .nav-toggle { display: block; }
    .main-nav { position: fixed; z-index: 1001; top: var(--header-height); right: 0; bottom: 0; width: min(390px, 92vw); flex-direction: column; align-items: stretch; gap: 0; padding: 28px; border-left: 1px solid var(--line); background: rgba(10,12,15,.98); box-shadow: -25px 0 70px rgba(0,0,0,.35); transform: translateX(105%); transition: transform .3s ease; }
    .main-nav.is-open { transform: none; }
    .main-nav > a:not(.button) { padding: 17px 4px; border-bottom: 1px solid var(--line); font-size: 1.05rem; }
    .main-nav .button { margin-top: 24px; }
    .nav-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
    .nav-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
    .quickbar__grid { grid-template-columns: 1fr; }
    .quickbar__grid > a, .quickbar__grid > a:first-child { min-height: 90px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); border-left: 1px solid var(--line); }
    .split-grid, .sports-grid, .contact-grid { grid-template-columns: 1fr; }
    .split-media { min-height: 520px; }
    .sports-grid { gap: 50px; }
    .activity-card, .activity-card:nth-child(even) { grid-template-columns: .8fr 1.2fr; }
    .activity-card:nth-child(even) .activity-card__image { order: 0; }
    .gallery-grid { grid-template-columns: 1fr 1fr; height: auto; }
    .gallery-item { min-height: 320px; }
    .footer-grid { grid-template-columns: 1.3fr 1fr 1fr; }
    .footer-grid > div:last-child { grid-column: 2 / -1; }
}

@media (max-width: 760px) {
    .container { width: min(calc(100% - 26px), var(--container)); }
    .brand__copy small { display: none; }
    .site-header .button--small { min-height: 38px; padding: 8px 13px; }
    .hero { min-height: 850px; }
    .hero__content { min-height: 850px; padding-top: 130px; justify-content: flex-start; }
    h1 { font-size: clamp(3rem, 15vw, 5rem); }
    .hero__lead { margin-top: 20px; }
    .hero__facts { display: grid; grid-template-columns: 1fr 1fr; width: 100%; margin-top: 35px; }
    .hero__facts div { min-width: 0; }
    .hero__dots { right: 18px; bottom: 26px; }
    .hero__scroll { display: none; }
    .section-heading, .gallery-heading { display: block; }
    .section-heading > p, .gallery-heading > p { margin-top: 20px; }
    .split-media { min-height: 410px; margin-right: 15px; }
    .split-media::before { right: -15px; bottom: -15px; }
    .split-media__badge { right: -8px; bottom: 20px; min-width: 175px; }
    .activity-card, .activity-card:nth-child(even) { grid-template-columns: 1fr; }
    .activity-card__image { min-height: 310px; }
    .activity-card__top { display: block; }
    .price { align-items: flex-start; margin-top: 18px; text-align: left; }
    .offer-grid, .food-showcase, .two-card-grid, .hours-columns, .menu-panel.is-active { grid-template-columns: 1fr; }
    .sports-grid { grid-template-columns: minmax(0, 1fr); }
    .events-panel { min-width: 0; }
    .gallery-grid { grid-template-columns: 1fr; }
    .gallery-item { min-height: 280px; }
    .info-card { min-height: 0; }
    .contact-grid { grid-template-columns: minmax(0, 1fr); }
    .hours-card { padding: 25px 20px; }
    .payment { display: block; }
    .payment strong { display: block; margin-top: 5px; text-align: left; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .footer-grid > div:first-child { grid-column: 1 / -1; }
    .footer-grid > div:last-child { grid-column: auto; }
    .footer-bottom { flex-direction: column; }
    .legal-layout { grid-template-columns: 1fr; gap: 30px; }
    .legal-layout aside { position: static; }
    .legal-layout nav { flex-direction: row; gap: 20px; }
    .legal-layout nav a { flex: 1; }
    .legal-content { padding: 28px 20px; }
}

@media (max-width: 480px) {
    .hero__actions, .contact-actions { display: grid; grid-template-columns: 1fr; width: 100%; }
    .hero__actions .button, .contact-actions .button { width: 100%; }
    .hero__facts { gap: 7px; }
    .hero__facts div { padding: 13px; }
    .event-item { grid-template-columns: 58px 1fr; gap: 12px; padding: 18px 16px; }
    .event-date { width: 54px; }
    .menu-tabs__nav { flex-wrap: wrap; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-grid > div:first-child, .footer-grid > div:last-child { grid-column: auto; }
    .lightbox { padding: 15px; }
}
