/* ===================================================
   LIT Dispensary & Vape Outlet — Design System
   Dark theme · Glassmorphism · Purple & Green accents
   =================================================== */

/* ─── Google Fonts ─────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Syne:wght@700;800&display=swap');

/* ─── CSS Custom Properties ─────────────────────── */
:root {
  /* Backgrounds */
  --bg-base:        #080808;
  --bg-surface:     #111111;
  --bg-surface2:    #1a1a1a;
  --bg-surface3:    #222222;
  --bg-elevated:    #2a2a2a;

  /* Borders */
  --border:         rgba(255, 255, 255, 0.07);
  --border-medium:  rgba(255, 255, 255, 0.12);
  --border-strong:  rgba(255, 255, 255, 0.18);

  /* Purple */
  --purple:         #9333ea;
  --purple-light:   #a855f7;
  --purple-dark:    #7c3aed;
  --purple-glow:    rgba(147, 51, 234, 0.35);
  --purple-subtle:  rgba(147, 51, 234, 0.12);

  /* Green */
  --green:          #10b981;
  --green-light:    #34d399;
  --green-dark:     #059669;
  --green-glow:     rgba(16, 185, 129, 0.35);
  --green-subtle:   rgba(16, 185, 129, 0.12);

  /* Text */
  --text-primary:   #f0f0f0;
  --text-secondary: #a8a8a8;
  --text-muted:     #6b6b6b;
  --text-inverse:   #080808;

  /* Typography */
  --font-sans:    'Inter', system-ui, -apple-system, sans-serif;
  --font-display: 'Syne', 'Inter', system-ui, sans-serif;

  /* Radii */
  --radius-sm:    6px;
  --radius-md:    12px;
  --radius-lg:    16px;
  --radius-xl:    24px;
  --radius-full:  9999px;

  /* Shadows */
  --shadow-sm:    0 1px 3px rgba(0,0,0,0.5);
  --shadow-md:    0 4px 16px rgba(0,0,0,0.6);
  --shadow-lg:    0 8px 32px rgba(0,0,0,0.7);
  --shadow-xl:    0 20px 60px rgba(0,0,0,0.8);
  --shadow-purple: 0 8px 32px rgba(147, 51, 234, 0.25);
  --shadow-green:  0 8px 32px rgba(16, 185, 129, 0.25);

  /* Transitions */
  --transition-fast:   150ms ease;
  --transition-base:   250ms ease;
  --transition-slow:   400ms ease;

  /* Spacing scale */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;

  /* Layout */
  --max-width: 1280px;
  --nav-height: 72px;
}

/* ─── Reset & Base ───────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-sans);
  background-color: var(--bg-base);
  color: var(--text-primary);
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, video {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button, input, textarea, select {
  font-family: inherit;
  font-size: inherit;
}

ul, ol { list-style: none; }

/* ─── Scrollbar ──────────────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-surface); }
::-webkit-scrollbar-thumb {
  background: var(--purple);
  border-radius: var(--radius-full);
}
::-webkit-scrollbar-thumb:hover { background: var(--purple-light); }

/* ─── Selection ──────────────────────────────────── */
::selection {
  background: var(--purple-subtle);
  color: var(--purple-light);
}

/* ─── Focus ──────────────────────────────────────── */
:focus-visible {
  outline: 2px solid var(--purple);
  outline-offset: 3px;
  border-radius: var(--radius-sm);
}

/* ══════════════════════════════════════════════════
   LAYOUT UTILITIES
══════════════════════════════════════════════════ */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: var(--space-6);
}

@media (max-width: 768px) {
  .container { padding-inline: var(--space-4); }
}

.section {
  padding-block: var(--space-20);
}

.section-sm {
  padding-block: var(--space-12);
}

.section-lg {
  padding-block: var(--space-24);
}

/* ─── Grid ───────────────────────────────────────── */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-6);
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-6);
}

@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .grid-4, .grid-3, .grid-2 { grid-template-columns: 1fr; }
}

