/* ====================================
   ELYNORA - STYLE V3 COMPACT
   ==================================== */

:root {
  --bg-color: #FAF6F2;
  --bg-dark: #1a1a1a;
  --primary-color: #c9a4b2;
  --primary-dark: #a67c8a;
  --accent-color: #5d2a42;
  --accent-light: #8b4d6b;
  --text-color: #3d3d3d;
  --text-light: #6b6b6b;
  --card: #ffffff;
  --card-soft: #FCFBF9;
  --gold: #d4a574;
  --success: #4caf50;
  --shadow-soft: 0 10px 40px rgba(0,0,0,0.08);
  --shadow-hover: 0 20px 60px rgba(0,0,0,0.15);
  --transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 30px;
  --font-display: 'Cormorant Garamond', serif;
  --font-body: 'Outfit', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  height: 100vh;
  overflow: hidden;
  font-family: var(--font-body);
  background: var(--bg-color);
  color: var(--text-color);
}

a { color: inherit; text-decoration: none; }
.sr-only { position: absolute; left: -9999px; }
.skip-link { position: absolute; left: -999px; }

/* ====================================
   HEADER & NAV
   ==================================== */
.header {
  position: fixed;
  top: 0; left: 0; width: 100%;
  z-index: 1000;
  display: flex;
  justify-content: center;
  height: 0;
  pointer-events: none;
}

.video-progress {
  cursor: pointer;
}

.video-main-wrapper video {
  cursor: pointer;
}

.nav-capsule {
  pointer-events: auto;
  margin-top: 16px;
  width: min(1100px, 94%);
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 28px;
  border-radius: 999px;
  background: rgba(250, 246, 242, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(201, 164, 178, 0.2);
  box-shadow: 0 4px 24px rgba(93,42,66,0.08);
}

.logo-link { 
  display: flex; 
  align-items: center; 
  justify-content: center;
  height: 100%;
  padding: 5px 0;
}
#site-logo { 
  height: 110px; 
  width: auto; 
  transition: var(--transition);
  object-fit: contain;
}
.nav-burger { display: none; }

.nav-links { display: flex; align-items: center; gap: 8px; }
.nav-links a {
  color: var(--accent-color);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 12px 18px;
  border-radius: 999px;
  transition: var(--transition);

}
.nav-links a:hover { 
  background: rgba(201, 164, 178, 0.15);
  color: var(--accent-color);
}
.nav-links a.active { 
  background: rgba(201, 164, 178, 0.2);
  color: var(--accent-color);
}
.btn-nav {
  background: var(--primary-color) !important;
  color: #fff !important;
  box-shadow: 0 4px 20px rgba(201, 164, 178, 0.4);
}
.btn-nav:hover {
  background: var(--primary-dark) !important;
}

/* ====================================
   PANIER WIDGET
   ==================================== */
.cart-widget { position: fixed; top: 25px; right: 25px; z-index: 1100; }

.cart-toggle {
  width: 55px; height: 55px;
  border-radius: 50%;
  background: var(--accent-color);
  color: #fff;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  box-shadow: 0 8px 30px rgba(93, 42, 66, 0.4);
  transition: var(--transition);
  position: relative;
}
.cart-toggle:hover { transform: scale(1.1); }

.cart-count {
  position: absolute;
  top: -5px; right: -5px;
  background: var(--gold);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  width: 22px; height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cart-dropdown {
  position: absolute;
  top: 70px; right: 0;
  width: 350px;
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-hover);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: var(--transition);
}
.cart-dropdown.open { opacity: 1; visibility: visible; transform: translateY(0); }

.cart-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}
.cart-header h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  gap: 8px;
}
.cart-header h3 i { color: var(--success); }
.cart-close { background: none; border: none; cursor: pointer; font-size: 1.2rem; color: var(--text-light); }

.cart-items { max-height: 300px; overflow-y: auto; padding: 15px; }
.cart-empty { text-align: center; color: var(--text-light); padding: 30px; }
.cart-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px;
  background: var(--card-soft);
  border-radius: var(--radius-sm);
  margin-bottom: 10px;
}
.cart-item-info h4 { font-size: 0.9rem; margin-bottom: 2px; }
.cart-item-info span { font-size: 0.75rem; color: var(--text-light); }
.cart-item-price { font-weight: 700; color: var(--accent-color); }
.cart-item-remove { background: none; border: none; cursor: pointer; color: #e74c3c; margin-left: 10px; }

.cart-footer { padding: 20px; border-top: 1px solid rgba(0,0,0,0.05); }
.cart-total { display: flex; justify-content: space-between; font-weight: 700; margin-bottom: 15px; }

.btn-checkout {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 14px;
  background: var(--accent-color);
  color: #fff;
  border-radius: 999px;
  font-weight: 600;
  transition: var(--transition);
}
.btn-checkout:hover { background: var(--accent-light); }
.cart-secure { text-align: center; font-size: 0.75rem; color: var(--success); margin-top: 10px; }

/* ====================================
   TOAST
   ==================================== */
.toast {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: var(--accent-color);
  color: #fff;
  padding: 15px 30px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: var(--shadow-hover);
  z-index: 9999;
  opacity: 0;
  transition: var(--transition);
}
.toast.show { transform: translateX(-50%) translateY(0); opacity: 1; }

/* ====================================
   PAGES
   ==================================== */
.app { padding-top: 0; }
.page { min-height: 100vh; display: none; padding: 0; overflow-y: hidden; }
.page.active { display: block; }
.page:not(.page-rockstar):not(.page-accueil) { padding-top: 100px ; background: var(--bg-color); height: 100vh; overflow-y: auto; scroll-padding-top: 120px; }
.page-accueil { padding-top: 0 !important; background: var(--bg-color); height: 100vh; overflow-y: auto; }
.page[data-page="accompagnements"] { padding-top: 0 !important; }
.page[data-page="ateliers"] { padding-top: 100px !important; }

.page-inner { max-width: 1200px; margin: 0 auto; padding: 30px 48px 60px; }
.page-inner.about-page { max-width: 100% !important; width: 100% !important; padding: 0 0 80px !important; margin: 0 !important; }
.page-head { max-width: 800px; margin-bottom: 50px; }

.subtitle {
  color: var(--primary-dark);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 4px;
  font-size: 0.8rem;
  display: inline-block;
  margin-bottom: 15px;
}

h1 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin: 15px 0;
  line-height: 1.15;
}
h2 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.8rem;
  margin-bottom: 15px;
}
h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.4rem;
}

.lead { font-size: 1.15rem; opacity: 0.85; max-width: 65ch; }
.muted { opacity: 0.7; }

/* ====================================
   BOUTONS
   ==================================== */
.btn-main, .btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
  cursor: pointer;
  border: none;
}
.btn-main {
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  color: #fff;
  box-shadow: 0 8px 30px rgba(201, 164, 178, 0.4);
}
.btn-main:hover { transform: translateY(-3px); box-shadow: 0 12px 40px rgba(201, 164, 178, 0.5); }
.btn-ghost { background: transparent; border: 2px solid var(--primary-color); color: var(--primary-dark); }
.btn-ghost:hover { background: var(--primary-color); color: #fff; }
.btn-ghost-white {
  border: 2px solid rgba(255,255,255,0.5);
  background: rgba(255,255,255,0.1);
  color: #fff;
  padding: 16px 32px;
  border-radius: 999px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: var(--transition);
}
.btn-ghost-white:hover { background: rgba(255,255,255,0.25); }
.btn-small { padding: 12px 24px; font-size: 0.85rem; }

.btn-discover {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--accent-color);
  font-weight: 600;
  margin-top: 30px;
  transition: var(--transition);
}
.btn-discover:hover { gap: 15px; }

/* ====================================
   ACCUEIL ROCKSTAR
   ==================================== */
.page-rockstar { padding: 0 !important; height: 100vh; overflow: hidden; }
/* rs-container supprimé */

.rs-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.rs-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 1; }
.rs-bg-overlay { position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(0,0,0,0.4), rgba(0,0,0,0.2)); z-index: 2; }
.rs-bg-overlay.dark { background: rgba(0,0,0,0.6); }

.rs-content { position: relative; z-index: 10; text-align: center; color: #fff; max-width: 800px; padding: 0 20px; }
.rs-content h1 { color: #fff; text-shadow: 0 4px 30px rgba(0,0,0,0.3); font-size: clamp(3rem, 7vw, 5rem); }
.hero-desc { font-size: 1.2rem; opacity: 0.9; margin: 20px 0 30px; max-width: 600px; margin-left: auto; margin-right: auto; }
.hero-cta { display: flex; gap: 15px; justify-content: center; flex-wrap: wrap; }

.bg-light { background: var(--bg-color); }
.bg-dark { background: var(--bg-dark); }

/* ====================================
   SPLIT LAYOUT COMPACT (Photo/Texte alternés)
   ==================================== */
.split-compact {
  display: flex;
  align-items: center;
  gap: 60px;
  width: 90%;
  max-width: 1100px;
  padding: 80px 20px;
  position: relative;
}

.split-compact.reverse {
  flex-direction: row-reverse;
}

.split-img {
  flex: 0 0 50%;
  max-width: 550px;
  border-radius: var(--radius-lg);
  overflow: visible;
  box-shadow: var(--shadow-hover);
  position: relative;
}

.split-img img {
  width: 100%;
  height: 450px;
  object-fit: cover;
  transition: var(--transition);
  border-radius: var(--radius-lg);
}

/* Style numéros sur les images de l'accueil */
.split-number {
  position: absolute;
  top: 20px;
  left: 20px;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--accent-color), var(--accent-light));
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  box-shadow: 0 8px 25px rgba(93, 42, 66, 0.4);
  z-index: 10;
  border: 3px solid #fff;
}

