/* ===========================================================
   Yoga Kim Sana — feuille de style commune
   Palette douce et naturelle : crème, sauge, terre, forêt
   =========================================================== */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,300..600;1,9..144,300..500&family=Mulish:wght@300;400;500;600;700&display=swap');

:root {
  --cream:        #f6f1e7;
  --cream-deep:   #efe7d8;
  --sage:         #8a9a7b;
  --sage-soft:    #b7c2a9;
  --forest:       #3b4a38;
  --forest-deep:  #2c3829;
  --clay:         #bf7f52;
  --clay-soft:    #d9a77c;
  --ink:          #33312b;
  --ink-soft:     #5c594f;
  --white:        #fffdf8;
  --shadow:       0 18px 50px -22px rgba(44, 56, 41, 0.45);
  --shadow-soft:  0 10px 30px -18px rgba(44, 56, 41, 0.4);
  --radius:       22px;
  --radius-sm:    14px;
  --maxw:         1180px;
  --font-display: 'Fraunces', Georgia, serif;
  --font-body:    'Mulish', -apple-system, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.7;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 26px; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.15;
  color: var(--forest-deep);
  letter-spacing: -0.01em;
}

.eyebrow {
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.28em;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--clay);
  display: inline-block;
  margin-bottom: 16px;
}

/* ---------- Bandeau annonce ---------- */
.topbar {
  background: var(--forest-deep);
  color: var(--cream);
  text-align: center;
  font-size: 0.82rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 9px 16px;
  font-weight: 500;
}

/* ---------- En-tête / navigation ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(246, 241, 231, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(59, 74, 56, 0.1);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 26px;
  max-width: var(--maxw);
  margin: 0 auto;
}
.logo img { height: 56px; width: auto; }
.nav-links {
  display: flex;
  gap: 24px;
  align-items: center;
  list-style: none;
}
.nav-links a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--ink-soft);
  position: relative;
  padding: 6px 0;
  transition: color .25s;
}
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 1.5px;
  background: var(--clay);
  transition: width .3s ease;
}
.nav-links a:hover, .nav-links a.active { color: var(--forest); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }

.nav-cta {
  background: var(--forest);
  color: var(--cream) !important;
  padding: 10px 20px !important;
  border-radius: 999px;
  font-weight: 600 !important;
}
.nav-cta::after { display: none; }
.nav-cta:hover { background: var(--clay); }

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 8px;
}
.burger span {
  width: 26px; height: 2px;
  background: var(--forest);
  transition: .3s;
}

/* ---------- Hero accueil ---------- */
.hero {
  position: relative;
  min-height: 84vh;
  display: flex;
  align-items: center;
  color: var(--cream);
  background-size: cover;
  background-position: center;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(105deg, rgba(30,40,28,.78) 0%, rgba(40,55,38,.5) 55%, rgba(40,55,38,.15) 100%);
}
.hero-inner { position: relative; max-width: 660px; padding: 90px 26px; margin: 0 auto; width: 100%; }
.hero .wrap { width: 100%; }
.hero-tag {
  font-size: 1.05rem;
  font-family: var(--font-display);
  font-style: italic;
  color: var(--cream);
  opacity: .95;
  margin-bottom: 18px;
}
.hero h1 {
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  color: var(--white);
  margin-bottom: 22px;
}
.hero p { font-size: 1.08rem; color: rgba(255,253,248,.92); margin-bottom: 32px; max-width: 540px; }

/* ---------- Boutons ---------- */
.btn {
  display: inline-block;
  background: var(--clay);
  color: var(--white);
  padding: 14px 32px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  transition: transform .25s, background .25s, box-shadow .25s;
  box-shadow: var(--shadow-soft);
}
.btn:hover { transform: translateY(-2px); background: var(--forest); }
.btn-outline {
  background: transparent;
  border: 1.5px solid var(--forest);
  color: var(--forest);
  box-shadow: none;
}
.btn-outline:hover { background: var(--forest); color: var(--cream); }

/* ---------- Sections génériques ---------- */
section { padding: 76px 0; }
.section-sm { padding: 54px 0; }
.lead { font-size: 1.15rem; color: var(--ink-soft); }

