/* =============================================================================
   Acclaimed Massage — neon nightlife theme
   Mobile-first, responsive, accessible.
   ============================================================================= */

:root {
  /* palette */
  --bg:            #08070A;
  --bg-2:          #151019;
  --purple:        #3B174F;
  --purple-bright: #7A2DFF;
  --neon:          #FF2D9A;
  --magenta:       #D91E8A;
  --burgundy:      #58162E;
  --white:         #F7F4F7;
  --muted:         #B9ADB8;

  /* derived */
  --card:          rgba(255, 255, 255, 0.035);
  --card-border:   rgba(255, 45, 154, 0.22);
  --glass-blur:    saturate(140%) blur(14px);
  --neon-glow:     0 0 18px rgba(255, 45, 154, 0.55), 0 0 42px rgba(122, 45, 255, 0.28);
  --neon-glow-sm:  0 0 10px rgba(255, 45, 154, 0.45);

  --font-head: "Playfair Display", "Cormorant Garamond", Georgia, serif;
  --font-body: "Inter", "Manrope", system-ui, -apple-system, sans-serif;

  --maxw: 1200px;
  --radius: 16px;
  --header-h: 74px;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---- reset / base ------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 12px); }

body {
  margin: 0;
  background: var(--bg);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ambient page glow */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(60vw 50vh at 15% -5%, rgba(122, 45, 255, 0.18), transparent 60%),
    radial-gradient(55vw 45vh at 95% 8%, rgba(255, 45, 154, 0.16), transparent 60%),
    radial-gradient(70vw 60vh at 50% 108%, rgba(217, 30, 138, 0.14), transparent 60%);
  pointer-events: none;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

h1, h2, h3 { font-family: var(--font-head); font-weight: 600; line-height: 1.1; margin: 0; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 20px; }

section { padding: 74px 0; position: relative; }

/* selection */
::selection { background: var(--neon); color: #10040c; }

/* ---- utility: section heading ------------------------------------------ */
.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--neon);
  margin: 0 0 14px;
  text-shadow: var(--neon-glow-sm);
}
.section-head { max-width: 720px; margin: 0 0 40px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 {
  font-size: clamp(2rem, 5vw, 3.1rem);
  letter-spacing: 0.01em;
}
.section-head h2 .accent {
  background: linear-gradient(100deg, var(--neon), var(--purple-bright));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.section-head p { color: var(--muted); margin: 16px 0 0; font-size: 1.05rem; }

/* ---- buttons ------------------------------------------------------------ */
.btn {
  --b: var(--neon);
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  padding: 13px 26px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 0.95rem; font-weight: 600; letter-spacing: 0.02em;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease);
  white-space: nowrap;
}
.btn:active { transform: translateY(1px) scale(0.99); }

.btn-primary {
  background: linear-gradient(100deg, var(--neon), var(--magenta) 55%, var(--purple-bright));
  color: #fff;
  box-shadow: 0 8px 26px rgba(255, 45, 154, 0.35);
}
.btn-primary:hover { box-shadow: 0 10px 34px rgba(255, 45, 154, 0.55), var(--neon-glow); transform: translateY(-2px); }

.btn-ghost {
  background: rgba(255, 255, 255, 0.03);
  border-color: var(--card-border);
  color: var(--white);
  backdrop-filter: var(--glass-blur);
}
.btn-ghost:hover { border-color: var(--neon); box-shadow: var(--neon-glow-sm); transform: translateY(-2px); }

.btn-block { width: 100%; }
.btn-sm { padding: 10px 18px; font-size: 0.86rem; }

/* ---- header ------------------------------------------------------------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  height: var(--header-h);
  display: flex; align-items: center;
  background: rgba(8, 7, 10, 0.72);
  backdrop-filter: var(--glass-blur);
  border-bottom: 1px solid rgba(255, 45, 154, 0.14);
  transition: background .3s ease;
}
.site-header .container { display: flex; align-items: center; justify-content: space-between; }

.brand { display: flex; align-items: center; gap: 11px; }
.brand-mark {
  width: 38px; height: 38px; border-radius: 11px;
  display: grid; place-items: center;
  background: linear-gradient(135deg, var(--neon), var(--purple-bright));
  box-shadow: var(--neon-glow-sm);
  font-family: var(--font-head); font-weight: 700; font-size: 1.25rem; color: #fff;
}
.brand-name { font-family: var(--font-head); font-size: 1.28rem; font-weight: 600; letter-spacing: 0.02em; }
.brand-name span { color: var(--neon); }

.nav { display: none; align-items: center; gap: 30px; }
.nav a {
  position: relative; font-size: 0.94rem; font-weight: 500; color: var(--muted);
  transition: color .2s ease; padding: 4px 0;
}
.nav a::after {
  content: ""; position: absolute; left: 0; bottom: -3px; height: 2px; width: 0;
  background: linear-gradient(90deg, var(--neon), var(--purple-bright));
  transition: width .28s var(--ease); border-radius: 2px;
}
.nav a:hover, .nav a.active { color: var(--white); }
.nav a:hover::after, .nav a.active::after { width: 100%; box-shadow: var(--neon-glow-sm); }

.header-actions { display: flex; align-items: center; gap: 12px; }

/* Call Now dropdown */
.call-menu { position: relative; }
.call-menu__panel {
  position: absolute; right: 0; top: calc(100% + 12px);
  min-width: 250px; padding: 8px;
  background: rgba(21, 16, 25, 0.96);
  border: 1px solid var(--card-border); border-radius: 14px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.6), var(--neon-glow-sm);
  backdrop-filter: var(--glass-blur);
  opacity: 0; visibility: hidden; transform: translateY(-8px);
  transition: opacity .2s ease, transform .2s var(--ease), visibility .2s;
}
.call-menu.open .call-menu__panel { opacity: 1; visibility: visible; transform: translateY(0); }
.call-menu__item {
  display: flex; flex-direction: column; gap: 2px;
  padding: 11px 14px; border-radius: 10px; transition: background .2s ease;
}
.call-menu__item:hover { background: rgba(255, 45, 154, 0.12); }
.call-menu__item strong { font-size: 0.95rem; }
.call-menu__item span { font-size: 0.82rem; color: var(--muted); }
.call-menu__item .num { color: var(--neon); font-weight: 600; }