/* ─── Flex ───────────────────────────────────────── */
.flex { display: flex; }
.flex-col { display: flex; flex-direction: column; }
.items-center { align-items: center; }
.items-start { align-items: flex-start; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.gap-2 { gap: var(--space-2); }
.gap-3 { gap: var(--space-3); }
.gap-4 { gap: var(--space-4); }
.gap-6 { gap: var(--space-6); }
.gap-8 { gap: var(--space-8); }
.flex-wrap { flex-wrap: wrap; }

/* ─── Spacing ────────────────────────────────────── */
.mb-2 { margin-bottom: var(--space-2); }
.mb-3 { margin-bottom: var(--space-3); }
.mb-4 { margin-bottom: var(--space-4); }
.mb-6 { margin-bottom: var(--space-6); }
.mb-8 { margin-bottom: var(--space-8); }
.mb-12 { margin-bottom: var(--space-12); }
.mb-16 { margin-bottom: var(--space-16); }
.mt-2 { margin-top: var(--space-2); }
.mt-4 { margin-top: var(--space-4); }
.mt-6 { margin-top: var(--space-6); }
.mt-8 { margin-top: var(--space-8); }
.mt-auto { margin-top: auto; }
.mx-auto { margin-inline: auto; }

/* ─── Text ───────────────────────────────────────── */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.text-muted { color: var(--text-secondary); }
.text-purple { color: var(--purple-light); }
.text-green { color: var(--green-light); }
.text-sm { font-size: 0.875rem; }
.text-xs { font-size: 0.75rem; }
.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }
.leading-tight { line-height: 1.2; }
.leading-relaxed { line-height: 1.7; }
.uppercase { text-transform: uppercase; }
.tracking-wide { letter-spacing: 0.05em; }
.tracking-wider { letter-spacing: 0.1em; }

/* ─── Display ────────────────────────────────────── */
.hidden { display: none; }
.block { display: block; }
.inline-flex { display: inline-flex; }
.relative { position: relative; }
.absolute { position: absolute; }
.sticky { position: sticky; }
.fixed { position: fixed; }
.inset-0 { inset: 0; }
.overflow-hidden { overflow: hidden; }
.w-full { width: 100%; }
.h-full { height: 100%; }
.z-10 { z-index: 10; }
.z-20 { z-index: 20; }
.z-50 { z-index: 50; }
.z-100 { z-index: 100; }

/* ──────────────────────────────────────────────────
   TYPOGRAPHY
────────────────────────────────────────────────── */
.display-xl {
  font-family: var(--font-display);
  font-size: clamp(2.75rem, 7vw, 5.5rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.display-lg {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.75rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.display-md {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3.5vw, 2.5rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.heading-lg {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.01em;
}

.heading-md {
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-weight: 600;
  line-height: 1.3;
}

.heading-sm {
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.4;
}

.body-lg {
  font-size: clamp(1rem, 2vw, 1.125rem);
  line-height: 1.7;
  color: var(--text-secondary);
}

.body-md {
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text-secondary);
}

.label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--purple-light);
}

/* Gradient Text */
.gradient-text {
  background: linear-gradient(135deg, var(--purple-light) 0%, var(--green-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gradient-text-purple {
  background: linear-gradient(135deg, #c084fc 0%, var(--purple-light) 50%, var(--purple) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ──────────────────────────────────────────────────
   BUTTONS
────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.9375rem;
  cursor: pointer;
  border: none;
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
  text-decoration: none;
  line-height: 1;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0);
  transition: background var(--transition-fast);
}

.btn:hover::after {
  background: rgba(255, 255, 255, 0.06);
}

.btn-primary {
  background: linear-gradient(135deg, var(--purple-dark) 0%, var(--purple) 50%, var(--purple-light) 100%);
  color: #fff;
  box-shadow: 0 4px 20px rgba(147, 51, 234, 0.4);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(147, 51, 234, 0.55);
}

.btn-primary:active { transform: translateY(0); }

.btn-secondary {
  background: transparent;
  color: var(--text-primary);
  border: 1.5px solid var(--border-strong);
}

.btn-secondary:hover {
  border-color: var(--purple);
  color: var(--purple-light);
  background: var(--purple-subtle);
  transform: translateY(-2px);
}

.btn-green {
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green) 100%);
  color: #fff;
  box-shadow: 0 4px 20px rgba(16, 185, 129, 0.35);
}

.btn-green:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(16, 185, 129, 0.5);
}

.btn-ghost {
  background: transparent;
  color: var(--purple-light);
  border: 1.5px solid var(--purple);
}

.btn-ghost:hover {
  background: var(--purple-subtle);
  transform: translateY(-2px);
}

.btn-lg {
  padding: 1rem 2.5rem;
  font-size: 1.0625rem;
}

.btn-sm {
  padding: 0.5rem 1.25rem;
  font-size: 0.8125rem;
}

.btn svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* ──────────────────────────────────────────────────
   CARDS / GLASSMORPHISM
────────────────────────────────────────────────── */
.glass-card {
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: all var(--transition-base);
}

.glass-card:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: var(--border-medium);
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.card {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: all var(--transition-base);
}

.card:hover {
  border-color: var(--border-medium);
  box-shadow: var(--shadow-md);
}

.card-body {
  padding: var(--space-6);
}

.card-purple {
  border-color: rgba(147, 51, 234, 0.3);
  background: linear-gradient(135deg, rgba(147, 51, 234, 0.08) 0%, rgba(17, 17, 17, 0.9) 100%);
}

.card-green {
  border-color: rgba(16, 185, 129, 0.3);
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.08) 0%, rgba(17, 17, 17, 0.9) 100%);
}

