/* ============================================================
   LE CUBE — Global Styles
   ============================================================ */

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

:root {
  --c-bg: #0a0a0a;
  --c-text: #f5f5f5;
  --c-muted: #888;
  --c-accent: #6c8cff;
  --c-accent-hover: #8aa2ff;
  --c-border: rgba(255,255,255,0.12);
  --c-border-strong: rgba(255,255,255,0.24);
  --c-surface: #141414;
  --c-surface-2: #1a1a1a;
  --c-surface-3: #222;
  --c-error: #ff5c5c;
  --c-success: #4caf50;
  --ff-sans: 'Inter', system-ui, -apple-system, sans-serif;
  --max-w: 1280px;
  --pad-desktop: 40px;
  --pad-mobile: 20px;
  --r-sm: 6px;
  --r-md: 12px;
  --r-lg: 20px;
  --t-fast: 150ms ease;
  --t-base: 250ms ease;
  --t-slow: 400ms ease;
  --sp-4: 4px;
  --sp-8: 8px;
  --sp-12: 12px;
  --sp-16: 16px;
  --sp-20: 20px;
  --sp-24: 24px;
  --sp-32: 32px;
  --sp-40: 40px;
  --sp-48: 48px;
  --sp-64: 64px;
  --sp-80: 80px;
  --sp-120: 120px;
  --header-h: 80px;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--ff-sans);
  background-color: var(--c-bg);
  color: var(--c-text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
button, input, select, textarea { font-family: inherit; }
ul, ol { list-style: none; }

/* ---- Typography ---- */
h1, h2, h3, h4, h5, h6 {
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.4rem, 6vw, 5rem); }
h2 { font-size: clamp(1.8rem, 4vw, 3.2rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 2rem); }
h4 { font-size: 1.2rem; }
h5 { font-size: 1rem; }

p { line-height: 1.7; color: var(--c-muted); }

.text-accent { color: var(--c-accent); }
.text-muted { color: var(--c-muted); }
.text-center { text-align: center; }

/* ---- Layout Utilities ---- */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--pad-desktop);
}

.section-pad {
  padding-block: var(--sp-120);
}

.section-pad-sm {
  padding-block: var(--sp-80);
}

