/* ======================================================
   MJ Art Tattoo Studio — style.css
   Pure CSS, no build step, ready for InfinityFree hosting
   ====================================================== */

/* ── Variables ─────────────────────────────────────────── */
:root {
  --black:       #0a0a0a;
  --bg:          #111111;
  --bg-card:     #1a1a1a;
  --gold:        #D4A017;
  --gold-dim:    #a87c10;
  --gold-glow:   rgba(212,160,23,0.22);
  --white:       #f0f0f0;
  --off-white:   #1e1e1e;
  --gray-400:    rgba(255,255,255,0.6);
  --gray-500:    rgba(255,255,255,0.45);
  --gray-600:    #a89060;
  --glass-bg:    rgba(255,255,255,0.75);
  --glass-border:rgba(184,134,11,0.18);
  --gold-border: rgba(184,134,11,0.25);
  --radius-sm:   8px;
  --radius:      12px;
  --radius-lg:   20px;
  --radius-full: 9999px;
  --transition:  0.2s ease;
  --transition-slow: 0.5s ease;
}

/* ── Reset ─────────────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  color-scheme: dark;
}

body {
  background: var(--bg);
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; background: none; border: none; font-family: inherit; color: inherit; }
ul { list-style: none; }

/* ── Typography ────────────────────────────────────────── */
h1, h2, h3, h4,
.section-title, .artist-name, .hero-headline,
.why-title, .hero-sub, .label-tag, .filter-tab,
.nav-link, .mobile-nav-link, .btn {
  font-family: 'Black Ops One', sans-serif;
  letter-spacing: 0.05em;
}

/* ── Utilities ─────────────────────────────────────────── */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section { padding: 80px 0; }

.glass-card {
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 2rem;
}

/* ── Buttons ───────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Black Ops One', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.85rem 1.75rem;
  border-radius: var(--radius-full);
  transition: all var(--transition);
  white-space: nowrap;
  border: none;
  cursor: pointer;
}

.btn-gold {
  background: var(--gold);
  color: #000;
  position: relative;
  overflow: hidden;
}
.btn-gold:hover {
  filter: brightness(1.1);
  transform: scale(1.03);
  box-shadow: 0 0 24px var(--gold-glow);
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--gold);
  color: var(--gold);
}
.btn-outline:hover {
  background: rgba(184,134,11,0.08);
}

.btn-full {
  width: 100%;
  justify-content: center;
}

.btn-full-sm {
  display: block;
  width: 100%;
  text-align: center;
  background: transparent;
  border: 1px solid rgba(184,134,11,0.25);
  color: var(--gray-400);
  font-family: 'Black Ops One', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-full);
  transition: all var(--transition);
  cursor: pointer;
}
.btn-full-sm:hover { background: rgba(184,134,11,0.06); border-color: var(--gold); color: var(--gold); }

/* Shimmer */
.btn-shimmer::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 60%; height: 100%;
  background: linear-gradient(105deg, transparent 30%, rgba(255,255,255,0.35) 50%, transparent 70%);
  animation: shimmer 2.5s linear infinite;
}
@keyframes shimmer { to { left: 200%; } }

/* ── Section Headers ───────────────────────────────────── */
.section-header {
  text-align: center;
  margin-bottom: 3rem;
}
.section-label {
  font-family: 'Black Ops One', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}
.section-title {
  font-family: 'Black Ops One', sans-serif;
  font-size: clamp(1.75rem, 4vw, 3rem);
  color: var(--black);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  line-height: 1.1;
}
.section-divider {
  width: 64px;
  height: 2px;
  background: var(--gold);
  margin: 1rem auto 0;
  opacity: 0.8;
}
.section-desc {
  margin-top: 1.25rem;
  color: var(--gray-400);
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  font-size: 0.95rem;
}

/* ── Reveal Animations ─────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}

.stagger-1 { transition-delay: 0.05s; }
.stagger-2 { transition-delay: 0.15s; }
.stagger-3 { transition-delay: 0.25s; }
.stagger-4 { transition-delay: 0.35s; }
.stagger-5 { transition-delay: 0.45s; }
.stagger-6 { transition-delay: 0.55s; }

/* ── Header ────────────────────────────────────────────── */
#header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: background 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  border-bottom: 1px solid transparent;
}
#header.scrolled {
  background: rgba(10,10,10,0.95);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom-color: rgba(184,134,11,0.15);
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.header-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.logo-wrap { display: flex; align-items: center; gap: 0.75rem; }
.logo-img { height: 40px; width: 40px; object-fit: contain; }
.logo-text { display: flex; flex-direction: column; line-height: 1.15; }
.logo-text span {
  font-family: 'Black Ops One', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #f0f0f0 !important;
}

.desktop-nav { display: none; align-items: center; gap: 2rem; }

.nav-link {
  font-family: 'Black Ops One', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  color: var(--gray-400);
  text-transform: uppercase;
  transition: color var(--transition);
  padding: 0.25rem 0;
}
.nav-link:hover, .nav-link.active { color: var(--gold); }

.desktop-book { display: none; }

.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  padding: 0.5rem;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}
.ham-line {
  display: block;
  width: 22px; height: 2px;
  background: #f0f0f0 !important;
  border-radius: 2px;
  transition: all 0.25s ease;
  transform-origin: center;
}
.hamburger.open .ham-line:nth-child(1) { transform: translateY(10px) rotate(45deg); }
.hamburger.open .ham-line:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open .ham-line:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }

.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 0.25rem;
  padding: 1rem;
  background: rgba(10,10,10,0.98);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(184,134,11,0.12);
}
.mobile-nav.open { display: flex; }

.mobile-nav-link {
  display: block;
  padding: 0.75rem 1rem;
  font-family: 'Black Ops One', sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  color: var(--gray-400);
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}
.mobile-nav-link:hover { color: var(--gold); background: rgba(212,160,23,0.08); }

.mobile-book-btn {
  margin-top: 0.5rem;
  display: block;
  text-align: center;
  background: var(--gold);
  color: #000;
  font-family: 'Black Ops One', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.85rem;
  border-radius: var(--radius-full);
}

/* ── Floating Badges ───────────────────────────────────── */
.floating-badges {
  position: fixed;
  top: 76px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 900;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  animation: badgeEntrance 0.6s cubic-bezier(0.34,1.56,0.64,1) 0.4s both;
}