/* hamburger */
.hamburger {
  display: inline-flex; flex-direction: column; gap: 5px;
  width: 42px; height: 42px; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.03); border: 1px solid var(--card-border);
  border-radius: 11px; cursor: pointer;
}
.hamburger span { width: 20px; height: 2px; background: var(--white); border-radius: 2px; transition: .3s var(--ease); }
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* mobile menu overlay */
.mobile-menu {
  position: fixed; inset: 0; z-index: 99;
  background: rgba(8, 7, 10, 0.97);
  backdrop-filter: blur(8px);
  display: flex; flex-direction: column;
  padding: calc(var(--header-h) + 24px) 24px 24px;
  transform: translateX(100%); transition: transform .35s var(--ease);
  overflow-y: auto;
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu a.m-link {
  font-family: var(--font-head); font-size: 1.7rem; padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07); color: var(--white);
}
.mobile-menu a.m-link:hover { color: var(--neon); }
.mobile-menu .m-calls { margin-top: 26px; display: grid; gap: 12px; }

/* ---- hero --------------------------------------------------------------- */
.hero { min-height: min(90vh, 780px); display: flex; align-items: center; padding: 0; overflow: hidden; }
.hero__bg { position: absolute; inset: 0; z-index: -1; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; animation: slowzoom 22s ease-in-out infinite alternate; }
.hero__bg::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(8,7,10,0.55) 0%, rgba(8,7,10,0.72) 55%, rgba(8,7,10,0.96) 100%);
}
@keyframes slowzoom { from { transform: scale(1); } to { transform: scale(1.08); } }

.hero__inner { max-width: 780px; padding: 120px 0; }
.hero h1 {
  font-size: clamp(2.8rem, 8vw, 5.4rem);
  line-height: 1.02; margin: 8px 0 0;
}
.hero h1 .accent {
  display: block;
  background: linear-gradient(100deg, var(--neon), var(--purple-bright));
  -webkit-background-clip: text; background-clip: text; color: transparent;
  filter: drop-shadow(0 0 24px rgba(255, 45, 154, 0.4));
}
.hero__lead { font-size: clamp(1.05rem, 2.4vw, 1.32rem); color: var(--white); margin: 24px 0 10px; max-width: 620px; }
.hero__sub { color: var(--muted); max-width: 560px; margin: 0 0 34px; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; }

