@import url("animations.css");
@import url("activity-toasts.css");
@import url("newsletter-bar.css");
@import url("sponsors-bar.css");
@import url("footer-payments.css");
@import url("live-now-widget.css");

:root {
  --red: #e32d2d;
  --red-hover: #ff4545;
  --red-dim: rgba(227, 45, 45, 0.15);
  --black: #1a1a1a;
  --black-soft: #242424;
  --black-card: #2a2a2a;
  --white: #ffffff;
  --gray: #a8a8a8;
  --gray-dim: #6b6b6b;
  --border: rgba(255, 255, 255, 0.08);
  --radius: 12px;
  --radius-lg: 20px;
  --font: "Outfit", system-ui, sans-serif;
  --max: 1280px;
  --nav-h: 72px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  background: var(--black);
  color: var(--white);
  line-height: 1.6;
  font-size: 18px;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
}

.img-cover {
  position: relative;
  overflow: hidden;
}

.img-cover > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

img,
svg {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
  color: inherit;
}

.container {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

/* ── Nav ── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  background: rgba(26, 26, 26, 0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: background 0.3s var(--ease);
}

.nav.is-scrolled {
  background: rgba(26, 26, 26, 0.98);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.nav__logo img {
  height: 40px;
  width: auto;
}

.nav__links {
  display: none;
  gap: 0.25rem;
  list-style: none;
}

@media (min-width: 768px) {
  .nav__links {
    display: flex;
  }
}

.nav__links a {
  padding: 0.55rem 1.15rem;
  border-radius: 999px;
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--gray);
  transition: color 0.2s, background 0.2s;
}

.nav__links a:hover,
.nav__links a.is-active {
  color: var(--white);
  background: var(--red-dim);
}

.nav__actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.nav__burger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

@media (min-width: 768px) {
  .nav__burger {
    display: none;
  }
}

.nav__burger span {
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.3s;
}

.nav-mobile {
  position: fixed;
  inset: var(--nav-h) 0 0 0;
  background: var(--black);
  z-index: 99;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  transform: translateX(100%);
  transition: transform 0.35s var(--ease);
}

.nav-mobile.is-open {
  transform: translateX(0);
}

.nav-mobile a {
  padding: 1.1rem;
  font-size: 1.45rem;
  font-weight: 600;
  border-bottom: 1px solid var(--border);
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 1.75rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 1.1rem;
  border: none;
  cursor: pointer;
  transition: transform 0.2s, background 0.2s, box-shadow 0.2s;
  white-space: nowrap;
}

.btn:active {
  transform: scale(0.98);
}

.btn--primary {
  background: var(--red);
  color: var(--white);
  box-shadow: 0 4px 24px rgba(227, 45, 45, 0.35);
}

.btn--primary:hover {
  background: var(--red-hover);
}

.btn--ghost {
  background: transparent;
  color: var(--white);
  border: 1px solid var(--border);
}

.btn--ghost:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.05);
}

.btn--sm {
  padding: 0.65rem 1.2rem;
  font-size: 1rem;
}

.btn--block {
  width: 100%;
}

/* ── Hero ── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  padding-top: var(--nav-h);
  overflow: hidden;
}

.hero.hero--slider {
  align-items: center;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background: var(--black);
}

.hero__bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(227, 45, 45, 0.35) 0%,
    rgba(26, 26, 26, 0.55) 40%,
    rgba(26, 26, 26, 0.92) 75%,
    var(--black) 100%
  );
  z-index: 1;
}

.hero__bg::after {
  content: none;
}

.hero__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

/* Hero slider - derniers événements */
.hero--slider .hero__slides {
  position: absolute;
  inset: 0;
}

.hero--slider:not(.is-ready) .hero-slide:not(.hero-slide--video) {
  opacity: 0;
  visibility: hidden;
}

.hero--slider .hero-slide--video.is-active {
  opacity: 1;
  visibility: visible;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.85s var(--ease), visibility 0.85s;
  z-index: 0;
}

.hero-slide.is-active {
  opacity: 1;
  visibility: visible;
  z-index: 1;
}

.hero-slide img,
.hero-slide__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-slide--video {
  background: var(--black);
}

.hero-slide__video {
  display: block;
}

.hero__content-slides {
  display: grid;
  width: 100%;
}

.hero-content-slide {
  grid-area: 1 / 1;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.85s var(--ease), visibility 0.85s;
  pointer-events: none;
}

.hero-content-slide.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.hero__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.5rem;
  padding-bottom: 0.5rem;
}

