/* ============================================
   Eli10 — Journée Mondiale de l'Eau 2026
   Landing Page Styles (Mobile-First)
   ============================================ */

/* --- CSS Variables --- */
:root {
  --color-primary: #541C75;
  --color-primary-light: #7A3BA6;
  --color-primary-lighter: #D8B4E2;
  --color-primary-lightest: #F3EAF7;
  --color-accent: #FFFFFF;
  --color-bg: #FAFAFA;
  --color-text: #1A1A1A;
  --color-text-light: #666666;
  --color-border: #E5E5E5;
  --font-body: 'Inter', sans-serif;
  --font-heading: 'Inter', sans-serif;
  --max-width: 1200px;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 20px rgba(84,28,117,0.12);
  --shadow-lg: 0 10px 40px rgba(84,28,117,0.14);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-text);
  background-color: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  opacity: 0;
  animation: pageReveal 0.6s cubic-bezier(0.4, 0, 0.2, 1) 0.05s forwards;
}

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

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

a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--color-primary-light);
}

/* Focus visible */
:focus-visible {
  outline: 3px solid var(--color-primary-light);
  outline-offset: 2px;
}

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

/* --- Section base --- */
.section {
  padding: 64px 0;
}

.section-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 48px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--color-primary);
  margin-bottom: 16px;
  line-height: 1.2;
}

.section-text {
  font-size: 1.05rem;
  color: var(--color-text-light);
  max-width: 680px;
  margin: 0 auto;
  line-height: 1.7;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  line-height: 1.4;
}

.btn--primary {
  background-color: var(--color-primary);
  color: var(--color-accent);
}

.btn--primary:hover {
  background-color: var(--color-primary-light);
  color: var(--color-accent);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn--white {
  background-color: var(--color-accent);
  color: var(--color-primary);
}

.btn--white:hover {
  background-color: var(--color-primary-lightest);
  color: var(--color-primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn--outline-white {
  background-color: transparent;
  color: var(--color-accent);
  border-color: rgba(255,255,255,0.5);
}

.btn--outline-white:hover {
  background-color: rgba(255,255,255,0.1);
  border-color: var(--color-accent);
  color: var(--color-accent);
  transform: translateY(-2px);
}

.btn--large {
  padding: 18px 32px;
  font-size: 1rem;
}

/* ============================================
   HEADER
   ============================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: background-color var(--transition), box-shadow var(--transition), padding var(--transition);
}

@media (max-width: 767px) {
  .site-header {
    background-color: #4A1D6A;
  }
}

.site-header.scrolled {
  background-color: rgba(84, 28, 117, 0.95);
  box-shadow: 0 2px 20px rgba(0,0,0,0.2);
  padding: 10px 0;
}

@media (min-width: 768px) {
  .site-header.scrolled {
    backdrop-filter: blur(12px);
  }
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-svg {
  height: 36px;
  width: auto;
}

.nav-list {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-link {
  color: rgba(255,255,255,0.85);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 50px;
  transition: all var(--transition);
}

.nav-link:hover {
  color: var(--color-accent);
  background-color: rgba(255,255,255,0.1);
}

.nav-link--cta {
  background-color: var(--color-accent);
  color: var(--color-primary);
}

.nav-link--cta:hover {
  background-color: var(--color-primary-lightest);
  color: var(--color-primary);
  transform: translateY(-1px);
}

/* Mobile nav hidden by default */
.main-nav {
  display: none;
}

/* Burger */
.burger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.burger-line {
  width: 24px;
  height: 2px;
  background-color: var(--color-accent);
  transition: all var(--transition);
  border-radius: 2px;
}

.burger.active .burger-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.burger.active .burger-line:nth-child(2) {
  opacity: 0;
}

.burger.active .burger-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  min-height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(42,12,58,0.88) 0%, rgba(84,28,117,0.82) 40%, rgba(122,59,166,0.85) 70%, rgba(84,28,117,0.88) 100%),
    url('Image/Flye (1).jpg') center 80% / cover no-repeat;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(122, 59, 166, 0.4) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(216, 180, 226, 0.15) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 100%, rgba(122, 59, 166, 0.3) 0%, transparent 40%);
  pointer-events: none;
}

/* Animated water ripple effect */
.hero::after {
  content: '';
  position: absolute;
  bottom: -20%;
  left: -10%;
  right: -10%;
  height: 60%;
  background:
    radial-gradient(ellipse at 30% 80%, rgba(255,255,255,0.03) 0%, transparent 50%),
    radial-gradient(ellipse at 70% 60%, rgba(255,255,255,0.02) 0%, transparent 40%);
  border-radius: 50% 50% 0 0;
  animation: waterRipple 8s ease-in-out infinite;
  pointer-events: none;
}

@keyframes waterRipple {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-10px) scale(1.02); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, transparent 0%, rgba(0,0,0,0.2) 100%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 120px 0 48px;
  color: var(--color-accent);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 24px;
  letter-spacing: 0.02em;
}