/* ---- Navigation ---- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 20px var(--pad-desktop);
  transition: background var(--t-base), backdrop-filter var(--t-base), box-shadow var(--t-base);
}

.site-header.scrolled {
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--c-border);
}

.nav-inner {
  max-width: var(--max-w);
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-size: 17px;
  font-weight: 900;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: var(--c-text);
  text-decoration: none;
  transition: opacity var(--t-base);
}

.nav-logo:hover { opacity: 0.8; }

.nav-ctas {
  display: flex;
  align-items: center;
  gap: var(--sp-12);
}

.nav-link {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--c-muted);
  text-decoration: none;
  padding: 4px 0;
  border-bottom: 1px solid transparent;
  transition: color var(--t-base), border-color var(--t-base);
}

.nav-link:hover,
.nav-link--active {
  color: var(--c-text);
  border-bottom-color: var(--c-accent);
}

.nav-cart-btn {
  background: none;
  border: 1px solid var(--c-border);
  border-radius: var(--r-sm);
  color: var(--c-text);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 7px 10px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: border-color var(--t-base), color var(--t-base);
  position: relative;
}

.nav-cart-btn:hover {
  border-color: var(--c-accent);
  color: var(--c-accent);
}

.cart-badge {
  position: absolute;
  top: -6px;
  right: -6px;
  background: var(--c-accent);
  color: #fff;
  border-radius: 50%;
  font-size: 10px;
  font-weight: 700;
  width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-8);
  padding: 14px 28px;
  border-radius: var(--r-sm);
  font-family: var(--ff-sans);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  border: 1.5px solid transparent;
  transition: transform var(--t-fast), box-shadow var(--t-fast), background-color var(--t-fast), border-color var(--t-fast), color var(--t-fast);
}

.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background-color: var(--c-text);
  color: var(--c-bg);
  border-color: var(--c-text);
}

.btn-primary:hover {
  background-color: rgba(245, 245, 245, 0.88);
  box-shadow: 0 6px 28px rgba(255, 255, 255, 0.14);
}

.btn-outline {
  background-color: transparent;
  color: var(--c-text);
  border-color: rgba(255, 255, 255, 0.38);
}

.btn-outline:hover {
  border-color: var(--c-text);
  box-shadow: 0 0 24px rgba(108, 140, 255, 0.15);
}

.btn-accent {
  background-color: var(--c-accent);
  color: #fff;
  border-color: var(--c-accent);
}

.btn-accent:hover {
  background-color: var(--c-accent-hover);
  box-shadow: 0 6px 28px rgba(108, 140, 255, 0.35);
}

.btn-ghost {
  background-color: transparent;
  color: var(--c-muted);
  border-color: transparent;
}

.btn-ghost:hover {
  color: var(--c-text);
  border-color: var(--c-border);
}

.btn-sm { padding: 10px 20px; font-size: 12px; }
.btn-lg { padding: 18px 40px; font-size: 15px; }
.btn-full { width: 100%; }

.btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  transform: none;
}

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

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(10, 10, 10, 0.3) 0%,
    rgba(10, 10, 10, 0.6) 60%,
    rgba(10, 10, 10, 0.95) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  padding-inline: var(--pad-desktop);
}

.hero-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--c-accent);
  margin-bottom: var(--sp-20);
  display: block;
}

.hero-title {
  font-size: clamp(3rem, 8vw, 7rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: var(--sp-24);
  color: var(--c-text);
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: rgba(245, 245, 245, 0.75);
  margin-bottom: var(--sp-40);
  max-width: 560px;
  margin-inline: auto;
  line-height: 1.6;
}

.hero-ctas {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-16);
  flex-wrap: wrap;
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--c-muted);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: bounce 2s ease-in-out infinite;
}

.hero-scroll svg {
  width: 20px;
  height: 20px;
  stroke: var(--c-muted);
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* ---- Section Labels ---- */
.section-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--c-accent);
  margin-bottom: var(--sp-16);
  display: block;
}

.section-title {
  margin-bottom: var(--sp-24);
}

.section-desc {
  max-width: 560px;
  margin-bottom: var(--sp-40);
  color: var(--c-muted);
  font-size: 1.05rem;
}

/* ---- Event Card (Homepage) ---- */
.next-event {
  background: var(--c-surface);
  padding-block: var(--sp-120);
}

.event-card {
  background: var(--c-surface-2);
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 440px;
  transition: border-color var(--t-base);
}

.event-card:hover { border-color: var(--c-border-strong); }

.event-card-img {
  position: relative;
  overflow: hidden;
}

.event-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--t-slow);
}

.event-card:hover .event-card-img img { transform: scale(1.04); }

.event-card-body {
  padding: var(--sp-48);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.event-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(108, 140, 255, 0.12);
  border: 1px solid rgba(108, 140, 255, 0.25);
  color: var(--c-accent);
  border-radius: 100px;
  padding: 6px 14px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: var(--sp-20);
  width: fit-content;
}

.event-tag-dot {
  width: 6px;
  height: 6px;
  background: var(--c-accent);
  border-radius: 50%;
  animation: pulse-dot 1.5s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.7); }
}

.event-card-title {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 900;
  margin-bottom: var(--sp-16);
}

.event-meta {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: var(--sp-32);
}

.event-meta-row {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--c-muted);
}

.event-meta-row svg {
  width: 16px;
  height: 16px;
  stroke: var(--c-accent);
  flex-shrink: 0;
}

.event-card-ctas {
  display: flex;
  gap: var(--sp-12);
  flex-wrap: wrap;
}

/* ---- Lineup Section ---- */
.lineup-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: var(--sp-24);
  margin-top: var(--sp-48);
}

.lineup-card {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--r-md);
  padding: var(--sp-32);
  transition: border-color var(--t-base), transform var(--t-base);
}

.lineup-card:hover {
  border-color: var(--c-accent);
  transform: translateY(-4px);
}

