/* ─────────────────────────────────────────
   JO PREX - Premium v3 "Apex DJ"
   Direction : artiste premium, dark luxe
   UI/UX impeccable
───────────────────────────────────────── */

@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@500;600;700&family=Inter:wght@300;400;500;600&family=Space+Mono:wght@400;700&display=swap');

:root {
  /* Neutrals teintés chaud - jamais #000/#fff */
  --bg: #0a0908;
  --bg-elevated: #12100e;
  --surface: #1a1714;
  --surface-hover: #221e1a;
  --border: rgba(245, 242, 237, 0.07);
  --border-strong: rgba(245, 242, 237, 0.14);

  /* Or chaud, pas criard */
  --gold: #C9A227;
  --gold-light: #E8C869;
  --gold-dim: rgba(201, 162, 39, 0.18);

  /* Textes */
  --text: #f5f2ed;
  --text-secondary: rgba(245, 242, 237, 0.58);
  --text-muted: rgba(245, 242, 237, 0.32);

  /* Fonts */
  --font-display: 'Space Grotesk', sans-serif;
  --font-body: 'Inter', sans-serif;
  --font-mono: 'Space Mono', monospace;

  /* Mesures */
  --container: min(1320px, 90vw);
  --section-pad: clamp(7rem, 16vh, 14rem);
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-smooth: cubic-bezier(0.62, 0.05, 0.01, 0.99);
}

/* ── Reset complémentaire ── */
html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background: var(--bg);
}

body {
  font-family: var(--font-body);
  background: transparent;
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.6;
}

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

a {
  color: inherit;
  text-decoration: none;
}

/* ── Conteneurs picture responsives ── */
.site-bg__slideshow picture,
.signature__carousel-slide picture,
.set-card__visual picture,
.booking__bg picture,
.gallery__item picture,
.wedding__dj-photo picture {
  display: block;
  width: 100%;
  height: 100%;
}

.site-bg__slideshow picture,
.booking__bg picture {
  position: absolute;
  inset: 0;
}

/* ── Background global ── */
.site-bg {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background: var(--bg);
}

.signature,
.sets,
.gallery,
.pro,
.ecosystem,
.wedding,
.faq,
.booking,
.footer {
  position: relative;
  z-index: 1;
}

.site-bg__slideshow {
  position: absolute;
  inset: 0;
}

.site-bg__slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(20%) brightness(0.85) contrast(1.05);
  opacity: 0;
  transform: scale(1.06);
  animation: siteBgSlide 32s infinite;
}

.site-bg__slideshow picture:nth-child(1) .site-bg__slide { animation-delay: 0s; }
.site-bg__slideshow picture:nth-child(2) .site-bg__slide { animation-delay: 8s; }
.site-bg__slideshow picture:nth-child(3) .site-bg__slide { animation-delay: 16s; }
.site-bg__slideshow picture:nth-child(4) .site-bg__slide { animation-delay: 24s; }

@keyframes siteBgSlide {
  0% {
    opacity: 0;
    transform: scale(1.06);
  }
  8% {
    opacity: 1;
    transform: scale(1);
  }
  25% {
    opacity: 1;
    transform: scale(1);
  }
  33% {
    opacity: 0;
    transform: scale(1.03);
  }
  100% {
    opacity: 0;
    transform: scale(1.03);
  }
}

.site-bg__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10, 9, 8, 0.38) 0%, rgba(10, 9, 8, 0.46) 50%, rgba(10, 9, 8, 0.38) 100%),
    radial-gradient(circle at 30% 20%, rgba(201, 162, 39, 0.07) 0%, transparent 45%),
    radial-gradient(circle at 70% 80%, rgba(201, 162, 39, 0.06) 0%, transparent 40%);
}

/* ── Atmosphère ── */
.atmosphere {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9998;
}

.atmosphere__grain {
  position: absolute;
  inset: 0;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 500 500' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='5' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.atmosphere__vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, transparent 40%, rgba(10, 9, 8, 0.55) 100%);
}

.atmosphere__glow {
  position: absolute;
  width: 70vw;
  height: 70vw;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 162, 39, 0.12), transparent 60%);
  filter: blur(120px);
  transform: translate(-50%, -50%);
  left: var(--mouse-x, 50%);
  top: var(--mouse-y, 50%);
  transition: left 0.4s var(--ease-out-expo), top 0.4s var(--ease-out-expo);
}

/* ── Curseur ── */
.cursor {
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 9999;
  mix-blend-mode: difference;
}

