/**
 * AUX.VIP — Unified Production Stylesheet
 * 
 * Single source of truth for all visual styling.
 * Include this file on every page INSTEAD of per-page inline styles.
 * 
 * Structure:
 *   1. Reset + Tokens
 *   2. Typography
 *   3. Navigation
 *   4. Page Layout
 *   5. Buttons
 *   6. Forms
 *   7. Cards (DJ, Vibe, Review, Booking, Stat, Level Up)
 *   8. Badges + Tags
 *   9. Sections + Modules
 *  10. Dashboard
 *  11. Footer
 *  12. States (empty, success, error, loading)
 *  13. Motion
 *  14. Responsive
 */

/* ═══════════════════════════════════════
   1. RESET + TOKENS
   ═══════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* Core */
  --black: #060608;
  --black-warm: #0A0A0E;
  --gold: #C9A84C;
  --gold-soft: rgba(201,168,76,.15);
  --gold-glow: rgba(201,168,76,.25);
  --gold-hover: #D4B65E;
  --gold-muted: rgba(201,168,76,.5);
  --white: #FFFFFF;
  --white-90: rgba(255,255,255,.9);
  --white-70: rgba(255,255,255,.7);
  --white-50: rgba(255,255,255,.5);
  --white-30: rgba(255,255,255,.3);
  --white-12: rgba(255,255,255,.12);
  --white-06: rgba(255,255,255,.06);

  /* Surfaces */
  --surface: #0E0E12;
  --surface-2: #131318;
  --surface-3: #1A1A22;

  /* Status */
  --error: #E85454;
  --success: #4CAF50;
  --pending: #F5A623;
  --info: #4A9EF5;

  /* Spacing scale */
  --sp-xs: 4px;
  --sp-sm: 8px;
  --sp-md: 16px;
  --sp-lg: 24px;
  --sp-xl: 32px;
  --sp-2xl: 48px;
  --sp-3xl: 64px;
  --sp-4xl: 80px;

  /* Radii */
  --r-sm: 4px;
  --r-md: 6px;
  --r-lg: 10px;
  --r-xl: 12px;
  --r-2xl: 16px;
  --r-full: 9999px;

  /* Transitions */
  --ease: cubic-bezier(.4, 0, .2, 1);
  --t-fast: 150ms;
  --t-base: 200ms;
  --t-slow: 350ms;

  /* Shadows */
  --sh-card: 0 4px 16px rgba(0,0,0,.2);
  --sh-hover: 0 12px 40px rgba(0,0,0,.4);
  --sh-glow: 0 4px 24px var(--gold-glow);
  --sh-elevated: 0 16px 48px rgba(0,0,0,.5);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', -apple-system, sans-serif;
  background: var(--black);
  color: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

::selection {
  background: var(--gold);
  color: var(--black);
}

/* Scrollbar */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: var(--white-12); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--white-30); }


/* ═══════════════════════════════════════
   2. TYPOGRAPHY
   ═══════════════════════════════════════ */
.font-display { font-family: 'Bebas Neue', sans-serif; }
.font-accent { font-family: 'Playfair Display', serif; }

.eyebrow {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.heading-xl {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(40px, 8vw, 72px);
  letter-spacing: 3px;
  line-height: 1.05;
}

.heading-lg {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(32px, 6vw, 52px);
  letter-spacing: 2px;
  line-height: 1.05;
}

.heading-md {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(24px, 4vw, 36px);
  letter-spacing: 2px;
  line-height: 1.1;
}

.heading-sm {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 18px;
  letter-spacing: 2px;
}

.subhead {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: clamp(15px, 2vw, 17px);
  color: var(--white-70);
  max-width: 520px;
}

.body-lg { font-size: 15px; color: var(--white-70); line-height: 1.8; }
.body-md { font-size: 14px; color: var(--white-70); line-height: 1.7; }
.body-sm { font-size: 13px; color: var(--white-50); line-height: 1.6; }
.caption { font-size: 12px; color: var(--white-30); }
.micro { font-size: 11px; color: var(--white-30); letter-spacing: .5px; }


/* ═══════════════════════════════════════
   3. NAVIGATION
   ═══════════════════════════════════════ */
.site-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(6,6,8,.92);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--white-06);
  transition: background var(--t-base) var(--ease);
}

.nav-inner {
  max-width: 1280px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 var(--sp-xl); height: 64px;
}

.nav-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 24px; letter-spacing: 3px;
  color: var(--gold); text-decoration: none;
  transition: opacity var(--t-fast);
}
.nav-logo:hover { opacity: .85; }
.nav-logo span {
  font-size: 12px; color: var(--error);
  font-family: 'DM Sans', sans-serif;
  letter-spacing: 1px; margin-left: 8px; font-weight: 600;
}

.nav-links { display: flex; gap: var(--sp-lg); align-items: center; }
.nav-links a {
  font-size: 13px; font-weight: 500; color: var(--white-70);
  text-decoration: none; letter-spacing: .3px;
  transition: color var(--t-fast);
  position: relative;
}
.nav-links a:hover { color: var(--gold); }
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0; right: 0;
  height: 1px; background: var(--gold); transform: scaleX(0);
  transition: transform var(--t-base) var(--ease);
}
.nav-links a:hover::after { transform: scaleX(1); }

