/* ================================================
   RENAMUS — Feuille de styles
   Cabinet Seydou Ndiaye Sene | Viroflay 78
   ================================================ */

/* ── VARIABLES DE COULEURS ── */
:root {
  --sage:       #6b7c5a;   /* vert sauge principal */
  --sage-light: #8fa076;   /* vert sauge clair (hover) */
  --sage-pale:  #c8d4b8;   /* vert sauge très pâle */
  --gold:       #b8965a;   /* doré principal */
  --gold-light: #d4b07a;   /* doré clair */
  --cream:      #f7f3ec;   /* crème fond principal */
  --cream-dark: #ede6d8;   /* crème foncé */
  --dark:       #2c2c24;   /* presque noir */
  --text:       #3d3d30;   /* texte principal */
  --text-light: #7a7a68;   /* texte secondaire */
}

/* ── RESET & BASE ── */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Jost', sans-serif;
  background: var(--cream);
  color: var(--text);
  overflow-x: hidden;
}

/* ================================================
   NAVIGATION
   ================================================ */
nav {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
  padding: 16px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(247, 243, 236, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(184, 150, 90, 0.15);
  transition: box-shadow 0.3s;
}

nav.scrolled {
  box-shadow: 0 2px 24px rgba(107, 124, 90, 0.1);
}

.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--sage);
  text-transform: uppercase;
}

.nav-logo span {
  color: var(--gold);
  font-weight: 300;
  font-size: 1rem;
}

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

.nav-links a {
  font-size: 0.76rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-light);
  text-decoration: none;
  transition: color 0.25s;
}

.nav-links a:hover {
  color: var(--sage);
}

/* Bouton "Prendre RDV" dans la nav */
.nav-cta {
  background: var(--sage) !important;
  color: #fff !important;
  padding: 9px 20px;
  border-radius: 2px;
}

.nav-cta:hover {
  background: var(--sage-light) !important;
  color: #fff !important;
}

/* Bouton burger mobile */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--sage);
  transition: all 0.3s;
}

/* ================================================
   HERO — Section d'accueil
   ================================================ */
#hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding-top: 72px;
  position: relative;
  overflow: hidden;
}

/* Dégradé de fond décoratif */
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 70% 50%, rgba(200, 212, 184, 0.2) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 15% 80%, rgba(184, 150, 90, 0.07) 0%, transparent 60%);
  pointer-events: none;
}

/* Texte gauche */
.hero-text {
  padding: 0 48px 60px 80px;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}

.hero-badge::before {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--gold);
}

.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.8rem, 5vw, 4.8rem);
  font-weight: 300;
  line-height: 1.08;
  color: var(--dark);
  margin-bottom: 8px;
}

.hero-title em {
  font-style: italic;
  color: var(--sage);
  display: block;
}

.hero-subtitle {
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}

.hero-desc {
  font-size: 0.97rem;
  font-weight: 300;
  line-height: 1.9;
  color: var(--text-light);
  max-width: 400px;
  margin-bottom: 40px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
}

/* Boutons généraux */
.btn-primary {
  background: var(--sage);
  color: #fff;
  padding: 14px 34px;
  font-family: 'Jost', sans-serif;
  font-size: 0.76rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  cursor: pointer;
  border-radius: 2px;
  transition: background 0.25s, transform 0.2s;
  display: inline-block;
}

.btn-primary:hover {
  background: var(--sage-light);
  transform: translateY(-1px);
}

.btn-secondary {
  color: var(--sage);
  font-size: 0.76rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  border-bottom: 1px solid var(--sage-pale);
  padding-bottom: 2px;
  transition: border-color 0.25s;
}

.btn-secondary:hover {
  border-color: var(--sage);
}

/* Logo + petite photo (côté droit du hero) */
.hero-visual {
  height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-logo-main {
  width: min(420px, 80%);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle at 40% 40%, var(--cream-dark), var(--sage-pale) 80%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  box-shadow: 0 32px 80px rgba(107,124,90,0.15);
  animation: floatLogo 6s ease-in-out infinite;
}

.hero-logo-main::after {
  content: '';
  position: absolute;
  inset: -12px;
  border-radius: 50%;
  border: 1px solid rgba(184,150,90,0.3);
}

.hero-logo-main img {
  width: 80%;
  height: 80%;
  object-fit: contain;
}

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

.hero-photo-small {
  position: absolute;
  bottom: 48px;
  right: 48px;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid #fff;
  box-shadow: 0 8px 32px rgba(107,124,90,0.25);
}

.hero-photo-small img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

/* ================================================
   COMPOSANTS COMMUNS
   ================================================ */

/* En-tête de section */
.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-eyebrow {
  font-size: 0.7rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.section-eyebrow::before,
.section-eyebrow::after {
  content: '';
  display: block;
  width: 36px;
  height: 1px;
  background: var(--gold-light);
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.9rem, 3.5vw, 3rem);
  font-weight: 300;
  color: var(--dark);
  line-height: 1.2;
}

.section-title em {
  font-style: italic;
  color: var(--sage);
}

/* ================================================
   À PROPOS
   ================================================ */
#about {
  padding: 100px 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
  background: var(--cream);
}

