/* Shared header, burger menu and footer — identical on the QR menu (/) and the club pages.
   Source: build/chrome.css. Self-contained: every colour is defined here, nothing leaks out (sc- prefix). */
.sc-head, .sc-menu, .sc-foot {
  --sc-ink: #ffffff; --sc-dim: #c9c1d4; --sc-faint: #aaa1b8;
  --sc-line: rgba(255,255,255,.12); --sc-line2: rgba(255,255,255,.28);
  --sc-cyan: #19c3dc; --sc-cyan-text: #5fdcef; --sc-brand: #d600fe;
  --sc-tap: 44px; --sc-gut: 16px;
  font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--sc-ink);
  box-sizing: border-box;
}
.sc-head *, .sc-menu *, .sc-foot * { box-sizing: border-box; }
@media (min-width: 900px) { .sc-head, .sc-menu, .sc-foot { --sc-gut: 28px; } }

/* Header */
.sc-head { position: sticky; top: 0; z-index: 60; background: rgba(0,0,0,.94); -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px); border-bottom: 1px solid var(--sc-line); padding-top: env(safe-area-inset-top); }
.topbar .sc-head { position: static; background: transparent; -webkit-backdrop-filter: none; backdrop-filter: none; }
.sc-in { max-width: 1216px; margin: 0 auto; height: 60px; padding-inline: var(--sc-gut); display: flex; align-items: center; gap: 10px; }
@media (min-width: 900px) { .sc-in { height: 70px; gap: 16px; } }
.sc-logo { flex: none; display: flex; align-items: center; min-height: var(--sc-tap); }
.sc-logo img { display: block; height: 38px; width: auto; max-width: none; }
@media (min-width: 900px) { .sc-logo img { height: 46px; } }
.sc-nav { display: none; gap: 2px; margin-left: 8px; }
.sc-nav a { min-height: var(--sc-tap); display: inline-flex; align-items: center; padding-inline: 9px; border-radius: 8px; color: var(--sc-dim); text-decoration: none; font-size: 13px; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; white-space: nowrap; }
.sc-nav a:hover, .sc-nav a[aria-current] { color: var(--sc-ink); }
.sc-nav a[aria-current] { box-shadow: inset 0 -2px 0 var(--sc-cyan); border-radius: 0; }
.sc-right { margin-left: auto; display: flex; align-items: center; gap: 6px; }
.sc-book { display: inline-flex; align-items: center; justify-content: center; min-height: var(--sc-tap); padding-inline: 16px; border-radius: 999px; background: var(--sc-cyan); color: #000; text-decoration: none; font-weight: 800; font-size: 13px; letter-spacing: .04em; text-transform: uppercase; white-space: nowrap; }
.sc-right > .sc-book { display: none; }
.sc-langs { display: none; border: 1px solid var(--sc-line2); border-radius: 999px; overflow: hidden; }
.sc-langs a, .sc-langs button, .sc-menu-langs a, .sc-menu-langs button { min-width: var(--sc-tap); min-height: var(--sc-tap); display: grid; place-items: center; background: none; border: 0; color: var(--sc-dim); text-decoration: none; font-family: inherit; font-weight: 800; font-size: 13px; line-height: 1; letter-spacing: .06em; cursor: pointer; }
.sc-langs [aria-current="true"], .sc-langs [aria-pressed="true"], .sc-menu-langs [aria-current="true"], .sc-menu-langs [aria-pressed="true"] { background: var(--sc-ink); color: #000; }
.sc-lang-quick { min-width: var(--sc-tap); min-height: var(--sc-tap); display: grid; place-items: center; padding: 0 10px; border: 1px solid var(--sc-line2); border-radius: 999px; background: none; color: var(--sc-ink); text-decoration: none; font-family: inherit; font-weight: 800; font-size: 13px; line-height: 1; letter-spacing: .06em; cursor: pointer; }
.sc-burger { width: 48px; height: 48px; display: grid; place-items: center; background: none; border: 0; padding: 0; cursor: pointer; }
.sc-burger span, .sc-burger span::before, .sc-burger span::after { display: block; width: 28px; height: 3px; border-radius: 2px; background: var(--sc-cyan); position: relative; }
.sc-burger span::before, .sc-burger span::after { content: ""; position: absolute; left: 0; }
.sc-burger span::before { top: -9px; } .sc-burger span::after { top: 9px; }
@media (min-width: 560px) { .sc-right > .sc-book { display: inline-flex; } }
@media (min-width: 1180px) {
  .sc-nav { display: flex; }
  .sc-langs { display: flex; }
  .sc-lang-quick { display: none; }
}
.sc-head :focus-visible, .sc-menu :focus-visible, .sc-foot :focus-visible { outline: 3px solid var(--sc-cyan); outline-offset: 2px; border-radius: 8px; }

/* Burger menu (full screen, as in Stas's mock) */
.sc-menu { margin: 0; padding: 0; border: 0; width: 100%; max-width: none; height: 100%; max-height: none; background: #000; }
.sc-menu::backdrop { background: rgba(0,0,0,.85); }
.sc-menu[open] { display: flex; flex-direction: column; }
@media (prefers-reduced-motion: no-preference) { .sc-menu[open] { animation: sc-fade .2s ease-out; } }
@keyframes sc-fade { from { opacity: 0; } to { opacity: 1; } }
.sc-menu-top { flex: none; height: 60px; display: flex; align-items: center; justify-content: space-between; padding-inline: var(--sc-gut); border-bottom: 1px solid var(--sc-line); margin-top: env(safe-area-inset-top); }
.sc-menu-top img { height: 38px; width: auto; }
.sc-x { position: relative; width: 48px; height: 48px; background: none; border: 0; cursor: pointer; }
.sc-x::before, .sc-x::after { content: ""; position: absolute; left: 10px; top: 22px; width: 28px; height: 3px; border-radius: 2px; background: var(--sc-cyan); transform: rotate(45deg); }
.sc-x::after { transform: rotate(-45deg); }
.sc-menu-body { flex: 1; overflow-y: auto; display: flex; flex-direction: column; align-items: center; justify-content: safe center; gap: 20px; padding: 20px var(--sc-gut) calc(24px + env(safe-area-inset-bottom)); text-align: center; }
.sc-menu-links { list-style: none; margin: 0; padding: 0; display: grid; gap: 0; }
.sc-menu-links a { display: block; min-height: 48px; line-height: 48px; padding-inline: 24px; color: var(--sc-ink); text-decoration: none; font-size: 19px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; }
.sc-menu-links a:hover, .sc-menu-links a[aria-current] { color: var(--sc-cyan-text); }
@media (max-height: 640px) { .sc-menu-links a { min-height: 44px; line-height: 44px; font-size: 17px; } .sc-menu-body { gap: 14px; } }
.sc-book-lg { min-height: 52px; padding-inline: 28px; font-size: 14px; }
.sc-menu-langs { display: flex; gap: 4px; }
.sc-menu-langs a, .sc-menu-langs button { border-radius: 8px; }
.sc-socials { display: flex; gap: 10px; }
.sc-socials a { width: 48px; height: 48px; display: grid; place-items: center; border-radius: 50%; border: 1px solid var(--sc-line); }
.sc-socials svg { width: 22px; height: 22px; fill: var(--sc-ink); }
.sc-motion { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--sc-dim); }
.sc-switch { position: relative; width: 52px; height: 30px; border-radius: 999px; border: 1px solid var(--sc-line2); background: #1b1524; cursor: pointer; padding: 0; }
.sc-switch::after { content: ""; position: absolute; top: 3px; left: 3px; width: 22px; height: 22px; border-radius: 50%; background: var(--sc-dim); transition: transform .2s; }
.sc-switch[aria-checked="true"] { background: var(--sc-cyan); border-color: var(--sc-cyan); }
.sc-switch[aria-checked="true"]::after { transform: translateX(22px); background: #000; }

/* Footer */
.sc-foot { position: relative; background: #000; border-top: 1px solid var(--sc-line); margin-top: 56px; padding: 36px var(--sc-gut) 24px; font-size: 15px; line-height: 1.55; text-align: left; }
.sc-foot-in { max-width: 1160px; margin: 0 auto; display: grid; grid-template-columns: minmax(0, 1fr); gap: 26px; }
@media (min-width: 640px) { .sc-foot-in { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 1000px) { .sc-foot-in { grid-template-columns: 1.3fr 1fr 1fr 1fr; } }
.sc-foot-brand img { height: 48px; width: auto; display: block; }
.sc-foot-brand p { margin: 10px 0 14px; color: var(--sc-dim); }
.sc-foot h2 { margin: 0 0 10px; font-size: 12px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; color: var(--sc-faint); }
.sc-foot-col p { margin: 0 0 6px; }
.sc-foot a { color: var(--sc-ink); }
.sc-foot-phone, .sc-foot-route { display: inline-flex; align-items: center; gap: 8px; min-height: var(--sc-tap); text-decoration: none; font-weight: 700; }
.sc-foot-phone { font-size: 20px; color: var(--sc-cyan-text) !important; margin-right: 14px; }
.sc-foot-phone svg, .sc-foot-route svg { width: 18px; height: 18px; fill: currentColor; flex: none; }
.sc-hours { display: grid; grid-template-columns: auto 1fr; gap: 4px 14px; margin: 0; }
.sc-hours dt { color: var(--sc-dim); }
.sc-hours dd { margin: 0; font-variant-numeric: tabular-nums; font-weight: 700; }
.sc-foot ul { list-style: none; margin: 0; padding: 0; display: grid; }
.sc-foot ul a { display: inline-flex; align-items: center; min-height: var(--sc-tap); min-width: var(--sc-tap); text-decoration: none; color: var(--sc-dim); }
.sc-foot ul a:hover { color: var(--sc-ink); }
.sc-rights { max-width: 1160px; margin: 24px auto 0; padding-top: 16px; border-top: 1px solid var(--sc-line); font-size: 13px; color: var(--sc-faint); }
@media (prefers-reduced-motion: reduce) { .sc-menu[open], .sc-switch::after { animation: none; transition: none; } }
