/* ==========================================================================
   ÉKINÉTIK — style.css
   Feuille de style UNIQUE partagée par toutes les pages
   Remplace les blocs <style> individuels dans chaque fichier PHP
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. GOOGLE FONTS
   -------------------------------------------------------------------------- */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap');


/* --------------------------------------------------------------------------
   2. VARIABLES GLOBALES
   -------------------------------------------------------------------------- */
:root {
  /* Couleurs de fond */
  --bg-0: #0a1628;
  --bg-1: #152238;

  /* Palette Ékinétik */
  --cyan:   #00d9ff;
  --cyan-2: #5ce1e6;
  --pink:   #ff1493;

  /* Texte */
  --text:    #f0f4f8;
  --muted:   rgba(240, 244, 248, 0.78);
  --offwhite: #f3f1ea;

  /* Glass / fond cartes */
  --glass:   rgba(21, 34, 56, 0.55);
  --glass-2: rgba(10, 22, 40, 0.78);

  /* Bordures */
  --border:        rgba(0, 217, 255, 0.22);
  --border-strong: rgba(0, 217, 255, 0.34);

  /* Ombres */
  --shadow:       0 10px 40px rgba(0, 0, 0, 0.35);
  --shadow-hover: 0 18px 60px rgba(0, 217, 255, 0.22);

  /* Transitions */
  --transition: all 0.35s ease;

  /* Hauteur du header */
  --header-h: 130px;
}


/* --------------------------------------------------------------------------
   3. RESET & BASE
   -------------------------------------------------------------------------- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

body {
  font-family: 'Poppins', system-ui, -apple-system, sans-serif;
  color: var(--text);
  line-height: 1.7;
  background: linear-gradient(180deg, var(--bg-0) 0%, var(--bg-1) 100%);
  padding-top: 85px; /* compense le header fixe */
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

/* Wrap automatique sur tous les titres et paragraphes */
h1, h2, h3, h4, p {
  overflow-wrap: anywhere;
  word-break: break-word;
}


/* --------------------------------------------------------------------------
   4. UTILITAIRES
   -------------------------------------------------------------------------- */

/* Conteneur principal */
.ek-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Conteneur page (sections de contenu) */
.ek-container-page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 70px 20px;
}

/* Titres de section avec dégradé cyan */
.ek-section-title {
  color: transparent;
  background: linear-gradient(135deg, #ffffff, var(--cyan-2));
  -webkit-background-clip: text;
  background-clip: text;
  text-shadow: 2px 2px 18px rgba(0, 217, 255, 0.22);
  font-weight: 900;
  line-height: 1.15;
}

/* Variante : titre blanc cassé lisible (sur fond photo) */
.ek-section-title.readable {
  color: var(--offwhite) !important;
  -webkit-text-fill-color: var(--offwhite) !important;
  background: none !important;
  -webkit-background-clip: initial !important;
  background-clip: initial !important;
  text-shadow: 0 3px 14px rgba(0, 0, 0, 0.55), 0 0 2px rgba(0, 0, 0, 0.35);
}

/* Sous-texte discret */
.ek-subtext {
  color: rgba(240, 244, 248, 0.86);
  max-width: 780px;
  line-height: 1.8;
}

/* Séparateur */
.ek-divider {
  height: 1px;
  width: 100%;
  background: linear-gradient(90deg, transparent, rgba(0, 217, 255, 0.20), transparent);
  margin: 14px 0;
}

/* Pill / badge générique */
.ek-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(0, 217, 255, 0.20);
  background: rgba(0, 217, 255, 0.07);
  color: rgba(240, 244, 248, 0.92);
  font-weight: 800;
  font-size: 0.82rem;
  letter-spacing: 0.4px;
  white-space: nowrap;
}

/* Kicker (étiquette au-dessus d'un titre) */
.ek-kicker {
  display: inline-block;
  margin-bottom: 10px;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.45px;
  color: rgba(240, 244, 248, 0.92);
  border: 1px solid rgba(0, 217, 255, 0.20);
  border-radius: 999px;
  padding: 6px 10px;
  background: rgba(0, 217, 255, 0.07);
}

/* En-tête de section */
.ek-section-head {
  text-align: center;
  margin-bottom: 28px;
}

.ek-section-head h2 {
  color: transparent;
  font-size: 2.35rem;
  font-weight: 900;
  margin-bottom: 14px;
  background: linear-gradient(135deg, #ffffff, var(--cyan-2));
  -webkit-background-clip: text;
  background-clip: text;
  text-shadow: 2px 2px 18px rgba(0, 217, 255, 0.18);
  line-height: 1.18;
  padding: 0 6px;
  display: inline-block;
}

.ek-section-head p {
  color: var(--muted);
  max-width: 980px;
  margin: 0 auto;
  line-height: 1.85;
  font-size: 1.02rem;
}

/* Listes */
.ek-list {
  margin: 10px 0 0 18px;
  padding-left: 0;
  color: rgba(240, 244, 248, 0.88);
  line-height: 1.85;
}

.ek-list li {
  margin: 8px 0;
}


/* --------------------------------------------------------------------------
   5. BOUTONS
   -------------------------------------------------------------------------- */
.ek-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid rgba(0, 217, 255, 0.22);
  background: rgba(0, 217, 255, 0.08);
  color: rgba(240, 244, 248, 0.95);
  font-family: 'Poppins', sans-serif;
  font-weight: 900;
  font-size: 1rem;
  letter-spacing: 0.3px;
  cursor: pointer;
  text-decoration: none;
  user-select: none;
  transition: var(--transition);
  position: relative;
  z-index: 1;
}

.ek-btn:hover {
  transform: translateY(-2px);
  border-color: rgba(0, 217, 255, 0.34);
  box-shadow: 0 18px 44px rgba(0, 217, 255, 0.16);
}

/* Bouton principal cyan */
.ek-btn-primary,
.ek-btn.ek-btn-primary {
  background: linear-gradient(135deg, var(--cyan), var(--cyan-2));
  color: var(--bg-0) !important;
  border: none;
  box-shadow: 0 14px 34px rgba(0, 217, 255, 0.20);
  text-shadow: none !important;
}

.ek-btn-primary:hover {
  box-shadow: 0 18px 46px rgba(0, 217, 255, 0.30);
  filter: saturate(1.05);
}

/* Bouton ghost */
.ek-btn-ghost {
  background: rgba(0, 217, 255, 0.08);
  border: 1px solid rgba(0, 217, 255, 0.22);
  color: rgba(240, 244, 248, 0.92);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.20);
}

.ek-btn-ghost:hover {
  background: rgba(0, 217, 255, 0.12);
  border-color: rgba(0, 217, 255, 0.36);
  transform: translateY(-2px);
}

/* Padding étendu (ex. CTA final) */
.ek-btn-lg {
  padding: 14px 28px;
}


/* --------------------------------------------------------------------------
   6. HEADER FIXE
   -------------------------------------------------------------------------- */
.ek-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: linear-gradient(135deg, var(--bg-0) 0%, var(--bg-1) 100%);
  border-bottom: 2px solid var(--border-strong);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.35);
  transition: all 0.3s ease;
}

.ek-header.scrolled {
  background: linear-gradient(135deg, rgba(10, 22, 40, 0.92), rgba(21, 34, 56, 0.92));
  backdrop-filter: blur(10px);
  border-bottom-color: rgba(0, 217, 255, 0.28);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.45);
}

.ek-header .ek-container {
  max-width: 1400px;
  padding: 0 40px;
}

.ek-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  gap: 60px;
}

/* Logo */
.ek-logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  height: 120px;
  margin-left: 200px;
  margin-top: 1px;
  position: relative;
  z-index: 10;
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
  text-decoration: none;
  transition: transform 0.3s ease;
}

.ek-logo:hover {
  transform: scale(1.05);
}

.ek-logo img {
  height: 100%;
  width: auto;
  display: block;
  object-fit: contain;
  border: none !important;
  border-radius: 0 !important;
  outline: none !important;
  box-shadow: none !important;
  padding: 0 !important;
  background: transparent !important;
  transition: var(--transition);
}


/* --------------------------------------------------------------------------
   7. NAVIGATION DESKTOP
   -------------------------------------------------------------------------- */
.ek-nav {
  display: flex;
  align-items: center;
  gap: 20px;
  flex: 1;
  justify-content: center;
  height: 100%;
  margin-left: -200px;
}

.ek-nav a {
  color: var(--cyan-2);
  text-decoration: none;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 0.5px;
  position: relative;
  padding: 10px 0;
  transition: var(--transition);
  white-space: nowrap;
}

/* Soulignement animé au hover */
.ek-nav a:not(.ek-nav-cta)::after {
  content: '';
  position: absolute;
  bottom: 5px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--cyan);
  transition: width 0.3s ease;
  box-shadow: 0 0 14px rgba(0, 217, 255, 0.25);
}

.ek-nav a:not(.ek-nav-cta):hover::after {
  width: 100%;
}

.ek-nav a:not(.ek-nav-cta):hover {
  color: var(--cyan);
}

/* Bouton CTA "Contact" dans la nav */
.ek-nav-cta {
  background: linear-gradient(135deg, var(--cyan), var(--cyan-2)) !important;
  color: var(--bg-0) !important;
  padding: 12px 32px !important;
  border-radius: 999px;
  font-weight: 700;
  box-shadow: 0 10px 28px rgba(0, 217, 255, 0.28);
  transition: var(--transition);
}

.ek-nav-cta::after {
  display: none !important;
}

.ek-nav-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(0, 217, 255, 0.35);
  filter: saturate(1.05);
}


/* --------------------------------------------------------------------------
   8. DROPDOWNS (sous-menus desktop)
   -------------------------------------------------------------------------- */
.ek-nav .ek-has-submenu {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.ek-nav .ek-has-submenu > a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.ek-nav .ek-submenu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  min-width: 260px;
  background: linear-gradient(135deg, rgba(10, 22, 40, 0.96), rgba(21, 34, 56, 0.96));
  border: 1px solid rgba(0, 217, 255, 0.22);
  border-radius: 14px;
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.55);
  padding: 10px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.15s ease, transform 0.15s ease, visibility 0.15s ease;
  z-index: 2000;
  backdrop-filter: blur(10px);
}

.ek-nav .ek-submenu a {
  display: block;
  padding: 12px 14px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 14.5px;
  color: rgba(240, 244, 248, 0.92);
  border: 1px solid transparent;
  transition: var(--transition);
}

.ek-nav .ek-submenu a::after {
  display: none !important;
}

.ek-nav .ek-submenu a:hover {
  background: rgba(0, 217, 255, 0.12);
  border-color: rgba(0, 217, 255, 0.28);
  color: var(--cyan);
  transform: translateX(4px);
}

.ek-nav .ek-has-submenu:hover .ek-submenu,
.ek-nav .ek-has-submenu:focus-within .ek-submenu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(14px);
  transition-delay: 0s;
}


/* --------------------------------------------------------------------------
   9. BURGER BUTTON (mobile)
   -------------------------------------------------------------------------- */
.ek-burger {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  z-index: 1001;
  transition: all 0.3s ease;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

.ek-burger span {
  width: 30px;
  height: 3px;
  background: var(--cyan-2);
  border-radius: 3px;
  transition: all 0.3s ease;
  box-shadow: 0 0 12px rgba(0, 217, 255, 0.18);
}

.ek-burger:hover span {
  background: var(--cyan);
}

.ek-burger.active span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.ek-burger.active span:nth-child(2) {
  opacity: 0;
  transform: translateX(-20px);
}

.ek-burger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(8px, -8px);
}