/* Zone photos gauche */
.about-photos {
  position: relative;
  height: 560px;
}

.about-photo-main {
  position: absolute;
  top: 0;
  right: 0;
  width: 75%;
  height: 85%;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(107, 124, 90, 0.18);
}

.about-photo-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.5s;
}

.about-photo-main:hover img {
  transform: scale(1.03);
}

/* Petite photo en bas à gauche */
.about-photo-accent {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50%;
  height: 48%;
  border-radius: 4px;
  overflow: hidden;
  border: 4px solid var(--cream);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
}

.about-photo-accent img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Ligne dorée décorative */
.about-gold-bar {
  position: absolute;
  top: 50%;
  left: -16px;
  width: 2px;
  height: 120px;
  background: linear-gradient(to bottom, transparent, var(--gold), transparent);
  transform: translateY(-50%);
}

/* Texte droite */
.about-text .section-header {
  text-align: left;
  margin-bottom: 28px;
}

.about-text .section-eyebrow {
  justify-content: flex-start;
}

.about-text .section-eyebrow::before {
  display: none;
}

/* Badge "Méthode Sonia Fischmann" */
.methode-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--cream-dark);
  border: 1px solid rgba(184, 150, 90, 0.3);
  padding: 7px 16px;
  border-radius: 2px;
  margin-bottom: 24px;
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
}

.about-text p {
  font-size: 0.96rem;
  font-weight: 300;
  line-height: 1.9;
  color: var(--text-light);
  margin-bottom: 16px;
}

.about-text p strong {
  font-weight: 500;
  color: var(--text);
}

/* Tags valeurs */
.about-values {
  display: flex;
  gap: 12px;
  margin-top: 28px;
  flex-wrap: wrap;
}

.value-tag {
  padding: 7px 16px;
  border: 1px solid var(--sage-pale);
  border-radius: 2px;
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--sage);
}

/* ================================================
   PRESTATIONS
   ================================================ */
#services {
  padding: 100px 80px;
  background: linear-gradient(180deg, var(--cream-dark) 0%, var(--cream) 100%);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: rgba(184, 150, 90, 0.15);
  border: 1px solid rgba(184, 150, 90, 0.2);
  border-radius: 4px;
  overflow: hidden;
}

.service-card {
  background: var(--cream);
  padding: 48px 36px;
  transition: background 0.3s;
}

.service-card:hover {
  background: #fff;
}

.service-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.5rem;
  font-weight: 300;
  color: rgba(107, 124, 90, 0.1);
  line-height: 1;
  margin-bottom: 16px;
  display: block;
}

.service-icon-wrap {
  width: 50px;
  height: 50px;
  border: 1px solid var(--sage-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 1.3rem;
  transition: border-color 0.3s, background 0.3s;
}

.service-card:hover .service-icon-wrap {
  border-color: var(--sage);
  background: var(--sage-pale);
}

.service-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.55rem;
  font-weight: 400;
  color: var(--dark);
  margin-bottom: 12px;
}

.service-desc {
  font-size: 0.86rem;
  font-weight: 300;
  line-height: 1.8;
  color: var(--text-light);
  margin-bottom: 20px;
}

.service-items {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 28px;
}

.service-items li {
  font-size: 0.78rem;
  color: var(--text-light);
  padding-left: 16px;
  position: relative;
}

.service-items li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--gold);
}

.service-link {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sage);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid var(--sage-pale);
  padding-bottom: 2px;
  transition: gap 0.2s, border-color 0.2s;
}

.service-link:hover {
  gap: 12px;
  border-color: var(--sage);
}

/* ================================================
   APPROCHE (fond vert)
   ================================================ */