.hero__arrow {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: rgba(42, 42, 42, 0.85);
  color: var(--white);
  font-size: 1.5rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
  flex-shrink: 0;
}

.hero__arrow:hover {
  background: var(--red);
  border-color: var(--red);
}

.hero__dots {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
}

.hero__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  padding: 0;
  background: rgba(255, 255, 255, 0.25);
  cursor: pointer;
  transition: background 0.25s, transform 0.25s;
}

.hero__dot.is-active {
  background: var(--red);
  transform: scale(1.25);
}

.hero__dot:hover {
  background: rgba(255, 255, 255, 0.5);
}

@media (prefers-reduced-motion: reduce) {
  .hero-slide,
  .hero-content-slide {
    transition: none;
  }
}

.hero__video {
  display: none;
}

/* Ancien emplacement vidéo hero - le fond utilise .hero-slide__video */

.hero__content {
  position: relative;
  z-index: 2;
  padding: 3rem 0 4rem;
  width: 100%;
}

.hero__content--minimal {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: calc(100svh - var(--nav-h) - var(--ticker-h, 0px));
  padding: 0;
  text-align: center;
}

.hero-minimal {
  width: 100%;
  max-width: min(56rem, 96vw);
}

.hero-minimal__taglines {
  margin-bottom: 2rem;
}

.hero-minimal__tagline {
  font-size: clamp(1.35rem, 6.8vw, 5.5rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  text-shadow: 0 4px 40px rgba(0, 0, 0, 0.65);
}

.hero-minimal__tagline--main {
  margin-bottom: 0.5rem;
  white-space: nowrap;
  text-wrap: nowrap;
}

.hero-tagline-shine {
  position: relative;
  display: inline-block;
  color: var(--white);
  background: linear-gradient(
    105deg,
    var(--white) 0%,
    var(--white) 38%,
    var(--red-hover) 48%,
    #fff8f0 52%,
    var(--white) 62%,
    var(--white) 100%
  );
  background-size: 220% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: hero-tagline-shimmer 5s ease-in-out infinite;
  filter: drop-shadow(0 0 18px rgba(227, 45, 45, 0.35));
}

.hero-minimal__tagline-sub {
  font-size: clamp(0.9rem, 2.4vw, 1.35rem);
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.92);
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.55);
  margin-top: 0.4rem;
}

@keyframes hero-tagline-shimmer {
  0%,
  100% {
    background-position: 100% 50%;
  }
  50% {
    background-position: 0% 50%;
  }
}

.hero-minimal__cta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

.hero-minimal__cta .btn {
  min-width: 160px;
  padding: 1rem 1.75rem;
  font-size: 1.05rem;
}