/* ──────────────────────────────────────────────────
   BADGES / TAGS
────────────────────────────────────────────────── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-1);
  padding: 0.375rem 0.875rem;
  border-radius: var(--radius-full);
  font-size: 0.8125rem;
  font-weight: 600;
  border: 1px solid;
}

.badge-purple {
  background: var(--purple-subtle);
  color: var(--purple-light);
  border-color: rgba(147, 51, 234, 0.3);
}

.badge-green {
  background: var(--green-subtle);
  color: var(--green-light);
  border-color: rgba(16, 185, 129, 0.3);
}

.badge-neutral {
  background: rgba(255,255,255,0.06);
  color: var(--text-secondary);
  border-color: var(--border-medium);
}

/* ──────────────────────────────────────────────────
   DIVIDERS
────────────────────────────────────────────────── */
.divider {
  height: 1px;
  background: var(--border);
  margin-block: var(--space-8);
}

.divider-gradient {
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--purple) 50%, transparent 100%);
  margin-block: var(--space-8);
}

/* ──────────────────────────────────────────────────
   SECTION HEADERS
────────────────────────────────────────────────── */
.section-header {
  text-align: center;
  max-width: 640px;
  margin-inline: auto;
  margin-bottom: var(--space-12);
}

.section-header .label {
  display: block;
  margin-bottom: var(--space-3);
}

.section-header p {
  color: var(--text-secondary);
  font-size: 1.0625rem;
  line-height: 1.7;
  margin-top: var(--space-4);
}

/* ──────────────────────────────────────────────────
   ICON BOXES
────────────────────────────────────────────────── */
.icon-box {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.icon-box-purple {
  background: var(--purple-subtle);
  border: 1px solid rgba(147, 51, 234, 0.25);
  color: var(--purple-light);
}

.icon-box-green {
  background: var(--green-subtle);
  border: 1px solid rgba(16, 185, 129, 0.25);
  color: var(--green-light);
}

.icon-box svg {
  width: 24px;
  height: 24px;
}

/* ──────────────────────────────────────────────────
   FORMS
────────────────────────────────────────────────── */
.form-group {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.form-label {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.form-label span {
  color: var(--purple-light);
  margin-left: 2px;
}

.form-control {
  width: 100%;
  padding: 0.875rem 1.125rem;
  background: var(--bg-surface2);
  border: 1.5px solid var(--border-medium);
  border-radius: var(--radius-md);
  color: var(--text-primary);
  font-size: 0.9375rem;
  transition: all var(--transition-fast);
  outline: none;
  appearance: none;
}

.form-control::placeholder {
  color: var(--text-muted);
}

.form-control:focus {
  border-color: var(--purple);
  background: var(--bg-surface3);
  box-shadow: 0 0 0 3px var(--purple-subtle);
}

textarea.form-control {
  resize: vertical;
  min-height: 140px;
  line-height: 1.6;
}

.form-error {
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.3);
  border-radius: var(--radius-md);
  padding: var(--space-4);
  color: #fca5a5;
  font-size: 0.9375rem;
}

.form-success {
  background: var(--green-subtle);
  border: 1px solid rgba(16, 185, 129, 0.3);
  border-radius: var(--radius-md);
  padding: var(--space-6);
  color: var(--green-light);
  font-size: 1rem;
  text-align: center;
}

/* ══════════════════════════════════════════════════
   NAVIGATION
══════════════════════════════════════════════════ */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--nav-height);
  background: rgba(8, 8, 8, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: background var(--transition-base);
}

.nav.scrolled {
  background: rgba(8, 8, 8, 0.97);
  border-bottom-color: var(--border-medium);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

/* Logo */
.nav-logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
  text-decoration: none;
}

.nav-logo-main {
  font-family: var(--font-display);
  font-size: 1.375rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--purple-light) 0%, var(--green-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.02em;
}

.nav-logo-sub {
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-top: 1px;
}

/* Desktop nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-1);
}

.nav-link {
  position: relative;
  padding: 0.5rem 0.875rem;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text-secondary);
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
  text-decoration: none;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--purple), var(--green));
  border-radius: var(--radius-full);
  transition: width var(--transition-base);
}

.nav-link:hover {
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.05);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 60%;
}

.nav-link.active {
  color: var(--text-primary);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

.nav-phone {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  color: var(--text-secondary);
  font-size: 0.875rem;
  font-weight: 500;
  transition: color var(--transition-fast);
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
}

.nav-phone:hover {
  color: var(--green-light);
  border-color: rgba(16, 185, 129, 0.3);
  background: var(--green-subtle);
}

.nav-phone svg {
  width: 15px;
  height: 15px;
}

/* Mobile menu toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-md);
  background: transparent;
  border: 1px solid var(--border-medium);
  cursor: pointer;
  gap: 5px;
  transition: all var(--transition-fast);
}

.nav-toggle:hover {
  background: rgba(255,255,255,0.06);
  border-color: var(--purple);
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all var(--transition-base);
}

.nav-toggle.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.nav-toggle.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile nav drawer */
.mobile-menu {
  display: none;
  position: fixed;
  top: var(--nav-height);
  left: 0;
  right: 0;
  background: rgba(8, 8, 8, 0.98);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-medium);
  z-index: 99;
  padding: var(--space-4);
  flex-direction: column;
  gap: var(--space-1);
  transform: translateY(-10px);
  opacity: 0;
  transition: all var(--transition-base);
}

