/* strip club near me
   Midnight and electric blue. Cool and nocturnal on purpose: strip-club.co already owns red
   velvet and gold on this same inventory, and the four near-me siblings run violet/pink,
   espresso/amber, slate/jade and burgundy/ivory. Five sites over one pool must not look like
   one template (network Rule 15). */

:root {
  --paper: #eaf0f7;
  --paper-dim: #8b9bb1;
  --night: #0a0c11;
  --night-2: #11151d;
  --night-3: #1a2029;
  --rule: #262f3c;
  --volt: #3ba6ff;
  --volt-lit: #6ec1ff;
  --gold: #d8a93f;
  --wa: #0c6b58;
}

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0; background: var(--night); color: var(--paper);
  font: 16px/1.65 ui-sans-serif, system-ui, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  overflow-x: hidden; padding-bottom: 62px;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--volt-lit); text-decoration: none; }
a:hover { text-decoration: underline; }
.scn-hold { max-width: 1280px; margin: 0 auto; padding: 0 18px; }

/* A condensed uppercase display voice. No webfont: this page has to paint fast on a phone at
   two in the morning, and the system condensed stack is close enough. */
h1, .scn-display {
  font-family: "Arial Narrow", "Helvetica Neue Condensed", "Segoe UI Semibold", ui-sans-serif, sans-serif;
  text-transform: uppercase; letter-spacing: .045em; font-weight: 800;
}
h1 { font-size: clamp(30px, 6.2vw, 52px); line-height: 1; margin: 0 0 12px; }