/* --------------------------------------------------------------------------
   10. MENU MOBILE
   -------------------------------------------------------------------------- */
.ek-mobile-menu {
  position: fixed;
  top: var(--header-h);
  left: 0;
  right: 0;
  background: linear-gradient(180deg, var(--bg-0) 0%, var(--bg-1) 100%);
  display: flex;
  flex-direction: column;
  padding: 0 30px;
  gap: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1),
              padding   0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 16px 60px rgba(0, 0, 0, 0.45);
  border-bottom: 1px solid rgba(0, 217, 255, 0.18);
  z-index: 999;
}

.ek-mobile-menu.active {
  max-height: 600px;
  padding: 25px 30px;
}

.ek-mobile-menu a {
  color: var(--cyan-2);
  text-decoration: none;
  padding: 18px 25px;
  font-size: 17px;
  font-weight: 600;
  border-bottom: 1px solid rgba(0, 217, 255, 0.16);
  transition: var(--transition);
  border-radius: 10px;
  margin-bottom: 6px;
}

.ek-mobile-menu a:last-child {
  border-bottom: none;
  background: linear-gradient(135deg, var(--cyan), var(--cyan-2));
  color: var(--bg-0);
  text-align: center;
  margin-top: 15px;
  font-weight: 800;
  box-shadow: 0 12px 28px rgba(0, 217, 255, 0.25);
}

.ek-mobile-menu a:not(:last-child):hover {
  background: rgba(0, 217, 255, 0.10);
  padding-left: 35px;
  border-color: rgba(0, 217, 255, 0.28);
  color: var(--cyan);
}

.ek-mobile-menu a:last-child:hover {
  filter: saturate(1.05);
  transform: translateY(-2px);
  box-shadow: 0 18px 44px rgba(0, 217, 255, 0.33);
}


/* --------------------------------------------------------------------------
   11. FOOTER
   -------------------------------------------------------------------------- */
.ek-footer {
  background: linear-gradient(180deg, var(--bg-0) 0%, var(--bg-1) 100%);
  border-top: 2px solid var(--border-strong);
  color: var(--cyan-2);
  padding-top: 90px;
}

.ek-footer-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 100px;
}

.ek-footer-logo-zone {
  flex: 0 0 380px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px;
}

.ek-footer-logo {
  max-width: 260px;
  width: 100%;
  height: auto;
  display: block;
  border: none;
  background: transparent;
  padding: 0;
  transition: var(--transition);
  box-shadow: none;
}

.ek-footer-logo-zone a:hover .ek-footer-logo {
  transform: scale(1.02);
}

.ek-footer-links {
  display: flex;
  gap: 120px;
}

.ek-footer-col h4 {
  font-size: 18px;
  margin-bottom: 20px;
  font-weight: 800;
  color: var(--cyan);
}

.ek-footer-col a {
  display: block;
  color: rgba(92, 225, 230, 0.88);
  text-decoration: none;
  margin-bottom: 12px;
  transition: var(--transition);
}

.ek-footer-col a:hover {
  color: var(--cyan);
  padding-left: 8px;
  text-shadow: 0 0 18px rgba(0, 217, 255, 0.18);
}

.ek-footer-bottom {
  margin-top: 80px;
  padding: 25px 40px;
  text-align: center;
  font-size: 14px;
  background: rgba(10, 22, 40, 0.8);
  color: rgba(92, 225, 230, 0.9);
  border-top: 1px solid rgba(0, 217, 255, 0.16);
}


/* --------------------------------------------------------------------------
   12. FORMULAIRE DE CONTACT / RÉSERVATION (partagé)
   -------------------------------------------------------------------------- */
.ek-contact-card {
  background: linear-gradient(135deg, rgba(21, 34, 56, 0.86), rgba(10, 22, 40, 0.86));
  padding: 45px 50px;
  border-radius: 24px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  max-width: 980px;
  margin: 0 auto;
}

.ek-contact-card h2 {
  font-size: 2.2rem;
  font-weight: 900;
  color: transparent;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, #ffffff, var(--cyan-2));
  -webkit-background-clip: text;
  background-clip: text;
  text-shadow: 2px 2px 18px rgba(0, 217, 255, 0.18);
  line-height: 1.15;
}

.ek-contact-card > p {
  color: rgba(240, 244, 248, 0.74);
  margin-bottom: 30px;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Champs */
.ek-contact-card form,
.ek-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.ek-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.ek-contact-card input,
.ek-contact-card select,
.ek-contact-card textarea,
.ek-form input,
.ek-form select,
.ek-form textarea {
  width: 100%;
  padding: 16px 20px;
  border: 2px solid rgba(0, 217, 255, 0.22);
  border-radius: 12px;
  font-size: 0.95rem;
  font-family: 'Poppins', sans-serif;
  background: rgba(10, 22, 40, 0.78);
  color: rgba(240, 244, 248, 0.95);
  transition: var(--transition);
  min-width: 0;
}

.ek-contact-card input::placeholder,
.ek-contact-card textarea::placeholder,
.ek-form input::placeholder,
.ek-form textarea::placeholder {
  color: rgba(240, 244, 248, 0.82);
  opacity: 1;
}

.ek-contact-card textarea,
.ek-form textarea {
  min-height: 140px;
  resize: vertical;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.ek-contact-card input:focus,
.ek-contact-card select:focus,
.ek-contact-card textarea:focus,
.ek-form input:focus,
.ek-form select:focus,
.ek-form textarea:focus {
  outline: none;
  border-color: rgba(0, 217, 255, 0.50);
  background: rgba(10, 22, 40, 0.92);
  box-shadow: 0 0 0 3px rgba(0, 217, 255, 0.16);
}

/* Bouton soumettre */
.ek-contact-card button,
.ek-form button {
  width: 100%;
  padding: 17px;
  background: linear-gradient(135deg, var(--cyan), var(--cyan-2));
  color: var(--bg-0);
  border: none;
  border-radius: 999px;
  font-size: 1rem;
  font-family: 'Poppins', sans-serif;
  font-weight: 900;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 14px 34px rgba(0, 217, 255, 0.20);
  margin-top: 10px;
}

.ek-contact-card button:hover,
.ek-form button:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 46px rgba(0, 217, 255, 0.30);
  filter: saturate(1.05);
}

/* Section contact (wrapper) */
.ek-contact-section {
  padding: 70px 0 80px;
  background: linear-gradient(180deg, var(--bg-0) 0%, var(--bg-1) 100%);
  position: relative;
  overflow: hidden;
  border-top-left-radius: 80px;
  border-top-right-radius: 80px;
  border-top: 2px solid rgba(0, 217, 255, 0.18);
}

.ek-contact-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 10% 20%, rgba(0, 217, 255, 0.10) 0%, transparent 40%),
    radial-gradient(circle at 90% 80%, rgba(255, 20, 147, 0.08) 0%, transparent 45%);
  pointer-events: none;
}

.ek-contact-section .ek-container {
  position: relative;
  z-index: 1;
}


/* --------------------------------------------------------------------------
   13. PAGE : LE CENTRE
   -------------------------------------------------------------------------- */
.ek-page {
  width: 100%;
  background: linear-gradient(180deg, var(--bg-0) 0%, var(--bg-1) 100%);
}

/* Hero image centré */
.ek-hero-img {
  position: relative;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  height: 420px;
  overflow: hidden;
  isolation: isolate;
  border-radius: 22px;
  border: 1px solid rgba(0, 217, 255, 0.16);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.35);
}

.ek-hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  animation: ekHeroZoom 18s ease-in-out infinite alternate;
}

@keyframes ekHeroZoom {
  from { transform: scale(1.01); }
  to   { transform: scale(1.08); }
}

.ek-hero-img::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10, 22, 40, 0.70), rgba(0, 217, 255, 0.18));
  z-index: 1;
}

.ek-hero-img .ek-hero-content {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 18px;
  z-index: 2;
}

.ek-hero-title {
  font-size: clamp(2.0rem, 6vw, 4.6rem);
  font-weight: 900;
  letter-spacing: 0.5px;
  line-height: 1.05;
  background: linear-gradient(135deg, #ffffff, var(--cyan-2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 2px 2px 20px rgba(0, 217, 255, 0.20);
}

/* 2 cartes côte à côte */
.ek-cards-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: -120px;
  position: relative;
  z-index: 5;
}

.ek-card-glass {
  background: linear-gradient(135deg, rgba(21, 34, 56, 0.92), rgba(10, 22, 40, 0.92));
  border: 1px solid rgba(0, 217, 255, 0.18);
  border-radius: 20px;
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.35);
  padding: 34px;
  position: relative;
  overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.ek-card-glass::before {
  content: '';
  position: absolute;
  inset: -2px;
  background: linear-gradient(45deg, var(--cyan), var(--cyan-2), var(--pink), var(--cyan));
  opacity: 0;
  z-index: -1;
  border-radius: 20px;
  transition: opacity 0.35s ease;
  background-size: 300% 300%;
  animation: ekShift 3.2s ease infinite;
}

@keyframes ekShift {
  0%, 100% { background-position: 0% 50%; }
  50%       { background-position: 100% 50%; }
}

.ek-card-glass:hover {
  transform: translateY(-8px);
  border-color: rgba(0, 217, 255, 0.32);
  box-shadow: 0 26px 80px rgba(0, 217, 255, 0.14);
}

.ek-card-glass:hover::before {
  opacity: 0.22;
}

.ek-card-glass h2 {
  margin: 0 0 14px;
  font-size: clamp(1.35rem, 2.4vw, 1.8rem);
  color: var(--cyan-2);
  font-weight: 900;
}

.ek-card-glass p {
  margin: 0;
  color: rgba(240, 244, 248, 0.92);
  line-height: 1.85;
  font-size: 1.02rem;
}

.ek-card-glass ul {
  margin: 12px 0 0 18px;
  color: rgba(240, 244, 248, 0.92);
  line-height: 1.85;
}

.ek-card-glass li {
  margin: 6px 0;
}

/* Image pleine largeur */
.ek-wide-img {
  width: 100%;
  max-width: 820px;
  margin: 45px auto;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(0, 217, 255, 0.16);
  box-shadow: 0 16px 55px rgba(0, 0, 0, 0.35);
  position: relative;
}

.ek-wide-img img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.ek-wide-img:hover img {
  transform: scale(1.05);
}

.ek-wide-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 217, 255, 0.10), rgba(255, 20, 147, 0.08));
  opacity: 0.7;
  pointer-events: none;
}

/* Bloc texte */
.ek-text-block {
  background: rgba(10, 22, 40, 0.35);
  border: 1px solid rgba(0, 217, 255, 0.12);
  border-radius: 20px;
  padding: 34px;
  box-shadow: 0 14px 45px rgba(0, 0, 0, 0.24);
}

.ek-text-block h3 {
  margin: 0 0 10px;
  font-size: clamp(1.3rem, 2.3vw, 1.7rem);
  color: var(--cyan);
  font-weight: 900;
  text-transform: none !important;
}

.ek-text-block p {
  margin: 0;
  line-height: 1.9;
  color: rgba(240, 244, 248, 0.92);
  font-size: 1.05rem;
}