.cursor__dot {
  width: 6px;
  height: 6px;
  background: var(--gold-light);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.cursor__halo {
  position: absolute;
  top: 0;
  left: 0;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(245, 242, 237, 0.35);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.3s var(--ease-out-expo), height 0.3s var(--ease-out-expo), border-color 0.3s;
}

body.hovering .cursor__halo {
  width: 72px;
  height: 72px;
  border-color: var(--gold);
}

@media (pointer: coarse) {
  .cursor { display: none; }
}

/* ── Utilitaires ── */
.container {
  width: var(--container);
  margin-inline: auto;
}

.section-label {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  color: var(--gold);
  margin-bottom: 1.75rem;
}

/* ── Navigation ── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  padding: 1.75rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.5s var(--ease-out-expo), backdrop-filter 0.5s, padding 0.4s;
}

.nav.scrolled {
  background: rgba(10, 9, 8, 0.78);
  backdrop-filter: blur(24px);
  padding: 1.1rem 0;
}

.nav__logo {
  margin-left: 5vw;
  width: clamp(110px, 14vw, 150px);
}

.nav__logo img {
  width: 100%;
}

.nav__links {
  display: flex;
  gap: 2.5rem;
  align-items: center;
}

.nav__link {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-secondary);
  position: relative;
  transition: color 0.35s;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.35s var(--ease-out-expo);
}

.nav__link:hover {
  color: var(--text);
}

.nav__link:hover::after {
  width: 100%;
}

.nav__cta {
  margin-right: 5vw;
  padding: 0.8rem 1.6rem;
  border: 1px solid var(--border-strong);
  border-radius: 100px;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text);
  transition: all 0.4s var(--ease-out-expo);
}

.nav__cta:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--bg);
}

.nav__trigger {
  display: none;
  margin-right: 5vw;
  flex-direction: column;
  gap: 7px;
  width: 32px;
}

.nav__trigger span {
  display: block;
  height: 1px;
  background: var(--text);
  transition: transform 0.35s var(--ease-out-expo), opacity 0.35s;
}

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

.hero__body {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 5vw;
}

.hero__kicker {
  font-family: var(--font-mono);
  font-size: clamp(0.65rem, 1vw, 0.8rem);
  text-transform: uppercase;
  letter-spacing: 0.35em;
  color: var(--gold);
  margin-bottom: 2rem;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 1s var(--ease-out-expo) 0.8s forwards;
}

.hero__logo {
  display: inline-block;
  width: min(78vw, 560px);
  opacity: 0;
  transform: scale(0.92) translateY(30px);
  filter: drop-shadow(0 0 0 rgba(201, 162, 39, 0));
  animation: logoReveal 1.4s var(--ease-out-expo) 0.35s forwards,
             logoGlow 4s ease-in-out 2s infinite;
}

.hero__logo svg {
  width: 100%;
  height: auto;
  display: block;
}

.hero__logo-path {
  fill: #fff;
  opacity: 0;
  transform: translateY(22px);
  animation: logoPathReveal 0.7s var(--ease-out-expo) forwards;
}

.hero__logo-path--1 { animation-delay: 0.45s; }
.hero__logo-path--2 { animation-delay: 0.55s; }
.hero__logo-path--3 { animation-delay: 0.65s; }
.hero__logo-path--4 { animation-delay: 0.75s; }
.hero__logo-path--5 { animation-delay: 0.85s; }
.hero__logo-path--6 { animation-delay: 0.95s; }

@keyframes logoPathReveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes logoReveal {
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
    filter: drop-shadow(0 0 28px rgba(201, 162, 39, 0.18));
  }
}

@keyframes logoGlow {
  0%, 100% {
    filter: drop-shadow(0 0 28px rgba(201, 162, 39, 0.16));
  }
  50% {
    filter: drop-shadow(0 0 55px rgba(201, 162, 39, 0.32));
  }
}

.hero__baseline {
  font-family: var(--font-body);
  font-size: clamp(1rem, 2vw, 1.4rem);
  font-weight: 300;
  color: var(--text-secondary);
  margin-top: 2.5rem;
  text-shadow: 0 2px 12px rgba(10, 9, 8, 0.55);
  opacity: 0;
  animation: fadeUp 1s var(--ease-out-expo) 1.1s forwards;
}

.hero__actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 3.5rem;
  opacity: 0;
  animation: fadeUp 1s var(--ease-out-expo) 1.35s forwards;
}

.hero__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 1rem 2rem;
  border-radius: 100px;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  border: 1px solid var(--border-strong);
  color: var(--text);
  transition: all 0.4s var(--ease-out-expo);
}

.hero__cta--primary {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--bg);
}

.hero__cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}

.hero__cta--primary:hover {
  background: var(--gold-light);
  box-shadow: 0 20px 50px rgba(201, 162, 39, 0.22);
}

.hero__scroll {
  position: absolute;
  bottom: 3rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  opacity: 0;
  animation: fadeIn 1s var(--ease-out-expo) 1.8s forwards;
}

.hero__scroll-arrow {
  width: 20px;
  height: 20px;
  color: var(--gold);
  animation: scrollBounce 2.2s infinite;
}

.hero__scroll-line {
  width: 1px;
  height: 70px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2.2s infinite;
}

/* ── Signature / Bio ── */
.signature {
  position: relative;
  padding-block: var(--section-pad);
  background: rgba(18, 16, 14, 0.45);
  backdrop-filter: blur(16px);
  border-top: 1px solid var(--border);
}

.signature__grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(3rem, 7vw, 6rem);
  align-items: start;
  width: var(--container);
  margin-inline: auto;
}

.signature__visual {
  position: relative;
  order: 1;
}

.signature__text {
  order: 2;
}

.signature__carousel {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  border-radius: 2px;
  max-width: 360px;
  outline: 1px solid var(--border);
  outline-offset: -1px;
}

.signature__carousel-track {
  position: relative;
  width: 100%;
  height: 100%;
}

.signature__carousel-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.06);
  transition: opacity 1s var(--ease-out-expo), transform 1.2s var(--ease-out-expo);
  z-index: 1;
}

.signature__carousel-slide.is-active {
  opacity: 1;
  transform: scale(1);
  z-index: 2;
}

.signature__carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(35%) contrast(1.05);
  transition: filter 1s;
}

.signature__carousel:hover .signature__carousel-slide.is-active img {
  filter: grayscale(0%) contrast(1.02);
}

.signature__carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%) scale(0.92);
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid var(--border-strong);
  border-radius: 50%;
  background: rgba(10, 9, 8, 0.55);
  color: var(--text);
  backdrop-filter: blur(8px);
  opacity: 0;
  transition: all 0.4s var(--ease-out-expo);
  z-index: 3;
  cursor: pointer;
}

.signature__carousel:hover .signature__carousel-btn {
  opacity: 1;
  transform: translateY(-50%) scale(1);
}

.signature__carousel-btn--prev { left: 1rem; }
.signature__carousel-btn--next { right: 1rem; }

.signature__carousel-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(10, 9, 8, 0.8);
}

.signature__carousel-dots {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.55rem;
  z-index: 3;
}

.signature__carousel-dots button {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 0;
  padding: 0;
  background: rgba(245, 242, 237, 0.35);
  cursor: pointer;
  transition: all 0.35s var(--ease-out-expo);
}

.signature__carousel-dots button.is-active {
  background: var(--gold);
  transform: scale(1.25);
}

.signature__caption {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1.25rem;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-muted);
}