/* ---- two column generic ------------------------------------------------- */
.split { display: grid; gap: 40px; align-items: center; }
.split .media { position: relative; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--card-border); box-shadow: 0 20px 60px rgba(0,0,0,0.5); }
.split .media img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 3/2; transition: transform 1.2s var(--ease); }
.split .media:hover img { transform: scale(1.05); }
.split .media::after { content: ""; position: absolute; inset: 0; box-shadow: inset 0 0 90px rgba(122,45,255,0.25); pointer-events: none; }
.split p { color: var(--muted); }
.split p + p { margin-top: 14px; }

/* ---- staff cards -------------------------------------------------------- */
.grid { display: grid; gap: 22px; }
.staff-grid { grid-template-columns: repeat(2, 1fr); }

.staff-card {
  position: relative; border-radius: var(--radius); overflow: hidden;
  background: var(--card); border: 1px solid var(--card-border);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s ease;
  display: flex; flex-direction: column;
}
.staff-card:hover { transform: translateY(-6px); border-color: var(--neon); box-shadow: 0 24px 60px rgba(0,0,0,0.5), var(--neon-glow); }
.staff-card__media { position: relative; aspect-ratio: 4/5; overflow: hidden; }
.staff-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease); }
.staff-card:hover .staff-card__media img { transform: scale(1.06); }
.staff-card__media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 40%, rgba(8,7,10,0.9)); }

.badge {
  position: absolute; top: 12px; left: 12px; z-index: 2;
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.04em;
  padding: 5px 11px; border-radius: 999px;
  background: rgba(8,7,10,0.7); backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 45, 154, 0.5); color: var(--white);
  display: inline-flex; align-items: center; gap: 6px;
}
.badge::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: #37ff9a; box-shadow: 0 0 8px #37ff9a; }

.staff-card__body { padding: 16px 18px 20px; margin-top: -46px; position: relative; z-index: 2; }
.staff-card__name { font-size: 1.55rem; }
.staff-card__loc { font-size: 0.82rem; color: var(--neon); letter-spacing: 0.06em; text-transform: uppercase; margin: 2px 0 10px; display: flex; align-items: center; gap: 6px; }
.staff-card__desc { color: var(--muted); font-size: 0.92rem; margin: 0 0 16px; }
.staff-card__actions { display: flex; gap: 9px; flex-wrap: wrap; margin-top: auto; }
.staff-card__actions .btn { flex: 1; }

/* ---- location cards ----------------------------------------------------- */
.loc-grid { grid-template-columns: repeat(2, 1fr); }
.loc-card {
  border-radius: var(--radius); overflow: hidden;
  background: var(--card); border: 1px solid var(--card-border);
  display: flex; flex-direction: column;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s;
}
.loc-card:hover { transform: translateY(-6px); border-color: var(--magenta); box-shadow: 0 24px 60px rgba(0,0,0,0.5), var(--neon-glow); }
.loc-card__media { aspect-ratio: 16/9; overflow: hidden; position: relative; }
.loc-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease); }
.loc-card:hover .loc-card__media img { transform: scale(1.05); }
.loc-card__body { padding: 24px; display: flex; flex-direction: column; gap: 14px; flex: 1; }
.loc-card__body h3 { font-size: 1.9rem; }
.loc-card__blurb { color: var(--muted); margin: -4px 0 0; }
.loc-meta { display: grid; gap: 10px; margin: 4px 0; }
.loc-meta__row { display: flex; gap: 11px; align-items: flex-start; font-size: 0.94rem; }
.loc-meta__row .ico { color: var(--neon); flex: 0 0 auto; margin-top: 2px; filter: drop-shadow(var(--neon-glow-sm)); }
.loc-meta__row .num { color: var(--white); font-weight: 600; }
.loc-actions { display: flex; gap: 10px; flex-wrap: wrap; margin-top: auto; }
.loc-actions .btn { flex: 1; }

