/* ============================================================
   SPADES PHL — Design System
   Dark luxury nightclub aesthetic: Black + Gold
   ============================================================ */

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

:root {
  --black:       #0a0a0a;
  --surface:     #111111;
  --surface-2:   #1a1a1a;
  --surface-3:   #242424;
  --border:      #2a2a2a;
  --border-2:    #383838;
  --gold:        #c9a84c;
  --gold-light:  #e8c96a;
  --gold-dark:   #a07a28;
  --gold-fade:   rgba(201,168,76,.12);
  --white:       #ffffff;
  --text:        #f0ede8;
  --text-muted:  #888888;
  --text-dim:    #555555;
  --red:         #e03131;
  --green:       #2f9e44;
  --radius:      8px;
  --radius-lg:   14px;
  --shadow:      0 2px 8px rgba(0,0,0,.5);
  --shadow-lg:   0 8px 32px rgba(0,0,0,.6);
  --shadow-xl:   0 20px 60px rgba(0,0,0,.7);
  --transition:  .2s cubic-bezier(.4,0,.2,1);
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Inter', -apple-system, sans-serif;
  background: var(--black);
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: var(--gold); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--gold-light); }

/* --- Typography --- */
h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, serif;
  line-height: 1.2;
  letter-spacing: -.02em;
}