.lineup-time {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--c-accent);
  text-transform: uppercase;
  margin-bottom: 8px;
}

.lineup-name {
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 6px;
}

.lineup-genre {
  font-size: 12px;
  color: var(--c-muted);
}

/* ---- About Section ---- */
.about-section {
  padding-block: var(--sp-120);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-80);
  align-items: center;
}

.about-img-wrap {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
}

.about-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-img-accent {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 160px;
  height: 160px;
  background: var(--c-accent);
  opacity: 0.12;
  border-radius: 50%;
  filter: blur(40px);
}

.about-content .section-label { margin-bottom: var(--sp-12); }
.about-content h2 { margin-bottom: var(--sp-24); }

.about-content p {
  font-size: 1.05rem;
  margin-bottom: var(--sp-24);
  color: rgba(245, 245, 245, 0.7);
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--sp-16);
  margin-top: var(--sp-40);
  padding-top: var(--sp-40);
  border-top: 1px solid var(--c-border);
}

.stat-value {
  font-size: 2rem;
  font-weight: 900;
  color: var(--c-accent);
  display: block;
}

.stat-label {
  font-size: 12px;
  color: var(--c-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ---- Boutique Teaser ---- */
.boutique-teaser {
  padding-block: var(--sp-120);
  background: var(--c-surface);
}

.teaser-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--sp-24);
  margin-block: var(--sp-48);
}

.teaser-card {
  flex: 0 0 calc(33.333% - var(--sp-24));
  max-width: 360px;
  background: var(--c-surface-2);
  border: 1px solid var(--c-border);
  border-radius: var(--r-md);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: border-color var(--t-base), transform var(--t-base);
  display: block;
}

.teaser-card:hover {
  border-color: var(--c-border-strong);
  transform: translateY(-4px);
}

.teaser-card-img {
  aspect-ratio: 3/4;
  overflow: hidden;
}

.teaser-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--t-slow);
}

.teaser-card:hover .teaser-card-img img { transform: scale(1.05); }

.teaser-card-body {
  padding: var(--sp-20);
}

.teaser-card-name {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 4px;
}

.teaser-card-price {
  font-size: 14px;
  color: var(--c-muted);
}

.teaser-cta-wrap {
  text-align: center;
  margin-top: var(--sp-16);
}

/* ---- Newsletter ---- */
.newsletter-section {
  padding-block: var(--sp-120);
  text-align: center;
}

.newsletter-section h2 {
  margin-bottom: var(--sp-16);
}

.newsletter-section .section-desc {
  margin-inline: auto;
  margin-bottom: var(--sp-40);
}

.newsletter-form {
  display: flex;
  gap: var(--sp-12);
  justify-content: center;
  max-width: 480px;
  margin-inline: auto;
  flex-wrap: wrap;
}

.newsletter-input {
  flex: 1;
  min-width: 240px;
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--r-sm);
  padding: 14px 18px;
  color: var(--c-text);
  font-size: 14px;
  outline: none;
  transition: border-color var(--t-base);
}

.newsletter-input::placeholder { color: var(--c-muted); }
.newsletter-input:focus { border-color: var(--c-accent); }

.newsletter-success {
  display: none;
  color: var(--c-success);
  font-size: 14px;
  font-weight: 600;
  margin-top: var(--sp-16);
}

.newsletter-success.visible { display: block; }

/* ---- Footer ---- */
.site-footer {
  background: var(--c-surface);
  border-top: 1px solid var(--c-border);
  padding-block: var(--sp-64);
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--sp-48);
  margin-bottom: var(--sp-64);
}

.footer-brand .nav-logo {
  display: block;
  margin-bottom: var(--sp-16);
  font-size: 20px;
}

.footer-brand p {
  font-size: 13px;
  line-height: 1.7;
  max-width: 280px;
}

.footer-col-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--c-text);
  margin-bottom: var(--sp-20);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 13px;
  color: var(--c-muted);
  text-decoration: none;
  transition: color var(--t-base);
}

.footer-links a:hover { color: var(--c-text); }

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: var(--sp-24);
}