.signature__caption-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
}

.signature__headline {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 7vw, 6.5rem);
  font-weight: 900;
  line-height: 0.95;
  text-transform: uppercase;
  letter-spacing: -0.04em;
  margin-bottom: 2.5rem;
}

.signature__headline-outline {
  color: var(--text-secondary);
}

.signature__body {
  max-width: 52ch;
}

.signature__body p {
  font-size: clamp(0.92rem, 1.15vw, 1.05rem);
  font-weight: 300;
  color: var(--text-secondary);
  margin-bottom: 1.25rem;
  line-height: 1.75;
}

.signature__quote {
  margin-top: 2.5rem;
  padding-top: 1.75rem;
  border-top: 1px solid var(--gold);
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 1.6vw, 1.35rem);
  font-weight: 600;
  line-height: 1.45;
  color: var(--gold-light);
}

.signature__quote--under {
  margin-top: 1.5rem;
  max-width: 42ch;
  font-size: clamp(0.95rem, 1.3vw, 1.1rem);
}

.signature__body strong {
  color: var(--text);
  font-weight: 500;
}

/* ── Sets (scroll horizontal) ── */
.sets {
  padding-block: var(--section-pad);
  background: rgba(10, 9, 8, 0.45);
  backdrop-filter: blur(16px);
  border-top: 1px solid var(--border);
}

.sets__header {
  margin-bottom: 4rem;
}

.sets__title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 7vw, 6rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.04em;
  line-height: 0.95;
}

.sets__title span {
  color: var(--text-secondary);
}

.sets__rail-wrap {
  position: relative;
  padding: 0 5vw;
}

.sets__rail {
  display: flex;
  gap: 1.25rem;
  padding: 1rem 0;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  scroll-snap-type: x proximity;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-x: contain;
  touch-action: pan-x pan-y;
  scrollbar-width: none;
  -ms-overflow-style: none;
  cursor: grab;
}

.sets__rail::-webkit-scrollbar {
  display: none;
}

.sets__rail:active {
  cursor: grabbing;
}

.sets__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 1px solid var(--border-strong);
  border-radius: 50%;
  background: rgba(10, 9, 8, 0.65);
  color: var(--text);
  backdrop-filter: blur(8px);
  transition: all 0.35s var(--ease-out-expo);
  z-index: 2;
}

.sets__nav--prev { left: 1.5vw; }
.sets__nav--next { right: 1.5vw; }

.sets__nav:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-50%) scale(1.08);
}

.sets__nav:disabled {
  opacity: 0.3;
  cursor: not-allowed;
  transform: translateY(-50%);
  border-color: var(--border);
  color: var(--text-muted);
}

.set-card {
  position: relative;
  flex: 0 0 clamp(260px, 26vw, 320px);
  scroll-snap-align: start;
  scroll-snap-stop: always;
  aspect-ratio: 3/4;
  border-radius: 2px;
  overflow: hidden;
  cursor: grab;
  user-select: none;
  -webkit-user-drag: none;
  touch-action: pan-y;
}

.set-card__visual {
  position: absolute;
  inset: 0;
}

.set-card__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(45%) contrast(1.08);
  transition: transform 0.9s var(--ease-out-expo), filter 0.9s;
}

.set-card:hover .set-card__visual img {
  transform: scale(1.08);
  filter: grayscale(0%) contrast(1.05);
}

.set-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(10, 9, 8, 0.85) 100%);
  z-index: 1;
  pointer-events: none;
}

.set-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid var(--border);
  z-index: 3;
  pointer-events: none;
}

.set-card__meta {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.75rem;
  z-index: 2;
}

.set-card__num {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--gold);
  letter-spacing: 0.15em;
}

.set-card__name {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 800;
  margin: 0.5rem 0 0.25rem;
}

.set-card__tags {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.set-card__play {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border: 1px solid var(--border-strong);
  border-radius: 50%;
  color: var(--text);
  z-index: 4;
  transition: all 0.35s var(--ease-out-expo);
}

.set-card__play:only-child {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
}

.set-card__plays {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  z-index: 4;
}

.set-card__plays .set-card__play {
  width: 44px;
  height: 44px;
}

.set-card:hover .set-card__play {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--bg);
}

/* ── Mariage / JO PREX Event ── */
.wedding {
  padding-block: clamp(4rem, 10vh, 7rem);
  background:
    radial-gradient(circle at 20% 20%, rgba(201, 162, 39, 0.10) 0%, transparent 32%),
    radial-gradient(circle at 80% 80%, rgba(201, 162, 39, 0.08) 0%, transparent 28%),
    linear-gradient(180deg, #f4f0e6 0%, #ece5d5 50%, #f4f0e6 100%);
  backdrop-filter: blur(16px);
  border-top: 1px solid rgba(201, 162, 39, 0.22);
  border-bottom: 1px solid rgba(201, 162, 39, 0.22);
  color: #2b241c;
}

.wedding__header {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 2.5rem;
}

.wedding__brand {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}

.wedding__divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin: 0 auto 2rem;
  width: min(320px, 70%);
}

.wedding__divider-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(138, 109, 59, 0.45), transparent);
}

.wedding__divider-diamond {
  width: 8px;
  height: 8px;
  background: #8a6d3b;
  transform: rotate(45deg);
  box-shadow: 0 0 12px rgba(201, 162, 39, 0.25);
}

.wedding__logo {
  height: clamp(40px, 5.5vw, 58px);
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 0 16px rgba(201, 162, 39, 0.22));
}

.wedding__label {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--gold);
}

.wedding__title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 6vw, 4.8rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.04em;
  line-height: 0.98;
  margin-bottom: 1.5rem;
  color: #2b241c;
}

.wedding__title span {
  color: #8a6d3b;
  position: relative;
  display: inline-block;
}

.wedding__title span::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(201, 162, 39, 0.55), transparent);
  border-radius: 2px;
}

.wedding__lead {
  color: rgba(43, 36, 28, 0.72);
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  line-height: 1.7;
}