.hero-badge-icon {
  flex-shrink: 0;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.hero-subtitle {
  font-size: 1.05rem;
  margin-bottom: 12px;
  font-weight: 400;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.hero-subtitle-sep {
  display: none;
}

.hero-tagline {
  font-size: 0.95rem;
  margin-bottom: 28px;
  font-weight: 500;
  font-style: italic;
  letter-spacing: 0.02em;
}

/* Countdown */
.countdown {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 36px;
}

.countdown-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius);
  padding: 12px 16px;
  min-width: 64px;
}

.countdown-number {
  font-size: 1.75rem;
  font-weight: 800;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.countdown-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 0.8;
  margin-top: 4px;
}

/* Hero CTA */
.hero-cta-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.hero-link {
  color: rgba(255,255,255,0.9);
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 4px;
  transition: color var(--transition);
}

.hero-link:hover {
  color: var(--color-accent);
}

.hero-free-badge {
  display: inline-block;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.25);
  padding: 6px 20px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* ============================================
   INTRO / CARDS
   ============================================ */
.intro {
  background-color: var(--color-bg);
}

.intro-top {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-bottom: 56px;
}

.intro-text {
  text-align: center;
}

.intro-badge {
  display: inline-block;
  background: var(--color-primary);
  color: var(--color-accent);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 6px 18px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 20px;
}

.intro-text .section-title {
  margin-bottom: 20px;
}

.intro-lead {
  font-size: 1.15rem;
  color: var(--color-primary-light);
  font-weight: 500;
  line-height: 1.7;
  margin-bottom: 16px;
  max-width: 680px;
}

.intro-body {
  font-size: 1rem;
  color: var(--color-text-light);
  line-height: 1.7;
  margin-bottom: 24px;
  max-width: 680px;
}

.intro-cta-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--color-primary);
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  transition: gap 0.3s ease;
}

.intro-cta-link:hover {
  gap: 10px;
}

.intro-image {
  display: flex;
  justify-content: center;
}

.intro-img-wrapper {
  position: relative;
  max-width: 480px;
  width: 100%;
}

.intro-img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  object-fit: cover;
  aspect-ratio: 16 / 10;
  position: relative;
  z-index: 1;
}

.intro-img-accent {
  position: absolute;
  bottom: -12px;
  right: -12px;
  width: 100%;
  height: 100%;
  border-radius: var(--radius-lg);
  border: 3px solid var(--color-primary-lighter);
  z-index: 0;
}

/* Intro highlights */
.intro-highlights {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.intro-highlight {
  background: var(--color-accent);
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.intro-highlight:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.intro-highlight-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-primary-lightest);
  color: var(--color-primary);
  border-radius: 14px;
  margin: 0 auto 16px;
}

.intro-highlight-title {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 8px;
}

.intro-highlight-text {
  font-size: 0.9rem;
  color: var(--color-text-light);
  line-height: 1.6;
}

.cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.card {
  background: var(--color-accent);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
  transition: all var(--transition);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.card-icon {
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
}

.card-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 12px;
}

.card-text {
  font-size: 0.95rem;
  color: var(--color-text-light);
  line-height: 1.6;
}

/* ============================================
   PROGRAMME
   ============================================ */
.programme {
  background: var(--color-accent);
}

.programme-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.programme-card {
  background: var(--color-bg);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  position: relative;
  border: 1px solid var(--color-border);
  transition: all var(--transition);
}

.programme-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.programme-card--highlight {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
  color: var(--color-accent);
  border-color: transparent;
}

.programme-card--highlight .programme-card-title,
.programme-card--highlight .programme-card-text {
  color: var(--color-accent);
}

.programme-card--highlight .programme-card-icon {
  color: rgba(255,255,255,0.8);
}

.programme-card-badge {
  position: absolute;
  top: -10px;
  right: 20px;
  background: #FF6B35;
  color: var(--color-accent);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.programme-card-icon {
  color: var(--color-primary);
  margin-bottom: 16px;
}

.programme-card-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 8px;
}

.programme-card-text {
  font-size: 0.9rem;
  color: var(--color-text-light);
  line-height: 1.6;
}

.programme-card-link {
  display: inline-block;
  margin-top: 12px;
  color: rgba(255,255,255,0.9);
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.programme-card-link:hover {
  color: var(--color-accent);
}

/* ============================================
   EAU ET GENRE
   ============================================ */
.eau-genre {
  background: var(--color-primary-lightest);
}

.eau-genre-badge {
  display: inline-block;
  background: var(--color-primary);
  color: var(--color-accent);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}

/* Split layout: text + images */
.eau-genre-split {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-bottom: 48px;
}

.eau-genre-text p {
  font-size: 1rem;
  color: var(--color-text);
  line-height: 1.7;
  margin-bottom: 16px;
}

.eau-genre-text p:first-child {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--color-primary-light);
}

.eau-genre-text p:last-child {
  margin-bottom: 0;
}

/* Blockquote highlight */
.eau-genre-quote {
  position: relative;
  margin: 24px 0;
  padding: 24px 28px;
  background: var(--color-primary);
  color: var(--color-accent);
  border-radius: var(--radius);
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  font-style: italic;
  line-height: 1.4;
}

.eau-genre-quote cite {
  display: block;
  margin-top: 8px;
  font-size: 0.8rem;
  font-weight: 500;
  font-style: normal;
  opacity: 0.7;
  letter-spacing: 0.03em;
}