/* Bordure accent sur les images de l'accueil */
.split-img::before {
  content: '';
  position: absolute;
  top: 15px;
  left: 15px;
  right: -15px;
  bottom: -15px;
  border: 3px solid var(--primary-color);
  border-radius: var(--radius-lg);
  z-index: -1;
  opacity: 0.5;
  transition: var(--transition);
}

.split-compact:hover .split-img::before {
  opacity: 1;
  border-color: var(--accent-color);
}

.split-img:hover img {
  transform: scale(1.05);
}

.split-txt {
  flex: 1;
}

.split-txt .subtitle {
  margin-bottom: 10px;
}

.split-txt h2 {
  font-family: var(--font-display);
  font-size: 2.2rem;
  color: var(--accent-color);
  margin-bottom: 15px;
}

.split-txt p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-color);
  margin-bottom: 20px;
}

/* ====================================
   GALERIE COMPACTE (3 photos)
   ==================================== */
.compact-gallery {
  display: flex;
  gap: 30px;
  width: 90%;
  max-width: 1200px;
  justify-content: center;
  flex-wrap: wrap;
  padding: 80px 0 40px;
}

.compact-card {
  flex: 1;
  min-width: 280px;
  max-width: 350px;
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: var(--transition);
}
.compact-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-hover); }

.compact-image {
  height: 200px;
  overflow: hidden;
}
.compact-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}
.compact-card:hover .compact-image img { transform: scale(1.08); }

.compact-text {
  padding: 25px;
  text-align: center;
}
.compact-text .subtitle { margin-bottom: 8px; }
.compact-text h3 { margin-bottom: 10px; color: var(--accent-color); }
.compact-text p { font-size: 0.95rem; color: var(--text-light); line-height: 1.6; }

/* ====================================
   VIDÉO
   ==================================== */
.video-section { width: 90%; max-width: 1000px; z-index: 10; }
.video-header { text-align: center; margin-bottom: 30px; }
.video-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.1);
  color: #fff;
  padding: 10px 20px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 15px;
}
.video-header h2 { font-family: var(--font-display); font-size: clamp(1.8rem, 4vw, 2.5rem); color: #fff; }

.video-showcase { display: flex; gap: 20px; align-items: stretch; }
.video-main-wrapper {
  flex: 1;
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #000;
  aspect-ratio: 16/9;
}
.video-main-wrapper video { width: 100%; height: 100%; object-fit: cover; }

.video-controls { position: absolute; bottom: 15px; left: 15px; right: 15px; display: flex; align-items: center; gap: 12px; }
.video-sound-btn {
  width: 45px; height: 45px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.3);
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.video-sound-btn:hover { background: rgba(255,255,255,0.35); }
.video-progress { flex: 1; height: 5px; background: rgba(255,255,255,0.2); border-radius: 999px; overflow: hidden; }
.video-progress-bar { height: 100%; width: 0%; background: var(--primary-color); border-radius: 999px; }

.video-info { position: absolute; top: 20px; left: 20px; color: #fff; }
.video-number { font-family: var(--font-display); font-size: 2.5rem; font-weight: 300; opacity: 0.5; }
.video-title { display: block; font-weight: 600; margin-top: 5px; }

.video-thumbnails { display: flex; flex-direction: column; gap: 10px; }
.thumb {
  width: 60px; height: 60px;
  border-radius: var(--radius-md);
  background: rgba(255,255,255,0.1);
  border: 2px solid transparent;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  transition: var(--transition);
}
.thumb span { font-weight: 700; font-size: 0.85rem; }
.thumb i { font-size: 0.65rem; margin-top: 3px; }
.thumb:hover, .thumb.active { background: rgba(255,255,255,0.2); border-color: var(--primary-color); color: #fff; }
.thumb.active { background: var(--primary-color); }

/* ====================================
   CITATIONS
   ==================================== */
.quote-section {
  position: relative;
  z-index: 10;
  text-align: center;
  color: #fff;
  max-width: 800px;
  padding: 40px;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(15px);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255,255,255,0.15);
}
.quote-icon { font-size: 2.5rem; opacity: 0.3; margin-bottom: 15px; }

.slider-container { overflow: hidden; padding: 20px 0; }
.slider-track { display: flex; animation: scrollInfinite 35s linear infinite; width: max-content; }
.slide-zen {
  width: 350px;
  margin: 0 40px;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.2rem;
}
.slide-zen span { color: var(--primary-color); font-style: normal; font-weight: 600; }
@keyframes scrollInfinite { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ====================================
   ACCOMPAGNEMENTS — SLIDER
   ==================================== */
.acc2-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: 100vh;
  overflow: hidden;
}

/* PHOTO FIXE */
.acc2-photo {
  position: relative;
  overflow: hidden;
}
.acc2-photo img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center top;
  display: block;
}
.acc2-photo-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(26,15,20,0.65) 0%, transparent 50%);
  display: flex; flex-direction: column;
  justify-content: flex-end; align-items: flex-start;
  padding: 36px 40px;
}
.acc2-photo-label {
  font-family: Outfit, sans-serif;
  font-size: 0.65rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 6px;
  color: rgba(255,255,255,0.5);
  display: block; margin-bottom: 16px;
}
.acc2-progress-dots {
  display: flex; gap: 8px;
}
.acc2-dot {
  width: 28px; height: 2px;
  background: rgba(255,255,255,0.25);
  border: none; cursor: pointer; padding: 0;
  border-radius: 2px;
  transition: background 0.3s ease, width 0.3s ease;
}
.acc2-dot.active {
  background: #fff; width: 48px;
}

/* SLIDER DROIT */
.acc2-slider-wrap {
  display: flex; flex-direction: column;
  background: #FAF8F5;
  position: relative; overflow: hidden;
}
.acc2-slider {
  flex: 1; position: relative; overflow: hidden;
}
.acc2-slide {
  position: absolute; inset: 0;
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.55s cubic-bezier(0.4,0,0.2,1),
              transform 0.55s cubic-bezier(0.4,0,0.2,1);
  pointer-events: none;
  overflow: hidden;
}
.acc2-slide.active {
  opacity: 1; transform: translateX(0);
  pointer-events: all;
}
.acc2-slide.leaving {
  opacity: 0; transform: translateX(-40px);
  pointer-events: none;
}
.acc2-slide-inner {
  padding: 28px 7%;
  height: 100%;
  box-sizing: border-box;
  display: flex; flex-direction: column; justify-content: center;
}
.acc2-slide-closing {
  background: #FAF8F5;
  justify-content: center;
}