@keyframes badgeEntrance {
  from { opacity: 0; transform: translateX(-50%) translateY(-16px) scale(0.85); }
  to   { opacity: 1; transform: translateX(-50%) translateY(0) scale(1); }
}

.badge {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.65rem;
  border-radius: var(--radius-full);
  background: rgba(10,10,10,0.96);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(184,134,11,0.20);
  box-shadow: 0 4px 16px rgba(0,0,0,0.10);
  transition: all var(--transition);
  cursor: pointer;
}
.badge:hover { transform: scale(1.05); }
.badge-google:hover { border-color: rgba(184,134,11,0.4); }
.badge-hygiene:hover { border-color: rgba(74,222,128,0.4); }

.badge-title {
  font-weight: 700;
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  color: #f0f0f0 !important;
  white-space: nowrap;
}
.badge-stars { font-size: 0.55rem; color: #FBBF24; line-height: 1.2; }

.hygiene-dot {
  display: inline-block;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #4ade80;
  animation: pulseGreen 1.5s ease-in-out infinite;
}
@keyframes pulseGreen {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(1.3); }
}

.badge-hygiene-wrap { position: relative; }

.hygiene-popup {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  width: 240px;
  background: rgba(10,10,10,0.98);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(184,134,11,0.18);
  border-radius: var(--radius-lg);
  padding: 1rem;
  box-shadow: 0 16px 40px rgba(0,0,0,0.12);
  z-index: 1000;
  animation: popupIn 0.2s ease;
}
@keyframes popupIn {
  from { opacity: 0; transform: translateX(-50%) translateY(-6px) scale(0.97); }
  to   { opacity: 1; transform: translateX(-50%) translateY(0) scale(1); }
}
.hygiene-popup[hidden] { display: none; }

.hygiene-close {
  position: absolute;
  top: 0.5rem; right: 0.75rem;
  font-size: 1.25rem;
  line-height: 1;
  color: var(--gray-400);
  transition: color var(--transition);
}
.hygiene-close:hover { color: var(--black); }

.hygiene-popup-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
  font-family: 'Black Ops One', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  color: var(--black);
}

.hygiene-list { display: flex; flex-direction: column; gap: 0.5rem; }
.hygiene-list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: var(--gray-400);
}

/* ── Hero ──────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
.hero-bg-video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
}
.hero-bg-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
}
.hero-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.55); }
.hero-glow    { position: absolute; inset: 0; background: radial-gradient(ellipse 70% 50% at 60% 40%, rgba(184,134,11,0.08) 0%, transparent 70%); }
.hero-fade    { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 50%, rgba(0,0,0,0.15) 100%); }

.hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 9rem 1.5rem 6rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
}

.hero-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 900px;
  width: 100%;
}

.hero-logo {
  width: auto;
  height: clamp(120px, 20vw, 240px);
  object-fit: contain;
  filter: drop-shadow(0 0 28px rgba(200,160,40,0.65));
  margin-bottom: 1.25rem;
  animation: goldGlow 3s ease-in-out infinite alternate;
}
@keyframes goldGlow {
  from { filter: drop-shadow(0 0 16px rgba(200,160,40,0.4)); }
  to   { filter: drop-shadow(0 0 36px rgba(200,160,40,0.85)); }
}

.label-tag {
  display: inline-block;
  font-family: 'Black Ops One', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(255,215,0,0.35);
  background: rgba(212,160,23,0.06);
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-full);
  margin-bottom: 1rem;
  animation: fadeInUp 0.6s ease 0.15s both;
}

.hero-tagline {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  padding: 0 0.5rem;
  animation: fadeInUp 0.6s ease 0.25s both;
}
.tagline-line {
  flex-shrink: 0;
  width: clamp(24px, 5vw, 60px);
  height: 1px;
  background: rgba(255,215,0,0.4);
}
.tagline-text {
  font-family: 'Black Ops One', sans-serif;
  font-size: clamp(0.5rem, 1.5vw, 0.72rem);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #e5e5e5;
  text-align: center;
  line-height: 1.4;
}

.hero-headline {
  font-family: 'Black Ops One', sans-serif;
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 0.75rem;
}
.headline-left, .headline-right {
  display: block;
  font-size: clamp(2.5rem, 10vw, 7rem);
  color: var(--white);
}
.headline-left  { animation: slideFromLeft  0.85s cubic-bezier(0.22,1,0.36,1) 0.25s both; }
.headline-right { animation: slideFromRight 0.85s cubic-bezier(0.22,1,0.36,1) 0.40s both; }

@keyframes slideFromLeft  { from { opacity: 0; transform: translateX(-60px); } to { opacity: 1; transform: none; } }
@keyframes slideFromRight { from { opacity: 0; transform: translateX(60px);  } to { opacity: 1; transform: none; } }
@keyframes fadeInUp       { from { opacity: 0; transform: translateY(12px);  } to { opacity: 1; transform: none; } }

.hero-sub {
  font-family: 'Black Ops One', sans-serif;
  font-size: clamp(0.85rem, 2.5vw, 1.35rem);
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: 2rem;
  animation: fadeInUp 0.6s ease 0.55s both;
}

.hero-ctas {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  width: 100%;
  max-width: 400px;
  animation: fadeInUp 0.6s ease 0.75s both;
}

.scroll-indicator {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  opacity: 0.5;
  margin-top: 1.5rem;
  animation: fadeInUp 0.8s ease 1.2s both;
}
.scroll-label {
  font-family: 'Black Ops One', sans-serif;
  font-size: 0.6rem;
  letter-spacing: 0.4em;
  color: var(--gray-400);
  text-transform: uppercase;
}
.scroll-arrow { color: var(--gray-400); animation: bounce 2s ease infinite; }
@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(6px); }
}

/* Hero Stats Bar */
.hero-stats-bar {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 2;
  background: rgba(0,0,0,0.52);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-top: 1px solid rgba(184,134,11,0.18);
}
.hero-stats-inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 1rem 1.5rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
.hero-stat { text-align: center; }
.stat-num {
  display: block;
  font-family: 'Black Ops One', sans-serif;
  font-size: clamp(1.35rem, 4vw, 2rem);
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.2rem;
}
.stat-label {
  font-family: 'Black Ops One', sans-serif;
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.65);
  text-transform: uppercase;
}