/* --- Layout --- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section { padding: 100px 0; }

/* --- NAV --- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 0 24px;
  transition: background var(--transition), padding var(--transition), border-color var(--transition);
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(10,10,10,.95);
  backdrop-filter: blur(16px);
  border-color: var(--border);
  padding: 0 24px;
}
.nav-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; gap: 40px;
  height: 72px;
}
.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 22px; font-weight: 800; letter-spacing: .08em;
  color: var(--white); text-transform: uppercase;
  flex-shrink: 0;
}
.nav-logo span { color: var(--gold); }
.nav-links { display: flex; align-items: center; gap: 4px; margin-left: auto; }
.nav-links a {
  padding: 8px 14px; border-radius: var(--radius);
  font-size: 13px; font-weight: 500; letter-spacing: .04em;
  color: var(--text-muted); text-transform: uppercase;
  transition: color var(--transition), background var(--transition);
}
.nav-links a:hover { color: var(--white); background: var(--surface-2); }
.nav-cta {
  padding: 10px 22px; border-radius: var(--radius);
  background: var(--gold); color: var(--black);
  font-size: 13px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
  border: none; cursor: pointer; font-family: 'Inter', sans-serif;
  transition: background var(--transition), transform var(--transition);
  flex-shrink: 0;
}
.nav-cta:hover { background: var(--gold-light); transform: translateY(-1px); }
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.hamburger span { display: block; width: 22px; height: 2px; background: var(--text); border-radius: 2px; transition: var(--transition); }

/* --- HERO --- */
.hero {
  position: relative; height: 100vh; min-height: 680px;
  display: flex; align-items: center; justify-content: center;
  text-align: center; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a0f00 40%, #0d0d0d 100%);
}
.hero-bg::after {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 40%, rgba(201,168,76,.18) 0%, transparent 70%);
}
.hero-overlay {
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23c9a84c' fill-opacity='0.03'%3E%3Ctext x='20' y='50' font-size='40'%3E%E2%99%A0%3C/text%3E%3C/g%3E%3C/svg%3E");
}
.hero-content {
  position: relative; z-index: 2;
  max-width: 780px; padding: 0 24px;
}
.hero-eyebrow {
  font-size: 12px; font-weight: 600; letter-spacing: .25em;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 20px;
}
.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(56px, 10vw, 120px);
  font-weight: 800; line-height: 1.0;
  color: var(--white); letter-spacing: -.03em;
  margin-bottom: 24px;
}
.hero-title em { color: var(--gold); font-style: italic; }
.hero-sub {
  font-size: 18px; color: var(--text-muted);
  max-width: 520px; margin: 0 auto 40px; line-height: 1.7;
}
.hero-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.hero-scroll-hint {
  position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: var(--text-dim); font-size: 11px; letter-spacing: .15em; text-transform: uppercase;
  z-index: 2;
}
.scroll-line {
  width: 1px; height: 48px;
  background: linear-gradient(var(--gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse { 0%,100%{opacity:.3} 50%{opacity:1} }

/* --- BUTTONS --- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; border-radius: var(--radius);
  font-size: 13px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  border: 2px solid transparent; cursor: pointer; font-family: 'Inter', sans-serif;
  transition: all var(--transition); text-decoration: none;
}
.btn-gold { background: var(--gold); color: var(--black); border-color: var(--gold); }
.btn-gold:hover { background: var(--gold-light); border-color: var(--gold-light); color: var(--black); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(201,168,76,.35); }
.btn-outline { background: transparent; color: var(--white); border-color: rgba(255,255,255,.3); }
.btn-outline:hover { border-color: var(--white); color: var(--white); background: rgba(255,255,255,.08); }
.btn-outline-light { background: transparent; color: var(--white); border-color: rgba(255,255,255,.4); }
.btn-outline-light:hover { background: rgba(255,255,255,.1); color: var(--white); }
.btn-ghost { background: transparent; color: var(--gold); border-color: var(--gold); }
.btn-ghost:hover { background: var(--gold-fade); color: var(--gold-light); }
.btn-danger { background: var(--red); color: white; border-color: var(--red); }
.btn-danger:hover { background: #c02020; border-color: #c02020; }
.btn-sm { padding: 9px 18px; font-size: 12px; }
.btn-full { width: 100%; justify-content: center; }

/* --- SECTION HEADERS --- */
.section-header { text-align: center; margin-bottom: 56px; }
.section-eyebrow {
  font-size: 11px; font-weight: 700; letter-spacing: .3em;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 12px;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 5vw, 52px);
  color: var(--white); font-weight: 700;
  text-align: center;
}
.section-cta { text-align: center; margin-top: 48px; }

/* --- EVENT CARDS --- */
.events-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(340px, 1fr)); gap: 20px; }
.event-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  display: flex; flex-direction: column;
}
.event-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--border-2); }
.event-card-img {
  height: 200px; background: var(--surface-2);
  display: flex; align-items: center; justify-content: center;
  font-size: 64px; position: relative; overflow: hidden;
}
.event-card-img::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,10,10,.6) 0%, transparent 60%);
}
.event-card-badges {
  position: absolute; top: 12px; left: 12px; display: flex; gap: 6px; z-index: 1;
}
.badge {
  padding: 4px 10px; border-radius: 20px;
  font-size: 10px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
}
.badge-gold { background: var(--gold); color: var(--black); }
.badge-outline { background: rgba(0,0,0,.5); border: 1px solid rgba(255,255,255,.25); color: var(--white); backdrop-filter: blur(4px); }
.badge-green { background: var(--green); color: white; }
.event-card-body { padding: 20px; flex: 1; display: flex; flex-direction: column; gap: 12px; }
.event-date-row { display: flex; align-items: center; gap: 8px; }
.event-date { font-size: 12px; font-weight: 600; color: var(--gold); letter-spacing: .04em; }
.event-time { font-size: 12px; color: var(--text-muted); }
.event-name { font-family: 'Playfair Display', serif; font-size: 20px; color: var(--white); font-weight: 700; line-height: 1.25; }
.event-venue { font-size: 12px; color: var(--text-muted); }
.event-desc { font-size: 13px; color: var(--text-muted); line-height: 1.6; flex: 1; }
.event-footer { display: flex; align-items: center; justify-content: space-between; padding-top: 12px; border-top: 1px solid var(--border); margin-top: auto; }
.event-ticket-links { display: flex; gap: 8px; }
.ticket-link {
  padding: 6px 12px; border-radius: var(--radius);
  font-size: 11px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase;
  border: 1px solid var(--border-2); color: var(--text-muted);
  transition: all var(--transition);
}
.ticket-link:hover { border-color: var(--gold); color: var(--gold); background: var(--gold-fade); }
.event-price { font-size: 13px; font-weight: 700; color: var(--gold); }

