/* Le Baroof · rooftop nightlife brand skin, marquee-bulb signature, BNT pill buttons */
:root {
  --ink: #0C0B14; --ink-2: #070611;
  --cream: #F2E8D6; --sand: #E8DCC2;
  --bulb: #F2B864; --sunset: #E07A2C;
  --coral: #D94B6E; --cobalt: #3B5A9B;
  --port: #1A2640;
  --muted: rgba(242,232,214,.7); --rule: rgba(242,232,214,.16);
  --display: "Cabinet Grotesk", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --body: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --container: clamp(1rem, 5vw, 4rem);
}
* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body { margin: 0; background: var(--ink); color: var(--cream); font-family: var(--body); font-size: 1rem; line-height: 1.6; font-weight: 400; -webkit-font-smoothing: antialiased; }
img { display: block; max-width: 100%; height: auto; }
a { color: var(--cream); text-decoration: none; }
a:hover { color: var(--bulb); }
h1, h2, h3 { font-family: var(--display); font-weight: 800; line-height: 1.04; letter-spacing: -.02em; margin: 0; }
p { margin: 0 0 1rem; }

.kicker { display: inline-flex; align-items: center; gap: .5rem; font-family: var(--body); font-size: .74rem; font-weight: 600; letter-spacing: .22em; text-transform: uppercase; color: var(--bulb); margin: 0 0 1rem; }

/* Marquee bulb ornament · single glowing bulb */
.bulb { display: inline-block; width: 10px; height: 10px; flex-shrink: 0; border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #fff 0%, var(--bulb) 35%, #b07a2a 80%);
  box-shadow: 0 0 12px rgba(242,184,100,.65), 0 0 4px rgba(255,210,140,.85);
  animation: bulb-flicker 4.5s ease-in-out infinite;
}
@keyframes bulb-flicker { 0%, 60%, 100% { opacity: 1; } 65% { opacity: .55; } 70% { opacity: 1; } 75% { opacity: .7; } 80% { opacity: 1; } }
@media (prefers-reduced-motion: reduce) { .bulb { animation: none; } }

.nav { position: sticky; top: 0; z-index: 50; display: flex; align-items: center; justify-content: space-between; padding: .85rem var(--container); background: color-mix(in oklab, var(--ink) 92%, transparent); backdrop-filter: blur(8px); border-bottom: 1px solid var(--rule); }
.nav__mark { display: inline-flex; align-items: center; }
.nav__wordmark { font-family: var(--display); font-size: 1.3rem; font-weight: 800; letter-spacing: -.02em; color: var(--cream); }
.nav__links { display: none; gap: 1.5rem; }
.nav__links a { font-size: .9rem; font-weight: 500; }
.nav__cta { font-size: .85rem; font-weight: 600; padding: .45rem .85rem; border: 1px solid var(--cream); border-radius: 999px; }
.nav__cta:hover { background: var(--bulb); color: var(--ink); border-color: var(--bulb); }
@media (min-width: 820px) { .nav__links { display: flex; } }

.hero { position: relative; min-height: 100svh; display: grid; place-items: center; isolation: isolate; overflow: hidden; }
.hero__bg { position: absolute; inset: 0; z-index: -2; overflow: hidden; }
.hero__slide { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; filter: brightness(.6) saturate(1.08); opacity: 0; transition: opacity 1.4s ease-in-out; }
.hero__slide.is-active { opacity: 1; }
@media (prefers-reduced-motion: reduce) { .hero__slide { transition: none; } .hero__slide:not(.is-active) { display: none; } }
.hero__scrim { position: absolute; inset: 0; z-index: -1;
  background: radial-gradient(120% 80% at 50% 110%, rgba(0,0,0,.82), transparent 65%), linear-gradient(180deg, rgba(12,11,20,.32) 0%, rgba(12,11,20,.14) 40%, rgba(12,11,20,.92) 100%); }
.hero__inner { width: 100%; max-width: 92vw; display: flex; flex-direction: column; gap: 1rem; align-items: center; text-align: center; padding: 1.5rem; }
.hero__kicker { font-family: var(--body); font-size: .8rem; font-weight: 600; letter-spacing: .22em; text-transform: uppercase; color: var(--cream); opacity: .92; margin: 0; display: inline-flex; align-items: center; gap: .5rem; }