.mobile-menu.open {
  display: flex;
  transform: translateY(0);
  opacity: 1;
}

.mobile-menu a {
  padding: 0.875rem 1rem;
  border-radius: var(--radius-md);
  color: var(--text-secondary);
  font-weight: 500;
  transition: all var(--transition-fast);
  border: 1px solid transparent;
}

.mobile-menu a:hover,
.mobile-menu a.active {
  color: var(--text-primary);
  background: rgba(255,255,255,0.05);
  border-color: var(--border);
}

.mobile-menu-phone {
  margin-top: var(--space-2);
  padding: 1rem;
  background: var(--green-subtle);
  border: 1px solid rgba(16, 185, 129, 0.3);
  border-radius: var(--radius-md);
  color: var(--green-light) !important;
  font-weight: 600 !important;
  display: flex !important;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
}

@media (max-width: 1024px) {
  .nav-links,
  .nav-phone { display: none; }
  .nav-toggle { display: flex; }
}

/* ══════════════════════════════════════════════════
   HERO SECTION
══════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: calc(100vh - var(--nav-height));
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--bg-base);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg-gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 20% 50%, rgba(147, 51, 234, 0.15) 0%, transparent 60%),
    radial-gradient(ellipse 60% 60% at 80% 30%, rgba(16, 185, 129, 0.10) 0%, transparent 60%),
    radial-gradient(ellipse 100% 100% at 50% 100%, rgba(147, 51, 234, 0.08) 0%, transparent 50%);
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 90% 90% at 50% 50%, black 30%, transparent 100%);
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.2;
  animation: orb-float 8s ease-in-out infinite;
}

.hero-orb-1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--purple) 0%, transparent 70%);
  top: -200px;
  left: -100px;
  animation-delay: 0s;
}

.hero-orb-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, var(--green) 0%, transparent 70%);
  bottom: -150px;
  right: -100px;
  animation-delay: -4s;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 820px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: 0.5rem 1.25rem;
  background: var(--purple-subtle);
  border: 1px solid rgba(147, 51, 234, 0.3);
  border-radius: var(--radius-full);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--purple-light);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: var(--space-6);
}

.hero-eyebrow svg {
  width: 14px;
  height: 14px;
}

.hero-headline {
  margin-bottom: var(--space-6);
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.1875rem);
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 640px;
  margin-bottom: var(--space-10);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  align-items: center;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-8);
  margin-top: var(--space-16);
  padding-top: var(--space-8);
  border-top: 1px solid var(--border);
}

.hero-stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.hero-stat-value {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 800;
  line-height: 1;
  background: linear-gradient(135deg, var(--purple-light), var(--green-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-stat-label {
  font-size: 0.8125rem;
  color: var(--text-muted);
  font-weight: 500;
}

@media (max-width: 640px) {
  .hero {
    min-height: calc(100svh - var(--nav-height));
    padding-block: var(--space-16) var(--space-12);
  }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { text-align: center; justify-content: center; }
  .hero-stats { gap: var(--space-6); }
}

/* ══════════════════════════════════════════════════
   PAGE HERO (inner pages)
══════════════════════════════════════════════════ */
.page-hero {
  position: relative;
  padding: var(--space-20) 0 var(--space-16);
  background: var(--bg-base);
  overflow: hidden;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 100% at 0% 50%, rgba(147, 51, 234, 0.1) 0%, transparent 60%),
    radial-gradient(ellipse 40% 80% at 100% 50%, rgba(16, 185, 129, 0.07) 0%, transparent 60%);
}