.ek-quote {
  font-style: italic;
  display: block;
  margin: 10px 0;
  color: rgba(240, 244, 248, 0.92);
}

/* Carrousel équipements */
.ek-carousel {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(0, 217, 255, 0.16);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.35);
  height: min(62vh, 520px);
  min-height: 340px;
  background: rgba(10, 22, 40, 0.35);
}

.ek-carousel-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.02);
  transition: opacity 900ms ease, transform 1200ms ease;
}

.ek-carousel-slide.active {
  opacity: 1;
  transform: scale(1);
}

.ek-carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ek-carousel-slide::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10, 22, 40, 0.70), rgba(0, 217, 255, 0.10));
  z-index: 1;
}

.ek-carousel-caption {
  position: absolute;
  left: 50%;
  bottom: 26px;
  transform: translateX(-50%);
  z-index: 2;
  padding: 12px 16px;
  border-radius: 18px;
  background: rgba(10, 22, 40, 0.22);
  border: 1px solid rgba(240, 244, 248, 0.22);
  backdrop-filter: blur(8px);
  color: rgba(240, 244, 248, 0.96);
  font-weight: 900;
  letter-spacing: 0.35px;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.25);
  max-width: calc(100% - 44px);
  text-align: center;
}

.ek-carousel-controls {
  position: absolute;
  right: 18px;
  bottom: 18px;
  z-index: 3;
  display: flex;
  gap: 10px;
  align-items: center;
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(10, 22, 40, 0.55);
  border: 1px solid rgba(0, 217, 255, 0.14);
  backdrop-filter: blur(10px);
}

.ek-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(92, 225, 230, 0.35);
  border: 1px solid rgba(0, 217, 255, 0.20);
  cursor: pointer;
  transition: transform 0.25s ease, background 0.25s ease;
}

.ek-dot.active {
  background: rgba(0, 217, 255, 0.9);
  transform: scale(1.15);
}

/* Section équipements */
.ek-equipements {
  margin-top: 55px;
}

.ek-equipements-header {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 18px;
  margin-bottom: 18px;
  text-align: center;
}

.ek-equipements-header h2 {
  margin: 0;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 900;
  color: var(--cyan-2);
}

/* CTA final */
.ek-cta {
  margin-top: 50px;
  background: linear-gradient(135deg, rgba(21, 34, 56, 0.75), rgba(10, 22, 40, 0.75));
  border: 1px solid rgba(0, 217, 255, 0.18);
  border-radius: 22px;
  padding: 34px;
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.32);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.ek-cta::before {
  content: '';
  position: absolute;
  inset: -2px;
  background:
    radial-gradient(circle at 20% 30%, rgba(0, 217, 255, 0.18) 0%, transparent 55%),
    radial-gradient(circle at 80% 70%, rgba(255, 20, 147, 0.10) 0%, transparent 55%);
  pointer-events: none;
}

.ek-cta p {
  margin: 0 0 18px;
  line-height: 1.9;
  color: rgba(240, 244, 248, 0.95);
  font-size: 1.06rem;
  position: relative;
  z-index: 1;
  white-space: pre-line;
}


/* --------------------------------------------------------------------------
   14. PAGE : COURS (hero gradient + cards 4 colonnes)
   -------------------------------------------------------------------------- */
.ek-hero-gradient {
  position: relative;
  padding: 58px 0 34px;
  background: linear-gradient(180deg, rgba(21, 34, 56, 0.25) 0%, rgba(10, 22, 40, 0) 100%);
  overflow: hidden;
}

.ek-hero-gradient::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 12% 18%, rgba(0, 217, 255, 0.10) 0%, transparent 45%),
    radial-gradient(circle at 88% 75%, rgba(255, 20, 147, 0.08) 0%, transparent 48%);
  pointer-events: none;
}

.ek-intro-card {
  background: linear-gradient(135deg, rgba(21, 34, 56, 0.74), rgba(10, 22, 40, 0.80));
  border: 1px solid var(--border);
  border-radius: 26px;
  box-shadow: var(--shadow);
  padding: 34px;
  position: relative;
  overflow: hidden;
}

.ek-intro-title {
  font-size: 2.65rem;
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 14px;
  color: var(--offwhite) !important;
  -webkit-text-fill-color: var(--offwhite) !important;
  text-shadow: 0 0 18px rgba(243, 241, 234, 0.18), 2px 2px 22px rgba(0, 217, 255, 0.18);
  text-align: center;
}

.ek-intro-text {
  color: rgba(240, 244, 248, 0.90);
  font-size: 1.05rem;
  line-height: 1.85;
  max-width: 1000px;
}

/* Grille 4 colonnes cartes-cours */
.ek-cards-grid {
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.ek-card-cours {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(0, 217, 255, 0.18);
  background: rgba(10, 22, 40, 0.55);
  box-shadow: 0 14px 45px rgba(0, 0, 0, 0.28);
  min-height: 420px;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
}

.ek-card-cours:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(0, 217, 255, 0.28);
}

.ek-card-media {
  position: relative;
  height: 280px;
  flex: 0 0 auto;
  overflow: hidden;
}

.ek-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.05) contrast(1.03);
  transform: scale(1.02);
  transition: var(--transition);
}

.ek-card-cours:hover .ek-card-media img {
  transform: scale(1.06);
}

.ek-card-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10, 22, 40, 0.05) 0%, rgba(10, 22, 40, 0.38) 65%, rgba(10, 22, 40, 0.60) 100%),
    radial-gradient(circle at 70% 20%, rgba(0, 217, 255, 0.12) 0%, transparent 55%);
  pointer-events: none;
}

.ek-card-content {
  position: relative;
  margin: -46px 14px 14px auto;
  max-width: 86%;
  background: rgba(10, 22, 40, 0.78);
  border: 1px solid rgba(0, 217, 255, 0.16);
  border-radius: 16px;
  padding: 16px;
  backdrop-filter: blur(10px);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.35);
  z-index: 2;
  min-height: 260px;
  display: flex;
  flex-direction: column;
}

.ek-card-title {
  font-size: 1.05rem;
  font-weight: 900;
  color: var(--offwhite);
  line-height: 1.2;
  margin-bottom: 8px;
}

.ek-card-text {
  color: rgba(240, 244, 248, 0.90);
  font-size: 0.95rem;
  line-height: 1.6;
}

.ek-card-price {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(0, 217, 255, 0.10);
  border: 1px solid rgba(0, 217, 255, 0.20);
  color: rgba(240, 244, 248, 0.94);
  font-weight: 900;
  font-size: 0.92rem;
  white-space: nowrap;
  align-self: flex-start;
}

/* Grille 2 photos */
.ek-photo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  padding: 26px 0 10px;
}

.ek-photo {
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(0, 217, 255, 0.18);
  background: rgba(10, 22, 40, 0.55);
  box-shadow: 0 14px 45px rgba(0, 0, 0, 0.28);
  aspect-ratio: 16 / 9;
  position: relative;
}

.ek-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.05) contrast(1.02);
  transition: var(--transition);
}

.ek-photo:hover img {
  transform: scale(1.04);
}

/* Sections alternées */
.ek-section {
  padding: 40px 0 62px;
  position: relative;
  overflow: hidden;
}

.ek-section.alt {
  background: linear-gradient(180deg, rgba(21, 34, 56, 0.35) 0%, rgba(10, 22, 40, 0.20) 100%);
  border-top: 1px solid rgba(0, 217, 255, 0.12);
  border-bottom: 1px solid rgba(0, 217, 255, 0.12);
}

.ek-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 10% 22%, rgba(0, 217, 255, 0.08) 0%, transparent 45%),
    radial-gradient(circle at 90% 78%, rgba(255, 20, 147, 0.06) 0%, transparent 50%);
  pointer-events: none;
  opacity: 0.9;
}

.ek-section .ek-container {
  position: relative;
  z-index: 1;
}


/* --------------------------------------------------------------------------
   15. PAGE : BIEN-ÊTRE (hero full-height + programmes)
   -------------------------------------------------------------------------- */
.ek-hero-full {
  position: relative;
  height: 68vh;
  min-height: 520px;
  overflow: hidden;
  background: var(--bg-0);
  margin-bottom: 40px;
}

.ek-hero-full::before {
  content: '';
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: scale(1.02);
  filter: contrast(1.02) saturate(1.05);
}

.ek-hero-full::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(10, 22, 40, 0.78), rgba(0, 217, 255, 0.18)),
    radial-gradient(circle at 70% 30%, rgba(255, 20, 147, 0.08) 0%, transparent 55%);
}

.ek-hero-full .ek-hero-content {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 20px;
}

.ek-hero-h1 {
  color: transparent;
  font-size: 3.4rem;
  font-weight: 900;
  line-height: 1.12;
  margin-bottom: 14px;
  background: linear-gradient(135deg, #ffffff, var(--cyan-2));
  -webkit-background-clip: text;
  background-clip: text;
  text-shadow: 2px 2px 22px rgba(0, 217, 255, 0.26);
  max-width: 980px;
}

.ek-hero-subtitle {
  color: rgba(240, 244, 248, 0.92);
  font-size: 1.15rem;
  font-weight: 300;
  max-width: 860px;
  line-height: 1.8;
}

/* Programme bien-être */
.ek-programme {
  background: linear-gradient(135deg, rgba(21, 34, 56, 0.86), rgba(10, 22, 40, 0.86));
  border: 1px solid var(--border);
  border-radius: 24px;
  box-shadow: var(--shadow);
  overflow: hidden;
  margin: 26px 0;
  position: relative;
  transition: var(--transition);
}

.ek-programme:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(243, 241, 234, 0.65);
}

.ek-programme-head {
  padding: 26px 28px 0;
}

.ek-programme-title {
  font-size: 1.55rem;
  font-weight: 900;
  color: #f3f1ea !important;
  line-height: 1.25;
  margin-bottom: 10px;
  text-transform: none !important;
}

.ek-programme-body {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 26px;
  padding: 14px 28px 16px;
  align-items: start;
}

.ek-programme-body.reverse {
  grid-template-columns: 0.85fr 1.15fr;
}

.ek-programme-text p {
  color: rgba(240, 244, 248, 0.90);
  line-height: 1.8;
  margin-bottom: 14px;
  font-size: 1.03rem;
}

.ek-programme-media {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(0, 217, 255, 0.18);
  box-shadow: 0 14px 45px rgba(0, 0, 0, 0.28);
  aspect-ratio: 4 / 3;
  width: 100%;
  background: rgba(10, 22, 40, 0.65);
}

.ek-programme-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: var(--transition);
  filter: saturate(1.05) contrast(1.02);
}

.ek-programme:hover .ek-programme-media img {
  transform: scale(1.05);
}

/* Volet détails (accordéon) */
.ek-details {
  margin: 0 28px 28px;
  background: rgba(10, 22, 40, 0.55);
  border: 1px solid rgba(0, 217, 255, 0.16);
  border-radius: 16px;
  padding: 16px 18px;
  display: none;
}

.ek-details.active {
  display: block;
}

.ek-details-list {
  padding-left: 18px;
  margin: 0;
}

.ek-details-list li {
  margin: 8px 0;
  color: rgba(240, 244, 248, 0.90);
  line-height: 1.75;
}

.ek-details-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 2px;
}