@keyframes hero-slide-down {
  from {
    opacity: 0;
    transform: translateY(-56px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-minimal__tagline.is-animated,
.hero-minimal__tagline-sub.is-animated {
  animation: hero-slide-down 1s var(--ease) both;
}

.hero-minimal__cta.is-animated {
  animation: hero-slide-down 0.9s var(--ease) both;
}

@media (prefers-reduced-motion: reduce) {
  .hero-tagline-shine {
    animation: none;
    -webkit-text-fill-color: var(--white);
    color: var(--white);
    background: none;
  }

  .hero-minimal__tagline.is-animated,
  .hero-minimal__tagline-sub.is-animated,
  .hero-minimal__cta.is-animated {
    animation: none;
    opacity: 1;
    transform: none;
  }
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.1rem;
  background: var(--red-dim);
  border: 1px solid rgba(227, 45, 45, 0.4);
  border-radius: 999px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--red-hover);
  margin-bottom: 1.25rem;
}

.hero__badge .pulse {
  width: 8px;
  height: 8px;
  background: var(--red);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(1.3);
  }
}

.hero h1 {
  font-size: clamp(3rem, 9vw, 5.5rem);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
  max-width: 14ch;
}

.hero h1 span {
  color: var(--red);
}

.hero__meta {
  font-size: 1.35rem;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 2rem;
  max-width: 40rem;
  line-height: 1.5;
}

.hero__artist-line {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.hero__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem 2.5rem;
}

.stat {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.stat__value {
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--white);
  font-variant-numeric: tabular-nums;
}

.stat__label {
  font-size: 0.95rem;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ── Sections ── */
.section {
  padding: 5rem 0;
}

.section--red {
  background: var(--red);
  color: var(--white);
}

.section__head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.section__head h2 {
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 800;
  letter-spacing: -0.02em;
}

.section__head p {
  color: var(--gray);
  max-width: 32rem;
  font-size: 1.2rem;
  line-height: 1.55;
}

.section--red .section__head p {
  color: rgba(255, 255, 255, 0.85);
}

/* Bandeaux rouges : titre + actions centrés */
.section--red .section__head {
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 1.25rem;
}

.section--red .section__head > div {
  width: 100%;
  max-width: 40rem;
}

.section--red .section__head p {
  margin-inline: auto;
}

.section--red .red-section__actions,
.section--red .red-section__actions--head {
  justify-content: center;
  width: 100%;
}

.section--red .red-section__stats {
  justify-content: center;
}

.section--red-compact .section__head {
  margin-bottom: 0;
}

.section--red-compact:has(.red-section__actions:not(.red-section__actions--head)) .section__head {
  margin-bottom: 1.5rem;
}

.section--red-compact {
  padding: 3rem 0;
}

/* Bandeau rouge en tête de page (sous nav + presence bar mobile) */
.section--red-top {
  padding-top: calc(var(--nav-h) + var(--presence-h, 0px) + 1.5rem);
}

.section--red .map-teaser .section__head {
  margin-bottom: 1rem;
}

.section--red .heat-badge {
  background: rgba(0, 0, 0, 0.2);
  border-color: rgba(255, 255, 255, 0.25);
  color: var(--white);
}

.section--red .heat-badge strong {
  color: var(--white);
}

.red-section__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  margin-top: 1.25rem;
}

.red-section__stat {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
}

.red-section__stat strong {
  font-size: 1.35rem;
  font-weight: 800;
  margin-right: 0.25rem;
}

.red-section__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

.red-section__actions--head {
  margin-bottom: 0;
}

.btn--on-red {
  background: var(--white);
  color: var(--red);
  font-size: 1.1rem;
}

.btn--on-red:hover {
  background: #f5f5f5;
  color: var(--red);
}

.btn--on-red-outline {
  border-color: rgba(255, 255, 255, 0.5);
  color: var(--white);
  font-size: 1.1rem;
}

.btn--on-red-outline:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--white);
  color: var(--white);
}

.section--red .cta-card {
  background: rgba(0, 0, 0, 0.15);
  border-color: rgba(255, 255, 255, 0.2);
}

.section--red .cta-card h3,
.section--red .cta-card p {
  color: var(--white);
}

.section--red .cta-card p {
  color: rgba(255, 255, 255, 0.85);
}

/* ── Event cards (Netflix) ── */
.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.filter-chip {
  padding: 0.65rem 1.25rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--gray);
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
}

.filter-chip:hover,
.filter-chip.is-active {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
}

.events-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}

.events-scroll {
  display: flex;
  gap: 1.25rem;
  overflow-x: auto;
  padding-bottom: 1rem;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.events-scroll .event-card {
  flex: 0 0 min(380px, 92vw);
  scroll-snap-align: start;
}

/* Coming soon : 3 cartes pleine largeur */
#coming-soon {
  flex-direction: column;
  overflow: visible;
  scroll-snap-type: none;
  padding-bottom: 0;
  gap: 1rem;
}

#coming-soon .event-card {
  flex: none;
  width: 100%;
  max-width: 100%;
  scroll-snap-align: none;
}

.event-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--black-card);
  border: 1px solid var(--border);
  transition: transform 0.3s var(--ease), box-shadow 0.3s;
  cursor: pointer;
}

.event-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.event-card__inner {
  display: grid;
  grid-template-columns: 1fr min(38%, 200px);
  align-items: stretch;
  min-height: 140px;
}

.event-card__body {
  padding: 1.25rem 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
}

.event-card__visual {
  position: relative;
  min-height: 140px;
  aspect-ratio: 3/4;
}

.event-card__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.event-card__genre {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.25rem 0.6rem;
  background: var(--red-dim);
  border: 1px solid rgba(227, 45, 45, 0.35);
  border-radius: 999px;
  color: var(--red-hover);
  margin-bottom: 0.5rem;
  width: fit-content;
}

.event-card__title {
  font-size: 1.35rem;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 0.35rem;
}

.event-card__artist {
  color: var(--gray);
  font-size: 1.1rem;
  margin-bottom: 0.85rem;
  line-height: 1.4;
}

.event-card__row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.05rem;
}