.wedding__dj {
  display: flex;
  flex-direction: column;
  gap: clamp(1.25rem, 3vw, 1.75rem);
  max-width: 1040px;
  margin: 0 auto 2.5rem;
  padding: clamp(1.25rem, 3vw, 2rem);
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(180, 140, 50, 0.28);
  border-radius: 12px;
  box-shadow: 0 24px 60px rgba(43, 36, 28, 0.10), inset 0 1px 0 rgba(255, 255, 255, 0.6);
  transition: border-color 0.4s var(--ease-out-expo), box-shadow 0.4s var(--ease-out-expo);
}

.wedding__dj:hover {
  border-color: rgba(180, 140, 50, 0.48);
  box-shadow: 0 32px 80px rgba(43, 36, 28, 0.14), 0 0 40px rgba(201, 162, 39, 0.10), inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.wedding__dj-main {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2.5vw, 1.5rem);
  align-items: center;
  text-align: center;
}

.wedding__dj-photo {
  position: relative;
  margin: 0;
  border-radius: 50%;
  overflow: visible;
  aspect-ratio: 1/1;
  width: min(240px, 70vw);
  max-width: 280px;
  flex-shrink: 0;
  border: 3px solid rgba(180, 140, 50, 0.35);
  box-shadow: 0 12px 32px rgba(43, 36, 28, 0.14), 0 0 0 8px rgba(255, 255, 255, 0.45);
}

.wedding__dj-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  overflow: hidden;
}

.wedding__dj-photo img {
  border-radius: 50%;
}

.wedding__dj-badge {
  position: absolute;
  bottom: 4%;
  right: 4%;
  z-index: 2;
  padding: 0.35rem 0.7rem;
  border-radius: 100px;
  background: #8a6d3b;
  color: #f4f0e6;
  font-family: var(--font-mono);
  font-size: 0.62rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  box-shadow: 0 8px 20px rgba(43, 36, 28, 0.18);
}

.wedding__dj-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(25%) contrast(1.05);
  transition: filter 0.6s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
}

.wedding__dj-photo:hover img {
  filter: grayscale(0%) contrast(1.02);
  transform: scale(1.03);
}

.wedding__dj-title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
  color: #2b241c;
}

.wedding__dj-about p {
  color: rgba(43, 36, 28, 0.72);
  line-height: 1.7;
  margin-bottom: 0.75rem;
}

.wedding__dj-about strong {
  color: #2b241c;
  font-weight: 600;
}

.wedding__dj-sign {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  color: #8a6d3b;
  margin-top: 0.75rem;
}

.wedding__dj-playlist {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: clamp(1rem, 2.5vw, 1.5rem);
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(180, 140, 50, 0.22);
  border-radius: 10px;
  text-align: center;
}

.wedding__dj-playlist-head {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  color: #7a5c1f;
}

.wedding__dj-playlist-icon {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(180, 140, 50, 0.15);
  color: #8a6d3b;
}

.wedding__dj-playlist h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  color: #7a5c1f;
}

.wedding__dj-playlist p {
  color: rgba(43, 36, 28, 0.68);
  font-size: 0.92rem;
  line-height: 1.6;
  max-width: 60ch;
  margin-inline: auto;
}

@media (min-width: 768px) {
  .wedding__dj-main {
    flex-direction: row;
    text-align: left;
    align-items: flex-start;
  }
  .wedding__dj-photo {
    width: min(220px, 30%);
    max-width: 260px;
  }
  .wedding__dj-playlist {
    flex-direction: row;
    align-items: center;
    text-align: left;
    gap: 1.25rem;
  }
  .wedding__dj-playlist-head {
    flex-direction: column;
    justify-content: center;
    flex-shrink: 0;
  }
  .wedding__dj-playlist p {
    margin-inline: 0;
  }
}

@media (max-width: 768px) {
  .wedding__dj {
    border-radius: 8px;
  }
}

/* ── Valeur / Métaphore du coût DJ ── */
.wedding__value {
  max-width: 980px;
  margin: 0 auto 2.5rem;
  padding: clamp(1.75rem, 4vw, 2.75rem);
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid rgba(180, 140, 50, 0.28);
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 24px 60px rgba(43, 36, 28, 0.10), inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.wedding__value-title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
  color: #2b241c;
}

.wedding__value-lead {
  color: rgba(43, 36, 28, 0.72);
  font-size: clamp(0.95rem, 1.4vw, 1.05rem);
  line-height: 1.7;
  max-width: 68ch;
  margin: 0 auto 2rem;
}

.wedding__value-intro {
  color: rgba(43, 36, 28, 0.72);
  font-size: clamp(0.95rem, 1.4vw, 1.05rem);
  line-height: 1.7;
  max-width: 68ch;
  margin: 0 auto 2rem;
}

.wedding__value-intro p {
  margin-bottom: 1rem;
}

.wedding__value-intro p:last-child {
  margin-bottom: 0;
}

.wedding__value-intro strong {
  color: #2b241c;
  font-weight: 600;
}

.wedding__value-subtitle {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.2vw, 1.6rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
  color: #2b241c;
}

.wedding__value-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  text-align: left;
  margin-bottom: 2rem;
}

.wedding__value-col {
  padding: clamp(1.25rem, 3vw, 1.75rem);
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(180, 140, 50, 0.22);
  border-radius: 10px;
  transition: border-color 0.35s, background 0.35s, transform 0.35s var(--ease-out-expo);
}

.wedding__value-col:hover {
  border-color: rgba(180, 140, 50, 0.42);
  background: rgba(255, 255, 255, 0.85);
  transform: translateY(-4px);
}

.wedding__value-col-title {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 1.8vw, 1.35rem);
  font-weight: 700;
  margin-bottom: 1rem;
  color: #7a5c1f;
}

.wedding__value-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.wedding__value-item {
  position: relative;
  padding-left: 1.5rem;
  color: rgba(43, 36, 28, 0.72);
  font-size: 0.94rem;
  line-height: 1.55;
}