.nav-cta {
  background: var(--gold) !important; color: var(--black) !important;
  padding: 8px 20px; border-radius: var(--r-sm); font-weight: 600;
  transition: background var(--t-fast), box-shadow var(--t-fast);
}
.nav-cta:hover {
  background: var(--gold-hover) !important;
  box-shadow: var(--sh-glow);
}
.nav-cta::after { display: none; }

.nav-user {
  display: flex; align-items: center; gap: 10px;
  font-size: 13px; color: var(--white-70);
}
.nav-avatar {
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--gold-soft); border: 1px solid var(--gold-muted);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 700; color: var(--gold);
}

.mobile-toggle {
  display: none; background: none; border: none;
  color: var(--gold); font-size: 24px; cursor: pointer;
  padding: 4px; transition: transform var(--t-fast);
}
.mobile-toggle:active { transform: scale(.9); }

@media (max-width: 900px) {
  .nav-links {
    display: none; position: absolute; top: 64px; left: 0; right: 0;
    background: rgba(6,6,8,.98); flex-direction: column;
    padding: var(--sp-lg) var(--sp-xl); gap: var(--sp-md);
    border-bottom: 1px solid var(--white-12);
    animation: navSlide var(--t-slow) var(--ease);
  }
  .nav-links.open { display: flex; }
  .nav-links a::after { display: none; }
  .mobile-toggle { display: block; }
}
@keyframes navSlide { from { opacity: 0; transform: translateY(-8px); } to { opacity: 1; transform: translateY(0); } }


/* ═══════════════════════════════════════
   4. PAGE LAYOUT
   ═══════════════════════════════════════ */
.page-container {
  max-width: 760px; margin: 0 auto;
  padding: 120px var(--sp-lg) var(--sp-4xl);
}

.page-wide {
  max-width: 1280px; margin: 0 auto;
  padding: 120px var(--sp-xl) var(--sp-4xl);
}

.page-hero {
  text-align: center; margin-bottom: var(--sp-2xl);
}
.page-hero h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(36px, 7vw, 56px);
  letter-spacing: 2px; line-height: 1.05;
  margin-bottom: var(--sp-md);
}
.page-hero .subhead { margin: 0 auto var(--sp-lg); }
.page-hero .trust-line { font-size: 13px; color: var(--white-50); }
.page-hero .note {
  font-size: 13px; color: var(--gold);
  background: var(--gold-soft); display: inline-block;
  padding: 8px 20px; border-radius: var(--r-sm);
  border: 1px solid rgba(201,168,76,.2);
}

.s { max-width: 1280px; margin: 0 auto; padding: var(--sp-4xl) var(--sp-xl); }
.s-header { text-align: center; margin-bottom: var(--sp-2xl); }
.s-divider { max-width: 1280px; margin: 0 auto; height: 1px; background: var(--white-06); }

.section { margin-bottom: var(--sp-2xl); }
.section-title {
  font-family: 'Bebas Neue', sans-serif; font-size: 18px;
  letter-spacing: 2px; color: var(--gold);
  padding-bottom: 10px; border-bottom: 1px solid var(--white-06);
  margin-bottom: 20px;
}
.section-label {
  font-family: 'Bebas Neue', sans-serif; font-size: 20px;
  letter-spacing: 2px; color: var(--gold);
  padding-bottom: 10px; border-bottom: 1px solid var(--white-06);
  margin-bottom: var(--sp-lg);
}

.back-link {
  font-size: 13px; color: var(--white-50); text-decoration: none;
  display: inline-flex; align-items: center; gap: 6px;
  margin-bottom: var(--sp-lg); transition: color var(--t-fast);
}
.back-link:hover { color: var(--gold); }


/* ═══════════════════════════════════════
   5. BUTTONS
   ═══════════════════════════════════════ */
.btn-primary {
  font-family: 'Bebas Neue', sans-serif; font-size: 18px;
  letter-spacing: 2px; color: var(--black); background: var(--gold);
  border: none; border-radius: var(--r-md); padding: 14px 32px;
  cursor: pointer; transition: background var(--t-fast), box-shadow var(--t-base), transform var(--t-fast);
}
.btn-primary:hover { background: var(--gold-hover); box-shadow: var(--sh-glow); }
.btn-primary:active { transform: scale(.97); }
.btn-primary:disabled { opacity: .5; cursor: not-allowed; transform: none; box-shadow: none; }

.btn-secondary {
  font-family: 'Bebas Neue', sans-serif; font-size: 18px;
  letter-spacing: 2px; color: var(--gold); background: transparent;
  border: 1px solid var(--gold-muted); border-radius: var(--r-md); padding: 14px 32px;
  cursor: pointer; transition: border-color var(--t-fast), background var(--t-fast);
}
.btn-secondary:hover { border-color: var(--gold); background: var(--gold-soft); }