/* ---- pricing ------------------------------------------------------------ */
.price-grid { grid-template-columns: repeat(3, 1fr); max-width: 900px; margin-inline: auto; }
.price-card {
  text-align: center; padding: 40px 24px; border-radius: var(--radius);
  background: var(--card); border: 1px solid var(--card-border); position: relative;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.price-card:hover { transform: translateY(-6px); box-shadow: 0 24px 60px rgba(0,0,0,0.5), var(--neon-glow); }
.price-card.featured { border-color: var(--neon); box-shadow: var(--neon-glow); background: linear-gradient(180deg, rgba(255,45,154,0.08), rgba(122,45,255,0.05)); }
.price-card .tag { position: absolute; top: -13px; left: 50%; transform: translateX(-50%); font-size: 0.7rem; letter-spacing: 0.14em; text-transform: uppercase; padding: 5px 14px; border-radius: 999px; background: linear-gradient(100deg, var(--neon), var(--purple-bright)); color: #fff; font-weight: 700; }
.price-card__dur { font-size: 1.05rem; color: var(--muted); letter-spacing: 0.05em; text-transform: uppercase; }
.price-card__amt { font-family: var(--font-head); font-size: 3.4rem; margin: 10px 0 4px; background: linear-gradient(100deg, var(--neon), var(--purple-bright)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.price-note { text-align: center; color: var(--muted); margin: 28px auto 0; max-width: 560px; font-size: 0.95rem; }

/* ---- features ----------------------------------------------------------- */
.feat-grid { grid-template-columns: repeat(4, 1fr); }
.feat {
  padding: 30px 24px; border-radius: var(--radius); text-align: left;
  background: var(--card); border: 1px solid rgba(255,255,255,0.06);
  transition: transform .35s var(--ease), border-color .35s, box-shadow .35s;
}
.feat:hover { transform: translateY(-5px); border-color: var(--card-border); box-shadow: var(--neon-glow-sm); }
.feat__ico {
  width: 50px; height: 50px; border-radius: 13px; display: grid; place-items: center; margin-bottom: 16px;
  background: linear-gradient(135deg, rgba(255,45,154,0.18), rgba(122,45,255,0.18));
  border: 1px solid var(--card-border); color: var(--neon);
}
.feat h3 { font-family: var(--font-body); font-size: 1.12rem; font-weight: 600; margin-bottom: 8px; }
.feat p { color: var(--muted); font-size: 0.92rem; margin: 0; }

/* ---- gallery ------------------------------------------------------------ */
.gallery-grid { grid-template-columns: repeat(3, 1fr); gap: 16px; }
.gal-item {
  position: relative; border-radius: 14px; overflow: hidden; cursor: pointer;
  border: 1px solid rgba(255,255,255,0.06); aspect-ratio: 3/2;
  transition: border-color .3s, box-shadow .3s, transform .3s var(--ease);
}
.gal-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .9s var(--ease); }
.gal-item:hover { border-color: var(--neon); box-shadow: var(--neon-glow); transform: translateY(-3px); }
.gal-item:hover img { transform: scale(1.08); }
.gal-item__cap { position: absolute; left: 0; right: 0; bottom: 0; padding: 14px; font-size: 0.82rem; letter-spacing: 0.04em; background: linear-gradient(transparent, rgba(8,7,10,0.9)); opacity: 0; transform: translateY(8px); transition: .3s var(--ease); }
.gal-item:hover .gal-item__cap { opacity: 1; transform: translateY(0); }
.gal-item__cap b { display: block; }
.gal-item__cap span { color: var(--neon); font-size: 0.74rem; text-transform: uppercase; letter-spacing: 0.08em; }

/* ---- filters ------------------------------------------------------------ */
.filters { display: flex; gap: 10px; overflow-x: auto; padding: 4px 0 8px; margin-bottom: 30px; scrollbar-width: none; -webkit-overflow-scrolling: touch; }
.filters::-webkit-scrollbar { display: none; }
.filter-btn {
  flex: 0 0 auto; padding: 9px 20px; border-radius: 999px; cursor: pointer;
  background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.1);
  color: var(--muted); font-family: var(--font-body); font-size: 0.88rem; font-weight: 500;
  transition: .25s var(--ease); white-space: nowrap;
}
.filter-btn:hover { color: var(--white); border-color: var(--card-border); }
.filter-btn.active { color: #fff; border-color: transparent; background: linear-gradient(100deg, var(--neon), var(--purple-bright)); box-shadow: var(--neon-glow-sm); }

/* ---- CTA band ----------------------------------------------------------- */
.cta-band { text-align: center; border-radius: 26px; padding: 64px 24px; position: relative; overflow: hidden;
  background: radial-gradient(80% 120% at 50% 0%, rgba(255,45,154,0.18), transparent 60%), linear-gradient(180deg, var(--bg-2), var(--bg));
  border: 1px solid var(--card-border); box-shadow: 0 0 60px rgba(122,45,255,0.2) inset;
}
.cta-band h2 { font-size: clamp(2rem, 5vw, 3.2rem); }
.cta-band p { color: var(--muted); max-width: 540px; margin: 16px auto 30px; }
.cta-band__btns { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }

/* ---- footer ------------------------------------------------------------- */
.site-footer { border-top: 1px solid rgba(255,45,154,0.14); background: linear-gradient(180deg, transparent, rgba(21,16,25,0.6)); padding: 60px 0 30px; margin-top: 20px; }
.footer-grid { display: grid; gap: 40px; grid-template-columns: 1fr; }
.footer-brand .brand { margin-bottom: 14px; }
.footer-brand p { color: var(--muted); max-width: 300px; font-size: 0.94rem; }
.footer-col h4 { font-family: var(--font-body); font-size: 0.82rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--neon); margin: 0 0 16px; }
.footer-col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.footer-col a { color: var(--muted); font-size: 0.94rem; transition: color .2s; }
.footer-col a:hover { color: var(--white); }
.footer-loc { color: var(--muted); font-size: 0.92rem; line-height: 1.7; }
.footer-loc strong { color: var(--white); display: block; font-family: var(--font-head); font-size: 1.15rem; margin-bottom: 6px; }
.footer-loc a.num { color: var(--neon); font-weight: 600; }
.footer-bottom { margin-top: 44px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.07); display: flex; flex-wrap: wrap; gap: 12px; justify-content: space-between; color: var(--muted); font-size: 0.84rem; }
.footer-bottom a { color: var(--muted); } .footer-bottom a:hover { color: var(--white); }

/* ---- disclaimer --------------------------------------------------------- */
.disclaimer { margin-top: 34px; padding: 18px 22px; border-radius: 14px; border: 1px dashed rgba(255,45,154,0.3); background: rgba(255,45,154,0.05); color: var(--muted); font-size: 0.9rem; text-align: center; }

/* ---- modal (staff profile) --------------------------------------------- */
.modal { position: fixed; inset: 0; z-index: 200; display: none; align-items: center; justify-content: center; padding: 20px; }
.modal.open { display: flex; }
.modal__overlay { position: absolute; inset: 0; background: rgba(4,3,6,0.8); backdrop-filter: blur(8px); }
.modal__dialog {
  position: relative; width: 100%; max-width: 820px; max-height: 90vh; overflow: hidden;
  border-radius: 22px; border: 1px solid var(--card-border);
  background: linear-gradient(180deg, var(--bg-2), var(--bg));
  box-shadow: 0 40px 100px rgba(0,0,0,0.7), var(--neon-glow);
  display: grid; grid-template-columns: 1fr; animation: pop .35s var(--ease);
}
@keyframes pop { from { opacity: 0; transform: translateY(16px) scale(0.97); } to { opacity: 1; transform: none; } }
.modal__media { position: relative; }
.modal__media img { width: 100%; height: 100%; object-fit: cover; max-height: 40vh; }
.modal__body { padding: 28px; overflow-y: auto; }
.modal__body h3 { font-size: 2.2rem; }
.modal__loc { color: var(--neon); text-transform: uppercase; letter-spacing: 0.06em; font-size: 0.86rem; margin: 4px 0 16px; }
.modal__body p { color: var(--muted); }
.modal__actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 22px; }
.modal__close { position: absolute; top: 14px; right: 14px; z-index: 3; width: 40px; height: 40px; border-radius: 50%; border: 1px solid var(--card-border); background: rgba(8,7,10,0.7); color: #fff; cursor: pointer; display: grid; place-items: center; backdrop-filter: blur(6px); transition: .2s; }
.modal__close:hover { border-color: var(--neon); box-shadow: var(--neon-glow-sm); }

/* ---- lightbox ----------------------------------------------------------- */
.lightbox { position: fixed; inset: 0; z-index: 200; display: none; align-items: center; justify-content: center; padding: 30px; background: rgba(4,3,6,0.92); backdrop-filter: blur(6px); }
.lightbox.open { display: flex; }
.lightbox img { max-width: 92vw; max-height: 84vh; border-radius: 14px; border: 1px solid var(--card-border); box-shadow: 0 0 60px rgba(255,45,154,0.4); }
.lightbox__close, .lightbox__nav { position: absolute; background: rgba(8,7,10,0.6); border: 1px solid var(--card-border); color: #fff; cursor: pointer; border-radius: 50%; display: grid; place-items: center; transition: .2s; }
.lightbox__close { top: 22px; right: 22px; width: 46px; height: 46px; font-size: 1.4rem; }
.lightbox__nav { top: 50%; transform: translateY(-50%); width: 52px; height: 52px; font-size: 1.6rem; }
.lightbox__nav.prev { left: 20px; } .lightbox__nav.next { right: 20px; }
.lightbox__close:hover, .lightbox__nav:hover { border-color: var(--neon); box-shadow: var(--neon-glow-sm); }
.lightbox__cap { position: absolute; bottom: 24px; left: 0; right: 0; text-align: center; color: var(--muted); font-size: 0.9rem; }

/* ---- page hero (inner pages) ------------------------------------------- */
.page-hero { padding: calc(var(--header-h) + 40px) 0 30px; text-align: center; position: relative; }
.page-hero h1 { font-size: clamp(2.6rem, 7vw, 4.4rem); }
.page-hero h1 .accent { background: linear-gradient(100deg, var(--neon), var(--purple-bright)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.page-hero p { color: var(--muted); max-width: 620px; margin: 18px auto 0; font-size: 1.06rem; }

/* ---- sticky mobile call bar -------------------------------------------- */
.sticky-calls { position: fixed; left: 0; right: 0; bottom: 0; z-index: 90; display: none; grid-template-columns: 1fr 1fr; gap: 1px; background: rgba(255,45,154,0.2); border-top: 1px solid var(--card-border); backdrop-filter: var(--glass-blur); }
.sticky-calls a { display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 11px 6px 12px; background: rgba(8,7,10,0.92); color: var(--white); gap: 2px; }
.sticky-calls a:active { background: rgba(255,45,154,0.15); }
.sticky-calls .lbl { font-size: 0.68rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--muted); }
.sticky-calls .num { font-size: 0.98rem; font-weight: 700; color: var(--neon); display: flex; align-items: center; gap: 6px; }

/* ---- map embed ---------------------------------------------------------- */
.map-embed { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--card-border); aspect-ratio: 16/10; box-shadow: 0 16px 40px rgba(0,0,0,0.4); }
.map-embed iframe { width: 100%; height: 100%; border: 0; filter: grayscale(0.2) invert(0.9) hue-rotate(180deg) saturate(1.1); }

/* ---- legal pages -------------------------------------------------------- */
.legal { max-width: 760px; margin: 0 auto; }
.legal h2 { font-size: 1.5rem; margin: 34px 0 12px; color: var(--white); font-family: var(--font-body); font-weight: 700; }
.legal p, .legal li { color: var(--muted); }
.legal ul { padding-left: 20px; }

/* ---- reveal animation --------------------------------------------------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* ---- responsive --------------------------------------------------------- */
@media (min-width: 620px) {
  .footer-grid { grid-template-columns: 1.4fr 1fr; }
  .modal__dialog { grid-template-columns: 0.9fr 1.1fr; }
  .modal__media img { max-height: 90vh; }
}

@media (min-width: 860px) {
  .nav { display: flex; }
  .hamburger { display: none; }
  .split { grid-template-columns: 1fr 1fr; }
  .split.reverse .media { order: 2; }
  .feat-grid { grid-template-columns: repeat(4, 1fr); }
  .footer-grid { grid-template-columns: 1.6fr 1fr 1.3fr 1.3fr; }
  .sticky-calls { display: none !important; }
}

@media (max-width: 859px) {
  .header-actions .call-menu { display: none; }        /* use sticky bar on mobile */
  .sticky-calls { display: grid; }
  body { padding-bottom: 62px; }                        /* room for sticky bar */
  .mobile-menu { display: flex; }
}

@media (max-width: 719px) {
  .staff-grid { grid-template-columns: repeat(2, 1fr); }
  .loc-grid { grid-template-columns: 1fr; }
  .price-grid { grid-template-columns: 1fr; max-width: 420px; }
  .feat-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  section { padding: 56px 0; }
}

@media (max-width: 460px) {
  .staff-grid { grid-template-columns: 1fr; }
  .feat-grid { grid-template-columns: 1fr; }
  .hero__cta .btn, .cta-band__btns .btn { width: 100%; }
}

@media (min-width: 860px) { .mobile-menu { display: none; } }

/* reduced motion */
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero__bg img { animation: none; }
}