.event-card__tag {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--red-hover);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.event-card__urgency {
  color: var(--gray-dim);
  font-size: 1rem;
  margin-top: 0.5rem;
}

.event-card__urgency strong {
  color: var(--white);
}

/* ── Event landing ── */
.event-hero {
  padding-top: calc(var(--nav-h) + 2rem);
  padding-bottom: 3rem;
  position: relative;
}

.event-page-body #event-root {
  min-height: 40vh;
}

.event-hero__split {
  display: grid;
  grid-template-columns: 1fr min(42%, 420px);
  gap: 2rem;
  align-items: start;
  margin-bottom: 2.5rem;
}

.event-hero__content {
  min-width: 0;
}

.event-hero__poster {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 3/4;
  max-height: 520px;
  border: 1px solid var(--border);
  background: var(--black-card);
}

.event-hero__poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.event-hero__artist {
  font-size: 1.4rem;
  margin-top: 0.5rem;
  color: var(--gray);
}

.event-hero h1 {
  font-size: clamp(2.5rem, 7vw, 4rem);
  font-weight: 800;
  letter-spacing: -0.03em;
}

.event-hero__grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 900px) {
  .event-hero__grid {
    grid-template-columns: 1fr 340px;
  }
}

.ticket-box {
  background: var(--black-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  position: sticky;
  top: calc(var(--nav-h) + 1rem);
}

.ticket-box__price {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 0.25rem;
}

.ticket-box__price span {
  font-size: 1rem;
  color: var(--gray);
  font-weight: 500;
}

.info-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: 2rem 0;
}

.info-list li {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.info-list__icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--red-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.1rem;
}

.faq details {
  border-bottom: 1px solid var(--border);
  padding: 1rem 0;
}

.faq summary {
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq summary::after {
  content: "+";
  color: var(--red);
  font-size: 1.25rem;
}

.faq details[open] summary::after {
  content: "−";
}

.faq p {
  margin-top: 0.75rem;
  color: var(--gray);
  font-size: 0.95rem;
}

/* ── Table map ── */
.tables-page {
  padding-top: calc(var(--nav-h) + 2rem);
  padding-bottom: 4rem;
}

.tables-layout {
  display: grid;
  gap: 2rem;
}

@media (min-width: 960px) {
  .tables-layout {
    grid-template-columns: 1fr 380px;
  }
}

.floor-plan {
  background: var(--black-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
}

.floor-plan__stage {
  text-align: center;
  padding: 1rem;
  margin-bottom: 2rem;
  background: var(--red-dim);
  border: 1px dashed rgba(227, 45, 45, 0.5);
  border-radius: var(--radius);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--red-hover);
}

.floor-plan__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
  max-width: 480px;
  margin: 0 auto;
}

.table-seat {
  aspect-ratio: 1;
  border-radius: var(--radius);
  border: 2px solid var(--border);
  background: var(--black-soft);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s;
  font-size: 0.95rem;
  font-weight: 700;
  gap: 0.2rem;
}

.table-seat small {
  font-weight: 500;
  color: var(--gray);
  font-size: 0.8rem;
}

.table-seat--available:hover {
  border-color: var(--red);
  background: var(--red-dim);
}

.table-seat--selected {
  border-color: var(--red);
  background: var(--red);
  color: var(--white);
}

.table-seat--selected small {
  color: rgba(255, 255, 255, 0.8);
}

.table-seat--booked,
.table-seat--held {
  opacity: 0.35;
  cursor: not-allowed;
}

.table-seat--booked::after {
  content: "×";
  font-size: 1.2rem;
}

.legend {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.5rem;
  font-size: 0.8rem;
  color: var(--gray);
}