/* TYPO */
.acc2-eyebrow {
  font-family: Outfit, sans-serif;
  font-size: 0.62rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 5px;
  color: #c9a4b2; display: block; margin-bottom: 18px;
}
.acc2-h1 {
  font-family: Cormorant Garamond, serif;
  font-size: clamp(1.7rem, 2.4vw, 2.4rem); font-weight: 400;
  color: #1a0f14; line-height: 1.2; margin-bottom: 20px;
}
.acc2-h2 {
  font-family: Cormorant Garamond, serif;
  font-size: clamp(1.5rem, 2.1vw, 2rem); font-weight: 400;
  color: #1a0f14; line-height: 1.2; margin-bottom: 24px;
}
.acc2-h2-xl {
  font-family: Cormorant Garamond, serif;
  font-size: clamp(1.8rem, 2.8vw, 2.8rem); font-weight: 300;
  color: #1a0f14; line-height: 1.15; margin-bottom: 24px;
}
.acc2-body {
  font-family: Outfit, sans-serif; font-size: 0.95rem;
  line-height: 1.85; color: #5a4852; margin-bottom: 14px;
}
.acc2-italic {
  font-family: Cormorant Garamond, serif; font-size: 1.05rem;
  font-style: italic; color: #5d2a42; line-height: 1.65;
  border-top: 1px solid rgba(201,164,178,0.25);
  padding-top: 18px; margin-top: 18px;
}
.acc2-location {
  font-family: Outfit, sans-serif; font-size: 0.82rem;
  color: #a67c8a; display: flex; align-items: center;
  gap: 7px; margin-bottom: 28px;
}
.acc2-location i { color: #c9a4b2; font-size: 0.74rem; }

/* TRIO */
.acc2-trio { margin: 4px 0 20px; }
.acc2-trio-item {
  padding: 14px 0;
  border-bottom: 1px solid rgba(201,164,178,0.18);
  display: grid; grid-template-columns: 180px 1fr; gap: 16px; align-items: start;
}
.acc2-trio-item:last-child { border-bottom: none; }
.acc2-trio-item span {
  font-family: Cormorant Garamond, serif; font-size: 1rem;
  font-weight: 500; color: #2a1520; padding-top: 2px;
}
.acc2-trio-item p {
  font-family: Outfit, sans-serif; font-size: 0.88rem;
  line-height: 1.75; color: #6a5660; margin: 0;
}

/* TIMELINE */
.acc2-timeline { margin: 8px 0; }
.acc2-tl-item {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 14px 0;
  border-bottom: 1px solid rgba(201,164,178,0.15);
}
.acc2-tl-item:last-child { border-bottom: none; }
.acc2-tl-n {
  width: 26px; height: 26px; flex-shrink: 0;
  border: 1px solid rgba(201,164,178,0.4); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: Cormorant Garamond, serif; font-size: 0.85rem;
  color: #c9a4b2; margin-top: 2px;
}
.acc2-tl-item h4 {
  font-family: Cormorant Garamond, serif; font-size: 1rem;
  font-weight: 500; color: #2a1520; margin-bottom: 4px;
  display: flex; align-items: baseline; gap: 8px; flex-wrap: wrap;
}
.acc2-tl-item h4 em {
  font-family: Outfit, sans-serif; font-size: 0.7rem;
  font-style: normal; color: #c9a4b2; letter-spacing: 0.5px;
}
.acc2-tl-item p {
  font-family: Outfit, sans-serif; font-size: 0.86rem;
  line-height: 1.75; color: #6a5660; margin: 0;
}

/* OFFRES */
.acc2-offres { margin: 8px 0; }
.acc2-offre {
  padding: 16px 0;
  border-bottom: 1px solid rgba(201,164,178,0.18);
}
.acc2-offre:last-child { border-bottom: none; }
.acc2-offre-head { margin-bottom: 4px; }
.acc2-offre-tag {
  font-family: Outfit, sans-serif; font-size: 0.62rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 4px; color: #c9a4b2;
}
.acc2-offre-star .acc2-offre-tag { color: #5d2a42; }
.acc2-offre h3 {
  font-family: Cormorant Garamond, serif; font-size: 1.2rem;
  font-weight: 500; color: #1a0f14; margin-bottom: 4px;
}
.acc2-offre p {
  font-family: Outfit, sans-serif; font-size: 0.88rem;
  line-height: 1.75; color: #6a5660; margin-bottom: 8px;
}
.acc2-lien {
  font-family: Outfit, sans-serif; font-size: 0.78rem; font-weight: 600;
  color: #5d2a42; text-decoration: none;
  display: inline-flex; align-items: center; gap: 7px;
  border-bottom: 1px solid rgba(93,42,66,0.25); padding-bottom: 1px;
  transition: gap 0.2s ease;
}
.acc2-lien:hover { gap: 12px; }

/* SLIDE CLOSING */
.acc2-slide-closing .acc2-eyebrow { color: #c9a4b2; }
.acc2-slide-closing .acc2-body { color: #5a4852; margin-bottom: 32px; }

/* NAV */
.acc2-nav {
  display: flex; align-items: center; gap: 20px;
  padding: 20px 7%;
  border-top: 1px solid rgba(201,164,178,0.15);
  background: #FAF8F5;
}
.acc2-nav-btn {
  width: 40px; height: 40px; border-radius: 50%;
  border: 1.5px solid rgba(201,164,178,0.4);
  background: transparent; cursor: pointer;
  color: #5d2a42; font-size: 0.8rem;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.25s ease;
}
.acc2-nav-btn:hover { background: #5d2a42; color: #fff; border-color: #5d2a42; }
.acc2-nav-counter {
  font-family: Cormorant Garamond, serif; font-size: 1rem;
  color: #a0828c; letter-spacing: 2px;
}
#accCurrent { color: #5d2a42; font-weight: 500; }

@media (max-width: 900px) {
  .acc2-wrap { grid-template-columns: 1fr; height: auto; }
  .acc2-photo { height: 50vw; min-height: 200px; }
  .acc2-slider-wrap { height: 70vh; }
  .acc2-slide-inner { padding: 40px 6% 28px; }
  .acc2-trio-item { grid-template-columns: 1fr; gap: 4px; }
}

/* ====================================
   A PROPOS — SPLITS SANS BLOCS
   ==================================== */
.page-head { margin-bottom: 52px; }
.page-head h1 {
  font-family: Cormorant Garamond, serif;
  font-size: clamp(1.9rem, 3vw, 2.8rem);
  font-weight: 400;
  color: #1a0f14;
  line-height: 1.2;
  margin-top: 10px;
}

.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  margin-bottom: 56px;
}
.about-split.reverse .about-image { order: 2; }
.about-split.reverse .about-text  { order: 1; }

.about-image {
  overflow: hidden;
  min-height: 420px;
  border-radius: 20px;
}
.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.8s ease;
}
.about-split:hover .about-image img { transform: scale(1.03); }

.about-text {
  padding: 52px 6%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-num {
  font-family: Outfit, sans-serif;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 5px;
  color: #c9a4b2;
  text-transform: uppercase;
  display: block;
  margin-bottom: 14px;
}
.about-text h2 {
  font-family: Cormorant Garamond, serif;
  font-size: 1.7rem;
  font-weight: 400;
  color: #1a0f14;
  line-height: 1.25;
  margin-bottom: 20px;
}
.about-text p {
  font-family: Outfit, sans-serif;
  font-size: 0.95rem;
  line-height: 1.88;
  color: #5a4852;
  margin-bottom: 12px;
}
.about-text p:last-of-type { margin-bottom: 0; }

.about-list {
  list-style: none;
  padding: 0;
  margin: 4px 0 16px;
}
.about-list li {
  font-family: Outfit, sans-serif;
  font-size: 0.93rem;
  line-height: 1.8;
  color: #5a4852;
  padding: 7px 0 7px 18px;
  position: relative;
  border-bottom: 1px solid rgba(201,164,178,0.15);
}
.about-list li:last-child { border-bottom: none; }
.about-list li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: #c9a4b2;
}

.about-quote {
  font-family: Cormorant Garamond, serif !important;
  font-size: 1.1rem !important;
  font-style: italic;
  color: #5d2a42 !important;
  line-height: 1.65 !important;
  margin-top: 20px !important;
  padding-top: 20px !important;
  border-top: 1px solid rgba(201,164,178,0.28);
}

.about-cta-inline {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

@media (max-width: 900px) {
  .about-split { grid-template-columns: 1fr; margin-bottom: 36px; }
  .about-split.reverse .about-image,
  .about-split.reverse .about-text { order: unset; }
  .about-image { min-height: 260px; }
  .about-text { padding: 36px 6%; }
}

/* ====================================
   ACCOMPAGNEMENTS
   ==================================== */
.acc-page { width: 100%; background: #FAF8F5; }

/* HERO */
.acc-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 92vh;
  max-height: 780px;
}
.acc-hero-photo { overflow: hidden; }
.acc-hero-photo img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center top;
  display: block;
  border-radius: 0 0 0 0;
}
.acc-hero-text {
  padding: 80px 7%;
  display: flex; flex-direction: column; justify-content: center;
  background: #FAF8F5;
}
.acc-eyebrow {
  font-family: Outfit, sans-serif;
  font-size: 0.65rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 6px;
  color: #c9a4b2; display: block; margin-bottom: 20px;
}
.acc-h1 {
  font-family: Cormorant Garamond, serif;
  font-size: clamp(1.8rem, 2.8vw, 2.6rem);
  font-weight: 400; color: #1a0f14; line-height: 1.2;
  margin-bottom: 18px;
}
.acc-hero-sub {
  font-family: Outfit, sans-serif;
  font-size: 0.97rem; line-height: 1.8; color: #6a5660;
  margin-bottom: 16px;
}
.acc-location {
  font-family: Outfit, sans-serif;
  font-size: 0.82rem; color: #a67c8a;
  display: flex; align-items: center; gap: 7px;
  margin-bottom: 28px;
}
.acc-location i { color: #c9a4b2; font-size: 0.74rem; }

/* SECTIONS */
.acc-section { padding: 72px 0; }
.acc-section-light { background: #FAF8F5; }
.acc-section-dark  { background: #251720; }
.acc-section-inner {
  max-width: 860px; margin: 0 auto; padding: 0 5%;
}

.acc-num {
  font-family: Outfit, sans-serif;
  font-size: 0.62rem; font-weight: 700;
  letter-spacing: 5px; text-transform: uppercase;
  color: #c9a4b2; display: block; margin-bottom: 14px;
}
.acc-num-light { color: rgba(201,164,178,0.5); }

.acc-h2 {
  font-family: Cormorant Garamond, serif;
  font-size: clamp(1.7rem, 2.6vw, 2.2rem);
  font-weight: 400; color: #1a0f14; line-height: 1.2;
  margin-bottom: 12px;
}
.acc-h2-light { color: #f5e8ef; }

.acc-lead {
  font-family: Outfit, sans-serif;
  font-size: 1rem; line-height: 1.8; color: #5a4852;
  margin-bottom: 36px;
}
.acc-lead-light { color: rgba(245,232,239,0.7); }

/* PILLIERS 3 colonnes */
.acc-pillars {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 28px; margin-bottom: 36px;
}
.acc-pillar {
  padding: 28px 24px;
  background: #fff;
  border-radius: 16px;
  border: 1px solid rgba(201,164,178,0.2);
}
.acc-pillar-icon {
  width: 40px; height: 40px;
  background: rgba(201,164,178,0.12);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: #c9a4b2; font-size: 1rem;
  margin-bottom: 14px;
}
.acc-pillar h3 {
  font-family: Cormorant Garamond, serif;
  font-size: 1.1rem; font-weight: 500; color: #2a1520;
  margin-bottom: 8px;
}
.acc-pillar p {
  font-family: Outfit, sans-serif;
  font-size: 0.88rem; line-height: 1.75; color: #6a5660;
}

/* INSIGHTS */
.acc-insight {
  display: flex; align-items: flex-start; gap: 14px;
  background: rgba(201,164,178,0.08);
  border-left: 3px solid #c9a4b2;
  padding: 16px 20px; border-radius: 0 10px 10px 0;
  margin-bottom: 14px;
}
.acc-insight i { color: #c9a4b2; font-size: 0.9rem; margin-top: 3px; flex-shrink: 0; }
.acc-insight p {
  font-family: Outfit, sans-serif;
  font-size: 0.9rem; line-height: 1.75; color: #5a4852; margin: 0;
}
.acc-insight-light { background: rgba(255,255,255,0.05); border-color: rgba(201,164,178,0.4); }
.acc-insight-light p { color: rgba(245,232,239,0.68); }
.acc-insight-light i { color: rgba(201,164,178,0.7); }

.acc-bq {
  font-family: Cormorant Garamond, serif;
  font-size: 1.25rem; font-style: italic; color: #5d2a42;
  text-align: center; line-height: 1.6;
  padding: 28px 0;
  border-top: 1px solid rgba(201,164,178,0.25);
  border-bottom: 1px solid rgba(201,164,178,0.25);
  margin-top: 28px;
}

/* FORMATS */
.acc-formats {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 16px; margin-bottom: 40px;
}
.acc-format {
  padding: 18px 20px;
  border: 1px solid rgba(201,164,178,0.2);
  border-radius: 12px;
}
.acc-format-tag {
  display: inline-block;
  font-family: Outfit, sans-serif;
  font-size: 0.72rem; font-weight: 700;
  color: #c9a4b2; text-transform: uppercase; letter-spacing: 3px;
  margin-bottom: 8px;
}
.acc-format p {
  font-family: Outfit, sans-serif;
  font-size: 0.88rem; line-height: 1.7;
  color: rgba(245,232,239,0.65); margin: 0;
}

/* ÉTAPES */
.acc-steps {
  display: flex; flex-direction: column; gap: 0;
  margin-bottom: 32px;
  border-left: 2px solid rgba(201,164,178,0.25);
  padding-left: 24px;
  margin-left: 16px;
}
.acc-step {
  display: flex; gap: 20px; align-items: flex-start;
  padding: 20px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.acc-step:last-child { border-bottom: none; }
.acc-step-num {
  width: 32px; height: 32px; flex-shrink: 0;
  background: rgba(201,164,178,0.15);
  border: 1px solid rgba(201,164,178,0.3);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: Cormorant Garamond, serif;
  font-size: 0.9rem; color: #c9a4b2;
  margin-top: 2px;
  margin-left: -40px;
  background: #251720;
}
.acc-step-content h4 {
  font-family: Cormorant Garamond, serif;
  font-size: 1.05rem; font-weight: 500; color: #f5e8ef;
  margin-bottom: 6px; display: flex; align-items: center; gap: 10px;
}
.acc-step-content h4 span {
  font-family: Outfit, sans-serif;
  font-size: 0.72rem; font-weight: 400;
  color: rgba(201,164,178,0.6); letter-spacing: 1px;
}
.acc-step-content p {
  font-family: Outfit, sans-serif;
  font-size: 0.88rem; line-height: 1.75;
  color: rgba(245,232,239,0.6); margin: 0;
}

.acc-cta-center { text-align: center; margin-top: 36px; }

/* OFFRES */
.acc-offers {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 24px; margin-top: 40px;
}
.acc-offer {
  background: #fff;
  border: 1px solid rgba(201,164,178,0.2);
  border-radius: 20px;
  padding: 32px 28px;
  display: flex; flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.acc-offer:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(93,42,66,0.1);
}
.acc-offer-featured {
  border-color: #c9a4b2;
  background: #fcf7f9;
  position: relative;
}
.acc-offer-featured::before {
  content: "Recommandé";
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: #5d2a42; color: #fff;
  font-family: Outfit, sans-serif;
  font-size: 0.65rem; font-weight: 700;
  letter-spacing: 3px; text-transform: uppercase;
  padding: 4px 16px; border-radius: 50px;
}
.acc-offer-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 14px;
}
.acc-offer-badge {
  font-family: Outfit, sans-serif;
  font-size: 0.68rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 3px;
  color: #c9a4b2;
}
.acc-offer-badge-featured { color: #5d2a42; }
.acc-offer-duration {
  font-family: Outfit, sans-serif;
  font-size: 0.75rem; color: #a0828c;
  display: flex; align-items: center; gap: 5px;
}
.acc-offer h3 {
  font-family: Cormorant Garamond, serif;
  font-size: 1.45rem; font-weight: 500; color: #1a0f14;
  margin-bottom: 10px; line-height: 1.2;
}
.acc-offer-goal {
  font-family: Outfit, sans-serif;
  font-size: 0.92rem; line-height: 1.75; color: #5a4852;
  margin-bottom: 18px; flex: 1;
}
.acc-offer-list {
  list-style: none; padding: 0; margin: 0 0 24px;
}
.acc-offer-list li {
  font-family: Outfit, sans-serif;
  font-size: 0.85rem; line-height: 1.7; color: #7a6070;
  padding: 6px 0;
  border-bottom: 1px solid rgba(201,164,178,0.12);
  display: flex; align-items: flex-start; gap: 10px;
}
.acc-offer-list li:last-child { border-bottom: none; }
.acc-offer-list li i { color: #c9a4b2; font-size: 0.75rem; margin-top: 4px; flex-shrink: 0; }
.acc-offer-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 20px;
  background: transparent;
  border: 1.5px solid rgba(201,164,178,0.5);
  border-radius: 50px;
  font-family: Outfit, sans-serif;
  font-size: 0.82rem; font-weight: 600; color: #5d2a42;
  text-decoration: none;
  transition: all 0.25s ease;
  margin-top: auto;
}
.acc-offer-btn:hover { background: #5d2a42; color: #fff; border-color: #5d2a42; }
.acc-offer-featured .acc-offer-btn {
  background: #5d2a42; color: #fff; border-color: #5d2a42;
}
.acc-offer-featured .acc-offer-btn:hover { background: #3a1828; border-color: #3a1828; }

/* CTA FINAL */
.acc-final {
  background: #1a0f14;
  padding: 96px 5%;
  text-align: center;
}
.acc-final-inner { max-width: 640px; margin: 0 auto; }
.acc-final-title {
  font-family: Cormorant Garamond, serif;
  font-size: clamp(1.9rem, 3.2vw, 2.8rem);
  font-weight: 300; color: #f5e8ef; line-height: 1.2;
  margin-bottom: 20px;
}
.acc-final-sub {
  font-family: Outfit, sans-serif;
  font-size: 0.97rem; line-height: 1.85;
  color: rgba(245,232,239,0.6); margin-bottom: 36px;
}
.btn-main-lg { padding: 18px 40px; font-size: 0.95rem; }

@media (max-width: 900px) {
  .acc-hero { grid-template-columns: 1fr; min-height: auto; max-height: none; }
  .acc-hero-photo { height: 55vw; min-height: 240px; }
  .acc-hero-text { padding: 48px 6%; }
  .acc-pillars { grid-template-columns: 1fr; }
  .acc-formats { grid-template-columns: 1fr; }
  .acc-offers { grid-template-columns: 1fr; }
  .acc-section { padding: 52px 0; }
}


/* ====================================
   CARDS OFFRES
   ==================================== */
.tabs { display: flex; gap: 10px; margin-bottom: 30px; flex-wrap: wrap; }
.tab {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 999px;
  border: 2px solid rgba(0,0,0,0.08);
  background: #fff;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}
.tab:hover { border-color: var(--primary-color); }
.tab.active { background: linear-gradient(135deg, var(--primary-color), var(--primary-dark)); color: #fff; border-color: var(--primary-color); }

.tabpane { display: none; }
.tabpane.active { display: block; animation: fadeSlide 0.4s ease; }
@keyframes fadeSlide { from { opacity: 0; transform: translateY(15px); } to { opacity: 1; transform: translateY(0); } }

/* ====================================
   SÉANCES — RC CARDS (forme React, couleurs DA zip)
   ==================================== */

/* wrapper page */
.seances-inner { padding-top: 0px; }

/* GRILLE — 3 cols, alignement stretch */
.rc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: stretch;
  max-width: 1040px;
  margin: 0 auto;
  padding-top: 36px; /* espace pour badge qui déborde */
}
.rc-grid-2 {
  grid-template-columns: repeat(2, 1fr);
  max-width: 660px;
}

/* ── CARD BASE ── fond blanc, coins très arrondis comme React */
.rc-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid rgba(201, 164, 178, 0.25);
  border-radius: 40px;
  padding: 0 28px 28px;
  box-shadow: 0 4px 20px rgba(93, 42, 66, 0.07);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.rc-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 44px rgba(93, 42, 66, 0.14);
}

/* ── BADGE — centré, déborde au-dessus (-mt-12 React) ── */
.rc-badge-row {
  display: flex;
  justify-content: center;
  margin-top: -18px;
  margin-bottom: 22px;
}
.rc-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 6px 18px;
  border-radius: 999px;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.8px;
  background: #F4F0ED;
  color: var(--primary-dark);
  border: 1px solid rgba(201, 164, 178, 0.4);
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}
.rc-badge-gold {
  background: var(--gold);
  color: #fff;
  border-color: var(--gold);
}

/* ── TOP — icône + titre + desc, centré comme React ── */
.rc-top {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 22px;
}
.rc-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 18px;
  background: #f5edf2;         /* rose très clair DA */
  color: var(--accent-color);  /* bordeaux DA */
}
.rc-title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--accent-color);
  line-height: 1.25;
  margin-bottom: 12px;
}
.rc-desc {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.65;
  max-width: 240px;
}

/* ── FEATURES ── */
.rc-features {
  list-style: none;
  padding: 0;
  margin: 0 0 auto 0;
  flex-grow: 1;
}
.rc-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 9px 0;
  border-bottom: 1px solid rgba(201, 164, 178, 0.15);
  font-size: 0.87rem;
  color: var(--text-color);
  line-height: 1.4;
}
.rc-features li:last-child { border-bottom: none; }
.rc-features li i {
  color: var(--accent-color);
  font-size: 0.68rem;
  margin-top: 3px;
  flex-shrink: 0;
}

/* ── BOTTOM — prix + bouton, séparés par border-top ── */
.rc-bottom {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(201, 164, 178, 0.2);
  text-align: center;
}
.rc-price {
  font-family: var(--font-display);
  font-size: 1.85rem;
  font-weight: 600;
  color: var(--accent-color);
  margin-bottom: 18px;
  line-height: 1.1;
}
.rc-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 14px;
  background: var(--accent-color);
  color: #fff;
  border: none;
  border-radius: 14px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.25s ease;
}
.rc-btn:hover { background: #3d1a2a; }
.rc-btn:hover .rc-arrow { transform: translateX(5px); }
.rc-arrow { display: inline-block; transition: transform 0.25s ease; }
.rc-btn-gold { background: var(--gold); color: #fff; }
.rc-btn-gold:hover { background: #c49060; }

/* ── FEATURED — fond bordeaux, scale(1.05), ombre prononcée ── */
.rc-card.rc-featured {
  background: var(--accent-color);
  border-color: var(--accent-color);
  transform: scale(1.05);
  box-shadow: 0 20px 56px rgba(93, 42, 66, 0.28);
  z-index: 2;
}
.rc-card.rc-featured:hover {
  transform: scale(1.05) translateY(-8px);
  box-shadow: 0 28px 64px rgba(93, 42, 66, 0.36);
}
/* badge reste gold */
.rc-card.rc-featured .rc-badge { background: var(--gold); color: #fff; border-color: var(--gold); }
/* icône fond blanc translucide */
.rc-card.rc-featured .rc-icon { background: rgba(255,255,255,0.15); color: #fff; }
/* textes blancs */
.rc-card.rc-featured .rc-title  { color: #fff; }
.rc-card.rc-featured .rc-desc   { color: rgba(255,255,255,0.75); }
.rc-card.rc-featured .rc-features li { color: rgba(255,255,255,0.87); border-color: rgba(255,255,255,0.1); }
.rc-card.rc-featured .rc-features li i { color: var(--gold); }
.rc-card.rc-featured .rc-bottom { border-color: rgba(255,255,255,0.15); }
.rc-card.rc-featured .rc-price  { color: #fff; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .rc-grid { gap: 20px; }
  .rc-card { padding: 0 20px 22px; border-radius: 28px; }
  .rc-title { font-size: 1.2rem; }
  /* Désactiver le scale sur tablette pour éviter les débords */
  .rc-card.rc-featured { transform: none; box-shadow: 0 10px 30px rgba(93,42,66,0.22); }
  .rc-card.rc-featured:hover { transform: translateY(-8px); }
}
@media (max-width: 900px) {
  .rc-grid, .rc-grid-2 {
    grid-template-columns: 1fr;
    max-width: 420px;
    gap: 36px;
    padding-top: 24px;
  }
}
@media (max-width: 600px) {
  .seances-inner { padding-top: 80px; }
  .rc-card { border-radius: 22px; padding: 0 18px 20px; }
  .rc-price { font-size: 1.55rem; }
  .rc-icon { width: 46px; height: 46px; font-size: 1.05rem; border-radius: 12px; }
}


/* ====================================
   WORKSHOPS
   ==================================== */
.workshops-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 20px; }

.workshop-card {
  background: var(--card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: var(--transition);
  position: relative;
}
.workshop-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); }

.workshop-badge {
  position: absolute;
  top: 12px; right: 12px;
  background: var(--gold);
  color: #fff;
  padding: 5px 12px;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 4px;
  z-index: 5;
}
.special-badge { background: var(--accent-color); }

.workshop-visual {
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  padding: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.workshop-card.featured .workshop-visual { background: linear-gradient(135deg, var(--accent-color), var(--accent-light)); }
.workshop-card.special .workshop-visual { background: linear-gradient(135deg, var(--gold), #c9956a); }

.workshop-icon {
  width: 50px; height: 50px;
  background: rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.3rem;
}
.workshop-duration {
  background: rgba(255,255,255,0.25);
  padding: 6px 14px;
  border-radius: 999px;
  color: #fff;
  font-weight: 700;
  font-size: 0.85rem;
}

.workshop-content { padding: 25px; }
.workshop-card h2 { font-family: var(--font-display); font-size: 1.2rem; margin-bottom: 8px; }
.workshop-content p { color: var(--text-light); font-size: 0.9rem; margin-bottom: 15px; line-height: 1.5; }
.workshop-price { font-family: var(--font-display); font-size: 1.5rem; font-weight: 600; color: var(--accent-color); margin-bottom: 15px; }
.workshop-price span { font-size: 0.85rem; font-weight: 400; color: var(--text-light); }

/* ====================================
   PAGE CONTACT - REDESIGN
   ==================================== */
.contact-page {
  min-height: 100vh;
  padding: 0px 5% 60px;
  background: linear-gradient(180deg, var(--bg-color) 0%, #fff 100%);
}

.contact-hero {
  text-align: center;
  margin-bottom: 50px;
}
.contact-hero-content h1 {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  margin-bottom: 10px;
}
.contact-hero-content p {
  font-size: 1.1rem;
  color: var(--text-light);
}

.contact-options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto 50px;
}

.contact-option-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 30px 20px;
  text-align: center;
  box-shadow: var(--shadow-soft);
  transition: var(--transition);
  border: 2px solid transparent;
}
.contact-option-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
  border-color: var(--primary-color);
}

.option-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin: 0 auto 15px;
}

.contact-option-card h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
  color: var(--accent-color);
}
.contact-option-card p {
  font-size: 0.85rem;
  color: var(--text-light);
  margin-bottom: 15px;
}

.option-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: var(--card-soft);
  color: var(--accent-color);
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  transition: var(--transition);
}
.option-btn:hover {
  background: var(--primary-color);
  color: #fff;
}

.social-links {
  display: flex;
  gap: 10px;
  justify-content: center;
}
.social-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--card-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-color);
  font-size: 1.1rem;
  transition: var(--transition);
}
.social-btn:hover {
  background: var(--primary-color);
  color: #fff;
  transform: translateY(-3px);
}

.contact-form-section {
  max-width: 600px;
  margin: 0 auto;
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 35px;
  box-shadow: var(--shadow-soft);
}

.form-header {
  text-align: center;
  margin-bottom: 25px;
}
.form-header h2 {
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.form-header h2 i { color: var(--primary-color); }

.contact-form-compact {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}
.contact-form-compact input,
.contact-form-compact textarea {
  padding: 14px 18px;
  border: 2px solid rgba(0,0,0,0.08);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: var(--transition);
}
.contact-form-compact input:focus,
.contact-form-compact textarea:focus {
  outline: none;
  border-color: var(--primary-color);
}
.contact-form-compact .btn-main { width: 100%; }

.contact-legal {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 30px;
  color: var(--text-light);
  font-size: 0.85rem;
}
.contact-legal i { color: var(--success); }

/* ====================================
   FOOTER
   ==================================== */
.footer-global {
  text-align: center;
  padding: 20px 15px;
  margin-top: 30px;
  border-top: 1px solid rgba(0,0,0,0.05);
  color: var(--text-light);
  font-size: 0.85rem;
}
.footer-global a { color: var(--primary-dark); text-decoration: underline; }

.rs-section .footer-global {
  position: absolute;
  bottom: 25px;
  left: 0; right: 0;
  color: rgba(255,255,255,0.6);
  border: none;
  margin: 0;
  padding: 15px;
  z-index: 10;
}
.rs-section .footer-global a { color: rgba(255,255,255,0.8); }

/* ====================================
   PAGER
   ==================================== */
.pager {
  position: fixed;
  right: 20px;
  bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 900;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(15px);
  padding: 10px 18px;
  border-radius: 999px;
  box-shadow: var(--shadow-soft);
}
.pager-btn {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: none;
  background: var(--card-soft);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.pager-btn:hover { background: var(--primary-color); color: #fff; }

.pager-dots { display: flex; gap: 6px; }
.dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(0,0,0,0.15);
  cursor: pointer;
  transition: var(--transition);
}
.dot.active { background: var(--primary-color); width: 24px; border-radius: 8px; }

/* ====================================
   ANIMATIONS
   ==================================== */
.reveal { opacity: 0; transform: translateY(25px); transition: 0.7s ease; }
.reveal.active { opacity: 1; transform: translateY(0); }

/* ====================================
   RESPONSIVE
   ==================================== */
@media (max-width: 1024px) {
  .split-compact { flex-direction: column; gap: 30px; padding: 60px 20px; }
  .split-compact.reverse { flex-direction: column; }
  .split-img { flex: none; max-width: 100%; width: 100%; }
  .split-img img { height: 280px; }
  
  .video-showcase { flex-direction: column; }
  .video-thumbnails { flex-direction: row; justify-content: center; }
  .about-split, .about-split.reverse { grid-template-columns: 1fr; gap: 25px; }
  .about-split.reverse .about-image, .about-split.reverse .about-text { order: unset; }
  .about-image { height: 200px; }
  .contact-options { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav-burger { display: flex; flex-direction: column; gap: 5px; border: none; background: none; cursor: pointer; padding: 10px; }
  .nav-burger span { width: 25px; height: 2px; background: var(--accent-color); border-radius: 2px; }
  .nav-links {
    position: absolute;
    top: 90px; right: 5%;
    width: 90%;
    background: #fff;
    padding: 25px;
    border-radius: var(--radius-lg);
    flex-direction: column;
    display: none;
    box-shadow: var(--shadow-hover);
  }
  .nav-links.open { display: flex; }
  .nav-links a { color: var(--text-color); width: 100%; text-align: center; padding: 15px; }
  
  #site-logo { height: 100px; }
  
  .split-txt h2 { font-size: 1.8rem; }
  .split-img img { height: 250px; }
  
  .contact-options { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .cart-dropdown { width: calc(100vw - 50px); right: -10px; }
}


/* ============================================================
   SECTIONS FULL-SPLIT ACCUEIL
   Photo 50% | Texte 50%
   ============================================================ */

.fs-section {
  display: flex !important;
  flex-direction: row !important;
  align-items: stretch !important;
  width: 100%;
  min-height: 100vh;
  padding: 0 !important;
  position: relative;
}

.fs-photo {
  width: 50%;
  flex-shrink: 0;
  overflow: hidden;
  position: relative;
}

.fs-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
  transition: transform 1s ease;
}

.fs-section:hover .fs-photo img {
  transform: scale(1.04);
}

.fs-text {
  width: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 100px 64px;
  overflow-y: auto;
}

.fs-text-cream { background: #FAF6F2; }
.fs-text-light { background: #F5F0EC; }
.fs-text-warm  { background: #FBF8F5; }
.fs-text-dark  { background: #251720; color: #f2e8ef; }

.fs-inner {
  width: 100%;
  max-width: 500px;
}

.fs-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3.5px;
  color: var(--primary-dark);
  border-bottom: 1px solid var(--primary-color);
  padding-bottom: 10px;
  margin-bottom: 30px;
}
.fs-text-dark .fs-label {
  color: #c9a4b2;
  border-color: rgba(201,164,178,0.4);
}

.fs-big-quote { position: relative; }

.fs-guillemet {
  display: block;
  font-family: var(--font-display);
  font-size: 10rem;
  line-height: 0.55;
  color: var(--primary-color);
  opacity: 0.3;
  margin-bottom: 24px;
  user-select: none;
}

.fs-guillemet.small {
  font-size: 4.5rem;
  line-height: 0.65;
  margin-bottom: 14px;
  opacity: 0.45;
}

.fs-big-quote p {
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 2vw, 2rem);
  font-weight: 500;
  font-style: italic;
  line-height: 1.55;
  color: var(--accent-color);
}

.fs-lead {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 1.5vw, 1.45rem);
  font-style: italic;
  font-weight: 500;
  line-height: 1.55;
  color: var(--accent-color);
  margin-bottom: 22px;
}
.fs-text-dark .fs-lead { color: #e4cdd8; }

.fs-body {
  font-size: 0.93rem;
  line-height: 1.8;
  color: var(--text-color);
  margin-bottom: 16px;
}
.fs-text-dark .fs-body { color: rgba(242,232,239,0.82); }
.fs-body.fs-italic { font-style: italic; color: var(--text-light); }

.fs-sublabel {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--primary-dark);
  margin: 18px 0 10px;
}
.fs-text-dark .fs-sublabel { color: #c9a4b2; }

.fs-list {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
}

.fs-list li {
  font-size: 0.91rem;
  line-height: 1.7;
  color: var(--text-color);
  padding: 7px 0 7px 22px;
  position: relative;
  border-bottom: 1px solid rgba(0,0,0,0.055);
}
.fs-list li:last-child { border-bottom: none; }

.fs-list li::before {
  content: '\2013';
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: 700;
}

.fs-list.fs-list-check li::before {
  content: '\2714';
  font-size: 0.72rem;
  color: var(--accent-color);
  top: 9px;
}

.fs-text-dark .fs-list li {
  color: rgba(242,232,239,0.78);
  border-color: rgba(255,255,255,0.07);
}
.fs-text-dark .fs-list li::before { color: #c9a4b2; }

.fs-inline-quote {
  border-left: 2px solid var(--primary-color);
  padding: 14px 20px;
  background: rgba(201,164,178,0.07);
  border-radius: 0 10px 10px 0;
  margin-top: 6px;
}
.fs-text-dark .fs-inline-quote {
  background: rgba(201,164,178,0.1);
}

.fs-inline-quote p {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-style: italic;
  line-height: 1.65;
  color: var(--text-color);
}
.fs-text-dark .fs-inline-quote p { color: rgba(242,232,239,0.88); }

.fs-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

@media (max-width: 900px) {
  .fs-section {
    flex-direction: column !important;
    min-height: auto;
  }
  .fs-photo, .fs-text { width: 100% !important; }
  .fs-photo { height: 60vw; min-height: 260px; max-height: 440px; }
  .fs-text { padding: 52px 28px; }
  .fs-inner { max-width: 100%; }
  .fs-guillemet { font-size: 7rem; }
}

@media (max-width: 600px) {
  .fs-text { padding: 40px 20px; }
  .fs-cta-row { flex-direction: column; }
  .fs-cta-row a { text-align: center; justify-content: center; }
}

/* OVERRIDE fs-section exact height */
.fs-section { min-height: 100vh; overflow: hidden; display: flex !important; flex-direction: row !important; align-items: stretch !important; justify-content: flex-start !important; padding: 0 !important; position: relative; }
.fs-section .fs-photo { width: 50% !important; min-height: 100vh; flex-shrink: 0; overflow: hidden; position: relative; }
.fs-section .fs-photo img { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; object-position: center top; display: block; transition: transform 1.2s ease; }
.fs-section .fs-text { width: 50% !important; min-height: 100vh; display: flex; align-items: center; justify-content: center; padding: 80px 60px 60px; overflow-y: visible; flex-direction: column; }

/* == TYPO + HERO + AVIS == */
.fs-inner { width:100%; max-width:490px; }
.fs-guillemet { font-family:'Cormorant Garamond',serif; font-size:9rem; line-height:0.55; color:#c9a4b2; opacity:0.28; display:block; margin-bottom:20px; }
.fs-guillemet.small { font-size:4rem; line-height:0.65; margin-bottom:12px; opacity:0.4; }
.fs-label { display:inline-block; font-size:0.7rem; font-weight:700; text-transform:uppercase; letter-spacing:4px; color:#a67c8a; border-bottom:1px solid #c9a4b2; padding-bottom:10px; margin-bottom:30px; }
.fs-text-dark .fs-label { color:#c9a4b2; }
.fs-big-quote p { font-family:'Cormorant Garamond',serif; font-size:clamp(1.6rem,2.4vw,2.2rem); font-weight:500; font-style:italic; line-height:1.65; color:#5d2a42; }
.fs-lead { font-family:'Cormorant Garamond',serif; font-size:clamp(1.2rem,1.7vw,1.55rem); font-style:italic; font-weight:500; line-height:1.65; color:#5d2a42; margin-bottom:22px; }
.fs-text-dark .fs-lead { color:#e8d0db; }
.fs-body { font-family:'Outfit',sans-serif; font-size:1.05rem; line-height:1.9; color:#3d3d3d; margin-bottom:14px; }
.fs-text-dark .fs-body { color:rgba(242,232,239,0.87); }
.fs-body strong { color:#5d2a42; font-weight:600; }
.fs-text-dark .fs-body strong { color:#e8c8d4; }
.fs-sublabel { font-size:0.72rem; font-weight:700; text-transform:uppercase; letter-spacing:3px; color:#a67c8a; margin:20px 0 12px; display:block; }
.fs-text-dark .fs-sublabel { color:#c9a4b2; }
.fs-list { list-style:none; padding:0; margin:0 0 18px 0; }
.fs-list li { font-family:'Outfit',sans-serif; font-size:1rem; line-height:1.75; color:#3d3d3d; padding:9px 0 9px 22px; position:relative; border-bottom:1px solid rgba(0,0,0,0.055); }
.fs-list li:last-child { border-bottom:none; }
.fs-list li::before { content:'\2013'; position:absolute; left:0; color:#c9a4b2; font-weight:700; }
.fs-list.fs-list-check li::before { content:'\2714'; font-size:0.72rem; color:#5d2a42; top:11px; }
.fs-text-dark .fs-list li { color:rgba(242,232,239,0.82); border-color:rgba(255,255,255,0.07); }
.fs-text-dark .fs-list li::before { color:#c9a4b2; }
.fs-inline-quote { border-left:3px solid #c9a4b2; padding:16px 22px; background:rgba(201,164,178,0.08); border-radius:0 10px 10px 0; margin-top:10px; }
.fs-text-dark .fs-inline-quote { background:rgba(201,164,178,0.11); }
.fs-inline-quote p { font-family:'Cormorant Garamond',serif; font-size:1.08rem; font-style:italic; line-height:1.72; color:#3d3d3d; }
.fs-text-dark .fs-inline-quote p { color:rgba(242,232,239,0.9); }
.fs-cta-row { display:flex; flex-wrap:wrap; gap:14px; margin-top:28px; }
.fs-italic { font-style:italic; color:#6b6b6b !important; }
/* Hero */
.fs-hero-title { font-family:'Cormorant Garamond',serif; font-size:clamp(2.4rem,3.8vw,3.6rem); font-weight:400; line-height:1.15; color:#1a0f14; margin:0 0 20px 0; letter-spacing:-0.01em; }
.fs-hero-sub { font-family:'Outfit',sans-serif; font-size:1rem; font-weight:300; color:#8b6070; letter-spacing:0.08em; text-transform:uppercase; margin-bottom:28px; }
.fs-hero-location { display:flex; align-items:center; gap:8px; font-family:'Outfit',sans-serif; font-size:0.85rem; color:#a67c8a; font-weight:400; letter-spacing:0.03em; margin-bottom:28px; padding-bottom:28px; border-bottom:1px solid rgba(201,164,178,0.25); }
.fs-hero-location i { font-size:0.75rem; color:#c9a4b2; flex-shrink:0; }
.fs-hero-desc { font-family:'Cormorant Garamond',serif; font-size:1.18rem; font-style:italic; line-height:1.85; color:#4a3040; margin-bottom:36px; }
/* Avis */
.rs-avis-section { position:relative; display:flex !important; flex-direction:column !important; align-items:center !important; justify-content:center !important; overflow:hidden; min-height:100vh; padding: 80px 0 40px; }
.avis-bg-img { position:absolute; inset:0; width:100%; height:100%; object-fit:cover; object-position:center; z-index:1; }
.avis-bg-overlay { position:absolute; inset:0; background:linear-gradient(135deg,rgba(93,42,66,0.88) 0%,rgba(37,23,32,0.92) 100%); z-index:2; }
.avis-content { position:relative; z-index:3; width:100%; max-width:1100px; padding:50px 48px 20px; display:flex; flex-direction:column; align-items:center; text-align:center; }
.avis-header { margin-bottom:40px; }
.avis-stars-row { display:flex; gap:6px; justify-content:center; margin-bottom:14px; }
.avis-stars-row i { color:#d4a574; font-size:1.1rem; }
.avis-title { font-family:'Cormorant Garamond',serif; font-size:clamp(2.2rem,3.2vw,3.2rem); font-weight:500; color:#f5e8ef; letter-spacing:0.01em; margin-bottom:10px; }
.avis-subtitle { font-family:'Outfit',sans-serif; font-size:1rem; color:rgba(245,232,239,0.62); font-weight:300; max-width:440px; line-height:1.7; }
.avis-grid { display:grid; grid-template-columns:1fr 1fr 1fr; gap:18px; width:100%; margin-bottom:36px; }
.avis-card { background:rgba(255,255,255,0.07); border:1px solid rgba(201,164,178,0.18); border-radius:18px; padding:30px 26px; text-align:left; backdrop-filter:blur(10px); transition:transform 0.3s,background 0.3s; }
.avis-card:hover { transform:translateY(-5px); background:rgba(255,255,255,0.11); }
.avis-card-center { background:rgba(201,164,178,0.16); border-color:rgba(201,164,178,0.45); transform:translateY(-6px); }
.avis-card-center:hover { transform:translateY(-10px); }
.avis-qmark { font-family:'Cormorant Garamond',serif; font-size:4rem; line-height:0.8; color:rgba(201,164,178,0.5); margin-bottom:12px; }
.avis-text { font-family:'Cormorant Garamond',serif; font-size:1.1rem; font-style:italic; line-height:1.72; color:rgba(245,232,239,0.92); margin-bottom:20px; }
.avis-footer { display:flex; align-items:center; justify-content:space-between; }
.avis-stars { display:flex; gap:3px; }
.avis-stars i { color:#d4a574; font-size:0.75rem; }
.avis-author { font-family:'Outfit',sans-serif; font-size:0.78rem; font-weight:600; color:rgba(201,164,178,0.8); letter-spacing:1.5px; text-transform:uppercase; }
.btn-avis-cta { display:inline-flex; align-items:center; gap:10px; background:transparent; border:1.5px solid rgba(201,164,178,0.5); color:#f5e8ef; padding:14px 32px; border-radius:50px; font-size:0.9rem; font-weight:500; letter-spacing:0.5px; transition:all 0.3s; text-decoration:none; }
.btn-avis-cta:hover { background:rgba(201,164,178,0.15); border-color:#c9a4b2; transform:translateY(-2px); }
@media (max-width:900px) {
  .fs-section { flex-direction:column !important; min-height:auto !important; }
  .fs-section .fs-photo { width:100% !important; height:52vw !important; min-height:220px !important; max-height:420px !important; }
  .fs-section .fs-text { width:100% !important; min-height:auto !important; padding:48px 24px !important; }
  .fs-inner { max-width:100%; }
  .fs-guillemet { font-size:6rem; }
  .avis-grid { grid-template-columns:1fr; }
  .avis-card-center { transform:none; }
  .avis-content { padding:40px 20px 20px; }
  .fs-hero-title { font-size:2.2rem; }
}


/* ============================================================
   RESPONSIVE — AUDIT COMPLET
   ============================================================ */

/* ---- TABLETTE LARGE : ≤ 1200px ---- */
@media (max-width: 1200px) {
  .page-inner { padding: 28px 36px 60px; }

  /* Slider Accompagnements */
  .acc2-slide-inner { padding: 28px 6%; }
  .acc2-h1 { font-size: 1.7rem; }

  /* About splits */
  .about-split { grid-template-columns: 1fr 1fr; gap: 0; }
  .about-text { padding: 40px 5%; }

  /* Séances cards */
}

/* ---- TABLETTE : ≤ 1024px ---- */
@media (max-width: 1024px) {
  /* Évite que le contenu fs-text soit masqué par la navbar sur tablette */
  .rs-section.fs-section .fs-text { padding-top: 80px; }
  /* Nav capsule plus compacte */
  .nav-capsule { height: 64px; padding: 0 20px; }
  #site-logo { height: 110px; }
  .nav-links a { padding: 9px 13px; font-size: 0.78rem; letter-spacing: 1px; }
  .btn-nav { padding: 9px 16px !important; }

  /* Pages inner */
  .page-inner { padding: 24px 28px 50px; }

  /* Accompagnements slider */
  .acc2-wrap { grid-template-columns: 1fr 1fr; }
  .acc2-slide-inner { padding: 24px 5%; }
  .acc2-trio-item { grid-template-columns: 150px 1fr; }

  /* A propos */
  .about-split { grid-template-columns: 1fr 1fr; }
  .about-image { min-height: 320px; }

  /* Contact */
  .contact-options { grid-template-columns: repeat(2, 1fr); }

  /* Hero accueil */
  .fs-text { padding: 60px 36px; }
}

/* ---- MOBILE LARGE : ≤ 900px ---- */
@media (max-width: 900px) {
  .page:not(.page-rockstar) { padding-top: 100px !important; scroll-padding-top: 100px; }
  /* Sur mobile le hero passe en colonne : pas de navbar qui couvre */
  .rs-container { scroll-padding-top: 0; }
  .rs-section { scroll-margin-top: 0; }
  /* Nav */
  .nav-capsule { height: 60px; padding: 0 16px; border-radius: 20px; width: 92%; }
  #site-logo { height: 90px; }
  .nav-links {
    position: fixed;
    top: 80px; left: 4%; right: 4%;
    width: 92%;
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(20px);
    padding: 20px 24px;
    border-radius: 20px;
    flex-direction: column;
    display: none;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
    z-index: 999;
  }
  .nav-links.open { display: flex; }
  .nav-links a { color: var(--accent-color); width: 100%; text-align: center; padding: 14px; border-radius: 12px; text-shadow: none; }
  .nav-links a:hover { background: rgba(201,164,178,0.1); }
  .nav-burger { display: flex; flex-direction: column; gap: 5px; border: none; background: none; cursor: pointer; padding: 10px; }
  .nav-burger span { width: 22px; height: 2px; background: var(--accent-color); border-radius: 2px; display: block; }

  /* Pages */
  .page-inner { padding: 20px 20px 40px; }
  .page-head { margin-bottom: 30px; }
  .page-head h1 { font-size: clamp(1.6rem, 5vw, 2.2rem); }

  /* Accompagnements slider */
  .acc2-wrap { grid-template-columns: 1fr; height: auto; min-height: 100vh; }
  .acc2-photo { height: 52vw; min-height: 220px; max-height: 360px; }
  .acc2-slide { position: relative; opacity: 1; transform: none; transition: none; }
  .acc2-slide:not(.active) { display: none; }
  .acc2-slide.active { display: block; }
  .acc2-slider { flex: none; min-height: 360px; }
  .acc2-slide-inner { padding: 32px 6% 24px; min-height: 360px; }
  .acc2-h1 { font-size: 1.6rem; }
  .acc2-trio-item { grid-template-columns: 1fr; gap: 2px; }
  .acc2-nav { padding: 16px 6%; }
  .acc2-tl-item { gap: 14px; }

  /* À propos split */
  .about-split { grid-template-columns: 1fr; margin-bottom: 0; }
  .about-split.reverse .about-image { order: unset; }
  .about-split.reverse .about-text  { order: unset; }
  .about-image { min-height: 260px; max-height: 350px; border-radius: 14px; }
  .about-text { padding: 32px 6%; }

  /* Séances */
  .tabs { gap: 7px; }
  .tab { padding: 9px 14px; font-size: 0.8rem; }

  /* Contact */
  .contact-options { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .contact-page { padding: 0 !important; }

  /* Cart */
  .cart-dropdown { width: calc(100vw - 40px); right: -8px; }

  /* Accueil hero */

  .rs-section.fs-section .fs-photo { width: 100% !important; height: 52vw !important; min-height: 220px !important; max-height: 380px !important; }

  .fs-section { flex-direction: column !important; min-height: auto; }
  .fs-photo, .fs-text { width: 100% !important; }
  .fs-photo { height: 55vw; min-height: 220px; max-height: 400px; }
  .fs-text  { padding: 40px 22px; }
  .fs-inner { max-width: 100%; }

  /* Avis grid */
  .avis-grid { grid-template-columns: 1fr; }
  .avis-card-center { transform: none; }
  .avis-content { padding: 36px 18px 18px; }
}

/* ---- MOBILE : ≤ 600px ---- */
@media (max-width: 600px) {
  .page:not(.page-rockstar) { padding-top: 88px !important; scroll-padding-top: 88px; }
  .nav-capsule { width: 94%; }

  .page-inner { padding: 16px 16px 32px; }

  /* Typo */
  .fs-hero-title { font-size: 1.9rem; }
  .fs-big-quote p { font-size: 1.3rem; }
  .fs-lead { font-size: 1.1rem; }
  .fs-body { font-size: 0.95rem; }
  .fs-cta-row { flex-direction: column; }
  .fs-cta-row a { width: 100%; justify-content: center; text-align: center; }

  /* Accompagnements */
  .acc2-h1 { font-size: 1.4rem; }
  .acc2-h2 { font-size: 1.25rem; }
  .acc2-slide-inner { padding: 24px 5% 20px; }

  /* Tabs */
  .tabs { flex-direction: column; }
  .tab { width: 100%; justify-content: center; }

  /* Cards */

  /* Contact */
  .contact-option-card { padding: 22px 18px; }

  /* Footer */
  .footer-global { padding: 20px 16px; font-size: 0.75rem; }
}

/* ---- TRÈS PETIT : ≤ 380px ---- */
@media (max-width: 380px) {
  .nav-capsule { height: 54px; }
  .fs-hero-title { font-size: 1.6rem; }
  .about-image { min-height: 220px; }
}


/* ── ACCUEIL : hero section padding navbar ── */
.page-accueil .fs-section:first-child .fs-text { padding-top: 140px; }

/* ── AVIS SECTION ── */
.rs-avis-section-old { display:none; }
.avis-bg-img { position:absolute; top:0; left:0; width:100%; height:100%; object-fit:cover; object-position:center; }

/* ── HOVER scale ── */
.fs-section:hover .fs-photo img { transform: scale(1.04); }

/* Copyright bas de page accueil */
.footer-accueil {
  position: relative;
  z-index: 4;
  width: 100%;
  background: rgba(30, 10, 20, 0.85);
  padding: 18px 32px;
  text-align: center;
  border-top: 1px solid rgba(201,164,178,0.15);
}
.footer-accueil p,
.footer-accueil a { color: rgba(255,255,255,0.5) !important; font-size: 0.78rem; }
.footer-accueil a:hover { color: #c9a4b2 !important; }

.avis-card-center .avis-text { color: rgba(245,232,239,0.95); }
.avis-card-center .avis-author { color: rgba(201,164,178,0.9); }

/* Copyright accueil — texte simple sans box */
.avis-copyright {
  position: relative;
  z-index: 4;
  width: 100%;
  text-align: center;
  padding: 16px 20px 0;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.4);
  opacity: 1;
}
.avis-copyright a { color: rgba(201,164,178,0.7); text-decoration: underline; }
.avis-copyright a:hover { color: #c9a4b2; }

/* 4 cards séances sur 2 rangées */
.rc-grid-4 {
  grid-template-columns: repeat(4, 1fr);
  max-width: 1280px;
  gap: 16px;
  padding-top: 36px;
}
/* Tablette paysage : 4 cols compactes */
@media (max-width: 1200px) {
  .rc-grid-4 { gap: 12px; }
  .rc-grid-4 .rc-card { border-radius: 24px; padding: 0 16px 20px; }
  .rc-grid-4 .rc-title { font-size: 1.1rem; }
  .rc-grid-4 .rc-price { font-size: 1.4rem; }
  .rc-grid-4 .rc-icon { width: 44px; height: 44px; font-size: 1rem; border-radius: 12px; }
}
/* Tablette portrait : 2×2 */
@media (max-width: 860px) {
  .rc-grid-4 { grid-template-columns: repeat(2, 1fr); max-width: 680px; gap: 40px 16px; }
  .rc-grid-4 .rc-card { border-radius: 28px; padding: 0 20px 22px; }
  .rc-grid-4 .rc-card.rc-featured { transform: none; box-shadow: 0 10px 30px rgba(93,42,66,0.22); }
  .rc-grid-4 .rc-card.rc-featured:hover { transform: translateY(-6px); }
}
/* Mobile : 1 col */
@media (max-width: 560px) {
  .rc-grid-4 { grid-template-columns: 1fr; max-width: 400px; gap: 32px; }
}

/* Photos du cabinet */
.cabinet-photos {
  margin: 48px 0 0;
  padding-top: 16px;
  text-align: center;
}
.cabinet-photo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 14px;
}
.cabinet-photo {
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: 0 6px 20px rgba(93,42,66,0.1);
}
.cabinet-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.4s ease;
}
.cabinet-photo:hover img { transform: scale(1.04); }
.cabinet-caption {
  font-size: 0.82rem;
  color: var(--text-light);
  font-style: italic;
}
.cabinet-caption i { color: var(--primary-dark); margin-right: 4px; }
@media (max-width: 900px) {
  .cabinet-photo-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .cabinet-photo-grid { grid-template-columns: 1fr; }
  .cabinet-photo { aspect-ratio: 16/9; }
}

/* ════════════════════════════════════════
   SÉANCE INDIVIDUELLE — bloc bannière
   ════════════════════════════════════════ */
.si-section {
  margin: 56px auto 8px;
  max-width: 1200px;
  padding: 0 8px;
}
.si-label {
  text-align: center;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: var(--primary-dark);
  margin-bottom: 20px;
}

/* La card : bannière horizontale pleine largeur */
.si-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  background: var(--accent-color);
  border-radius: 28px;
  padding: 32px 40px;
  box-shadow: 0 12px 40px rgba(93,42,66,0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.si-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 52px rgba(93,42,66,0.28);
}

/* Gauche : icône + titre + desc */
.si-left {
  display: flex;
  align-items: center;
  gap: 20px;
  flex: 1;
}
.si-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: rgba(255,255,255,0.15);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}
.si-title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 500;
  font-style: italic;
  color: #fff;
  margin-bottom: 6px;
  line-height: 1.2;
}
.si-desc {
  font-size: 0.86rem;
  color: rgba(255,255,255,0.72);
  line-height: 1.55;
}

/* Milieu : features en ligne */
.si-features {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex-shrink: 0;
}
.si-features span {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.86rem;
  color: rgba(255,255,255,0.85);
}
.si-features i {
  color: var(--gold);
  font-size: 0.68rem;
}

/* Droite : prix + bouton */
.si-right {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}
.si-price {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  color: #fff;
  white-space: nowrap;
}
.si-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  background: var(--gold);
  color: #fff;
  border-radius: 12px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  transition: all 0.25s ease;
  white-space: nowrap;
}
.si-btn:hover { background: #c49060; transform: translateY(-2px); }
.si-arrow { display: inline-block; transition: transform 0.25s ease; }
.si-btn:hover .si-arrow { transform: translateX(4px); }

/* ── Responsive ── */
@media (max-width: 900px) {
  .si-card {
    flex-direction: column;
    align-items: flex-start;
    padding: 28px 28px;
    gap: 20px;
  }
  .si-right { align-items: flex-start; flex-direction: row; align-items: center; }
}
@media (max-width: 560px) {
  .si-card { padding: 24px 20px; border-radius: 20px; }
  .si-right { flex-direction: column; align-items: flex-start; gap: 12px; }
  .si-price { font-size: 1.65rem; }
  .si-btn { width: 100%; justify-content: center; }
}

/* Tab ancre (scroll vers séance individuelle) */
.tab-anchor:hover { border-color: var(--primary-color); }
.tab-anchor.active { 
  background: transparent !important; 
  color: var(--accent-color) !important; 
  border-color: var(--primary-color) !important;
  box-shadow: none !important;
}