/* Signature · marquee-bulb glow on the H1 wordmark */
.hero__title { position: relative; font-size: clamp(3.5rem, 16vw, 7.5rem); line-height: .95; letter-spacing: -.04em; margin: 0; color: var(--cream); text-shadow: 0 0 28px rgba(242,184,100,.18), 0 4px 24px rgba(0,0,0,.55); }
.hero__title[data-marquee]::before, .hero__title[data-marquee]::after {
  content: ""; position: absolute; top: 50%; width: 10px; height: 10px; border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #fff 0%, var(--bulb) 38%, #b07a2a 82%);
  box-shadow: 0 0 14px rgba(242,184,100,.85), 0 0 5px rgba(255,210,140,.95);
  transform: translateY(-50%); animation: bulb-flicker 5s ease-in-out infinite;
}
.hero__title[data-marquee]::before { left: -1.6rem; }
.hero__title[data-marquee]::after { right: -1.6rem; animation-delay: 2.5s; }
@media (max-width: 480px) { .hero__title[data-marquee]::before, .hero__title[data-marquee]::after { display: none; } }

.hero__tagline { font-size: clamp(.95rem, 3.5vw, 1.2rem); letter-spacing: .15em; text-transform: uppercase; color: var(--cream); opacity: .88; margin: .35rem 0 .8rem; }
.hero__cta { display: flex; flex-direction: column; gap: .55rem; width: 100%; max-width: 22rem; }
@media (min-width: 820px) { .hero__inner { max-width: 60ch; padding: 3rem; } .hero__cta { flex-direction: row; flex-wrap: wrap; max-width: none; width: auto; justify-content: center; } }

/* BNT pill buttons */
.btn { display: inline-flex; align-items: center; justify-content: center; padding: .8rem 1.4rem; font-family: var(--body); font-size: .82rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; min-height: 44px; border-radius: 999px; border: 1.5px solid transparent; transition: transform .15s ease, background-color .2s ease, color .2s ease, border-color .2s ease, box-shadow .2s ease; white-space: nowrap; }
.btn:hover { transform: translateY(-2px); }
.btn--primary { background: var(--cream); color: var(--ink); box-shadow: 0 10px 26px -12px rgba(242,232,214,.55); }
.btn--primary:hover { background: var(--sand); color: var(--ink); }
.btn--ghost { background: transparent; color: var(--cream); border-color: rgba(242,232,214,.55); }
.btn--ghost:hover { background: var(--cream); color: var(--ink); border-color: var(--cream); }
.btn--accent { background: var(--bulb); color: var(--ink); box-shadow: 0 10px 26px -10px rgba(242,184,100,.65); }
.btn--accent:hover { filter: brightness(1.05); color: var(--ink); }
@media (min-width: 820px) { .btn { font-size: .88rem; padding: .9rem 1.7rem; } }

section { padding: 5.5rem var(--container); position: relative; }
section h2 { font-size: clamp(2rem, 6vw, 3.5rem); margin-bottom: 1.5rem; max-width: 22ch; color: var(--cream); }
section p { font-size: clamp(1rem, 2.5vw, 1.1rem); max-width: 60ch; }

.menu { background: var(--ink-2); }
.menu__head { max-width: 60ch; margin-bottom: 2.5rem; }
.menu__lede { color: var(--muted); }
.menu__grid { display: grid; grid-template-columns: 1fr; gap: 1.25rem; }
.card { position: relative; display: block; width: 100%; text-align: left; font: inherit; color: inherit; cursor: zoom-in; padding: 0; background: rgba(242,232,214,.05); border: 1px solid var(--rule); border-radius: 4px; overflow: hidden; transition: transform .15s ease, border-color .2s ease; }
.card:hover { transform: translateY(-3px); border-color: rgba(242,184,100,.5); }
.card:focus-visible { outline: 2px solid var(--bulb); outline-offset: 3px; }
.card img { width: 100%; aspect-ratio: 4/3; object-fit: cover; transition: transform .35s ease, filter .2s ease; }
.card:hover img { transform: scale(1.04); filter: saturate(1.12); }
.card__num { position: absolute; top: .8rem; right: 1rem; z-index: 1; font-family: var(--display); font-size: 1.4rem; font-weight: 800; color: var(--cream); opacity: .55; text-shadow: 0 1px 8px rgba(0,0,0,.45); pointer-events: none; font-variant-numeric: tabular-nums; }
.card__body { padding: 1.1rem 1.25rem 1.4rem; }
.card__tag { display: inline-block; font-size: .68rem; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; color: var(--bulb); margin-bottom: .5rem; }
.card h3 { font-family: var(--display); font-size: 1.4rem; font-weight: 700; margin: 0 0 .35rem; color: var(--cream); }
.card p { color: var(--muted); font-size: .95rem; margin: 0; }
@media (min-width: 700px) { .menu__grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1100px) { .menu__grid { grid-template-columns: 2fr 1fr 1fr; grid-auto-rows: minmax(0, auto); } .card--feature { grid-row: span 2; } .card--feature img { aspect-ratio: 4/5; } }