.btn-sm {
  font-size: 13px; font-weight: 600; padding: 8px 18px;
  border-radius: var(--r-md); cursor: pointer; border: none;
  transition: all var(--t-fast);
}
.btn-sm.gold { background: var(--gold); color: var(--black); }
.btn-sm.gold:hover { background: var(--gold-hover); }
.btn-sm.outline { background: transparent; border: 1px solid var(--white-12); color: var(--white-50); }
.btn-sm.outline:hover { border-color: var(--white-30); color: var(--white); }
.btn-sm.danger { background: transparent; border: 1px solid rgba(232,84,84,.4); color: var(--error); }
.btn-sm.danger:hover { background: rgba(232,84,84,.08); }
.btn-sm.success { background: var(--success); color: var(--white); }
.btn-sm.success:hover { filter: brightness(1.1); }

.btn-row { display: flex; gap: 12px; margin-top: var(--sp-xl); }


/* ═══════════════════════════════════════
   6. FORMS
   ═══════════════════════════════════════ */
.field-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 22px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-md); }
.field-row-3 { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: var(--sp-md); }
@media (max-width: 600px) { .field-row, .field-row-3 { grid-template-columns: 1fr; } }

label {
  font-size: 13px; font-weight: 500; color: var(--white-90); letter-spacing: .3px;
}
label .req { color: var(--gold); margin-left: 2px; }
label .opt { color: var(--white-30); font-weight: 400; margin-left: 4px; font-size: 11px; }

input, select, textarea {
  font-family: 'DM Sans', sans-serif; font-size: 15px;
  color: var(--white); background: var(--surface);
  border: 1px solid var(--white-12); border-radius: var(--r-md);
  padding: 12px 14px; outline: none; width: 100%;
  transition: border-color var(--t-base), box-shadow var(--t-base);
}
input::placeholder, textarea::placeholder { color: var(--white-30); font-size: 14px; }
input:focus, select:focus, textarea:focus {
  border-color: var(--gold); box-shadow: 0 0 0 3px var(--gold-soft);
}
input.err, select.err, textarea.err { border-color: var(--error); }

select {
  appearance: none; cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23C9A84C' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center;
  padding-right: 36px;
}
select option { background: var(--surface); color: var(--white); }
textarea { resize: vertical; min-height: 100px; }

.hint { font-size: 12px; color: var(--white-30); margin-top: 2px; }
.err-msg { font-size: 12px; color: var(--error); display: none; margin-top: 2px; }

/* Vibe/Tag checkbox grid */
.vibe-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
@media (max-width: 500px) { .vibe-grid { grid-template-columns: 1fr; } }

.vibe-opt {
  display: flex; align-items: center; gap: 10px;
  padding: 11px 14px; background: var(--surface);
  border: 1px solid var(--white-06); border-radius: var(--r-md);
  cursor: pointer; transition: border-color var(--t-fast), background var(--t-fast);
}
.vibe-opt:hover { border-color: var(--white-12); background: var(--surface-2); }
.vibe-opt input[type="checkbox"],
.vibe-opt input[type="radio"] {
  width: 16px; height: 16px; accent-color: var(--gold);
  cursor: pointer; flex-shrink: 0; padding: 0;
}
.vibe-opt span { font-size: 13px; color: var(--white-70); transition: color var(--t-fast); }
.vibe-opt:has(input:checked) { border-color: var(--gold); background: var(--gold-soft); }
.vibe-opt:has(input:checked) span { color: var(--white); }
.vibe-opt.disabled { opacity: .35; pointer-events: none; }

.limit-note { font-size: 12px; color: var(--white-30); margin-bottom: 8px; }
.limit-count { font-weight: 600; color: var(--gold); }

/* Toggle switch */
.toggle-row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 0; border-bottom: 1px solid var(--white-06);
}
.toggle-row:last-child { border-bottom: none; }
.toggle-label { font-size: 14px; color: var(--white-70); }
.toggle-switch { position: relative; width: 44px; height: 24px; cursor: pointer; }
.toggle-switch input { opacity: 0; width: 0; height: 0; }
.toggle-track {
  position: absolute; inset: 0; background: var(--white-12);
  border-radius: 12px; transition: background var(--t-fast);
}
.toggle-track::after {
  content: ''; position: absolute; top: 3px; left: 3px;
  width: 18px; height: 18px; background: var(--white-50);
  border-radius: 50%; transition: transform var(--t-fast), background var(--t-fast);
}
.toggle-switch input:checked + .toggle-track { background: var(--gold-soft); }
.toggle-switch input:checked + .toggle-track::after { transform: translateX(20px); background: var(--gold); }

/* Stepper */
.stepper { display: flex; justify-content: center; gap: 6px; margin-bottom: var(--sp-2xl); flex-wrap: wrap; }
.step-dot {
  display: flex; align-items: center; gap: 6px;
  padding: 7px 14px; border-radius: var(--r-full);
  font-size: 11px; font-weight: 600; letter-spacing: .5px;
  color: var(--white-30); background: var(--surface);
  border: 1px solid var(--white-06); transition: all var(--t-base); cursor: default;
}
.step-dot.active { color: var(--gold); border-color: var(--gold); background: var(--gold-soft); }
.step-dot.done { color: var(--success); border-color: rgba(76,175,80,.3); background: rgba(76,175,80,.08); }
.step-dot .num {
  width: 20px; height: 20px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 10px; font-weight: 700; background: var(--white-06);
}
.step-dot.active .num { background: var(--gold); color: var(--black); }
.step-dot.done .num { background: var(--success); color: var(--white); }