.footer-social a {
  width: 36px;
  height: 36px;
  border: 1px solid var(--c-border);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-muted);
  text-decoration: none;
  transition: border-color var(--t-base), color var(--t-base);
}

.footer-social a:hover {
  border-color: var(--c-accent);
  color: var(--c-accent);
}

.footer-social svg {
  width: 16px;
  height: 16px;
}

.footer-bottom {
  border-top: 1px solid var(--c-border);
  padding-top: var(--sp-32);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--sp-16);
}

.footer-copy {
  font-size: 12px;
  color: var(--c-muted);
}

.footer-legal {
  display: flex;
  gap: var(--sp-24);
}

.footer-legal a {
  font-size: 12px;
  color: var(--c-muted);
  text-decoration: none;
  transition: color var(--t-base);
}

.footer-legal a:hover { color: var(--c-text); }

/* ---- Page Hero (inner pages) ---- */
.page-hero {
  padding-top: calc(var(--header-h) + var(--sp-80));
  padding-bottom: var(--sp-64);
  text-align: center;
}

.page-hero h1 { margin-bottom: var(--sp-16); }
.page-hero p { max-width: 560px; margin-inline: auto; }

/* ---- Breadcrumb ---- */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--c-muted);
  margin-bottom: var(--sp-32);
  flex-wrap: wrap;
}

.breadcrumb a {
  color: var(--c-muted);
  text-decoration: none;
  transition: color var(--t-base);
}

.breadcrumb a:hover { color: var(--c-text); }
.breadcrumb-sep { color: var(--c-border-strong); }
.breadcrumb-current { color: var(--c-text); }

/* ---- Badge / Pill ---- */
.badge {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 100px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.badge-accent {
  background: rgba(108, 140, 255, 0.15);
  color: var(--c-accent);
  border: 1px solid rgba(108, 140, 255, 0.3);
}

.badge-gold {
  background: rgba(255, 193, 7, 0.12);
  color: #ffc107;
  border: 1px solid rgba(255, 193, 7, 0.25);
}

.badge-red {
  background: rgba(255, 92, 92, 0.12);
  color: var(--c-error);
  border: 1px solid rgba(255, 92, 92, 0.25);
}

/* ---- Form Elements ---- */
.form-group {
  display: flex;
  flex-direction: column;
  gap: var(--sp-8);
}

.form-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--c-text);
  letter-spacing: 0.04em;
}

.form-control {
  width: 100%;
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--r-sm);
  padding: 12px 16px;
  color: var(--c-text);
  font-size: 14px;
  font-family: var(--ff-sans);
  outline: none;
  transition: border-color var(--t-base), box-shadow var(--t-base);
  -webkit-appearance: none;
}

.form-control::placeholder { color: var(--c-muted); }

.form-control:focus {
  border-color: var(--c-accent);
  box-shadow: 0 0 0 3px rgba(108, 140, 255, 0.12);
}

.form-control.error { border-color: var(--c-error); }

.form-error {
  font-size: 12px;
  color: var(--c-error);
  display: none;
}

.form-error.visible { display: block; }

select.form-control {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23888' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
  cursor: pointer;
}

select.form-control option {
  background: var(--c-surface-2);
  color: var(--c-text);
}

/* ---- Divider ---- */
.divider {
  border: none;
  border-top: 1px solid var(--c-border);
  margin-block: var(--sp-32);
}

/* ---- Tag Chip ---- */
.chip {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: 1px solid var(--c-border);
  color: var(--c-muted);
  cursor: pointer;
  transition: border-color var(--t-fast), color var(--t-fast), background var(--t-fast);
  background: transparent;
  font-family: var(--ff-sans);
}

.chip:hover { border-color: var(--c-border-strong); color: var(--c-text); }
.chip.active { border-color: var(--c-accent); color: var(--c-accent); background: rgba(108, 140, 255, 0.1); }

/* ---- Scroll animations ---- */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in {
  opacity: 0;
  transition: opacity 0.6s ease;
}

.fade-in.visible { opacity: 1; }

