/* ===== VARIABLES MODE CLAIR / SOMBRE ===== */
:root {
  --bg-primary: #f4ede4;
  --bg-secondary: #f7f0e7;
  --bg-card: #ffffff;
  --bg-contrast: #e0d4c4;
  --text-primary: #1b1510;
  --text-secondary: #5a4a3a;
  --text-muted: #6a5a4a;
  --accent: #b8956c;
  --accent-dark: #3D2B1F;
  --border-color: rgba(180, 160, 140, 0.3);
}

[data-theme="dark"] {
  --bg-primary: #1f1714;
  --bg-secondary: #2a211c;
  --bg-card: #332922;
  --bg-contrast: #261d18;
  --text-primary: #f4ede4;
  --text-secondary: #d4c8b8;
  --text-muted: #b0a090;
  --accent: #d4a574;
  --accent-dark: #c9956c;
  --border-color: rgba(212, 165, 116, 0.2);
}

/* Toggle Mode Sombre - Bouton dans le header */
.theme-toggle-header {
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: all 0.3s ease;
  border-radius: 50%;
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  position: relative;
}

.theme-toggle-header:hover {
  background: rgba(180, 160, 140, 0.15);
  transform: scale(1.1);
}

.theme-icon-sun,
.theme-icon-moon {
  position: absolute;
  transition: all 0.3s ease;
  font-size: 0.95rem;
}

.theme-icon-sun {
  opacity: 1;
  transform: rotate(0deg);
}

.theme-icon-moon {
  opacity: 0;
  transform: rotate(-90deg);
}

[data-theme="dark"] .theme-icon-sun {
  opacity: 0;
  transform: rotate(90deg);
}

[data-theme="dark"] .theme-icon-moon {
  opacity: 1;
  transform: rotate(0deg);
}

/* Header transparent - bouton theme */
.header:not(.header--scrolled) .theme-toggle-header {
  color: #fff;
}

/* Toggle Mode Sombre - Bouton discret dans le footer */
.theme-toggle {
  background: rgba(180, 160, 140, 0.15);
  border: 1px solid rgba(180, 160, 140, 0.3);
  border-radius: 20px;
  padding: 0.4rem 0.8rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
  transition: all 0.3s ease;
  margin-top: 1rem;
}

.theme-toggle:hover {
  background: rgba(180, 160, 140, 0.25);
  transform: scale(1.05);
}

.theme-toggle__icon {
  font-size: 1rem;
  transition: all 0.3s ease;
}

.theme-toggle__icon--light {
  opacity: 1;
}

.theme-toggle__icon--dark {
  opacity: 0.4;
}

[data-theme="dark"] .theme-toggle__icon--light {
  opacity: 0.4;
}

[data-theme="dark"] .theme-toggle__icon--dark {
  opacity: 1;
}

[data-theme="dark"] .theme-toggle {
  background: rgba(100, 90, 80, 0.3);
  border-color: rgba(200, 180, 160, 0.2);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text-primary);
  background: var(--bg-primary);
  line-height: 1.6;
  transition: background 0.3s ease, color 0.3s ease;
}

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

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

.container {
  width: min(1120px, 100% - 2.5rem);
  margin-inline: auto;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: transparent;
  backdrop-filter: none;
  border-bottom: none;
  transition: background 0.3s ease, backdrop-filter 0.3s ease, border-bottom 0.3s ease;
}

.header--scrolled {
  background: rgba(244, 237, 228, 0.96);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(104, 82, 62, 0.12);
  transition: background 0.3s ease;
}

[data-theme="dark"] .header--scrolled {
  background: rgba(31, 23, 20, 0.96);
  border-bottom: 1px solid rgba(212, 165, 116, 0.15);
}

/* Header transparent - texte clair */
.header:not(.header--scrolled) .nav a,
.header:not(.header--scrolled) .nav-item__toggle,
.header:not(.header--scrolled) .logo {
  color: #fff;
  text-shadow: 0 1px 3px rgba(0,0,0,0.3);
}

.header:not(.header--scrolled) .nav a::after {
  background: #fff;
}

.header:not(.header--scrolled) .nav-link--instagram svg {
  filter: drop-shadow(0 1px 2px rgba(0,0,0,0.3));
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 0.9rem;
  gap: 1.5rem;
  min-height: 56px;
  box-sizing: border-box;
}

.logo {
  font-family: "Playfair Display", serif;
  font-size: 1.3rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-weight: 600;
  color: #140f0b;
  white-space: nowrap;
}

.logo__accent {
  color: #8B5A2B;
}

/* Logo accent coloré quand header transparent */
.header:not(.header--scrolled) .logo .logo__accent {
  color: #d4a574;
  text-shadow: 0 1px 3px rgba(0,0,0,0.3);
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  font-size: 0.95rem;
}

.nav a,
.nav .nav-link {
  position: relative;
  white-space: nowrap;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.3rem;
  width: 0;
  height: 2px;
  background: #55372a;
  transition: width 0.2s ease-out;
}

.nav a:hover::after {
  width: 100%;
}

.header__cta {
  font-size: 0.9rem;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 0.22rem;
  border: none;
  background: transparent;
  cursor: pointer;
}

.nav-toggle span {
  width: 1.4rem;
  height: 2px;
  background: #1b1510;
  border-radius: 999px;
}

/* Navigation déroulante */

.nav-link {
  position: relative;
}

.nav-item {
  position: relative;
}

.nav-item__toggle {
  border: none;
  background: transparent;
  font: inherit;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  cursor: pointer;
  color: inherit;
}

.nav-item__chevron {
  display: inline-block;
  width: 0.45rem;
  height: 0.45rem;
  border-right: 1.5px solid #3e2b20;
  border-bottom: 1.5px solid #3e2b20;
  transform: rotate(45deg) translateY(-1px);
  transition: transform 0.15s ease-out;
}

.nav-item--open .nav-item__chevron {
  transform: rotate(-135deg) translateY(1px);
}

.nav-menu {
  position: absolute;
  top: calc(100% + 0.4rem);
  left: 0;
  min-width: 10.5rem;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 16px 40px rgba(26, 18, 11, 0.22);
  border: 1px solid rgba(120, 95, 72, 0.28);
  padding: 0.45rem 0.1rem;
  display: none;
  z-index: 30;
}

.nav-item--open .nav-menu {
  display: block;
}

.nav-menu__link {
  display: block;
  padding: 0.45rem 0.9rem;
  font-size: 0.9rem;
  color: #2a2118;
  white-space: nowrap;
}

.nav-menu__link:hover {
  background: #f4ede4;
}

.hero {
  padding-block: 3.5rem 3rem;
  background: #f4ede4;
  position: relative;
}

.hero--with-bg {
  padding-block: 6rem 5rem;
  padding-top: 8rem;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-image: url("Fond du menu 4.jpeg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  z-index: 0;
}

.hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(30, 25, 20, 0.7) 0%, rgba(30, 25, 20, 0.4) 100%);
}

.hero--with-bg .hero__inner {
  position: relative;
  z-index: 1;
}

.hero--with-bg .hero__content h1 {
  color: #f4ede4;
  text-shadow: 0 2px 15px rgba(0, 0, 0, 0.5);
}

.hero--with-bg .hero__content h1 .hero__title--accent {
  color: #d4a574;
  text-shadow: 0 2px 15px rgba(0, 0, 0, 0.4);
}

.hero--sub {
  padding-block: 4.2rem 3.4rem;
}

.hero--sub .hero__text {
  color: #5a4a3a;
}

.hero__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.hero__eyebrow {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: #d4a574;
  margin-bottom: 1.5rem;
  font-weight: 300;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.5rem;
}

.hero__star {
  font-size: 0.6rem;
  color: #d4a574;
}

.hero h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.5rem, 6vw, 4rem);
  line-height: 1.15;
  margin-bottom: 1.5rem;
  font-weight: 400;
  letter-spacing: -0.01em;
}

.hero h1 .hero__title--accent {
  display: block;
  color: #d4a574;
  font-weight: 400;
  font-style: italic;
}

.hero__text {
  font-size: 1.1rem;
  max-width: 600px;
  color: #ffffff;
  margin-bottom: 2rem;
  line-height: 1.7;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.hero__visual {
  display: flex;
  justify-content: center;
}

.hero__card {
  background: radial-gradient(circle at top left, #f7ebdc 0, #f9f2e8 40%, #fbf6ee 100%);
  border-radius: 22px;
  padding: 1.8rem 1.6rem;
  box-shadow: 0 18px 45px rgba(38, 24, 12, 0.18);
  border: 1px solid rgba(157, 122, 87, 0.5);
  max-width: 19rem;
}

.hero__badge {
  display: inline-block;
  padding: 0.2rem 0.7rem;
  border-radius: 999px;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #5f432d;
  background: rgba(255, 255, 255, 0.8);
  margin-bottom: 0.8rem;
}

.hero__quote {
  font-style: italic;
  color: #4a3727;
  font-size: 0.9rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.35rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 500;
  cursor: pointer;
  font-size: 0.95rem;
  transition: transform 0.15s ease-out, box-shadow 0.15s ease-out, background 0.15s ease-out,
    color 0.15s ease-out, border-color 0.15s ease-out;
  white-space: nowrap;
}

.btn--primary {
  background: #d4a574;
  color: #1b1510;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  border: none;
}

.btn--primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
  background: #c99a6a;
}

.btn--ghost {
  background: rgba(255, 255, 255, 0.85);
  border: none;
  color: #1b1510;
  backdrop-filter: blur(4px);
}

.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.95);
}

.btn--reserver {
  background: #3D2B1F;
  color: #fff;
  border: none;
  font-size: 0.9rem;
  padding: 0.6rem 1.2rem;
}

.btn--reserver:hover {
  background: #4A3219;
}

