/* ==========================================================================
   Queen's Revelation — Feuille de style principale
   --------------------------------------------------------------------------
   Sommaire
   01. Variables & reset
   02. Utilitaires
   03. Curseur personnalisé
   04. Navigation
   05. Bannière
   06. Hero
   07. Compte à rebours
   08. Boutons
   09. Sections communes
   10. L'Univers / À propos
   11. Intervenantes
   12. Dates
   13. Galerie
   14. Témoignages
   15. FAQ
   16. Contact & formulaire
   17. Pied de page
   18. Modales
   19. Animations au défilement
   20. Responsive
   21. Accessibilité / mouvement réduit
   ========================================================================== */


/* 01. VARIABLES & RESET
   ========================================================================== */
:root {
  --teal-deep: #0d3d3a;
  --teal-mid: #1a6b65;
  --teal-bright: #2a9d8f;
  --teal-light: #4ecdc4;
  --gold: #c9a84c;
  --gold-light: #e8c97a;
  --cream: #fdf6e8;
  --white: #ffffff;
  --dark: #0a1f1e;

  --nav-height: 60px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--dark);
  color: var(--cream);
  font-family: 'Lato', sans-serif;
  font-weight: 300;
  overflow-x: clip;
}

img {
  max-width: 100%;
}

/* Les ancres ne passent plus sous la barre de navigation fixe. */
[id] {
  scroll-margin-top: calc(var(--nav-height) + 1rem);
}

/* Indicateur de focus visible au clavier (invisible à la souris). */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
[tabindex]:focus-visible {
  outline: 2px solid var(--gold-light);
  outline-offset: 3px;
}


/* 02. UTILITAIRES
   ========================================================================== */

/* Visible pour les lecteurs d'écran et les moteurs de recherche uniquement. */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Lien d'évitement : apparaît à la première tabulation. */
.skip-link {
  position: absolute;
  top: -100px;
  left: 1rem;
  z-index: 500;
  padding: .8rem 1.5rem;
  background: var(--gold);
  color: var(--dark);
  font-family: 'Cinzel', serif;
  font-size: .7rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  text-decoration: none;
  transition: top .2s;
}
.skip-link:focus {
  top: 1rem;
}

.link-gold {
  color: var(--gold-light);
  font-weight: bold;
  text-decoration: none;
}
.link-gold:hover {
  text-decoration: underline;
}

/* Feuille de symboles SVG : présente dans le DOM, jamais visible.
   On évite display:none, qui pose problème avec certains dégradés
   référencés via <use> ; le retrait du flux est plus sûr. */
.svg-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

/* Champ piège anti-spam : hors écran, jamais rempli par un humain.
   (display:none serait ignoré par certains robots — le décalage est plus sûr.) */
.honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
}


/* 03. CURSEUR PERSONNALISÉ
   ========================================================================== */
/* Le curseur natif n'est masqué que si le JS a confirmé son remplacement
   (classe .has-custom-cursor posée par main.js). Si le JS échoue,
   l'utilisateur conserve un curseur. */
@media (pointer: fine) {
  body.has-custom-cursor {
    cursor: none;
  }
  body.has-custom-cursor .modal,
  body.has-custom-cursor .modal * {
    cursor: auto;
  }
  body.has-custom-cursor .modal button,
  body.has-custom-cursor .modal a {
    cursor: pointer;
  }

  #cursor {
    position: fixed;
    top: 0;
    left: 0;
    width: 12px;
    height: 12px;
    background: var(--gold);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    mix-blend-mode: screen;
  }
  #cursorRing {
    position: fixed;
    top: 0;
    left: 0;
    width: 36px;
    height: 36px;
    border: 1px solid var(--gold-light);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    opacity: .5;
  }
}


/* 04. NAVIGATION
   ========================================================================== */
nav {
  position: sticky;
  top: 0;
  z-index: 200;
  padding: 1.2rem 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(10, 31, 30, .93);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(201, 168, 76, .08);
}

.nav-logo {
  font-family: 'Cinzel', serif;
  font-size: .95rem;
  letter-spacing: .3em;
  color: var(--gold-light);
  text-transform: uppercase;
  text-decoration: none;
}
.nav-logo span {
  color: var(--teal-light);
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 1.8rem;
  align-items: center;
}
.nav-links a {
  font-family: 'Cinzel', serif;
  font-size: .6rem;
  letter-spacing: .18em;
  color: var(--cream);
  text-decoration: none;
  text-transform: uppercase;
  opacity: .7;
  transition: color .3s, opacity .3s;
}
.nav-links a:hover {
  color: var(--gold-light);
  opacity: 1;
}