/* ═══════════════════════════════════════
   7. CARDS
   ═══════════════════════════════════════ */

/* DJ Card */
.dj-card {
  background: var(--surface); border: 1px solid var(--white-06);
  border-radius: var(--r-xl); overflow: hidden;
  transition: border-color var(--t-base) var(--ease), transform var(--t-base) var(--ease), box-shadow var(--t-base) var(--ease);
  cursor: pointer; text-decoration: none; color: inherit; display: block;
}
.dj-card:hover { border-color: var(--gold-muted); transform: translateY(-4px); box-shadow: var(--sh-hover); }
.dj-card-img { width: 100%; aspect-ratio: 1/1; object-fit: cover; background: var(--surface-2); display: block; }
.dj-card-body { padding: 18px; }
.dj-card-top { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 6px; }
.dj-card-name { font-family: 'Bebas Neue', sans-serif; font-size: 20px; letter-spacing: 1px; line-height: 1.1; }
.dj-card-rating { font-size: 13px; color: var(--gold); font-weight: 600; }
.dj-card-vibe { font-size: 12px; font-weight: 600; color: var(--gold); letter-spacing: .5px; margin-bottom: 4px; }
.dj-card-location { font-size: 12px; color: var(--white-50); margin-bottom: 10px; }
.dj-card-badges { display: flex; flex-wrap: wrap; gap: 5px; margin-bottom: 10px; }
.dj-card-tags { display: flex; flex-wrap: wrap; gap: 4px; }
.dj-card-bio {
  font-size: 13px; color: var(--white-50); line-height: 1.5; margin-top: 8px;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}

/* DJ Row (grid container) */
.dj-row { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 20px; }
.dj-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 24px; align-content: start; flex: 1; }

/* Vibe Card */
.vibe-card {
  position: relative; border-radius: var(--r-xl); overflow: hidden;
  aspect-ratio: 16/9; cursor: pointer; text-decoration: none; color: var(--white);
  display: block; border: 1px solid var(--white-06);
  transition: border-color var(--t-base), transform var(--t-base), box-shadow var(--t-slow);
}
.vibe-card:hover { border-color: var(--gold); transform: translateY(-4px); box-shadow: var(--sh-elevated); }
.vibe-card-bg { position: absolute; inset: 0; background-size: cover; background-position: center; transition: transform .6s var(--ease); }
.vibe-card:hover .vibe-card-bg { transform: scale(1.06); }
.vibe-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(6,6,8,.2) 0%, rgba(6,6,8,.85) 100%);
  transition: background var(--t-base);
}
.vibe-card:hover .vibe-card-overlay { background: linear-gradient(180deg, rgba(201,168,76,.08) 0%, rgba(6,6,8,.9) 100%); }
.vibe-card-content { position: absolute; bottom: 0; left: 0; right: 0; padding: var(--sp-lg); }
.vibe-card-name { font-family: 'Bebas Neue', sans-serif; font-size: 26px; letter-spacing: 2px; line-height: 1.1; margin-bottom: 6px; }
.vibe-card-desc { font-size: 13px; color: var(--white-70); line-height: 1.5; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.vibe-card-count {
  position: absolute; top: 16px; right: 16px;
  font-size: 11px; font-weight: 600; letter-spacing: .5px;
  color: var(--gold); background: rgba(6,6,8,.7); backdrop-filter: blur(8px);
  padding: 4px 12px; border-radius: var(--r-full); border: 1px solid var(--gold-soft);
}
.vibe-card-mood { position: absolute; top: 16px; left: 16px; font-size: 18px; }

/* Compact vibe card (homepage) */
.vibe-card-sm {
  position: relative; border-radius: var(--r-lg); overflow: hidden;
  aspect-ratio: 16/10; text-decoration: none; color: var(--white);
  display: block; border: 1px solid var(--white-06);
  transition: border-color var(--t-base), transform var(--t-base);
}
.vibe-card-sm:hover { border-color: var(--gold); transform: translateY(-3px); }
.vibe-card-sm .bg {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--surface) 0%, var(--surface-3) 100%);
  transition: background var(--t-base);
}
.vibe-card-sm:hover .bg { background: linear-gradient(135deg, var(--surface-2) 0%, rgba(201,168,76,.08) 100%); }
.vibe-card-sm .inner { position: absolute; bottom: 0; left: 0; right: 0; padding: var(--sp-md); }
.vibe-card-sm .mood { font-size: 20px; margin-bottom: 4px; }
.vibe-card-sm .name { font-family: 'Bebas Neue', sans-serif; font-size: 18px; letter-spacing: 1px; }
.vibe-card-sm .ct { font-size: 11px; color: var(--white-30); }