/* --- SKELETON LOADER --- */
.event-skeleton {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-lg); height: 360px;
  animation: shimmer 1.5s ease-in-out infinite;
}
@keyframes shimmer {
  0%,100% { opacity: .4; }
  50% { opacity: .7; }
}

/* --- EXPERIENCE STRIP --- */
.experience-strip { background: var(--surface); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 80px 0; }
.strip-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--border); }
.strip-item {
  background: var(--surface); padding: 40px 32px;
  transition: background var(--transition);
}
.strip-item:hover { background: var(--surface-2); }
.strip-icon {
  display: block; font-size: 28px; color: var(--gold);
  margin-bottom: 20px; line-height: 1;
}
.strip-item h3 { font-size: 18px; color: var(--white); margin-bottom: 10px; }
.strip-item p { font-size: 14px; color: var(--text-muted); line-height: 1.6; margin-bottom: 20px; }
.strip-link { font-size: 12px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--gold); }
.strip-link:hover { color: var(--gold-light); }

/* --- GALLERY --- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 12px;
}
.gallery-item { border-radius: var(--radius); overflow: hidden; position: relative; }
.gallery-item--large { grid-column: span 2; }
.gallery-item--wide { grid-column: span 2; }
.gallery-placeholder {
  background: var(--surface-2); border: 1px solid var(--border);
  height: 240px; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 12px;
  transition: background var(--transition);
}
.gallery-item--large .gallery-placeholder { height: 320px; }
.gallery-item--wide .gallery-placeholder { height: 200px; }
.gallery-placeholder:hover { background: var(--surface-3); }
.gallery-icon { font-size: 40px; color: var(--gold); opacity: .5; }
.gallery-placeholder span { font-size: 13px; color: var(--text-dim); letter-spacing: .06em; text-transform: uppercase; }
.gallery-note { text-align: center; margin-top: 24px; font-size: 14px; color: var(--text-muted); }

/* --- ABOUT --- */
.about-section { background: var(--surface); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-card {
  background: linear-gradient(135deg, var(--surface-2), var(--surface-3));
  border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 48px; text-align: center; margin-bottom: 20px;
  position: relative; overflow: hidden;
}
.about-card::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 50%, var(--gold-fade) 0%, transparent 70%);
}
.about-card-inner { position: relative; z-index: 1; }
.about-symbol { display: block; font-size: 56px; color: var(--gold); margin-bottom: 20px; }
.about-tagline { font-family: 'Playfair Display', serif; font-size: 20px; font-style: italic; color: var(--text-muted); line-height: 1.5; }
.about-stat-row { display: flex; gap: 1px; background: var(--border); border-radius: var(--radius); overflow: hidden; }
.about-stat { flex: 1; background: var(--surface-2); padding: 20px; text-align: center; }
.stat-num { display: block; font-family: 'Playfair Display', serif; font-size: 28px; font-weight: 700; color: var(--gold); }
.stat-label { display: block; font-size: 11px; color: var(--text-muted); letter-spacing: .08em; text-transform: uppercase; margin-top: 4px; }
.about-text p { color: var(--text-muted); font-size: 15px; line-height: 1.8; margin-bottom: 18px; }
.about-integrations { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 28px; }
.integration-badge {
  padding: 6px 14px; border-radius: 20px;
  border: 1px solid var(--border-2); background: var(--surface-3);
  font-size: 12px; color: var(--text-muted); font-weight: 500;
}