/* ---------- Page interne : bandeau titre ---------- */
.page-banner {
  position: relative;
  height: clamp(340px, 46vh, 520px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cream);
  background-size: cover;
  background-position: center;
  text-align: center;
}
.page-banner::before {
  content:''; position:absolute; inset:0;
  background: linear-gradient(180deg, rgba(20,30,20,.5), rgba(20,30,20,.72));
}
.page-banner h1 {
  position: relative;
  color: var(--white);
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  text-shadow: 0 2px 12px rgba(0,0,0,.45);
}

/* ---------- Bloc intro accueil ---------- */
.intro h2 { font-size: clamp(1.9rem, 4vw, 2.9rem); margin-bottom: 24px; }
.intro h3 { font-size: 1.35rem; color: var(--clay); margin: 36px 0 14px; }
.intro p { margin-bottom: 16px; color: var(--ink-soft); }
.intro ul { list-style: none; margin: 8px 0 16px; }
.intro li { padding-left: 28px; position: relative; margin-bottom: 12px; color: var(--ink-soft); }
.intro li::before {
  content: '❧';
  position: absolute; left: 0; top: 0;
  color: var(--sage);
}

/* ---------- Section Kim (split) ---------- */
.about-split {
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: 60px;
  align-items: center;
  background: var(--cream-deep);
  padding-left: max(26px, calc((100% - 1180px) / 2));
  padding-right: max(26px, calc((100% - 1180px) / 2));
}
.about-split .wrap {
  display: contents;
}
.about-split .photo {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.about-split .photo img { width: 100%; height: 100%; object-fit: cover; }
.about-split h2 { font-size: 1.8rem; margin-bottom: 20px; }
.about-split p { color: var(--ink-soft); margin-bottom: 16px; }

/* ---------- Citation ---------- */
.quote {
  text-align: center;
  background: var(--forest-deep);
  color: var(--cream);
}
.quote blockquote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.5rem, 3.4vw, 2.4rem);
  line-height: 1.4;
  max-width: 860px;
  margin: 0 auto 20px;
  color: var(--white);
}
.quote cite { color: var(--sage-soft); font-style: normal; letter-spacing: 0.1em; font-size: 0.9rem; }

/* ---------- Note Google (preuve sociale) ---------- */
.rating-badge {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: var(--white);
  border-radius: 999px;
  padding: 12px 24px;
  box-shadow: var(--shadow-soft);
  margin: 0 auto 44px;
}
.rating-badge .g-logo { width: 26px; height: 26px; flex-shrink: 0; }
.rating-badge .score { font-family: var(--font-display); font-size: 1.5rem; color: var(--forest); line-height: 1; }
.rating-badge .rb-stars { color: var(--clay); letter-spacing: 1px; font-size: 0.95rem; }
.rating-badge .rb-count { font-size: 0.82rem; color: var(--ink-soft); display: block; margin-top: 2px; }
.rating-badge .rb-text { text-align: left; }
.rating-badge a, .rating-badge { color: inherit; }
a.rating-badge:hover { transform: translateY(-2px); transition: transform .2s; }

/* ---------- Carrousel témoignages ---------- */
.carousel { position: relative; }
.carousel-track {
  display: flex;
  gap: 28px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding: 6px 4px 24px;
  scrollbar-width: none;
}
.carousel-track::-webkit-scrollbar { display: none; }
.carousel-track .card {
  scroll-snap-align: center;
  flex: 0 0 360px;
  max-width: 360px;
}
@media (max-width: 480px) {
  .carousel-track .card { flex-basis: 84vw; max-width: 84vw; }
}
.carousel-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
  margin-top: 10px;
}
.carousel-btn {
  width: 46px; height: 46px;
  border-radius: 50%;
  border: 1.5px solid var(--sage);
  background: var(--white);
  color: var(--forest);
  cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center;
  transition: background .25s, color .25s, transform .2s;
}
.carousel-btn:hover { background: var(--forest); color: var(--cream); transform: translateY(-2px); }
.carousel-btn svg { width: 20px; height: 20px; stroke: currentColor; stroke-width: 2; fill: none; stroke-linecap: round; stroke-linejoin: round; }
.carousel-dots { display: flex; gap: 8px; }
.carousel-dots button {
  width: 9px; height: 9px; border-radius: 50%; border: 0; padding: 0;
  background: var(--sage-soft); cursor: pointer; transition: background .25s, transform .25s;
}
.carousel-dots button.active { background: var(--clay); transform: scale(1.3); }