/* Review Card */
.review-card {
  background: var(--surface); border: 1px solid var(--white-06);
  border-radius: var(--r-lg); padding: 20px;
  transition: border-color var(--t-base);
}
.review-card:hover { border-color: var(--white-12); }
.review-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 8px; }
.review-stars { color: var(--gold); font-size: 14px; letter-spacing: 1px; }
.review-date { font-size: 12px; color: var(--white-30); }
.review-text { font-size: 14px; color: var(--white-70); line-height: 1.6; margin-bottom: 8px; font-style: italic; }
.review-author { font-size: 12px; color: var(--white-50); }
.review-event { font-size: 11px; color: var(--white-30); }
.review-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 16px; }

/* Booking Preview */
.booking-preview {
  background: var(--surface); border: 1px solid var(--white-06);
  border-radius: var(--r-lg); padding: 16px;
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 8px; flex-wrap: wrap; gap: 8px;
  transition: border-color var(--t-fast);
}
.booking-preview:hover { border-color: var(--white-12); }
.booking-preview-info h4 { font-size: 14px; font-weight: 600; margin-bottom: 2px; }
.booking-preview-info p { font-size: 12px; color: var(--white-50); }
.booking-status {
  font-size: 11px; font-weight: 600; letter-spacing: .5px;
  padding: 4px 12px; border-radius: var(--r-full); white-space: nowrap;
}
.booking-status.confirmed { background: rgba(76,175,80,.12); color: var(--success); border: 1px solid rgba(76,175,80,.3); }
.booking-status.pending { background: rgba(245,166,35,.12); color: var(--pending); border: 1px solid rgba(245,166,35,.3); }
.booking-status.new { background: var(--gold-soft); color: var(--gold); border: 1px solid var(--gold-muted); }
.booking-status.awaiting { background: var(--gold-soft); color: var(--gold); border: 1px solid var(--gold-muted); }
.booking-status.completed { background: var(--white-06); color: var(--white-50); border: 1px solid var(--white-12); }
.booking-status.declined { background: rgba(232,84,84,.08); color: var(--error); border: 1px solid rgba(232,84,84,.2); }
.booking-status.cancelled { background: rgba(232,84,84,.06); color: rgba(232,84,84,.6); border: 1px solid rgba(232,84,84,.12); }
.booking-status.issue { background: rgba(245,166,35,.08); color: var(--pending); border: 1px solid rgba(245,166,35,.2); }

/* Stat Card */
.stat-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 16px; margin-bottom: var(--sp-xl); }
.stat-card {
  background: var(--surface); border: 1px solid var(--white-06);
  border-radius: var(--r-xl); padding: 20px;
  transition: border-color var(--t-fast);
}
.stat-card:hover { border-color: var(--white-12); }
.stat-label { font-size: 11px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; color: var(--white-30); margin-bottom: 8px; }
.stat-value { font-family: 'Bebas Neue', sans-serif; font-size: 32px; letter-spacing: 1px; color: var(--white); }
.stat-sub { font-size: 12px; color: var(--white-30); margin-top: 4px; }
.stat-card.gold { border-color: var(--gold-muted); }
.stat-card.gold .stat-value { color: var(--gold); }
.stat-card.alert { border-color: rgba(232,84,84,.3); }
.stat-card.alert .stat-value { color: var(--error); }
.stat-card.warn { border-color: rgba(245,166,35,.3); }
.stat-card.warn .stat-value { color: var(--pending); }
.stat-card.ok { border-color: rgba(76,175,80,.3); }
.stat-card.ok .stat-value { color: var(--success); }

/* Level Up Card */
.levelup-card {
  background: linear-gradient(135deg, var(--surface) 0%, var(--surface-3) 100%);
  border: 1px solid var(--gold-muted); border-radius: var(--r-xl);
  padding: var(--sp-xl); max-width: 640px; margin: 0 auto;
  position: relative; overflow: hidden;
}
.levelup-card::before {
  content: ''; position: absolute; top: -30px; right: -30px;
  width: 120px; height: 120px;
  background: radial-gradient(circle, var(--gold-glow) 0%, transparent 70%);
  pointer-events: none;
}
.levelup-eyebrow { font-size: 10px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); margin-bottom: 10px; }
.levelup-title { font-family: 'Bebas Neue', sans-serif; font-size: 22px; letter-spacing: 1px; margin-bottom: 10px; }
.levelup-body { font-size: 14px; color: var(--white-70); line-height: 1.7; margin-bottom: 16px; }
.levelup-tag {
  display: inline-block; font-size: 10px; font-weight: 600;
  letter-spacing: .5px; text-transform: uppercase;
  padding: 4px 12px; border-radius: var(--r-sm);
  background: var(--gold-soft); color: var(--gold); border: 1px solid var(--gold-muted);
}
.levelup-nav { display: flex; gap: 8px; margin-top: 16px; }
.levelup-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--white-12); cursor: pointer;
  transition: background var(--t-fast), transform var(--t-fast);
}
.levelup-dot:hover { transform: scale(1.3); }
.levelup-dot.active { background: var(--gold); }


/* ═══════════════════════════════════════
   8. BADGES + TAGS
   ═══════════════════════════════════════ */