/* Images column */
.eau-genre-visual {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.eau-genre-img-wrapper {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.eau-genre-img-wrapper img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.eau-genre-img-wrapper:hover img {
  transform: scale(1.04);
}

/* Stats */
.eau-genre-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 32px;
}

.eau-genre-stat {
  background: var(--color-accent);
  border-radius: var(--radius);
  padding: 24px 20px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border-left: 4px solid var(--color-primary);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.eau-genre-stat:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.eau-genre-stat-number {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--color-primary);
  margin-bottom: 6px;
}

.eau-genre-stat-text {
  font-size: 0.85rem;
  color: var(--color-text-light);
  line-height: 1.5;
}

.eau-genre-source {
  text-align: center;
  font-size: 0.8rem;
  color: var(--color-text-light);
  font-style: italic;
}

.eau-genre-source a {
  color: var(--color-primary);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* ============================================
   LA JOURNÉE — Unified card
   ============================================ */
.journee {
  background: var(--color-bg);
}

.journee-card {
  background: var(--color-accent);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}

/* Header: date block + info + CTA */
.journee-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  padding: 32px 28px;
  text-align: center;
}

.journee-date {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: var(--color-primary);
  color: var(--color-accent);
  border-radius: var(--radius);
  padding: 16px 28px;
  min-width: 100px;
  flex-shrink: 0;
}

.journee-date-day {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  opacity: 0.8;
}

.journee-date-number {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 800;
  line-height: 1;
  margin: 2px 0;
}

.journee-date-month {
  font-size: 0.85rem;
  font-weight: 600;
  opacity: 0.9;
}

.journee-info {
  flex: 1;
}

.journee-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--color-primary);
  margin-bottom: 10px;
  line-height: 1.2;
}

.journee-text {
  font-size: 0.95rem;
  color: var(--color-text-light);
  line-height: 1.6;
  margin-bottom: 16px;
}

.journee-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}

.journee-tag {
  display: inline-block;
  background: var(--color-primary-lightest);
  color: var(--color-primary);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: 50px;
}

.journee-cta {
  flex-shrink: 0;
}

/* Divider */
.journee-divider {
  height: 1px;
  background: var(--color-border);
  margin: 0 28px;
}

/* Programme timeline */
.journee-programme {
  padding: 28px 28px 32px;
}

.journee-programme-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 24px;
}

/* Timeline — vertical (mobile default) */
.timeline-items {
  position: relative;
  padding-left: 28px;
}

.timeline-items::before {
  content: '';
  position: absolute;
  left: 5px;
  top: 6px;
  bottom: 6px;
  width: 2px;
  background: var(--color-primary-lighter);
  border-radius: 1px;
  transform-origin: top;
  transform: scaleY(0);
  transition: transform 1s cubic-bezier(0.4, 0, 0.2, 1) 0.2s;
}

.visible .timeline-items::before {
  transform: scaleY(1);
}

.timeline-item {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding-bottom: 24px;
  opacity: 0;
  transform: translateX(-12px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.visible .timeline-item:nth-child(1) { opacity: 1; transform: none; transition-delay: 0.4s; }
.visible .timeline-item:nth-child(2) { opacity: 1; transform: none; transition-delay: 0.65s; }
.visible .timeline-item:nth-child(3) { opacity: 1; transform: none; transition-delay: 0.9s; }
.visible .timeline-item:nth-child(4) { opacity: 1; transform: none; transition-delay: 1.15s; }

.timeline-item:last-child {
  padding-bottom: 0;
}

.timeline-dot {
  position: absolute;
  left: -28px;
  top: 4px;
  width: 12px;
  height: 12px;
  background: var(--color-accent);
  border: 2.5px solid var(--color-primary);
  border-radius: 50%;
  z-index: 1;
  transform: scale(0);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.visible .timeline-item:nth-child(1) .timeline-dot { transform: scale(1); transition-delay: 0.3s; }
.visible .timeline-item:nth-child(2) .timeline-dot { transform: scale(1); transition-delay: 0.55s; }
.visible .timeline-item:nth-child(3) .timeline-dot { transform: scale(1); transition-delay: 0.8s; }
.visible .timeline-item:nth-child(4) .timeline-dot { transform: scale(1); transition-delay: 1.05s; }

.timeline-item:first-child .timeline-dot,
.timeline-item:last-child .timeline-dot {
  background: var(--color-primary-lighter);
  border-color: var(--color-primary);
}

.timeline-time {
  flex-shrink: 0;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--color-primary);
  min-width: 48px;
  padding-top: 1px;
}

.timeline-content strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 2px;
}

.timeline-content p {
  font-size: 0.85rem;
  color: var(--color-text-light);
  line-height: 1.5;
}

/* Booking date fixed */
.booking-date-fixed {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--color-primary-lightest);
  color: var(--color-primary);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 10px 18px;
  border-radius: 8px;
  margin-bottom: 20px;
}

/* ============================================
   INFOS PRATIQUES
   ============================================ */
.infos {
  background: var(--color-primary-lightest);
}