.wedding__value-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #8a6d3b;
}

.wedding__value-item strong {
  color: #2b241c;
  font-weight: 600;
}

.wedding__value-footnote {
  color: rgba(43, 36, 28, 0.68);
  font-size: 0.92rem;
  line-height: 1.6;
  max-width: 62ch;
  margin: 0 auto 1.5rem;
  font-style: italic;
}

.wedding__value-cta {
  display: flex;
  justify-content: center;
}

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

.wedding__services {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.wedding__services--large {
  grid-template-columns: repeat(2, 1fr);
  max-width: 920px;
  margin-inline: auto;
}

.wedding-card {
  position: relative;
  padding: 1.75rem 1.25rem;
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(180, 140, 50, 0.24);
  border-radius: 12px;
  transition: transform 0.4s var(--ease-out-expo), border-color 0.35s, background 0.35s;
}

.wedding-card:hover {
  transform: translateY(-8px);
  border-color: rgba(180, 140, 50, 0.42);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 30px 70px rgba(43, 36, 28, 0.10), 0 0 30px rgba(201, 162, 39, 0.08);
}

.wedding-card__title {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 1.6vw, 1.35rem);
  font-weight: 700;
  margin-bottom: 0.65rem;
  line-height: 1.2;
  color: #2b241c;
}

.wedding-card__desc {
  color: rgba(43, 36, 28, 0.68);
  font-size: 0.9rem;
  line-height: 1.6;
}

.wedding-card--large {
  padding: clamp(1.75rem, 3.5vw, 2.5rem);
  text-align: center;
}

.wedding-card--large .wedding-card__title {
  font-size: clamp(1.25rem, 1.8vw, 1.55rem);
}

.wedding-card--large .wedding-card__desc {
  font-size: 0.95rem;
  max-width: 42ch;
  margin-inline: auto;
}

.wedding__testimonials {
  margin-bottom: 2.5rem;
}

.wedding__testimonials-title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  margin-bottom: 1.75rem;
  text-align: center;
  color: #2b241c;
}

.wedding__slider {
  display: flex;
  gap: 1rem;
  max-width: 100%;
  margin: 0 auto;
  padding: 0.5rem 0.25rem;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-x: contain;
  scrollbar-width: none;
  -ms-overflow-style: none;
  touch-action: pan-x pan-y;
  cursor: grab;
}

.wedding__slider::-webkit-scrollbar {
  display: none;
}

.wedding__slider:active {
  cursor: grabbing;
}

@media (min-width: 1024px) {
  .wedding__slider {
    justify-content: center;
  }
}

.wedding-quote {
  position: relative;
  flex: 0 0 min(320px, 82vw);
  scroll-snap-align: center;
  padding: 1.25rem 1.5rem 1rem;
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(180, 140, 50, 0.24);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 0.75rem;
  transition: border-color 0.35s, background 0.35s, transform 0.35s var(--ease-out-expo);
}

.wedding-quote:hover {
  border-color: rgba(180, 140, 50, 0.42);
  background: rgba(255, 255, 255, 0.82);
  transform: translateY(-4px);
}

.wedding__slider-dots {
  display: flex;
  justify-content: center;
  gap: 0.55rem;
  margin-top: 1.25rem;
}

.wedding__slider-dots button {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 0;
  padding: 0;
  background: rgba(138, 109, 59, 0.28);
  cursor: pointer;
  transition: all 0.35s var(--ease-out-expo);
}

.wedding__slider-dots button.is-active {
  background: #8a6d3b;
  transform: scale(1.3);
}

.wedding-quote__mark {
  position: absolute;
  top: 0.4rem;
  left: 0.9rem;
  font-family: var(--font-display);
  font-size: 2rem;
  line-height: 1;
  color: #8a6d3b;
  opacity: 0.35;
  pointer-events: none;
}

.wedding-quote p {
  color: rgba(43, 36, 28, 0.78);
  font-size: 1.05rem;
  line-height: 1.6;
  font-style: italic;
  padding-top: 0.35rem;
}

.wedding-quote cite {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #8a6d3b;
  font-style: normal;
}

.wedding__cta {
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
  padding: 1.75rem clamp(1.25rem, 3vw, 2.25rem);
  border: 1px solid rgba(180, 140, 50, 0.30);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.62);
  box-shadow: 0 20px 60px rgba(43, 36, 28, 0.10);
}

.wedding__cta-text {
  color: rgba(43, 36, 28, 0.72);
  font-size: 0.98rem;
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

.wedding__cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 1rem 2rem;
  border-radius: 100px;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  background: #8a6d3b;
  border: 1px solid #8a6d3b;
  color: #f4f0e6;
  transition: all 0.4s var(--ease-out-expo);
}

.wedding__cta-btn:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: #2b241c;
  transform: translateY(-3px);
  box-shadow: 0 20px 50px rgba(201, 162, 39, 0.22);
}

@media (max-width: 1024px) {
  .wedding__services {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .wedding__services {
    grid-template-columns: 1fr;
  }
  .wedding__services--large {
    grid-template-columns: 1fr;
  }
  .wedding__brand {
    margin-bottom: 1.25rem;
  }
}

/* ── Gallery ── */
.gallery {
  padding-block: var(--section-pad);
  background: rgba(10, 9, 8, 0.45);
  backdrop-filter: blur(16px);
  border-top: 1px solid var(--border);
}

.gallery__header {
  margin-bottom: 4rem;
}

.gallery__title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 7vw, 6rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.04em;
  line-height: 0.95;
}

.gallery__title span {
  color: var(--text-secondary);
}

.gallery__masonry {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  width: 100%;
}

.gallery__item {
  position: relative;
  overflow: hidden;
  margin: 0;
  cursor: pointer;
  aspect-ratio: 4/5;
}

.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(50%) contrast(1.02);
  transition: transform 0.8s var(--ease-out-expo), filter 0.8s;
}

.gallery__item:hover img {
  transform: scale(1.06);
  filter: grayscale(0%) contrast(1.02);
}