.bar { background: var(--port); }
.bar__lede { color: var(--muted); margin-bottom: 2rem; }
.bar__strip { display: grid; gap: 1rem; grid-template-columns: 1fr; margin-top: 1.5rem; }
.bar__tile { position: relative; display: block; width: 100%; padding: 0; background: transparent; border: 0; cursor: zoom-in; font: inherit; color: inherit; overflow: hidden; border-radius: 4px; transition: transform .2s ease; }
.bar__tile:hover { transform: translateY(-3px); }
.bar__tile:focus-visible { outline: 2px solid var(--bulb); outline-offset: 3px; }
.bar__tile img { width: 100%; aspect-ratio: 3/4; object-fit: cover; transition: transform .35s ease, filter .2s ease; }
.bar__tile:hover img { transform: scale(1.04); filter: saturate(1.15); }
.bar__caption { position: absolute; left: 1rem; bottom: 1rem; right: 1rem; font-family: var(--display); font-size: 1.05rem; font-weight: 700; color: var(--cream); text-shadow: 0 2px 12px rgba(0,0,0,.65); pointer-events: none; }
@media (min-width: 700px) { .bar__strip { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1000px) { .bar__strip { grid-template-columns: 1fr 1fr 1fr 1fr; } }

/* EVENTS / Soirées (Linktree replacer) */
.events { background: var(--ink); position: relative; overflow: hidden; }
.events::before { content: ""; position: absolute; inset: 0; pointer-events: none;
  background-image: radial-gradient(circle, rgba(242,184,100,.16) 1.5px, transparent 2px); background-size: 18px 18px; opacity: .35; mix-blend-mode: screen; }
.events__lede { color: var(--muted); margin-bottom: 2rem; position: relative; z-index: 1; }
.events__list { list-style: none; padding: 0; margin: 0 0 2rem; display: grid; grid-template-columns: 1fr; gap: .55rem; position: relative; z-index: 1; }
.events__list li { display: flex; align-items: baseline; justify-content: space-between; gap: 1rem; padding: 1rem 1.25rem; background: rgba(242,232,214,.04); border: 1px solid var(--rule); border-radius: 4px; transition: border-color .25s ease, background-color .25s ease; }
.events__list li:hover { border-color: rgba(242,184,100,.5); background: rgba(242,232,214,.07); }
.events__name { font-family: var(--display); font-size: 1.2rem; font-weight: 800; color: var(--cream); letter-spacing: -.01em; }
.events__desc { color: var(--muted); font-size: .92rem; text-align: right; }
.events__cta { display: flex; gap: .65rem; flex-wrap: wrap; position: relative; z-index: 1; }
@media (min-width: 700px) { .events__list { grid-template-columns: 1fr 1fr; } }

.hours { background: var(--ink-2); }
.hours__table { width: 100%; max-width: 36rem; margin-top: 1.25rem; border-collapse: collapse; font-variant-numeric: tabular-nums; }
.hours__table th, .hours__table td { padding: .9rem 0; border-bottom: 1px solid var(--rule); text-align: left; }
.hours__table th { font-family: var(--body); font-weight: 500; color: var(--cream); }
.hours__table td { color: var(--muted); }
.hours__note { color: var(--muted); font-size: .9rem; font-style: italic; margin-top: 1rem; }

.find { isolation: isolate; padding-block: 7rem; }
.find__bg { position: absolute; inset: 0; z-index: -2; }
.find__bg img { width: 100%; height: 100%; object-fit: cover; filter: brightness(.3) saturate(.95); }
.find__scrim { position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgba(12,11,20,.65), rgba(12,11,20,.94)); }
.find__grid { display: grid; gap: 2rem; margin-top: 2rem; grid-template-columns: 1fr; }
.find__map iframe { display: block; width: 100%; height: 320px; border: 1px solid var(--rule); border-radius: 4px; filter: grayscale(.18) contrast(1.05); }
.find__contact p { font-size: .95rem; }
.find__contact strong { font-family: var(--display); color: var(--cream); display: inline-block; margin-bottom: .15rem; font-size: 1rem; font-weight: 700; }
.find__contact a { color: var(--cream); border-bottom: 1px solid rgba(242,232,214,.4); }
.find__socials { display: flex; gap: .75rem; margin-top: 1.5rem; }
.find__socials a { display: inline-flex; align-items: center; justify-content: center; width: 44px; height: 44px; border: 1px solid var(--rule); border-radius: 999px; color: var(--cream); transition: background-color .2s ease, color .2s ease; }
.find__socials a:hover { background: var(--bulb); color: var(--ink); border-color: var(--bulb); }
@media (min-width: 880px) { .find__grid { grid-template-columns: 2fr 1fr; align-items: start; } .find__map iframe { height: 420px; } }

