/* ============================================
   GOLDEN TIMES — Global Styles
   Palette: Noir #0D0D0D · Doré #C9A86A · Rouge #9B2335
   ============================================ */

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

:root {
  --black:      #0D0D0D;
  --black-soft: #141414;
  --black-card: #1A1A1A;
  --gold:       #C9A86A;
  --gold-light: #E2C98A;
  --gold-dim:   #7A6438;
  --red:        #9B2335;
  --white:      #F5F0E8;
  --grey:       #888880;
  --grey-light: #B0ABA3;

  --font-serif: 'Playfair Display', 'Georgia', serif;
  --font-sans:  'Inter', 'Helvetica Neue', sans-serif;

  --nav-h: 80px;
  --section-gap: 120px;
  --container: 1200px;
  --radius: 2px;

  --ease-gold: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img { display: block; width: 100%; height: 100%; object-fit: cover; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: 0.01em;
}

.label {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
}

.eyebrow {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

/* ---------- Container ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}

/* ---------- Divider ---------- */
.divider {
  width: 60px;
  height: 1px;
  background: var(--gold);
  margin: 18px 0 22px;
}

/* ============================================
   NAVIGATION
   ============================================ */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: background 0.4s var(--ease-gold), backdrop-filter 0.4s;
}

.site-nav.scrolled {
  background: rgba(13, 13, 13, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201, 168, 106, 0.12);
}

.nav-inner {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav-logo-img {
  height: 60px;
  width: auto;
  display: block;
}
.nav-logo-name {
  font-family: var(--font-serif);
  font-size: 17px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  line-height: 1.1;
}

/* Nav Links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 44px;
}
.nav-links a {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--grey-light);
  position: relative;
  transition: color 0.25s;
}
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0; bottom: -4px;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.3s var(--ease-gold);
}
.nav-links a:hover, .nav-links a.active { color: var(--gold); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }

/* Social icons in nav */
.nav-socials {
  display: flex;
  align-items: center;
  gap: 18px;
}
.nav-socials a {
  color: var(--grey);
  transition: color 0.25s;
  display: flex;
  align-items: center;
}
.nav-socials a:hover { color: var(--gold); }
.nav-socials svg { width: 17px; height: 17px; }

/* CTA button in nav */
.nav-cta {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(201,168,106,0.45);
  padding: 8px 18px;
  transition: background 0.25s, border-color 0.25s, color 0.25s;
  white-space: nowrap;
}
.nav-cta:hover {
  background: rgba(201,168,106,0.1);
  border-color: var(--gold);
}

/* Burger (mobile) */
.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.nav-burger span {
  display: block;
  width: 24px; height: 1.5px;
  background: var(--gold);
  transition: transform 0.3s, opacity 0.3s;
}

/* Mobile menu */
.nav-mobile {
  display: none;
  position: fixed;
  inset: 0;
  background: rgb(13,13,13);
  z-index: 1001;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 36px;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  font-family: var(--font-serif);
  font-size: 32px;
  color: var(--white);
  transition: color 0.2s;
}
.nav-mobile a:hover { color: var(--gold); }
.nav-mobile .close-btn {
  position: absolute;
  top: 28px; right: 36px;
  background: none; border: none;
  color: var(--grey); font-size: 28px;
  cursor: pointer; line-height: 1;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 16px 32px;
  border: 1px solid var(--gold);
  color: var(--gold);
  background: transparent;
  cursor: pointer;
  transition: background 0.3s, color 0.3s, border-color 0.3s;
  position: relative;
  overflow: hidden;
}
.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s var(--ease-gold);
  z-index: 0;
}
.btn:hover::before { transform: scaleX(1); }
.btn:hover { color: var(--black); }
.btn span { position: relative; z-index: 1; }

.btn-solid {
  background: var(--gold);
  color: var(--black);
}
.btn-solid::before { background: var(--gold-light); }
.btn-solid:hover { color: var(--black); }

.btn-red {
  border-color: var(--red);
  color: var(--white);
}
.btn-red::before { background: var(--red); }

/* ============================================
   HERO — INDEX
   ============================================ */
/* ── Hero — pleine largeur ── */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--black);
}

.hero-bg {
  position: absolute;
  inset: 0;
}
.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  /* Photo 3:2 sur écran 16:9 → seule la hauteur est crognée,
     les deux visages (à ~22 % et ~78 % de large) restent entiers */
  object-position: center 30%;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(13,13,13,0.08) 0%,
    rgba(13,13,13,0.12) 40%,
    rgba(13,13,13,0.72) 68%,
    rgba(13,13,13,1)   100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
  padding-bottom: 90px;
}
.hero-content .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

