/* ============ Deja Vu Showgirls — Vibrant Noir design system ============ */
:root {
  --pink: #E10080; --pink-deep: #B40065; --ink: #1A1C1C; --white: #FFFFFF;
  --surface: #F9F9F9; --gray: #E2E2E2; --gray-low: #F3F3F4; --soft: #5E5E5E;
  --wrap: 1140px;
}
* { margin: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: "Inter", Arial, sans-serif; font-size: 16px; line-height: 1.6; color: var(--ink); background: var(--surface); }
img { max-width: 100%; display: block; }
a { color: var(--pink-deep); }
.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 20px; }

h1, h2, h3, .btn { font-family: "Anybody", "Arial Black", sans-serif; font-style: italic; font-weight: 800; }
h1 { font-size: clamp(2.2rem, 6vw, 3.4rem); line-height: 1.05; letter-spacing: -0.02em; text-transform: uppercase; }
h2 { font-size: clamp(1.6rem, 3.6vw, 2.1rem); line-height: 1.1; text-transform: uppercase; margin-bottom: 18px; }
h3 { font-size: 1.25rem; line-height: 1.15; text-transform: uppercase; margin: 14px 0 10px; }
.pink { color: var(--pink); }
p { margin: 0 0 14px; }

/* ---- chips / badges ---- */
.chip { display: inline-block; font-family: "Inter", sans-serif; font-style: normal; font-weight: 700; font-size: 12px; letter-spacing: 0.08em; padding: 6px 12px; }
.chip-black { background: var(--ink); color: var(--white); }
.chip-pink { background: var(--pink); color: var(--white); }
.chips-row { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 48px; }