/* ---- Skeleton loader ---- */
.skeleton {
  background: linear-gradient(90deg, var(--c-surface) 25%, var(--c-surface-2) 50%, var(--c-surface) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  border-radius: var(--r-sm);
}

@keyframes shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* ---- Toast ---- */
.toast {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: var(--c-surface-2);
  border: 1px solid var(--c-border);
  border-radius: var(--r-md);
  padding: 16px 20px;
  font-size: 14px;
  font-weight: 600;
  color: var(--c-text);
  z-index: 9999;
  transform: translateY(80px);
  opacity: 0;
  transition: transform var(--t-base), opacity var(--t-base);
  max-width: 320px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.5);
}

.toast.show {
  transform: translateY(0);
  opacity: 1;
}

.toast.toast-success { border-color: rgba(76, 175, 80, 0.4); }
.toast.toast-error { border-color: rgba(255, 92, 92, 0.4); }

/* ---- Evenements page ---- */
.events-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
  gap: var(--sp-32);
  margin-top: var(--sp-48);
  align-items: stretch;
}

.event-listing-card {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: border-color var(--t-base), transform var(--t-base);
  display: flex;
  flex-direction: column;
}

.event-listing-card:hover {
  border-color: var(--c-border-strong);
  transform: translateY(-4px);
}

.event-listing-img {
  aspect-ratio: 16/9;
  overflow: hidden;
}

.event-listing-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--t-slow);
}

.event-listing-card:hover .event-listing-img img { transform: scale(1.05); }

.event-listing-body {
  padding: var(--sp-32);
  flex: 1;
  display: flex;
  flex-direction: column;
}

.event-listing-date {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--c-accent);
  margin-bottom: 10px;
}

.event-listing-title {
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: var(--sp-12);
}

.event-listing-desc {
  font-size: 14px;
  color: var(--c-muted);
  line-height: 1.6;
  margin-bottom: 0;
  flex: 1;
}

.event-listing-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: var(--sp-20);
  border-top: 1px solid var(--c-border);
  gap: var(--sp-12);
  margin-top: var(--sp-20);
}

.event-listing-venue {
  font-size: 13px;
  color: var(--c-muted);
  display: flex;
  align-items: center;
  gap: 6px;
}

.event-listing-venue svg {
  width: 14px;
  height: 14px;
  stroke: var(--c-accent);
  flex-shrink: 0;
}

.event-listing-footer .btn {
  width: 100%;
  text-align: center;
  justify-content: center;
}

.events-past-title {
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: var(--sp-32);
  margin-top: var(--sp-80);
  padding-bottom: var(--sp-16);
  border-bottom: 1px solid var(--c-border);
}

.past-events-list {
  display: flex;
  flex-direction: column;
  gap: var(--sp-16);
}

.past-event-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--sp-20) var(--sp-24);
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--r-md);
  flex-wrap: wrap;
  gap: var(--sp-12);
}

.past-event-date {
  font-size: 12px;
  color: var(--c-muted);
  font-weight: 600;
  min-width: 80px;
}

.past-event-name {
  font-size: 15px;
  font-weight: 700;
  flex: 1;
}

.past-event-venue {
  font-size: 13px;
  color: var(--c-muted);
}

/* ---- Mentions Légales ---- */
.legal-content {
  max-width: 760px;
  margin-inline: auto;
  padding-top: calc(var(--header-h) + var(--sp-64));
  padding-bottom: var(--sp-120);
  padding-inline: var(--pad-desktop);
}

.legal-content h1 {
  font-size: 2.4rem;
  margin-bottom: var(--sp-48);
}

.legal-content h2 {
  font-size: 1.3rem;
  margin-top: var(--sp-48);
  margin-bottom: var(--sp-16);
  color: var(--c-text);
}

.legal-content p {
  font-size: 15px;
  color: rgba(245, 245, 245, 0.7);
  margin-bottom: var(--sp-16);
}

.legal-content ul {
  list-style: disc;
  padding-left: 24px;
  margin-bottom: var(--sp-16);
}

.legal-content ul li {
  font-size: 15px;
  color: rgba(245, 245, 245, 0.7);
  margin-bottom: 8px;
}