.page-hero-content {
  position: relative;
  z-index: 1;
}

.page-hero .label {
  display: block;
  margin-bottom: var(--space-3);
}

.page-hero-description {
  color: var(--text-secondary);
  font-size: 1.0625rem;
  line-height: 1.7;
  max-width: 600px;
  margin-top: var(--space-4);
}

/* ══════════════════════════════════════════════════
   FEATURE CARDS (Why Choose LIT)
══════════════════════════════════════════════════ */
.feature-card {
  padding: var(--space-6);
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: all var(--transition-base);
}

.feature-card:hover {
  border-color: rgba(147, 51, 234, 0.3);
  background: linear-gradient(135deg, rgba(147, 51, 234, 0.06) 0%, var(--bg-surface) 100%);
  transform: translateY(-3px);
  box-shadow: var(--shadow-purple);
}

.feature-card-title {
  font-size: 1.0625rem;
  font-weight: 600;
  margin-bottom: var(--space-2);
}

.feature-card-desc {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ══════════════════════════════════════════════════
   LOCATION CARDS
══════════════════════════════════════════════════ */
.location-card {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: all var(--transition-base);
}

.location-card:hover {
  border-color: var(--border-medium);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.location-card-header {
  padding: var(--space-6);
  background: linear-gradient(135deg, rgba(147, 51, 234, 0.12) 0%, rgba(16, 185, 129, 0.06) 100%);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: var(--space-4);
}

.location-card-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--purple-dark), var(--purple));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(147, 51, 234, 0.4);
}

.location-card-icon svg {
  width: 22px;
  height: 22px;
  color: #fff;
}

.location-card-name {
  font-weight: 700;
  font-size: 1.125rem;
}

.location-card-city {
  font-size: 0.8125rem;
  color: var(--green-light);
  font-weight: 500;
}

.location-card-body {
  padding: var(--space-6);
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.location-info-row {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  font-size: 0.9375rem;
}

.location-info-row svg {
  width: 18px;
  height: 18px;
  color: var(--purple-light);
  flex-shrink: 0;
  margin-top: 2px;
}

.location-info-row span, .location-info-row a {
  color: var(--text-secondary);
  line-height: 1.5;
}

.location-info-row a:hover {
  color: var(--purple-light);
}

.location-card-badges {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  padding-top: var(--space-2);
}

.location-card-actions {
  padding: var(--space-4) var(--space-6);
  background: rgba(255,255,255,0.02);
  border-top: 1px solid var(--border);
  display: flex;
  gap: var(--space-3);
}

.location-card-actions .btn {
  flex: 1;
  font-size: 0.875rem;
  padding: 0.625rem 1rem;
}

/* ══════════════════════════════════════════════════
   PRODUCT CATEGORY CARDS
══════════════════════════════════════════════════ */
.product-card {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  transition: all var(--transition-base);
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.product-card:hover {
  border-color: rgba(147, 51, 234, 0.35);
  background: linear-gradient(135deg, rgba(147, 51, 234, 0.07) 0%, var(--bg-surface) 100%);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(147, 51, 234, 0.2);
}

.product-card-emoji {
  width: 56px;
  height: 56px;
  background: var(--bg-surface2);
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  flex-shrink: 0;
}

.product-card-name {
  font-size: 1.0625rem;
  font-weight: 700;
  line-height: 1.3;
}

.product-card-desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
  flex: 1;
}

.product-card-tag {
  display: inline-flex;
  align-items: center;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--purple-light);
  background: var(--purple-subtle);
  border: 1px solid rgba(147, 51, 234, 0.25);
  padding: 0.25rem 0.625rem;
  border-radius: var(--radius-full);
}

/* ══════════════════════════════════════════════════
   FAQ ACCORDION
══════════════════════════════════════════════════ */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  max-width: 860px;
  margin-inline: auto;
}

.faq-item {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color var(--transition-fast);
}

.faq-item.open {
  border-color: rgba(147, 51, 234, 0.35);
}