/* ── Why Choose Us ─────────────────────────────────────── */
.why-section {
  background: #141414;
  border-top: 1px solid rgba(184,134,11,0.12);
  border-bottom: 1px solid rgba(184,134,11,0.12);
}

.why-grid {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.why-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.why-card {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  padding: 1.25rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(184,134,11,0.18);
  border-radius: var(--radius);
  transition: border-color var(--transition), box-shadow var(--transition);
}
.why-card:hover {
  border-color: rgba(184,134,11,0.38);
  box-shadow: 0 4px 24px rgba(184,134,11,0.12);
}

.why-icon {
  flex-shrink: 0;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: rgba(212,160,23,0.06);
  border: 1px solid rgba(255,215,0,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}
.why-card:hover .why-icon { transform: rotate(8deg) scale(1.1); }

.why-title {
  font-family: 'Black Ops One', sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  color: var(--black);
  text-transform: uppercase;
  margin-bottom: 0.3rem;
}
.why-desc { font-size: 0.875rem; color: var(--gray-400); line-height: 1.6; }

/* Map panel */
.why-map { flex-shrink: 0; }

.map-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}
.map-icon-wrap {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(212,160,23,0.06);
  border: 1px solid rgba(255,215,0,0.2);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.map-title {
  font-family: 'Black Ops One', sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--black);
}
.map-sub { font-size: 0.75rem; color: var(--gray-400); margin-top: 0.15rem; }

.map-actions { display: flex; flex-direction: column; gap: 0.75rem; }
.map-address { font-size: 0.8rem; color: var(--gray-500); text-align: center; line-height: 1.6; }

.map-embed-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(184,134,11,0.15);
  margin-top: 0.5rem;
}
.map-embed-wrap[hidden] { display: none; }

.map-embed-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.6rem 0.75rem;
  background: rgba(255,255,255,0.04);
  flex-wrap: wrap;
}

.btn-map-sm {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(184,134,11,0.22);
  color: var(--black);
  padding: 0.4rem 0.85rem;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  transition: all var(--transition);
  cursor: pointer;
}
.btn-map-sm:hover { border-color: var(--gold); color: var(--gold); }

/* ── Gallery ───────────────────────────────────────────── */
.gallery-section { background: #111111; }

.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 2.5rem;
}

.filter-tab {
  padding: 0.45rem 1.1rem;
  border-radius: var(--radius-full);
  font-family: 'Black Ops One', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border: 1px solid rgba(184,134,11,0.22);
  color: var(--gray-400);
  background: rgba(255,255,255,0.04);
  transition: all var(--transition);
  cursor: pointer;
}
.filter-tab:hover { border-color: var(--gold); color: var(--gold); }
.filter-tab.active { background: var(--gold); color: #fff; border-color: var(--gold); }

.filter-tab-latest { border-color: var(--gold); color: var(--gold); }
.filter-tab-latest:hover, .filter-tab-latest.active {
  background: var(--gold);
  color: #fff;
  border-color: var(--gold);
}

.gallery-grid {
  columns: 2;
  column-gap: 1rem;
  orphans: 1;
  widows: 1;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  break-inside: avoid;
  margin-bottom: 1rem;
  cursor: pointer;
}
.gallery-item img {
  width: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
  display: block;
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item.hidden,
.gallery-item.gallery-item--smhidden,
.g-item.hidden {
  display: none !important;
  break-inside: avoid;
}
/* Show More Button */
.gallery-show-more-wrap {
  display: none;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-top: 2.5rem;
}
.gallery-show-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  border: 1.5px solid rgba(255,215,0,0.5);
  color: var(--gold);
  font-family: 'Black Ops One', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.85rem 2.5rem;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: background var(--transition), border-color var(--transition), color var(--transition), box-shadow var(--transition);
}
.gallery-show-more-btn:hover {
  background: rgba(212,160,23,0.06);
  border-color: rgba(255,215,0,0.9);
  box-shadow: 0 0 18px rgba(255,215,0,0.2);
}
.show-more-icon {
  transition: transform var(--transition);
}
.gallery-show-more-btn:hover .show-more-icon {
  transform: translateY(3px);
}

.gallery-badge {
  position: absolute;
  top: 0.5rem; right: 0.5rem;
  background: #f59e0b;
  color: #000;
  font-family: 'Black Ops One', sans-serif;
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.2rem 0.5rem;
  border-radius: var(--radius-full);
}

.gallery-hover {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0);
  display: flex;
  align-items: flex-end;
  padding: 1rem;
  transition: background var(--transition);
}
.gallery-hover span {
  font-family: 'Black Ops One', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  color: #ffffff;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(6px);
  transition: all var(--transition);
}
.gallery-item:hover .gallery-hover { background: rgba(0,0,0,0.45); }
.gallery-item:hover .gallery-hover span { opacity: 1; transform: none; }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0,0,0,0.95);
  display: flex;
  align-items: center;
  justify-content: center;
}
.lightbox[hidden] { display: none; }