/* --- CTA BANNER --- */
.cta-banner { background: linear-gradient(135deg, #1a0f00, #0f0b00); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 72px 0; }
.cta-banner-inner { display: flex; align-items: center; justify-content: space-between; gap: 40px; flex-wrap: wrap; }
.cta-banner h2 { font-family: 'Playfair Display', serif; font-size: 36px; color: var(--white); margin-bottom: 8px; }
.cta-banner p { color: var(--text-muted); font-size: 16px; }
.cta-banner-actions { display: flex; gap: 16px; flex-shrink: 0; flex-wrap: wrap; }

/* --- CONTACT --- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.contact-details { display: flex; flex-direction: column; gap: 20px; margin-top: 32px; }
.contact-item { display: flex; gap: 14px; align-items: flex-start; }
.contact-icon { font-size: 20px; flex-shrink: 0; margin-top: 2px; }
.contact-item strong { display: block; font-size: 12px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--gold); margin-bottom: 4px; }
.contact-item span { font-size: 14px; color: var(--text-muted); line-height: 1.6; }
.contact-item a { color: var(--text-muted); }
.contact-item a:hover { color: var(--gold); }
.social-links { display: flex; gap: 12px; margin-top: 32px; flex-wrap: wrap; }
.social-btn {
  padding: 9px 18px; border-radius: var(--radius);
  border: 1px solid var(--border-2); background: var(--surface-2);
  font-size: 13px; font-weight: 500; color: var(--text-muted);
  transition: all var(--transition);
}
.social-btn:hover { border-color: var(--gold); color: var(--gold); background: var(--gold-fade); }

/* --- FORMS --- */
.contact-form-wrap { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 40px; }
.contact-form h3 { font-size: 22px; color: var(--white); margin-bottom: 8px; }
.form-sub { font-size: 14px; color: var(--text-muted); margin-bottom: 28px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.form-group label { font-size: 12px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; color: var(--text-muted); }
.form-group input,
.form-group select,
.form-group textarea {
  background: var(--surface-2); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 11px 14px;
  font-size: 14px; font-family: 'Inter', sans-serif;
  color: var(--text); outline: none;
  transition: border-color var(--transition), background var(--transition);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--gold); background: var(--surface-3); }
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-dim); }
.form-group select option { background: var(--surface-2); }
.form-success { margin-top: 16px; padding: 14px; border-radius: var(--radius); background: rgba(47,158,68,.15); border: 1px solid rgba(47,158,68,.3); color: #69db7c; font-size: 14px; text-align: center; }
.form-error { margin-top: 8px; font-size: 12px; color: var(--red); }

/* --- PAGE HEADER (inner pages) --- */
.page-header {
  padding: 140px 0 60px;
  background: linear-gradient(180deg, var(--surface) 0%, var(--black) 100%);
  border-bottom: 1px solid var(--border);
  text-align: center;
}
.page-header .section-eyebrow { margin-bottom: 10px; }
.page-header h1 { font-family: 'Playfair Display', serif; font-size: clamp(36px, 6vw, 64px); color: var(--white); font-weight: 800; }
.page-header p { font-size: 16px; color: var(--text-muted); margin-top: 14px; max-width: 520px; margin-left: auto; margin-right: auto; }

/* --- FILTERS --- */
.filter-bar { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 40px; }
.filter-btn {
  padding: 8px 18px; border-radius: 24px;
  border: 1px solid var(--border-2); background: transparent;
  font-size: 12px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase;
  color: var(--text-muted); cursor: pointer; font-family: 'Inter', sans-serif;
  transition: all var(--transition);
}
.filter-btn:hover { border-color: var(--gold); color: var(--gold); }
.filter-btn.active { background: var(--gold); border-color: var(--gold); color: var(--black); }

/* --- RESERVATIONS --- */
.reservation-layout { display: grid; grid-template-columns: 1fr 380px; gap: 40px; align-items: start; }
.reservation-form-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 40px; }
.reservation-sidebar { display: flex; flex-direction: column; gap: 20px; }
.sidebar-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 28px; }
.sidebar-card h3 { font-size: 16px; font-weight: 700; color: var(--white); margin-bottom: 16px; }
.package-item { padding: 14px 0; border-bottom: 1px solid var(--border); }
.package-item:last-child { border-bottom: none; padding-bottom: 0; }
.package-name { font-weight: 600; color: var(--white); font-size: 14px; margin-bottom: 4px; }
.package-desc { font-size: 12px; color: var(--text-muted); margin-bottom: 6px; }
.package-price { font-size: 14px; font-weight: 700; color: var(--gold); }
.table-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.table-btn {
  padding: 14px 8px; border-radius: var(--radius);
  border: 1px solid var(--border-2); background: var(--surface-2);
  font-size: 12px; font-weight: 600; color: var(--text-muted);
  cursor: pointer; font-family: 'Inter', sans-serif; text-align: center;
  transition: all var(--transition);
}
.table-btn:hover:not(.taken) { border-color: var(--gold); color: var(--gold); background: var(--gold-fade); }
.table-btn.selected { background: var(--gold); border-color: var(--gold); color: var(--black); }
.table-btn.taken { opacity: .35; cursor: not-allowed; }
.table-legend { display: flex; gap: 16px; margin-top: 14px; font-size: 11px; color: var(--text-dim); }
.legend-dot { width: 10px; height: 10px; border-radius: 50%; display: inline-block; margin-right: 5px; }

