/* ─────────────────────────────────────────────────────────────────────────────
   Céline Dion — Paris 2026 · Luxury Ticket Listing
   Aesthetic: Sotheby's meets concert poster. Dark, cinematic, editorial.
   ───────────────────────────────────────────────────────────────────────────── */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700&display=swap');

:root {
  /* Palette */
  --color-bg:          #080808;
  --color-surface:     #181818;
  --color-surface-2:   #1e1e1e;
  --color-border:      #303030;
  --color-text:        #F0EDE6;
  --color-text-dim:    #999389;
  --color-muted:       #555;
  --color-gold:        #C9A96E;
  --color-gold-dim:    #A08550;
  --color-gold-glow:   rgba(201, 169, 110, 0.08);
  --color-sold:        #333;
  --color-sold-text:   #555;

  /* Typography */
  --font-display: 'Cormorant Garamond', 'Georgia', serif;
  --font-body:    'Haas Grot Text R', 'Helvetica Neue', 'Helvetica', 'Arial', sans-serif;

  /* Radii */
  --radius-card: 2px;
  --radius-pill: 100px;

  /* Shadows */
  --shadow-card:  0 1px 3px rgba(0,0,0,0.4);
  --shadow-hover: 0 8px 32px rgba(0,0,0,0.6), 0 0 0 1px var(--color-gold);
  --shadow-gold-glow: 0 0 40px rgba(201, 169, 110, 0.06);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--color-bg);
  color: var(--color-text);
  font-size: 14px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Selection */
::selection {
  background: var(--color-gold);
  color: var(--color-bg);
}

/* ══════════════════════════════════════════════════════════════════════════════
   HEADER — Massive editorial hero
   ══════════════════════════════════════════════════════════════════════════════ */
.site-header {
  position: relative;
  padding: 80px 32px 72px;
  text-align: center;
  overflow: hidden;
  background:
    radial-gradient(ellipse 80% 50% at 50% 100%, rgba(201, 169, 110, 0.04) 0%, transparent 70%),
    linear-gradient(180deg, #0a0a0a 0%, #080808 100%);
  border-bottom: 1px solid var(--color-border);
}

.header-grain {
  position: absolute;
  inset: 0;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 256px 256px;
  pointer-events: none;
}

.header-inner {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
}

.header-eyebrow {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 20px;
  font-weight: 400;
}

.header-name {
  font-family: var(--font-display);
  font-size: clamp(56px, 10vw, 120px);
  font-weight: 300;
  font-style: italic;
  line-height: 0.9;
  letter-spacing: -0.02em;
  color: var(--color-text);
  margin-bottom: 16px;
}

.header-sub {
  font-family: var(--font-display);
  font-size: clamp(16px, 2.5vw, 22px);
  font-weight: 300;
  font-style: italic;
  color: var(--color-text-dim);
  letter-spacing: 0.02em;
}

.header-meta {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 32px;
}

.badge-avail, .badge-sold {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: var(--radius-pill);
}

.badge-avail {
  background: rgba(201, 169, 110, 0.12);
  color: var(--color-gold);
  border: 1px solid rgba(201, 169, 110, 0.2);
}

.badge-sold {
  background: rgba(255,255,255,0.04);
  color: var(--color-muted);
  border: 1px solid rgba(255,255,255,0.06);
}


/* ══════════════════════════════════════════════════════════════════════════════
   SOCIAL PROOF BAR
   ══════════════════════════════════════════════════════════════════════════════ */
.social-proof-bar {
  background: rgba(201, 169, 110, 0.06);
  border-bottom: 1px solid rgba(201, 169, 110, 0.1);
  padding: 10px 32px;
  text-align: center;
}

.social-proof-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.social-proof-item {
  font-size: 12px;
  color: var(--color-text-dim);
  letter-spacing: 0.02em;
}

.social-proof-item strong {
  color: var(--color-gold);
  font-weight: 500;
}

.social-proof-sep {
  color: rgba(255,255,255,0.1);
  font-size: 10px;
}


/* ══════════════════════════════════════════════════════════════════════════════
   FILTERS — Sticky dark glass bar
   ══════════════════════════════════════════════════════════════════════════════ */
.filters-bar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(8, 8, 8, 0.85);
  backdrop-filter: blur(24px) saturate(120%);
  -webkit-backdrop-filter: blur(24px) saturate(120%);
  border-bottom: 1px solid var(--color-border);
}

