/* swingers club near me
   Plum and champagne. Distinct from every sibling: violet/pink, espresso/amber, slate/jade,
   burgundy/ivory, midnight/blue and the one light bone site. Also distinct from sex-club.co,
   which runs near-black with electric magenta over part of the same inventory. */

:root {
  --cream: #f3ecf2;
  --cream-dim: #a794a6;
  --plum: #140c19;
  --plum-2: #1e1326;
  --plum-3: #2a1b34;
  --edge: #3b2748;
  --wine: #a3457e;
  --wine-lit: #c9689f;
  --champ: #d9be86;
  --wa: #0c6b58;
}

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0; background: var(--plum); color: var(--cream);
  font: 16px/1.7 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(--wine-lit); text-decoration: none; }
a:hover { text-decoration: underline; }
.swc-wrap { max-width: 1180px; margin: 0 auto; padding: 0 20px; }
h1 { font-size: clamp(28px, 5.4vw, 44px); line-height: 1.08; margin: 0 0 10px; font-weight: 300; letter-spacing: -.01em; }

.swc-skip { position: absolute; left: -9999px; }
.swc-skip:focus { left: 14px; top: 14px; z-index: 99; background: var(--wine); color: #fff; padding: 10px 16px; }

/* ── bar ─────────────────────────────────────────────────────────────── */
.swc-bar { background: var(--plum-2); border-bottom: 1px solid var(--edge); }
.swc-bar-in { display: flex; align-items: center; justify-content: space-between; gap: 14px; padding-top: 12px; padding-bottom: 12px; }
.swc-id { display: inline-flex; align-items: center; gap: 10px; color: var(--cream); }
.swc-id:hover { text-decoration: none; }
.swc-id img { flex-shrink: 0; border-radius: 50%; }
.swc-id-t { display: flex; flex-direction: column; line-height: 1.05; }
.swc-id-t b { font-size: 17px; font-weight: 600; letter-spacing: .015em; }
.swc-id-t i { font-style: normal; font-size: 9.5px; letter-spacing: .32em; text-transform: uppercase; color: var(--champ); margin-top: 4px; }
.swc-cams {
  font-size: 12.5px; font-weight: 700; letter-spacing: .05em; text-transform: uppercase;
  padding: 9px 16px; border: 1px solid var(--champ); color: var(--champ); white-space: nowrap;
  border-radius: 999px;
}
.swc-cams:hover { text-decoration: none; background: var(--champ); color: var(--plum); }

/* ── open ────────────────────────────────────────────────────────────── */
.swc-open { padding: 34px 0 22px; }
.swc-open-line { color: var(--cream-dim); font-size: 17.5px; margin: 0 0 18px; }
.swc-open-line b { color: var(--cream); }
.swc-find { display: flex; align-items: center; gap: 13px; flex-wrap: wrap; }
.swc-find button {
  background: var(--wine); color: #fff; border: 0; padding: 13px 24px; border-radius: 999px;
  font: inherit; font-size: 14.5px; font-weight: 700; cursor: pointer; letter-spacing: .02em;
}
.swc-find button:hover { background: var(--wine-lit); }
.swc-find button:disabled { opacity: .55; cursor: wait; }
.swc-find span { font-size: 12.5px; color: var(--cream-dim); }
.swc-note { font-size: 14px; color: var(--cream-dim); background: var(--plum-2); border-left: 3px solid var(--wine); padding: 11px 14px; margin: 0 0 18px; }

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

/* ONE COLUMN until 1000px, and never more than two. This category holds 772 venues with only
   four cities carrying ten or more, so a visitor usually sees four to eight results. A
   four-across grid of small tiles would read as a page that failed to load. */
.swc-list { display: grid; gap: 14px; grid-template-columns: 1fr; }
@media (min-width: 1000px) { .swc-list { grid-template-columns: repeat(2, 1fr); gap: 18px; } }

/* Actions stand in a vertical rail down the right edge instead of a bar underneath. */
.swc-card { display: grid; grid-template-columns: minmax(0, 1fr) 116px; background: var(--plum-2); border: 1px solid var(--edge); border-radius: 4px; overflow: hidden; }
.swc-card:hover { border-color: var(--wine); }
.swc-card-gold { border-color: var(--champ); box-shadow: inset 0 0 0 1px rgba(217,190,134,.3); }
.swc-card-main { min-width: 0; }
.swc-card-shot { position: relative; display: block; aspect-ratio: 16 / 9; background: var(--plum-3); overflow: hidden; }
.swc-card-shot > img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.swc-card:hover .swc-card-shot > img { transform: scale(1.035); }
.swc-card-none { display: grid; place-items: center; height: 100%; font-size: 30px; color: rgba(163,69,126,.3); }
.swc-gold {
  position: absolute; top: 8px; left: 8px; background: var(--champ); color: var(--plum);
  font-size: 9.5px; font-weight: 900; letter-spacing: .12em; padding: 4px 9px; border-radius: 2px;
}
.swc-card-name { display: block; padding: 12px 14px 14px; color: var(--cream); }
.swc-card-name:hover { text-decoration: none; }
.swc-card-name b { display: block; font-size: 16.5px; font-weight: 600; line-height: 1.28; }
.swc-card-name em { display: flex; align-items: center; gap: 7px; font-style: normal; margin-top: 5px; font-size: 12.5px; color: var(--cream-dim); }
.swc-card-name em img { width: 18px; height: 13px; flex-shrink: 0; object-fit: cover; }

/* The buttons are content-sized and anchored to the bottom of the rail. Stretching two of
   them over the full card height turned "Call" into a 165px empty box. */
.swc-card-rail {
  display: flex; flex-direction: column; justify-content: center; gap: 7px;
  padding: 12px 10px; border-left: 1px solid var(--edge); background: rgba(0, 0, 0, .22);
}
.swc-act {
  flex: 0 0 auto; display: grid; place-items: center; text-align: center; padding: 11px 6px;
  border-radius: 999px; font-size: 11px; font-weight: 700; letter-spacing: .02em;
  background: var(--plum-3); color: var(--cream);
}
.swc-act:hover { text-decoration: none; filter: brightness(1.25); }
.swc-act-wa { background: var(--wa); color: #fff; }
.swc-act-go { background: var(--wine); color: #fff; }

.swc-more { text-align: center; margin: 26px 0 0; }
.swc-own { text-align: center; margin: 16px 0 0; font-size: 13px; }
.swc-own a { color: var(--cream-dim); }
.swc-btn { display: inline-block; font-weight: 700; font-size: 14px; padding: 13px 28px; border-radius: 999px; background: var(--wine); color: #fff; letter-spacing: .02em; }
.swc-btn:hover { text-decoration: none; background: var(--wine-lit); }
.swc-btn-sm { padding: 9px 18px; font-size: 12.5px; margin-top: 9px; }

/* ── reading ─────────────────────────────────────────────────────────── */
/* ONE measure for every block in here. 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. */
.swc-read { max-width: 670px; margin: 48px auto 0; }
.swc-copy { color: #ddd0dc; font-size: 16.5px; line-height: 1.78; }
.swc-copy-lead { font-size: 18.5px; color: var(--cream); border-bottom: 1px solid var(--edge); padding-bottom: 22px; margin-bottom: 26px; }
.swc-copy p { margin: 0 0 18px; }
.swc-copy h2 { font-size: clamp(21px, 3vw, 28px); margin: 38px 0 12px; color: var(--cream); font-weight: 300; line-height: 1.2; }
.swc-copy h3 { font-size: 17.5px; margin: 26px 0 8px; font-weight: 600; color: var(--cream); }
.swc-copy strong { color: #fff; font-weight: 600; }
.swc-copy a { color: var(--champ); }
.swc-copy ul, .swc-copy ol { margin: 0 0 18px; padding-left: 22px; }
.swc-copy li { margin: 0 0 6px; }

/* Question and answer as running prose behind a hanging rule: no toggles, no numbers, no
   cards, no columns. The seventh FAQ treatment in the set. */
.swc-faq { max-width: 670px; margin: 48px auto 8px; }
.swc-faq > h2 { font-size: clamp(21px, 3vw, 28px); margin: 0 0 20px; font-weight: 300; }
.swc-qa { border-left: 2px solid var(--edge); padding: 0 0 0 20px; margin: 0 0 24px; }
.swc-qa:hover { border-left-color: var(--wine); }
.swc-qa h3 { margin: 0 0 7px; font-size: 16.5px; font-weight: 600; color: var(--cream); line-height: 1.35; }
.swc-qa p { margin: 0; color: #cebdcd; font-size: 15.5px; }

/* ── club page ───────────────────────────────────────────────────────── */
.swc-crumb { font-size: 12.5px; color: var(--cream-dim); margin: 18px 0 12px; }
.swc-gold-wide { display: inline-block; background: var(--champ); color: var(--plum); font-size: 11px; font-weight: 900; letter-spacing: .12em; padding: 7px 14px; margin: 0 0 10px; border-radius: 2px; }
.swc-house-at { display: flex; align-items: center; gap: 9px; font-size: 17px; color: var(--cream-dim); margin: 0 0 16px; }
.swc-house-at b { color: var(--cream); font-size: 19px; }
.swc-house-at img { width: 22px; height: 16px; object-fit: cover; }
.swc-facts { list-style: none; display: flex; flex-wrap: wrap; padding: 0; margin: 0 0 20px; border-top: 1px solid var(--edge); border-bottom: 1px solid var(--edge); }
.swc-facts li { font-size: 12px; color: var(--cream-dim); padding: 9px 18px 9px 0; }
.swc-facts b { color: var(--cream); }

.swc-reachbar { display: flex; flex-wrap: wrap; gap: 1px; background: var(--edge); margin: 0 0 22px; border-radius: 4px; overflow: hidden; }
.swc-reach { flex: 1 1 140px; text-align: center; padding: 14px 16px; font-weight: 700; font-size: 14.5px; color: #fff; background: var(--plum-3); }
.swc-reach:hover { text-decoration: none; filter: brightness(1.15); }
.swc-reach-wa { background: var(--wa); }
.swc-reach-tel { background: var(--wine); }
.swc-reach-tg { background: #2b7fa8; }
.swc-reach-alt { background: var(--plum-3); color: var(--cream); }

/* Photographs stacked full width, one per row. A club interior is a wide room and cropping it
   into a thumbnail throws away the only thing a visitor wants to see. */
.swc-stack { display: grid; gap: 10px; margin: 0 0 24px; }
@media (min-width: 900px) { .swc-stack { grid-template-columns: repeat(2, 1fr); } }
.swc-shot { display: block; width: 100%; padding: 0; border: 0; background: var(--plum-3); cursor: zoom-in; overflow: hidden; border-radius: 4px; aspect-ratio: 3 / 2; }
.swc-shot > img { width: 100%; height: 100%; object-fit: cover; }

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

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

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

/* ── foot ────────────────────────────────────────────────────────────── */
.swc-foot { border-top: 1px solid var(--edge); margin-top: 52px; padding: 28px 0 18px; background: var(--plum-2); }
.swc-foot-1 { margin: 0 0 6px; }
.swc-foot-2 { font-size: 12.5px; color: var(--cream-dim); margin: 0 0 12px; }
.swc-foot-do { margin: 14px 0; font-size: 13.5px; }

.swc-ribbon { position: fixed; left: 0; right: 0; bottom: 0; z-index: 62; background: var(--plum-3); border-top: 1px solid var(--champ); }
.swc-ribbon a {
  display: flex; align-items: center; justify-content: center; gap: 10px; max-width: 1180px;
  margin: 0 auto; padding: 11px 20px calc(11px + env(safe-area-inset-bottom)); color: var(--cream); font-size: 13px;
}
.swc-ribbon a:hover { text-decoration: none; }
.swc-ribbon b { color: var(--champ); }
.swc-ribbon span { background: var(--wine); color: #fff; font-weight: 700; font-size: 12px; padding: 6px 14px; border-radius: 999px; }

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

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