/* ── Hero text elements ── */
.hero-label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.hero-label::before {
  content: '';
  display: block;
  width: 36px; height: 1px;
  background: var(--gold);
}

.hero-title {
  font-size: 64px;
  font-weight: 400;
  color: var(--white);
  max-width: 560px;
  margin-bottom: 24px;
}
.hero-title-line1 {
  white-space: nowrap;
}
.hero-title em {
  font-style: italic;
  color: var(--gold);
}

.hero-sub {
  font-size: 15px;
  color: var(--grey-light);
  max-width: 420px;
  margin-bottom: 44px;
  line-height: 1.8;
}

.hero-ctas {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}


/* ============================================
   SECTION — PRESTATIONS (homepage teaser)
   ============================================ */
.section-prestations {
  padding: var(--section-gap) 0;
  background: var(--black-soft);
  border-top: 1px solid rgba(201,168,106,0.1);
}

.section-header {
  text-align: center;
  margin-bottom: 72px;
}
.section-header h2 { font-size: 44px; margin-bottom: 14px; }
.section-header p { color: var(--grey-light); max-width: 520px; margin: 0 auto; }
.section-header .divider { margin: 18px auto 22px; }

.prestations-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.prest-card {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  cursor: pointer;
}
.prest-card img {
  transition: transform 0.7s var(--ease-gold);
}
.prest-card:hover img { transform: scale(1.05); }

.prest-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    transparent 30%,
    rgba(13,13,13,0.92) 100%
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 36px 32px;
  transition: background 0.4s;
}
.prest-card:hover .prest-overlay {
  background: linear-gradient(
    to bottom,
    rgba(13,13,13,0.2) 0%,
    rgba(13,13,13,0.95) 100%
  );
}

.prest-icon { font-size: 26px; margin-bottom: 12px; }
.prest-num {
  font-size: 9px;
  letter-spacing: 0.25em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 8px;
}
.prest-card h3 {
  font-size: 28px;
  color: var(--white);
  margin-bottom: 12px;
}
.prest-card p {
  font-size: 13px;
  color: var(--grey-light);
  line-height: 1.7;
  margin-bottom: 24px;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.4s, transform 0.4s;
}
.prest-card:hover p { opacity: 1; transform: translateY(0); }

.prest-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}
.prest-link::after {
  content: '→';
  transition: transform 0.3s;
}
.prest-card:hover .prest-link::after { transform: translateX(6px); }

/* Text-only card variant */
.prestations-grid--text {
  gap: 24px;
}

.prest-card--text {
  aspect-ratio: unset;
  background: var(--black-card);
  border: 1px solid rgba(201,168,106,0.12);
  border-top: 2px solid var(--gold);
  padding: 44px 36px 40px;
  display: flex;
  flex-direction: column;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.35s var(--ease-gold), transform 0.35s var(--ease-gold), box-shadow 0.35s var(--ease-gold);
}
.prest-card--text:hover {
  border-color: rgba(201,168,106,0.45);
  border-top-color: var(--gold);
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(0,0,0,0.4);
}
.prest-card--text .prest-icon {
  font-size: 34px;
  margin-bottom: 0;
  flex-shrink: 0;
}
.prest-card--text h3 {
  font-size: 24px;
  color: var(--white);
  margin-bottom: 0;
}
.prest-title-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}
.prest-detail-body .prest-title-row {
  margin-bottom: 16px;
}
.prest-detail-body .prest-title-row .prest-icon {
  font-size: 34px;
}
.prest-card--text p {
  font-size: 14px;
  color: var(--grey-light);
  line-height: 1.8;
  margin-bottom: 32px;
  opacity: 1;
  transform: none;
  transition: none;
  flex-grow: 1;
}
.prest-card--text:hover p {
  opacity: 1;
  transform: none;
}

/* ============================================
   SECTION — VIDEO + ARTISTS
   ============================================ */
.section-about {
  padding: var(--section-gap) 0;
}

.about-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-bottom: 100px;
}

.about-video-wrap {
  position: relative;
  aspect-ratio: 16/9;
  background: var(--black-card);
  border: 1px solid rgba(201,168,106,0.15);
  overflow: hidden;
}
.about-video-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  border: none;
}