.filters-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px 32px;
  display: flex;
  gap: 32px;
  align-items: center;
  flex-wrap: wrap;
}

.filter-group {
  display: flex;
  align-items: center;
  gap: 10px;
}

.filter-label {
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-muted);
  white-space: nowrap;
}

.filter-pills {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.pill {
  background: transparent;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-pill);
  padding: 5px 14px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 400;
  color: var(--color-text-dim);
  cursor: pointer;
  transition: all 0.25s ease;
  white-space: nowrap;
}

.pill:hover {
  border-color: var(--color-gold-dim);
  color: var(--color-text);
}

.pill.active {
  background: var(--color-gold);
  border-color: var(--color-gold);
  color: var(--color-bg);
  font-weight: 500;
}

.filter-price {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Custom range slider */
#price-range {
  -webkit-appearance: none;
  appearance: none;
  width: 120px;
  height: 2px;
  background: var(--color-border);
  border-radius: 2px;
  outline: none;
}

#price-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--color-gold);
  border: 2px solid var(--color-bg);
  cursor: pointer;
  box-shadow: 0 0 12px rgba(201, 169, 110, 0.3);
  transition: box-shadow 0.2s;
}

#price-range::-webkit-slider-thumb:hover {
  box-shadow: 0 0 20px rgba(201, 169, 110, 0.5);
}

#price-range::-moz-range-thumb {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--color-gold);
  border: 2px solid var(--color-bg);
  cursor: pointer;
}

#price-display {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 500;
  color: var(--color-gold);
  min-width: 70px;
  text-align: right;
}


/* ══════════════════════════════════════════════════════════════════════════════
   RESULTS BAR
   ══════════════════════════════════════════════════════════════════════════════ */
.results-bar {
  max-width: 1200px;
  margin: 0 auto;
  padding: 24px 32px 8px;
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--color-muted);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.results-request-link {
  font-family: var(--font-display);
  font-size: 13px;
  font-style: italic;
  color: var(--color-gold);
  text-decoration: none;
  transition: color 0.2s;
}

.results-request-link:hover {
  color: #d4b87a;
}


/* ══════════════════════════════════════════════════════════════════════════════
   TICKET GRID
   ══════════════════════════════════════════════════════════════════════════════ */
.tickets-grid {
  max-width: 1200px;
  margin: 0 auto;
  padding: 8px 32px 80px;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 16px;
}


/* ══════════════════════════════════════════════════════════════════════════════
   TICKET CARD — Elegant dark panels
   ══════════════════════════════════════════════════════════════════════════════ */
.ticket-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  padding: 24px 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1);

  /* Staggered entrance animation */
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.5s ease forwards;
}

/* Gold left-border accent */
.ticket-card::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--color-gold);
  opacity: 0.15;
  transition: opacity 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.ticket-card:hover {
  border-color: rgba(201, 169, 110, 0.3);
  transform: translateY(-4px);
  box-shadow: var(--shadow-gold-glow);
  background: var(--color-surface-2);
}

.ticket-card:hover::after {
  opacity: 1;
}

/* Stagger animation delays (set via JS) */
@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ── Sold card state ─────────────────────────────────────────────────────── */
.ticket-card.is-sold {
  background: rgba(17, 17, 17, 0.5);
  border-color: rgba(34, 34, 34, 0.5);
  cursor: default;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.5s ease forwards;
}

.ticket-card.is-sold:hover {
  transform: none;
  box-shadow: none;
  border-color: rgba(34, 34, 34, 0.5);
  background: rgba(17, 17, 17, 0.5);
}

.ticket-card.is-sold::after {
  opacity: 0;
}

.ticket-card.is-sold:hover::after {
  opacity: 0;
}

/* VENDU diagonal ribbon */
.ticket-card.is-sold::before {
  content: "VENDU";
  position: absolute;
  top: 18px;
  right: -28px;
  background: var(--color-sold);
  color: var(--color-sold-text);
  font-family: var(--font-body);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.2em;
  padding: 4px 36px;
  transform: rotate(35deg);
  z-index: 2;
}