.badge-row { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 20px; }
.badge-chip {
  font-size: 10px; font-weight: 600; letter-spacing: .5px;
  text-transform: uppercase; padding: 4px 12px;
  border-radius: var(--r-full);
  border: 1px solid var(--gold-muted); color: var(--gold); background: var(--gold-soft);
  transition: background var(--t-fast);
}
.badge-chip:hover { background: var(--gold-glow); }

.tag-chip {
  font-size: 11px; color: var(--white-50); padding: 3px 8px;
  border-radius: var(--r-sm); background: var(--white-06);
  transition: color var(--t-fast);
}
.tag-chip:hover { color: var(--white-70); }

.tag-section { margin-bottom: var(--sp-lg); }
.tag-section h4 { font-size: 12px; font-weight: 600; color: var(--white-50); letter-spacing: .5px; text-transform: uppercase; margin-bottom: 8px; }
.tag-row { display: flex; flex-wrap: wrap; gap: 6px; }
.tag {
  font-size: 12px; color: var(--white-70); padding: 5px 12px;
  border-radius: var(--r-md); background: var(--white-06);
  border: 1px solid var(--white-06); transition: border-color var(--t-fast);
}
.tag:hover { border-color: var(--white-12); }
.tag.vibe { border-color: var(--gold-muted); color: var(--gold); background: var(--gold-soft); }


/* ═══════════════════════════════════════
   9. HOMEPAGE MODULES
   ═══════════════════════════════════════ */
.s-eyebrow { font-size: 11px; font-weight: 600; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); margin-bottom: 12px; }
.s-title { font-family: 'Bebas Neue', sans-serif; font-size: clamp(28px, 5vw, 42px); letter-spacing: 2px; line-height: 1.1; margin-bottom: 12px; }
.s-sub { font-family: 'Playfair Display', serif; font-style: italic; font-size: 16px; color: var(--white-50); max-width: 520px; margin: 0 auto; }

.vibe-scroll { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 16px; }

.upcoming-list { max-width: 700px; margin: 0 auto; display: flex; flex-direction: column; gap: 8px; }
.upcoming-item {
  display: flex; justify-content: space-between; align-items: center;
  padding: 16px 20px; background: var(--surface);
  border: 1px solid var(--white-06); border-radius: var(--r-lg);
  transition: border-color var(--t-fast);
}
.upcoming-item:hover { border-color: var(--white-12); }
.upcoming-info h4 { font-size: 14px; font-weight: 600; margin-bottom: 2px; }
.upcoming-info p { font-size: 12px; color: var(--white-50); }
.upcoming-date { font-size: 12px; color: var(--gold); font-weight: 600; white-space: nowrap; }

.pull-quote {
  padding: 28px 32px; margin: 28px 0;
  border-left: 3px solid var(--gold); background: var(--gold-soft);
  border-radius: 0 var(--r-lg) var(--r-lg) 0;
}
.pull-quote p { font-family: 'Playfair Display', serif; font-size: 20px; font-style: italic; color: var(--white-90); line-height: 1.6; margin: 0; }


/* ═══════════════════════════════════════
   10. DASHBOARD
   ═══════════════════════════════════════ */
.dash-layout {
  max-width: 1280px; margin: 0 auto;
  padding: 88px var(--sp-xl) var(--sp-4xl);
  display: grid; grid-template-columns: 220px 1fr; gap: var(--sp-xl);
}
.dash-layout.admin { max-width: 1440px; grid-template-columns: 240px 1fr; }

.dash-sidebar { position: sticky; top: 80px; align-self: start; }
.sidebar-nav { display: flex; flex-direction: column; gap: 4px; }
.sidebar-nav a {
  font-size: 14px; color: var(--white-50); text-decoration: none;
  padding: 10px 16px; border-radius: var(--r-md);
  transition: all var(--t-fast); display: flex; align-items: center; gap: 10px;
}
.sidebar-nav a:hover { color: var(--white); background: var(--white-06); }
.sidebar-nav a.active { color: var(--gold); background: var(--gold-soft); font-weight: 600; }
.sidebar-nav .icon { font-size: 16px; width: 20px; text-align: center; }
.sidebar-nav .badge-count {
  margin-left: auto; font-size: 11px; font-weight: 700;
  background: var(--error); color: var(--white);
  padding: 2px 8px; border-radius: var(--r-full);
}

.dash-main { min-width: 0; }
.dash-header { margin-bottom: var(--sp-xl); }
.dash-header h1 { font-family: 'Bebas Neue', sans-serif; font-size: clamp(28px, 4vw, 40px); letter-spacing: 2px; line-height: 1.1; margin-bottom: 4px; }
.dash-header p { font-size: 14px; color: var(--white-50); }

.dash-section { margin-bottom: 36px; }
.dash-section-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 16px; }
.dash-section-header h2 { font-family: 'Bebas Neue', sans-serif; font-size: 18px; letter-spacing: 2px; color: var(--gold); }
.dash-section-header a { font-size: 12px; color: var(--gold); text-decoration: none; }