.lightbox-inner {
  max-width: 90vw;
  max-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lightbox-img {
  max-width: 100%;
  max-height: 85vh;
  object-fit: contain;
  border-radius: var(--radius);
}
.lightbox-close {
  position: fixed;
  top: 1.5rem; right: 1.5rem;
  font-size: 2rem;
  color: var(--white);
  line-height: 1;
  z-index: 10001;
  transition: color var(--transition);
}
.lightbox-close:hover { color: var(--gold); }

.lightbox-prev, .lightbox-next {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  font-size: 3rem;
  color: rgba(255,255,255,0.7);
  line-height: 1;
  padding: 0.5rem;
  z-index: 10001;
  transition: color var(--transition);
}
.lightbox-prev:hover, .lightbox-next:hover { color: var(--gold); }
.lightbox-prev { left: 1rem; }
.lightbox-next { right: 1rem; }

/* ── Artists ───────────────────────────────────────────── */
.artists-section { background: #141414; }

.artists-grid {
  display: grid;
  gap: 2rem;
}

.artist-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(184,134,11,0.20);
  border-radius: var(--radius-lg);
  overflow: visible;
  transition: box-shadow var(--transition-slow), border-color var(--transition-slow);
  text-align: center;
  padding: 2.5rem 2rem 2rem;
}
.artist-card:hover {
  box-shadow: 0 8px 32px rgba(184,134,11,0.15);
  border-color: rgba(184,134,11,0.40);
}

.artist-avatar {
  width: 220px !important;
  height: 220px !important;
  min-width: 220px !important;
  min-height: 220px !important;
  border-radius: 50% !important;
  background: rgba(255,215,0,0.06);
  border: 3px solid transparent;
  background-clip: padding-box;
  display: flex !important;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem !important;
  box-shadow:
    0 0 12px 4px rgba(255, 0, 0, 0.5),
    0 0 24px 8px rgba(0, 255, 0, 0.35),
    0 0 36px 14px rgba(0, 120, 255, 0.4);
  animation: rgbGlow 4s linear infinite;
  overflow: hidden !important;
  flex-shrink: 0;
}

@keyframes rgbGlow {
  0%   { box-shadow: 0 0 14px 5px rgba(255,0,0,0.6),   0 0 28px 10px rgba(0,255,0,0.3),  0 0 42px 16px rgba(0,100,255,0.4); }
  25%  { box-shadow: 0 0 14px 5px rgba(0,255,0,0.6),   0 0 28px 10px rgba(0,100,255,0.4), 0 0 42px 16px rgba(255,0,200,0.4); }
  50%  { box-shadow: 0 0 14px 5px rgba(0,100,255,0.6), 0 0 28px 10px rgba(255,0,200,0.4), 0 0 42px 16px rgba(255,200,0,0.4); }
  75%  { box-shadow: 0 0 14px 5px rgba(255,0,200,0.6), 0 0 28px 10px rgba(255,200,0,0.4), 0 0 42px 16px rgba(0,255,0,0.4); }
  100% { box-shadow: 0 0 14px 5px rgba(255,0,0,0.6),   0 0 28px 10px rgba(0,255,0,0.3),  0 0 42px 16px rgba(0,100,255,0.4); }
}

.artist-body { display: flex; flex-direction: column; gap: 0.75rem; align-items: center; }
.artist-name {
  font-family: 'Black Ops One', sans-serif;
  font-size: 1.3rem;
  color: var(--black);
  letter-spacing: 0.05em;
}
.artist-role { font-size: 0.75rem; letter-spacing: 0.15em; color: var(--gray-500); text-transform: uppercase; }
.artist-badge {
  background: rgba(255,215,0,0.1);
  border: 1px solid rgba(255,215,0,0.25);
  color: var(--gold);
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.25rem 0.85rem;
  border-radius: var(--radius-full);
  white-space: nowrap;
}
.artist-bio { font-size: 0.875rem; color: var(--gray-400); line-height: 1.65; }

.artist-owner-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: linear-gradient(135deg, rgba(255,215,0,0.25), rgba(255,180,0,0.15));
  border: 1.5px solid rgba(255,215,0,0.6);
  color: #b8860b;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.3rem 1rem;
  border-radius: var(--radius-full);
  box-shadow: 0 2px 12px rgba(255,215,0,0.2);
}
.artist-owner-badge .crown { font-size: 0.9rem; }

/* ── Testimonials ──────────────────────────────────────── */
.testimonials-section { background: var(--black); }

/* ── Google Reviews Carousel ── */
.reviews-carousel-wrap { position: relative; max-width: 700px; margin: 0 auto; }

.reviews-track {
  display: grid;
  grid-template-columns: repeat(8, 100%);
  gap: 0;
  overflow: hidden;
  transition: transform 0.45s cubic-bezier(0.23,1,0.32,1);
}

.review-card {
  background: #1a1a1a;
  border: 1px solid rgba(184,134,11,0.2);
  border-radius: 16px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  box-shadow: 0 4px 24px rgba(184,134,11,0.08);
  min-height: 200px;
}

.review-top {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.review-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(184,134,11,0.12);
  border: 1.5px solid rgba(184,134,11,0.3);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Black Ops One', sans-serif;
  font-size: 0.65rem;
  color: var(--gold);
  flex-shrink: 0;
  letter-spacing: 0.05em;
}

.review-name {
  font-family: 'Black Ops One', sans-serif;
  font-size: 0.82rem;
  letter-spacing: 0.05em;
  color: var(--black);
}

.review-stars {
  color: #f5a623;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  margin-top: 2px;
}

.review-google-icon {
  margin-left: auto;
  flex-shrink: 0;
  opacity: 0.8;
}

.review-text {
  font-size: 0.875rem;
  color: #444;
  line-height: 1.75;
  font-style: italic;
  flex: 1;
}

.review-date {
  font-size: 0.7rem;
  color: #999;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* Dots */
.reviews-dots {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 1.25rem;
}
.reviews-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: rgba(184,134,11,0.25);
  cursor: pointer;
  transition: all 0.3s;
  border: none;
  padding: 0;
}
.reviews-dot.active {
  background: var(--gold);
  width: 20px;
  border-radius: 4px;
}

/* Arrows */
.reviews-nav {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 1rem;
}
.reviews-arrow {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1.5px solid rgba(184,134,11,0.35);
  background: #fff;
  color: var(--black);
  font-size: 1.4rem;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.2s;
  line-height: 1;
}
.reviews-arrow:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: #000;
}

.testimonials-track {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

.testimonial-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(184,134,11,0.18);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  display: none;
  flex-direction: column;
  gap: 1rem;
  transition: box-shadow var(--transition);
  box-shadow: 0 4px 20px rgba(184,134,11,0.07);
}
.testimonial-card.visible {
  display: flex;
  animation: testimonialIn 0.4s ease;
}
@keyframes testimonialIn {
  from { opacity: 0; transform: translateX(30px); }
  to   { opacity: 1; transform: none; }
}

.t-stars { color: #B8860B; font-size: 0.9rem; letter-spacing: 0.08em; }
.t-text { font-size: 0.875rem; color: var(--gray-400); line-height: 1.7; flex: 1; font-style: italic; }
.t-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(184,134,11,0.14);
}
.t-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(184,134,11,0.08);
  border: 1px solid rgba(184,134,11,0.22);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Black Ops One', sans-serif;
  font-size: 0.65rem;
  color: var(--gold);
  flex-shrink: 0;
}
.t-name {
  font-family: 'Black Ops One', sans-serif;
  font-size: 0.875rem;
  color: var(--black);
}
.t-role { font-size: 0.75rem; color: var(--gray-500); margin-top: 0.1rem; }