/* ── Card elements ───────────────────────────────────────────────────────── */
/* "Dernier lot" badge */
.card-badge-last {
  position: absolute;
  top: 12px;
  left: 12px;
  font-family: var(--font-body);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  background: #b44a3d;
  padding: 3px 10px;
  border-radius: 2px;
  z-index: 2;
  animation: pulse-badge 2s ease-in-out infinite;
}

@keyframes pulse-badge {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}

/* Qty badge — top right of card */
.card-qty-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 600;
  color: var(--color-gold);
  line-height: 1;
  text-align: center;
}

.card-qty-badge span {
  display: block;
  font-family: var(--font-body);
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text-dim);
  margin-top: 2px;
}

.is-sold .card-qty-badge {
  color: var(--color-sold-text);
}

.is-sold .card-qty-badge span {
  color: var(--color-sold-text);
}

.card-date {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-gold);
}

.card-category {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  font-style: italic;
  line-height: 1.15;
  color: var(--color-text);
}

.is-sold .card-category {
  color: var(--color-sold-text);
  text-decoration: line-through;
  text-decoration-color: rgba(85, 85, 85, 0.4);
  text-decoration-thickness: 1px;
}

.card-details {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.card-detail-row {
  display: flex;
  justify-content: space-between;
  padding: 6px 0;
  font-size: 12px;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

.card-detail-row:last-child {
  border-bottom: none;
}

.card-detail-row span:first-child {
  color: var(--color-muted);
}

.card-detail-row span:last-child {
  font-weight: 400;
  color: var(--color-text-dim);
}

.is-sold .card-detail-row span:last-child {
  color: var(--color-sold-text);
}

/* ── Rang 1 banner ───────────────────────────────────────────────────────── */
.card-rang-one {
  display: flex;
  align-items: center;
  gap: 8px;
  width: calc(100% + 40px);
  margin-left: -20px;
  margin-right: -20px;
  padding: 10px 20px;
  background: linear-gradient(90deg, rgba(201,169,110,0.18) 0%, rgba(201,169,110,0.08) 60%, transparent 100%);
  border-top: 1px solid rgba(201,169,110,0.25);
  border-bottom: 1px solid rgba(201,169,110,0.25);
  font-family: var(--font-body);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-gold);
  animation: rang-one-pulse 3s ease-in-out infinite;
}

.card-rang-one-star {
  font-size: 13px;
  flex-shrink: 0;
  filter: drop-shadow(0 0 6px rgba(201,169,110,0.6));
}

@keyframes rang-one-pulse {
  0%, 100% { background: linear-gradient(90deg, rgba(201,169,110,0.18) 0%, rgba(201,169,110,0.08) 60%, transparent 100%); }
  50%       { background: linear-gradient(90deg, rgba(201,169,110,0.28) 0%, rgba(201,169,110,0.14) 60%, transparent 100%); }
}

/* Modal rang 1 block */
.modal-rang-one {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  background: linear-gradient(135deg, rgba(201,169,110,0.14) 0%, rgba(201,169,110,0.05) 100%);
  border: 1px solid rgba(201,169,110,0.3);
  border-radius: 2px;
  margin-bottom: 4px;
}

.modal-rang-one-icon {
  font-size: 28px;
  color: var(--color-gold);
  filter: drop-shadow(0 0 10px rgba(201,169,110,0.5));
  flex-shrink: 0;
  animation: rang-one-pulse 3s ease-in-out infinite;
}

.modal-rang-one > div {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.modal-rang-one-headline {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-gold);
}

.modal-rang-one-sub {
  font-family: var(--font-display);
  font-size: 15px;
  font-style: italic;
  font-weight: 400;
  color: var(--color-text);
  line-height: 1.3;
}

/* ── Cérémonie d'ouverture badge ─────────────────────────────────────────── */
.card-badge-ceremonie {
  position: absolute;
  top: 12px;
  right: 12px;
  font-family: var(--font-body);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #080808;
  background: linear-gradient(135deg, #e8c97a 0%, #c9a96e 60%, #a07840 100%);
  padding: 5px 10px;
  border-radius: 2px;
  box-shadow: 0 2px 12px rgba(201,169,110,0.5);
  white-space: nowrap;
  animation: ceremonie-glow 2.5s ease-in-out infinite;
}

@keyframes ceremonie-glow {
  0%, 100% { box-shadow: 0 2px 12px rgba(201,169,110,0.5); }
  50%       { box-shadow: 0 2px 20px rgba(201,169,110,0.85), 0 0 0 1px rgba(201,169,110,0.3); }
}

/* Modal ceremonie block */
.modal-ceremonie {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 20px;
  background: linear-gradient(135deg, rgba(201,169,110,0.22) 0%, rgba(201,169,110,0.06) 100%);
  border: 1px solid rgba(201,169,110,0.45);
  border-radius: 2px;
  margin-bottom: 4px;
}

.modal-ceremonie-icon {
  font-size: 30px;
  color: var(--color-gold);
  filter: drop-shadow(0 0 12px rgba(201,169,110,0.7));
  flex-shrink: 0;
  animation: ceremonie-glow 2.5s ease-in-out infinite;
}

.modal-ceremonie > div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.modal-ceremonie-headline {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-gold);
}

.modal-ceremonie-sub {
  font-family: var(--font-display);
  font-size: 16px;
  font-style: italic;
  font-weight: 400;
  color: var(--color-text);
  line-height: 1.3;
}

.card-consec {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 400;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  background: rgba(201, 169, 110, 0.08);
  color: var(--color-gold);
  width: fit-content;
  letter-spacing: 0.02em;
}

.card-consec.not-consec {
  background: rgba(255,255,255,0.04);
  color: var(--color-muted);
}

.is-sold .card-consec {
  background: rgba(255,255,255,0.02);
  color: var(--color-sold-text);
}

.card-footer {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid var(--color-border);
}

.card-price {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 600;
  color: var(--color-text);
  line-height: 1;
}

.is-sold .card-price {
  color: var(--color-sold-text);
  text-decoration: line-through;
  text-decoration-thickness: 1px;
}

.card-price-label {
  font-size: 10px;
  color: var(--color-muted);
  margin-top: 2px;
  letter-spacing: 0.04em;
}

.card-qty {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.06em;
  background: rgba(255,255,255,0.05);
  padding: 5px 12px;
  border-radius: var(--radius-pill);
  color: var(--color-text-dim);
  border: 1px solid rgba(255,255,255,0.06);
}

.is-sold .card-qty {
  color: var(--color-sold-text);
  border-color: rgba(255,255,255,0.03);
  background: rgba(255,255,255,0.02);
}


/* ══════════════════════════════════════════════════════════════════════════════
   MODAL — Full-screen cinematic overlay
   ══════════════════════════════════════════════════════════════════════════════ */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  animation: modalBgIn 0.3s ease;
}