/* Video placeholder */
.video-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  cursor: pointer;
}
.video-placeholder img {
  position: absolute;
  inset: 0;
  object-fit: cover;
  opacity: 0.5;
}
.play-btn {
  position: relative;
  z-index: 1;
  width: 70px; height: 70px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s, transform 0.3s;
}
.play-btn:hover { background: rgba(201,168,106,0.15); transform: scale(1.08); }
.play-btn svg { width: 24px; height: 24px; fill: var(--gold); margin-left: 4px; }
.video-placeholder span {
  position: relative;
  z-index: 1;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

.about-text h2 { font-size: 38px; margin-bottom: 22px; }
.about-text p { color: var(--grey-light); margin-bottom: 16px; font-size: 15px; }
.about-text .btn { margin-top: 24px; }

/* Artists grid */
.artists-label { text-align: center; margin-bottom: 52px; }
.artists-label h2 { font-size: 34px; margin-bottom: 14px; }

.artists-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.artist-card {
  text-align: center;
}
.artist-photo {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  margin-bottom: 24px;
}
.artist-photo img {
  transition: transform 0.6s var(--ease-gold);
}
.artist-card:hover .artist-photo img { transform: scale(1.04); }
.artist-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid rgba(201,168,106,0);
  transition: border-color 0.4s;
}
.artist-card:hover .artist-photo::after { border-color: rgba(201,168,106,0.35); }

.artist-socials {
  position: absolute;
  bottom: 16px; left: 0; right: 0;
  display: flex;
  justify-content: center;
  gap: 12px;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.3s, transform 0.3s;
}
.artist-card:hover .artist-socials { opacity: 1; transform: translateY(0); }
.artist-socials a {
  width: 36px; height: 36px;
  background: rgba(13,13,13,0.85);
  border: 1px solid rgba(201,168,106,0.4);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  transition: background 0.2s;
}
.artist-socials a:hover { background: var(--gold); color: var(--black); }
.artist-socials svg { width: 14px; height: 14px; }

.artist-name { font-family: var(--font-serif); font-size: 22px; margin-bottom: 4px; }
.artist-role { font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); }
.artist-bio { font-size: 13px; color: var(--grey-light); line-height: 1.75; margin-top: 10px; }

/* ============================================
   SECTION — TESTIMONIALS
   ============================================ */
.section-testimonials {
  padding: var(--section-gap) 0;
  background: var(--black-soft);
  border-top: 1px solid rgba(201,168,106,0.1);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 64px;
}

.testi-card {
  background: var(--black-card);
  padding: 44px 36px;
  border: 1px solid rgba(201,168,106,0.1);
  position: relative;
  transition: border-color 0.3s, transform 0.3s;
}
.testi-card:hover {
  border-color: rgba(201,168,106,0.3);
  transform: translateY(-4px);
}

.testi-quote {
  font-family: var(--font-serif);
  font-size: 52px;
  color: var(--gold);
  line-height: 0.8;
  margin-bottom: 20px;
  opacity: 0.6;
}

.testi-quote-right {
  text-align: right;
}
.testi-text {
  font-size: 15px;
  color: var(--grey-light);
  line-height: 1.8;
  margin-bottom: 32px;
  font-style: italic;
}
.testi-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 20px;
}
.star { color: var(--gold); font-size: 13px; }

.testi-author { display: flex; align-items: center; gap: 14px; }
.testi-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  overflow: hidden;
  border: 1px solid rgba(201,168,106,0.3);
  flex-shrink: 0;
}
.testi-name { font-weight: 600; font-size: 14px; color: var(--white); }
.testi-event { font-size: 11px; color: var(--gold); letter-spacing: 0.08em; }

/* ============================================
   SECTION — HERO BANNER (prestations page)
   ============================================ */
.page-hero {
  position: relative;
  height: 55vh;
  min-height: 400px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  padding-top: var(--nav-h);
}
.page-hero-bg {
  position: absolute;
  inset: 0;
}
.page-hero-bg img { width: 100%; height: 100%; object-fit: cover; object-position: center 30%; }
.page-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(13,13,13,0.4), rgba(13,13,13,0.85) 100%);
}
.page-hero-content {
  position: relative;
  z-index: 1;
  padding-bottom: 80px;
  width: 100%;
  text-align: center;
}
.page-hero-content h1 { font-size: 56px; margin-bottom: 14px; }
.page-hero-content p { color: var(--grey-light); font-size: 15px; max-width: 480px; margin: 0 auto; }

/* ============================================
   SECTION — PRESTATION DETAIL (prestations page)
   ============================================ */