.ek-details-actions {
  margin-top: 14px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.ek-note {
  color: rgba(240, 244, 248, 0.85);
  line-height: 1.75;
}

/* Actions (boutons groupés) */
.ek-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 14px;
}


/* --------------------------------------------------------------------------
   16. PAGE : PENSIONS (hero avec textbox chevauchant)
   -------------------------------------------------------------------------- */
.ek-hero-pensions {
  position: relative;
  padding: 40px 0 220px;
  background: linear-gradient(180deg, var(--bg-1) 0%, var(--bg-0) 100%);
  overflow: hidden;
  z-index: 5;
}

.ek-hero-wrap {
  position: relative;
  border-radius: 28px;
  overflow: visible;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  min-height: 320px;
  background: rgba(10, 22, 40, 0.55);
  z-index: 6;
}

.ek-hero-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(1.05) contrast(1.02);
  min-height: 320px;
  border-radius: 28px;
}

.ek-hero-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 28px;
  background:
    radial-gradient(circle at 20% 30%, rgba(0, 217, 255, 0.10) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(255, 20, 147, 0.06) 0%, transparent 55%),
    linear-gradient(to right, rgba(10, 22, 40, 0.15) 0%, rgba(10, 22, 40, 0.55) 65%, rgba(10, 22, 40, 0.62) 100%);
  pointer-events: none;
}

.ek-hero-textbox {
  position: absolute;
  left: 50%;
  top: 100%;
  transform: translate(-50%, -25%);
  width: min(760px, calc(100% - 72px));
  background: rgba(21, 34, 56, 0.78);
  border: 1px solid rgba(0, 217, 255, 0.18);
  border-radius: 22px;
  padding: 34px;
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.40);
  backdrop-filter: blur(10px);
  z-index: 7;
}

.ek-hero-textbox h1 {
  font-size: 2.4rem;
  font-weight: 900;
  margin-bottom: 14px;
  color: transparent;
  background: linear-gradient(135deg, #ffffff, var(--cyan-2));
  -webkit-background-clip: text;
  background-clip: text;
  text-shadow: 2px 2px 18px rgba(0, 217, 255, 0.22);
  line-height: 1.15;
  text-transform: none !important;
}

.ek-hero-textbox p {
  color: rgba(240, 244, 248, 0.88);
  line-height: 1.8;
  font-size: 1.02rem;
  white-space: pre-line;
}

/* 3 rectangles pensions */
.ek-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  position: relative;
  z-index: 1;
  margin-top: 26px;
}

.ek-pcard {
  background: linear-gradient(135deg, rgba(21, 34, 56, 0.86), rgba(10, 22, 40, 0.86));
  border-radius: 22px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: var(--transition);
  position: relative;
  min-height: 560px;
  display: flex;
  flex-direction: column;
}

.ek-pcard:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(243, 241, 234, 0.65);
}

.ek-pcard-head {
  padding: 18px 20px 0;
}

.ek-pcard-title {
  font-size: 1.15rem;
  font-weight: 900;
  color: var(--cyan-2);
  margin-bottom: 10px;
  line-height: 1.25;
  text-transform: none !important;
}

.ek-pcard-rule {
  height: 2px;
  width: 100%;
  background: linear-gradient(90deg, rgba(0, 217, 255, 0.55), rgba(0, 217, 255, 0.10));
  border-radius: 999px;
  margin-bottom: 14px;
}

.ek-pcard-media {
  padding: 0 20px 12px;
}

.ek-pcard-media img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 16px;
  border: 1px solid rgba(0, 217, 255, 0.14);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.30);
  display: block;
}

.ek-pcard-body {
  padding: 8px 20px 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex: 1;
}

.ek-price {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(10, 22, 40, 0.72);
  border: 1px solid rgba(0, 217, 255, 0.22);
  color: rgba(240, 244, 248, 0.92);
  font-weight: 900;
  letter-spacing: 0.2px;
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.25);
}

.ek-price span {
  color: var(--offwhite);
}

.ek-pcard-text {
  color: rgba(240, 244, 248, 0.88);
  font-size: 0.95rem;
  line-height: 1.75;
  white-space: pre-line;
}

/* Layout split (image + texte) */
.ek-split {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 28px;
  align-items: stretch;
  margin-bottom: 28px;
}

.ek-split-media {
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(0, 217, 255, 0.18);
  box-shadow: var(--shadow);
  min-height: 320px;
  position: relative;
  background: rgba(10, 22, 40, 0.55);
}

.ek-split-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(1.05) contrast(1.02);
}

.ek-split-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 217, 255, 0.10), rgba(255, 20, 147, 0.06));
  opacity: 0.35;
  pointer-events: none;
}

.ek-split-panel {
  background: linear-gradient(135deg, rgba(21, 34, 56, 0.86), rgba(10, 22, 40, 0.86));
  border-radius: 22px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  padding: 24px 26px;
  position: relative;
  overflow: hidden;
}

.ek-split-panel::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, rgba(0, 217, 255, 0.55), rgba(92, 225, 230, 0.20), rgba(0, 217, 255, 0.08));
}

.ek-split-title {
  font-size: 1.35rem;
  font-weight: 900;
  color: var(--cyan-2);
  margin-bottom: 10px;
  line-height: 1.25;
  text-transform: none !important;
}

.ek-split-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}

.ek-split-text {
  color: rgba(240, 244, 248, 0.88);
  font-size: 0.98rem;
  line-height: 1.85;
  white-space: pre-line;
  margin-top: 6px;
}


/* --------------------------------------------------------------------------
   17. PAGE : SAVOIR ÉTHOLOGIQUE (grille 2 col + badges)
   -------------------------------------------------------------------------- */
.ek-page-title {
  text-align: center;
  margin-bottom: 26px;
}

.ek-page-title h1 {
  font-size: 2.6rem;
  font-weight: 900;
  color: transparent;
  background: linear-gradient(135deg, #ffffff, var(--cyan-2));
  -webkit-background-clip: text;
  background-clip: text;
  text-shadow: 2px 2px 20px rgba(0, 217, 255, 0.25);
  line-height: 1.15;
}

.ek-page-title p {
  margin-top: 10px;
  color: rgba(240, 244, 248, 0.86);
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.85;
  font-weight: 300;
}

/* Grille 2 colonnes */
.ek-two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  align-items: stretch;
  max-width: 1040px;
  margin: 0 auto;
}

/* Carte générique */
.ek-card {
  background: linear-gradient(135deg, rgba(21, 34, 56, 0.78), rgba(10, 22, 40, 0.78));
  border: 1px solid rgba(0, 217, 255, 0.16);
  border-radius: 18px;
  box-shadow: 0 14px 45px rgba(0, 0, 0, 0.28);
  overflow: hidden;
  transition: var(--transition);
  position: relative;
  min-width: 0;
}

.ek-card.pad {
  padding: 22px;
}

.ek-card:hover {
  transform: translateY(-2px);
  border-color: rgba(0, 217, 255, 0.26);
  box-shadow: 0 18px 60px rgba(0, 217, 255, 0.12);
}

.ek-card h3 {
  font-size: 1.55rem;
  font-weight: 900;
  color: var(--offwhite);
  line-height: 1.18;
  margin-bottom: 10px;
}

.ek-card p {
  color: rgba(240, 244, 248, 0.88);
  line-height: 1.9;
  font-size: 1.02rem;
  margin-bottom: 10px;
}

/* Image dans la carte */
.ek-img {
  width: 100%;
  height: 100%;
  min-height: 340px;
  background: rgba(10, 22, 40, 0.55);
}

.ek-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(1.06) contrast(1.03);
  transition: var(--transition);
  transform: scale(1.02);
}

.ek-card:hover .ek-img img {
  transform: scale(1.06);
}

/* Info top (badges + prix) */
.ek-info-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  margin: 6px 0 14px;
  padding: 12px;
  border: 1px solid rgba(0, 217, 255, 0.18);
  border-radius: 14px;
  background: rgba(0, 217, 255, 0.06);
}

.ek-info-badges {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  align-items: center;
}

.ek-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 10px;
  border-radius: 999px;
  border: 1px solid rgba(0, 217, 255, 0.20);
  background: rgba(10, 22, 40, 0.55);
  color: rgba(240, 244, 248, 0.92);
  font-weight: 800;
  font-size: 0.82rem;
  white-space: nowrap;
}

.ek-badge strong {
  color: var(--offwhite);
  font-weight: 900;
}

/* Prix */
.ek-price-block {
  text-align: right;
  min-width: 170px;
  padding-left: 10px;
  border-left: 1px dashed rgba(0, 217, 255, 0.20);
}

.ek-price-label {
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.35px;
  color: rgba(240, 244, 248, 0.86);
  margin-bottom: 2px;
}

.ek-price-value {
  font-size: 1.35rem;
  font-weight: 900;
  line-height: 1.1;
  color: transparent;
  background: linear-gradient(135deg, #ffffff, var(--cyan-2));
  -webkit-background-clip: text;
  background-clip: text;
}

.ek-price-note {
  font-size: 0.82rem;
  color: rgba(240, 244, 248, 0.78);
  margin-top: 4px;
}

/* Date chips */
.ek-dates {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 10px;
}

.ek-date-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border-radius: 12px;
  border: 1px solid rgba(0, 217, 255, 0.18);
  background: rgba(10, 22, 40, 0.55);
  color: rgba(240, 244, 248, 0.92);
  font-weight: 800;
  font-size: 0.85rem;
  white-space: nowrap;
}

.ek-date-chip em {
  font-style: normal;
  color: var(--cyan-2);
  font-weight: 900;
}

/* Bandeau CTA */
.ek-banner {
  max-width: 1040px;
  margin: 0 auto;
  border-radius: 18px;
  border: 1px solid rgba(0, 217, 255, 0.22);
  background: linear-gradient(135deg, rgba(0, 217, 255, 0.10), rgba(21, 34, 56, 0.75));
  box-shadow: 0 16px 52px rgba(0, 217, 255, 0.10);
  padding: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}

.ek-banner h3 {
  margin: 0;
  font-size: 1.4rem;
  font-weight: 900;
  color: rgba(240, 244, 248, 0.96);
  line-height: 1.2;
}

.ek-banner p {
  margin: 8px 0 0;
  color: rgba(240, 244, 248, 0.86);
  line-height: 1.8;
  font-size: 1.0rem;
  flex: 1 1 520px;
}


/* --------------------------------------------------------------------------
   18. PAGE : TECHNIQUES ÉQUESTRES (vidéo hero + accordéon)
   -------------------------------------------------------------------------- */
.ek-hero-video {
  position: relative;
  height: 78vh;
  min-height: 520px;
  overflow: hidden;
  background: var(--bg-0);
  border-bottom: 1px solid rgba(0, 217, 255, 0.14);
  margin-bottom: 55px;
}

.ek-hero-video video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
  filter: contrast(1.02) saturate(1.08);
}

.ek-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10, 22, 40, 0.72), rgba(0, 217, 255, 0.18));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 20px;
  z-index: 2;
}