.gallery__item--tall,
.gallery__item--wide {
  grid-column: span 2;
  grid-row: span 2;
  aspect-ratio: auto;
}

/* ── Pro / Press kit ── */
.pro {
  padding-block: var(--section-pad);
  background: rgba(18, 16, 14, 0.45);
  backdrop-filter: blur(16px);
  border-top: 1px solid var(--border);
}

.pro__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 8vw, 8rem);
  align-items: start;
}

.pro__title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 7vw, 6rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.04em;
  line-height: 0.95;
  margin-bottom: 2rem;
}

.pro__title span {
  color: var(--text-secondary);
}

.pro__lead {
  color: var(--text-secondary);
  font-size: 1.15rem;
  line-height: 1.75;
  max-width: 48ch;
}

.pro__files {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.pro-file {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  padding: 2rem 2.25rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 2px;
  transition: all 0.45s var(--ease-out-expo);
}

.pro-file:hover {
  border-color: var(--gold);
  background: var(--surface-hover);
  transform: translateX(12px);
}

.pro-file__type {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
  padding: 0.4rem 0.8rem;
  border: 1px solid var(--gold-dim);
  border-radius: 100px;
}

.pro-file__info h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 0.25rem;
}

.pro-file__info p {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.pro-file__action {
  margin-left: auto;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 1px solid var(--border-strong);
  border-radius: 50%;
  color: var(--text-secondary);
  transition: all 0.35s var(--ease-out-expo);
}

.pro-file:hover .pro-file__action {
  border-color: var(--gold);
  color: var(--gold);
}

/* ── Écosystème ── */
.ecosystem {
  padding-block: var(--section-pad);
  background: rgba(10, 9, 8, 0.45);
  backdrop-filter: blur(16px);
  border-top: 1px solid var(--border);
}

.ecosystem__header {
  text-align: center;
  max-width: 52ch;
  margin: 0 auto 3.5rem;
}

.ecosystem__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.04em;
  line-height: 0.95;
  margin-bottom: 1.25rem;
}

.ecosystem__title span {
  color: var(--text-secondary);
}

.ecosystem__lead {
  color: var(--text-secondary);
  font-size: clamp(0.95rem, 1.4vw, 1.1rem);
  line-height: 1.65;
}

.ecosystem__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(240px, 360px));
  gap: 1.25rem;
  justify-content: center;
}

.ecosystem-card__logo {
  height: 40px;
  width: auto;
  align-self: flex-start;
  margin-bottom: 1rem;
}

.ecosystem-card__desc strong {
  color: var(--text);
  font-weight: 500;
}

.ecosystem-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 2rem 2.25rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 2px;
  transition: transform 0.4s var(--ease-out-expo), border-color 0.35s, background 0.35s;
}

.ecosystem-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 2px;
  background: linear-gradient(135deg, rgba(201, 162, 39, 0.08), transparent 50%);
  opacity: 0;
  transition: opacity 0.4s;
  pointer-events: none;
}

.ecosystem-card:hover {
  transform: translateY(-5px);
  border-color: var(--gold);
  background: var(--surface-hover);
}

.ecosystem-card:hover::before {
  opacity: 1;
}

.ecosystem-card__icon {
  position: absolute;
  top: 1.75rem;
  right: 1.75rem;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border: 1px solid var(--border-strong);
  border-radius: 50%;
  color: var(--text-muted);
  transition: all 0.35s var(--ease-out-expo);
}

.ecosystem-card:hover .ecosystem-card__icon {
  border-color: var(--gold);
  color: var(--gold);
  transform: translate(2px, -2px);
}

.ecosystem-card__label {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gold);
  margin-bottom: 1rem;
}

.ecosystem-card__name {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.03em;
  margin-bottom: 0.75rem;
}

.ecosystem-card__desc {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.65;
  margin-bottom: 1.5rem;
  flex: 1;
}

.ecosystem-card__action {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text);
  transition: color 0.3s, gap 0.35s var(--ease-out-expo);
}

.ecosystem-card:hover .ecosystem-card__action {
  color: var(--gold);
  gap: 0.9rem;
}

/* ── Section FAQ ── */
.faq {
  padding-block: var(--section-pad);
  background: rgba(10, 9, 8, 0.55);
  backdrop-filter: blur(16px);
  border-top: 1px solid var(--border);
  position: relative;
  z-index: 1;
}

.faq__header {
  text-align: center;
  max-width: 68ch;
  margin: 0 auto 3.5rem;
}

.faq__badge {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  background: var(--gold-dim);
  border: 1px solid rgba(201, 162, 39, 0.35);
  padding: 0.4rem 1rem;
  border-radius: 999px;
  margin-bottom: 1.25rem;
}

.faq__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.04em;
  line-height: 0.95;
  margin-bottom: 1.25rem;
}

.faq__title span {
  color: var(--gold);
}

.faq__lead {
  color: var(--text-secondary);
  font-size: clamp(0.95rem, 1.4vw, 1.1rem);
  line-height: 1.65;
}

.faq__list {
  max-width: 920px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq__item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
}

.faq__item:hover {
  border-color: var(--border-strong);
  background: var(--surface-hover);
}

.faq__item[open] {
  border-color: rgba(201, 162, 39, 0.45);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35), 0 0 15px rgba(201, 162, 39, 0.08);
}

.faq__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.5rem 1.75rem;
  font-family: var(--font-display);
  font-size: clamp(1rem, 1.3vw, 1.18rem);
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  list-style: none;
  user-select: none;
  transition: color 0.3s ease;
}

.faq__question::-webkit-details-marker {
  display: none;
}

.faq__item[open] .faq__question {
  color: var(--gold-light);
}

.faq__icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(245, 242, 237, 0.05);
  border: 1px solid var(--border);
  color: var(--gold);
  transition: transform 0.35s var(--ease-out-expo), background-color 0.3s ease;
}