.infos-badge {
  display: inline-block;
  background: var(--color-primary);
  color: var(--color-accent);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}

.infos-card {
  background: var(--color-accent);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--color-border);
  overflow: hidden;
}

/* Info items grid */
.infos-items {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.infos-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 24px 28px;
  border-bottom: 1px solid var(--color-border);
  transition: background 0.2s ease;
}

.infos-item:nth-child(odd) {
  border-right: 1px solid var(--color-border);
}

.infos-item:hover {
  background: var(--color-primary-lightest);
}

.infos-item-icon {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-primary);
  color: var(--color-accent);
  border-radius: 14px;
}

.infos-item-content strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--color-text-light);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 4px;
}

.infos-item-content p {
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-text);
  line-height: 1.4;
}

/* Map wrapper */
.infos-map-wrapper {
  padding: 24px 28px;
  border-bottom: 1px solid var(--color-border);
}

.infos-map {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  height: 280px;
  box-shadow: var(--shadow-sm);
}

.infos-map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
}

.infos-map-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 12px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-primary);
  text-decoration: none;
  transition: gap 0.3s ease;
}

.infos-map-link:hover {
  gap: 10px;
}

/* Contact bar */
.infos-contact {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 24px 28px;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
  color: var(--color-accent);
}

.infos-contact-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
  font-weight: 600;
}

.infos-contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.infos-contact-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: rgba(255,255,255,0.15);
  color: var(--color-accent);
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s ease;
  backdrop-filter: blur(4px);
}

.infos-contact-btn:hover {
  background: rgba(255,255,255,0.25);
}

/* ============================================
   INSCRIPTION / BOOKING WIDGET
   ============================================ */
.inscription {
  background: var(--color-bg);
  padding: 80px 0;
}

.inscription-header {
  text-align: center;
  margin-bottom: 40px;
}

.inscription-title {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  color: var(--color-primary);
  margin-bottom: 12px;
  line-height: 1.2;
}

.inscription-subtitle {
  font-size: 1.05rem;
  color: var(--color-text-light);
  margin-bottom: 0;
}

/* Booking Widget */
.booking-widget {
  background: var(--color-accent);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  max-width: 860px;
  margin: 0 auto;
  border: 1px solid var(--color-border);
}

.booking-step {
  display: none;
}

.booking-step--active,
.booking-step[style*="display"] {
  display: flex;
  flex-direction: column;
}

.booking-step:not([hidden]) {
  display: flex;
  flex-direction: column;
}

/* Sidebar */
.booking-sidebar {
  background: var(--color-primary-lightest);
  padding: 28px 24px;
  border-bottom: 1px solid var(--color-border);
}

.booking-info {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.booking-info-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-accent);
  border-radius: 12px;
  flex-shrink: 0;
  color: var(--color-primary);
}

.booking-info-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 10px;
}

.booking-info-details {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  font-size: 0.85rem;
  color: var(--color-text-light);
}

.booking-info-details li {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--color-text-light);
}

/* Booking main */
.booking-main {
  padding: 28px 24px;
}

.booking-step-title {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-text-light);
  margin-bottom: 16px;
}

/* Date buttons */
.booking-dates {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 24px;
}

.booking-date-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  padding: 16px 12px;
  border: 2px solid var(--color-border);
  border-radius: var(--radius);
  background: var(--color-accent);
  cursor: pointer;
  transition: all var(--transition);
  font-family: var(--font-body);
}

.booking-date-btn:hover {
  border-color: var(--color-primary-lighter);
  background: var(--color-primary-lightest);
}

.booking-date-btn.selected {
  border-color: var(--color-primary);
  background: var(--color-primary);
  color: var(--color-accent);
}

.booking-date-day {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 0.7;
}

.booking-date-num {
  font-size: 2rem;
  font-weight: 800;
  line-height: 1.1;
}

.booking-date-month {
  font-size: 0.8rem;
  font-weight: 600;
}

.booking-date-label {
  font-size: 0.7rem;
  font-weight: 500;
  opacity: 0.7;
  margin-top: 4px;
}

.booking-date-btn.selected .booking-date-day,
.booking-date-btn.selected .booking-date-label {
  opacity: 0.9;
}

/* Time slots */
.booking-slots-wrapper {
  animation: fadeSlideIn 0.3s ease;
}

@keyframes fadeSlideIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.booking-slots {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.booking-slot-btn {
  padding: 12px 8px;
  border: 1.5px solid var(--color-border);
  border-radius: 8px;
  background: var(--color-accent);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-text);
  cursor: pointer;
  transition: all var(--transition);
}

.booking-slot-btn:hover {
  border-color: var(--color-primary-lighter);
  background: var(--color-primary-lightest);
  color: var(--color-primary);
}

.booking-slot-btn.selected {
  border-color: var(--color-primary);
  background: var(--color-primary);
  color: var(--color-accent);
}

/* Recap */
.booking-recap {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 12px;
  margin-bottom: 12px;
}

.booking-recap-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-primary);
}

/* Back button */
.booking-back-btn {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: none;
  border: none;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--color-primary-light);
  cursor: pointer;
  padding: 4px 0;
  transition: color var(--transition);
}