.nav-social {
  display: flex;
  gap: 1rem;
}
.nav-social a {
  color: rgba(253, 246, 232, .45);
  text-decoration: none;
  font-size: 1rem;
  transition: color .3s, transform .2s;
  display: flex;
}
.nav-social a:hover {
  color: var(--gold-light);
  transform: scale(1.15);
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--gold-light);
  transition: transform .3s, opacity .3s;
  transform-origin: center;
}
.nav-hamburger.open span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}
.nav-hamburger.open span:nth-child(2) {
  opacity: 0;
}
.nav-hamburger.open span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

.mobile-menu {
  display: none;
  position: fixed;
  top: var(--nav-height);
  left: 0;
  right: 0;
  background: rgba(10, 31, 30, .98);
  backdrop-filter: blur(16px);
  z-index: 199;
  padding: 2rem;
  border-bottom: 1px solid rgba(201, 168, 76, .15);
  flex-direction: column;
}
.mobile-menu.open {
  display: flex;
}
.mobile-menu a {
  font-family: 'Cinzel', serif;
  font-size: .8rem;
  letter-spacing: .3em;
  color: var(--cream);
  text-decoration: none;
  text-transform: uppercase;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(201, 168, 76, .1);
  transition: color .3s;
}
.mobile-menu a:last-of-type {
  border-bottom: none;
}
.mobile-menu a:hover {
  color: var(--gold-light);
}

.mobile-social {
  display: flex;
  gap: 1.5rem;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(201, 168, 76, .1);
}
.mobile-social a {
  font-size: 1.4rem;
  color: rgba(253, 246, 232, .6);
  text-decoration: none;
}

@media (max-width: 900px) {
  .nav-links,
  .nav-social {
    display: none;
  }
  .nav-hamburger {
    display: flex;
  }
  nav {
    padding: 1.2rem 1.5rem;
  }
}


/* 05. BANNIÈRE
   ========================================================================== */
.banner-section {
  width: 100%;
  background: #060f0e;
  overflow: hidden;
  border-top: 1px solid rgba(201, 168, 76, .1);
  border-bottom: 1px solid rgba(201, 168, 76, .1);
}
.banner-img {
  width: 100%;
  height: auto;
  max-height: 1200px;
  object-fit: cover;
  display: block;
}


/* 06. HERO
   ========================================================================== */
.hero {
  position: relative;
  min-height: 40vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: radial-gradient(ellipse at 30% 50%, #0d4a45, #0a1f1e 50%, #071716);
}

.hero-bg-particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}
.particle {
  position: absolute;
  background: var(--gold-light);
  border-radius: 50%;
  animation: float-particle linear infinite;
  opacity: 0;
}
@keyframes float-particle {
  0%   { transform: translateY(100vh) translateX(0); opacity: 0; }
  10%  { opacity: .6; }
  90%  { opacity: .3; }
  100% { transform: translateY(-10vh) translateX(calc(var(--drift) * 100px)); opacity: 0; }
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  animation: pulse-glow 4s ease-in-out infinite;
}
.hero-glow-l {
  left: -10%;
  top: 20%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(200, 168, 76, .12), transparent 70%);
}
.hero-glow-r {
  right: -5%;
  top: 30%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(42, 157, 143, .15), transparent 70%);
  animation-delay: 2s;
}
@keyframes pulse-glow {
  0%, 100% { transform: scale(1); }
  50%      { transform: scale(1.1); opacity: .7; }
}