.modal-overlay[hidden] { display: none; }

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

.modal {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 4px;
  max-width: 580px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  padding: 36px;
  animation: modalIn 0.35s cubic-bezier(0.22, 1, 0.36, 1);

  /* Subtle gold top line */
  box-shadow:
    inset 0 1px 0 0 rgba(201, 169, 110, 0.15),
    0 24px 80px rgba(0,0,0,0.5);
}

@keyframes modalIn {
  from {
    opacity: 0;
    transform: scale(0.96) translateY(12px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

/* Scrollbar styling for modal */
.modal::-webkit-scrollbar {
  width: 4px;
}
.modal::-webkit-scrollbar-track {
  background: transparent;
}
.modal::-webkit-scrollbar-thumb {
  background: var(--color-border);
  border-radius: 4px;
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--color-border);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 16px;
  color: var(--color-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  line-height: 1;
}

.modal-close:hover {
  background: rgba(255,255,255,0.08);
  color: var(--color-text);
  border-color: rgba(255,255,255,0.1);
}

.modal-body {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.modal-date {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-gold);
}

.modal-cat {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 500;
  font-style: italic;
  line-height: 1.15;
  color: var(--color-text);
}

.modal-image {
  width: 100%;
  border-radius: 3px;
  overflow: hidden;
  background: var(--color-surface-2);
  min-height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-muted);
  font-size: 12px;
  border: 1px solid var(--color-border);
}

.modal-image img {
  width: 100%;
  display: block;
  border-radius: 3px;
}

.modal-image span {
  padding: 24px;
  text-align: center;
  line-height: 1.6;
}

.modal-table {
  width: 100%;
  border-collapse: collapse;
}

.modal-table tr {
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.modal-table tr:last-child {
  border-bottom: none;
}

.modal-table td {
  padding: 10px 0;
  font-size: 13px;
}

.modal-table td:first-child {
  color: var(--color-muted);
  width: 45%;
  font-size: 12px;
  letter-spacing: 0.02em;
}

.modal-table td:last-child {
  font-weight: 400;
  color: var(--color-text-dim);
  text-align: right;
}

.modal-price-block {
  background: rgba(201, 169, 110, 0.06);
  border: 1px solid rgba(201, 169, 110, 0.12);
  border-radius: 3px;
  padding: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.modal-price {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 600;
  color: var(--color-text);
  line-height: 1;
}

.modal-price-note {
  font-size: 11px;
  color: var(--color-muted);
  letter-spacing: 0.02em;
}

.modal-urgency {
  color: #b44a3d;
  font-size: 10px;
  font-style: italic;
}

.modal-viewers {
  font-size: 12px;
  color: var(--color-text-dim);
  text-align: center;
  padding: 10px 16px;
  background: rgba(255,255,255,0.02);
  border-radius: 3px;
  border: 1px solid rgba(255,255,255,0.04);
}

.modal-disclaimer {
  font-size: 11px;
  color: var(--color-muted);
  font-style: italic;
  text-align: center;
  padding: 12px 16px;
  border: 1px dashed rgba(255,255,255,0.08);
  border-radius: 3px;
  line-height: 1.5;
}

.modal-contact {
  text-align: center;
  padding: 20px;
  border: 1px solid var(--color-border);
  border-radius: 3px;
}

.modal-contact p {
  font-family: var(--font-display);
  font-size: 16px;
  font-style: italic;
  color: var(--color-text-dim);
  margin-bottom: 12px;
}

.modal-contact a {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-bg);
  background: var(--color-gold);
  padding: 10px 28px;
  border-radius: var(--radius-pill);
  text-decoration: none;
  transition: all 0.25s ease;
}

.modal-contact a:hover {
  background: #d4b87a;
  box-shadow: 0 0 20px rgba(201, 169, 110, 0.3);
}


/* ══════════════════════════════════════════════════════════════════════════════
   EMPTY STATE
   ══════════════════════════════════════════════════════════════════════════════ */
.empty-state {
  grid-column: 1 / -1;
  text-align: center;
  padding: 80px 24px;
}

.empty-state p {
  font-family: var(--font-display);
  font-size: 20px;
  font-style: italic;
  color: var(--color-muted);
}


/* ══════════════════════════════════════════════════════════════════════════════
   REQUEST FORM
   ══════════════════════════════════════════════════════════════════════════════ */
.request-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 32px 60px;
}

.request-inner {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 4px;
  padding: 40px 36px;
  text-align: center;
  box-shadow:
    inset 0 1px 0 0 rgba(201, 169, 110, 0.1),
    0 8px 32px rgba(0,0,0,0.3);
}

.request-title {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 400;
  font-style: italic;
  color: var(--color-text);
  margin-bottom: 8px;
}

.request-subtitle {
  font-size: 13px;
  color: var(--color-text-dim);
  margin-bottom: 32px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.request-form {
  max-width: 560px;
  margin: 0 auto;
}

.request-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 24px;
}

.request-field {
  text-align: left;
}

.request-field label {
  display: block;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-muted);
  margin-bottom: 6px;
}

.request-field select {
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--color-border);
  border-radius: 3px;
  padding: 10px 14px;
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--color-text);
  outline: none;
  cursor: pointer;
  transition: border-color 0.25s;
  -webkit-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23999' d='M1.4 0L6 4.6 10.6 0 12 1.4l-6 6-6-6z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
}