.btn--planity {
  background: #3D2B1F;
  color: #fff;
  border: none;
  font-weight: 500;
  padding: 1rem 1.5rem;
  margin-top: 0.5rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn--planity:hover {
  background: #4A3219;
  color: #fff;
  transform: translateY(-1px);
}

.btn--ghost-light {
  color: #ffffff;
  border-color: rgba(250, 245, 237, 0.9);
}

.btn--ghost-light:hover {
  background: rgba(250, 245, 237, 0.08);
}

.btn--full {
  width: 100%;
}

.section {
  padding-block: 4.5rem;
  background: var(--bg-primary);
  transition: background 0.3s ease;
}

.section--light {
  background: var(--bg-secondary);
}

.section--compact-top {
  padding-top: 1.5rem;
}

.section--contrast {
  background: var(--bg-contrast);
  color: var(--text-primary);
  padding-block: 2.5rem 3rem;
  transition: background 0.3s ease;
}

/* Liens utiles dans contact - Bloc séparé */
.contact__block.contact__block--links {
  padding: 1.2rem 0;
  background: transparent !important;
  box-shadow: none !important;
  border: none !important;
}

.contact__links-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.contact__link-btn {
  display: inline-block;
  padding: 0.7rem 1.5rem;
  border: 2px solid #5a4a3a;
  border-radius: 30px;
  color: #5a4a3a;
  font-size: 0.85rem;
  font-weight: 500;
  text-decoration: none;
  background: transparent;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.contact__link-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: #5a4a3a;
  transition: left 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: -1;
}

.contact__link-btn:hover {
  color: #fff;
  border-color: #5a4a3a;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(90, 74, 58, 0.3);
}

.contact__link-btn:hover::before {
  left: 0;
}

/* Section Découvrez notre salon */
.section--salon-cta {
  padding: 0;
}

.salon-cta {
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.salon-cta__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.salon-cta__bg img {
  width: 100%;
  height: 120%;
  object-fit: cover;
  object-position: center 55%;
  transform: translateY(0);
  will-change: transform;
}

.salon-cta__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(42, 35, 32, 0.85) 0%, rgba(61, 53, 48, 0.7) 100%);
}

.salon-cta__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 4rem 2rem;
}

.salon-cta__eyebrow {
  display: block;
  color: #d4a574;
  font-size: 0.9rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.salon-cta__title {
  font-family: "Playfair Display", serif;
  font-size: 3rem;
  color: #f4ede4;
  margin-bottom: 1rem;
  font-weight: 600;
}

.salon-cta__text {
  color: rgba(244, 237, 228, 0.8);
  font-size: 1.1rem;
  max-width: 500px;
  margin: 0 auto 2rem;
  line-height: 1.7;
}

@media (max-width: 768px) {
  .salon-cta { min-height: 350px; }
  .salon-cta__title { font-size: 2rem; }
  .salon-cta__text { font-size: 1rem; }
  .salon-cta__content { padding: 3rem 1.5rem; }
  
  /* Désactiver parallaxe sur mobile */
  .hero__bg {
    background-attachment: scroll;
  }
  .salon-cta__bg img {
    height: 100%;
    transform: none !important;
  }
}

.reservation {
  padding-block: 1rem;
  background: #e8ddcf;
  border-top: 1px solid rgba(132, 108, 84, 0.3);
  border-bottom: 1px solid rgba(132, 108, 84, 0.3);
}

.reservation__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.4rem;
}

.reservation__content h2 {
  font-family: "Playfair Display", serif;
  font-size: 1.35rem;
  margin-bottom: 0.25rem;
}

.reservation__content p {
  font-size: 0.9rem;
  color: #5a4634;
}

.reservation__cta {
  max-width: 15rem;
  width: 100%;
}

.section__header {
  margin-bottom: 1.5rem;
  max-width: 40rem;
}

.section__header h2 {
  font-family: "Playfair Display", serif;
  font-size: 1.9rem;
  margin-bottom: 0.8rem;
}

.section__header p {
  color: #6a5541;
  font-size: 0.98rem;
}

.section__header--center {
  text-align: center;
  margin-inline: auto;
}

.section__header--center h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(2rem, 5vw, 2.8rem);
  margin-bottom: 0.5rem;
}

.grid {
  display: grid;
  gap: 1.7rem;
}

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

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

.card {
  background: #ffffff;
  border-radius: 18px;
  padding: 1.6rem 1.5rem 1.5rem;
  box-shadow: 0 18px 40px rgba(26, 18, 11, 0.06);
  border: 1px solid rgba(155, 129, 100, 0.5);
}

.card--highlight {
  border-color: rgba(117, 83, 52, 0.9);
  background: radial-gradient(circle at top left, #f5ebde 0, #ffffff 45%, #f7eee3 100%);
}

.card h3 {
  font-size: 1.15rem;
  margin-bottom: 0.6rem;
}

.card__subtitle {
  font-size: 0.92rem;
  color: #6c5745;
  margin-bottom: 0.8rem;
}

.card p {
  font-size: 0.93rem;
  color: #5a4634;
  margin-bottom: 0.9rem;
}

.card__list {
  font-size: 0.9rem;
  color: #483629;
  margin-bottom: 0.7rem;
}

.card__list li {
  position: relative;
  padding-left: 1.1rem;
}

.card__list li + li {
  margin-top: 0.25rem;
}

.card__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 999px;
  background: #8a6344;
  transform: translateY(-50%);
}

.card__note {
  font-size: 0.8rem;
  color: #8a7460;
}

.studio {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 2.4fr);
  gap: 2.3rem;
  align-items: flex-start;
}

.studio__content p + p {
  margin-top: 0.7rem;
}

.studio__info {
  display: grid;
  gap: 1.1rem;
}

.studio__block {
  padding: 1.1rem 1.1rem;
  border-radius: 14px;
  background: #ffffff;
  border: 1px solid rgba(155, 129, 100, 0.7);
  font-size: 0.9rem;
  color: #5a4634;
}

.studio__block h3 {
  font-size: 1rem;
  margin-bottom: 0.35rem;
}

.contact {
  color: #2a2320;
}

.contact__grid {
  align-items: flex-start;
}

.form {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 18px;
  padding: 1.6rem 1.5rem 1.5rem;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(120, 95, 72, 0.8);
}

.form__group {
  margin-bottom: 0.95rem;
}

.form label {
  display: block;
  font-size: 0.86rem;
  margin-bottom: 0.3rem;
  color: #3b281a;
}

.form input,
.form select,
.form textarea {
  width: 100%;
  padding: 0.55rem 0.7rem;
  border-radius: 10px;
  border: 1px solid rgba(153, 127, 99, 0.85);
  font-family: inherit;
  font-size: 0.9rem;
  outline: none;
  background: rgba(255, 255, 255, 0.95);
}

.form input:focus,
.form select:focus,
.form textarea:focus {
  border-color: #8a6344;
  box-shadow: 0 0 0 1px rgba(138, 99, 68, 0.6);
}

.form__hint {
  margin-top: 0.6rem;
  font-size: 0.78rem;
  color: #6f5a46;
}

.contact__infos {
  display: grid;
  gap: 1.1rem;
  font-size: 0.9rem;
}

.contact__block {
  background: var(--bg-card);
  border-radius: 14px;
  padding: 0.9rem 1rem;
  border: 1px solid var(--border-color);
  color: var(--text-primary);
  transition: background 0.3s ease, border-color 0.3s ease;
}

.contact__block h3 {
  font-size: 1rem;
  margin-bottom: 0.3rem;
}

.contact__socials {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 0.5rem;
  list-style: none;
  padding: 0;
}

.contact__socials a {
  font-size: 0.9rem;
  text-decoration: underline;
  text-decoration-color: rgba(120, 95, 72, 0.9);
  text-underline-offset: 0.2rem;
}

.footer {
  padding-block: 1.4rem 1.6rem;
  background: #110c08;
  color: #e3d3bd;
  font-size: 0.82rem;
}

.footer__inner {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  align-items: center;
  text-align: center;
}

.footer__small {
  opacity: 0.8;
}

.footer__links {
  font-size: 0.75rem;
  opacity: 0.6;
  margin-top: 0.5rem;
}