.faq-trigger {
  width: 100%;
  padding: var(--space-5) var(--space-6);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  cursor: pointer;
  background: transparent;
  border: none;
  color: var(--text-primary);
  text-align: left;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.4;
  transition: background var(--transition-fast);
}

.faq-trigger:hover {
  background: rgba(255,255,255,0.03);
}

.faq-icon {
  width: 28px;
  height: 28px;
  background: var(--purple-subtle);
  border: 1px solid rgba(147, 51, 234, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all var(--transition-base);
}

.faq-icon svg {
  width: 14px;
  height: 14px;
  color: var(--purple-light);
  transition: transform var(--transition-base);
}

.faq-item.open .faq-icon {
  background: var(--purple);
  border-color: var(--purple);
}

.faq-item.open .faq-icon svg {
  transform: rotate(180deg);
  color: #fff;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-slow);
}

.faq-item.open .faq-answer {
  max-height: 400px;
}

.faq-answer-inner {
  padding: 0 var(--space-6) var(--space-5);
  color: var(--text-secondary);
  font-size: 0.9375rem;
  line-height: 1.7;
  border-top: 1px solid var(--border);
  padding-top: var(--space-5);
}

/* ══════════════════════════════════════════════════
   COMPLIANCE PAGE
══════════════════════════════════════════════════ */
.compliance-section {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  margin-bottom: var(--space-6);
}

.compliance-header {
  padding: var(--space-5) var(--space-6);
  background: linear-gradient(135deg, rgba(147, 51, 234, 0.1) 0%, transparent 100%);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: var(--space-4);
}

.compliance-number {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--purple-dark), var(--purple));
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}

.compliance-title {
  font-size: 1.0625rem;
  font-weight: 700;
}

.compliance-body {
  padding: var(--space-6);
}

.compliance-body p {
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: var(--space-3);
}

.compliance-body p:last-child { margin-bottom: 0; }

.compliance-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  margin-top: var(--space-4);
}

.compliance-list li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  color: var(--text-secondary);
  font-size: 0.9375rem;
  line-height: 1.6;
}

.compliance-list li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--purple-light);
  flex-shrink: 0;
  margin-top: 8px;
}

/* ══════════════════════════════════════════════════
   MAPS
══════════════════════════════════════════════════ */
.map-container {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
}

.map-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
  filter: invert(90%) hue-rotate(180deg) saturate(0.85) brightness(0.9);
}

/* ══════════════════════════════════════════════════
   AGE GATE
══════════════════════════════════════════════════ */
.age-gate-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(4, 4, 4, 0.97);
  backdrop-filter: blur(20px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-4);
}

.age-gate-modal {
  background: var(--bg-surface);
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-xl);
  padding: var(--space-10) var(--space-8);
  max-width: 480px;
  width: 100%;
  text-align: center;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.8), 0 0 60px rgba(147, 51, 234, 0.15);
  animation: modal-in 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes modal-in {
  from { opacity: 0; transform: translateY(20px) scale(0.96); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

.age-gate-logo {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--purple-light), var(--green-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: var(--space-2);
}

.age-gate-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--purple-dark), var(--purple));
  border-radius: 50%;
  font-size: 2rem;
  font-weight: 900;
  color: #fff;
  margin: var(--space-4) auto;
  box-shadow: 0 8px 32px rgba(147, 51, 234, 0.5);
  font-family: var(--font-display);
  line-height: 1;
}

.age-gate-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: var(--space-2);
}

.age-gate-text {
  color: var(--text-secondary);
  font-size: 0.9375rem;
  line-height: 1.6;
  margin-bottom: var(--space-8);
}

.age-gate-buttons {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.age-gate-buttons .btn {
  border-radius: var(--radius-md);
  padding: 0.9375rem;
  font-size: 1rem;
}

.age-gate-decline {
  display: block;
  margin-top: var(--space-3);
  font-size: 0.8125rem;
  color: var(--text-muted);
  text-decoration: underline;
  cursor: pointer;
  background: none;
  border: none;
  transition: color var(--transition-fast);
}

.age-gate-decline:hover {
  color: var(--text-secondary);
}

.age-gate-disclaimer {
  margin-top: var(--space-6);
  padding-top: var(--space-4);
  border-top: 1px solid var(--border);
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ══════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════ */
.footer {
  background: var(--bg-surface);
  border-top: 1px solid var(--border);
  padding-top: var(--space-16);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: var(--space-10);
}

@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .footer-grid { grid-template-columns: 1fr; }
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--purple-light), var(--green-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
  margin-bottom: var(--space-2);
}

.footer-tagline {
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin-bottom: var(--space-5);
}

.footer-desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: var(--space-5);
}