.request-field select:focus {
  border-color: var(--color-gold);
  box-shadow: 0 0 0 1px rgba(201, 169, 110, 0.2);
}

.request-field select option {
  background: #1a1a1a;
  color: var(--color-text);
}

.request-submit {
  background: var(--color-gold);
  color: var(--color-bg);
  border: none;
  border-radius: var(--radius-pill);
  padding: 12px 36px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.25s;
}

.request-submit:hover {
  background: #d4b87a;
  box-shadow: 0 0 20px rgba(201, 169, 110, 0.3);
}

.request-budget-note {
  font-size: 10px;
  font-style: italic;
  color: var(--color-muted);
  margin-bottom: 20px;
  text-align: left;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.request-guarantee {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--color-border);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.request-guarantee-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  color: var(--color-text-dim);
  text-align: left;
}

.guarantee-icon {
  color: var(--color-gold);
  font-size: 14px;
  flex-shrink: 0;
}


/* ══════════════════════════════════════════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════════════════════════════════════════ */
.site-footer {
  text-align: center;
  padding: 40px 32px;
  border-top: 1px solid var(--color-border);
}

.footer-disclaimer {
  font-family: var(--font-display);
  font-size: 14px;
  font-style: italic;
  color: var(--color-text-dim);
  margin-bottom: 16px;
}