/* --- GUEST LIST --- */
.guestlist-layout { display: grid; grid-template-columns: 1fr 360px; gap: 40px; align-items: start; }
.how-it-works { list-style: none; display: flex; flex-direction: column; gap: 16px; }
.how-it-works li { display: flex; gap: 14px; align-items: flex-start; }
.how-num { width: 28px; height: 28px; border-radius: 50%; background: var(--gold-fade); border: 1px solid var(--gold); color: var(--gold); font-size: 12px; font-weight: 700; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.how-text strong { display: block; font-size: 14px; color: var(--white); margin-bottom: 2px; }
.how-text span { font-size: 13px; color: var(--text-muted); }

/* --- ADMIN --- */
.admin-body { background: #0d0d0d; min-height: 100vh; }
.admin-nav {
  background: var(--surface); border-bottom: 1px solid var(--border);
  padding: 0 24px; position: sticky; top: 0; z-index: 100;
}
.admin-nav-inner { max-width: 1400px; margin: 0 auto; height: 64px; display: flex; align-items: center; gap: 24px; }
.admin-logo { font-family: 'Playfair Display', serif; font-size: 18px; font-weight: 700; color: var(--white); letter-spacing: .06em; }
.admin-logo span { color: var(--gold); }
.admin-nav-links { display: flex; gap: 4px; margin-left: auto; }
.admin-nav-links a { padding: 8px 14px; border-radius: var(--radius); font-size: 13px; font-weight: 500; color: var(--text-muted); text-transform: uppercase; letter-spacing: .04em; transition: all var(--transition); }
.admin-nav-links a:hover, .admin-nav-links a.active { color: var(--white); background: var(--surface-2); }
.admin-nav-links a.active { color: var(--gold); }
.admin-user { font-size: 13px; color: var(--text-muted); margin-left: 16px; padding-left: 16px; border-left: 1px solid var(--border); }
.admin-logout { padding: 8px 16px; border-radius: var(--radius); border: 1px solid var(--border-2); background: none; color: var(--text-muted); font-size: 12px; cursor: pointer; font-family: 'Inter', sans-serif; transition: all var(--transition); }
.admin-logout:hover { border-color: var(--red); color: var(--red); }

.admin-main { max-width: 1400px; margin: 0 auto; padding: 40px 24px; }
.admin-page-title { font-family: 'Playfair Display', serif; font-size: 28px; color: var(--white); margin-bottom: 4px; }
.admin-page-sub { font-size: 14px; color: var(--text-muted); margin-bottom: 40px; }

/* --- STATS CARDS --- */
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-bottom: 40px; }
.stat-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 24px; }
.stat-card-label { font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 10px; }
.stat-card-value { font-family: 'Playfair Display', serif; font-size: 36px; font-weight: 700; color: var(--white); line-height: 1; }
.stat-card-sub { font-size: 12px; color: var(--text-dim); margin-top: 6px; }
.stat-card-change { font-size: 12px; margin-top: 8px; }
.stat-card-change.up { color: var(--green); }
.stat-card-change.down { color: var(--red); }