/* ---- buttons: sharp, hard ---- */
.btn { display: inline-block; padding: 15px 26px; font-size: 0.95rem; text-transform: uppercase; letter-spacing: 0.02em; text-decoration: none; border: 2px solid transparent; cursor: pointer; }
.btn-pink { background: var(--pink); color: var(--white); border-color: var(--pink); }
.btn-pink:hover { background: var(--pink-deep); border-color: var(--pink-deep); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn-ghost:hover { background: var(--ink); color: var(--white); }
.btn-ghost-w { background: transparent; color: var(--white); border: 2px solid var(--white); padding: 15px 26px; display: inline-block; font-family: "Anybody", sans-serif; font-style: italic; font-weight: 800; font-size: 0.95rem; text-transform: uppercase; text-decoration: none; }
.btn-ghost-w:hover { background: var(--white); color: var(--ink); }

/* ---- topbar + overlay nav ---- */
.topbar { background: var(--white); border-bottom: 2px solid var(--ink); position: sticky; top: 0; z-index: 40; }
.bar-inner { display: flex; align-items: center; justify-content: space-between; padding-top: 14px; padding-bottom: 14px; }
.brand-logo { width: 170px; height: auto; }
.menu-btn { font-family: "Anybody", sans-serif; font-style: italic; font-weight: 800; font-size: 0.95rem; background: none; border: 2px solid var(--ink); padding: 10px 18px; cursor: pointer; letter-spacing: 0.04em; }
.menu-btn:hover { background: var(--ink); color: var(--white); }
.overlay { position: fixed; inset: 0; background: var(--ink); z-index: 60; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 22px; }
.overlay a { font-family: "Anybody", sans-serif; font-style: italic; font-weight: 800; font-size: clamp(1.5rem, 5vw, 2.2rem); text-transform: uppercase; color: var(--pink); text-decoration: none; }
.overlay a:hover { color: var(--white); }
.overlay-close { position: absolute; top: 22px; right: 22px; background: none; border: 2px solid var(--white); color: var(--white); font-family: "Inter", sans-serif; font-weight: 700; font-size: 13px; letter-spacing: 0.08em; padding: 10px 16px; cursor: pointer; }
.overlay-call { border: 2px solid var(--pink); padding: 12px 24px; }

/* ---- hero ---- */
.hero { position: relative; background: var(--ink); overflow: hidden; }
.hero-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 30%; opacity: 0.55; }
.hero-copy { position: relative; z-index: 1; padding-top: 110px; padding-bottom: 110px; }
.hero-copy h1 { color: var(--white); margin: 18px 0 20px; }
.hero-lead { color: #E6E6E6; max-width: 560px; font-size: 1.05rem; margin-bottom: 30px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ---- sections / layout ---- */
.section { padding: 72px 0; }
.section-gray { background: var(--gray-low); border-top: 1px solid var(--gray); border-bottom: 1px solid var(--gray); }
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.frame { margin: 0; border: 2px solid var(--ink); }
.frame img { width: 100%; height: auto; }
.cards3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.card { background: var(--white); border: 1px solid var(--gray); padding: 28px; text-decoration: none; color: var(--ink); display: block; transition: border-color 0.15s ease; }
.card:hover { border-color: var(--ink); }
.card p { color: var(--soft); margin: 0; }
.card-img { display: block; width: calc(100% + 56px); max-width: none; height: auto; margin: -28px -28px 0; aspect-ratio: 3 / 2; object-fit: cover; }
.card-img + .chip { position: relative; top: -13px; margin-bottom: -13px; }
.card-feature { border: 2px solid var(--pink); margin-bottom: 20px; }
.card-feature:hover { border-color: var(--pink); }
.card-feature h3 { font-size: 1.6rem; }
.cta-band { background: var(--ink); color: var(--white); text-align: center; padding: 48px 24px; margin-top: 56px; }
.cta-band h2 { color: var(--white); }
.fine { font-size: 0.85rem; color: var(--soft); margin-top: 20px; }
.big-line { font-family: "Anybody", sans-serif; font-style: italic; font-weight: 700; font-size: 1.3rem; line-height: 1.3; }

/* ---- page hero (subpages) ---- */
.page-hero { background: var(--ink); color: var(--white); padding: 64px 0 56px; }
.page-hero h1 { color: var(--white); }
.crumb { font-size: 12px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: #9A9A9A; margin-bottom: 14px; }
.crumb a { color: #C9C9C9; text-decoration: none; }
.crumb a:hover { color: var(--white); }
.sub { color: #D6D6D6; margin-top: 12px; max-width: 520px; }

/* ---- gallery ---- */
.gal-strip { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.gal-strip img, .gal-grid img { width: 100%; height: 240px; object-fit: cover; border: 2px solid var(--ink); }
.gal-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.gal-grid img { height: 300px; }

/* ---- hours table ---- */
.hours-table { border-collapse: collapse; width: 100%; max-width: 340px; font-size: 0.92rem; }
.hours-table th, .hours-table td { text-align: left; padding: 7px 0; border-bottom: 1px solid rgba(255,255,255,0.18); }
.hours-table th { font-weight: 500; padding-right: 24px; }
.hours-table td { font-weight: 700; text-align: right; }
.hours-table tr.closed td { color: #9A9A9A; font-weight: 500; }
.dark-rows th, .dark-rows td { border-bottom: 1px solid var(--gray); }
.dark-rows tr.closed td { color: var(--soft); }

/* ---- doc pages ---- */
.doc { max-width: 760px; }
.doc h3 { margin-top: 28px; }
.doc p { color: #3A3C3C; }

/* ---- footer ---- */
.footer { background: var(--ink); color: #D9D9D9; padding: 64px 0 28px; border-top: 4px solid var(--pink); }
.foot-grid { display: grid; grid-template-columns: 1.2fr 1fr 1fr; gap: 44px; }
.foot-logo { width: 220px; height: auto; margin-bottom: 14px; }
.foot-tag { font-style: italic; color: #BFBFBF; }
.foot-addr { margin: 14px 0 20px; line-height: 1.7; }
.foot-cta { margin-bottom: 12px; }
.foot-h { font-family: "Anybody", sans-serif; font-style: italic; font-weight: 800; font-size: 1.05rem; text-transform: uppercase; color: var(--white); margin-bottom: 16px; }
.foot-link { display: block; color: #D9D9D9; text-decoration: none; padding: 5px 0; }
.foot-link:hover { color: var(--pink); }
.foot-legal { border-top: 1px solid rgba(255,255,255,0.18); margin-top: 48px; padding-top: 22px; text-align: center; font-size: 0.85rem; color: #B8B8B8; }
.foot-legal nav { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px 22px; margin-bottom: 12px; }
.foot-legal a { color: #D9D9D9; text-decoration: underline; text-underline-offset: 3px; }
.foot-legal a:hover { color: var(--white); }

/* ---- age gate ---- */
.age-gate { position: fixed; inset: 0; background: rgba(10,10,12,0.97); z-index: 100; display: flex; align-items: center; justify-content: center; padding: 24px; }
.age-card { max-width: 460px; text-align: center; border: 2px solid var(--pink); padding: 44px 32px; }
.age-logo { margin: 0 auto 22px; width: 280px; height: auto; }
.age-title { font-family: "Anybody", sans-serif; font-style: italic; font-weight: 800; font-size: 1.6rem; text-transform: uppercase; color: var(--white); margin-bottom: 10px; }
.age-text { color: #CFCFCF; margin-bottom: 26px; }
.age-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ---- responsive ---- */
@media (max-width: 860px) {
  .split, .cards3, .foot-grid { grid-template-columns: 1fr; }
  .gal-strip { grid-template-columns: repeat(2, 1fr); }
  .gal-grid { grid-template-columns: repeat(2, 1fr); }
  .gal-grid img { height: 220px; }
  .hero-copy { padding-top: 80px; padding-bottom: 80px; }
}
@media (max-width: 520px) { .gal-grid { grid-template-columns: 1fr; } }

.age-gate[hidden], .overlay[hidden] { display: none; }

/* ---------- Desktop navigation ---------- */
.main-nav { display: flex; gap: 26px; margin-left: auto; margin-right: 24px; }
.main-nav a { font-family: "Inter", sans-serif; font-weight: 700; font-size: 13px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink); text-decoration: none; padding: 6px 0; border-bottom: 2px solid transparent; }
.main-nav a:hover { color: var(--pink); }
.main-nav a.active { color: var(--pink); border-bottom-color: var(--pink); }
.bar-cta { padding: 11px 18px; font-size: 0.8rem; }
@media (min-width: 901px) { .menu-btn { display: none; } }
@media (max-width: 900px) { .main-nav, .bar-cta { display: none; } }

/* ---------- Sub-page image heroes ---------- */
.page-hero.has-img { position: relative; overflow: hidden; padding: 96px 0 84px; }
.page-hero.has-img .ph-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 35%; opacity: 0.5; }
.page-hero.has-img .ph-shade { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(12,12,14,0.75) 0%, rgba(12,12,14,0.4) 48%, rgba(12,12,14,0) 100%); }
.page-hero.has-img .wrap { position: relative; z-index: 1; }
@media (max-width: 640px) {
  .page-hero.has-img { padding: 72px 0 64px; }
  .page-hero.has-img .ph-shade { background: linear-gradient(180deg, rgba(12,12,14,0.4) 0%, rgba(12,12,14,0.6) 100%); }
}