/* ---------- Témoignages ---------- */
.testimonials { text-align: center; }
.testimonials h2 { font-size: clamp(1.8rem, 4vw, 2.6rem); margin-bottom: 50px; }
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 28px;
  align-items: stretch;
}
.card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 34px 28px;
  text-align: left;
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(59,74,56,.06);
}
.stars { color: var(--clay); margin-bottom: 14px; letter-spacing: 2px; }
.card p { color: var(--ink-soft); font-size: 0.97rem; flex-grow: 1; }
.card .who {
  display: flex; align-items: center; gap: 12px;
  margin-top: 22px; font-weight: 600; color: var(--forest);
}
.card .who img { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; }
.avatar-initials {
  width: 48px; height: 48px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 1.15rem; color: var(--white);
  flex-shrink: 0;
}

/* ---------- Appel à l'action ---------- */
.cta-band {
  background: linear-gradient(135deg, var(--sage) 0%, var(--forest) 100%);
  color: var(--cream);
  text-align: center;
}
.cta-band h2 { color: var(--white); font-size: clamp(1.8rem, 4vw, 2.6rem); margin-bottom: 14px; }
.cta-band p { color: rgba(255,253,248,.92); max-width: 620px; margin: 0 auto 30px; font-size: 1.1rem; }
.cta-band .btn { background: var(--white); color: var(--forest); }
.cta-band .btn:hover { background: var(--clay); color: var(--white); }

/* ---------- Contenu texte page interne ---------- */
.prose { max-width: 760px; margin: 0 auto; padding: 0 26px; }
.prose h2 { font-size: 1.7rem; margin: 36px 0 16px; }
.prose h3 { font-size: 1.3rem; color: var(--clay); margin: 30px 0 12px; }
.prose p { margin-bottom: 16px; color: var(--ink-soft); }
.prose ul, ul.prose { list-style: none; margin: 8px 0 20px; }
.prose li, ul.prose li { padding-left: 28px; position: relative; margin-bottom: 12px; color: var(--ink-soft); }
.prose li::before, ul.prose li::before { content:'•'; position:absolute; left:6px; color: var(--sage); font-size:1.3rem; line-height:1.2; }
.prose strong { color: var(--forest); }
.namaste { font-family: var(--font-display); font-style: italic; font-size: 1.3rem; color: var(--clay); margin-top: 24px; }