#approach {
  padding: 100px 80px;
  background: var(--sage);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.approach-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 50% 70% at 80% 50%, rgba(143, 160, 118, 0.3) 0%, transparent 60%);
  pointer-events: none;
}

/* Textes blancs sur fond vert */
#approach .section-title { color: #fff; }
#approach .section-title em { color: var(--gold-light); }
#approach .section-eyebrow { color: var(--gold-light); }
#approach .section-eyebrow::before,
#approach .section-eyebrow::after { background: rgba(212, 176, 122, 0.5); }

.approach-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.1);
  margin-top: 56px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  overflow: hidden;
}

.step {
  background: rgba(255, 255, 255, 0.04);
  padding: 40px 28px;
  transition: background 0.3s;
}

.step:hover { background: rgba(255, 255, 255, 0.09); }

.step-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.8rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.2);
  line-height: 1;
  margin-bottom: 16px;
}

.step-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 400;
  color: #fff;
  margin-bottom: 10px;
}

.step-text {
  font-size: 0.82rem;
  font-weight: 300;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.62);
}

/* ================================================
   GALERIE CABINET
   ================================================ */
#galerie {
  padding: 100px 80px;
  background: var(--cream-dark);
}

/* Grille asymétrique : grande photo à gauche, 2 petites à droite */
.galerie-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 16px;
  margin-top: 56px;
}

.galerie-item {
  border-radius: 4px;
  overflow: hidden;
  position: relative;
}

.galerie-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s;
}

.galerie-item:hover img {
  transform: scale(1.04);
}

/* Grande photo = ratio portrait */
.galerie-item-main {
  aspect-ratio: 3 / 4;
  grid-row: span 2; /* la grande photo s'étire sur 2 lignes */
}
/* Petites photos */
.galerie-item-small { aspect-ratio: 4 / 5; }

/* Photo large en bas (consultation) — prend 2 colonnes */
.galerie-item-wide {
  grid-column: span 2;
  aspect-ratio: 4 / 3;        /* plus de hauteur = plus de contenu visible */
}

.galerie-item-wide img {
  object-position: center 65%; /* centre l'image sur la zone table + feuilles */
}

/* Label qui apparaît au hover */
.galerie-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(44, 44, 36, 0.7) 0%, transparent 100%);
  padding: 24px 20px 16px;
  color: #fff;
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0;
  transition: opacity 0.3s;
}

.galerie-item:hover .galerie-label { opacity: 1; }

/* ================================================
   CERTIFICATIONS
   ================================================ */
#certifications {
  padding: 100px 80px;
  background: var(--cream);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

#certifications .section-header { text-align: left; margin-bottom: 28px; }
#certifications .section-eyebrow { justify-content: flex-start; }
#certifications .section-eyebrow::before { display: none; }

.cert-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 8px;
}

.cert-card {
  background: #fff;
  border: 1px solid rgba(184, 150, 90, 0.15);
  border-radius: 4px;
  padding: 24px 28px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  box-shadow: 0 4px 20px rgba(107, 124, 90, 0.06);
  transition: box-shadow 0.3s;
}

.cert-card:hover { box-shadow: 0 8px 32px rgba(107, 124, 90, 0.1); }

.cert-icon { font-size: 1.8rem; flex-shrink: 0; margin-top: 4px; }

.cert-school {
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}

.cert-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--dark);
  margin-bottom: 6px;
}

.cert-detail {
  font-size: 0.8rem;
  font-weight: 300;
  color: var(--text-light);
  line-height: 1.6;
}

.cert-mention {
  display: inline-block;
  margin-top: 8px;
  padding: 3px 10px;
  background: rgba(107, 124, 90, 0.1);
  border-radius: 2px;
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sage);
}

.cert-photo {
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(107, 124, 90, 0.15);
}

.cert-photo img { width: 100%; height: auto; display: block; }

/* ================================================
   MUSIQUE (fond sombre)
   ================================================ */
#musique {
  padding: 100px 80px;
  background: var(--dark);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.musique-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 4px;
  padding: 56px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.musique-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 50% at 50% 50%, rgba(184, 150, 90, 0.08) 0%, transparent 70%);
}

.musique-big-icon { font-size: 4.5rem; display: block; margin-bottom: 24px; position: relative; }

.musique-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  font-weight: 300;
  color: #fff;
  margin-bottom: 12px;
  position: relative;
}

.musique-card p {
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 300;
  position: relative;
  letter-spacing: 0.06em;
  line-height: 1.7;
}