.t-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}
.t-nav-btn {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(184,134,11,0.22);
  display: flex; align-items: center; justify-content: center;
  color: var(--gray-400);
  transition: all var(--transition);
}
.t-nav-btn:hover { border-color: var(--gold); color: var(--gold); }

.t-dots { display: flex; gap: 0.5rem; align-items: center; }
.t-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(184,134,11,0.18);
  transition: all var(--transition);
  cursor: pointer;
}
.t-dot.active, .t-dot:hover { background: var(--gold); transform: scale(1.3); }

/* ── Contact ───────────────────────────────────────────── */
.contact-section { background: #111111; }

.contact-grid { display: grid; gap: 2.5rem; }

.form-group { display: flex; flex-direction: column; gap: 0.5rem; }
.form-group + .form-group { margin-top: 1.25rem; }

.form-label {
  font-family: 'Black Ops One', sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  color: var(--black);
  text-transform: uppercase;
}
.form-label-opt { font-family: 'Inter', sans-serif; font-size: 0.7rem; font-weight: 400; color: var(--gray-500); text-transform: none; letter-spacing: 0; }

.form-input {
  background: #ffffff;
  border: 1px solid rgba(184,134,11,0.22);
  color: var(--black);
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
  outline: none;
  width: 100%;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.form-input::placeholder { color: rgba(107,88,48,0.40); }
.form-input:focus { border-color: var(--gold); box-shadow: 0 0 0 2px rgba(184,134,11,0.12); }
.form-input.error { border-color: #ef4444; }

.form-textarea { resize: none; }

.form-error { font-size: 0.75rem; color: #b91c1c; margin-top: 0.25rem; }
.form-error[hidden] { display: none; }

.contact-info { display: flex; flex-direction: column; gap: 1.25rem; }

.info-card { gap: 0; }
.info-title {
  font-family: 'Black Ops One', sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  color: var(--black);
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

.info-items { display: flex; flex-direction: column; gap: 1.25rem; }
.info-item { display: flex; align-items: flex-start; gap: 0.75rem; }
.info-icon {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(184,134,11,0.08);
  border: 1px solid rgba(184,134,11,0.22);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.info-item-label {
  font-family: 'Black Ops One', sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  color: var(--gray-500);
  text-transform: uppercase;
  margin-bottom: 0.25rem;
}
.info-link { font-size: 0.875rem; color: var(--gray-400); transition: color var(--transition); display: inline-flex; align-items: center; gap: 0.25rem; }
.info-link:hover { color: var(--gold); }

.map-card-contact { padding: 0; overflow: hidden; }
.map-footer { padding: 0.75rem 1rem; border-top: 1px solid rgba(184,134,11,0.12); }

.hours-title {
  font-family: 'Black Ops One', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1rem;
}
.hours-list { display: flex; flex-direction: column; gap: 0.6rem; }
.hours-row { display: flex; justify-content: space-between; align-items: center; }
.hours-row span:first-child { font-size: 0.8rem; color: rgba(255,255,255,0.6); }
.hours-row span:last-child { font-family: 'Black Ops One', sans-serif; font-size: 0.7rem; letter-spacing: 0.08em; color: var(--white); }

/* ── Footer ────────────────────────────────────────────── */
.site-footer {
  background: #1a1200;
  border-top: 1px solid rgba(184,134,11,0.15);
  padding-top: 4rem;
}

.footer-grid { display: grid; gap: 2rem; padding-bottom: 3rem; }
.footer-brand { max-width: 320px; }

.footer-logo { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1rem; }
.footer-logo img { height: 44px; width: 44px; object-fit: contain; }

.footer-tagline { font-size: 0.875rem; color: rgba(255,255,255,0.52); line-height: 1.65; margin-bottom: 0.75rem; }
.footer-addr { font-size: 0.75rem; color: rgba(255,255,255,0.35); }

.footer-col-title {
  font-family: 'Black Ops One', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 1.25rem;
}
.footer-links { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-link { font-size: 0.875rem; color: rgba(255,255,255,0.48); transition: color var(--transition); cursor: pointer; }
.footer-link:hover, a.footer-link:hover { color: var(--gold); }

.footer-social { display: flex; gap: 0.6rem; margin-bottom: 1rem; }
.social-btn {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.15);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.55);
  transition: all var(--transition);
}
.social-btn:hover { border-color: var(--gold); color: var(--gold); }

.footer-contact { display: flex; flex-direction: column; gap: 0.4rem; }
.footer-contact-link { font-size: 0.8rem; color: rgba(255,255,255,0.48); transition: color var(--transition); }
.footer-contact-link:hover { color: var(--gold); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 1.25rem 0;
  background: rgba(0,0,0,0.25);
}
.footer-bottom-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  text-align: center;
}
.footer-bottom p { font-size: 0.75rem; color: rgba(255,255,255,0.36); }
.footer-caffeine { color: #ffffff; }
.footer-caffeine:hover { text-decoration: underline; }

/* ── Floating Panel ────────────────────────────────────── */
.floating-panel {
  position: fixed;
  bottom: 1.5rem; right: 1.5rem;
  z-index: 900;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  align-items: flex-end;
}

.fab-wrap { position: relative; display: flex; align-items: center; }
.fab-tooltip {
  position: absolute;
  right: calc(100% + 0.5rem);
  background: rgba(26,18,0,0.92);
  color: #ffffff;
  font-size: 0.75rem;
  padding: 0.35rem 0.65rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(184,134,11,0.18);
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}
.fab-wrap:hover .fab-tooltip { opacity: 1; }

.fab {
  width: 52px; height: 52px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(0,0,0,0.4);
  transition: transform var(--transition), box-shadow var(--transition);
}
.fab:hover { transform: scale(1.1); }

.fab-wa { background: #25D366; animation: waPulse 2.5s ease infinite; }
@keyframes waPulse {
  0%   { box-shadow: 0 0 0 0 rgba(37,211,102,0.5); }
  70%  { box-shadow: 0 0 0 12px rgba(37,211,102,0); }
  100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}

.fab-call { background: var(--gold); }

/* ── Responsive: Tablet ─ 768px ──────────────────────── */
@media (min-width: 768px) {
  .hero-stats-inner { grid-template-columns: repeat(4, 1fr); }
  .hero-ctas { flex-direction: row; justify-content: center; max-width: none; }
  .why-cards { grid-template-columns: repeat(2, 1fr); }
  .why-grid { flex-direction: row; gap: 2.5rem; align-items: flex-start; }
  .why-map { flex-shrink: 0; width: 280px; }
  .gallery-grid { columns: 3; }
  .artists-grid { grid-template-columns: repeat(3, 1fr); }
  .contact-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1.5fr 1fr 1fr 1fr; }
  .footer-bottom-inner { flex-direction: row; justify-content: space-between; }
}

/* ── Responsive: Desktop ─ 1024px ──────────────────────── */
@media (min-width: 1024px) {
  .desktop-nav { display: flex; }
  .desktop-book { display: flex; }
  .hamburger { display: none; }
  .mobile-nav { display: none !important; }
  .header-inner { height: 80px; }
  .floating-badges { top: 88px; }
  .why-map { width: 360px; }
  .gallery-grid { columns: 4; }
  .testimonials-track { grid-template-columns: repeat(3, 1fr); }
  .section { padding: 100px 0; }
}

/* ── Responsive: Large ─ 1280px ─────────────────────────── */
@media (min-width: 1280px) {
  .why-map { width: 400px; }
  .why-cards { grid-template-columns: repeat(2, 1fr); }
}

/* ── Accessibility ──────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1 !important; transform: none !important; }
}

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 3px;
}

/* ═══════════════════════════════════════════════════════
   LIGHT THEME — Full site
   Warm cream/parchment background, dark gold accents
   ═══════════════════════════════════════════════════════ */

/* ── WHY US ── */
.why-section {
  background: #141414;
  border-top: 1px solid rgba(184,134,11,0.12);
  border-bottom: 1px solid rgba(184,134,11,0.12);
}
.why-card {
  background: rgba(255,255,255,0.04);
  border-color: rgba(184,134,11,0.18);
  box-shadow: 0 2px 12px rgba(184,134,11,0.06);
}
.why-card:hover {
  background: rgba(255,255,255,0.97);
  border-color: rgba(184,134,11,0.38);
  box-shadow: 0 4px 24px rgba(184,134,11,0.14);
}
.why-title { color: var(--white); }
.why-desc  { color: var(--gray-400); }
.map-title { color: var(--white); }
.map-sub   { color: var(--gray-500); }
.map-address { color: var(--gray-500); }
.btn-map-sm {
  background: rgba(255,255,255,0.04);
  color: var(--black);
  border-color: rgba(184,134,11,0.22);
}
.btn-map-sm:hover { border-color: var(--gold); color: var(--gold); }
.why-section .glass-card {
  background: rgba(255,255,255,0.04);
  border-color: rgba(184,134,11,0.18);
}

/* ── GALLERY ── */
.gallery-section { background: #111111; }
.filter-tab {
  color: var(--gray-400);
  border-color: rgba(184,134,11,0.22);
  background: rgba(255,255,255,0.04);
}
.filter-tab:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(184,134,11,0.06);
}
.filter-tab.active {
  background: var(--gold);
  color: #fff;
  border-color: var(--gold);
}
.gallery-item:hover .gallery-hover { background: rgba(0,0,0,0.45); }

/* ── ARTISTS ── */
.artists-section { background: #141414; }
.artist-card {
  background: rgba(255,255,255,0.04);
  border-color: rgba(184,134,11,0.20);
  box-shadow: 0 2px 14px rgba(184,134,11,0.08);
}
.artist-card:hover {
  border-color: rgba(184,134,11,0.45);
  background: #ffffff;
  box-shadow: 0 8px 32px rgba(184,134,11,0.15);
}
.artist-name { color: var(--black); }
.artist-role { color: var(--gray-500); }
.artist-bio  { color: var(--gray-400); }
.btn-full-sm {
  color: var(--gray-400);
  border-color: rgba(184,134,11,0.25);
}
.btn-full-sm:hover {
  background: rgba(184,134,11,0.06);
  border-color: var(--gold);
  color: var(--gold);
}

/* ── TESTIMONIALS ── */
.testimonials-section { background: var(--black); }
.testimonials-section .section-label { color: var(--gold); }
.testimonials-section .section-title { color: var(--white); }
.testimonials-section .section-divider { background: var(--gold); }
.testimonial-card {
  background: rgba(255,255,255,0.04);
  border-color: rgba(184,134,11,0.18);
  box-shadow: 0 4px 20px rgba(184,134,11,0.08);
}
.t-text { color: rgba(255,255,255,0.65); }
.t-name { color: var(--white); }
.t-role { color: rgba(255,255,255,0.5); }
.t-author { border-top-color: rgba(184,134,11,0.14); }
.t-nav-btn { color: var(--gray-400); border-color: rgba(184,134,11,0.22); }
.t-nav-btn:hover { border-color: var(--gold); color: var(--gold); }
.t-dot { background: rgba(184,134,11,0.18); }
.t-dot.active, .t-dot:hover { background: var(--gold); }

/* ── Elfsight widget light theme overrides ── */
.elfsight-app-9d5c089a-5aa3-4ecc-abf9-fb898657ad8f {
  --eapps-font-color: #1a1200 !important;
  --eapps-background-color: transparent !important;
  color-scheme: light !important;
}

/* Card backgrounds & text */
.elfsight-app-9d5c089a-5aa3-4ecc-abf9-fb898657ad8f [class*="review"],
.elfsight-app-9d5c089a-5aa3-4ecc-abf9-fb898657ad8f [class*="card"],
.elfsight-app-9d5c089a-5aa3-4ecc-abf9-fb898657ad8f [class*="item"] {
  background: rgba(255,255,255,0.04) !important;
  border: 1px solid rgba(184,134,11,0.18) !important;
  box-shadow: 0 2px 12px rgba(184,134,11,0.07) !important;
  color: #1a1200 !important;
}

/* All text inside widget */
.elfsight-app-9d5c089a-5aa3-4ecc-abf9-fb898657ad8f * {
  color: #1a1200 !important;
}

/* Muted / secondary text */
.elfsight-app-9d5c089a-5aa3-4ecc-abf9-fb898657ad8f [class*="date"],
.elfsight-app-9d5c089a-5aa3-4ecc-abf9-fb898657ad8f [class*="meta"],
.elfsight-app-9d5c089a-5aa3-4ecc-abf9-fb898657ad8f [class*="subtitle"] {
  color: #6b5830 !important;
}

/* Stars keep their yellow */
.elfsight-app-9d5c089a-5aa3-4ecc-abf9-fb898657ad8f [class*="star"],
.elfsight-app-9d5c089a-5aa3-4ecc-abf9-fb898657ad8f [class*="rating"] svg,
.elfsight-app-9d5c089a-5aa3-4ecc-abf9-fb898657ad8f [class*="rating"] path {
  fill: #B8860B !important;
  color: #B8860B !important;
}

/* Widget wrapper background */
.elfsight-app-9d5c089a-5aa3-4ecc-abf9-fb898657ad8f > div,
.elfsight-app-9d5c089a-5aa3-4ecc-abf9-fb898657ad8f [class*="wrapper"],
.elfsight-app-9d5c089a-5aa3-4ecc-abf9-fb898657ad8f [class*="container"],
.elfsight-app-9d5c089a-5aa3-4ecc-abf9-fb898657ad8f [class*="body"] {
  background: transparent !important;
}

/* Buttons / controls */
.elfsight-app-9d5c089a-5aa3-4ecc-abf9-fb898657ad8f [class*="button"],
.elfsight-app-9d5c089a-5aa3-4ecc-abf9-fb898657ad8f [class*="btn"],
.elfsight-app-9d5c089a-5aa3-4ecc-abf9-fb898657ad8f [class*="arrow"],
.elfsight-app-9d5c089a-5aa3-4ecc-abf9-fb898657ad8f [class*="nav"] {
  background: rgba(255,255,255,0.04) !important;
  border-color: rgba(184,134,11,0.22) !important;
  color: #1a1200 !important;
}

/* Links */
.elfsight-app-9d5c089a-5aa3-4ecc-abf9-fb898657ad8f a {
  color: #B8860B !important;
}

/* ── CONTACT ── */
.contact-section { background: #111111; }
.contact-section .section-label { color: var(--gold); }
.contact-section .section-title { color: var(--white); }
.contact-section .section-divider { background: var(--gold); }
.contact-section .section-desc { color: var(--gray-400); }
.form-label     { color: var(--black); }
.form-label-opt { color: var(--gray-500); }
.form-input {
  background: #ffffff;
  border-color: rgba(184,134,11,0.22);
  color: var(--black);
}
.form-input::placeholder { color: rgba(107,88,48,0.40); }
.form-input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 2px rgba(184,134,11,0.12);
}
.contact-section .glass-card {
  background: rgba(255,255,255,0.04);
  border-color: rgba(184,134,11,0.18);
  box-shadow: 0 4px 24px rgba(184,134,11,0.08);
}
.info-title         { color: var(--black); }
.info-item-label    { color: var(--gray-500); }
.info-link          { color: var(--gray-400); }
.info-link:hover    { color: var(--gold); }
.hours-title        { color: var(--white) !important; }
.hours-row span:first-child { color: rgba(255,255,255,0.6) !important; }
.hours-row span:last-child  { color: var(--white) !important; }
.map-footer         { border-top-color: rgba(184,134,11,0.12); }
.map-footer a       { color: var(--gray-500); }
.map-embed-wrap     { border-color: rgba(184,134,11,0.15); }

/* ── Glass card base (light) ── */
.glass-card {
  background: rgba(255,255,255,0.04);
  border-color: rgba(184,134,11,0.18);
}

/* ── Footer — warm dark anchors the bottom ── */
.site-footer {
  background: #1a1200;
  border-top-color: rgba(184,134,11,0.15);
}
.footer-brand .logo-text span,
.footer-col-title       { color: #fff; }
.footer-tagline         { color: rgba(255,255,255,0.55); }
.footer-addr            { color: rgba(255,255,255,0.38); }
.footer-link            { color: rgba(255,255,255,0.50); }
.footer-link:hover,
a.footer-link:hover     { color: var(--gold); }
.social-btn             { border-color: rgba(255,255,255,0.18); color: rgba(255,255,255,0.60); }
.social-btn:hover       { border-color: var(--gold); color: var(--gold); }
.footer-contact-link    { color: rgba(255,255,255,0.50); }
.footer-contact-link:hover { color: var(--gold); }
.footer-bottom          { border-top-color: rgba(255,255,255,0.08); background: rgba(0,0,0,0.25); }
.footer-bottom p        { color: rgba(255,255,255,0.38); }
.footer-caffeine        { color: #fff; }

/* ── Hero stats bar (still dark — overlaid on photo) ── */
.hero-stats-bar {
  background: rgba(0,0,0,0.52);
  border-top: 1px solid rgba(184,134,11,0.20);
  backdrop-filter: blur(10px);
}
.stat-num   { color: var(--gold); }
.stat-label { color: rgba(255,255,255,0.65); }

/* ── Lightbox ── */
.lightbox { background: rgba(10,8,2,0.97); }
.lightbox-close, .lightbox-prev, .lightbox-next { color: rgba(255,255,255,0.75); }
.lightbox-close:hover, .lightbox-prev:hover, .lightbox-next:hover { color: var(--gold); }

/* ── Hide Elfsight branding ── */
.elfsight-app-9d5c089a-5aa3-4ecc-abf9-fb898657ad8f .es-widget-branding,
.eapps-widget-toolbar,
[class*="eapps-widget-toolbar"],
[class*="widget-branding"],
[data-widget-branding],
a[href*="elfsight.com"] { display: none !important; }

/* ── Elfsight Reviews Dark Theme Override ── */
.testimonials-section .section-label { color: var(--gold) !important; }
.testimonials-section .section-title { color: #fff !important; }
.testimonials-section .section-divider { background: var(--gold) !important; }
.eapps-google-reviews-widget,
.eapps-google-reviews-widget * { color-scheme: dark; }
.eapps-link { display: none !important; }

/* ══ DARK THEME GLOBAL OVERRIDES ══ */
.section-title, .artist-name, h1, h2, h3 { color: var(--white) !important; }
.section-desc, .artist-bio, .artist-role, .why-desc, p { color: rgba(255,255,255,0.65); }
.section-label { color: var(--gold) !important; }
.nav-link, .mobile-nav-link { color: rgba(255,255,255,0.7); }

/* Cards dark */
.why-card, .glass-card, .map-card-contact, .artist-card, .stat-card-inner,
.hygiene-list li, .portfolio-stat-card { 
  background: rgba(255,255,255,0.04) !important;
  border-color: rgba(212,160,23,0.15) !important;
  color: var(--white);
}

/* Form inputs dark */
.form-input, textarea.form-input {
  background: rgba(255,255,255,0.06) !important;
  color: var(--white) !important;
  border-color: rgba(212,160,23,0.25) !important;
}
.form-input::placeholder { color: rgba(255,255,255,0.3) !important; }
.form-input:focus { border-color: var(--gold) !important; }
.form-label { color: rgba(255,255,255,0.7) !important; }

/* Gallery filter tabs dark */
.filter-tab {
  background: rgba(255,255,255,0.05) !important;
  border-color: rgba(212,160,23,0.2) !important;
  color: rgba(255,255,255,0.5) !important;
}
.filter-tab:hover { 
  background: rgba(212,160,23,0.1) !important;
  color: var(--gold) !important;
}
.filter-tab.active { 
  background: var(--gold) !important;
  color: #000 !important;
}

/* Sub filter row */
.sub-filter-row { background: rgba(255,255,255,0.03) !important; }
.sub-filter-btn { color: rgba(255,255,255,0.5) !important; background: transparent !important; }
.sub-filter-btn.active { color: var(--gold) !important; }

/* Contact section */
.contact-section { background: #111111; }
.info-label { color: rgba(255,255,255,0.5) !important; }
.info-link { color: var(--white) !important; }
.info-link:hover { color: var(--gold) !important; }
.map-address { color: rgba(255,255,255,0.65) !important; }

/* Footer */
footer { background: #0a0a0a !important; }
.footer-tagline, .footer-desc, .footer-addr { color: rgba(255,255,255,0.55) !important; }
.footer-nav-link, .footer-social-link, .footer-contact-link { color: rgba(255,255,255,0.6) !important; }
.footer-nav-link:hover, .footer-social-link:hover, .footer-contact-link:hover { color: var(--gold) !important; }
.footer-divider { background: rgba(255,255,255,0.08) !important; }

/* Nav scrolled */
.header-scrolled { background: rgba(10,10,10,0.97) !important; box-shadow: 0 2px 20px rgba(0,0,0,0.5) !important; }

/* Stats section */
.stats-section, .why-section, .artists-section, .gallery-section { background: #111111 !important; }
.stats-section { background: #0d0d0d !important; }

/* Hygiene popup */
.hygiene-popup { background: #1a1a1a !important; border-color: rgba(212,160,23,0.2) !important; color: var(--white) !important; }
.hygiene-close { color: rgba(255,255,255,0.6) !important; }
.hygiene-close:hover { color: var(--white) !important; }

/* Booking / contact form card */
.glass-card { background: rgba(255,255,255,0.03) !important; border-color: rgba(212,160,23,0.15) !important; }

/* Gallery badge */
.gallery-badge { background: var(--gold); color: #000; }

/* Artist section */
.artist-spec-tag { background: rgba(212,160,23,0.1) !important; color: var(--gold) !important; border-color: rgba(212,160,23,0.25) !important; }

/* Booking form select */
.form-input option { background: #1a1a1a; color: var(--white); }

/* Mobile nav */
.mobile-nav { background: rgba(10,10,10,0.98) !important; }

/* Lightbox */
.lightbox { background: rgba(0,0,0,0.96) !important; }

/* Show more button */
.gallery-show-more-btn { background: transparent !important; border-color: rgba(212,160,23,0.4) !important; color: var(--gold) !important; }
.gallery-show-more-btn:hover { background: var(--gold) !important; color: #000 !important; }

/* Testimonials */
.testimonials-section { background: #0f0f0f !important; }
.testimonials-section .section-title { color: var(--white) !important; }

/* Scroll arrow */
.scroll-arrow { color: rgba(255,255,255,0.4) !important; }

/* Section divider */
.section-divider { background: var(--gold) !important; }

/* ══ DARK THEME — REMAINING TEXT VISIBILITY FIXES ══ */

/* Why section */
.why-title { color: var(--white) !important; }
.why-desc  { color: rgba(255,255,255,0.65) !important; }

/* Map / location panel */
.map-title   { color: var(--white) !important; }
.map-sub     { color: rgba(255,255,255,0.55) !important; }
.map-address { color: rgba(255,255,255,0.6) !important; }

/* Testimonials */
.t-name { color: var(--white) !important; }
.t-role { color: rgba(255,255,255,0.5) !important; }
.t-text { color: rgba(255,255,255,0.65) !important; }

/* Artist cards */
.artist-name { color: var(--white) !important; }
.artist-role { color: rgba(255,255,255,0.5) !important; }
.artist-bio  { color: rgba(255,255,255,0.65) !important; }
.artist-spec-tag { color: var(--gold) !important; }

/* Contact / info section */
.info-title      { color: var(--white) !important; }
.info-item-label { color: rgba(255,255,255,0.5) !important; }
.info-link       { color: rgba(255,255,255,0.75) !important; }
.hours-title     { color: var(--white) !important; }
.hours-row span:first-child { color: rgba(255,255,255,0.6) !important; }
.hours-row span:last-child  { color: var(--white) !important; }
.map-footer a    { color: rgba(255,255,255,0.5) !important; }

/* Form */
.form-label     { color: rgba(255,255,255,0.75) !important; }
.form-label-opt { color: rgba(255,255,255,0.45) !important; }

/* Misc text that used --black */
.section-desc { color: rgba(255,255,255,0.65) !important; }
p             { color: rgba(255,255,255,0.65); }

/* ══ FORCE VISIBILITY — FINAL OVERRIDES ══ */
.ham-line                    { background: #f0f0f0 !important; }
.badge-title                 { color: #f0f0f0 !important; }
.logo-text span              { color: #f0f0f0 !important; }
.nav-link                    { color: rgba(255,255,255,0.8) !important; }
.mobile-nav-link             { color: rgba(255,255,255,0.8) !important; }