.activity-list { display: flex; flex-direction: column; gap: 8px; }
.activity-item {
  display: flex; gap: 14px; padding: 14px 16px;
  background: var(--surface); border: 1px solid var(--white-06);
  border-radius: var(--r-lg); align-items: flex-start;
}
.activity-dot { width: 8px; height: 8px; border-radius: 50%; margin-top: 6px; flex-shrink: 0; }
.activity-dot.booking { background: var(--gold); }
.activity-dot.review { background: var(--success); }
.activity-dot.system { background: var(--info); }
.activity-dot.alert { background: var(--pending); }
.activity-dot.match { background: var(--success); }
.activity-content { flex: 1; min-width: 0; }
.activity-text { font-size: 13px; color: var(--white-70); }
.activity-text strong { color: var(--white-90); font-weight: 600; }
.activity-time { font-size: 11px; color: var(--white-30); margin-top: 2px; }

.completeness-card {
  background: var(--surface); border: 1px solid var(--white-06);
  border-radius: var(--r-xl); padding: 20px; margin-bottom: var(--sp-lg);
}
.completeness-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 10px; }
.completeness-top span { font-size: 13px; font-weight: 600; color: var(--white-50); }
.completeness-top .pct { color: var(--gold); font-family: 'Bebas Neue', sans-serif; font-size: 20px; }
.completeness-bar { height: 6px; background: var(--white-06); border-radius: 3px; overflow: hidden; }
.completeness-fill { height: 100%; background: var(--gold); border-radius: 3px; transition: width .5s var(--ease); }
.completeness-tips { margin-top: 12px; font-size: 12px; color: var(--white-30); }
.completeness-tips span { color: var(--gold); cursor: pointer; }

.status-banner {
  background: var(--gold-soft); border: 1px solid var(--gold-muted);
  border-radius: var(--r-lg); padding: 16px 20px;
  display: flex; align-items: center; gap: 16px; margin-bottom: 28px;
}
.status-banner .status-icon {
  width: 40px; height: 40px; border-radius: var(--r-lg);
  background: var(--gold-soft); display: flex; align-items: center; justify-content: center;
  font-size: 18px; flex-shrink: 0;
}
.status-banner .status-text h3 { font-size: 14px; font-weight: 600; color: var(--gold); margin-bottom: 2px; }
.status-banner .status-text p { font-size: 13px; color: var(--white-50); }
.status-banner.verified { border-color: rgba(76,175,80,.3); background: rgba(76,175,80,.08); }
.status-banner.verified .status-icon { background: rgba(76,175,80,.15); }
.status-banner.verified h3 { color: var(--success); }

/* Filter tabs */
.filter-tabs { display: flex; gap: 8px; margin-bottom: var(--sp-lg); flex-wrap: wrap; }
.filter-tab {
  font-size: 13px; font-weight: 500; padding: 8px 18px;
  border-radius: var(--r-full); border: 1px solid var(--white-12);
  background: transparent; color: var(--white-50);
  cursor: pointer; transition: all var(--t-fast);
}
.filter-tab:hover { border-color: var(--white-30); color: var(--white); }
.filter-tab.active { border-color: var(--gold); color: var(--gold); background: var(--gold-soft); }
.filter-tab .count { background: var(--white-06); padding: 1px 7px; border-radius: 10px; font-size: 11px; margin-left: 4px; }
.filter-tab.active .count { background: var(--gold-muted); }

@media (max-width: 900px) {
  .dash-layout, .dash-layout.admin { grid-template-columns: 1fr; padding-top: 80px; }
  .dash-sidebar { position: relative; top: auto; }
  .sidebar-nav { flex-direction: row; overflow-x: auto; gap: 8px; padding-bottom: 8px; }
  .sidebar-nav a { white-space: nowrap; padding: 8px 14px; font-size: 13px; }
  .sidebar-nav .badge-count { margin-left: 4px; }
}


/* ═══════════════════════════════════════
   11. FOOTER
   ═══════════════════════════════════════ */
.site-footer {
  border-top: 1px solid var(--white-06); background: var(--black);
  padding: var(--sp-3xl) var(--sp-xl) var(--sp-xl);
}
.footer-inner {
  max-width: 1280px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 1fr; gap: var(--sp-2xl);
}
.footer-brand .footer-logo {
  font-family: 'Bebas Neue', sans-serif; font-size: 28px;
  letter-spacing: 3px; color: var(--gold); margin-bottom: 12px;
}
.footer-brand p { font-size: 13px; color: var(--white-50); line-height: 1.6; max-width: 280px; }
.footer-col h4 { font-family: 'Bebas Neue', sans-serif; font-size: 14px; letter-spacing: 2px; color: var(--gold); margin-bottom: 16px; }
.footer-col a {
  display: block; font-size: 13px; color: var(--white-50);
  text-decoration: none; margin-bottom: 10px;
  transition: color var(--t-fast);
}
.footer-col a:hover { color: var(--gold); }
.footer-bottom {
  max-width: 1280px; margin: 0 auto;
  padding-top: var(--sp-xl); margin-top: var(--sp-xl);
  border-top: 1px solid var(--white-06);
  display: flex; justify-content: space-between;
  font-size: 12px; color: var(--white-30);
}