.booking-back-btn:hover {
  color: var(--color-primary);
}

/* Form */
.booking-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-text);
}

.form-optional {
  font-weight: 400;
  color: var(--color-text-light);
}

.form-input {
  padding: 12px 14px;
  border: 1.5px solid var(--color-border);
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--color-text);
  background: var(--color-bg);
  transition: all var(--transition);
  appearance: none;
  -webkit-appearance: none;
}

.form-input:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(84, 28, 117, 0.1);
}

.form-input::placeholder {
  color: #BBBBBB;
}

.form-select {
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%23666666' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}

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

.form-input.error {
  border-color: #E53E3E;
  box-shadow: 0 0 0 3px rgba(229, 62, 62, 0.1);
}

.booking-submit {
  width: 100%;
  justify-content: center;
  margin-top: 4px;
}

/* Success state */
.booking-success {
  text-align: center;
  padding: 48px 32px;
}

.booking-success-icon {
  margin-bottom: 20px;
}

.booking-success-title {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--color-primary);
  margin-bottom: 12px;
}

.booking-success-text {
  font-size: 0.95rem;
  color: var(--color-text-light);
  max-width: 400px;
  margin: 0 auto 20px;
  line-height: 1.6;
}

.booking-success-recap {
  background: var(--color-primary-lightest);
  border-radius: var(--radius);
  padding: 16px 24px;
  display: inline-flex;
  gap: 24px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: 28px;
}

.booking-success-contact {
  border-top: 1px solid var(--color-border);
  padding-top: 24px;
}

.booking-success-contact p {
  font-size: 0.85rem;
  color: var(--color-text-light);
  margin-bottom: 12px;
}

.booking-success-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.btn--outline {
  background: transparent;
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
}

.btn--outline:hover {
  background: var(--color-primary-lightest);
  color: var(--color-primary);
  transform: translateY(-2px);
}

/* ============================================
   À PROPOS
   ============================================ */
.apropos {
  background: var(--color-bg);
}

.apropos-content {
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
}

.apropos-content .btn {
  margin-top: 24px;
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background: var(--color-primary);
  color: var(--color-accent);
  padding: 48px 0 32px;
}

.footer-top {
  text-align: center;
  margin-bottom: 32px;
}

.footer-logo .logo-svg {
  margin: 0 auto;
  height: 32px;
}

.footer-partners {
  text-align: center;
  background: #FFFFFF;
  border-radius: 12px;
  padding: 28px 24px;
  margin-bottom: 24px;
}

.footer-partners-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-text-light);
  display: block;
  margin-bottom: 20px;
}

.footer-partners-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 24px 40px;
}

.footer-partners-thanks {
  font-size: 0.9rem;
  color: var(--color-text-light);
  margin-top: 20px;
  font-style: italic;
}

.partner-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 140px;
  height: 60px;
  transition: opacity 0.3s ease;
}

.partner-logo:hover {
  opacity: 0.7;
}

.partner-logo img {
  max-height: 100%;
  max-width: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}

.footer-bottom {
  text-align: center;
  font-size: 0.85rem;
  opacity: 0.7;
}

.footer-bottom a {
  color: var(--color-accent);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.footer-bottom a:hover {
  color: var(--color-accent);
  opacity: 1;
}

/* ============================================
   HERO ENTRANCE ANIMATIONS
   ============================================ */
@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

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

@keyframes heroScale {
  from { opacity: 0; transform: scale(0.9); }
  to { opacity: 1; transform: scale(1); }
}

@keyframes heroPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

.hero-title {
  opacity: 0;
  animation: heroFadeUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.2s forwards;
}

.hero-subtitle {
  opacity: 0;
  animation: heroFadeUpSubtle 0.7s cubic-bezier(0.4, 0, 0.2, 1) 0.5s forwards;
}

@keyframes heroFadeUpSubtle {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 0.9; transform: translateY(0); }
}

.hero-tagline {
  opacity: 0;
  animation: heroFadeUpLight 0.7s cubic-bezier(0.4, 0, 0.2, 1) 0.65s forwards;
}

@keyframes heroFadeUpLight {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 0.75; transform: translateY(0); }
}

.countdown {
  opacity: 0;
  animation: heroScale 0.6s cubic-bezier(0.4, 0, 0.2, 1) 0.85s forwards;
}

.countdown-item {
  opacity: 0;
  animation: heroFadeUp 0.5s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}
.countdown-item:nth-child(1) { animation-delay: 0.9s; }
.countdown-item:nth-child(2) { animation-delay: 1.0s; }
.countdown-item:nth-child(3) { animation-delay: 1.1s; }
.countdown-item:nth-child(4) { animation-delay: 1.2s; }

.hero-cta-group {
  opacity: 0;
  animation: heroFadeUp 0.7s cubic-bezier(0.4, 0, 0.2, 1) 1.3s forwards;
}

.hero-free-badge {
  opacity: 0;
  animation: heroFadeIn 0.6s cubic-bezier(0.4, 0, 0.2, 1) 1.6s forwards;
}

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */

/* Default: fade up */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: none;
}

/* Variant: fade from left */
.animate-on-scroll[data-anim="fade-left"] {
  transform: translateX(-40px);
}