.scn-skip { position: absolute; left: -9999px; }
.scn-skip:focus { left: 12px; top: 12px; z-index: 99; background: var(--volt); color: #04121f; padding: 10px 16px; font-weight: 700; }

/* ── top ─────────────────────────────────────────────────────────────── */
.scn-top { background: var(--night-2); border-bottom: 1px solid var(--rule); }
.scn-top-in { display: flex; align-items: center; justify-content: space-between; gap: 14px; padding-top: 11px; padding-bottom: 11px; }
.scn-logo { display: inline-flex; align-items: center; gap: 10px; color: var(--paper); }
.scn-logo:hover { text-decoration: none; }
.scn-logo img { flex-shrink: 0; }
.scn-logo-t { display: flex; flex-direction: column; line-height: 1; }
.scn-logo-t b {
  font-family: "Arial Narrow", "Segoe UI Semibold", ui-sans-serif, sans-serif;
  text-transform: uppercase; letter-spacing: .06em; font-size: 19px; font-weight: 800;
}
.scn-logo-t i { font-style: normal; font-size: 9.5px; letter-spacing: .34em; text-transform: uppercase; color: var(--volt); margin-top: 4px; }
.scn-live {
  font-size: 12.5px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase;
  padding: 9px 16px; border: 1px solid var(--volt); color: var(--volt); white-space: nowrap;
}
.scn-live:hover { text-decoration: none; background: var(--volt); color: #04121f; }

/* ── open ────────────────────────────────────────────────────────────── */
.scn-open { padding: 32px 0 20px; }
.scn-open-line { color: var(--paper-dim); font-size: 17px; margin: 0 0 18px; }
.scn-open-line b { color: var(--paper); }
.scn-locate { display: flex; align-items: center; gap: 13px; flex-wrap: wrap; }
.scn-locate button {
  background: var(--volt); color: #04121f; border: 0; padding: 13px 22px; cursor: pointer;
  font: inherit; font-size: 14px; font-weight: 800; letter-spacing: .04em; text-transform: uppercase;
}
.scn-locate button:hover { background: var(--volt-lit); }
.scn-locate button:disabled { opacity: .55; cursor: wait; }
.scn-locate span { font-size: 12.5px; color: var(--paper-dim); }
.scn-note { font-size: 14px; color: var(--paper-dim); border-left: 3px solid var(--volt); padding: 10px 14px; background: var(--night-2); margin: 0 0 18px; }

/* ── board ───────────────────────────────────────────────────────────── */
.scn-tally { display: flex; align-items: baseline; justify-content: space-between; gap: 14px; flex-wrap: wrap; margin: 0 0 14px; }
.scn-tally p { margin: 0; font-size: 13.5px; color: var(--paper-dim); }
.scn-tally b { color: var(--paper); }
.scn-tally a { font-size: 13px; font-weight: 700; }

.scn-grid { display: grid; gap: 14px; grid-template-columns: repeat(2, 1fr); }
@media (min-width: 780px)  { .scn-grid { grid-template-columns: repeat(3, 1fr); gap: 18px; } }
@media (min-width: 1140px) { .scn-grid { grid-template-columns: repeat(4, 1fr); } }

/* Name bar FIRST, then the photo, then the actions: the fifth card anatomy in the set, and
   the right one here because the club name is the brand and the photo is just the room. */
.scn-card { display: flex; flex-direction: column; background: var(--night-2); border: 1px solid var(--rule); }
.scn-card:hover { border-color: var(--volt); }
.scn-card-gold { border-color: var(--gold); box-shadow: inset 0 0 0 1px rgba(216,169,63,.3); }
.scn-card-name { display: block; padding: 11px 12px 10px; border-bottom: 1px solid var(--rule); color: var(--paper); }
.scn-card-name:hover { text-decoration: none; }
.scn-card-name b {
  display: block; font-size: 14.5px; font-weight: 800; line-height: 1.25; letter-spacing: .01em;
  /* Two lines maximum, or a long club name makes one card in a row taller than the rest. */
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
  min-height: 2.5em;
}
.scn-card-name em { display: flex; align-items: center; gap: 6px; font-style: normal; margin-top: 5px; font-size: 11.5px; color: var(--paper-dim); }
.scn-card-name em img { width: 18px; height: 13px; flex-shrink: 0; object-fit: cover; }
.scn-card-shot { position: relative; display: block; aspect-ratio: 3 / 2; background: var(--night-3); overflow: hidden; }
.scn-card-shot > img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.scn-card:hover .scn-card-shot > img { transform: scale(1.04); }
.scn-card-dark { display: grid; place-items: center; height: 100%; font-size: 26px; color: rgba(59,166,255,.22); }
.scn-gold {
  position: absolute; top: 8px; right: 8px; background: var(--gold); color: #150e02;
  font-size: 9.5px; font-weight: 900; letter-spacing: .12em; padding: 4px 8px;
}
.scn-card-do { display: flex; flex-wrap: wrap; gap: 1px; background: var(--rule); margin-top: auto; }
.scn-do {
  flex: 1 1 auto; min-width: 0; white-space: nowrap; text-align: center;
  font-size: 11.5px; font-weight: 800; letter-spacing: .03em; padding: 10px 6px;
  background: var(--night-2); color: var(--paper);
}
.scn-do:hover { text-decoration: none; background: var(--night-3); }
.scn-do-wa { background: var(--wa); color: #fff; }
.scn-do-go { background: var(--volt); color: #04121f; }
@media (max-width: 520px) {
  .scn-do { font-size: 11px; padding: 11px 4px; }
  .scn-do-go { flex: 1 0 100%; }   /* deliberate two rows rather than a truncated WhatsApp */
}

.scn-more { text-align: center; margin: 24px 0 0; }
.scn-own { text-align: center; margin: 16px 0 0; font-size: 13px; }
.scn-own a { color: var(--paper-dim); }
.scn-btn {
  display: inline-block; font-weight: 800; font-size: 14px; letter-spacing: .04em;
  text-transform: uppercase; padding: 13px 28px; background: var(--volt); color: #04121f;
}
.scn-btn:hover { text-decoration: none; background: var(--volt-lit); }
.scn-btn-sm { padding: 9px 16px; font-size: 12px; margin-top: 9px; }

/* ── reading ─────────────────────────────────────────────────────────── */
/* ONE measure for every block. Setting it per block in `ch` gives the lead and the body two
   different widths, and the left edge steps inward halfway down the page. */
.scn-read { max-width: 700px; margin: 46px auto 0; }
.scn-copy { color: #d3dceb; font-size: 16.5px; line-height: 1.76; }
.scn-copy-lead { font-size: 18.5px; color: var(--paper); border-bottom: 1px solid var(--rule); padding-bottom: 22px; margin-bottom: 26px; }
.scn-copy p { margin: 0 0 18px; }
.scn-copy h2 {
  font-family: "Arial Narrow", "Segoe UI Semibold", ui-sans-serif, sans-serif;
  text-transform: uppercase; letter-spacing: .035em; font-weight: 800;
  font-size: clamp(20px, 3vw, 27px); margin: 38px 0 12px; color: var(--paper); line-height: 1.15;
}
.scn-copy h3 { font-size: 17px; margin: 26px 0 8px; font-weight: 700; color: var(--paper); }
.scn-copy strong { color: #fff; font-weight: 700; }
.scn-copy a { color: var(--volt-lit); }
.scn-copy ul, .scn-copy ol { margin: 0 0 18px; padding-left: 22px; }
.scn-copy li { margin: 0 0 6px; }

/* A numbered open list, no toggles: the fifth FAQ treatment in the set. Every answer is on
   screen, which is what someone deciding at midnight actually wants. */
.scn-faq { margin: 48px 0 8px; }
.scn-faq > h2 {
  font-family: "Arial Narrow", "Segoe UI Semibold", ui-sans-serif, sans-serif;
  text-transform: uppercase; letter-spacing: .035em; font-weight: 800;
  font-size: clamp(20px, 3vw, 27px); margin: 0 0 18px;
}
.scn-faq-list { list-style: none; counter-reset: q; margin: 0; padding: 0; }
.scn-faq-list li { counter-increment: q; position: relative; padding: 0 0 20px 46px; margin: 0 0 20px; border-bottom: 1px solid var(--rule); }
.scn-faq-list li:last-child { border-bottom: 0; }
.scn-faq-list li::before {
  content: counter(q, decimal-leading-zero); position: absolute; left: 0; top: 1px;
  font-size: 15px; font-weight: 800; color: var(--volt); letter-spacing: .04em;
}
.scn-faq-list h3 { margin: 0 0 7px; font-size: 16.5px; font-weight: 700; color: var(--paper); line-height: 1.35; }
.scn-faq-list div { color: #c3cedf; font-size: 15.5px; }

/* ── club page ───────────────────────────────────────────────────────── */
.scn-crumb { font-size: 12.5px; color: var(--paper-dim); margin: 18px 0 12px; }
.scn-gold-wide { display: inline-block; background: var(--gold); color: #150e02; font-size: 11px; font-weight: 900; letter-spacing: .12em; padding: 7px 14px; margin: 0 0 10px; }
.scn-club-at { display: flex; align-items: center; gap: 9px; font-size: 16.5px; color: var(--paper-dim); margin: 0 0 16px; }
.scn-club-at b { color: var(--paper); font-size: 18px; }
.scn-club-at img { width: 24px; height: 17px; object-fit: cover; }
.scn-facts { list-style: none; display: flex; flex-wrap: wrap; padding: 0; margin: 0 0 18px; border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule); }
.scn-facts li { font-size: 12px; color: var(--paper-dim); padding: 9px 18px 9px 0; }
.scn-facts b { color: var(--paper); }

.scn-reachbar { display: flex; flex-wrap: wrap; gap: 1px; background: var(--rule); margin: 0 0 20px; }
.scn-reach { flex: 1 1 140px; text-align: center; padding: 14px 16px; font-weight: 800; font-size: 14px; letter-spacing: .03em; color: #fff; background: var(--night-3); }
.scn-reach:hover { text-decoration: none; filter: brightness(1.15); }
.scn-reach-wa { background: var(--wa); }
.scn-reach-tel { background: var(--volt); color: #04121f; }
.scn-reach-tg { background: #2b7fa8; }
.scn-reach-alt { background: var(--night-3); color: var(--paper); }

/* A scroll-snap filmstrip: one row, swipe through it. The siblings use grids and mosaics. */
.scn-film {
  display: flex; gap: 6px; overflow-x: auto; scroll-snap-type: x mandatory;
  margin: 0 0 22px; padding-bottom: 8px; scrollbar-width: thin;
}
.scn-cell {
  flex: 0 0 auto; width: 78vw; max-width: 360px; aspect-ratio: 4 / 3; scroll-snap-align: start;
  padding: 0; border: 0; background: var(--night-3); cursor: zoom-in; overflow: hidden;
}
@media (min-width: 780px) { .scn-cell { width: 300px; } }
.scn-cell > img { width: 100%; height: 100%; object-fit: cover; }
.scn-film::-webkit-scrollbar { height: 8px; }
.scn-film::-webkit-scrollbar-thumb { background: var(--rule); }

.scn-club-body { display: grid; gap: 26px; grid-template-columns: 1fr; }
@media (min-width: 1000px) { .scn-club-body { grid-template-columns: minmax(0, 1fr) 310px; } }
.scn-club-lead { font-size: 17.5px; margin: 0 0 14px; }
.scn-panel { border: 1px solid var(--rule); padding: 15px; margin-bottom: 13px; }
.scn-panel-h { font-size: 10.5px; letter-spacing: .16em; text-transform: uppercase; color: var(--paper-dim); font-weight: 800; margin: 0 0 10px; }
.scn-hours { margin: 0; font-size: 13.5px; }
.scn-hours > div { display: flex; justify-content: space-between; gap: 12px; padding: 6px 0; border-bottom: 1px solid var(--rule); }
.scn-hours > div:last-child { border-bottom: 0; }
.scn-hours-shut { color: var(--paper-dim); }
.scn-hours dt { text-transform: uppercase; letter-spacing: .08em; color: var(--paper-dim); font-weight: 700; }
.scn-hours dd { margin: 0; }
.scn-links { display: flex; flex-wrap: wrap; gap: 6px; margin: 0; }
.scn-links a { font-size: 12.5px; font-weight: 700; padding: 7px 12px; border: 1px solid var(--rule); color: var(--paper); }
.scn-promo { display: block; text-align: center; padding: 16px; background: linear-gradient(135deg, var(--volt), #14568f); color: #fff; }
.scn-promo b { display: block; font-size: 17px; }
.scn-promo span { font-size: 12.5px; color: rgba(255,255,255,.86); }
.scn-back { margin: 28px 0 0; }

.scn-dock { display: none; }
@media (max-width: 780px) {
  .scn-dock { display: flex; gap: 1px; background: var(--rule); position: fixed; left: 0; right: 0; bottom: 0; z-index: 64; padding-bottom: env(safe-area-inset-bottom); }
  .scn-club { padding-bottom: 72px; }
  /* A free club page carries BOTH the cams strip and this contact dock, both pinned to the
     bottom. Reaching the club wins; the sidebar still advertises the cams. */
  body:has(.scn-dock) .scn-strip { display: none; }
}

/* ── viewer ──────────────────────────────────────────────────────────── */
.scn-viewer { position: fixed; inset: 0; z-index: 95; background: rgba(4, 6, 10, .97); display: grid; place-items: center; }
.scn-viewer[hidden] { display: none; }
.scn-viewer img { max-width: 94vw; max-height: 86vh; object-fit: contain; }
.scn-viewer button { position: absolute; width: 46px; height: 46px; border: 1px solid var(--rule); background: rgba(255,255,255,.07); color: #fff; font-size: 25px; cursor: pointer; }
.scn-viewer button:hover { background: rgba(255,255,255,.18); }
.scn-viewer [data-x] { top: 16px; right: 16px; font-size: 27px; }
.scn-viewer [data-prev] { left: 14px; top: 50%; transform: translateY(-50%); }
.scn-viewer [data-next] { right: 14px; top: 50%; transform: translateY(-50%); }
.scn-viewer p { position: absolute; bottom: 18px; left: 50%; transform: translateX(-50%); margin: 0; font-size: 12.5px; color: var(--paper-dim); }

/* ── foot ────────────────────────────────────────────────────────────── */
.scn-foot { border-top: 1px solid var(--rule); margin-top: 50px; padding: 26px 0 18px; background: var(--night-2); }
.scn-foot-1 { margin: 0 0 6px; }
.scn-foot-2 { font-size: 12.5px; color: var(--paper-dim); margin: 0 0 12px; }
.scn-foot-do { margin: 14px 0; font-size: 13.5px; }

.scn-strip { position: fixed; left: 0; right: 0; bottom: 0; z-index: 62; background: var(--night-3); border-top: 1px solid var(--volt); }
.scn-strip a {
  display: flex; align-items: center; justify-content: center; gap: 10px; max-width: 1280px;
  margin: 0 auto; padding: 10px 18px calc(10px + env(safe-area-inset-bottom)); color: var(--paper); font-size: 13px;
}
.scn-strip a:hover { text-decoration: none; }
.scn-strip b { color: var(--volt); }
.scn-strip span { background: var(--volt); color: #04121f; font-weight: 800; font-size: 12px; padding: 6px 13px; letter-spacing: .03em; }

/* Keyboard focus: the browser default is invisible on this palette. */
a:focus-visible, button:focus-visible { outline: 2px solid var(--volt); outline-offset: 3px; }
.scn-cell:focus-visible, .scn-card-shot:focus-visible { outline-offset: -3px; }

@media (prefers-reduced-motion: reduce) { * { animation: none !important; transition: none !important; } }