.ek-hero-overlay h1 {
  color: transparent;
  font-size: 3.4rem;
  font-weight: 900;
  line-height: 1.12;
  margin-bottom: 18px;
  max-width: 1050px;
  text-shadow: 2px 2px 20px rgba(0, 217, 255, 0.35);
  background: linear-gradient(135deg, #ffffff, var(--cyan-2));
  -webkit-background-clip: text;
  background-clip: text;
}

.ek-hero-overlay p {
  color: rgba(240, 244, 248, 0.92);
  font-size: 1.12rem;
  max-width: 820px;
  line-height: 1.8;
  font-weight: 300;
}

/* Accordéon techniques */
.ek-accordion {
  margin-top: 26px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.ek-acc-item {
  background: linear-gradient(135deg, rgba(21, 34, 56, 0.82), rgba(10, 22, 40, 0.82));
  border: 1px solid rgba(0, 217, 255, 0.18);
  border-radius: 18px;
  box-shadow: 0 14px 45px rgba(0, 0, 0, 0.28);
  overflow: hidden;
  transition: var(--transition);
  width: 100%;
  min-width: 0;
}

.ek-acc-item:hover {
  border-color: rgba(0, 217, 255, 0.28);
  box-shadow: 0 18px 60px rgba(0, 217, 255, 0.14);
}

.ek-acc-btn {
  width: 100%;
  text-align: left;
  background: transparent;
  border: none;
  color: var(--text);
  cursor: pointer;
  padding: 18px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 14px;
  font-family: 'Poppins', sans-serif;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

.ek-acc-title {
  font-weight: 900;
  font-size: 1.02rem;
  line-height: 1.35;
  color: var(--cyan-2);
  flex: 1;
  white-space: normal;
  min-width: 0;
}

.ek-acc-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  margin-left: 12px;
}

.ek-chevron {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  border: 1px solid rgba(0, 217, 255, 0.22);
  display: grid;
  place-items: center;
  background: rgba(10, 22, 40, 0.55);
  transition: var(--transition);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.25);
  flex-shrink: 0;
}

.ek-chevron svg {
  width: 18px;
  height: 18px;
  stroke: var(--cyan);
  transition: transform 0.35s ease;
}

.ek-acc-item.active .ek-chevron {
  background: rgba(0, 217, 255, 0.10);
  border-color: rgba(0, 217, 255, 0.32);
}

.ek-acc-item.active .ek-chevron svg {
  transform: rotate(180deg);
}

.ek-acc-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease;
  border-top: 1px solid rgba(0, 217, 255, 0.12);
  background: rgba(10, 22, 40, 0.35);
}

.ek-acc-content {
  padding: 18px 18px 22px;
  color: rgba(240, 244, 248, 0.88);
  line-height: 1.85;
  font-size: 0.98rem;
}

.ek-acc-content ul {
  margin: 0 0 0 18px;
}

.ek-acc-content li {
  margin: 6px 0;
  color: rgba(240, 244, 248, 0.86);
}

.ek-acc-content strong {
  color: rgba(240, 244, 248, 0.96);
}

/* Panel image + texte dans accordéon */
.ek-panel-top {
  display: grid;
  gap: 22px;
  align-items: start;
  margin-bottom: 14px;
  padding: 6px 4px 10px;
}

.ek-panel-top.left-image  { grid-template-columns: 520px 1fr; }
.ek-panel-top.right-image { grid-template-columns: 1fr 520px; }

.ek-panel-img {
  width: 100%;
  height: 340px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(0, 217, 255, 0.18);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.30);
  background: rgba(10, 22, 40, 0.55);
}

.ek-panel-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(1.06) contrast(1.03);
  transition: var(--transition);
  transform: scale(1.02);
}

.ek-panel-img:hover img {
  transform: scale(1.06);
}

.ek-panel-text {
  padding-top: 6px;
  max-width: 820px;
}

.ek-panel-text p {
  margin: 0;
  color: rgba(240, 244, 248, 0.90);
  line-height: 1.9;
  font-size: 1.02rem;
}