.legal-content a {
  color: var(--c-accent);
  text-decoration: none;
}

.legal-content a:hover { text-decoration: underline; }

/* ---- Responsive ---- */
@media (max-width: 1024px) {
  :root {
    --pad-desktop: 28px;
    --sp-120: 80px;
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-40);
  }

  .about-grid {
    gap: var(--sp-48);
  }

  .teaser-grid .teaser-card {
    flex: 0 0 calc(50% - var(--sp-24));
  }
}

@media (max-width: 1060px) {
  .nav-ctas { gap: 8px; }
  .nav-link { font-size: 12px; }
}

@media (max-width: 768px) {
  :root {
    --pad-desktop: var(--pad-mobile);
    --sp-120: 64px;
    --sp-80: 48px;
  }

  .site-header { padding: 16px var(--pad-mobile); }

  .nav-ctas .btn-outline:last-child { display: none; }

  .hero-title { font-size: clamp(2.2rem, 10vw, 4rem); }
  .hero-ctas { flex-direction: column; align-items: center; }

  .event-card {
    grid-template-columns: 1fr;
  }

  .event-card-img { aspect-ratio: 16/9; }

  .event-card-body { padding: var(--sp-32); }

  .about-grid {
    grid-template-columns: 1fr;
    gap: var(--sp-40);
  }

  .about-img-wrap { aspect-ratio: 3/2; }

  .about-stats {
    grid-template-columns: repeat(6, 1fr);
    gap: var(--sp-16);
    text-align: center;
  }
  .about-stats > div:nth-child(1) { grid-column: 1 / 3; }
  .about-stats > div:nth-child(2) { grid-column: 3 / 5; }
  .about-stats > div:nth-child(3) { grid-column: 5 / 7; }
  .about-stats > div:nth-child(4) { grid-column: 2 / 4; }
  .about-stats > div:nth-child(5) { grid-column: 4 / 6; }

  .teaser-grid .teaser-card { flex: 0 0 100%; max-width: 100%; }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: var(--sp-32);
  }

  .footer-bottom { flex-direction: column; align-items: flex-start; }

  .events-grid { grid-template-columns: 1fr; }

  .newsletter-form { flex-direction: column; }
  .newsletter-input { min-width: auto; width: 100%; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 2.2rem; }
  .event-card-body { padding: var(--sp-24); }
  .about-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--sp-16);
    text-align: center;
  }
  .about-stats > div:nth-child(n) { grid-column: auto; }
  .about-stats > div:nth-child(5) { grid-column: 1 / -1; justify-self: center; min-width: 80px; }
}

/* ===== COMING SOON ===== */
.body-coming {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.coming-main {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px 24px;
}

.coming-center {
  max-width: 640px;
  width: 100%;
  text-align: center;
}

.coming-soon-title {
  font-size: clamp(2.5rem, 8vw, 5rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1;
  margin: 16px 0 24px;
  color: var(--c-text);
}

.coming-soon-desc {
  font-size: 1.1rem;
  color: var(--c-muted);
  line-height: 1.7;
  margin-bottom: 40px;
}

/* ================================================================
   VIDEOS PAGE
   ================================================================ */

/* --- Hero --- */
.videos-hero {
  padding-top: calc(var(--header-h) + 56px);
  padding-bottom: 48px;
  text-align: center;
}

.videos-hero-title {
  font-size: clamp(2.8rem, 8vw, 5rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1;
  margin: 12px 0 16px;
}

.videos-hero-sub {
  font-size: 1.1rem;
  color: var(--c-muted);
  max-width: 480px;
  margin-inline: auto;
}

/* --- Container --- */
.videos-container {
  max-width: var(--max-w);
  margin-inline: auto;
  padding: 0 var(--pad-desktop) 100px;
}

/* --- Filter bar (scoped to videos page) --- */
.videos-filter-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 48px;
  padding-block: 4px;
}

.videos-filter-bar .filter-btn {
  background: none;
  border: 1px solid var(--c-border);
  border-radius: 100px;
  color: var(--c-muted);
  cursor: pointer;
  font-family: var(--ff-sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 8px 18px;
  transition: border-color var(--t-fast), color var(--t-fast), background var(--t-fast);
}

.videos-filter-bar .filter-btn:hover {
  border-color: var(--c-border-strong);
  color: var(--c-text);
}

.videos-filter-bar .filter-btn.active {
  border-color: var(--c-accent);
  color: var(--c-accent);
  background: rgba(108, 140, 255, 0.1);
}

/* --- Grid: 3 col desktop → 2 tablet → 1 mobile --- */
.videos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-32);
}

.videos-empty {
  grid-column: 1 / -1;
  text-align: center;
  color: var(--c-muted);
  padding: 60px 0;
  font-size: 14px;
}

/* --- Card --- */
.video-card {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color var(--t-base), transform var(--t-base);
}

.video-card:hover {
  border-color: var(--c-border-strong);
  transform: translateY(-4px);
}

/* --- Thumbnail --- */
.video-thumb {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--c-surface-3);
}