.footer-lead {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-muted);
  margin-bottom: 4px;
}

.footer-sub {
  font-family: var(--font-display);
  font-size: 14px;
  font-style: italic;
  color: var(--color-sold-text);
}

.footer-sub a {
  color: var(--color-gold);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-sub a:hover {
  color: #d4b87a;
}


/* ══════════════════════════════════════════════════════════════════════════════
   RESPONSIVE — Tablet
   ══════════════════════════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  .site-header {
    padding: 44px 16px 36px;
  }

  .header-name {
    font-size: 64px;
  }

  .header-meta {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    margin-top: 24px;
  }

  .social-proof-bar {
    padding: 8px 16px;
  }

  .social-proof-inner {
    gap: 8px;
  }

  .social-proof-item {
    font-size: 11px;
  }

  .social-proof-sep {
    display: none;
  }

  /* Filters: vertical stacking with horizontal scroll per row */
  .filters-bar {
    padding: 0;
  }

  .filters-inner {
    padding: 12px 16px;
    gap: 12px;
    flex-direction: column;
    align-items: flex-start;
  }

  .filter-group {
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }

  .filter-pills {
    overflow-x: auto;
    flex-wrap: nowrap;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 4px;
    width: 100%;
  }

  .filter-pills::-webkit-scrollbar {
    display: none;
  }

  .filter-price {
    width: 100%;
  }

  #price-range {
    flex: 1;
    width: 100%;
  }

  /* Grid: single column */
  .tickets-grid {
    grid-template-columns: 1fr;
    padding: 8px 16px 60px;
    gap: 12px;
  }

  .results-bar {
    padding: 16px 16px 8px;
  }

  /* Modal: full width mobile */
  .modal-overlay {
    padding: 0;
    align-items: flex-end;
  }

  .modal {
    padding: 24px 20px;
    max-height: 92vh;
    margin: 0;
    border-radius: 12px 12px 0 0;
    max-width: 100%;
  }

  .modal-cat {
    font-size: 26px;
  }

  .modal-price {
    font-size: 32px;
  }

  .modal-price-block {
    flex-direction: column;
    gap: 12px;
    text-align: center;
    padding: 20px 16px;
  }

  .modal-price-block .modal-price-note {
    text-align: center !important;
  }

  .modal-table td {
    font-size: 12px;
    padding: 8px 0;
  }

  .modal-contact {
    padding: 16px;
  }

  /* Cards */
  .ticket-card {
    padding: 20px 18px 16px;
  }

  .card-category {
    font-size: 20px;
    padding-right: 50px;
  }

  .card-price {
    font-size: 24px;
  }

  /* Request form */
  .request-section {
    padding: 32px 16px 48px;
  }

  .request-inner {
    padding: 28px 20px;
  }

  .request-title {
    font-size: 22px;
  }

  .request-fields {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  /* Footer */
  .site-footer {
    padding: 32px 16px;
  }

  .footer-disclaimer {
    font-size: 12px;
  }
}

/* ══════════════════════════════════════════════════════════════════════════════
   RESPONSIVE — Small phone
   ══════════════════════════════════════════════════════════════════════════════ */