.animate-on-scroll[data-anim="fade-left"].visible {
  transform: none;
}

/* Variant: fade from right */
.animate-on-scroll[data-anim="fade-right"] {
  transform: translateX(40px);
}

.animate-on-scroll[data-anim="fade-right"].visible {
  transform: none;
}

/* Variant: scale in */
.animate-on-scroll[data-anim="scale-in"] {
  transform: scale(0.92);
}

.animate-on-scroll[data-anim="scale-in"].visible {
  transform: none;
}

/* Variant: fade in (no movement) */
.animate-on-scroll[data-anim="fade-in"] {
  transform: none;
}

.animate-on-scroll[data-anim="fade-in"].visible {
  transform: none;
}

/* Stagger delays via data attribute */
.animate-on-scroll[data-delay="1"] { transition-delay: 0.1s; }
.animate-on-scroll[data-delay="2"] { transition-delay: 0.2s; }
.animate-on-scroll[data-delay="3"] { transition-delay: 0.3s; }
.animate-on-scroll[data-delay="4"] { transition-delay: 0.4s; }
.animate-on-scroll[data-delay="5"] { transition-delay: 0.5s; }

/* Stagger: programme cards */
.programme-grid .animate-on-scroll:nth-child(1) { transition-delay: 0s; }
.programme-grid .animate-on-scroll:nth-child(2) { transition-delay: 0.08s; }
.programme-grid .animate-on-scroll:nth-child(3) { transition-delay: 0.16s; }
.programme-grid .animate-on-scroll:nth-child(4) { transition-delay: 0.24s; }
.programme-grid .animate-on-scroll:nth-child(5) { transition-delay: 0.32s; }
.programme-grid .animate-on-scroll:nth-child(6) { transition-delay: 0.4s; }

/* Stagger: intro highlights */
.intro-highlights .intro-highlight:nth-child(1) { transition-delay: 0.1s; }
.intro-highlights .intro-highlight:nth-child(2) { transition-delay: 0.2s; }
.intro-highlights .intro-highlight:nth-child(3) { transition-delay: 0.3s; }

/* Stagger: eau-genre stats */
.eau-genre-stats .eau-genre-stat:nth-child(1) { transition-delay: 0.1s; }
.eau-genre-stats .eau-genre-stat:nth-child(2) { transition-delay: 0.2s; }
.eau-genre-stats .eau-genre-stat:nth-child(3) { transition-delay: 0.3s; }
.eau-genre-stats .eau-genre-stat:nth-child(4) { transition-delay: 0.4s; }

/* Stagger: infos items */
.infos-items .infos-item:nth-child(1) { transition-delay: 0.1s; }
.infos-items .infos-item:nth-child(2) { transition-delay: 0.2s; }
.infos-items .infos-item:nth-child(3) { transition-delay: 0.3s; }
.infos-items .infos-item:nth-child(4) { transition-delay: 0.4s; }

/* Stagger children: generic — children animate when parent gets .visible */
.stagger-children > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.stagger-children.visible > *:nth-child(1) { opacity: 1; transform: none; transition-delay: 0.1s; }
.stagger-children.visible > *:nth-child(2) { opacity: 1; transform: none; transition-delay: 0.2s; }
.stagger-children.visible > *:nth-child(3) { opacity: 1; transform: none; transition-delay: 0.3s; }
.stagger-children.visible > *:nth-child(4) { opacity: 1; transform: none; transition-delay: 0.4s; }
.stagger-children.visible > *:nth-child(5) { opacity: 1; transform: none; transition-delay: 0.5s; }
.stagger-children.visible > *:nth-child(6) { opacity: 1; transform: none; transition-delay: 0.6s; }