.footer { display: flex; flex-direction: column; align-items: center; gap: .35rem; padding: 3rem var(--container) 2rem; background: var(--ink-2); text-align: center; border-top: 1px solid var(--rule); }
.footer__mark { font-family: var(--display); font-size: 2rem; font-weight: 800; margin: 0 0 .25rem; color: var(--cream); letter-spacing: -.02em; }
.footer__line { color: var(--muted); font-size: .9rem; margin: 0 0 1rem; letter-spacing: .04em; }
.footer__credit { color: var(--muted); font-size: .8rem; margin: 0; }
.footer__credit a { color: var(--cream); border-bottom: 1px solid var(--rule); }

[data-reveal] { opacity: 0; transform: translateY(18px); transition: opacity .85s cubic-bezier(.16,.84,.32,1), transform .85s cubic-bezier(.16,.84,.32,1); }
[data-reveal].is-revealed { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) { [data-reveal] { opacity: 1; transform: none; transition: none; } }

.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; }
.lightbox { position: fixed; inset: 0; z-index: 9999; background: rgba(5,4,8,.96); display: flex; align-items: center; justify-content: center; padding: clamp(1rem, 4vw, 3rem); opacity: 0; pointer-events: none; transition: opacity .25s ease; }
.lightbox[aria-hidden="false"] { opacity: 1; pointer-events: auto; }
.lightbox__stage { position: relative; width: 100%; max-width: 1100px; height: 100%; display: flex; align-items: center; justify-content: center; touch-action: pan-y; }
.lightbox__stage img { max-width: 100%; max-height: 100%; width: auto; height: auto; border-radius: 6px; box-shadow: 0 18px 60px rgba(0,0,0,.55); background: var(--ink); }
.lightbox__close, .lightbox__prev, .lightbox__next { position: absolute; -webkit-appearance: none; appearance: none; width: 48px; height: 48px; border-radius: 999px; border: 1px solid rgba(242,232,214,.25); background: rgba(12,11,20,.85); color: var(--cream); font-size: 1.6rem; line-height: 1; display: inline-flex; align-items: center; justify-content: center; cursor: pointer; transition: background-color .18s ease, border-color .18s ease, transform .12s ease; z-index: 2; font-family: inherit; }
.lightbox__close:hover, .lightbox__prev:hover, .lightbox__next:hover { background: rgba(242,184,100,.22); border-color: rgba(242,184,100,.55); color: var(--cream); }
.lightbox__close:active, .lightbox__prev:active, .lightbox__next:active { transform: scale(.94); }
.lightbox__close { top: 1.25rem; right: 1.25rem; }
.lightbox__prev { left: clamp(.75rem, 2vw, 2rem); top: 50%; transform: translateY(-50%); }
.lightbox__next { right: clamp(.75rem, 2vw, 2rem); top: 50%; transform: translateY(-50%); }
.lightbox__prev:active { transform: translateY(-50%) scale(.94); }
.lightbox__next:active { transform: translateY(-50%) scale(.94); }
.lightbox__info { position: absolute; bottom: 1.25rem; left: 50%; transform: translateX(-50%); background: rgba(242,232,214,.95); color: var(--ink); padding: .45rem .9rem; border-radius: 999px; font-size: .78rem; font-weight: 500; letter-spacing: .04em; display: flex; gap: .6rem; align-items: center; white-space: nowrap; }
.lightbox__counter { color: var(--ink); font-weight: 700; }
@media (max-width: 600px) { .lightbox__close { top: .75rem; right: .75rem; width: 42px; height: 42px; } .lightbox__prev { left: .5rem; } .lightbox__next { right: .5rem; } .lightbox__info { bottom: .75rem; font-size: .72rem; } }
body.lightbox-open { overflow: hidden; }

:focus-visible { outline: 2px solid var(--bulb); outline-offset: 2px; border-radius: 2px; }
@media (prefers-reduced-motion: reduce) { *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; scroll-behavior: auto !important; } }