.musique-note {
  display: inline-block;
  margin-top: 28px;
  padding: 8px 20px;
  border: 1px solid rgba(184, 150, 90, 0.4);
  border-radius: 2px;
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-light);
  position: relative;
}

/* Texte blanc section musique */
.musique-text .section-header { text-align: left; }
.musique-text .section-eyebrow { justify-content: flex-start; color: rgba(255, 255, 255, 0.5); }
.musique-text .section-eyebrow::before { display: none; }
.musique-text .section-eyebrow::after { background: rgba(255, 255, 255, 0.2); }
.musique-text .section-title { color: #fff; }
.musique-text .section-title em { color: var(--gold-light); }

.musique-text p {
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 16px;
}

/* ================================================
   RENDEZ-VOUS / CONTACT
   ================================================ */
#booking {
  padding: 100px 80px;
  background: var(--cream);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}

#booking .section-header { text-align: left; }
#booking .section-eyebrow { justify-content: flex-start; }
#booking .section-eyebrow::before { display: none; }

.booking-intro {
  font-size: 0.96rem;
  font-weight: 300;
  line-height: 1.9;
  color: var(--text-light);
  margin-bottom: 28px;
}

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

.info-row {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid var(--cream-dark);
}

.info-icon {
  width: 38px;
  height: 38px;
  background: var(--cream-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  flex-shrink: 0;
}

.info-label {
  font-size: 0.66rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 3px;
}

.info-value {
  font-size: 0.88rem;
  color: var(--text);
  font-weight: 300;
}

/* Carte formulaire */
.booking-card {
  background: #fff;
  border: 1px solid rgba(184, 150, 90, 0.2);
  border-radius: 4px;
  padding: 40px;
  box-shadow: 0 16px 48px rgba(107, 124, 90, 0.08);
}

.booking-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.55rem;
  font-weight: 400;
  color: var(--dark);
  margin-bottom: 6px;
}

.booking-card .sub {
  font-size: 0.78rem;
  color: var(--text-light);
  margin-bottom: 28px;
  font-weight: 300;
}

/* Champs du formulaire */
.form-group { margin-bottom: 18px; }

.form-group label {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 7px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 11px 14px;
  background: var(--cream);
  border: 1px solid var(--cream-dark);
  border-radius: 2px;
  font-family: 'Jost', sans-serif;
  font-size: 0.88rem;
  font-weight: 300;
  color: var(--text);
  transition: border-color 0.25s, background 0.25s;
  outline: none;
  appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--sage-pale);
  background: #fff;
}

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

/* Ligne avec 2 champs côte à côte */
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.form-submit {
  width: 100%;
  background: var(--sage);
  color: #fff;
  padding: 14px;
  font-family: 'Jost', sans-serif;
  font-size: 0.76rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  border-radius: 2px;
  margin-top: 6px;
  transition: background 0.25s, transform 0.2s;
}

.form-submit:hover {
  background: var(--sage-light);
  transform: translateY(-1px);
}

/* Note Calendly "à venir" */
.or-divider {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 20px 0;
}
.or-divider::before,
.or-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--cream-dark);
}
.or-divider span {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-light);
}
.btn-calendly {
  display: block;
  width: 100%;
  text-align: center;
  padding: 14px;
  border: 1px solid var(--sage);
  color: var(--sage);
  font-family: 'Jost', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
  transition: background 0.25s, color 0.25s;
}
.btn-calendly:hover {
  background: var(--sage);
  color: #fff;
}
/* ================================================
   TÉMOIGNAGES
   ================================================ */

   /* ================================================
   AVIS CLIENTS
   ================================================ */
.avis-container {
  max-width: 620px;
  margin: 56px auto 0;
}

.avis-card {
  background: #fff;
  border: 1px solid rgba(184,150,90,0.2);
  border-radius: 4px;
  padding: 56px 48px;
  text-align: center;
  box-shadow: 0 8px 40px rgba(107,124,90,0.08);
}

.avis-stars {
  font-size: 1.6rem;
  color: var(--gold);
  letter-spacing: 6px;
  margin-bottom: 28px;
}

.avis-intro {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-style: italic;
  font-weight: 300;
  line-height: 1.8;
  color: var(--text-light);
  margin-bottom: 36px;
}

.avis-note {
  font-size: 0.74rem;
  color: var(--text-light);
  margin-top: 16px;
  letter-spacing: 0.08em;
}
#testimonials {
  padding: 100px 80px;
  background: var(--cream-dark);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 56px;
}