.legend span {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.legend i {
  width: 14px;
  height: 14px;
  border-radius: 4px;
  display: inline-block;
}

.legend .avail i {
  background: var(--black-soft);
  border: 2px solid var(--border);
}
.legend .sel i {
  background: var(--red);
}
.legend .taken i {
  background: var(--black-soft);
  opacity: 0.4;
}

.table-panel {
  background: var(--black-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
}

.table-panel h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.table-panel__empty {
  color: var(--gray);
  padding: 2rem 0;
  text-align: center;
}

.bottle-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin: 1rem 0;
}

.bottle-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1rem;
  background: var(--black-soft);
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.bottle-item__info span {
  display: block;
  font-size: 0.75rem;
  color: var(--gray);
}

.bottle-item button {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  border: none;
  background: var(--red);
  color: white;
  cursor: pointer;
  font-weight: 700;
}

.cart-summary {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}

.cart-summary__row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

.cart-summary__total {
  font-size: 1.35rem;
  font-weight: 800;
  margin: 1rem 0;
}

/* ── Prélocation ── */
.presale-steps {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.presale-step {
  flex: 1;
  min-width: 100px;
  text-align: center;
  padding: 0.75rem;
  border-radius: var(--radius);
  background: var(--black-card);
  border: 1px solid var(--border);
  font-size: 0.8rem;
  color: var(--gray);
}

.presale-step.is-active {
  border-color: var(--red);
  color: var(--white);
  background: var(--red-dim);
}

.presale-step.is-done {
  color: var(--white);
}

.qty-control {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 1.5rem 0;
}

.qty-control button {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--black-soft);
  color: var(--white);
  cursor: pointer;
  font-size: 1.25rem;
}

.qty-control span {
  font-size: 1.5rem;
  font-weight: 800;
  min-width: 2ch;
  text-align: center;
}

/* ── Footer ── */
.footer {
  background: var(--black-soft);
  border-top: 1px solid var(--border);
  padding: 3rem 0 2rem;
  margin-top: 0;
}

.footer__grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 768px) {
  .footer__grid {
    grid-template-columns: 2fr 1fr 1fr;
  }
}

.footer__brand img {
  height: 36px;
  margin-bottom: 1rem;
}

.footer__brand p {
  color: var(--gray);
  font-size: 1.05rem;
  max-width: 24rem;
  line-height: 1.55;
}

.footer h4 {
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gray);
  margin-bottom: 1rem;
}

.footer ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer a {
  color: var(--gray);
  font-size: 1.05rem;
  transition: color 0.2s;
}

.footer a:hover {
  color: var(--white);
}

/* Réseaux sociaux */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  align-items: center;
}

.social-links--centered {
  justify-content: center;
}

.social-links__link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--black-card);
  color: var(--white);
  transition: transform 0.2s var(--ease), background 0.2s, border-color 0.2s, color 0.2s;
}

.social-links__link svg {
  width: 1.35rem;
  height: 1.35rem;
  display: block;
}

.social-links__link:hover {
  transform: translateY(-3px);
  border-color: var(--red);
  background: var(--red);
  color: var(--white);
}

.section--red .social-links__link {
  background: rgba(0, 0, 0, 0.2);
  border-color: rgba(255, 255, 255, 0.35);
  color: var(--white);
}

.section--red .social-links__link:hover {
  background: var(--white);
  color: var(--red);
  border-color: var(--white);
}

.footer__social-label {
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gray);
  margin-bottom: 0.75rem;
  font-weight: 700;
}

.footer__social-wrap {
  margin-top: 1.25rem;
}

.footer__bottom .social-links {
  margin-bottom: 1rem;
}

.footer__bottom {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.8rem;
  color: var(--gray-dim);
}

/* ── Toast / modal ── */
.toast {
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%) translateY(120%);
  background: var(--white);
  color: var(--black);
  padding: 1rem 1.5rem;
  border-radius: var(--radius);
  font-weight: 600;
  z-index: 200;
  transition: transform 0.4s var(--ease);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

.toast.is-visible {
  transform: translateX(-50%) translateY(0);
}

.page-head {
  padding-top: calc(var(--nav-h) + 2.5rem);
  padding-bottom: 2rem;
}

.page-head h1 {
  font-size: clamp(2.5rem, 6vw, 3.75rem);
  font-weight: 800;
  letter-spacing: -0.02em;
}

.page-head p {
  color: var(--gray);
  margin-top: 0.75rem;
  max-width: 40rem;
  font-size: 1.25rem;
}

.heat-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 1.1rem;
  color: var(--gray);
  margin-top: 1rem;
}

.heat-badge strong {
  color: var(--red-hover);
}

.spacer-nav {
  height: var(--nav-h);
}