.footer-col-title {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: var(--space-4);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.footer-link {
  font-size: 0.9rem;
  color: var(--text-secondary);
  transition: color var(--transition-fast);
  padding: 2px 0;
}

.footer-link:hover {
  color: var(--purple-light);
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  margin-bottom: var(--space-4);
}

.footer-contact-item svg {
  width: 16px;
  height: 16px;
  color: var(--purple-light);
  flex-shrink: 0;
  margin-top: 3px;
}

.footer-contact-item span,
.footer-contact-item a {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.5;
  transition: color var(--transition-fast);
}

.footer-contact-item a:hover {
  color: var(--green-light);
}

.footer-bottom {
  margin-top: var(--space-12);
  padding: var(--space-6) 0;
  border-top: 1px solid var(--border);
}

.footer-bottom-inner {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.footer-disclaimer {
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.7;
  text-align: center;
}

.footer-copyright {
  font-size: 0.8125rem;
  color: var(--text-muted);
  text-align: center;
}

.footer-copyright a {
  color: var(--text-secondary);
  transition: color var(--transition-fast);
}

.footer-copyright a:hover { color: var(--purple-light); }

/* ══════════════════════════════════════════════════
   ACCESSIBILITY BADGES
══════════════════════════════════════════════════ */
.access-grid {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
}

.access-badge {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  padding: 0.5rem 1rem;
  background: var(--bg-surface2);
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-full);
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: all var(--transition-fast);
}

.access-badge:hover {
  border-color: var(--green);
  color: var(--green-light);
  background: var(--green-subtle);
}

.access-badge svg {
  width: 15px;
  height: 15px;
  color: var(--green-light);
}

/* ══════════════════════════════════════════════════
   INFO BANNERS
══════════════════════════════════════════════════ */
.info-banner {
  padding: var(--space-4) var(--space-6);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: flex-start;
  gap: var(--space-4);
  font-size: 0.9375rem;
  line-height: 1.6;
}

.info-banner svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 2px;
}

.info-banner-warning {
  background: rgba(234, 179, 8, 0.1);
  border: 1px solid rgba(234, 179, 8, 0.25);
  color: #fde68a;
}

.info-banner-warning svg { color: #fbbf24; }

.info-banner-info {
  background: var(--purple-subtle);
  border: 1px solid rgba(147, 51, 234, 0.25);
  color: #c4b5fd;
}

.info-banner-info svg { color: var(--purple-light); }

.info-banner-success {
  background: var(--green-subtle);
  border: 1px solid rgba(16, 185, 129, 0.25);
  color: #a7f3d0;
}

.info-banner-success svg { color: var(--green-light); }

/* ══════════════════════════════════════════════════
   TESTIMONIALS / HIGHLIGHTS
══════════════════════════════════════════════════ */
.highlight-card {
  padding: var(--space-6);
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
}

.highlight-card::before {
  content: '"';
  position: absolute;
  top: -20px;
  left: 16px;
  font-size: 8rem;
  font-weight: 800;
  color: rgba(147, 51, 234, 0.08);
  line-height: 1;
  font-family: var(--font-display);
  pointer-events: none;
}

.highlight-text {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-secondary);
  position: relative;
  z-index: 1;
}

.highlight-stars {
  display: flex;
  gap: 2px;
  margin-bottom: var(--space-3);
}

.star {
  width: 16px;
  height: 16px;
  color: #fbbf24;
}

/* ══════════════════════════════════════════════════
   PAYMENT METHODS
══════════════════════════════════════════════════ */
.payment-grid {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  align-items: center;
}

.payment-badge {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  padding: 0.625rem 1.125rem;
  background: var(--bg-surface2);
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-md);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-secondary);
}

.payment-badge svg {
  width: 20px;
  height: 20px;
  color: var(--green-light);
}

/* ══════════════════════════════════════════════════
   ANIMATIONS
══════════════════════════════════════════════════ */
@keyframes orb-float {
  0%, 100% { transform: translateY(0) scale(1); }
  33% { transform: translateY(-30px) scale(1.05); }
  66% { transform: translateY(15px) scale(0.97); }
}

@keyframes fade-up {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fade-in {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes scale-in {
  from { opacity: 0; transform: scale(0.93); }
  to   { opacity: 1; transform: scale(1); }
}

@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 20px rgba(147, 51, 234, 0.3); }
  50%       { box-shadow: 0 0 40px rgba(147, 51, 234, 0.6); }
}