.testimonial {
  background: var(--cream);
  padding: 36px 32px;
  border-radius: 4px;
  border: 1px solid rgba(184, 150, 90, 0.1);
  position: relative;
}

/* Grand guillemet décoratif */
.testimonial::before {
  content: '"';
  position: absolute;
  top: 16px;
  left: 28px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 4.5rem;
  line-height: 1;
  color: var(--sage-pale);
  pointer-events: none;
}

.stars {
  color: var(--gold);
  font-size: 0.78rem;
  margin-bottom: 6px;
}

.testimonial-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.02rem;
  font-style: italic;
  line-height: 1.7;
  color: var(--text);
  margin-top: 24px;
  margin-bottom: 20px;
}

.testimonial-author { display: flex; align-items: center; gap: 12px; }

.author-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--sage-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.95rem;
  color: var(--sage);
  font-weight: 600;
}

.author-name { font-size: 0.78rem; font-weight: 500; color: var(--dark); }
.author-service { font-size: 0.7rem; color: var(--text-light); font-weight: 300; }

.testimonials-cta {
  text-align: center;
  margin-top: 40px;
  padding: 28px;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 4px;
  font-size: 0.86rem;
  color: var(--text-light);
}

.testimonials-cta strong { color: var(--sage); }

/* ================================================
   FOOTER
   ================================================ */
footer {
  background: var(--dark);
  color: rgba(255, 255, 255, 0.55);
  padding: 60px 80px 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 56px;
  margin-bottom: 44px;
  padding-bottom: 44px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.footer-brand-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.9rem;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.footer-brand-sub {
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  color: var(--gold-light);
  margin-bottom: 14px;
  text-transform: uppercase;
}

.footer-tagline {
  font-size: 0.78rem;
  line-height: 1.8;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 24px;
}

.footer-values { display: flex; gap: 10px; flex-wrap: wrap; }

.footer-value-tag {
  font-size: 0.64rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 4px 10px;
  border-radius: 2px;
}

.footer-col h4 {
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 18px;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.footer-col ul li a {
  font-size: 0.82rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.4);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-col ul li a:hover { color: rgba(255, 255, 255, 0.8); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-copy { font-size: 0.72rem; font-weight: 300; }
.footer-lotus { color: var(--gold-light); font-size: 1rem; }

/* ================================================
   ANIMATIONS AU SCROLL
   ================================================ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

/* ================================================
   NOTIFICATION TOAST (confirmation formulaire)
   ================================================ */
.toast {
  position: fixed;
  bottom: 32px;
  right: 32px;
  background: var(--sage);
  color: #fff;
  padding: 14px 24px;
  border-radius: 4px;
  font-size: 0.84rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
  transform: translateY(80px);
  opacity: 0;
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.4s;
  z-index: 999;
}

.toast.show { transform: none; opacity: 1; }

/* ================================================
   TARIFS
   ================================================ */
#tarifs {
  padding: 100px 80px;
  background: var(--cream-dark);
}

/* Bandeau séance découverte */
.tarif-decouverte {
  display: flex;
  align-items: center;
  gap: 24px;
  background: var(--sage);
  color: #fff;
  padding: 28px 36px;
  border-radius: 4px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.tarif-decouverte-icon { font-size: 2rem; flex-shrink: 0; }

.tarif-decouverte strong {
  display: block;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  margin-bottom: 4px;
}

.tarif-decouverte p {
  font-size: 0.84rem;
  font-weight: 300;
  opacity: 0.85;
  line-height: 1.6;
}

.tarif-decouverte .btn-primary {
  background: #fff;
  color: var(--sage);
  margin-left: auto;
  flex-shrink: 0;
  white-space: nowrap;
}

.tarif-decouverte .btn-primary:hover {
  background: var(--cream);
}

/* Grille tarifs */
.tarifs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 32px;
}

/* Carte tarif standard */
.tarif-card {
  background: var(--cream);
  border: 1px solid rgba(184, 150, 90, 0.15);
  border-radius: 4px;
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: box-shadow 0.3s, transform 0.2s;
}

.tarif-card:hover {
  box-shadow: 0 12px 40px rgba(107, 124, 90, 0.12);
  transform: translateY(-2px);
}

/* Carte mise en avant */
.tarif-card--featured {
  background: #fff;
  border: 2px solid var(--sage);
  box-shadow: 0 8px 32px rgba(107, 124, 90, 0.12);
}

/* Badge "Le plus complet" */
.tarif-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--sage);
  color: #fff;
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 20px;
  white-space: nowrap;
}