/* Counter animation for stats */
.eau-genre-stat-number {
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.eau-genre-stats.visible .eau-genre-stat-number {
  animation: statPop 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

@keyframes statPop {
  0% { transform: scale(0.5); opacity: 0; }
  60% { transform: scale(1.1); }
  100% { transform: scale(1); opacity: 1; }
}

.eau-genre-stats .eau-genre-stat-number { opacity: 0; }
.eau-genre-stats.visible .eau-genre-stat:nth-child(1) .eau-genre-stat-number { animation-delay: 0.2s; }
.eau-genre-stats.visible .eau-genre-stat:nth-child(2) .eau-genre-stat-number { animation-delay: 0.35s; }
.eau-genre-stats.visible .eau-genre-stat:nth-child(3) .eau-genre-stat-number { animation-delay: 0.5s; }
.eau-genre-stats.visible .eau-genre-stat:nth-child(4) .eau-genre-stat-number { animation-delay: 0.65s; }

/* Section header title — subtle underline reveal */
.section-header .section-title {
  position: relative;
  display: inline-block;
}

.section-header .section-title::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 50%;
  width: 0;
  height: 3px;
  background: var(--color-primary-lighter);
  border-radius: 2px;
  transition: width 0.6s cubic-bezier(0.4, 0, 0.2, 1) 0.3s,
              left 0.6s cubic-bezier(0.4, 0, 0.2, 1) 0.3s;
}

.section-header.visible .section-title::after {
  width: 60px;
  left: calc(50% - 30px);
}

/* Eau-genre images reveal (triggered by parent .eau-genre-split.visible) */
.eau-genre-img-wrapper {
  opacity: 0;
  transform: translateY(20px) scale(0.96);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.eau-genre-split.visible .eau-genre-img-wrapper:nth-child(1) {
  opacity: 1;
  transform: none;
  transition-delay: 0.3s;
}

.eau-genre-split.visible .eau-genre-img-wrapper:nth-child(2) {
  opacity: 1;
  transform: none;
  transition-delay: 0.5s;
}

/* Infos card map wrapper reveal */
.infos-map-wrapper {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s ease 0.3s, transform 0.6s ease 0.3s;
}

.infos-card.visible .infos-map-wrapper {
  opacity: 1;
  transform: none;
}

/* Infos contact bar reveal */
.infos-contact {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.5s ease 0.5s, transform 0.5s ease 0.5s;
}

.infos-card.visible .infos-contact {
  opacity: 1;
  transform: none;
}

/* Infos items within card */
.infos-card .infos-item {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.infos-card.visible .infos-item:nth-child(1) { opacity: 1; transform: none; transition-delay: 0.1s; }
.infos-card.visible .infos-item:nth-child(2) { opacity: 1; transform: none; transition-delay: 0.2s; }
.infos-card.visible .infos-item:nth-child(3) { opacity: 1; transform: none; transition-delay: 0.3s; }
.infos-card.visible .infos-item:nth-child(4) { opacity: 1; transform: none; transition-delay: 0.4s; }

/* Journee card children animation */
.journee-card .journee-header {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s ease 0.1s, transform 0.6s ease 0.1s;
}

.journee-card.visible .journee-header {
  opacity: 1;
  transform: none;
}

.journee-card .journee-programme {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s ease 0.3s, transform 0.6s ease 0.3s;
}

.journee-card.visible .journee-programme {
  opacity: 1;
  transform: none;
}

/* Booking widget entrance */
.booking-widget {
  opacity: 0;
  transform: translateY(24px) scale(0.98);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.booking-widget.visible {
  opacity: 1;
  transform: none;
}

/* Footer reveal */
.footer-top {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.site-footer.visible .footer-top {
  opacity: 1;
  transform: none;
}

.footer-partners {
  opacity: 0;
  transition: opacity 0.5s ease 0.2s;
}

.site-footer.visible .footer-partners {
  opacity: 1;
}

/* ============================================
   RESPONSIVE — 480px+
   ============================================ */
@media (min-width: 480px) {
  .hero-title {
    font-size: 3rem;
  }

  .countdown-item {
    min-width: 76px;
    padding: 14px 18px;
  }

  .countdown-number {
    font-size: 2rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .inscription-title {
    font-size: 2.25rem;
  }

  /* Intro highlights */
  .intro-highlights {
    grid-template-columns: repeat(3, 1fr);
  }

  /* Booking responsive 480 */
  .booking-slots {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ============================================
   RESPONSIVE — 768px+
   ============================================ */
@media (min-width: 768px) {
  .container {
    padding: 0 32px;
  }

  .section {
    padding: 96px 0;
  }

  /* Header / Nav */
  .burger {
    display: none;
  }

  .main-nav {
    display: block;
  }

  /* Hero */
  .hero-title {
    font-size: 3.5rem;
  }

  .hero-subtitle {
    font-size: 1.15rem;
    flex-direction: row;
    justify-content: center;
    gap: 0;
  }

  .hero-subtitle-sep {
    display: inline;
    margin: 0 8px;
  }

  .hero-cta-group {
    flex-direction: row;
    justify-content: center;
    gap: 20px;
  }

  .countdown {
    gap: 16px;
  }

  .countdown-item {
    min-width: 90px;
    padding: 16px 20px;
  }

  .countdown-number {
    font-size: 2.25rem;
  }

  /* Intro side-by-side */
  .intro-top {
    flex-direction: row;
    align-items: center;
    gap: 56px;
  }

  .intro-text {
    text-align: left;
    flex: 1;
  }

  .intro-lead,
  .intro-body {
    max-width: none;
  }

  .intro-image {
    flex: 0 0 340px;
  }

  .intro-img-wrapper {
    max-width: none;
  }

  .intro-highlights {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }

  /* Journée card — desktop header */
  .journee-header {
    flex-direction: row;
    text-align: left;
    padding: 36px 40px;
    gap: 32px;
    align-items: center;
  }

  .journee-tags {
    justify-content: flex-start;
  }

  .journee-divider {
    margin: 0 40px;
  }

  .journee-programme {
    padding: 28px 40px 36px;
  }

  /* Timeline horizontal */
  .timeline-items {
    display: flex;
    padding-left: 0;
    gap: 24px;
  }

  .timeline-items::before {
    left: 6px;
    right: 6px;
    top: 5px;
    bottom: auto;
    width: auto;
    height: 2px;
    transform-origin: left;
    transform: scaleX(0);
    transition: transform 1.2s cubic-bezier(0.4, 0, 0.2, 1) 0.2s;
  }

  .visible .timeline-items::before {
    transform: scaleX(1);
  }

  .timeline-item {
    flex: 1;
    flex-direction: column;
    gap: 8px;
    padding-bottom: 0;
    padding-top: 28px;
    min-width: 0;
    overflow: hidden;
    opacity: 0;
    transform: translateY(10px);
  }

  .timeline-content {
    min-width: 0;
  }

  .timeline-content p {
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .visible .timeline-item:nth-child(1) { opacity: 1; transform: translateY(0); transition-delay: 0.5s; }
  .visible .timeline-item:nth-child(2) { opacity: 1; transform: translateY(0); transition-delay: 0.75s; }
  .visible .timeline-item:nth-child(3) { opacity: 1; transform: translateY(0); transition-delay: 1s; }
  .visible .timeline-item:nth-child(4) { opacity: 1; transform: translateY(0); transition-delay: 1.25s; }

  .timeline-dot {
    left: 0;
    top: 0;
  }

  .visible .timeline-item:nth-child(1) .timeline-dot { transform: scale(1); transition-delay: 0.4s; }
  .visible .timeline-item:nth-child(2) .timeline-dot { transform: scale(1); transition-delay: 0.65s; }
  .visible .timeline-item:nth-child(3) .timeline-dot { transform: scale(1); transition-delay: 0.9s; }
  .visible .timeline-item:nth-child(4) .timeline-dot { transform: scale(1); transition-delay: 1.15s; }

  /* Eau et Genre */
  .eau-genre-split {
    flex-direction: row;
    gap: 48px;
    align-items: flex-start;
  }

  .eau-genre-text {
    flex: 1;
  }

  .eau-genre-visual {
    flex: 0 0 380px;
    position: sticky;
    top: 100px;
  }

  .eau-genre-img-wrapper img {
    height: 240px;
  }

  .eau-genre-quote {
    font-size: 1.35rem;
  }

  .eau-genre-stats {
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }

  .eau-genre-stat {
    padding: 28px 20px;
  }

  /* Cards */
  .cards-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
  }

  .card {
    padding: 36px 28px;
  }

  /* Programme */
  .programme-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  /* Infos */
  .infos-items {
    grid-template-columns: repeat(4, 1fr);
  }

  .infos-item {
    border-bottom: none;
    border-right: 1px solid var(--color-border);
    padding: 32px 24px;
  }

  .infos-item:last-child {
    border-right: none;
  }

  .infos-item:nth-child(odd) {
    border-right: 1px solid var(--color-border);
  }

  .infos-map-wrapper {
    padding: 28px 36px;
  }

  .infos-map {
    height: 340px;
  }

  .infos-contact {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 20px 36px;
  }

  /* Inscription / Booking */
  .inscription {
    padding: 100px 0;
  }

  .booking-step:not([hidden]) {
    flex-direction: row;
  }

  .booking-sidebar {
    width: 280px;
    flex-shrink: 0;
    border-bottom: none;
    border-right: 1px solid var(--color-border);
  }

  .booking-info {
    flex-direction: column;
  }

  .booking-main {
    flex: 1;
    padding: 32px;
  }

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

  .booking-slots {
    grid-template-columns: repeat(3, 1fr);
  }

  /* Section titles */
  .section-title {
    font-size: 2.25rem;
  }

  .inscription-title {
    font-size: 2.5rem;
  }

  .booking-widget {
    max-width: 900px;
  }
}

/* ============================================
   RESPONSIVE — 1024px+
   ============================================ */
@media (min-width: 1024px) {
  .hero-title {
    font-size: 4rem;
  }

  .hero-content {
    padding: 140px 0 64px;
  }

  /* Intro */
  .intro-top {
    gap: 72px;
  }

  .intro-image {
    flex: 0 0 420px;
  }

  /* Programme */
  .programme-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  /* Eau et Genre */
  .eau-genre-visual {
    flex: 0 0 440px;
  }

  .eau-genre-img-wrapper img {
    height: 280px;
  }

  .section-title {
    font-size: 2.5rem;
  }

  .section {
    padding: 112px 0;
  }
}

/* ============================================
   MOBILE NAV OVERLAY
   ============================================ */
@media (max-width: 767px) {
  .main-nav {
    position: fixed;
    inset: 0;
    background: rgba(84, 28, 117, 0.98);
    backdrop-filter: blur(16px);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition);
  }

  .main-nav.open {
    opacity: 1;
    pointer-events: all;
  }

  .nav-list {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  .nav-link {
    font-size: 1.25rem;
    padding: 12px 32px;
  }

  .nav-link--cta {
    margin-top: 8px;
    font-size: 1.1rem;
  }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  body,
  .animate-on-scroll,
  .stagger-children > *,
  .infos-card .infos-item,
  .infos-map-wrapper,
  .infos-contact,
  .journee-card .journee-header,
  .journee-card .journee-programme,
  .eau-genre-img-wrapper,
  .eau-genre-stat-number,
  .footer-top,
  .footer-partners,
  .hero-title,
  .hero-subtitle,
  .hero-tagline,
  .countdown,
  .countdown-item,
  .hero-cta-group,
  .hero-free-badge {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
    animation: none !important;
  }
}