/* ---------- Planning : tableau hebdomadaire ---------- */
.timetable {
  margin: 10px 0 40px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  background: var(--white);
  border: 1px solid rgba(59,74,56,.06);
}
.tt-row {
  display: grid;
  grid-template-columns: 150px 1fr;
  align-items: stretch;
  border-bottom: 1px solid rgba(59,74,56,.1);
}
.tt-row:last-child { border-bottom: 0; }
.tt-day {
  background: var(--cream-deep);
  padding: 22px 24px;
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--forest);
  display: flex;
  align-items: center;
}
.tt-slots {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  padding: 18px 22px;
}
.tt-slot {
  flex: 1 1 240px;
  min-width: 0;
  background: var(--cream);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  border-left: 3px solid var(--sage);
}
.tt-slot .time { font-weight: 700; color: var(--clay); display: block; font-size: 1.02rem; }
.tt-slot .type { font-size: 0.9rem; color: var(--ink-soft); display: block; margin: 3px 0 8px; }
.tt-slot .by { font-size: 0.78rem; color: var(--sage); display: block; margin: -4px 0 8px; }
.tt-slot.alt { border-left-color: var(--clay); }
.avail {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.78rem; font-weight: 700; letter-spacing: .01em;
  padding: 3px 10px; border-radius: 999px;
}
.avail::before { content: ''; width: 7px; height: 7px; border-radius: 50%; background: currentColor; }
.avail.ok    { background: #e7f0e3; color: #4e7a45; }
.avail.low   { background: #fbeede; color: #b9762f; }
.avail.full  { background: #f0e6e4; color: #9a5a4f; }

@media (max-width: 620px) {
  .tt-row { grid-template-columns: 1fr; }
  .tt-day { padding: 14px 18px; border-bottom: 1px solid rgba(59,74,56,.1); }
  .tt-slots { padding: 14px 16px; }
}

.info-box {
  background: var(--cream-deep);
  border-radius: var(--radius);
  padding: 36px 38px;
  margin-top: 30px;
}
.info-box h3 { margin-top: 0; }

/* ---------- Tarifs cartes ---------- */
.price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  align-items: stretch;
}
@media (max-width: 900px) { .price-grid { grid-template-columns: 1fr; max-width: 460px; margin-left: auto; margin-right: auto; } }
.price-card {
  position: relative;
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 32px;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(59,74,56,.06);
  display: flex;
  flex-direction: column;
}
.price-card.feature { border: 2px solid var(--clay); }
.price-card .ribbon {
  position: absolute;
  top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--clay); color: var(--white);
  font-size: 0.72rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  padding: 6px 16px; border-radius: 999px; white-space: nowrap;
  box-shadow: var(--shadow-soft);
}
.price-card h3 { color: var(--forest); margin-bottom: 6px; font-size: 1.4rem; }
.price-card .sub { font-size: 0.88rem; color: var(--sage); margin-bottom: 20px; }
.price-list { list-style: none; flex-grow: 1; }
.price-list li {
  display: flex; justify-content: space-between; align-items: baseline;
  padding: 12px 0; border-bottom: 1px dashed rgba(59,74,56,.14);
  color: var(--ink-soft);
}
.price-list li:last-child { border-bottom: 0; }
.price-list .amount { font-family: var(--font-display); font-size: 1.25rem; color: var(--clay); font-weight: 500; white-space: nowrap; }

/* ---------- Galerie ---------- */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 14px;
}
.gallery img {
  width: 100%; aspect-ratio: 1; object-fit: cover;
  border-radius: var(--radius-sm);
  transition: transform .4s, filter .4s;
  filter: saturate(.9);
}
.gallery img:hover { transform: scale(1.03); filter: saturate(1.1); cursor: zoom-in; }

/* Lightbox galerie */
.lightbox {
  position: fixed; inset: 0; z-index: 100;
  background: rgba(28,40,28,.92);
  display: none;
  align-items: center; justify-content: center;
  padding: 28px;
  cursor: zoom-out;
}
.lightbox.open { display: flex; }
.lightbox img { max-width: 92vw; max-height: 90vh; border-radius: var(--radius-sm); box-shadow: 0 20px 60px rgba(0,0,0,.5); }
.lightbox .lb-close {
  position: absolute; top: 22px; right: 26px;
  width: 46px; height: 46px; border-radius: 50%;
  background: rgba(255,255,255,.15); border: 0; color: #fff;
  font-size: 1.6rem; cursor: pointer; line-height: 1;
}
.lightbox .lb-close:hover { background: rgba(255,255,255,.3); }

.bullets-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 22px;
  margin: 30px 0;
}
.bullet-card {
  background: var(--white);
  border-radius: var(--radius-sm);
  padding: 28px;
  box-shadow: var(--shadow-soft);
}
.bullet-card h3 { font-size: 1.2rem; margin-bottom: 12px; color: var(--forest); }

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
}
.contact-info p { color: var(--ink-soft); margin-bottom: 16px; }
.contact-info .line { font-size: 1.05rem; color: var(--forest); font-weight: 600; margin-bottom: 8px; }
.form-field { margin-bottom: 20px; }
.form-field label { display: block; font-weight: 600; margin-bottom: 8px; color: var(--forest); font-size: 0.92rem; }
.form-field input, .form-field textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid rgba(59,74,56,.18);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 1rem;
  background: var(--white);
  color: var(--ink);
  transition: border-color .25s;
}
.form-field input:focus, .form-field textarea:focus { outline: none; border-color: var(--sage); }
.form-field textarea { min-height: 140px; resize: vertical; }
.form-consent { margin: -4px 0 20px; }
.form-consent label { display: flex; gap: 10px; align-items: flex-start; cursor: pointer; font-size: 0.86rem; color: var(--ink-soft); line-height: 1.5; }
.form-consent input[type="checkbox"] { margin-top: 3px; width: 17px; height: 17px; accent-color: var(--sage); flex-shrink: 0; cursor: pointer; }