.prest-detail {
  padding: var(--section-gap) 0;
  border-bottom: 1px solid rgba(201,168,106,0.08);
}
.prest-detail:last-child { border-bottom: none; }

.prest-detail-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.prest-detail-inner.reverse { direction: rtl; }
.prest-detail-inner.reverse > * { direction: ltr; }

.prest-detail-img {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
}
.animation-img {
  object-position: 39%;
}
.corpo-img {
  object-position: 56%;
}
.prest-detail-img img { transition: transform 0.7s var(--ease-gold); }
.prest-detail:hover .prest-detail-img img { transform: scale(1.03); }
.prest-detail-img .photo-credit {
  position: absolute;
  bottom: 10px; left: 14px;
  font-size: 9px;
  color: rgba(245,240,232,0.4);
  letter-spacing: 0.08em;
}

.prest-detail-body { padding: 20px 0; }
.prest-detail-body .prest-icon { font-size: 28px; margin-bottom: 14px; }
.prest-detail-body .label { margin-bottom: 8px; }
.prest-detail-body h2 { font-size: 36px; margin-bottom: 16px; }
.prest-detail-body .divider { margin: 16px 0 22px; }
.prest-detail-body p { color: var(--grey-light); font-size: 15px; margin-bottom: 20px; line-height: 1.85; }

.prest-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 24px;
  margin-bottom: 36px;
}
.prest-features li {
  font-size: 13px;
  color: var(--grey-light);
  display: flex;
  align-items: baseline;
  gap: 8px;
}
.prest-features li::before {
  content: '◆';
  font-size: 7px;
  color: var(--gold);
  flex-shrink: 0;
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background: var(--black);
  border-top: 1px solid rgba(201,168,106,0.15);
  padding: 80px 0 40px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 64px;
}

.footer-brand .nav-logo { 
  display: flex;
  align-items: center;
  gap: 12px; }
.footer-brand p { color: var(--grey); font-size: 14px; line-height: 1.8; max-width: 280px; margin-bottom: 24px; }

.footer-socials {
  display: flex;
  gap: 14px;
}
.footer-socials a {
  width: 40px; height: 40px;
  border: 1px solid rgba(201,168,106,0.25);
  display: flex; align-items: center; justify-content: center;
  color: var(--grey);
  transition: color 0.25s, border-color 0.25s;
}
.footer-socials a:hover { color: var(--gold); border-color: var(--gold); }
.footer-socials svg { width: 15px; height: 15px; }

.footer-col h4 {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 12px; }
.footer-col ul li a {
  font-size: 14px;
  color: var(--grey);
  transition: color 0.25s;
}
.footer-col ul li a:hover { color: var(--white); }
.footer-col address {
  font-style: normal;
  color: var(--grey);
  font-size: 14px;
  line-height: 1.85;
}
.footer-col address a { color: var(--gold); transition: color 0.25s; }
.footer-col address a:hover { color: var(--gold-light); }

.footer-bottom {
  border-top: 1px solid rgba(201,168,106,0.08);
  padding-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-bottom p { font-size: 12px; color: var(--grey); }
.footer-bottom p span { color: var(--gold-dim); }

/* ============================================
   PHOTO STRIP (horizontal scroll)
   ============================================ */
.photo-strip {
  overflow: hidden;
  padding: 0;
  border-top: 1px solid rgba(201,168,106,0.08);
  border-bottom: 1px solid rgba(201,168,106,0.08);
}
.strip-track {
  display: flex;
  width: max-content;
  animation: stripScroll 40s linear infinite;
}
.strip-track:hover { animation-play-state: paused; }
.strip-item {
  width: 620px;
  height: 380px;
  flex-shrink: 0;
  overflow: hidden;
  border-right: 2px solid var(--black);
}
.strip-item img { object-position: center; }

@keyframes stripScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ============================================
   AGENDA TEASER
   ============================================ */
.section-agenda {
  padding: 100px 0;
  background: var(--black-card);
  border-top: 1px solid rgba(201,168,106,0.1);
}
.agenda-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}
.agenda-text h2 { font-size: 36px; margin-bottom: 12px; }
.agenda-text p { color: var(--grey-light); max-width: 480px; }

/* ============================================
   ANIMATIONS — FADE IN
   ============================================ */