.video-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform var(--t-slow);
}

.video-card:hover .video-thumb img {
  transform: scale(1.05);
}

.video-thumb-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--c-surface-2) 0%, var(--c-surface-3) 100%);
}

.video-thumb-placeholder svg {
  width: 48px;
  height: 48px;
  color: var(--c-border-strong);
}

/* Duration badge — bottom right */
.video-duration {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(4px);
  color: var(--c-text);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 3px 7px;
  border-radius: 4px;
}

/* "Bientôt" badge — top left */
.video-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: rgba(108, 140, 255, 0.15);
  border: 1px solid rgba(108, 140, 255, 0.3);
  color: var(--c-accent);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 4px;
}

/* --- Card body --- */
.video-card-body {
  padding: 20px 24px 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 6px;
}

.video-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 4px;
}

.video-type-tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-accent);
}

.video-date {
  font-size: 11px;
  color: var(--c-muted);
}

.video-title {
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--c-text);
  margin: 0;
}

.video-artist {
  font-size: 13px;
  color: var(--c-muted);
  margin: 0 0 8px;
  flex: 1;
}

.videos-btn-soon {
  opacity: 0.45;
  cursor: not-allowed;
  font-size: 12px;
}

/* --- Responsive --- */
@media (max-width: 900px) {
  .videos-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .videos-container {
    padding-inline: var(--pad-mobile);
  }
  .videos-grid {
    grid-template-columns: 1fr;
  }
}

/* ================================================================
   VIDÉOS TEASER — Homepage section
   ================================================================ */
.videos-teaser {
  padding-block: 80px;
  background: var(--c-bg);
}

.videos-teaser h2 {
  margin-bottom: var(--sp-24);
}

.videos-teaser .section-desc {
  margin-bottom: var(--sp-40);
}

/* 3-col grid → 2 tablet → 1 mobile */
.vteaser-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-24);
  margin-top: var(--sp-48);
  margin-bottom: var(--sp-48);
}

/* Card */
.vteaser-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: border-color var(--t-base), transform var(--t-base);
}

.vteaser-card:hover {
  border-color: var(--c-border-strong);
  transform: translateY(-4px);
}

/* Thumbnail placeholder — 16:9 dark gradient */
.vteaser-thumb {
  aspect-ratio: 16 / 9;
  background: linear-gradient(135deg, var(--c-surface-2) 0%, var(--c-surface-3) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.vteaser-thumb svg {
  width: 44px;
  height: 44px;
  color: rgba(255, 255, 255, 0.15);
}

/* Card body */
.vteaser-body {
  padding: 16px 20px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.vteaser-label {
  font-size: 14px;
  font-weight: 700;
  color: var(--c-text);
  margin: 0;
}

.vteaser-tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-accent);
  background: rgba(108, 140, 255, 0.1);
  border: 1px solid rgba(108, 140, 255, 0.25);
  border-radius: 4px;
  padding: 3px 8px;
  white-space: nowrap;
}

/* Responsive */
@media (max-width: 768px) {
  .vteaser-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .vteaser-grid {
    grid-template-columns: 1fr;
  }
}