/* ---------- Pied de page ---------- */
.site-footer {
  background: var(--forest-deep);
  color: var(--cream);
  padding: 64px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-grid h4 { color: var(--sage-soft); font-family: var(--font-body); text-transform: uppercase; letter-spacing: .16em; font-size: .8rem; margin-bottom: 16px; }
.footer-grid p, .footer-grid a { color: rgba(246,241,231,.82); font-size: 0.95rem; line-height: 1.9; }
.footer-grid a:hover { color: var(--clay-soft); }
.footer-logo img { height: 56px; width: auto; max-width: none; margin-bottom: 16px; opacity: .95; }
.footer-links { list-style: none; }
.footer-social { margin-top: 14px; }
.footer-social a { display: inline-flex; color: rgba(246,241,231,.6); transition: color .2s; }
.footer-social a:hover { color: var(--cream); }
.footer-bottom {
  border-top: 1px solid rgba(246,241,231,.15);
  padding-top: 22px;
  text-align: center;
  font-size: 0.82rem;
  color: rgba(246,241,231,.6);
}
.footer-bottom a { color: var(--sage-soft); }

/* ---------- Icônes au trait (SVG) ---------- */
.icon {
  width: 1em; height: 1em;
  stroke: currentColor; stroke-width: 1.7;
  fill: none; stroke-linecap: round; stroke-linejoin: round;
  vertical-align: -0.12em;
}
.trust-item .ic {
  display: inline-flex; align-items: center; justify-content: center;
  width: 46px; height: 46px; margin: 0 auto 12px;
  border-radius: 50%;
  background: var(--white);
  color: var(--sage);
  box-shadow: var(--shadow-soft);
}
.trust-item .ic .icon { width: 22px; height: 22px; }
.badge .ic { color: var(--clay); display: inline-flex; }
.badge .ic .icon { width: 16px; height: 16px; }
.bullet-card .ico { color: var(--clay); display: block; margin-bottom: 12px; }
.bullet-card .ico .icon { width: 30px; height: 30px; }

/* ---------- Microcopy sous bouton ---------- */
.cta-note {
  display: block;
  margin-top: 12px;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  opacity: 0.9;
}
.hero .cta-note { color: rgba(255,253,248,.88); }

/* ---------- Bandeau de réassurance ---------- */
.trust-strip {
  background: var(--cream-deep);
  border-top: 1px solid rgba(59,74,56,.08);
  border-bottom: 1px solid rgba(59,74,56,.08);
}
.trust-strip .wrap {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding-top: 34px;
  padding-bottom: 34px;
}
.trust-item { text-align: center; }
.trust-item .ic { font-size: 1.6rem; display: block; margin-bottom: 8px; }
.trust-item strong { display: block; color: var(--forest); font-family: var(--font-display); font-size: 1.05rem; }
.trust-item span { font-size: 0.85rem; color: var(--ink-soft); }
@media (max-width: 760px) {
  .trust-strip .wrap { grid-template-columns: 1fr 1fr; gap: 28px; }
  /* Hero plus compact : le contenu suivant devient accessible plus vite */
  .hero { min-height: 0; }
  .hero-inner { padding: 56px 22px; }
  .hero h1 { font-size: clamp(2rem, 8.5vw, 2.6rem); }
  .hero p { font-size: 1rem; margin-bottom: 26px; }
  .trust-strip .wrap { padding-top: 30px; padding-bottom: 30px; }
}

/* ---------- Badges de certification ---------- */
.badges { display: flex; flex-wrap: wrap; gap: 10px; margin: 22px 0 6px; }
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border: 1.5px solid var(--sage-soft);
  color: var(--forest);
  padding: 9px 15px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 600;
  box-shadow: var(--shadow-soft);
  white-space: nowrap;
}
.badge .ic { color: var(--clay); }