.hero-content {
  position: relative;
  text-align: center;
  z-index: 2;
  padding: 2rem;
  animation: hero-reveal 1.5s cubic-bezier(.16, 1, .3, 1) forwards;
  opacity: 0;
  transform: translateY(30px);
}
@keyframes hero-reveal {
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fade-up {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-divider {
  width: 120px;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
  margin: 2rem auto;
  opacity: 0;
  animation: fade-up 1s ease forwards 1s;
}
.hero-by {
  font-family: 'Cinzel', serif;
  font-size: .65rem;
  letter-spacing: .4em;
  color: var(--gold);
  text-transform: uppercase;
  opacity: 0;
  animation: fade-up 1s ease forwards 1.4s;
}
.hero-cta {
  margin-top: 2.5rem;
  margin-bottom: 2.5rem;
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fade-up 1s ease forwards 1.6s;
}


/* 07. COMPTE À REBOURS
   ========================================================================== */
.countdown-bar {
  background: linear-gradient(135deg, #0b2f2c, #0d3d3a);
  padding: 2.5rem 2rem;
  text-align: center;
  border-bottom: 1px solid rgba(201, 168, 76, .15);
  position: relative;
  overflow: hidden;
}
.countdown-bar::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(to right, transparent, var(--gold), var(--teal-bright), var(--gold), transparent);
}
.countdown-label {
  font-family: 'Cinzel', serif;
  font-size: .6rem;
  letter-spacing: .5em;
  color: var(--teal-light);
  text-transform: uppercase;
  margin-bottom: .5rem;
  display: block;
}
.countdown-event-name {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.3rem;
  color: var(--cream);
  margin-bottom: 1.5rem;
}
.countdown-event-name strong {
  font-style: normal;
  color: var(--gold-light);
  font-family: 'Cinzel', serif;
  font-size: 1rem;
  font-weight: 600;
}
.countdown-units {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.cd-unit {
  text-align: center;
  min-width: 70px;
}
.cd-num {
  font-family: 'Cinzel', serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
  text-shadow: 0 0 30px rgba(201, 168, 76, .4);
  display: block;
}
.cd-lbl {
  font-family: 'Cinzel', serif;
  font-size: .55rem;
  letter-spacing: .3em;
  color: rgba(253, 246, 232, .4);
  text-transform: uppercase;
  margin-top: .4rem;
  display: block;
}
.cd-sep {
  font-family: 'Cinzel', serif;
  font-size: 2rem;
  color: rgba(201, 168, 76, .3);
  align-self: flex-start;
  margin-top: .3rem;
}
.countdown-cta {
  margin-top: 1.5rem;
}


/* 08. BOUTONS
   ========================================================================== */
.btn {
  font-family: 'Cinzel', serif;
  font-size: .65rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  padding: .9rem 2.5rem;
  border: 1px solid;
  text-decoration: none;
  transition: all .4s;
  position: relative;
  overflow: hidden;
  display: inline-block;
}
.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s;
}
.btn:hover::before {
  transform: scaleX(1);
}
.btn span {
  position: relative;
  z-index: 1;
}

.btn-gold {
  color: var(--dark);
  border-color: var(--gold);
  background: var(--gold);
}
.btn-gold::before {
  background: var(--gold-light);
}

.btn-outline {
  color: var(--cream);
  border-color: rgba(253, 246, 232, .5);
  background: transparent;
}
.btn-outline::before {
  background: rgba(255, 255, 255, .08);
}

.btn-teal {
  color: var(--dark);
  border-color: var(--teal-light);
  background: var(--teal-light);
}
.btn-teal::before {
  background: var(--teal-bright);
}

/* Variantes de taille */
.btn--sm {
  font-size: .6rem;
  padding: .7rem 2rem;
}
.btn--sm-tight {
  font-size: .6rem;
  padding: .75rem 1.8rem;
}
.btn--block {
  width: 100%;
  cursor: pointer;
  text-align: center;
}


/* 09. SECTIONS COMMUNES
   ========================================================================== */
section {
  padding: 8rem 2rem;
}

.section-label {
  font-family: 'Cinzel', serif;
  font-size: .6rem;
  letter-spacing: .5em;
  color: var(--teal-light);
  text-transform: uppercase;
  display: block;
  margin-bottom: 1rem;
}

.section-title {
  font-family: 'Cinzel', serif;
  font-size: clamp(2rem, 4vw, 3.5rem);
  color: var(--gold-light);
  font-weight: 600;
  line-height: 1.1;
}

.section-title-italic {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 300;
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  color: var(--white);
  display: block;
}

/* Tailles de titre ponctuelles (remplacent les anciens style="" en ligne). */
.title-2   { font-size: 2rem; }
.title-25  { font-size: 2.5rem; }
.title-32  { font-size: 3.2rem; }
.italic-15 { font-size: 1.5rem; }
.italic-2  { font-size: 2rem; }
.italic-25 { font-size: 2.5rem; }
.italic-38 { font-size: 3.8rem; }


/* 10. L'UNIVERS / À PROPOS
   ========================================================================== */
.about {
  background: linear-gradient(135deg, #0e2a28, #0a1f1e 50%, #0d3535);
  position: relative;
  overflow: hidden;
}
.about-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}
.about-text p {
  font-size: 1.05rem;
  line-height: 1.9;
  color: rgba(253, 246, 232, .8);
  margin-top: 2rem;
}
.about-text p + p {
  margin-top: 1.2rem;
}
.about-features {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.about-img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

.feature-card {
  border-left: 2px solid var(--gold);
  padding: 1.2rem 1.5rem;
  background: rgba(201, 168, 76, .05);
  transition: transform .3s;
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 0;
  background: linear-gradient(to right, transparent, rgba(201, 168, 76, .05));
  transition: width .4s;
}
.feature-card:hover::before {
  width: 100%;
}
.feature-card:hover {
  transform: translateX(8px);
}
.feature-icon {
  font-size: 1.5rem;
  margin-bottom: .5rem;
  line-height: 1;
}
.feature-icon svg {
  width: 28px;
  height: 28px;
}
.feature-icon--lg svg {
  width: 32px;
  height: 32px;
}
.feature-title {
  font-family: 'Cinzel', serif;
  font-size: .8rem;
  letter-spacing: .15em;
  color: var(--gold-light);
  text-transform: uppercase;
  margin-bottom: .3rem;
}
.feature-title--spaced {
  margin-top: 1.2rem;
}
.feature-desc {
  font-size: .9rem;
  color: rgba(253, 246, 232, .6);
  line-height: 1.5;
}


/* 11. INTERVENANTES
   ========================================================================== */
.lineup {
  background: linear-gradient(180deg, #0a1f1e, #0d3535 50%, #0a1f1e);
  overflow: hidden;
}
.lineup-inner {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}
.portraits-grid {
  margin-top: 4rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
}
.portrait-card {
  width: 200px;
  text-align: center;
  cursor: pointer;
}
.portrait-photo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  margin: 0 auto .9rem;
  background: linear-gradient(135deg, var(--teal-deep), var(--teal-mid));
  border: 1px solid rgba(201, 168, 76, .3);
  box-shadow: 0 0 30px rgba(42, 157, 143, .2);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  opacity: .7;
  transition: box-shadow .3s, border-color .3s;
}
.portrait-card:hover .portrait-photo {
  box-shadow: 0 0 50px rgba(201, 168, 76, .3);
  border-color: var(--gold);
}
.portrait-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  display: block;
}
.portrait-name {
  font-family: 'Cinzel', serif;
  font-size: .75rem;
  letter-spacing: .12em;
  color: var(--gold-light);
  text-transform: uppercase;
  display: block;
}
.portrait-flag {
  font-size: .9rem;
  margin-left: .3rem;
}
.portrait-discipline {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: .88rem;
  color: rgba(253, 246, 232, .5);
  display: block;
  margin-top: .25rem;
  line-height: 1.4;
}
.portrait-toggle-icon {
  display: inline-block;
  margin-top: .5rem;
  font-family: 'Cinzel', serif;
  font-size: .6rem;
  letter-spacing: .2em;
  color: rgba(201, 168, 76, .45);
  text-transform: uppercase;
  transition: color .3s;
}
.portrait-card:hover .portrait-toggle-icon,
.portrait-card.open .portrait-toggle-icon {
  color: var(--gold);
}
.portrait-bio-wrap {
  max-height: 0;
  overflow: hidden;
  transition: max-height .5s cubic-bezier(.4, 0, .2, 1);
}
.portrait-card.open .portrait-bio-wrap {
  max-height: 600px;
}
.portrait-bio {
  margin-top: .6rem;
  padding: .9rem .4rem;
  font-family: 'Cormorant Garamond', serif;
  font-size: .95rem;
  color: rgba(253, 246, 232, .68);
  line-height: 1.8;
  text-align: left;
  border-top: 1px solid rgba(201, 168, 76, .12);
}


/* 12. DATES
   ========================================================================== */
.tour {
  background: var(--dark);
}
.tour-inner {
  max-width: 1000px;
  margin: 0 auto;
}
/* Remplace l'ancienne suite de <br> entre les deux blocs de dates. */
.tour-inner + .tour-inner {
  margin-top: 9.5rem;
}
.tour-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 4rem;
  flex-wrap: wrap;
  gap: 2rem;
}
.dates-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1px;
  background: rgba(201, 168, 76, .1);
  border: 1px solid rgba(201, 168, 76, .1);
}
.date-card {
  background: var(--dark);
  padding: 1.8rem 2rem;
  transition: background .3s;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.date-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(to right, var(--gold), var(--teal-bright));
  transform: scaleX(0);
  transition: transform .4s;
}
.date-card:hover::after {
  transform: scaleX(1);
}
.date-card:hover {
  background: rgba(201, 168, 76, .04);
}
.date-city {
  font-family: 'Cinzel', serif;
  font-size: 1.05rem;
  letter-spacing: .15em;
  color: var(--white);
  text-transform: uppercase;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.date-info {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: .95rem;
  color: rgba(253, 246, 232, .45);
  margin-top: .4rem;
}
.date-status {
  display: inline-block;
  font-family: 'Cinzel', serif;
  font-size: .55rem;
  letter-spacing: .2em;
  padding: .25rem .7rem;
  margin-top: .8rem;
  text-transform: uppercase;
}
.status-past {
  background: rgba(201, 168, 76, .1);
  color: var(--gold);
  border: 1px solid rgba(201, 168, 76, .3);
}
.status-planned {
  background: rgba(180, 120, 220, .1);
  color: #c89ee0;
  border: 1px solid rgba(180, 120, 220, .3);
}


/* 13. GALERIE
   ========================================================================== */
.gallery {
  background: linear-gradient(180deg, #0a1f1e, #0b2826);
  position: relative;
  overflow: hidden;
}
.gallery-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.gallery-grid {
  margin-top: 4rem;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: .8rem;
}
.gallery-item {
  position: relative;
  overflow: hidden;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.gallery-item:nth-child(1) { grid-column: span 5; grid-row: span 2; }
.gallery-item:nth-child(2) { grid-column: span 4; }
.gallery-item:nth-child(3) { grid-column: span 3; }
.gallery-item:nth-child(4) { grid-column: span 4; }
.gallery-item:nth-child(5) { grid-column: span 3; }
.gallery-item:nth-child(6) { grid-column: span 4; }
.gallery-item:nth-child(7) { grid-column: span 8; }


/* 14. TÉMOIGNAGES
   ========================================================================== */
.testimonials {
  background: var(--dark);
  position: relative;
  overflow: hidden;
}
.testimonials::before {
  content: '❝';
  position: absolute;
  left: -1rem;
  top: 4rem;
  font-size: 20rem;
  color: rgba(201, 168, 76, .03);
  line-height: 1;
  pointer-events: none;
  font-family: serif;
}
.testimonials-inner {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}
.testimonials-grid {
  margin-top: 4rem;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
}
.testimonial-card {
  padding: 2.5rem;
  border: 1px solid rgba(201, 168, 76, .15);
  background: rgba(201, 168, 76, .03);
  position: relative;
  text-align: left;
  transition: border-color .3s, transform .3s, background .3s;
  margin: 0;
}
.testimonial-card::before {
  content: '❝';
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  font-size: 3rem;
  color: rgba(201, 168, 76, .12);
  font-family: serif;
}
.testimonial-card:hover {
  border-color: rgba(201, 168, 76, .35);
  background: rgba(201, 168, 76, .06);
  transform: translateY(-4px);
}
.testimonial-stars {
  color: var(--gold);
  font-size: .9rem;
  margin-bottom: 1.2rem;
  letter-spacing: .2em;
}
.testimonial-text {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.1rem;
  line-height: 1.8;
  color: rgba(253, 246, 232, .85);
  margin-bottom: 1.5rem;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: .8rem;
}
.testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal-deep), var(--teal-mid));
  border: 1px solid rgba(201, 168, 76, .3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}
.testimonial-name {
  font-family: 'Cinzel', serif;
  font-size: .75rem;
  letter-spacing: .1em;
  color: var(--gold-light);
  display: block;
  font-style: normal;
}


/* 15. FAQ
   ========================================================================== */
.faq {
  background: linear-gradient(135deg, #0e2a28, #0a1f1e);
}
.faq-inner {
  max-width: 800px;
  margin: 0 auto;
}
.faq-list {
  margin-top: 3.5rem;
}
.faq-item {
  border-bottom: 1px solid rgba(201, 168, 76, .1);
}
.faq-item:first-child {
  border-top: 1px solid rgba(201, 168, 76, .1);
}
.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 0;
  background: none;
  border: none;
  cursor: pointer;
  font-family: 'Cinzel', serif;
  font-size: .85rem;
  letter-spacing: .1em;
  color: var(--cream);
  text-align: left;
  text-transform: uppercase;
  gap: 1rem;
  transition: color .3s;
}
.faq-question:hover,
.faq-question.open {
  color: var(--gold-light);
}
.faq-icon {
  font-size: 1.2rem;
  color: var(--gold);
  flex-shrink: 0;
  transition: transform .4s;
}
.faq-question.open .faq-icon {
  transform: rotate(45deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .5s cubic-bezier(.16, 1, .3, 1), padding .3s;
}
.faq-answer.open {
  max-height: 400px;
  padding-bottom: 1.5rem;
}
.faq-answer p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  color: rgba(253, 246, 232, .7);
  line-height: 1.8;
}


/* 16. CONTACT & FORMULAIRE
   ========================================================================== */
.contact {
  background: var(--dark);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.contact::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(42, 157, 143, .08), transparent 70%);
  pointer-events: none;
}
.contact-inner {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.contact-cards {
  margin-top: 3rem;
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.social-links {
  margin-top: 3rem;
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.social-link {
  display: flex;
  align-items: center;
  gap: .6rem;
  padding: .8rem 1.5rem;
  border: 1px solid rgba(253, 246, 232, .15);
  color: rgba(253, 246, 232, .6);
  text-decoration: none;
  font-family: 'Cinzel', serif;
  font-size: .6rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  transition: all .3s;
}
.social-link svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
  flex-shrink: 0;
}
.social-link:hover {
  border-color: var(--gold);
  color: var(--gold-light);
  background: rgba(201, 168, 76, .05);
}

.tickets-cta {
  margin-top: 4rem;
  padding: 3rem;
  border: 1px solid rgba(201, 168, 76, .3);
  background: linear-gradient(135deg, rgba(201, 168, 76, .05), rgba(42, 157, 143, .05));
}
.tickets-cta h3 {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 2.2rem;
  color: var(--white);
  margin-bottom: 1rem;
}
.tickets-cta p {
  color: rgba(253, 246, 232, .6);
  margin-bottom: 2rem;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  line-height: 1.7;
}

.custom-form {
  max-width: 700px;
  width: 100%;
  margin: 0 auto;
  padding: 2.5rem;
  border: 1px solid rgba(201, 168, 76, .2);
  background: rgba(201, 168, 76, .03);
  text-align: left;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.form-group {
  margin-bottom: 1.5rem;
}
.form-group label {
  display: block;
  font-family: 'Cinzel', serif;
  font-size: .65rem;
  letter-spacing: .2em;
  color: var(--teal-light);
  text-transform: uppercase;
  margin-bottom: .6rem;
}
.form-group input,
.form-group textarea {
  width: 100%;
  background: rgba(10, 31, 30, .4);
  border: 1px solid rgba(253, 246, 232, .15);
  color: var(--cream);
  padding: 1rem;
  font-family: 'Lato', sans-serif;
  font-size: .95rem;
  transition: all .3s;
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(253, 246, 232, .3);
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(10, 31, 30, .8);
  box-shadow: 0 0 15px rgba(201, 168, 76, .1);
}

/* Case de consentement RGPD */
.form-consent {
  display: flex;
  align-items: flex-start;
  gap: .7rem;
  margin-bottom: 1.5rem;
}
.form-consent input[type="checkbox"] {
  width: 16px;
  height: 16px;
  margin-top: .2rem;
  flex-shrink: 0;
  accent-color: var(--gold);
}
.form-consent label {
  font-family: 'Lato', sans-serif;
  font-size: .78rem;
  line-height: 1.5;
  letter-spacing: 0;
  text-transform: none;
  color: rgba(253, 246, 232, .55);
  margin-bottom: 0;
}
.form-consent label a {
  color: var(--gold-light);
  text-decoration: underline;
}

/* Message de retour après envoi */
.form-status {
  margin-top: 1.2rem;
  padding: .9rem 1.1rem;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  line-height: 1.5;
  border: 1px solid;
}
.form-status[hidden] {
  display: none;
}
.form-status--ok {
  border-color: rgba(78, 205, 196, .4);
  background: rgba(78, 205, 196, .08);
  color: var(--teal-light);
}
.form-status--ko {
  border-color: rgba(220, 120, 120, .4);
  background: rgba(220, 120, 120, .08);
  color: #e2a1a1;
}

@media (max-width: 600px) {
  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .custom-form {
    padding: 1.5rem;
  }
}


/* 17. PIED DE PAGE
   ========================================================================== */
footer {
  background: #060f0e;
  padding: 3rem 2rem;
  text-align: center;
  border-top: 1px solid rgba(201, 168, 76, .1);
}
.footer-logo {
  font-family: 'Cinzel', serif;
  font-size: .7rem;
  letter-spacing: .5em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 1.2rem;
}
.footer-text {
  font-size: .8rem;
  color: rgba(253, 246, 232, .3);
  font-family: 'Cormorant Garamond', serif;
}
.footer-legal {
  display: inline-block;
  margin-top: 1.5rem;
  color: rgba(201, 168, 76, .6);
  text-decoration: none;
  font-family: 'Cinzel', serif;
  font-size: .7rem;
  letter-spacing: .1em;
  transition: color .3s;
}
.footer-legal:hover {
  color: var(--gold-light);
}


/* 18. MODALES
   ========================================================================== */
.modal {
  position: fixed;
  inset: 0;
  z-index: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, .75);
  backdrop-filter: blur(6px);
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease;
}
.modal.is-open {
  opacity: 1;
  pointer-events: auto;
}
.modal__card {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
  background: var(--dark);
  border: 1px solid rgba(201, 168, 76, .35);
  box-shadow: 0 30px 80px rgba(0, 0, 0, .8);
  transform: translateY(20px) scale(.97);
  transition: transform .25s ease;
}
.modal.is-open .modal__card {
  transform: translateY(0) scale(1);
}
.modal__close {
  position: absolute;
  top: .8rem;
  right: .8rem;
  z-index: 2;
  background: rgba(10, 31, 30, .85);
  border: 1px solid rgba(201, 168, 76, .3);
  color: var(--gold-light);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  font-size: 1.1rem;
  cursor: pointer;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.modal__img {
  display: block;
  max-width: 90vw;
  max-height: 75vh;
  width: auto;
  height: auto;
}
.modal__body {
  padding: 1.2rem 1.4rem;
  border-top: 1px solid rgba(201, 168, 76, .15);
}
.modal__city {
  font-family: 'Cinzel', serif;
  font-size: .85rem;
  letter-spacing: .2em;
  color: var(--gold-light);
  text-transform: uppercase;
  display: block;
  margin-bottom: 1rem;
}
.modal__empty {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1rem;
  color: rgba(253, 246, 232, .4);
}
.modal__empty[hidden],
.modal__cta[hidden] {
  display: none;
}


/* 19. ANIMATIONS AU DÉFILEMENT
   ========================================================================== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .8s ease, transform .8s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: .15s; }
.reveal-delay-2 { transition-delay: .3s; }
.reveal-delay-3 { transition-delay: .45s; }
.reveal-delay-4 { transition-delay: .6s; }


/* 20. RESPONSIVE
   ========================================================================== */
@media (max-width: 768px) {
  section {
    padding: 5rem 1.5rem;
  }
  .about-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .tour-header {
    flex-direction: column;
  }
  .tour-inner + .tour-inner {
    margin-top: 6rem;
  }
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  .countdown-units {
    gap: 1rem;
  }
  .cd-num {
    font-size: 2rem;
  }
  .social-links {
    flex-direction: column;
    align-items: center;
  }
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }
  .gallery-item {
    grid-column: span 1 !important;
    grid-row: span 1 !important;
  }
  .gallery-item img {
    aspect-ratio: 4 / 3;
    height: auto;
  }
  /* Les tailles de titre forcées redeviennent fluides sur petit écran. */
  .title-32  { font-size: 2.2rem; }
  .italic-38 { font-size: 2.4rem; }
  
  #propos .about-text {
    order: -1;
  }
}


/* 21. ACCESSIBILITÉ / MOUVEMENT RÉDUIT
   ========================================================================== */
/* Respecte le réglage système « réduire les animations ».
   Le contenu reste visible : seules les animations sont neutralisées. */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
    scroll-behavior: auto !important;
  }
  .hero-content,
  .hero-divider,
  .hero-by,
  .hero-cta {
    opacity: 1;
    transform: none;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
  .hero-bg-particles {
    display: none;
  }
}