[data-fade] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s var(--ease-gold, cubic-bezier(0.25,0.46,0.45,0.94)),
              transform 0.75s var(--ease-gold, cubic-bezier(0.25,0.46,0.45,0.94));
}
[data-fade].visible { opacity: 1; transform: translateY(0); }
[data-fade][data-delay="1"] { transition-delay: 0.1s; }
[data-fade][data-delay="2"] { transition-delay: 0.22s; }
[data-fade][data-delay="3"] { transition-delay: 0.36s; }
[data-fade][data-delay="4"] { transition-delay: 0.5s; }

/* ============================================
   PAGE — CONTACT
   ============================================ */
.contact-section { padding: var(--section-gap) 0; }

.contact-col-title { font-size: 32px; margin-bottom: 18px; }

.contact-items {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-top: 32px;
  margin-bottom: 44px;
}

.contact-item { display: flex; align-items: center; gap: 16px; }

.contact-icon {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(201,168,106,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
}

.contact-item-label {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 3px;
}

.contact-item-value {
  color: var(--grey-light);
  font-size: 15px;
}

a.contact-item-value {
  transition: color 0.2s;
  white-space: nowrap;
}

a.contact-item-value:hover { color: var(--white); }

.contact-social-label {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}

.contact-social-links { display: flex; gap: 12px; }

.social-link {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(201,168,106,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--grey);
  transition: color 0.25s, border-color 0.25s;
}

.social-link:hover {
  color: var(--gold);
  border-color: var(--gold);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact-form { display: flex; flex-direction: column; }

.form-field { margin-bottom: 16px; }
.form-field--last { margin-bottom: 24px; }

.form-label {
  display: block;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--grey);
  margin-bottom: 8px;
}

.form-input {
  width: 100%;
  background: var(--black-card);
  border: 1px solid rgba(201,168,106,0.15);
  color: var(--white);
  padding: 14px 16px;
  font-family: var(--font-sans);
  font-size: 14px;
  outline: none;
  transition: border-color 0.25s;
}

.form-input:focus { border-color: rgba(201,168,106,0.5); }

select.form-input { appearance: none; cursor: pointer; }

select.form-input option { background: var(--black-card); }

input[type="date"].form-input { color-scheme: dark; }

textarea.form-input { resize: vertical; min-height: 130px; }

.form-submit { align-self: flex-start; }

.form-input.is-invalid {
  border-color: #f56565;
  outline: none;
  box-shadow: 0 0 0 2px rgba(245, 101, 101, 0.2);
}

.form-error-msg {
  display: block;
  margin-top: 5px;
  font-size: 12px;
  color: #f56565;
}

.form-feedback {
  margin-top: 16px;
  padding: 14px 18px;
  border-radius: 6px;
  font-size: 14px;
  line-height: 1.5;
}
.form-feedback--success {
  background: rgba(72, 187, 120, 0.12);
  border: 1px solid rgba(72, 187, 120, 0.4);
  color: #48bb78;
}
.form-feedback--error {
  background: rgba(245, 101, 101, 0.12);
  border: 1px solid rgba(245, 101, 101, 0.4);
  color: #f56565;
}

.form-name-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

/* ============================================
   PAGE — PRESTATIONS
   ============================================ */
.prest-intro { padding: 80px 0 40px; }

.prest-intro-inner { max-width: 760px; text-align: center; }

.prest-intro .divider { margin: 0 auto 22px; }

.prest-intro-title { font-size: 32px; margin-bottom: 20px; }

.prest-intro-text { color: var(--grey-light); font-size: 16px; line-height: 1.9; }

.prest-subtitle {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--grey);
  margin-bottom: 16px;
}

.prest-detail--first { padding-top: var(--section-gap); }

.formule-list {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* Accordéon formules mariage */
.formule-accordion { border-left: 2px solid rgba(201,168,106,0.4); padding-left: 20px; }
.formule-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  user-select: none;
  padding: 2px 0;
}
.formule-trigger h4 {
  font-size: 14px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0;
}
.formule-arrow {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-left: 12px;
  color: var(--gold);
  transition: transform 0.3s ease;
}
.formule-accordion.open .formule-arrow { transform: rotate(180deg); }
.formule-body {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s cubic-bezier(0.25,0.46,0.45,0.94),
              opacity 0.3s ease, margin-top 0.3s ease;
  opacity: 0;
  margin-top: 0;
}
.formule-accordion.open .formule-body {
  opacity: 1;
  margin-top: 10px;
}
.formule-body-text { color: var(--grey-light); font-size: 14px; line-height: 1.8; }
.formule-body-note { color: var(--grey); font-size: 13px; font-style: italic; margin-top: 8px; }