/* --- ADMIN TABLE --- */
.admin-table-wrap { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; }
.admin-table-header { padding: 20px 24px; border-bottom: 1px solid var(--border); display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.admin-table-title { font-size: 16px; font-weight: 700; color: var(--white); }
.admin-search {
  background: var(--surface-2); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 8px 14px;
  font-size: 13px; font-family: 'Inter', sans-serif; color: var(--text);
  width: 240px; outline: none; transition: border-color var(--transition);
}
.admin-search:focus { border-color: var(--gold); }
.admin-search::placeholder { color: var(--text-dim); }
table { width: 100%; border-collapse: collapse; }
thead tr { background: var(--surface-2); }
th { padding: 12px 16px; text-align: left; font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--text-dim); white-space: nowrap; }
td { padding: 14px 16px; font-size: 13px; color: var(--text-muted); border-top: 1px solid var(--border); vertical-align: middle; }
tr:hover td { background: rgba(255,255,255,.02); }
.td-name { font-weight: 600; color: var(--white); font-size: 14px; }
.status-badge { padding: 3px 10px; border-radius: 20px; font-size: 11px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; display: inline-block; }
.status-pending { background: rgba(201,168,76,.15); color: var(--gold); }
.status-confirmed { background: rgba(47,158,68,.15); color: #69db7c; }
.status-denied { background: rgba(224,49,49,.15); color: #f03e3e; }
.status-active { background: rgba(47,158,68,.15); color: #69db7c; }
.status-draft { background: rgba(201,168,76,.12); color: var(--gold); }
.status-past { background: var(--surface-3); color: var(--text-dim); }
.td-actions { display: flex; gap: 8px; align-items: center; }
.action-btn {
  padding: 5px 12px; border-radius: var(--radius);
  font-size: 11px; font-weight: 600; letter-spacing: .04em;
  border: 1px solid var(--border-2); background: var(--surface-2);
  color: var(--text-muted); cursor: pointer; font-family: 'Inter', sans-serif;
  transition: all var(--transition);
}
.action-btn:hover { border-color: var(--gold); color: var(--gold); background: var(--gold-fade); }
.action-btn.confirm { border-color: rgba(47,158,68,.4); color: #69db7c; }
.action-btn.confirm:hover { background: rgba(47,158,68,.15); }
.action-btn.deny { border-color: rgba(224,49,49,.4); color: #f03e3e; }
.action-btn.deny:hover { background: rgba(224,49,49,.12); }
.table-empty { padding: 48px; text-align: center; color: var(--text-dim); font-size: 14px; }
.table-footer { padding: 14px 24px; border-top: 1px solid var(--border); font-size: 13px; color: var(--text-dim); }

/* --- MODAL --- */
.modal-overlay { position: fixed; inset: 0; background: rgba(0,0,0,.7); backdrop-filter: blur(6px); z-index: 2000; display: flex; align-items: center; justify-content: center; padding: 24px; opacity: 0; pointer-events: none; transition: opacity .2s; }
.modal-overlay.open { opacity: 1; pointer-events: all; }
.modal { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); width: 100%; max-width: 580px; max-height: 90vh; overflow-y: auto; transform: translateY(16px); transition: transform .2s; }
.modal-overlay.open .modal { transform: translateY(0); }
.modal-head { padding: 20px 24px; border-bottom: 1px solid var(--border); display: flex; align-items: center; justify-content: space-between; position: sticky; top: 0; background: var(--surface); z-index: 1; border-radius: var(--radius-lg) var(--radius-lg) 0 0; }
.modal-title { font-size: 18px; font-weight: 700; color: var(--white); }
.modal-close { width: 32px; height: 32px; border-radius: 50%; border: 1px solid var(--border-2); background: var(--surface-2); color: var(--text-muted); font-size: 16px; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: all var(--transition); }
.modal-close:hover { border-color: var(--text-muted); color: var(--white); }
.modal-body { padding: 28px 24px; }
.modal-footer { padding: 16px 24px; border-top: 1px solid var(--border); display: flex; gap: 12px; justify-content: flex-end; }

/* --- LOGIN --- */
.login-page { min-height: 100vh; display: flex; align-items: center; justify-content: center; background: var(--black); position: relative; overflow: hidden; }
.login-page::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 60% 60% at 50% 50%, rgba(201,168,76,.08) 0%, transparent 70%); }
.login-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 48px 40px; width: 100%; max-width: 420px; position: relative; z-index: 1; }
.login-logo { text-align: center; margin-bottom: 32px; }
.login-logo .nav-logo { font-size: 28px; display: inline-block; }
.login-title { text-align: center; font-size: 20px; color: var(--white); font-weight: 700; margin-bottom: 6px; }
.login-sub { text-align: center; font-size: 14px; color: var(--text-muted); margin-bottom: 32px; }
.login-error { background: rgba(224,49,49,.12); border: 1px solid rgba(224,49,49,.3); border-radius: var(--radius); padding: 12px; font-size: 13px; color: #f03e3e; margin-bottom: 20px; text-align: center; display: none; }

/* --- TOAST --- */
.toast { position: fixed; bottom: 28px; left: 50%; transform: translateX(-50%) translateY(80px); background: var(--surface-3); border: 1px solid var(--border-2); color: var(--text); padding: 13px 22px; border-radius: var(--radius); font-size: 14px; font-weight: 500; z-index: 5000; transition: transform .3s cubic-bezier(.4,0,.2,1); white-space: nowrap; box-shadow: var(--shadow-lg); }
.toast.show { transform: translateX(-50%) translateY(0); }
.toast.success { border-color: rgba(47,158,68,.4); color: #69db7c; background: rgba(47,158,68,.1); }
.toast.error { border-color: rgba(224,49,49,.4); color: #f03e3e; background: rgba(224,49,49,.1); }

/* --- FOOTER --- */
.footer { background: var(--surface); border-top: 1px solid var(--border); padding: 72px 0 0; }
.footer-inner { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 60px; padding-bottom: 48px; border-bottom: 1px solid var(--border); }
.footer-brand .nav-logo { font-size: 24px; display: inline-block; margin-bottom: 16px; }
.footer-brand p { font-size: 14px; color: var(--text-muted); line-height: 1.7; }
.footer-links-grid { display: contents; }
.footer-links-grid > div h4 { font-size: 11px; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: var(--text-dim); margin-bottom: 16px; }
.footer-links-grid ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links-grid a { font-size: 14px; color: var(--text-muted); transition: color var(--transition); }
.footer-links-grid a:hover { color: var(--gold); }
.footer-bottom { padding: 20px 0; }
.footer-bottom .container { display: flex; justify-content: space-between; align-items: center; gap: 20px; flex-wrap: wrap; }
.footer-bottom p { font-size: 12px; color: var(--text-dim); }
.footer-bottom a { color: var(--text-dim); }
.footer-bottom a:hover { color: var(--gold); }

/* --- RESPONSIVE --- */
@media (max-width: 1024px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .strip-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 40px; }
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .reservation-layout { grid-template-columns: 1fr; }
  .guestlist-layout { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .nav-links { display: none; position: fixed; top: 72px; left: 0; right: 0; background: var(--surface); border-bottom: 1px solid var(--border); flex-direction: column; gap: 0; padding: 16px 0; }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 14px 24px; }
  .nav-cta { display: none; }
  .hamburger { display: flex; }
  .hero-title { font-size: 56px; }
  .section { padding: 72px 0; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .events-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-item--large, .gallery-item--wide { grid-column: span 2; }
  .strip-grid { grid-template-columns: 1fr; }
  .strip-item { padding: 28px 24px; }
  .cta-banner-inner { flex-direction: column; text-align: center; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
  .form-row { grid-template-columns: 1fr; }
  .admin-nav-links { display: none; }
}
@media (max-width: 480px) {
  .hero-title { font-size: 44px; }
  .stats-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item--large, .gallery-item--wide { grid-column: span 1; }
}