/* ── Accueil : news, about, CTA ── */
.news-block {
  display: grid;
  gap: 2rem;
  align-items: center;
  background: var(--black-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

@media (min-width: 900px) {
  .news-block {
    grid-template-columns: 1fr 1.1fr;
  }
}

.news-block__img {
  aspect-ratio: 4/5;
  min-height: 280px;
}

@media (min-width: 900px) {
  .news-block__img {
    aspect-ratio: auto;
    min-height: 100%;
  }
}

.news-block__body {
  padding: 2rem 2rem 2.5rem;
}

@media (min-width: 900px) {
  .news-block__body {
    padding: 2.5rem 3rem 2.5rem 0;
  }
}

.news-block__body h2 {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 1.25rem;
}

.news-block__body p {
  font-size: 1.2rem;
  color: var(--gray);
  line-height: 1.65;
  margin-bottom: 1.5rem;
}

.news-block--on-red {
  background: rgba(0, 0, 0, 0.2);
  border-color: rgba(255, 255, 255, 0.25);
}

.news-block--on-red .news-block__body h2,
.news-block--on-red .news-block__body p {
  color: var(--white);
}

.news-block--on-red .news-block__body p {
  color: rgba(255, 255, 255, 0.88);
}

.club-about {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 900px) {
  .club-about {
    grid-template-columns: 1.2fr 1fr;
  }
}

.club-about__img {
  border-radius: var(--radius-lg);
  aspect-ratio: 16/10;
  min-height: 260px;
}

.club-about__slider {
  position: relative;
  overflow: hidden;
  background: var(--black-soft);
}

.club-about__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.85s var(--ease);
  pointer-events: none;
}

.club-about__slide.is-active {
  opacity: 1;
  pointer-events: auto;
}

.club-about__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.club-about h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  margin-bottom: 1.25rem;
}

.club-about p {
  font-size: 1.2rem;
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.club-about__awards {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.5rem;
}

.award-pill {
  padding: 0.65rem 1.2rem;
  background: var(--red-dim);
  border: 1px solid rgba(227, 45, 45, 0.35);
  border-radius: 999px;
  font-size: 1rem;
  font-weight: 600;
}

.cta-duo {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 700px) {
  .cta-duo {
    grid-template-columns: 1fr 1fr;
  }
}

.cta-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--black-card);
  display: flex;
  flex-direction: column;
}

.cta-card__visual {
  aspect-ratio: 16/9;
  min-height: 180px;
}

.cta-card__body {
  padding: 2rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.cta-card__body h3 {
  font-size: 1.75rem;
  font-weight: 800;
}

.cta-card__body p {
  font-size: 1.15rem;
  color: var(--gray);
  flex: 1;
  line-height: 1.55;
}

.hero-intro {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 0.5rem;
  font-weight: 500;
}

/* Deux salles · accueil */
.venue-spaces__head {
  margin-bottom: 2rem;
}

.venue-spaces__head h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.venue-spaces__head p {
  color: var(--gray);
  max-width: 40rem;
  font-size: 1.05rem;
}

.venue-spaces__grid {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 768px) {
  .venue-spaces__grid {
    grid-template-columns: 1fr 1fr;
  }
}

.venue-card {
  background: var(--black-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color 0.25s var(--ease), transform 0.25s var(--ease);
}

.venue-card:hover {
  border-color: rgba(227, 45, 45, 0.45);
  transform: translateY(-3px);
}

.venue-card__visual {
  aspect-ratio: 16 / 9;
  min-height: 160px;
}

.venue-card__body {
  padding: 1.35rem 1.35rem 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 0.65rem;
}

.venue-card__badge {
  display: inline-block;
  width: fit-content;
  padding: 0.25rem 0.65rem;
  background: var(--red);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 4px;
}

.venue-card__badge--abc {
  background: var(--white);
  color: var(--red);
}

.venue-card h3 {
  font-size: 1.35rem;
  font-weight: 800;
}

.venue-card__tagline {
  color: var(--red-hover);
  font-weight: 600;
  font-size: 0.95rem;
}

.venue-card__text {
  color: var(--gray);
  font-size: 0.95rem;
  line-height: 1.55;
  flex: 1;
}

.venue-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.75);
}

.venue-card__meta span::before {
  content: "· ";
  color: var(--red);
  font-weight: 700;
}

.venue-card__meta span:first-child::before {
  content: none;
}

.venue-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.venue-card__tags span {
  padding: 0.3rem 0.65rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  background: var(--red-dim);
  border: 1px solid rgba(227, 45, 45, 0.25);
  color: rgba(255, 255, 255, 0.9);
}

.venue-spaces__info {
  margin-top: 2rem;
  padding: 1.25rem 1.5rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--black-soft);
  display: grid;
  gap: 1rem;
}

@media (min-width: 720px) {
  .venue-spaces__info {
    grid-template-columns: 1fr auto;
    align-items: center;
  }
}

.venue-spaces__info address {
  font-style: normal;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.88);
}

.venue-spaces__info strong {
  display: block;
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.venue-spaces__info-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