.btn-mt { margin-top: 32px; }

.prest-cta { padding: var(--section-gap) 0; text-align: center; }

.prest-cta-inner { max-width: 680px; }

.prest-cta .divider { margin: 0 auto 24px; }

.prest-cta-title { font-size: 44px; margin-bottom: 18px; }

.prest-cta-title em { color: var(--gold); }

.prest-cta-text {
  color: var(--grey-light);
  font-size: 15px;
  margin-bottom: 44px;
  line-height: 1.85;
}

.prest-cta-btns { display: flex; gap: 18px; justify-content: center; flex-wrap: wrap; }

/* Grille répertoire */
.repertoire-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  margin-top: 56px;
}

/* ============================================
   PAGE — ACCUEIL
   ============================================ */
.section-cta-row { text-align: center; margin-top: 52px; }

.artists-label .divider { margin: 16px auto 0; }

.btn svg { position: relative; z-index: 1; flex-shrink: 0; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  :root { --section-gap: 90px; }

  .hero { grid-template-columns: 1fr; grid-template-rows: auto; min-height: 100svh; }
  .hero-content { padding-bottom: 64px; }

  .prestations-grid { grid-template-columns: 1fr; }
  .prest-card { aspect-ratio: 16/9; }
  .prest-card p { opacity: 1; transform: translateY(0); }
  .prestations-grid--text { max-width: none; }
  .prest-card--text { aspect-ratio: unset; }

  .about-top { grid-template-columns: 1fr; gap: 48px; }
  .artists-grid { grid-template-columns: repeat(2, 1fr); }

  .testimonials-grid { grid-template-columns: 1fr; max-width: 560px; margin: 64px auto 0; }

  .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }

  .prest-detail-inner { grid-template-columns: 1fr; gap: 48px; }
  .prest-detail-inner.reverse { direction: ltr; }

  .agenda-inner { flex-direction: column; text-align: center; }
  .agenda-text p { margin: 0 auto; }

  .contact-grid { gap: 52px; }
  .prest-cta-title { font-size: 36px; }

  .repertoire-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .nav-links, .nav-socials, .nav-cta { display: none; }
  .nav-burger { display: flex; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
}

@media (max-width: 768px) {
  :root { --section-gap: 72px; --nav-h: 68px; }
  .container { padding: 0 24px; }

  .hero-content { padding-bottom: 48px; }
  .hero-title { font-size: 38px; }
  .hero-title-line1 { white-space: normal; }
  .hero-ctas { flex-direction: column; align-items: flex-start; }

  .artists-grid { grid-template-columns: 1fr; max-width: 360px; margin: 0 auto; }

  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }

  .prest-features { grid-template-columns: 1fr; }

  .section-header { margin-bottom: 48px; }

  .page-hero-content h1 { font-size: 36px; }

  .form-name-grid { grid-template-columns: 1fr; }

  .prest-cta-title { font-size: 30px; }

  /* Photo strip — scroll tactile horizontal sur mobile */
  .photo-strip {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    scroll-snap-type: x mandatory;
  }
  .photo-strip::-webkit-scrollbar { display: none; }
  .strip-track { animation: none; }
  .strip-item {
    width: 260px;
    height: 180px;
    scroll-snap-align: start;
  }

}

/* ============================================
   COOKIE BANNER
   ============================================ */
#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2000;
  background: #1a1a1a;
  border-top: 1px solid rgba(201,168,106,0.2);
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.25,0.46,0.45,0.94);
}
#cookie-banner.visible { transform: translateY(0); }

.cookie-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 18px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.cookie-inner p {
  font-size: 13px;
  color: var(--grey-light);
  line-height: 1.6;
}
.cookie-inner p a {
  color: var(--gold);
  text-decoration: none;
  white-space: nowrap;
}
.cookie-inner p a:hover { text-decoration: underline; }
.cookie-btns {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}
.cookie-btns button {
  padding: 9px 22px;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  border: 1px solid rgba(201,168,106,0.35);
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
#cookie-refuse {
  background: transparent;
  color: var(--grey);
}
#cookie-refuse:hover {
  border-color: rgba(201,168,106,0.6);
  color: var(--white);
}
#cookie-accept {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}
#cookie-accept:hover { background: var(--gold-light); border-color: var(--gold-light); }

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

@media (max-width: 640px) {
  .cookie-inner {
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 20px;
    gap: 16px;
  }
  .cookie-btns { width: 100%; }
  .cookie-btns button { flex: 1; }
}