/* Cartes larges (2 colonnes sur la 2e ligne) */
.tarif-card--wide {
  grid-column: span 1;
}

.tarif-header {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
}

.tarif-icon { font-size: 1.5rem; flex-shrink: 0; }

.tarif-nom {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--dark);
  line-height: 1.3;
}

/* Prix */
.tarif-prix {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  font-weight: 300;
  color: var(--sage);
  line-height: 1;
  margin-bottom: 4px;
}

.tarif-prix span {
  font-size: 1.4rem;
  color: var(--gold);
}

.tarif-duree {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  color: var(--text-light);
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--cream-dark);
}

/* Liste inclus */
.tarif-items {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 28px;
  flex: 1;
}

.tarif-items li {
  font-size: 0.82rem;
  font-weight: 300;
  color: var(--text-light);
  padding-left: 16px;
  position: relative;
}

.tarif-items li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--sage);
  font-size: 0.75rem;
}

/* Liste horizontale pour les cartes larges */
.tarif-items--horizontal {
  flex-direction: row;
  flex-wrap: wrap;
  gap: 8px 24px;
}

/* Bouton réserver */
.tarif-btn {
  display: block;
  text-align: center;
  padding: 12px;
  border: 1px solid var(--sage-pale);
  color: var(--sage);
  font-family: 'Jost', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
  transition: background 0.25s, color 0.25s, border-color 0.25s;
  margin-top: auto;
}

.tarif-btn:hover {
  background: var(--sage);
  color: #fff;
  border-color: var(--sage);
}

/* Bouton featured */
.tarif-btn--featured {
  background: var(--sage);
  color: #fff;
  border-color: var(--sage);
}

.tarif-btn--featured:hover {
  background: var(--sage-light);
}

/* Note légale en bas */
.tarif-note {
  font-size: 0.78rem;
  font-weight: 300;
  color: var(--text-light);
  text-align: center;
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto;
  padding-top: 8px;
}

/* Responsive tarifs */
@media (max-width: 900px) {
  #tarifs { padding: 64px 20px; }
  .tarifs-grid { grid-template-columns: 1fr; }
  .tarif-card--wide { grid-column: span 1; }
  .tarif-items--horizontal { flex-direction: column; }
  .tarif-decouverte { flex-direction: column; text-align: center; }
  .tarif-decouverte .btn-primary { margin: 8px auto 0; }
}

/* ================================================
   RESPONSIVE — MOBILE (< 900px)
   ================================================ */
@media (max-width: 900px) {
  nav { padding: 14px 20px; }

  /* Cacher les liens nav, montrer le burger */
  .nav-links { display: none; }
  .menu-toggle { display: flex; }

  /* Hero en colonne */
  #hero { grid-template-columns: 1fr; padding-top: 72px; }
  .hero-text { padding: 40px 20px 28px; }
  .hero-visual { height: 70vw; min-height: 280px; }
  .hero-logo-badge { width: 90px; height: 90px; bottom: 20px; right: 20px; }

  /* Sections en colonne */
  #about,
  #certifications,
  #musique,
  #booking { grid-template-columns: 1fr; padding: 64px 20px; gap: 40px; }

  .about-photos { height: 360px; }

  /* Grilles en colonne */
  #services,
  #approach,
  #galerie,
  #testimonials { padding: 64px 20px; }

  .services-grid,
  .approach-steps,
  .testimonials-grid { grid-template-columns: 1fr; }

  /* Galerie mobile : 2 colonnes */
  .galerie-grid { grid-template-columns: 1fr 1fr; }
  .galerie-item-main { grid-column: span 2; aspect-ratio: 16 / 9; }

  /* Footer */
  footer { padding: 44px 20px 28px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }

  /* Formulaire */
  .form-row { grid-template-columns: 1fr; }
  .booking-card { padding: 24px 18px; }

  /* ================================================
   RESPONSIVE — TRÈS PETIT ÉCRAN (< 480px)
   ================================================ */
@media (max-width: 480px) {
  .hero-title { font-size: 2.3rem; }
  .hero-logo-main { width: 260px; }
  .hero-photo-small { width: 75px; height: 75px; bottom: 20px; right: 20px; }
  .galerie-grid { grid-template-columns: 1fr; }
  .galerie-item-main { grid-column: span 1; }
  .approach-steps { grid-template-columns: 1fr; }
}
}