.footer__links a {
  color: inherit;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.footer__links a:hover {
  opacity: 1;
  text-decoration: underline;
}

.formations__cta {
  margin-top: 2rem;
  text-align: center;
}

/* Nouveaux styles pour la page d'accueil */

.hero__content--centered {
  text-align: left;
  width: 100%;
  max-width: 700px;
  margin-left: 0;
}

@media (min-width: 768px) {
  .hero__content--centered {
    margin-left: 5%;
  }
}

.hero__title--animated {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.hero__title--animated.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.hero__actions--large {
  gap: 1.2rem;
  justify-content: flex-start;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.btn--large {
  padding: 1.1rem 2.2rem;
  font-size: 1rem;
  border-radius: 50px;
  font-weight: 500;
}

.hero__scroll-indicator {
  margin-top: 3rem;
  display: flex;
  justify-content: center;
  z-index: 2;
}

.scroll-mouse {
  width: 24px;
  height: 40px;
  border: 2px solid rgba(255, 255, 255, 0.8);
  border-radius: 12px;
  position: relative;
  animation: mouseFloat 2s ease-in-out infinite;
}

.scroll-wheel {
  width: 4px;
  height: 8px;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 2px;
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  animation: wheelScroll 1.5s ease-in-out infinite;
}

@keyframes mouseFloat {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes wheelScroll {
  0% {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
  50% {
    opacity: 0.5;
    transform: translateX(-50%) translateY(12px);
  }
  100% {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}

.nav-link--instagram {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.section__header--centered {
  text-align: center;
  margin-inline: auto;
  max-width: 100%;
}

.section__header--centered h2 {
  font-size: clamp(2rem, 5vw, 2.8rem);
  margin-bottom: 0.5rem;
}

.section__subtitle {
  font-size: 1.2rem;
  color: #6a5541;
  margin-bottom: 2rem;
}

.prestation-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.gallery-placeholder {
  background: #e8ddcf;
  border-radius: 12px;
  padding: 3rem 1.5rem;
  text-align: center;
  color: #6a5541;
  min-height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.prestation-cta {
  text-align: center;
  margin-top: 1rem;
  margin-bottom: 2.5rem;
}

.formations--with-bg {
  position: relative;
  padding-block: 4rem;
  overflow: hidden;
  background-color: #2a2320;
}

.formations__bg {
  position: absolute;
  inset: 0;
  background-image: url("Fond bandeau formation.png");
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
  z-index: 0;
  opacity: 0.5;
}

.formations__content {
  position: relative;
  z-index: 1;
}

.formations__text {
  max-width: 700px;
}

.formations__eyebrow {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: #d4a574;
  margin-bottom: 1.5rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.formations__star {
  font-size: 0.7rem;
  color: #d4a574;
}

.formations__title {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  margin-bottom: 1.5rem;
  color: #f4ede4;
  font-weight: 400;
  line-height: 1.15;
}

.formations__description {
  font-size: 1.05rem;
  color: #ffffff;
  margin-bottom: 2.5rem;
  line-height: 1.7;
  max-width: 600px;
}

.btn--formations {
  background: #d4a574;
  color: #1b1510;
  border-radius: 50px;
  padding: 1rem 2rem;
  font-size: 1rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn--formations:hover {
  background: #c99a6a;
  transform: translateY(-1px);
}

h2.temoignages__eyebrow,
h2.prestations__eyebrow {
  font-family: "Poppins", sans-serif;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: #3b281a;
  margin-bottom: 1rem;
  font-weight: 500;
}

.temoignages__title,
.prestations__title {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.2rem, 5vw, 3rem);
  margin-bottom: 0.6rem;
  color: #3b281a;
  font-weight: 400;
  line-height: 1.2;
}

.temoignages__subtitle {
  font-size: 0.95rem;
  color: #3b281a;
  margin-bottom: 2rem;
  font-weight: 400;
}

.avis-scroll-wrapper {
  margin-bottom: 2rem;
  position: relative;
  padding: 0.5rem 60px;
}

.avis-scroll-inner {
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
  scroll-snap-type: x mandatory;
  padding: 0.5rem 0;
}

.avis-scroll-inner::-webkit-scrollbar {
  display: none;
}

.avis-nav {
  background: #f4ede4;
  border: none;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #3b281a;
  transition: all 0.2s ease;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
}

.avis-nav:hover {
  background: #e8ddcf;
  transform: translateY(-50%) scale(1.05);
}

.avis-nav--prev {
  left: 0;
}

.avis-nav--next {
  right: 0;
}

.avis-container {
  display: flex;
  gap: 1.5rem;
  will-change: transform;
  transition: transform 0.3s ease;
  padding: 0.5rem 0;
}

.avis-card {
  background: #f4ede4;
  border-radius: 12px;
  padding: 2rem 1.8rem;
  min-width: 320px;
  max-width: 320px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  position: relative;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  scroll-snap-align: center;
}

.avis-quote {
  font-size: 5rem;
  color: #c8c0b0;
  line-height: 0.8;
  font-family: Georgia, serif;
  position: absolute;
  top: 0.8rem;
  left: 1.2rem;
  opacity: 0.6;
  font-weight: 300;
}

.avis-rating {
  margin-bottom: 1rem;
  margin-top: 0.3rem;
  padding-left: 0.3rem;
  z-index: 1;
}

.star {
  color: #d4a574;
  font-size: 1.15rem;
  margin-right: 0.1rem;
  line-height: 1;
}

.star--filled {
  color: #d4a574;
}

.avis-text {
  font-size: 0.95rem;
  color: #3b281a;
  margin-bottom: 1.2rem;
  line-height: 1.6;
  padding-left: 0.3rem;
  margin-top: 0.5rem;
  z-index: 1;
  position: relative;
}

.avis-name {
  font-size: 0.95rem;
  color: #1b1510;
  font-weight: 700;
  margin-bottom: 0.25rem;
  padding-left: 0.3rem;
  z-index: 1;
  position: relative;
}

.avis-meta {
  font-size: 0.8rem;
  color: #8a7460;
  padding-left: 0.3rem;
  z-index: 1;
  position: relative;
}

.temoignages__cta {
  text-align: center;
}

.temoignages__link {
  color: #3b281a;
  font-size: 1rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: color 0.2s ease-out;
  font-weight: 400;
}

.temoignages__link:hover {
  color: #8a6344;
}

.temoignages__link::after {
  content: "";
}

.instagram-logo {
  margin-bottom: 1rem;
  color: #1b1510;
}

.instagram-link {
  display: inline-block;
  font-size: 1.1rem;
  color: #1b1510;
  font-weight: 500;
  margin-bottom: 1rem;
  text-decoration: underline;
  text-underline-offset: 0.3rem;
}

.instagram-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(2rem, 5vw, 2.8rem);
  margin-bottom: 0.5rem;
  color: #1b1510;
}

.instagram-subtitle {
  font-size: 1rem;
  color: #6a5541;
  margin-bottom: 2.5rem;
}

.instagram-feed {
  width: 100%;
}

.instagram-feed iframe {
  min-height: 400px;
}

/* Gallery Carousel */
.gallery-scroll-wrapper {
  margin-bottom: 1.5rem;
  position: relative;
  padding: 0.5rem 60px;
}

.gallery-scroll-inner {
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.gallery-scroll-inner::-webkit-scrollbar {
  display: none;
}

.gallery-nav {
  background: #f4ede4;
  border: none;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #3b281a;
  transition: all 0.2s ease;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
}

.gallery-nav:hover {
  background: #e8ddcf;
  transform: translateY(-50%) scale(1.05);
}

.gallery-nav--prev {
  left: 0;
}

.gallery-nav--next {
  right: 0;
}

.gallery-container {
  display: flex;
  gap: 1rem;
  transition: transform 0.3s ease;
}

.gallery-img {
  width: 280px;
  height: 280px;
  object-fit: cover;
  border-radius: 12px;
  flex-shrink: 0;
}

.gallery-placeholder {
  background: #e8ddcf;
  border-radius: 12px;
  padding: 3rem 1.5rem;
  text-align: center;
  color: #6a5541;
  min-height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact__left {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.horaires-block {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 14px;
  padding: 1.2rem;
  border: 1px solid rgba(120, 95, 72, 0.8);
}

.horaires-block h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: #3b281a;
}

.horaires-block p {
  font-size: 0.95rem;
  color: #5a4634;
  line-height: 1.7;
}

.map-container {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 14px;
  padding: 1.2rem;
  border: 1px solid rgba(120, 95, 72, 0.8);
  overflow: hidden;
}

.map-container iframe {
  border-radius: 8px;
  margin-bottom: 1rem;
}

.map-address {
  font-size: 0.95rem;
  color: #5a4634;
  text-align: center;
  line-height: 1.7;
}

.map-nav-links {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 0.8rem;
  flex-wrap: wrap;
}

.map-nav-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.4rem 0.8rem;
  background: #f7f0e7;
  color: #5a4634;
  text-decoration: none;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 500;
  transition: all 0.2s ease;
  border: 1px solid #e8ddcf;
}

.map-nav-btn:hover {
  background: #3D2B1F;
  color: #fff;
  border-color: #3D2B1F;
}

.map-nav-btn svg {
  flex-shrink: 0;
}

[data-theme="dark"] .map-nav-btn {
  background: #332922;
  color: #d4c8b8;
  border-color: #4a3d35;
}

[data-theme="dark"] .map-nav-btn:hover {
  background: #b8956c;
  color: #1b1510;
  border-color: #b8956c;
}

.contact__right {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.contact__socials li {
  margin-bottom: 0.6rem;
  font-size: 0.95rem;
  color: #2a2320;
}

.contact__socials a {
  color: #5a4634;
  text-decoration: underline;
  text-underline-offset: 0.2rem;
}

.contact__socials a:hover {
  color: #8a6344;
}

.salon-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.videos-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.video-placeholder {
  background: #e8ddcf;
  border-radius: 12px;
  padding: 3rem 1.5rem;
  text-align: center;
  color: #6a5541;
  min-height: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 880px) {
  /* Logo mobile */
  .logo {
    font-size: 0.85rem;
    letter-spacing: 0.08em;
  }
  
  /* Menu mobile */
  .nav {
    position: fixed;
    left: 0;
    right: 0;
    top: 56px;
    background: #1a1512;
    flex-direction: column;
    padding: 1.5rem 1.5rem 2rem;
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.3s ease-out, opacity 0.3s ease-out;
    z-index: 999;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
  }

  .header--open .nav {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .header__cta {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav-item,
  .nav-link {
    width: 100%;
    color: #f4ede4 !important;
    padding: 1rem 0;
    font-size: 1.15rem;
    border-bottom: 1px solid rgba(244, 237, 228, 0.12);
    text-align: center;
  }
  
  .nav-link:last-child {
    border-bottom: none;
  }
  
  .nav-link--instagram {
    justify-content: center;
    display: flex;
    padding-top: 1.2rem;
    border-bottom: none;
  }

  .nav-link::after {
    display: none;
  }

  .nav-item__toggle {
    justify-content: space-between;
    width: 100%;
    padding: 0.15rem 0;
    color: #f4ede4;
  }

  .nav-menu {
    position: static;
    background: transparent;
    box-shadow: none;
    border: none;
    padding-top: 0.1rem;
  }

  .nav-menu__link {
    padding-left: 0.8rem;
    color: #f4ede4;
  }

  .nav-menu__link:hover {
    background: rgba(244, 237, 228, 0.08);
  }

  .hero {
    padding-block: 4.3rem 3.4rem;
  }

  .hero__inner {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero__visual {
    order: -1;
  }

  .section {
    padding-block: 3.6rem;
  }

  .reservation {
    padding-block: 1.1rem 1.2rem;
  }

  .reservation__inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .reservation__cta {
    max-width: 100%;
  }

  .grid--3 {
    grid-template-columns: minmax(0, 1fr);
  }

  .grid--2 {
    grid-template-columns: minmax(0, 1fr);
  }

  .studio {
    grid-template-columns: minmax(0, 1fr);
  }

  .contact__grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 1.5rem;
  }
}

@media (max-width: 520px) {
  .container {
    width: min(100% - 1.6rem, 640px);
  }

  .header__inner {
    padding-block: 0.7rem;
  }

  .hero__text {
    font-size: 0.93rem;
  }

  .hero__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    width: 100%;
  }
}

/* Équipe - Nouveau design */
.equipe__eyebrow {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: #d4a574;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.equipe__star {
  color: #d4a574;
}

.equipe__title {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  color: #2a2320;
  margin-bottom: 1rem;
  font-weight: 400;
}

.equipe__subtitle {
  font-size: 1rem;
  color: #6a5541;
  max-width: 500px;
  margin-inline: auto;
}

.equipe-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.equipe-card {
  background: #ffffff;
  border-radius: 16px;
  display: flex;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.equipe-card__photo {
  width: 160px;
  height: 160px;
  background: #e8ddcf;
  flex-shrink: 0;
  overflow: hidden;
  border-radius: 50%;
  margin: 1.5rem;
}

.equipe-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.equipe-card__content {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.equipe-card__name-row {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  margin-bottom: 0.8rem;
}

.equipe-card__name-row .equipe-card__name {
  margin-bottom: 0;
}

.equipe-card__name-row .equipe-card__insta {
  margin-bottom: 0;
  display: inline-flex;
  align-items: center;
  position: relative;
  top: 0.15rem;
}

.equipe-card__name {
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  color: #2a2320;
  margin-bottom: 0.8rem;
  font-weight: 500;
}

.equipe-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.equipe-tag {
  background: transparent;
  border: 1px solid #c0b5a8;
  color: #6a5541;
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  font-size: 0.8rem;
}

.equipe-card__desc {
  font-size: 0.9rem;
  color: #5a4a3a;
  line-height: 1.6;
  flex: 1;
  margin-bottom: 1rem;
}

.equipe-card__insta {
  color: #6a5541;
  margin-bottom: 1rem;
  display: inline-block;
  transition: color 0.2s;
}

.equipe-card__insta:hover {
  color: #d4a574;
}

.btn--outline {
  background: transparent;
  border: 1px solid #2a2320;
  color: #2a2320;
  padding: 0.7rem 1.2rem;
  font-size: 0.85rem;
  display: inline-block;
  width: auto;
  align-self: flex-start;
}

.btn--outline:hover {
  background: #2a2320;
  color: #ffffff;
}

.btn--small {
  padding: 0.6rem 1rem;
  font-size: 0.8rem;
}

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

@media (max-width: 600px) {
  .equipe-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  .equipe-card__photo {
    width: 120px;
    height: 120px;
    margin: 1rem;
  }
  
  .equipe-card__name-row {
    justify-content: center;
    flex-wrap: wrap;
  }
  
  .equipe-card__tags {
    justify-content: center;
  }
  
  .equipe-card .btn--outline {
    align-self: center;
  }
}

/* Salon hero (photo équipe) */
.salon-hero {
  width: 100%;
  max-height: 500px;
  overflow: hidden;
  margin-top: 0;
}

.salon-hero__img {
  width: 100%;
  height: auto;
  max-height: 500px;
  object-fit: cover;
  object-position: center;
}

/* Hero salon avec fond */
.hero--salon {
  padding-top: 10rem;
}

.hero--salon .scroll-mouse {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
}

.hero__bg--salon {
  background-image: url('images/equipe-hero.jpeg');
  background-size: cover;
  background-position: center;
}

.hero__text--small {
  font-size: 0.95rem;
  opacity: 0.9;
  margin-top: 0.5rem;
}

/* Titre salon visible par défaut */
.hero--salon .hero__title--animated {
  opacity: 1;
  transform: translateY(0);
}

/* Photos et vidéo salon */
.salon-media {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.salon-photos {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.salon-photo {
  width: 100%;
  height: 300px;
  object-fit: cover;
  object-position: center;
  border-radius: 12px;
}

.salon-photo:first-child {
  object-position: center 70%;
}

.salon-video {
  width: 100%;
  display: flex;
  justify-content: center;
}

.salon-video__player {
  width: auto;
  max-width: 100%;
  max-height: 600px;
  border-radius: 12px;
  background: #2a2320;
}

/* Nouvelle mise en page: vidéo à gauche, photos superposées à droite - symétrique */
.salon-media-grid {
  display: flex !important;
  flex-direction: row !important;
  gap: 1.5rem;
  align-items: stretch;
  height: 500px;
}

.salon-video-side {
  flex: 1 1 50%;
  max-width: 50%;
  height: 100%;
}

.salon-video-side .salon-video__player {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  background: #1a1512;
}

.salon-photos-stacked {
  flex: 1 1 50%;
  max-width: 50%;
  display: flex !important;
  flex-direction: column !important;
  gap: 1.5rem;
  height: 100%;
}

.salon-photo-stacked {
  width: 100%;
  height: calc(50% - 0.75rem);
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.salon-photo-stacked:first-child {
  object-position: center 70%;
}

.salon-photo-stacked:last-child {
  object-position: center center;
}

.salon-photo-stacked:hover {
  transform: scale(1.02);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.35);
}

@media (max-width: 900px) {
  .salon-media-grid {
    flex-direction: column !important;
    height: auto;
  }
  
  .salon-video-side {
    flex: none;
    max-width: 100%;
    height: 350px;
  }
  
  .salon-photos-stacked {
    flex: none;
    max-width: 100%;
    flex-direction: row !important;
    height: 220px;
  }
  
  .salon-photo-stacked {
    width: 50%;
    height: 100%;
  }
}

@media (max-width: 600px) {
  .salon-video-side {
    height: 280px;
  }
  
  .salon-photos-stacked {
    flex-direction: column !important;
    height: auto;
  }
  
  .salon-photo-stacked {
    width: 100%;
    height: 180px;
  }
}

/* Vidéo pleine largeur */
.salon-video-fullwidth {
  width: 100%;
  padding: 0;
  margin: 0;
}

.salon-video__player-fullwidth {
  width: 100%;
  height: 600px;
  display: block;
  object-fit: cover;
  image-rendering: high-quality;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}

@media (max-width: 600px) {
  .salon-photos {
    grid-template-columns: 1fr;
  }
  
  .salon-photo {
    height: 200px;
  }
}

/* ============================================
   ANIMATIONS DYNAMIQUES
   ============================================ */

/* Animation fade-in au scroll */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate-on-scroll.animated {
  opacity: 1;
  transform: translateY(0);
}

/* Animation fade-in depuis la gauche */
.animate-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate-left.animated {
  opacity: 1;
  transform: translateX(0);
}

/* Animation fade-in depuis la droite */
.animate-right {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate-right.animated {
  opacity: 1;
  transform: translateX(0);
}

/* Animation scale */
.animate-scale {
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-scale.animated {
  opacity: 1;
  transform: scale(1);
}

/* Animation stagger pour les listes */
.animate-stagger > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.animate-stagger.animated > *:nth-child(1) { transition-delay: 0s; }
.animate-stagger.animated > *:nth-child(2) { transition-delay: 0.1s; }
.animate-stagger.animated > *:nth-child(3) { transition-delay: 0.2s; }
.animate-stagger.animated > *:nth-child(4) { transition-delay: 0.3s; }
.animate-stagger.animated > *:nth-child(5) { transition-delay: 0.4s; }
.animate-stagger.animated > *:nth-child(6) { transition-delay: 0.5s; }
.animate-stagger.animated > *:nth-child(7) { transition-delay: 0.6s; }
.animate-stagger.animated > *:nth-child(8) { transition-delay: 0.7s; }

.animate-stagger.animated > * {
  opacity: 1;
  transform: translateY(0);
}

/* Animation avec effet scale */
.animate-scale-stagger > * {
  opacity: 0;
  transform: scale(0.8);
  transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.animate-scale-stagger.animated > *:nth-child(1) { transition-delay: 0s; }
.animate-scale-stagger.animated > *:nth-child(2) { transition-delay: 0.08s; }
.animate-scale-stagger.animated > *:nth-child(3) { transition-delay: 0.16s; }
.animate-scale-stagger.animated > *:nth-child(4) { transition-delay: 0.24s; }
.animate-scale-stagger.animated > *:nth-child(5) { transition-delay: 0.32s; }
.animate-scale-stagger.animated > *:nth-child(6) { transition-delay: 0.4s; }
.animate-scale-stagger.animated > *:nth-child(7) { transition-delay: 0.48s; }
.animate-scale-stagger.animated > *:nth-child(8) { transition-delay: 0.56s; }

.animate-scale-stagger.animated > * {
  opacity: 1;
  transform: scale(1);
}

/* Animation slide depuis le bas avec rebond */
.animate-bounce-up {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.animate-bounce-up.animated {
  opacity: 1;
  transform: translateY(0);
}

/* Animation texte typing effect */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Animation pour les titres */
.animate-title {
  opacity: 0;
  animation: fadeInUp 0.8s ease forwards;
}

.animate-title.animated {
  animation: fadeInUp 0.8s ease forwards;
}

/* Délais pour animations en cascade */
.delay-1 { transition-delay: 0.1s !important; }
.delay-2 { transition-delay: 0.2s !important; }
.delay-3 { transition-delay: 0.3s !important; }
.delay-4 { transition-delay: 0.4s !important; }
.delay-5 { transition-delay: 0.5s !important; }

/* ========================================
   SECTION PRIVATISATION
   ======================================== */

.section--privatisation {
  background: linear-gradient(135deg, #fdfbf8 0%, #f7f0e7 50%, #f0e6d8 100%);
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

.section--privatisation::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 20%, rgba(184, 149, 108, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(212, 165, 116, 0.08) 0%, transparent 50%);
  pointer-events: none;
}

.privatisation__eyebrow {
  display: inline-block;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  color: #b8956c;
  margin-bottom: 0.8rem;
}

.privatisation__title {
  font-family: "Playfair Display", serif;
  font-size: clamp(2rem, 5vw, 3rem);
  color: #2a2320;
  margin-bottom: 0.8rem;
}

.privatisation__subtitle {
  font-size: 1.15rem;
  color: #6a5541;
  max-width: 600px;
  margin: 0 auto;
}

.privatisation__intro {
  text-align: center;
  max-width: 700px;
  margin: 2rem auto 3rem;
  font-size: 1.05rem;
  line-height: 1.8;
  color: #5a4a3a;
}

.privatisation__intro strong {
  color: #8B5A2B;
  font-weight: 600;
}

/* Grille des cartes */
.privatisation__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto 3rem;
}

@media (max-width: 900px) {
  .privatisation__grid {
    grid-template-columns: 1fr;
    max-width: 400px;
  }
}

/* Cartes */
.privatisation__card {
  background: #fff;
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(184, 149, 108, 0.15);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  position: relative;
}

.privatisation__card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.privatisation__card--featured {
  background: linear-gradient(145deg, #2a2320 0%, #3d3530 100%);
  color: #fff;
  transform: scale(1.05);
  border: none;
}

.privatisation__card--featured:hover {
  transform: scale(1.05) translateY(-8px);
}

.privatisation__card-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #d4a574 0%, #b8956c 100%);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.4rem 1rem;
  border-radius: 20px;
  letter-spacing: 0.02em;
  box-shadow: 0 4px 15px rgba(184, 149, 108, 0.4);
}

.privatisation__card-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.privatisation__card-title {
  font-family: "Playfair Display", serif;
  font-size: 1.4rem;
  margin-bottom: 0.8rem;
  color: #2a2320;
}

.privatisation__card--featured .privatisation__card-title {
  color: #fff;
}

.privatisation__card-desc {
  font-size: 0.95rem;
  color: #6a5541;
  margin-bottom: 1.2rem;
  line-height: 1.6;
}

.privatisation__card--featured .privatisation__card-desc {
  color: rgba(255, 255, 255, 0.8);
}

.privatisation__card-list {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
}

.privatisation__card-list li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  font-size: 0.9rem;
  color: #5a4a3a;
  border-bottom: 1px solid rgba(184, 149, 108, 0.1);
}

.privatisation__card--featured .privatisation__card-list li {
  color: rgba(255, 255, 255, 0.85);
  border-bottom-color: rgba(255, 255, 255, 0.1);
}

.privatisation__card-list li:last-child {
  border-bottom: none;
}

.privatisation__card-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #b8956c;
  font-weight: bold;
}

.privatisation__card--featured .privatisation__card-list li::before {
  color: #d4a574;
}

/* Tags occasions */
.privatisation__occasions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.8rem;
  margin-bottom: 3rem;
}

.privatisation__tag {
  background: #fff;
  border: 1px solid rgba(184, 149, 108, 0.3);
  padding: 0.6rem 1.2rem;
  border-radius: 30px;
  font-size: 0.9rem;
  color: #5a4a3a;
  transition: all 0.3s ease;
}

.privatisation__tag:hover {
  background: #b8956c;
  color: #fff;
  border-color: #b8956c;
  transform: scale(1.05);
}

/* CTA */
.privatisation__cta {
  text-align: center;
}

.privatisation__cta-text {
  font-size: 1.1rem;
  color: #5a4a3a;
  margin-bottom: 1.5rem;
}

.btn--privatisation {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: #3D2B1F;
  color: #fff;
  padding: 1rem 2rem;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
  margin: 0 0.5rem;
}

.btn--privatisation:hover {
  background: #4A3219;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(139, 90, 43, 0.3);
}

.btn--privatisation-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: transparent;
  color: #3D2B1F;
  padding: 1rem 2rem;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  border: 2px solid #3D2B1F;
  transition: all 0.3s ease;
  margin: 0 0.5rem;
}

.btn--privatisation-secondary:hover {
  background: #3D2B1F;
  color: #fff;
}

/* Mode sombre - bouton téléphone privatisation */
[data-theme="dark"] .btn--privatisation-secondary {
  color: #f4ede4;
  border-color: rgba(244, 237, 228, 0.5);
}

[data-theme="dark"] .btn--privatisation-secondary:hover {
  background: rgba(244, 237, 228, 0.15);
  border-color: #f4ede4;
  color: #f4ede4;
}

[data-theme="dark"] .btn--privatisation-secondary svg {
  stroke: #f4ede4;
}

/* Bouton CTA dans hero prestations */
.prestations-hero__cta {
  margin-top: 2rem;
}

/* Bouton CTA en bas des prestations */
.prestations-cta {
  text-align: center;
  padding: 3rem 0;
  margin-top: 2rem;
}

.prestations-cta__text {
  font-size: 1.2rem;
  color: #5a4a3a;
  margin-bottom: 1.5rem;
}

[data-theme="dark"] .prestations-cta__text {
  color: #a09080;
}

@media (max-width: 600px) {
  .privatisation__cta {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
  }
  
  .btn--privatisation,
  .btn--privatisation-secondary {
    margin: 0;
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }
}

/* ========================================
   OPTIMISATIONS MOBILE COMPLÈTES
   ======================================== */

@media (max-width: 768px) {
  /* Hero Section Mobile */
  .hero {
    min-height: 90vh;
    padding: 1rem;
  }
  
  .hero h1 {
    font-size: clamp(2rem, 8vw, 2.8rem);
    line-height: 1.2;
  }
  
  .hero__title--accent {
    font-size: clamp(2.2rem, 9vw, 3rem);
  }
  
  .hero__eyebrow {
    font-size: 0.75rem;
    letter-spacing: 0.1em;
  }
  
  .hero__text {
    font-size: 0.9rem;
    padding: 0 0.5rem;
  }
  
  .hero__content--centered {
    margin-left: 0;
    text-align: center;
    padding: 0 1rem;
  }
  
  /* Boutons Mobile */
  .hero__actions {
    flex-direction: column;
    gap: 0.8rem;
    width: 100%;
    padding: 0 1rem;
  }
  
  .hero__actions .btn {
    width: 100%;
    padding: 1rem;
    font-size: 0.95rem;
  }
  
  /* Scroll Mouse Mobile */
  .scroll-mouse {
    transform: scale(0.8) translateX(-50%);
  }
  
  /* Sections Mobile */
  .section {
    padding: 3rem 0;
  }
  
  .section__header h2,
  .temoignages__title,
  .privatisation__title {
    font-size: clamp(1.6rem, 6vw, 2.2rem);
  }
  
  .section__header h3 {
    font-size: clamp(1.8rem, 7vw, 2.5rem);
  }
  
  /* Prestations Cards Mobile */
  .prestations-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 0 1rem;
  }
  
  .prestation-category__photos {
    gap: 0.5rem;
  }
  
  .prestation-category__photos img {
    height: 200px;
  }
  
  /* Images carrousel prestations - format carré plus large */
  .gallery-img {
    width: 75vw;
    height: 75vw;
    max-width: 350px;
    max-height: 350px;
    object-fit: cover;
    border-radius: 16px;
  }
  
  .gallery-scroll-wrapper {
    padding: 0.5rem 50px;
  }
  
  .gallery-nav {
    width: 40px;
    height: 40px;
  }
  
  .gallery-container {
    gap: 1rem;
  }
  
  /* Témoignages Mobile */
  .avis-scroll-wrapper {
    padding: 0.5rem 40px;
    position: relative;
  }
  
  .avis-scroll-inner {
    scroll-snap-type: x mandatory;
    scroll-padding: 0 40px;
  }
  
  .avis-container {
    gap: 1rem;
    padding-left: 10px;
    padding-right: 10px;
  }
  
  .avis-card {
    min-width: calc(100vw - 100px);
    max-width: calc(100vw - 100px);
    padding: 1rem;
    box-sizing: border-box;
    scroll-snap-align: center;
    overflow: hidden;
  }
  
  .avis-quote {
    display: none;
  }
  
  .avis-text {
    font-size: 0.85rem;
    line-height: 1.5;
    word-wrap: break-word;
    overflow-wrap: break-word;
    white-space: normal;
    margin-bottom: 0.8rem;
    padding-left: 0;
    padding-right: 0;
  }
  
  .avis-meta {
    font-size: 0.8rem;
    padding-left: 0;
  }
  
  .avis-rating {
    margin-bottom: 0.6rem;
    padding-left: 0;
  }
  
  .star {
    font-size: 1rem;
  }
  
  .avis-nav {
    display: flex;
    width: 32px;
    height: 32px;
  }
  
  .avis-nav--prev {
    left: 5px;
  }
  
  .avis-nav--next {
    right: 8px;
  }
  
  .temoignages__eyebrow {
    font-size: 0.8rem;
  }
  
  .temoignages__subtitle {
    font-size: 0.9rem;
    padding: 0 1rem;
  }
  
  /* Privatisation Mobile */
  .privatisation__card {
    padding: 1.5rem;
  }
  
  .privatisation__card--featured {
    transform: none;
  }
  
  .privatisation__card--featured:hover {
    transform: translateY(-5px);
  }
  
  .privatisation__card-title {
    font-size: 1.2rem;
  }
  
  .privatisation__intro {
    font-size: 0.95rem;
    padding: 0 1rem;
  }
  
  .privatisation__occasions {
    padding: 0 1rem;
  }
  
  .privatisation__tag {
    font-size: 0.8rem;
    padding: 0.5rem 1rem;
  }
  
  /* Contact Section Mobile */
  .contact {
    flex-direction: column;
    gap: 2rem;
    text-align: center;
  }
  
  .contact__info,
  .contact__socials,
  .contact__hours {
    width: 100%;
  }
  
  .contact__socials a {
    justify-content: center;
  }
  
  /* Instagram Section Mobile */
  .instagram-feed {
    padding: 0 1rem;
  }
  
  .lightwidget-widget {
    min-height: 300px !important;
  }
  
  /* Footer Mobile */
  .footer {
    padding: 1.5rem 1rem;
    text-align: center;
  }
  
  .footer__inner {
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .footer__small {
    font-size: 0.75rem;
  }
  
  /* Reservation Banner Mobile */
  .reservation {
    padding: 2rem 1rem;
  }
  
  .reservation__content h2 {
    font-size: 1.3rem;
  }
  
  .reservation__content p {
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  /* Extra Small Screens */
  .hero h1 {
    font-size: 1.8rem;
  }
  
  .hero__title--accent {
    font-size: 2rem;
  }
  
  .logo {
    font-size: 0.85rem;
  }
  
  .btn--reserver {
    padding: 0.5rem 0.8rem;
    font-size: 0.8rem;
  }
  
  .section__header h2 {
    font-size: 1.4rem;
  }
  
  .section__header h3 {
    font-size: 1.6rem;
  }
  
  .avis-card {
    min-width: 260px;
    padding: 1.2rem;
  }
  
  .privatisation__card-icon {
    font-size: 2rem;
  }
  
  .equipe-card__photo {
    width: 120px;
    height: 120px;
    margin: 1rem;
  }
  
  .equipe-card__name {
    font-size: 1.1rem;
  }
  
  .equipe-card__desc {
    font-size: 0.85rem;
  }
  
  /* Reduce spacing on very small screens */
  .section {
    padding: 2rem 0;
  }
  
  .container {
    padding: 0 0.8rem;
  }
}

/* ===== MODE SOMBRE - STYLES ADDITIONNELS ===== */
[data-theme="dark"] .avis-card {
  background: #332922;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

[data-theme="dark"] .avis-text,
[data-theme="dark"] .avis-meta {
  color: #c8c0b0;
}

[data-theme="dark"] .equipe-card {
  background: #332922;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

[data-theme="dark"] .equipe-card__name {
  color: #f4ede4;
}

[data-theme="dark"] .equipe-card__desc {
  color: #a09080;
}

[data-theme="dark"] .equipe-tag {
  background: #3d2f28;
  color: #d4c8b8;
  border-color: #4a3d35;
}

[data-theme="dark"] .horaires-block,
[data-theme="dark"] .map-container {
  background: #332922;
  border-color: #4a3d35;
}

[data-theme="dark"] .horaires-block h3,
[data-theme="dark"] .contact__block h3 {
  color: #f4ede4;
}

[data-theme="dark"] .horaires-block p,
[data-theme="dark"] .map-address {
  color: #a09080;
}

[data-theme="dark"] .section__header h2,
[data-theme="dark"] .section__header h3,
[data-theme="dark"] .temoignages__title {
  color: #f4ede4;
}

[data-theme="dark"] .section__header p,
[data-theme="dark"] .temoignages__subtitle {
  color: #a09080;
}

[data-theme="dark"] .privatisation__card {
  background: #2a2825;
  border-color: #3a3835;
}

[data-theme="dark"] .privatisation__card-title {
  color: #f4ede4;
}

[data-theme="dark"] .privatisation__card-desc,
[data-theme="dark"] .privatisation__card-list li {
  color: #a09080;
}

[data-theme="dark"] .privatisation__tag {
  background: #3d2f28;
  color: #d4c8b8;
  border-color: #4a3d35;
}

[data-theme="dark"] .privatisation__eyebrow {
  color: #d4a574;
}

[data-theme="dark"] .privatisation__title,
[data-theme="dark"] .privatisation__subtitle {
  color: #f4ede4;
}

[data-theme="dark"] .footer {
  background: #1a1410;
  color: #b0a090;
}

[data-theme="dark"] .btn--outline {
  border-color: #4a3d35;
  color: #f4ede4;
}

[data-theme="dark"] .btn--ghost {
  border-color: #d4a574;
  color: #f4ede4;
}

[data-theme="dark"] .contact__link-btn {
  border-color: #6a5a4a;
  color: #c8c0b0;
}

[data-theme="dark"] .contact__link-btn:hover {
  background: #6a5a4a;
  color: #f4ede4;
}

[data-theme="dark"] .contact__link-btn::before {
  background: #6a5a4a;
}

[data-theme="dark"] .contact__socials a {
  color: #d4a574;
}

[data-theme="dark"] .reservation {
  background: #2a211c;
}

[data-theme="dark"] .reservation h2,
[data-theme="dark"] .reservation p {
  color: #f4ede4;
}

[data-theme="dark"] .prestation-category h2 {
  color: #f4ede4;
}

[data-theme="dark"] .instagram-title {
  color: #f4ede4;
}

[data-theme="dark"] .instagram-subtitle {
  color: #a09080;
}

[data-theme="dark"] .salon-cta__overlay {
  background: linear-gradient(135deg, rgba(26, 24, 21, 0.9) 0%, rgba(42, 40, 37, 0.8) 100%);
}

/* Boutons et liens en mode sombre */
[data-theme="dark"] .btn--ghost,
[data-theme="dark"] .btn--ghost.btn--large {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.4);
  color: #fff !important;
  text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

[data-theme="dark"] .btn--ghost:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.6);
}

[data-theme="dark"] .btn--formations {
  background: rgba(255, 255, 255, 0.15);
  color: #f4ede4;
  border-color: rgba(255, 255, 255, 0.3);
}

[data-theme="dark"] .temoignages__link {
  color: #d4a574 !important;
}

[data-theme="dark"] .temoignages__link:hover {
  color: #e8c090 !important;
}

/* Section témoignages complète */
[data-theme="dark"] .temoignages__eyebrow {
  color: #d4a574;
}

/* Section privatisation sur accueil */
[data-theme="dark"] .privatisation__eyebrow {
  color: #d4a574 !important;
}

[data-theme="dark"] .privatisation__title,
[data-theme="dark"] .privatisation h2,
[data-theme="dark"] .privatisation h3 {
  color: #f4ede4 !important;
  -webkit-text-fill-color: #f4ede4 !important;
  background: none !important;
  -webkit-background-clip: unset !important;
}

[data-theme="dark"] .privatisation__subtitle,
[data-theme="dark"] .privatisation p {
  color: #c8c0b0 !important;
}

[data-theme="dark"] .section--light {
  background: #242220;
}

/* Section formations */
[data-theme="dark"] .formation-card {
  background: #332922;
  border-color: #4a3d35;
}

[data-theme="dark"] .formation-card__title {
  color: #f4ede4;
}

[data-theme="dark"] .formation-card__desc {
  color: #a09080;
}

[data-theme="dark"] .formation-badge {
  background: #3a3835;
  color: #c8c0b0;
}

/* Prestations */
[data-theme="dark"] .prestation-card {
  background: #2a2825;
  border-color: #3a3835;
}

[data-theme="dark"] .prestation-card__title {
  color: #f4ede4;
}

[data-theme="dark"] .prestation-card__info {
  color: #a09080;
}

/* Filtres */
[data-theme="dark"] .filter-btn {
  background: #2a2825;
  color: #c8c0b0;
  border-color: #3a3835;
}

[data-theme="dark"] .filter-btn.active,
[data-theme="dark"] .filter-btn:hover {
  background: #3D2B1F;
  color: #f4ede4;
}

[data-theme="dark"] .prestations-filters,
[data-theme="dark"] .formation-filters {
  background: rgba(26, 24, 21, 0.95);
  border-color: #3a3835;
}

/* Hero pages internes */
[data-theme="dark"] .prestations-hero,
[data-theme="dark"] .formations-hero {
  background: #1a1815;
}

[data-theme="dark"] .prestations-hero h1,
[data-theme="dark"] .formations-hero h1 {
  color: #f4ede4;
}

[data-theme="dark"] .prestations-hero p,
[data-theme="dark"] .formations-hero p {
  color: #a09080;
}

/* Header opaque en mode sombre */
[data-theme="dark"] .header--opaque {
  background: rgba(26, 24, 21, 0.98);
  border-bottom-color: #3a3835;
}

[data-theme="dark"] .header--opaque .logo,
[data-theme="dark"] .header--opaque .nav a,
[data-theme="dark"] .header--scrolled .logo,
[data-theme="dark"] .header--scrolled .nav a {
  color: #f4ede4;
  text-shadow: none;
}

/* Titres et textes généraux */
[data-theme="dark"] h1, 
[data-theme="dark"] h2, 
[data-theme="dark"] h3 {
  color: #f4ede4;
}

[data-theme="dark"] p {
  color: #c8c0b0;
}

/* Salon intro section */
[data-theme="dark"] .salon-cta h2,
[data-theme="dark"] .salon-cta h3 {
  color: #f4ede4;
}

[data-theme="dark"] .salon-cta p {
  color: #c8c0b0;
}

/* Salon page */
[data-theme="dark"] .salon-section h2 {
  color: #f4ede4;
}

[data-theme="dark"] .salon-section p {
  color: #c8c0b0;
}

/* Avis names */
[data-theme="dark"] .avis-name {
  color: #f4ede4;
}

/* Instagram section */
[data-theme="dark"] .instagram-link {
  color: #d4a574;
}

/* Réservation bandeau */
[data-theme="dark"] .reservation__title,
[data-theme="dark"] .reservation h2 {
  color: #f4ede4;
}

[data-theme="dark"] .reservation__text,
[data-theme="dark"] .reservation p {
  color: #c8c0b0;
}

/* ===== FORMATIONS PAGE - MODE SOMBRE ===== */
[data-theme="dark"] .formations-section__title {
  color: #f4ede4 !important;
}

[data-theme="dark"] .formations-section__subtitle {
  color: #a09080 !important;
}

[data-theme="dark"] .formation-card {
  background: #2a2825;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

[data-theme="dark"] .formation-card__content {
  background: #2a2825;
}

[data-theme="dark"] .formation-card__title {
  color: #f4ede4 !important;
}

[data-theme="dark"] .formation-card__desc {
  color: #a09080 !important;
}

[data-theme="dark"] .formation-card__info {
  background: #3d2f28;
  color: #d4c8b8;
}

[data-theme="dark"] .formation-card__price {
  color: #d4a574 !important;
  font-weight: 700;
}

[data-theme="dark"] .formation-card__footer {
  border-color: #3a3835;
}

[data-theme="dark"] .formations-hero,
[data-theme="dark"] .formation-hero {
  background: #2a211c !important;
}

[data-theme="dark"] .formation-hero h1 {
  color: #f4ede4 !important;
}

[data-theme="dark"] .formation-hero h1 span {
  color: #d4a574 !important;
}

[data-theme="dark"] .formation-hero__eyebrow {
  color: #d4a574 !important;
}

[data-theme="dark"] .formation-hero__subtitle {
  color: #b0a090 !important;
}

[data-theme="dark"] .formations-hero__title,
[data-theme="dark"] .formations-hero h1 {
  color: #f4ede4 !important;
}

[data-theme="dark"] .formations-hero__text,
[data-theme="dark"] .formations-hero p {
  color: #a09080 !important;
}

[data-theme="dark"] .formations-hero__tagline {
  color: #d4a574 !important;
}

/* Blocs d'avantages formations */
[data-theme="dark"] .formation-features,
[data-theme="dark"] .formations-features {
  background: #242220;
}

[data-theme="dark"] .formation-feature,
[data-theme="dark"] .feature-card {
  background: #2a2825;
  border-color: #3a3835;
}

[data-theme="dark"] .formation-feature h4,
[data-theme="dark"] .feature-card h4 {
  color: #f4ede4 !important;
}

[data-theme="dark"] .formation-feature p,
[data-theme="dark"] .feature-card p {
  color: #a09080 !important;
}

/* ===== PRESTATIONS PAGE - MODE SOMBRE ===== */
[data-theme="dark"] .prestations-hero {
  background: #2a211c !important;
}

[data-theme="dark"] .prestations-hero__title,
[data-theme="dark"] .prestations-hero h1 {
  color: #f4ede4 !important;
}

[data-theme="dark"] .prestations-hero__text,
[data-theme="dark"] .prestations-hero p {
  color: #a09080 !important;
}

[data-theme="dark"] .presta-card {
  background: #332922;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

[data-theme="dark"] .presta-card__content {
  background: #2a2825;
}

[data-theme="dark"] .presta-card__title {
  color: #f4ede4 !important;
}

[data-theme="dark"] .presta-card__desc {
  color: #a09080 !important;
}

[data-theme="dark"] .presta-card__meta {
  color: #c8c0b0;
}

/* ===== PRIVATISATION SECTION - MODE SOMBRE ===== */
[data-theme="dark"] .section--privatisation {
  background: #2a211c !important;
}

[data-theme="dark"] .section--privatisation .privatisation__eyebrow {
  color: #d4a574 !important;
}

[data-theme="dark"] .section--privatisation .privatisation__title {
  color: #f4ede4 !important;
  -webkit-text-fill-color: #f4ede4 !important;
  background: none !important;
}

[data-theme="dark"] .section--privatisation .privatisation__subtitle {
  color: #a09080 !important;
}

/* Section "Ce qui est inclus" */
[data-theme="dark"] .inclus-section {
  background: #2a211c;
}

[data-theme="dark"] .inclus-content h2 {
  color: #f4ede4 !important;
}

[data-theme="dark"] .inclus-content h2 span {
  color: #d4a574 !important;
}

[data-theme="dark"] .inclus-content p {
  color: #a09080 !important;
}

[data-theme="dark"] .inclus-list li {
  color: #c8c0b0 !important;
}

[data-theme="dark"] .inclus-list svg {
  color: #d4a574;
}

/* Sections générales avec fond clair */
[data-theme="dark"] .section--light,
[data-theme="dark"] .formations-section,
[data-theme="dark"] .prestations-section {
  background: #1f1714 !important;
}

/* Filtres formations/prestations */
[data-theme="dark"] .formation-filters,
[data-theme="dark"] .prestations-filters {
  background: rgba(31, 23, 20, 0.98) !important;
  border-color: #4a3d35;
}

[data-theme="dark"] .filter-btn {
  background: #332922;
  color: #d4c8b8 !important;
  border-color: #4a3d35;
}

[data-theme="dark"] .filter-btn:hover,
[data-theme="dark"] .filter-btn.active {
  background: #3D2B1F;
  color: #f4ede4 !important;
  border-color: #3D2B1F;
}

/* Cards prestations */
[data-theme="dark"] .prestations-grid {
  background: transparent;
}

/* Formation card footer */
[data-theme="dark"] .formation-card__footer {
  background: #2a2825;
  border-top-color: #3a3835;
}

/* Salon page */
[data-theme="dark"] .salon-hero__content h1,
[data-theme="dark"] .salon-hero__title {
  color: #f4ede4 !important;
}

[data-theme="dark"] .salon-hero__text {
  color: #c8c0b0 !important;
}

[data-theme="dark"] .equipe-section,
[data-theme="dark"] .salon-photos,
[data-theme="dark"] .salon-video-fullwidth {
  background: #1f1714;
}

[data-theme="dark"] .salon-media-grid {
  background: transparent;
}

[data-theme="dark"] .salon-video-side .salon-video__player {
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

[data-theme="dark"] .salon-photo-stacked {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

[data-theme="dark"] .salon-photo-stacked:hover {
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.5);
}

[data-theme="dark"] .equipe-section h2 {
  color: #f4ede4 !important;
}

/* Hero formations - tagline */
[data-theme="dark"] .formations-hero__tagline,
[data-theme="dark"] .hero__tagline {
  color: #d4a574 !important;
}

/* ===== RÉSEAUX SOCIAUX - MODE SOMBRE ===== */
[data-theme="dark"] .contact__socials {
  color: #c8c0b0 !important;
}

[data-theme="dark"] .contact__socials li {
  color: #c8c0b0 !important;
}

[data-theme="dark"] .contact__socials a {
  color: #d4a574 !important;
}

[data-theme="dark"] .contact__socials a:hover {
  color: #e8c090 !important;
}

/* Instagram logos */
[data-theme="dark"] .nav-link--instagram svg,
[data-theme="dark"] .equipe-card__insta svg {
  fill: #d4a574 !important;
  color: #d4a574 !important;
}

[data-theme="dark"] .equipe-card__insta {
  color: #d4a574 !important;
}

/* ===== PAGE PRIVATISATION - MODE SOMBRE ===== */
[data-theme="dark"] .priv-hero {
  background: linear-gradient(135deg, #2a2520 0%, #352d28 50%, #3d352f 100%) !important;
}

[data-theme="dark"] .priv-hero__title {
  color: #f4ede4 !important;
}

[data-theme="dark"] .priv-hero__title span {
  background: linear-gradient(135deg, #d4a574 0%, #b8956c 50%, #c9a86c 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

[data-theme="dark"] .priv-hero__subtitle {
  color: #a09080 !important;
}

[data-theme="dark"] .priv-hero__badge {
  background: rgba(184, 149, 108, 0.15);
  border-color: rgba(184, 149, 108, 0.3);
  color: #d4a574;
}

[data-theme="dark"] .priv-experience {
  background: #1a1815 !important;
}

[data-theme="dark"] .priv-experience__title {
  color: #f4ede4 !important;
}

[data-theme="dark"] .priv-formula {
  background: #2a2825 !important;
  border-color: #3a3835 !important;
}

[data-theme="dark"] .priv-formula__badge {
  background: rgba(212, 165, 116, 0.2);
  color: #d4a574;
}

[data-theme="dark"] .priv-formula__title {
  color: #f4ede4 !important;
}

[data-theme="dark"] .priv-formula__price {
  color: #d4a574 !important;
}

[data-theme="dark"] .priv-formula__list li {
  color: #c8c0b0 !important;
}

[data-theme="dark"] .priv-formula:last-child {
  background: #352d28 !important;
}

[data-theme="dark"] .priv-occasions {
  background: #242220 !important;
}

[data-theme="dark"] .priv-occasions__title {
  color: #f4ede4 !important;
}

[data-theme="dark"] .priv-occasion-card {
  background: #2a2825 !important;
  border-color: #3a3835 !important;
}

[data-theme="dark"] .priv-occasion-card__title {
  color: #f4ede4 !important;
}

[data-theme="dark"] .priv-cta {
  background: linear-gradient(135deg, #2a2520 0%, #352d28 100%) !important;
}

[data-theme="dark"] .priv-cta__title {
  color: #f4ede4 !important;
}

[data-theme="dark"] .priv-cta__subtitle {
  color: #a09080 !important;
}

/* ===== BOUTONS FAQ/MENTIONS - MODE SOMBRE ===== */
[data-theme="dark"] .contact__link-btn {
  border-color: #5a4535 !important;
  color: #d4c8b8 !important;
  background: transparent !important;
}

[data-theme="dark"] .contact__link-btn:hover {
  background: #3d2f28 !important;
  border-color: #d4a574 !important;
  color: #f4ede4 !important;
}

[data-theme="dark"] .contact__block--links {
  background: transparent !important;
}

/* ===== AUTRES ÉLÉMENTS - MODE SOMBRE ===== */
[data-theme="dark"] .contact__block h3 {
  color: #f4ede4 !important;
}

[data-theme="dark"] .horaires-block p,
[data-theme="dark"] .horaires-block span {
  color: #c8c0b0 !important;
}

[data-theme="dark"] .map-address {
  color: #a09080 !important;
}

/* Header nav links en mode sombre */
[data-theme="dark"] .header .nav-link {
  color: #f4ede4;
}

[data-theme="dark"] .header .logo {
  color: #f4ede4;
}

[data-theme="dark"] .header .logo__accent {
  color: #d4a574;
}

/* Bouton réserver header */
[data-theme="dark"] .btn--reserver {
  background: #3D2B1F;
  color: #f4ede4;
}

/* Prestation cards content */
[data-theme="dark"] .presta-card__btn {
  background: #3D2B1F;
  color: #f4ede4;
}

/* Formation cards button */
[data-theme="dark"] .formation-card__btn {
  background: #3D2B1F;
  color: #f4ede4;
}

/* Planity button */
[data-theme="dark"] .btn--planity {
  background: #3D2B1F;
  color: #f4ede4;
}

/* Section contrast */
[data-theme="dark"] .section--contrast {
  background: #261d18 !important;
}

/* Cartes privatisation accueil */
[data-theme="dark"] .privatisation__card {
  background: #332922 !important;
  border-color: #4a3d35 !important;
}

[data-theme="dark"] .privatisation__card-icon {
  color: #d4a574;
}

[data-theme="dark"] .privatisation__card-title {
  color: #f4ede4 !important;
}

[data-theme="dark"] .privatisation__card-desc {
  color: #a09080 !important;
}

[data-theme="dark"] .privatisation__card-list li {
  color: #c8c0b0 !important;
}

[data-theme="dark"] .privatisation__card-tag {
  background: #3a3835;
  color: #c8c0b0;
}

/* Scroll animations dark */
[data-theme="dark"] .scroll-mouse {
  border-color: rgba(244, 237, 228, 0.5);
}

[data-theme="dark"] .scroll-wheel {
  background: #f4ede4;
}

/* Nav toggle mobile */
[data-theme="dark"] .nav-toggle span {
  background: #f4ede4;
}

/* Mobile nav */
[data-theme="dark"] .nav.active {
  background: rgba(31, 23, 20, 0.98);
}

[data-theme="dark"] .nav.active .nav-link {
  color: #f4ede4;
  border-bottom-color: #4a3d35;
}

/* ===== BOUTON TÉLÉPHONE PRIVATISATION - MODE SOMBRE ===== */
[data-theme="dark"] .priv-cta__btn--secondary {
  background: transparent !important;
  color: #d4a574 !important;
  border-color: #d4a574 !important;
}

[data-theme="dark"] .priv-cta__btn--secondary:hover {
  background: rgba(212, 165, 116, 0.15) !important;
  color: #e8c090 !important;
}

[data-theme="dark"] .priv-cta__btn--secondary svg {
  stroke: #d4a574;
}

/* ===== LOGO INSTAGRAM SECTION - MODE SOMBRE ===== */
[data-theme="dark"] .instagram-logo {
  color: #d4a574 !important;
}

[data-theme="dark"] .instagram-logo svg {
  fill: #d4a574 !important;
  color: #d4a574 !important;
}

[data-theme="dark"] .instagram-link {
  color: #d4a574 !important;
}

[data-theme="dark"] #instagram {
  background: #1f1714 !important;
}

[data-theme="dark"] .instagram-title {
  color: #f4ede4 !important;
}

[data-theme="dark"] .instagram-subtitle {
  color: #a09080 !important;
}

[data-theme="dark"] .lightwidget-widget {
  background: #1a1815 !important;
}

/* ===== CARTES AVANTAGES FORMATIONS - MODE SOMBRE ===== */
[data-theme="dark"] .avantages {
  background: #1f1714;
}

[data-theme="dark"] .avantage-card {
  background: #332922 !important;
  border-color: #4a3d35 !important;
}

[data-theme="dark"] .avantage-card__icon {
  background: rgba(212, 165, 116, 0.15) !important;
}

[data-theme="dark"] .avantage-card__icon svg {
  stroke: #d4a574;
  color: #d4a574;
}

[data-theme="dark"] .avantage-card__title {
  color: #f4ede4 !important;
}

[data-theme="dark"] .avantage-card__text {
  color: #a09080 !important;
}

/* Hero formations texte */
[data-theme="dark"] .formations-hero .hero__tagline,
[data-theme="dark"] .formations-hero__eyebrow {
  color: #d4a574 !important;
}

[data-theme="dark"] .formations-hero .hero__title,
[data-theme="dark"] .formations-hero h1 {
  color: #f4ede4 !important;
}

[data-theme="dark"] .formations-hero .hero__title em,
[data-theme="dark"] .formations-hero h1 em {
  color: #d4a574 !important;
}

[data-theme="dark"] .formations-hero .hero__text {
  color: #a09080 !important;
}

/* ===== NOUVELLE SECTION CONTACT MODERNE ===== */
.contact-section {
  background: linear-gradient(180deg, #f7f0e7 0%, #f0e8dc 100%);
  padding: 5rem 0;
}

.section__header--centered {
  text-align: center;
  margin-bottom: 3rem;
}

.contact__eyebrow {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #8a6a4a;
  margin-bottom: 0.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.contact__star {
  color: #c9a66b;
  font-size: 1rem;
}

.contact__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 5vw, 2.8rem);
  font-weight: 500;
  color: #3b281a;
  margin-bottom: 0.5rem;
}

.contact__subtitle {
  font-size: 1rem;
  color: #6a5a4a;
  font-weight: 400;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  max-width: 900px;
  margin: 0 auto;
}

.contact-card {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 20px;
  padding: 1.8rem;
  box-shadow: 0 8px 30px rgba(90, 74, 58, 0.08);
  border: 1px solid rgba(200, 180, 160, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.contact-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 40px rgba(90, 74, 58, 0.12);
}

.contact-card--map {
  grid-column: span 2;
}

.contact-card__map {
  margin-bottom: 1rem;
}

.contact-card__map iframe {
  width: 100%;
  height: 200px;
  border-radius: 12px;
}

.contact-card__nav {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
  justify-content: center;
}

.contact-nav-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.6rem 1.2rem;
  background: #f7f0e7;
  border-radius: 25px;
  color: #5a4a3a;
  font-size: 0.85rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.25s ease;
  border: 1px solid rgba(120, 95, 72, 0.2);
}

.contact-nav-btn:hover {
  background: #5a4a3a;
  color: #fff;
  transform: translateY(-2px);
}

.contact-card__icon {
  font-size: 2rem;
  margin-bottom: 0.8rem;
}

.contact-card__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: #3b281a;
  margin-bottom: 0.8rem;
}

.contact-card__content p {
  font-size: 0.95rem;
  color: #5a4a3a;
  line-height: 1.6;
  margin-bottom: 0.5rem;
}

.contact-card__content strong {
  color: #3b281a;
}

.contact-card__closed {
  color: #9a8a7a !important;
  font-style: italic;
}

.contact-card__text {
  font-size: 0.9rem;
  color: #6a5a4a;
  margin-bottom: 1rem;
}

.contact-card--cta {
  text-align: center;
  justify-content: center;
  align-items: center;
}

.contact-card--social {
  grid-column: span 2;
  text-align: center;
}

.contact-card--social .contact-card__icon {
  margin: 0 auto 0.8rem;
}

.contact-card--social .contact-card__title {
  text-align: center;
}

.contact-social-grid {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  align-items: center;
}

.contact-social-grid__others {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.8rem;
  width: 100%;
}

.contact-social-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0.8rem 1rem;
  background: #f7f0e7;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.25s ease;
  border: 1px solid transparent;
}

.contact-social-link:hover {
  background: #efe6d8;
  border-color: rgba(120, 95, 72, 0.3);
  transform: translateX(4px);
}

.contact-social-name {
  font-size: 0.85rem;
  font-weight: 600;
  color: #3b281a;
  margin-bottom: 0.2rem;
}

.contact-social-handle {
  font-size: 0.8rem;
  color: #8a6a4a;
}

/* Instagram principal mis en avant */
.contact-social-link--main {
  background: linear-gradient(135deg, #f7f0e7 0%, #efe6d8 100%);
  border: 2px solid rgba(120, 95, 72, 0.3);
  padding: 1rem 2rem;
  width: auto;
  min-width: 280px;
}

.contact-social-link--main .contact-social-name {
  font-size: 1.1rem;
}

.contact-social-link--main .contact-social-handle {
  font-size: 0.95rem;
}

/* Grille des autres Instagram */
@media (max-width: 900px) {
  .contact-social-grid__others {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 500px) {
  .contact-social-grid__others {
    grid-template-columns: 1fr;
  }
}

/* Contact Section Responsive */
@media (max-width: 768px) {
  .contact-section {
    padding: 3rem 0;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .contact-card--map,
  .contact-card--social {
    grid-column: span 1;
  }
  
  .contact-card {
    padding: 1.5rem;
  }
  
  .contact-card__nav {
    gap: 0.5rem;
  }
  
  .contact-nav-btn {
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
  }
  
  .contact-social-grid {
    grid-template-columns: 1fr;
  }
}

/* Contact Section - Mode Sombre */
[data-theme="dark"] .contact-section {
  background: linear-gradient(180deg, #1f1714 0%, #1a1310 100%);
}

[data-theme="dark"] .contact__eyebrow {
  color: #c9a66b;
}

[data-theme="dark"] .contact__title {
  color: #f4ede4;
}

[data-theme="dark"] .contact__subtitle {
  color: #a09080;
}

/* ===== SECTION STATISTIQUES ANIMÉES ===== */
.stats-section {
  padding: 4rem 0;
  background: linear-gradient(135deg, #5a4a3a 0%, #3b281a 100%);
  position: relative;
  overflow: hidden;
}

.stats-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.5;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  position: relative;
  z-index: 1;
}

.stat-item {
  text-align: center;
  padding: 1.5rem;
}

.stat-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 600;
  color: #f4ede4;
  line-height: 1;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.1em;
}

.stat-number .stat-value {
  display: inline-block;
}

.stat-number .stat-suffix {
  font-size: 0.6em;
  color: #d4a574;
}

.stat-label {
  font-size: 0.95rem;
  color: #c8c0b0;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 500;
}

.stat-icon {
  font-size: 1.8rem;
  margin-bottom: 0.8rem;
  display: block;
}

/* Stats responsive */
@media (max-width: 900px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

@media (max-width: 500px) {
  .stats-section {
    padding: 3rem 0;
  }
  
  .stats-grid {
    gap: 1rem;
  }
  
  .stat-item {
    padding: 1rem;
  }
  
  .stat-label {
    font-size: 0.8rem;
  }
}

/* Mode sombre - Stats */
[data-theme="dark"] .stats-section {
  background: linear-gradient(135deg, #2a211c 0%, #1a1310 100%);
}

/* ===== GALERIE RÉALISATIONS CILS ===== */
.cils-gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.cils-gallery-grid img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 12px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.cils-gallery-grid img:hover {
  transform: scale(1.03);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

@media (max-width: 900px) {
  .cils-gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 600px) {
  .cils-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
  }
  
  .cils-gallery-grid img {
    height: 180px;
  }
}

/* ===== BOUTON RETOUR EN HAUT ===== */
.back-to-top {
  position: fixed;
  bottom: 25px;
  right: 25px;
  z-index: 9999;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, #5a4a3a 0%, #3b281a 100%);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(90, 74, 58, 0.4);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s ease;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(90, 74, 58, 0.5);
  background: linear-gradient(135deg, #6a5a4a 0%, #4b382a 100%);
}

.back-to-top svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: #f4ede4;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Mode sombre */
[data-theme="dark"] .back-to-top {
  background: linear-gradient(135deg, #d4a574 0%, #b8956c 100%);
  box-shadow: 0 4px 15px rgba(212, 165, 116, 0.3);
}

[data-theme="dark"] .back-to-top:hover {
  box-shadow: 0 8px 25px rgba(212, 165, 116, 0.4);
}

[data-theme="dark"] .back-to-top svg {
  stroke: #1a1310;
}

/* Responsive */
@media (max-width: 600px) {
  .back-to-top {
    bottom: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
  }
  
  .back-to-top svg {
    width: 20px;
    height: 20px;
  }
}


[data-theme="dark"] .contact-card {
  background: rgba(50, 40, 35, 0.95);
  border-color: rgba(80, 65, 55, 0.5);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
}

[data-theme="dark"] .contact-card:hover {
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.35);
}

[data-theme="dark"] .contact-card__title {
  color: #f4ede4;
}

[data-theme="dark"] .contact-card__content p {
  color: #c8c0b0;
}

[data-theme="dark"] .contact-card__content strong {
  color: #f4ede4;
}

[data-theme="dark"] .contact-card__closed {
  color: #8a7a6a !important;
}

[data-theme="dark"] .contact-card__text {
  color: #a09080;
}

[data-theme="dark"] .contact-nav-btn {
  background: rgba(60, 50, 45, 0.8);
  color: #c8c0b0;
  border-color: rgba(100, 85, 70, 0.4);
}

[data-theme="dark"] .contact-nav-btn:hover {
  background: #d4a574;
  color: #1a1310;
}

[data-theme="dark"] .contact-social-link {
  background: rgba(60, 50, 45, 0.6);
}

[data-theme="dark"] .contact-social-link:hover {
  background: rgba(70, 60, 55, 0.8);
  border-color: rgba(120, 100, 80, 0.4);
}

[data-theme="dark"] .contact-social-name {
  color: #f4ede4;
}

[data-theme="dark"] .contact-social-handle {
  color: #d4a574;
}

[data-theme="dark"] .contact-social-link--main {
  background: linear-gradient(135deg, rgba(70, 60, 50, 0.8) 0%, rgba(60, 50, 45, 0.9) 100%);
  border-color: rgba(212, 165, 116, 0.4);
}

/* ===== BARRE DE PROGRESSION DE LECTURE ===== */
.reading-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 3px;
  background: linear-gradient(90deg, #c9a66b 0%, #8a6a4a 100%);
  z-index: 99999;
  transition: width 0.1s ease-out;
  box-shadow: 0 0 10px rgba(201, 166, 107, 0.5);
}

[data-theme="dark"] .reading-progress {
  background: linear-gradient(90deg, #d4a574 0%, #a08060 100%);
  box-shadow: 0 0 10px rgba(212, 165, 116, 0.6);
}