/* ---------- FAQ ---------- */
.faq { background: var(--cream-deep); }
.faq h2 { text-align: center; font-size: clamp(1.8rem, 4vw, 2.6rem); margin-bottom: 12px; }
.faq .faq-sub { text-align: center; color: var(--ink-soft); margin-bottom: 42px; }
.faq-list { max-width: 780px; margin: 0 auto; }
.faq-item {
  background: var(--white);
  border-radius: var(--radius-sm);
  margin-bottom: 14px;
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 26px;
  font-family: var(--font-display);
  font-size: 1.12rem;
  color: var(--forest);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 1.6rem;
  color: var(--clay);
  transition: transform .3s;
  line-height: 1;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item .answer { padding: 0 26px 24px; color: var(--ink-soft); }

/* ---------- Bandeau consentement RGPD ---------- */
.cookie-banner {
  position: fixed;
  left: 18px; right: 18px; bottom: 18px;
  z-index: 95;
  max-width: 720px;
  margin: 0 auto;
  background: var(--white);
  border: 1px solid rgba(59,74,56,.12);
  border-radius: var(--radius);
  box-shadow: 0 20px 50px -18px rgba(44,56,41,.5);
  padding: 22px 24px;
  display: none;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.cookie-banner.show { display: flex; }
.cookie-banner p { font-size: 0.9rem; color: var(--ink-soft); flex: 1 1 320px; margin: 0; line-height: 1.6; }
.cookie-banner p a { color: var(--clay); text-decoration: underline; }
.cookie-actions { display: flex; gap: 10px; flex: 0 0 auto; flex-wrap: wrap; }
.cookie-actions button {
  border: 0; cursor: pointer; font-family: var(--font-body);
  font-weight: 600; font-size: 0.88rem;
  padding: 11px 20px; border-radius: 999px;
  transition: transform .2s, background .2s, color .2s;
}
.cookie-actions .ck-accept { background: var(--forest); color: var(--cream); }
.cookie-actions .ck-accept:hover { background: var(--clay); transform: translateY(-2px); }
.cookie-actions .ck-refuse { background: transparent; color: var(--ink-soft); border: 1.5px solid rgba(59,74,56,.25); }
.cookie-actions .ck-refuse:hover { background: var(--cream-deep); }
@media (max-width: 540px) {
  .cookie-actions { width: 100%; }
  .cookie-actions button { flex: 1; }
}

/* ---------- Bouton WhatsApp flottant ---------- */
.wa-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 40;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #25d366;
  color: #fff;
  padding: 13px 18px 13px 15px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.92rem;
  box-shadow: 0 12px 30px -8px rgba(37, 211, 102, .6);
  transition: transform .25s, box-shadow .25s;
}
.wa-float:hover { transform: translateY(-3px); box-shadow: 0 16px 36px -8px rgba(37, 211, 102, .7); }
.wa-float svg { width: 26px; height: 26px; flex-shrink: 0; }
.wa-float .wa-label { white-space: nowrap; }
@media (max-width: 600px) {
  .wa-float { padding: 14px; }
  .wa-float .wa-label { display: none; }
}

/* Liens de contact cliquables */
.contact-link { transition: color .2s; }
.contact-link:hover { color: var(--clay); }

/* ---------- Animations d'apparition ---------- */
.reveal { opacity: 1; transform: none; }
.js .reveal { opacity: 0; transform: translateY(24px); transition: opacity .8s ease, transform .8s ease; }
.js .reveal.in { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .about-split { grid-template-columns: 1fr; gap: 36px; }
  .contact-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 980px) {
  .nav-links {
    position: fixed;
    top: 0; right: 0;
    height: 100vh;
    width: 78%;
    max-width: 320px;
    background: var(--cream);
    flex-direction: column;
    justify-content: center;
    gap: 28px;
    padding: 40px;
    transform: translateX(100%);
    transition: transform .35s ease;
    box-shadow: -20px 0 50px -20px rgba(0,0,0,.4);
  }
  .nav-links.open { transform: translateX(0); }
  .nav-links a { font-size: 1.1rem; }
  .burger { display: flex; z-index: 60; }
  .burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .burger.open span:nth-child(2) { opacity: 0; }
  .burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  section { padding: 60px 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
}