.faq__item[open] .faq__icon {
  transform: rotate(180deg);
  background: var(--gold-dim);
  border-color: rgba(201, 162, 39, 0.5);
}

.faq__answer {
  padding: 0 1.75rem 1.6rem;
  color: var(--text-secondary);
  font-size: 0.98rem;
  line-height: 1.75;
  border-top: 1px solid rgba(245, 242, 237, 0.05);
  padding-top: 1.25rem;
}

.faq__answer p + p {
  margin-top: 0.75rem;
}

.faq__answer strong {
  color: var(--text);
}

/* ── Booking ── */
.booking {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-top: 1px solid var(--border);
}

.booking__bg {
  position: absolute;
  inset: -8%;
  z-index: -2;
  will-change: transform;
}

.booking__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(45%) contrast(1.12) brightness(0.35);
}

.booking__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, var(--bg-elevated) 0%, transparent 35%, transparent 65%, var(--bg) 100%);
  z-index: -1;
}

.booking__body {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 6rem 0;
}

.booking__title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 10vw, 9rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.05em;
  line-height: 0.92;
  margin-bottom: 2rem;
}

.booking__title span {
  color: var(--text-secondary);
}

.booking__lead {
  color: var(--text-secondary);
  font-size: clamp(1rem, 1.8vw, 1.25rem);
  max-width: 55ch;
  margin: 0 auto 3rem;
  line-height: 1.7;
}

.booking__actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

.booking__cta {
  display: inline-flex;
  align-items: center;
  padding: 1.1rem 2.25rem;
  border-radius: 100px;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  border: 1px solid var(--border-strong);
  color: var(--text);
  transition: all 0.4s var(--ease-out-expo);
}

.booking__cta--primary {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--bg);
}

.booking__cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}

.booking__cta--primary:hover {
  background: var(--gold-light);
  box-shadow: 0 20px 50px rgba(201, 162, 39, 0.22);
}

.booking__event {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  max-width: 640px;
  margin: 0 auto;
  padding: 1.1rem 1.5rem;
  border: 1px solid var(--border-strong);
  border-radius: 100px;
  background: rgba(18, 16, 14, 0.6);
}

.booking__event-logo {
  height: 24px;
  width: auto;
  flex-shrink: 0;
}

.booking__event p {
  color: var(--text-secondary);
  font-size: 0.88rem;
  line-height: 1.55;
  text-align: left;
}

.booking__event strong {
  color: var(--text);
  font-weight: 500;
}

.booking__form {
  margin: 2.5rem auto 0;
  max-width: 720px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  padding: 2rem;
  text-align: left;
  background: rgba(18, 16, 14, 0.72);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--border-strong);
}

.booking__field {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.booking__field--full {
  grid-column: 1 / -1;
}

.booking__field label {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--gold);
}

.booking__field input,
.booking__field select,
.booking__field textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 2px;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color-scheme: dark;
  transition: border-color 0.3s;
}

.booking__field input:focus,
.booking__field select:focus,
.booking__field textarea:focus {
  outline: none;
  border-color: var(--gold);
}

.booking__field ::placeholder {
  color: var(--text-muted);
}

.booking__field textarea {
  resize: vertical;
  min-height: 96px;
}

.booking__form-foot {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.booking__form-status {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  color: var(--gold-light);
}

.booking__form-status--error {
  color: #e04f7a;
}

.booking__hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.booking__privacy-notice {
  grid-column: 1 / -1;
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-top: 0.25rem;
}

.booking__privacy-notice a {
  color: var(--text-secondary);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 0.3s;
}

.booking__privacy-notice a:hover {
  color: var(--gold);
}


@media (max-width: 768px) {
  .booking__event {
    border-radius: 2px;
    align-items: flex-start;
  }

  .booking__form {
    grid-template-columns: 1fr;
    padding: 1.5rem;
  }
}

/* ── Footer ── */
.footer {
  padding: 4rem 0 2.5rem;
  background: rgba(10, 9, 8, 0.5);
  backdrop-filter: blur(16px);
  border-top: 1px solid var(--border);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 2rem;
  align-items: center;
  margin-bottom: 4rem;
}

.footer__brand p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-top: 0.75rem;
}

.footer__links {
  display: flex;
  gap: 2rem;
  justify-content: center;
}

.footer__links a,
.footer__contact a {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-secondary);
  transition: color 0.3s;
}

.footer__links a:hover,
.footer__contact a:hover {
  color: var(--gold);
}

.footer__contact {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: flex-end;
}

.footer__legal {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem 2rem;
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.footer__credit a {
  color: var(--text-secondary);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.3s;
}

.footer__credit a:hover {
  color: var(--gold);
}

/* ── Animations reveal ── */
.reveal {
  opacity: 0;
  transform: translateY(60px);
  transition: opacity 0.9s var(--ease-out-expo), transform 0.9s var(--ease-out-expo);
}

/* Si JavaScript est désactivé ou bloqué, tout le contenu reste visible. */
.no-js .reveal,
.no-js .reveal-scale {
  opacity: 1 !important;
  transform: none !important;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.96);
  transition: opacity 1s var(--ease-out-expo), transform 1s var(--ease-out-expo);
}

.reveal-scale.active {
  opacity: 1;
  transform: scale(1);
}