/* Scroll animation base state */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }
.reveal-delay-6 { transition-delay: 0.6s; }

/* ══════════════════════════════════════════════════
   MISC COMPONENTS
══════════════════════════════════════════════════ */
.pill {
  display: inline-flex;
  align-items: center;
  gap: var(--space-1);
  padding: 0.25rem 0.75rem;
  background: var(--bg-surface3);
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  display: inline-block;
}

.dot-green {
  background: var(--green);
  box-shadow: 0 0 8px rgba(16, 185, 129, 0.6);
  animation: pulse-dot 2s ease infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.status-open {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: 0.375rem 0.875rem;
  background: var(--green-subtle);
  border: 1px solid rgba(16, 185, 129, 0.3);
  border-radius: var(--radius-full);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--green-light);
}

/* Horizontal rule with gradient */
hr {
  border: none;
  height: 1px;
  background: var(--border);
}

/* Overflow handling for mobile */
@media (max-width: 640px) {
  .section { padding-block: var(--space-12); }
  .section-lg { padding-block: var(--space-16); }
  .section-sm { padding-block: var(--space-8); }
}

/* ══════════════════════════════════════════════════
   PHOTO GALLERY
══════════════════════════════════════════════════ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: auto;
  gap: var(--space-3);
}

/* Feature/hero image — spans 8 cols, 2 rows */
.gallery-item-feature {
  grid-column: span 8;
  grid-row: span 2;
}

/* Tall side item — spans 4 cols, 1 row */
.gallery-item-side {
  grid-column: span 4;
}

/* Full-width strip */
.gallery-item-wide {
  grid-column: span 6;
}

@media (max-width: 1024px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .gallery-item-feature,
  .gallery-item-side,
  .gallery-item-wide {
    grid-column: span 1;
    grid-row: span 1;
  }
}

@media (max-width: 640px) {
  .gallery-grid { grid-template-columns: 1fr; }
}

.gallery-photo {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--bg-surface);
  cursor: pointer;
}

.gallery-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
  min-height: 220px;
}

.gallery-photo:hover img {
  transform: scale(1.04);
}

.gallery-photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.75) 0%,
    rgba(0, 0, 0, 0.15) 50%,
    transparent 100%
  );
  display: flex;
  align-items: flex-end;
  padding: var(--space-4);
  opacity: 0;
  transition: opacity var(--transition-base);
}

.gallery-photo:hover .gallery-photo-overlay {
  opacity: 1;
}

.gallery-photo-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: #fff;
  background: rgba(0, 0, 0, 0.5);
  padding: 0.375rem 0.75rem;
  border-radius: var(--radius-full);
  backdrop-filter: blur(8px);
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(0, 0, 0, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-4);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.lightbox.open {
  opacity: 1;
  pointer-events: all;
}

.lightbox-img {
  max-width: 90vw;
  max-height: 88vh;
  object-fit: contain;
  border-radius: var(--radius-lg);
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.9);
  transition: transform 0.3s ease;
  transform: scale(0.95);
}

.lightbox.open .lightbox-img {
  transform: scale(1);
}

.lightbox-close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  width: 44px;
  height: 44px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #fff;
  transition: background var(--transition-fast);
  font-size: 1.25rem;
}

.lightbox-close:hover {
  background: rgba(255,255,255,0.2);
}

.lightbox-caption {
  position: absolute;
  bottom: 1.25rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.875rem;
  color: rgba(255,255,255,0.7);
  background: rgba(0,0,0,0.6);
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius-full);
  backdrop-filter: blur(8px);
  white-space: nowrap;
}

/* ══════════════════════════════════════════════════
   BRAND MARQUEE
══════════════════════════════════════════════════ */
.brand-marquee-wrap {
  overflow: hidden;
  padding-block: var(--space-4);
  mask-image: linear-gradient(90deg, transparent 0%, black 10%, black 90%, transparent 100%);
}

.brand-marquee {
  display: flex;
  gap: var(--space-6);
  width: max-content;
  animation: marquee 30s linear infinite;
}

.brand-marquee:hover {
  animation-play-state: paused;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.brand-chip {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  padding: 0.5rem 1.25rem;
  background: var(--bg-surface2);
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-secondary);
  flex-shrink: 0;
  transition: all var(--transition-fast);
}

.brand-chip:hover {
  color: var(--purple-light);
  border-color: rgba(147,51,234,0.4);
  background: var(--purple-subtle);
}

/* Print styles */
@media print {
  .nav, .footer, .age-gate-overlay { display: none !important; }
  body { background: white; color: black; }
}