@media (max-width: 480px) {
  .site-header {
    padding: 36px 16px 28px;
  }

  .header-eyebrow {
    font-size: 9px;
    letter-spacing: 0.2em;
  }

  .header-name {
    font-size: 48px;
  }

  .header-sub {
    font-size: 14px;
  }

  .badge-avail, .badge-sold {
    font-size: 10px;
    padding: 4px 12px;
  }

  .filter-label {
    font-size: 9px;
  }

  .pill {
    font-size: 11px;
    padding: 4px 10px;
  }

  .card-qty-badge {
    font-size: 20px;
  }

  .card-qty-badge span {
    font-size: 8px;
  }

  .card-detail-row {
    font-size: 11px;
  }

  .card-footer {
    padding-top: 10px;
  }

  .card-qty {
    font-size: 10px;
    padding: 4px 10px;
  }

  /* Gate page */
  .gate-content {
    padding: 32px 16px;
  }

  .gate-title {
    font-size: 44px;
  }

  .gate-subtitle {
    font-size: 14px;
    margin-bottom: 32px;
  }

  .gate-box {
    padding: 24px 18px;
  }

  .gate-form {
    flex-direction: column;
    gap: 8px;
  }

  .gate-btn {
    width: 100%;
    padding: 14px;
  }

  .gate-input {
    width: 100%;
    text-align: center;
  }

  .gate-notice {
    font-size: 14px;
  }
}


/* ══════════════════════════════════════════════════════════════════════════════
   GATE PAGE — Access code entry
   ══════════════════════════════════════════════════════════════════════════════ */
.gate {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 60% 40% at 50% 60%, rgba(201, 169, 110, 0.05) 0%, transparent 70%),
    linear-gradient(180deg, #0a0a0a 0%, #080808 100%);
}

.gate-grain {
  position: absolute;
  inset: 0;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 256px 256px;
  pointer-events: none;
}

.gate-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 440px;
  padding: 40px 24px;
  animation: fadeInUp 0.6s ease forwards;
}

.gate-eyebrow {
  font-family: var(--font-body);
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 16px;
}

.gate-title {
  font-family: var(--font-display);
  font-size: clamp(52px, 10vw, 88px);
  font-weight: 300;
  font-style: italic;
  line-height: 0.9;
  color: var(--color-text);
  margin-bottom: 12px;
}

.gate-subtitle {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 300;
  font-style: italic;
  color: var(--color-text-dim);
  margin-bottom: 48px;
}

.gate-box {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 4px;
  padding: 32px 28px;
  box-shadow:
    inset 0 1px 0 0 rgba(201, 169, 110, 0.1),
    0 16px 48px rgba(0,0,0,0.4);
}

.gate-notice {
  font-family: var(--font-display);
  font-size: 15px;
  font-style: italic;
  color: var(--color-text-dim);
  line-height: 1.6;
  margin-bottom: 28px;
}

.gate-form {
  display: flex;
  gap: 10px;
  margin-bottom: 16px;
}

.gate-input {
  flex: 1;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--color-border);
  border-radius: 3px;
  padding: 12px 16px;
  font-family: var(--font-body);
  font-size: 14px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text);
  outline: none;
  transition: border-color 0.25s;
}

.gate-input::placeholder {
  color: var(--color-muted);
  text-transform: none;
  letter-spacing: 0.02em;
}

.gate-input:focus {
  border-color: var(--color-gold);
  box-shadow: 0 0 0 1px rgba(201, 169, 110, 0.2);
}

.gate-btn {
  background: var(--color-gold);
  color: var(--color-bg);
  border: none;
  border-radius: 3px;
  padding: 12px 24px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.25s;
  white-space: nowrap;
}

.gate-btn:hover {
  background: #d4b87a;
  box-shadow: 0 0 20px rgba(201, 169, 110, 0.3);
}

.gate-btn:disabled {
  opacity: 0.6;
  cursor: wait;
}

.gate-error {
  font-size: 13px;
  color: #c0554d;
  min-height: 20px;
  margin-bottom: 8px;
}

.gate-help {
  font-size: 12px;
  color: var(--color-muted);
  line-height: 1.6;
}

.gate-help a {
  color: var(--color-gold);
  text-decoration: none;
  transition: color 0.2s;
}

.gate-help a:hover {
  color: #d4b87a;
}

.gate-legal {
  margin-top: 24px;
  font-size: 11px;
  color: var(--color-muted);
  font-style: italic;
}