/* Bandeau lieu */
.ek-lieu-banner {
  width: 100%;
  margin: 10px 0 14px;
  padding: 18px;
  border-radius: 16px;
  border: 1px solid rgba(0, 217, 255, 0.22);
  background: linear-gradient(135deg, rgba(0, 217, 255, 0.10), rgba(21, 34, 56, 0.70));
  box-shadow: 0 16px 52px rgba(0, 217, 255, 0.10);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.ek-lieu-banner .ek-lieu-left {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.ek-lieu-banner .ek-lieu-label {
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.45px;
  color: rgba(240, 244, 248, 0.92);
  border: 1px solid rgba(0, 217, 255, 0.22);
  border-radius: 999px;
  padding: 6px 10px;
  background: rgba(10, 22, 40, 0.55);
}

.ek-lieu-banner .ek-lieu-text {
  font-weight: 900;
  color: rgba(240, 244, 248, 0.96);
}

/* Carte pleine largeur (dans accordéon) */
.ek-wide-card {
  width: 100%;
  border-radius: 16px;
  border: 1px solid rgba(0, 217, 255, 0.16);
  background: linear-gradient(135deg, rgba(21, 34, 56, 0.72), rgba(10, 22, 40, 0.72));
  box-shadow: 0 12px 38px rgba(0, 0, 0, 0.26);
  padding: 16px;
  margin-bottom: 16px;
  transition: var(--transition);
}

.ek-wide-card:hover {
  transform: translateY(-2px);
  border-color: rgba(0, 217, 255, 0.26);
  box-shadow: 0 18px 52px rgba(0, 217, 255, 0.10);
}

.ek-wide-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.ek-wide-block {
  border-radius: 14px;
  border: 1px solid rgba(0, 217, 255, 0.12);
  background: rgba(10, 22, 40, 0.35);
  padding: 14px;
}

.ek-wide-block h4 {
  margin: 0 0 8px;
  font-size: 1.02rem;
  font-weight: 900;
  color: rgba(240, 244, 248, 0.96);
}

.ek-wide-block p   { margin: 0 0 8px; color: rgba(240, 244, 248, 0.88); line-height: 1.85; }
.ek-wide-block ul  { margin: 0 0 0 18px; }
.ek-wide-block li  { margin: 6px 0; color: rgba(240, 244, 248, 0.86); }

/* Grille 2 info-cards */
.ek-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 0;
}

.ek-info-card {
  background: linear-gradient(135deg, rgba(21, 34, 56, 0.72), rgba(10, 22, 40, 0.72));
  border: 1px solid rgba(0, 217, 255, 0.16);
  border-radius: 16px;
  box-shadow: 0 12px 38px rgba(0, 0, 0, 0.26);
  padding: 16px;
  overflow: hidden;
  transition: var(--transition);
}

.ek-info-card:hover {
  transform: translateY(-2px);
  border-color: rgba(0, 217, 255, 0.26);
  box-shadow: 0 18px 52px rgba(0, 217, 255, 0.10);
}

/* Carte typing */
.ek-typing-card {
  background: linear-gradient(135deg, rgba(21, 34, 56, 0.86), rgba(10, 22, 40, 0.86));
  border: 1px solid var(--border);
  border-radius: 24px;
  box-shadow: var(--shadow);
  padding: 38px 36px;
  overflow: hidden;
  position: relative;
  width: 100%;
  min-width: 0;
}

.ek-typing-card h2 {
  font-size: 2.2rem;
  margin-bottom: 14px;
}

.ek-typing {
  margin-top: 18px;
  color: rgba(240, 244, 248, 0.88);
  font-size: 1.03rem;
  line-height: 1.9;
  white-space: pre-wrap;
}

.ek-caret {
  display: inline-block;
  width: 10px;
  height: 1.1em;
  transform: translateY(3px);
  margin-left: 4px;
  background: linear-gradient(180deg, var(--cyan), var(--cyan-2));
  border-radius: 3px;
  box-shadow: 0 0 18px rgba(0, 217, 255, 0.25);
  animation: blink 0.9s infinite;
}

@keyframes blink {
  0%, 45%  { opacity: 1; }
  46%, 100% { opacity: 0; }
}

/* Animation gradient (hover cartes) */
@keyframes ekGradientShift {
  0%, 100% { background-position: 0% 50%; }
  50%      { background-position: 100% 50%; }
}


/* --------------------------------------------------------------------------
   19. ANIMATIONS GLOBALES
   -------------------------------------------------------------------------- */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.ek-fade-in {
  animation: fadeInUp 0.55s ease both;
}


/* --------------------------------------------------------------------------
   20. RESPONSIVE BREAKPOINTS
   -------------------------------------------------------------------------- */

/* --- Tablettes larges --- */
@media (max-width: 1200px) {
  .ek-cards-grid { grid-template-columns: repeat(2, 1fr); }
  .ek-card-cours { min-height: 440px; }
  .ek-card-media { height: 290px; }
  .ek-card-content { min-height: 260px; }
}

@media (max-width: 1100px) {
  .ek-nav { gap: 30px; }
  .ek-photo-grid { grid-template-columns: 1fr; }
  .ek-programme-body,
  .ek-programme-body.reverse { grid-template-columns: 1fr; }
  .ek-card-grid { grid-template-columns: 1fr; }
  .ek-pcard { min-height: auto; }
  .ek-pcard-media img { height: 280px; }
  .ek-hero-textbox { width: min(720px, calc(100% - 40px)); }
  .ek-hero-pensions { padding-bottom: 240px; }
}

/* --- Tablettes --- */
@media (max-width: 992px) {
  :root { --header-h: 75px; }

  body { padding-top: 75px; }

  .ek-header .ek-container { padding: 0 20px; }
  .ek-header-inner { height: 75px; gap: 12px; }

  .ek-logo { height: 55px; margin-left: 0; margin-top: 0; }

  .ek-nav { display: none; }
  .ek-burger { display: flex; }
  .ek-mobile-menu { top: 75px; }

  /* Page centre */
  .ek-hero-img { max-width: calc(100% - 36px); height: 360px; min-height: 360px; }
  .ek-cards-2 { grid-template-columns: 1fr; margin-top: -75px; }
  .ek-card-glass { padding: 28px; }
  .ek-container-page { padding: 55px 18px; }
  .ek-wide-img { max-width: 100%; }

  /* Page cours */
  .ek-cards-grid { grid-template-columns: 1fr; }
  .ek-card-cours { min-height: 460px; }
  .ek-card-media { height: 300px; }
  .ek-card-content { max-width: 92%; min-height: 250px; }
  .ek-intro-title { font-size: 2.05rem; }

  /* Page bien-être */
  .ek-hero-full { height: 56vh; min-height: 420px; }
  .ek-hero-h1 { font-size: 2.5rem; }
  .ek-hero-subtitle { font-size: 1rem; }

  /* Page pensions */
  .ek-split { grid-template-columns: 1fr; }
  .ek-split-media { min-height: 260px; }
  .ek-hero-wrap img { min-height: 320px; border-radius: 22px; }
  .ek-hero-textbox {
    left: 18px; right: 18px; top: 100%;
    transform: translate(0, -25%);
    width: auto; padding: 22px;
  }
  .ek-hero-textbox h1 { font-size: 2rem; }
  .ek-hero-pensions { padding-bottom: 250px; }

  /* Page savoir etho */
  .ek-two { grid-template-columns: 1fr; }
  .ek-img { min-height: 320px; }
  .ek-price-block { text-align: left; min-width: 0; padding-left: 0; border-left: none; border-top: 1px dashed rgba(0, 217, 255, 0.20); padding-top: 10px; }

  /* Page techniques */
  .ek-hero-video { height: 70vh; min-height: 480px; }
  .ek-hero-overlay h1 { font-size: 2.6rem; }
  .ek-info-grid { grid-template-columns: 1fr; }
  .ek-wide-grid { grid-template-columns: 1fr; }

  /* Formulaires */
  .ek-form-row { grid-template-columns: 1fr; }
  .ek-contact-card { padding: 35px 30px; }
  .ek-contact-card h2 { font-size: 2.0rem; }
  .ek-section-head h2 { font-size: 2.0rem; }

  /* Footer */
  .ek-footer-container { flex-direction: column; text-align: center; padding: 0 24px; }
  .ek-footer-logo-zone { flex: none; margin-bottom: 40px; width: 100%; max-width: 520px; }
  .ek-footer-links { flex-direction: column; gap: 40px; }
  .ek-footer-col a:hover { transform: none; padding-left: 0; }
}

/* --- Mobile --- */
@media (max-width: 768px) {
  :root { --header-h: 70px; }

  body { padding-top: 70px; }

  .ek-header-inner { height: 70px; gap: 0; }
  .ek-mobile-menu { top: 70px; padding: 0 18px; }
  .ek-mobile-menu.active { padding: 18px; }

  .ek-container { padding: 0 16px; }

  /* Titres */
  .ek-intro-title   { font-size: 1.85rem; line-height: 1.16; }
  .ek-hero-h1       { font-size: 2.15rem; }
  .ek-section-head h2 { font-size: 2.05rem; padding: 0 6px; }
  .ek-contact-card h2 { font-size: 1.9rem; line-height: 1.18; flex-wrap: wrap; }
  .ek-programme-title { font-size: 1.38rem; line-height: 1.18; }
  .ek-hero-overlay h1 { font-size: 2.05rem; }
  .ek-hero-overlay p  { font-size: 1rem; }
  .ek-page-title h1   { font-size: 1.9rem; }

  /* Cartes cours */
  .ek-card-media { height: 280px; }
  .ek-card-content { padding: 14px; max-width: 96%; margin: -42px 12px 12px auto; min-height: 250px; }
  .ek-card-text { font-size: 0.94rem; }

  /* Accordéon techniques */
  .ek-acc-btn { padding: 16px 14px; flex-wrap: wrap; gap: 10px; }
  .ek-acc-title { width: 100%; flex: 0 0 100%; font-size: 1.02rem; }
  .ek-acc-meta { width: 100%; margin-left: 0; justify-content: space-between; }

  /* Panel accordéon */
  .ek-panel-top.left-image,
  .ek-panel-top.right-image { grid-template-columns: 1fr; }
  .ek-panel-img { height: 320px; }
  .ek-panel-text { max-width: none; padding-right: 0; }
  .ek-lieu-banner { flex-direction: column; align-items: flex-start; }

  /* Typing card */
  .ek-typing-card { padding: 26px 18px; }
  .ek-typing-card h2 { font-size: 1.55rem; }

  /* Intro card */
  .ek-intro-card { padding: 28px 20px; }
  .ek-section { padding: 34px 0 54px; }

  /* Contact */
  .ek-contact-section { padding: 60px 0 70px; border-top-left-radius: 60px; border-top-right-radius: 60px; }

  /* Pensions */
  .ek-hero-pensions { padding-bottom: 280px; }
  .ek-hero-textbox h1 { font-size: 1.85rem; }
  .ek-pcard-media img { height: 240px; }

  /* Techniques */
  .ek-techniques { padding: 60px 0 20px; }
}

/* --- Tablettes colonnes --- */
@media (max-width: 860px) {
  .ek-panel-top.left-image,
  .ek-panel-top.right-image { grid-template-columns: 1fr; }
  .ek-panel-img { height: 340px; }
}

/* --- Mobile étroit --- */
@media (max-width: 520px) {
  /* Hero centre */
  .ek-hero-img { height: 300px; min-height: 300px; }

  /* Carrousel */
  .ek-carousel { height: 420px; }
  .ek-carousel-caption { max-width: calc(100% - 28px); bottom: 74px; padding: 10px 14px; border-radius: 16px; font-size: 0.98rem; }
  .ek-carousel-controls { right: 12px; bottom: 12px; padding: 8px 10px; gap: 9px; }

  /* Pensions hero */
  .ek-hero-pensions { padding-bottom: 360px; }
  .ek-hero-textbox { padding: 22px 18px; border-radius: 18px; }
  .ek-hero-textbox h1 { font-size: 1.65rem; }
  .ek-hero-textbox p  { font-size: 0.98rem; line-height: 1.75; }

  /* Prix pensions */
  .ek-price {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    width: 100%;
    max-width: 100%;
    padding: 12px 14px;
    border-radius: 18px;
    flex-wrap: wrap;
  }

  /* Split top */
  .ek-split-top { flex-direction: column; align-items: flex-start; gap: 10px; }
  .ek-pill { width: 100%; justify-content: center; white-space: normal; text-align: center; }

  /* Inputs */
  .ek-contact-card input,
  .ek-contact-card select,
  .ek-contact-card textarea,
  .ek-form input,
  .ek-form select,
  .ek-form textarea { padding: 15px 16px; font-size: 1rem; }

  /* Titres */
  .ek-section-head h2   { font-size: 1.65rem; line-height: 1.14; }
  .ek-contact-card h2   { font-size: 1.65rem; line-height: 1.16; }
  .ek-programme-title   { font-size: 1.25rem; line-height: 1.16; }
  .ek-intro-title       { font-size: 1.65rem; line-height: 1.14; }

  /* Footer */
  .ek-footer { padding-top: 70px; }
  .ek-footer-container { padding: 0 20px; gap: 50px; }

  /* Pills bien-être */
  .ek-details-meta .ek-pill { font-size: 0.9rem; }
}

/* --- Mobile très petit --- */
@media (max-width: 420px) {
  .ek-container { padding: 0 16px; }
  .ek-hero-pensions { padding-bottom: 390px; }
  .ek-hero-textbox { padding: 20px 16px; }
  .ek-hero-textbox h1 { font-size: 1.55rem; }
  .ek-price { gap: 8px; font-size: 0.95rem; }
}

/* ==========================================================================
   MODE CLAIR — Ékinétik "Marine & Or"
   Header/Footer : bleu marine profond #1a2744
   Corps : ivoire chaud · or antique · ardoise
   ========================================================================== */

[data-theme="light"] {
  --bg-0:          #F8F5F0;
  --bg-1:          #EEE9E0;
  --cyan:          #c9a84c;
  --cyan-2:        #8a6e2e;
  --pink:          #7a3060;
  --text:          #1a2744;
  --muted:         rgba(26, 43, 68, 0.70);
  --offwhite:      #1a2744;
  --glass:         rgba(248, 245, 240, 0.92);
  --glass-2:       rgba(238, 233, 224, 0.96);
  --border:        rgba(201, 168, 76, 0.22);
  --border-strong: rgba(201, 168, 76, 0.42);
  --shadow:        0 10px 40px rgba(26, 39, 68, 0.10);
  --shadow-hover:  0 18px 60px rgba(201, 168, 76, 0.20);
}

/* --- Body --- */
[data-theme="light"] body {
  background: linear-gradient(180deg, var(--bg-0) 0%, var(--bg-1) 100%);
  color: var(--text);
}

/* ============================================================
   HEADER & NAV
   ============================================================ */
[data-theme="light"] .ek-header {
  background: #1a2744;
  border-bottom: 1px solid rgba(201, 168, 76, 0.28);
  box-shadow: 0 4px 24px rgba(10, 18, 40, 0.30);
}
[data-theme="light"] .ek-header.scrolled {
  background: rgba(26, 39, 68, 0.97);
  backdrop-filter: blur(12px);
  border-bottom-color: rgba(201, 168, 76, 0.35);
  box-shadow: 0 8px 32px rgba(10, 18, 40, 0.40);
}

/* Liens nav */
[data-theme="light"] .ek-nav a {
  color: rgba(200, 180, 140, 0.82);
}
[data-theme="light"] .ek-nav a:not(.ek-nav-cta):hover {
  color: #e8c97a;
}
[data-theme="light"] .ek-nav a:not(.ek-nav-cta)::after {
  background: #c9a84c;
  box-shadow: none;
}

/* CTA Contact */
[data-theme="light"] .ek-nav-cta {
  background: linear-gradient(135deg, #c9a84c, #e8c97a) !important;
  color: #1a2744 !important;
  box-shadow: 0 8px 24px rgba(201, 168, 76, 0.32);
}
[data-theme="light"] .ek-nav-cta:hover {
  box-shadow: 0 14px 36px rgba(201, 168, 76, 0.42);
  filter: saturate(1.08);
}

/* Sous-menus */
[data-theme="light"] .ek-nav .ek-submenu {
  background: #1e2f55;
  border-color: rgba(201, 168, 76, 0.22);
  box-shadow: 0 18px 60px rgba(10, 18, 40, 0.35);
}
[data-theme="light"] .ek-nav .ek-submenu a {
  color: rgba(200, 180, 140, 0.80);
}
[data-theme="light"] .ek-nav .ek-submenu a:hover {
  background: rgba(201, 168, 76, 0.12);
  border-color: rgba(201, 168, 76, 0.30);
  color: #e8c97a;
}

/* Burger */
[data-theme="light"] .ek-burger span {
  background: rgba(200, 180, 140, 0.85);
  box-shadow: none;
}
[data-theme="light"] .ek-burger:hover span {
  background: #e8c97a;
}

/* Menu mobile */
[data-theme="light"] .ek-mobile-menu {
  background: #1a2744;
  border-bottom-color: rgba(201, 168, 76, 0.20);
  box-shadow: 0 16px 60px rgba(10, 18, 40, 0.40);
}
[data-theme="light"] .ek-mobile-menu a {
  color: rgba(200, 180, 140, 0.80);
  border-bottom-color: rgba(201, 168, 76, 0.14);
}
[data-theme="light"] .ek-mobile-menu a:last-child {
  background: linear-gradient(135deg, #c9a84c, #e8c97a);
  color: #1a2744;
  box-shadow: 0 10px 26px rgba(201, 168, 76, 0.28);
}
[data-theme="light"] .ek-mobile-menu a:not(:last-child):hover {
  background: rgba(201, 168, 76, 0.10);
  color: #e8c97a;
  border-color: rgba(201, 168, 76, 0.24);
}

/* ============================================================
   BOUTON TOGGLE
   ============================================================ */
/* --------------------------------------------------------------------------
   THEME TOGGLE — pill switch
   -------------------------------------------------------------------------- */
.ek-theme-toggle {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--cyan-2);
  padding: 6px;
  display: flex;
  align-items: center;
  margin-left: 10px;
  transition: color 0.3s ease, transform 0.3s ease;
  -webkit-tap-highlight-color: transparent;
}

.ek-theme-toggle:hover {
  color: var(--cyan);
  transform: rotate(15deg) scale(1.15);
}

.ek-icon-sun  { display: none; }
.ek-icon-moon { display: block; }

[data-theme="light"] .ek-icon-sun  { display: block; }
[data-theme="light"] .ek-icon-moon { display: none; }

[data-theme="light"] .ek-theme-toggle {
  color: #c9a84c;
}

[data-theme="light"] .ek-theme-toggle:hover {
  color: #8a6e2e;
}

/* Icônes : par défaut (mode sombre), lune visible, soleil masqué */
.ek-icon-sun  { display: none; }
.ek-icon-moon { display: block; }

/* Piste du switch */
.ek-toggle-track {
  width: 38px;
  height: 22px;
  border-radius: 999px;
  background: rgba(0, 217, 255, 0.15);
  border: 1px solid rgba(0, 217, 255, 0.30);
  position: relative;
  flex-shrink: 0;
  transition: background 0.3s ease, border-color 0.3s ease;
}

/* Pastille du switch */
.ek-toggle-dot {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 2px 8px rgba(0, 217, 255, 0.45);
  transition: transform 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}

/* ---- MODE CLAIR ---- */
[data-theme="light"] .ek-icon-sun  { display: block; }
[data-theme="light"] .ek-icon-moon { display: none; }

[data-theme="light"] .ek-toggle-dot {
  transform: translateX(16px);
  background: #c9a84c;
  box-shadow: 0 2px 8px rgba(201, 168, 76, 0.45);
}

[data-theme="light"] .ek-toggle-track {
  background: rgba(201, 168, 76, 0.18);
  border-color: rgba(201, 168, 76, 0.35);
}

[data-theme="light"] .ek-theme-toggle {
  border-color: rgba(201, 168, 76, 0.40);
  background: rgba(201, 168, 76, 0.10);
  color: #8a6e2e;
}

[data-theme="light"] .ek-theme-toggle:hover {
  background: rgba(201, 168, 76, 0.20);
  border-color: rgba(201, 168, 76, 0.55);
  box-shadow: 0 4px 18px rgba(201, 168, 76, 0.22);
}

/* ============================================================
   FOOTER — même marine que le header
   ============================================================ */
[data-theme="light"] .ek-footer {
  background: linear-gradient(180deg, #1a2744 0%, #162038 100%);
  border-top: 1px solid rgba(201, 168, 76, 0.30);
  color: rgba(200, 180, 140, 0.75);
}

[data-theme="light"] .ek-footer-col h4 {
  color: #c9a84c;
  letter-spacing: 0.06em;
}
[data-theme="light"] .ek-footer-col a {
  color: rgba(200, 180, 140, 0.62);
}
[data-theme="light"] .ek-footer-col a:hover {
  color: #e8c97a;
  text-shadow: none;
}
[data-theme="light"] .ek-footer-bottom {
  background: rgba(10, 16, 34, 0.60);
  color: rgba(200, 180, 140, 0.45);
  border-top-color: rgba(201, 168, 76, 0.14);
}

/* ============================================================
   UTILITAIRES CORPS DE PAGE
   ============================================================ */

/* Titres dégradé marine → or */
[data-theme="light"] .ek-section-title,
[data-theme="light"] .ek-section-head h2,
[data-theme="light"] .ek-page-title h1,
[data-theme="light"] .ek-hero-title,
[data-theme="light"] .ek-hero-h1 {
  background: linear-gradient(135deg, #1a2744 20%, #8a6e2e 100%);
  -webkit-background-clip: text;
  background-clip: text;
  text-shadow: none;
}
[data-theme="light"] .ek-section-head p,
[data-theme="light"] .ek-subtext,
[data-theme="light"] .ek-page-title p {
  color: rgba(26, 39, 68, 0.68);
}

/* Divider or */
[data-theme="light"] .ek-divider {
  background: linear-gradient(90deg, transparent, rgba(201, 168, 76, 0.30), transparent);
}

/* Pills & kickers */
[data-theme="light"] .ek-pill,
[data-theme="light"] .ek-kicker {
  border-color: rgba(201, 168, 76, 0.30);
  background: rgba(201, 168, 76, 0.08);
  color: #6b5020;
}

/* ============================================================
   BOUTONS
   ============================================================ */
[data-theme="light"] .ek-btn {
  border-color: rgba(26, 39, 68, 0.28);
  background: rgba(26, 39, 68, 0.06);
  color: #1a2744;
}
[data-theme="light"] .ek-btn:hover {
  border-color: rgba(26, 39, 68, 0.45);
  box-shadow: 0 14px 36px rgba(26, 39, 68, 0.12);
}
[data-theme="light"] .ek-btn-primary,
[data-theme="light"] .ek-btn.ek-btn-primary {
  background: linear-gradient(135deg, #1a2744, #243259);
  color: #c9a84c !important;
  border: none;
  box-shadow: 0 12px 30px rgba(26, 39, 68, 0.22);
}
[data-theme="light"] .ek-btn-primary:hover {
  box-shadow: 0 18px 44px rgba(26, 39, 68, 0.30);
}
[data-theme="light"] .ek-btn-ghost {
  background: transparent;
  border-color: rgba(26, 39, 68, 0.30);
  color: #1a2744;
}
[data-theme="light"] .ek-btn-ghost:hover {
  background: rgba(26, 39, 68, 0.05);
  border-color: rgba(26, 39, 68, 0.48);
}

/* ============================================================
   CARTES VERRE (glass cards)
   ============================================================ */
[data-theme="light"] .ek-card-glass {
  background: #ffffff;
  border-color: rgba(201, 168, 76, 0.18);
  box-shadow: 0 8px 32px rgba(26, 39, 68, 0.08);
}
[data-theme="light"] .ek-card-glass h2 { color: #1a2744; }
[data-theme="light"] .ek-card-glass p  { color: rgba(26, 39, 68, 0.78); }
[data-theme="light"] .ek-card-glass:hover {
  border-color: rgba(201, 168, 76, 0.38);
  box-shadow: 0 20px 60px rgba(201, 168, 76, 0.14);
}

/* Cartes génériques */
[data-theme="light"] .ek-card {
  background: #ffffff;
  border-color: rgba(201, 168, 76, 0.16);
  box-shadow: 0 6px 24px rgba(26, 39, 68, 0.07);
}
[data-theme="light"] .ek-card h3 { color: #1a2744; }
[data-theme="light"] .ek-card p  { color: rgba(26, 39, 68, 0.76); }
[data-theme="light"] .ek-card:hover {
  border-color: rgba(201, 168, 76, 0.32);
  box-shadow: 0 14px 50px rgba(201, 168, 76, 0.12);
}

/* Cartes home */
[data-theme="light"] .ek-home-card {
  background: #ffffff;
  border: 0.5px solid rgba(201, 168, 76, 0.20);
  box-shadow: 0 4px 18px rgba(26, 39, 68, 0.07);
}
[data-theme="light"] .ek-home-card::before {
  background: linear-gradient(45deg,
    rgba(201, 168, 76, 0.55),
    rgba(232, 201, 122, 0.28),
    rgba(201, 168, 76, 0.55));
  background-size: 300% 300%;
}
[data-theme="light"] .ek-home-card:hover {
  border-color: rgba(201, 168, 76, 0.42);
  box-shadow: 0 18px 56px rgba(201, 168, 76, 0.14);
}
[data-theme="light"] .ek-home-card h3 { color: #1a2744; }
[data-theme="light"] .ek-home-card p  { color: rgba(26, 39, 68, 0.72); }
[data-theme="light"] .ek-home-card .ek-card-link { color: #8a6e2e; }
[data-theme="light"] .ek-home-card .ek-card-link:hover {
  color: #1a2744;
  text-shadow: none;
}

/* ============================================================
   FORMULAIRE CONTACT
   ============================================================ */
[data-theme="light"] .ek-contact-card {
  background: #ffffff;
  border-color: rgba(201, 168, 76, 0.20);
  box-shadow: 0 10px 44px rgba(26, 39, 68, 0.09);
}
[data-theme="light"] .ek-contact-card h2 {
  background: linear-gradient(135deg, #1a2744 25%, #8a6e2e 100%);
  -webkit-background-clip: text;
  background-clip: text;
}
[data-theme="light"] .ek-contact-card > p { color: rgba(26, 39, 68, 0.62); }

[data-theme="light"] .ek-contact-card input,
[data-theme="light"] .ek-contact-card select,
[data-theme="light"] .ek-contact-card textarea,
[data-theme="light"] .ek-form input,
[data-theme="light"] .ek-form select,
[data-theme="light"] .ek-form textarea {
  background: #F8F5F0;
  border-color: rgba(26, 39, 68, 0.18);
  color: #1a2744;
}
[data-theme="light"] .ek-contact-card input::placeholder,
[data-theme="light"] .ek-contact-card textarea::placeholder,
[data-theme="light"] .ek-form input::placeholder,
[data-theme="light"] .ek-form textarea::placeholder {
  color: rgba(26, 39, 68, 0.36);
  opacity: 1;
}
[data-theme="light"] .ek-contact-card input:focus,
[data-theme="light"] .ek-contact-card select:focus,
[data-theme="light"] .ek-contact-card textarea:focus,
[data-theme="light"] .ek-form input:focus,
[data-theme="light"] .ek-form select:focus,
[data-theme="light"] .ek-form textarea:focus {
  border-color: rgba(201, 168, 76, 0.55);
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.12);
}
[data-theme="light"] .ek-contact-card button,
[data-theme="light"] .ek-form button {
  background: linear-gradient(135deg, #1a2744, #243259);
  color: #c9a84c;
  box-shadow: 0 12px 30px rgba(26, 39, 68, 0.20);
}
[data-theme="light"] .ek-contact-card button:hover,
[data-theme="light"] .ek-form button:hover {
  box-shadow: 0 18px 44px rgba(26, 39, 68, 0.28);
}

/* Section contact wrapper */
[data-theme="light"] .ek-contact-section {
  background: linear-gradient(180deg, #EEE9E0 0%, #F8F5F0 100%);
  border-top-color: rgba(201, 168, 76, 0.22);
}

/* ============================================================
   SECTIONS & ARRIÈRE-PLANS CORPS
   ============================================================ */
[data-theme="light"] .ek-section.alt {
  background: linear-gradient(180deg, rgba(238,233,224,0.55) 0%, rgba(248,245,240,0.30) 100%);
  border-top-color: rgba(201, 168, 76, 0.12);
  border-bottom-color: rgba(201, 168, 76, 0.12);
}

/* Text blocks */
[data-theme="light"] .ek-text-block {
  background: rgba(255, 255, 255, 0.80);
  border-color: rgba(201, 168, 76, 0.16);
}
[data-theme="light"] .ek-text-block h3 { color: #8a6e2e; }
[data-theme="light"] .ek-text-block p  { color: rgba(26, 39, 68, 0.78); }

/* Bandeau CTA */
[data-theme="light"] .ek-banner {
  background: linear-gradient(135deg, rgba(26,39,68,0.06), #ffffff);
  border-color: rgba(201, 168, 76, 0.24);
  box-shadow: 0 12px 44px rgba(201, 168, 76, 0.10);
}
[data-theme="light"] .ek-banner h3 { color: #1a2744; }
[data-theme="light"] .ek-banner p  { color: rgba(26, 39, 68, 0.70); }

/* CTA bloc */
[data-theme="light"] .ek-cta {
  background: linear-gradient(135deg, #ffffff, #F8F5F0);
  border-color: rgba(201, 168, 76, 0.22);
  box-shadow: 0 14px 50px rgba(26, 39, 68, 0.08);
}
[data-theme="light"] .ek-cta p { color: rgba(26, 39, 68, 0.82); }

/* Programmes bien-être */
[data-theme="light"] .ek-programme {
  background: #ffffff;
  border-color: rgba(201, 168, 76, 0.18);
  box-shadow: 0 8px 32px rgba(26, 39, 68, 0.07);
}
[data-theme="light"] .ek-programme:hover {
  border-color: rgba(201, 168, 76, 0.40);
  box-shadow: 0 20px 60px rgba(201, 168, 76, 0.14);
}
[data-theme="light"] .ek-programme-title   { color: #1a2744 !important; }
[data-theme="light"] .ek-programme-text p  { color: rgba(26, 39, 68, 0.76); }

[data-theme="light"] .ek-details {
  background: rgba(248, 245, 240, 0.80);
  border-color: rgba(201, 168, 76, 0.18);
}
[data-theme="light"] .ek-details-list li { color: rgba(26, 39, 68, 0.80); }

/* Cartes pensions */
[data-theme="light"] .ek-pcard {
  background: #ffffff;
  border-color: rgba(201, 168, 76, 0.18);
  box-shadow: 0 8px 32px rgba(26, 39, 68, 0.07);
}
[data-theme="light"] .ek-pcard:hover {
  border-color: rgba(201, 168, 76, 0.40);
  box-shadow: 0 20px 60px rgba(201, 168, 76, 0.14);
}
[data-theme="light"] .ek-pcard-title  { color: #1a2744 !important; }
[data-theme="light"] .ek-pcard-rule   { background: linear-gradient(90deg, rgba(201,168,76,.55), rgba(201,168,76,.10)); }
[data-theme="light"] .ek-pcard-text   { color: rgba(26, 39, 68, 0.76); }
[data-theme="light"] .ek-price {
  background: rgba(26, 39, 68, 0.06);
  border-color: rgba(26, 39, 68, 0.18);
  color: #1a2744;
}
[data-theme="light"] .ek-price span   { color: #8a6e2e; }

/* Split panels */
[data-theme="light"] .ek-split-panel {
  background: #ffffff;
  border-color: rgba(201, 168, 76, 0.18);
}
[data-theme="light"] .ek-split-panel::before {
  background: linear-gradient(90deg, rgba(201,168,76,.55), rgba(201,168,76,.15), rgba(201,168,76,.05));
}
[data-theme="light"] .ek-split-title  { color: #1a2744; }
[data-theme="light"] .ek-split-text   { color: rgba(26, 39, 68, 0.76); }

/* Accordéon techniques */
[data-theme="light"] .ek-acc-item {
  background: #ffffff;
  border-color: rgba(201, 168, 76, 0.16);
  box-shadow: 0 6px 24px rgba(26, 39, 68, 0.06);
}
[data-theme="light"] .ek-acc-item:hover {
  border-color: rgba(201, 168, 76, 0.32);
}
[data-theme="light"] .ek-acc-title       { color: #1a2744; }
[data-theme="light"] .ek-chevron         { background: rgba(26,39,68,0.06); border-color: rgba(26,39,68,0.18); }
[data-theme="light"] .ek-chevron svg     { stroke: #8a6e2e; }
[data-theme="light"] .ek-acc-item.active .ek-chevron { background: rgba(201,168,76,0.12); border-color: rgba(201,168,76,0.36); }
[data-theme="light"] .ek-acc-panel       { background: rgba(248,245,240,0.60); border-top-color: rgba(201,168,76,0.12); }
[data-theme="light"] .ek-acc-content     { color: rgba(26, 39, 68, 0.80); }
[data-theme="light"] .ek-acc-content li  { color: rgba(26, 39, 68, 0.76); }

/* Lieu banner */
[data-theme="light"] .ek-lieu-banner {
  background: linear-gradient(135deg, rgba(201,168,76,0.08), #ffffff);
  border-color: rgba(201, 168, 76, 0.24);
}
[data-theme="light"] .ek-lieu-banner .ek-lieu-label { background: rgba(26,39,68,0.06); border-color: rgba(26,39,68,0.18); color: #1a2744; }
[data-theme="light"] .ek-lieu-banner .ek-lieu-text  { color: #1a2744; }

/* Hero textbox pensions */
[data-theme="light"] .ek-hero-textbox {
  background: rgba(255, 255, 255, 0.95);
  border-color: rgba(201, 168, 76, 0.22);
  box-shadow: 0 20px 60px rgba(26, 39, 68, 0.12);
}
[data-theme="light"] .ek-hero-textbox h1 {
  background: linear-gradient(135deg, #1a2744, #8a6e2e);
  -webkit-background-clip: text;
  background-clip: text;
  text-shadow: none;
}
[data-theme="light"] .ek-hero-textbox p { color: rgba(26, 39, 68, 0.76); }

/* Badges info */
[data-theme="light"] .ek-badge {
  background: rgba(26, 39, 68, 0.05);
  border-color: rgba(26, 39, 68, 0.16);
  color: #1a2744;
}
[data-theme="light"] .ek-badge strong { color: #1a2744; }

/* Prix block */
[data-theme="light"] .ek-price-value {
  background: linear-gradient(135deg, #1a2744, #8a6e2e);
  -webkit-background-clip: text;
  background-clip: text;
}
[data-theme="light"] .ek-price-label { color: rgba(26, 39, 68, 0.72); }
[data-theme="light"] .ek-price-note  { color: rgba(26, 39, 68, 0.58); }

/* Date chips */
[data-theme="light"] .ek-date-chip {
  background: rgba(26, 39, 68, 0.05);
  border-color: rgba(26, 39, 68, 0.16);
  color: rgba(26, 39, 68, 0.80);
}
[data-theme="light"] .ek-date-chip em { color: #8a6e2e; }

/* Note / quote */
[data-theme="light"] .ek-note  { color: rgba(26, 39, 68, 0.76); }
[data-theme="light"] .ek-quote { color: rgba(26, 39, 68, 0.80); }

/* Listes */
[data-theme="light"] .ek-list         { color: rgba(26, 39, 68, 0.80); }

/* Typing card */
[data-theme="light"] .ek-typing-card {
  background: #ffffff;
  border-color: rgba(201, 168, 76, 0.20);
}
[data-theme="light"] .ek-typing { color: rgba(26, 39, 68, 0.82); }
[data-theme="light"] .ek-caret  { background: linear-gradient(180deg, #c9a84c, #8a6e2e); }

/* Intro card */
[data-theme="light"] .ek-intro-card {
  background: rgba(255, 255, 255, 0.88);
  border-color: rgba(201, 168, 76, 0.20);
}
[data-theme="light"] .ek-intro-title {
  color: #1a2744 !important;
  -webkit-text-fill-color: #1a2744 !important;
  text-shadow: none;
}
[data-theme="light"] .ek-intro-text { color: rgba(26, 39, 68, 0.78); }

/* Wide cards */
[data-theme="light"] .ek-wide-card {
  background: #ffffff;
  border-color: rgba(201, 168, 76, 0.16);
}
[data-theme="light"] .ek-wide-block {
  background: rgba(248, 245, 240, 0.70);
  border-color: rgba(201, 168, 76, 0.12);
}
[data-theme="light"] .ek-wide-block h4 { color: #1a2744; }
[data-theme="light"] .ek-wide-block p,
[data-theme="light"] .ek-wide-block li  { color: rgba(26, 39, 68, 0.76); }

/* Info cards */
[data-theme="light"] .ek-info-card {
  background: #ffffff;
  border-color: rgba(201, 168, 76, 0.16);
}
[data-theme="light"] .ek-info-card:hover {
  border-color: rgba(201, 168, 76, 0.32);
}

/* ============================================================
   AVIS CLIENTS (index)
   ============================================================ */
[data-theme="light"] .ek-reviews {
  background: linear-gradient(180deg, #EEE9E0 0%, #E5DDD0 100%);
  border-top-color: rgba(201, 168, 76, 0.28);
}
[data-theme="light"] .ek-reviews h2 {
  background: linear-gradient(135deg, #1a2744 25%, #8a6e2e 100%);
  -webkit-background-clip: text;
  background-clip: text;
  text-shadow: none;
}
[data-theme="light"] .ek-review-card {
  background: rgba(255, 252, 248, 0.92);
  border-color: rgba(201, 168, 76, 0.20);
  box-shadow: 0 6px 28px rgba(26, 39, 68, 0.07);
  backdrop-filter: none;
}
[data-theme="light"] .ek-review-card:hover {
  background: #ffffff;
  border-color: rgba(201, 168, 76, 0.36);
  box-shadow: 0 16px 50px rgba(201, 168, 76, 0.14);
}
[data-theme="light"] .ek-review-card p        { color: rgba(26, 39, 68, 0.78); }
[data-theme="light"] .ek-review-author strong { color: #8a6e2e; }

/* ============================================================
   ÉVÉNEMENTS (index)
   ============================================================ */
[data-theme="light"] .ek-bottom-section {
  background: linear-gradient(180deg, #F8F5F0 0%, #EEE9E0 100%);
}
[data-theme="light"] .ek-events-container h2 {
  background: linear-gradient(135deg, #1a2744 25%, #8a6e2e 100%);
  -webkit-background-clip: text;
  background-clip: text;
  text-shadow: none;
}
[data-theme="light"] .ek-event-item {
  background: #ffffff;
  border-color: rgba(201, 168, 76, 0.18);
  box-shadow: 0 4px 18px rgba(26, 39, 68, 0.06);
}
[data-theme="light"] .ek-event-item:hover {
  border-color: rgba(201, 168, 76, 0.36);
  box-shadow: 0 14px 46px rgba(201, 168, 76, 0.14);
}
[data-theme="light"] .ek-event-date {
  background: linear-gradient(135deg, #1a2744, #243259);
  color: #c9a84c;
  box-shadow: 0 8px 22px rgba(26, 39, 68, 0.22);
}
[data-theme="light"] .ek-event-content h3 { color: #1a2744; }
[data-theme="light"] .ek-event-content p  { color: rgba(26, 39, 68, 0.62); }

/* Présentation section */
[data-theme="light"] .ek-presentation {
  background: linear-gradient(180deg, #F8F5F0 0%, #EEE9E0 100%);
}
[data-theme="light"] .ek-presentation h2 {
  background: linear-gradient(135deg, #1a2744 30%, #8a6e2e 100%);
  -webkit-background-clip: text;
  background-clip: text;
  text-shadow: none;
}
[data-theme="light"] .ek-presentation p        { color: rgba(26, 39, 68, 0.72); }
[data-theme="light"] .ek-presentation strong   { color: #1a2744; }

/* À propos */
[data-theme="light"] .ek-about {
  background: linear-gradient(180deg, #EEE9E0 0%, #F8F5F0 100%);
}
[data-theme="light"] .ek-about-content h2 {
  background: linear-gradient(135deg, #1a2744 25%, #8a6e2e 100%);
  -webkit-background-clip: text;
  background-clip: text;
  text-shadow: none;
}
[data-theme="light"] .ek-about-content p  { color: rgba(26, 39, 68, 0.74); }
[data-theme="light"] .ek-about-image {
  border-color: rgba(201, 168, 76, 0.26);
  box-shadow: 0 16px 55px rgba(26, 39, 68, 0.10);
}

/* Badges certif */
[data-theme="light"] .ek-badge-card {
  background: #ffffff;
  border-color: rgba(201, 168, 76, 0.20);
  box-shadow: 0 4px 20px rgba(26, 39, 68, 0.07);
}
[data-theme="light"] .ek-badge-card:hover {
  border-color: rgba(201, 168, 76, 0.38);
  box-shadow: 0 14px 48px rgba(201, 168, 76, 0.14);
}
[data-theme="light"] .ek-badge-title { color: #1a2744; }