/* ── Keyframes ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

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

@keyframes shutterOpen {
  from { transform: scaleY(1); }
  to { transform: scaleY(0); }
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.25; transform: scaleY(0.4); transform-origin: top; }
  50% { opacity: 1; transform: scaleY(1); transform-origin: top; }
}

@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); opacity: 0.6; }
  50% { transform: translateY(6px); opacity: 1; }
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .nav__links,
  .nav__cta {
    display: none;
  }

  .nav__trigger {
    display: flex;
  }

  body.menu-open {
    overflow: hidden;
  }

  body.menu-open .nav__links {
    display: flex !important;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100vw;
    height: 100vh;
    z-index: 9998;
    background: #0a0908;
    padding-top: 5rem;
  }

  body.menu-open .nav {
    z-index: 9999;
  }

  body.menu-open .nav__trigger {
    position: relative;
    z-index: 10000;
  }

  body.menu-open .nav__logo {
    position: relative;
    z-index: 10000;
  }

  body.menu-open .nav__link {
    font-size: 1rem;
    color: var(--text);
    opacity: 0;
    transform: translateY(10px);
    animation: menuLinkIn 0.5s var(--ease-out-expo) forwards;
  }

  body.menu-open .nav__link:nth-child(1) { animation-delay: 0.05s; }
  body.menu-open .nav__link:nth-child(2) { animation-delay: 0.1s; }
  body.menu-open .nav__link:nth-child(3) { animation-delay: 0.15s; }
  body.menu-open .nav__link:nth-child(4) { animation-delay: 0.2s; }
  body.menu-open .nav__link:nth-child(5) { animation-delay: 0.25s; }
  body.menu-open .nav__link:nth-child(6) { animation-delay: 0.3s; }

  body.menu-open .nav__trigger span:first-child {
    transform: translateY(4px) rotate(45deg);
  }

  body.menu-open .nav__trigger span:last-child {
    transform: translateY(-4px) rotate(-45deg);
  }

  @keyframes menuLinkIn {
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .hero__logo {
    width: min(82vw, 460px);
  }

  .signature__grid,
  .pro__grid {
    grid-template-columns: 1fr;
    gap: 4rem;
  }

  .signature__visual,
  .signature__text {
    order: 0;
  }

  .signature__carousel,
  .signature__quote--under {
    margin-inline: auto;
  }

  .gallery__masonry {
    grid-template-columns: repeat(2, 1fr);
    max-width: none;
  }

  .gallery__item--tall,
  .gallery__item--wide,
  .gallery__item {
    grid-column: span 1;
    grid-row: span 1;
    aspect-ratio: 4/5;
  }

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

  .sets__nav {
    display: none;
  }

  .sets__rail-wrap {
    padding: 0;
  }

  .footer__grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 3rem;
  }

  .footer__contact {
    align-items: center;
  }
}

@media (max-width: 768px) {
  :root {
    --section-pad: clamp(5rem, 12vh, 8rem);
  }

  .nav__logo,
  .nav__trigger {
    margin-left: 5vw;
    margin-right: 5vw;
  }

  .hero {
    align-items: flex-start;
    padding-top: clamp(7rem, 18vh, 10rem);
  }

  .hero__actions,
  .booking__actions {
    flex-direction: column;
    align-items: center;
  }

  .hero__actions {
    margin-top: 2.25rem;
  }

  .hero__logo {
    width: min(85vw, 420px);
  }

  .hero__scroll {
    bottom: 1.5rem;
    gap: 0.5rem;
  }

  .hero__scroll-line {
    height: 36px;
  }

  .sets__rail {
    padding: 1rem 5vw;
  }

  .set-card {
    flex: 0 0 78vw;
  }

  .pro-file {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.25rem;
  }

  .pro-file__action {
    margin-left: 0;
  }

  .booking__title {
    font-size: clamp(2.5rem, 12vw, 5rem);
  }

  /* Alléger les effets visuels coûteux sur mobile */
  .signature,
  .sets,
  .gallery,
  .pro,
  .ecosystem,
  .faq,
  .footer,
  .booking__form,
  .wedding {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .faq__header {
    margin-bottom: 2.5rem;
  }

  .faq__question {
    padding: 1.2rem 1.25rem;
    font-size: 0.98rem;
    gap: 1rem;
  }

  .faq__answer {
    padding: 0 1.25rem 1.25rem;
    font-size: 0.92rem;
  }

  .atmosphere__grain,
  .atmosphere__glow {
    display: none;
  }

  .hero__media::after {
    background: rgba(10, 9, 8, 0.3);
  }

  .hero__slide {
    filter: grayscale(15%) contrast(1.05) brightness(1.05);
  }

  .hero__scroll-line {
    animation: none;
  }

  .hero__scroll-arrow {
    animation: none;
  }
}

/* ── Pages Légales (Mentions, Confidentialité, CGV) ── */
.legal-page {
  padding: clamp(6rem, 12vh, 9rem) 0 clamp(4rem, 8vh, 6rem);
  position: relative;
  z-index: 1;
}

.legal-page__header {
  max-width: 860px;
  margin: 0 auto 3.5rem;
}

.legal-page__back {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold);
  margin-bottom: 2rem;
  transition: opacity 0.3s;
}

.legal-page__back:hover {
  opacity: 0.75;
}

.legal-page__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 1rem;
}

.legal-page__meta {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.legal-page__content {
  max-width: 860px;
  margin: 0 auto;
  background: var(--surface);
  border: 1px solid var(--border);
  padding: clamp(2rem, 5vw, 3.5rem);
  border-radius: 4px;
}

.legal-section {
  margin-bottom: 2.75rem;
}

.legal-section:last-child {
  margin-bottom: 0;
}

.legal-section h2 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--gold-light);
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--border);
}

.legal-section h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text);
  margin: 1.25rem 0 0.5rem;
}

.legal-section p,
.legal-section li {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

.legal-section p {
  margin-bottom: 0.85rem;
}

.legal-section ul {
  padding-left: 1.25rem;
  margin-bottom: 1rem;
}

.legal-section li {
  margin-bottom: 0.4rem;
}

.legal-section a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-section a:hover {
  color: var(--gold-light);
}

.legal-highlight {
  background: rgba(201, 162, 39, 0.08);
  border-left: 3px solid var(--gold);
  padding: 1rem 1.25rem;
  margin: 1.25rem 0;
  font-size: 0.9rem;
  color: var(--text);
}

.footer__legal-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem 1.5rem;
}

.footer__legal-links a {
  color: var(--text-muted);
  transition: color 0.3s;
}

.footer__legal-links a:hover {
  color: var(--gold);
}

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

  .reveal,
  .reveal-scale {
    opacity: 1;
    transform: none;
  }

  .hero__shutter {
    display: none;
  }
}