@media (max-width: 800px) {
  .footer-inner { grid-template-columns: 1fr 1fr; gap: var(--sp-xl); }
  .footer-bottom { flex-direction: column; gap: 8px; }
}
@media (max-width: 500px) {
  .footer-inner { grid-template-columns: 1fr; }
}


/* ═══════════════════════════════════════
   12. STATES
   ═══════════════════════════════════════ */
.empty-state, .empty-module {
  text-align: center; padding: var(--sp-2xl);
  font-size: 14px; color: var(--white-30);
  border: 1px dashed var(--white-06); border-radius: var(--r-lg);
}
.empty-state { grid-column: 1 / -1; padding: var(--sp-4xl) 20px; }

.success-state { display: none; text-align: center; padding: 60px 20px; }
.success-state.show { display: block; animation: fadeUp .5s var(--ease); }
.success-icon {
  width: 72px; height: 72px; border-radius: 50%;
  background: rgba(76,175,80,.12); border: 2px solid rgba(76,175,80,.3);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto var(--sp-lg); font-size: 32px;
}
.success-state h2 { font-family: 'Bebas Neue', sans-serif; font-size: 28px; letter-spacing: 2px; color: var(--gold); margin-bottom: 10px; }
.success-state p { font-size: 15px; color: var(--white-70); max-width: 480px; margin: 0 auto 8px; }
.success-state .contact { margin-top: 20px; font-size: 13px; color: var(--white-50); }
.success-state .contact a { color: var(--gold); text-decoration: none; }

.form-status { text-align: center; padding: 20px; border-radius: var(--r-md); display: none; }
.form-status.error-state { display: block; background: rgba(232,84,84,.08); border: 1px solid rgba(232,84,84,.25); margin-bottom: 16px; }
.form-status.error-state p { font-size: 14px; color: var(--error); }


/* ═══════════════════════════════════════
   13. MOTION
   ═══════════════════════════════════════ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes scaleIn {
  from { transform: scale(0); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

@keyframes pulse {
  0%, 100% { opacity: .4; transform: scale(1); }
  50% { opacity: 0; transform: scale(1.3); }
}

.form-step { display: none; animation: fadeUp var(--t-slow) var(--ease); }
.form-step.active { display: block; }

/* Staggered card entrance */
.dj-card, .vibe-card, .review-card, .vibe-card-sm {
  animation: fadeUp .4s var(--ease) backwards;
}
.dj-row > :nth-child(1), .dj-grid > :nth-child(1), .review-grid > :nth-child(1), .vibe-scroll > :nth-child(1) { animation-delay: 0s; }
.dj-row > :nth-child(2), .dj-grid > :nth-child(2), .review-grid > :nth-child(2), .vibe-scroll > :nth-child(2) { animation-delay: .06s; }
.dj-row > :nth-child(3), .dj-grid > :nth-child(3), .review-grid > :nth-child(3), .vibe-scroll > :nth-child(3) { animation-delay: .12s; }
.dj-row > :nth-child(4), .dj-grid > :nth-child(4), .review-grid > :nth-child(4), .vibe-scroll > :nth-child(4) { animation-delay: .18s; }
.dj-row > :nth-child(5), .dj-grid > :nth-child(5), .vibe-scroll > :nth-child(5) { animation-delay: .24s; }
.dj-row > :nth-child(6), .dj-grid > :nth-child(6), .vibe-scroll > :nth-child(6) { animation-delay: .30s; }
.dj-grid > :nth-child(7), .vibe-scroll > :nth-child(7) { animation-delay: .36s; }
.dj-grid > :nth-child(8), .vibe-scroll > :nth-child(8) { animation-delay: .42s; }


/* ═══════════════════════════════════════
   14. RESPONSIVE
   ═══════════════════════════════════════ */
@media (max-width: 900px) {
  .s { padding: var(--sp-3xl) var(--sp-lg); }
  .dj-row { grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 16px; }
  .dj-grid { grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 16px; }
  .review-grid { grid-template-columns: 1fr; }
  .stat-grid { grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); gap: 12px; }
  .page-container { padding-left: 20px; padding-right: 20px; }
}

@media (max-width: 700px) {
  .vibe-scroll { grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 12px; }
  .reasons-grid { grid-template-columns: 1fr; }
  .facts-grid { grid-template-columns: 1fr; }
  .detail-grid { grid-template-columns: 1fr; }
}

@media (max-width: 500px) {
  :root { --sp-xl: 20px; --sp-lg: 16px; }
  .s { padding: var(--sp-2xl) var(--sp-md); }
  .heading-xl { font-size: 40px; }
  .heading-lg { font-size: 32px; }
  .btn-primary, .btn-secondary { padding: 12px 24px; font-size: 16px; }
  .hero-buttons { flex-direction: column; align-items: center; }
  .hero-buttons .btn-hero { width: 100%; text-align: center; }
  .dj-row, .dj-grid { grid-template-columns: 1fr; }
  .vibe-scroll { grid-template-columns: 1fr 1fr; }
  .stepper { gap: 4px; }
  .step-dot { padding: 6px 10px; font-size: 10px; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
}
