/* ==========================================================================
   Le Souffle du Pissenlit — Feuille de style principale
   ========================================================================== */

/* ---------- POLICES GOOGLE FONTS (chargées depuis les HTML) -------------- */
/* Cormorant Garamond : titres | Nunito Sans : texte | Caveat : signature   */

/* ---------- VARIABLES ------------------------------------------------------ */
:root {
  --creme:           #FBF6F0;
  --creme-chaud:     #F5EADF;
  --abricot:         #EABC9F;
  --terracotta:      #A85F42;
  --terracotta-fonce:#8E4E36;
  --brume-lavande:   #C3C2D9;
  --lavande-profond: #8C8DAC;
  --lavande-clair:   #E2E1EC;
  --sauge:           #A3AE97;
  --encre:           #423B44;
  --encre-doux:      #6B6168;
  --ligne:           rgba(66, 59, 68, 0.12);
  --ligne-douce:     rgba(66, 59, 68, 0.06);
  --blanc:           #FFFFFF;

  --serif: "Cormorant Garamond", Georgia, serif;
  --sans:  "Nunito Sans", -apple-system, sans-serif;
  --hand:  "Caveat", cursive;

  --container:   1200px;
  --gap-xs:      8px;
  --gap-sm:      16px;
  --gap-md:      32px;
  --gap-lg:      64px;
  --gap-xl:      96px;
  --section-py:  clamp(80px, 12vw, 140px);
  --radius-sm:   12px;
  --radius-md:   20px;
  --radius-lg:   32px;
  --radius-pill: 999px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--sans);
  background: var(--creme);
  color: var(--encre);
  line-height: 1.7;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: var(--sans); cursor: pointer; border: none; background: none; }

/* ---------- TYPOGRAPHIES --------------------------------------------------- */
h1 {
  font-family: var(--serif);
  font-size: clamp(40px, 6vw, 78px);
  line-height: 1.05;
  font-weight: 400;
  letter-spacing: -0.015em;
}
h2 {
  font-family: var(--serif);
  font-size: clamp(32px, 4vw, 54px);
  line-height: 1.1;
  font-weight: 400;
  letter-spacing: -0.015em;
}
h3 {
  font-family: var(--serif);
  font-size: clamp(22px, 2vw, 28px);
  line-height: 1.25;
  font-weight: 500;
}
p { font-size: 16px; line-height: 1.75; }

.eyebrow {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--terracotta);
  display: block;
  margin-bottom: 14px;
}

/* ---------- LAYOUT --------------------------------------------------------- */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
}

.section-py {
  padding-top: var(--section-py);
  padding-bottom: var(--section-py);
}

.text-center { text-align: center; }

/* Accessible uniquement aux lecteurs d'écran */
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* ---------- BOUTONS -------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.02em;
  padding: 14px 28px;
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  text-decoration: none;
}
.btn .arrow {
  display: inline-block;
  transition: transform 0.2s ease;
}
.btn:hover .arrow { transform: translateX(3px); }

.btn--primary {
  background: var(--terracotta);
  color: var(--blanc);
  box-shadow: 0 8px 24px rgba(168, 95, 66, 0.22);
}
.btn--primary:hover {
  background: var(--terracotta-fonce);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(168, 95, 66, 0.3);
}

.btn--ghost {
  background: transparent;
  color: var(--encre);
  border: 1px solid var(--ligne);
}
.btn--ghost:hover {
  border-color: var(--encre);
  background: var(--creme-chaud);
}

.btn--ghost-terracotta {
  background: transparent;
  color: var(--terracotta);
  border: 1.5px solid var(--abricot);
}
.btn--ghost-terracotta:hover {
  border-color: var(--terracotta);
  background: var(--creme-chaud);
}

.btn:disabled, .btn[disabled] {
  opacity: 0.4;
  cursor: not-allowed;
  pointer-events: none;
}

/* ---------- HEADER / NAVIGATION ------------------------------------------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 20px 0;
  transition: background 0.3s ease, box-shadow 0.3s ease, padding 0.3s ease;
}
.site-header.scrolled {
  background: rgba(251, 246, 240, 0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 4px 24px rgba(66, 59, 68, 0.07);
  padding: 12px 0;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--gap-md);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.brand__logo {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 4px 12px rgba(66, 59, 68, 0.12);
}
.brand__name {
  font-family: var(--serif);
  font-style: italic;
  font-size: 20px;
  font-weight: 400;
  color: var(--encre);
  line-height: 1.1;
}
.brand__name .souffle {
  text-decoration: underline;
  text-decoration-color: var(--terracotta);
  text-underline-offset: 4px;
  text-decoration-thickness: 1.5px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav-links a {
  font-size: 14px;
  font-weight: 600;
  color: var(--encre);
  position: relative;
  transition: color 0.2s ease;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -6px;
  height: 2px;
  background: var(--abricot);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.25s ease;
}
.nav-links a:hover { color: var(--terracotta); }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-links a.active { color: var(--terracotta); }
.nav-links a.active::after { transform: scaleX(1); }

.nav-cta { margin-left: 8px; }

/* Hamburger */
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  border-radius: var(--radius-sm);
  transition: background 0.2s ease;
}
.burger:hover { background: var(--ligne-douce); }
.burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--encre);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.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); }

/* Mobile nav overlay */
.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 99;
  background: var(--creme);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.mobile-nav.open {
  opacity: 1;
  pointer-events: all;
}
.mobile-nav a {
  font-family: var(--serif);
  font-size: clamp(28px, 6vw, 42px);
  color: var(--encre);
  transition: color 0.2s ease;
}
.mobile-nav a:hover { color: var(--terracotta); }
.mobile-nav .btn { margin-top: 12px; }

/* Focus visible */
:focus-visible {
  outline: 2.5px solid var(--terracotta);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ---------- HERO ----------------------------------------------------------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: clamp(120px, 14vw, 160px) 0 clamp(80px, 10vw, 120px);
}

.hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 55% 50% at 20% 30%, rgba(234, 188, 159, 0.5), transparent 70%),
    radial-gradient(ellipse 50% 55% at 85% 75%, rgba(195, 194, 217, 0.45), transparent 70%),
    var(--creme);
  z-index: 0;
}

.hero__grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}

.hero__text .eyebrow { margin-bottom: 18px; }

.hero__title {
  margin-bottom: 22px;
}
.hero__title em {
  font-style: italic;
  color: var(--terracotta);
}

.hero__subtitle {
  font-size: 19px;
  color: var(--encre-doux);
  max-width: 500px;
  margin-bottom: 36px;
  line-height: 1.65;
}

.hero__ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.hero__metapoints {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.hero__metapoint {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  color: var(--encre-doux);
  font-weight: 600;
}
.hero__metapoint::before {
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--abricot);
  flex-shrink: 0;
}

/* Hero visuel */
.hero__visual {
  position: relative;
  display: flex;
  justify-content: center;
}
.hero__photo-wrap {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 380px;
}
.hero__photo {
  width: 100%;
  border-radius: 200px 200px 24px 24px;
  object-fit: cover;
  aspect-ratio: 3 / 4;
  box-shadow: 0 24px 48px rgba(66, 59, 68, 0.16);
}
.hero__blob-lavande {
  position: absolute;
  top: -30px; right: -40px;
  width: 220px; height: 220px;
  border-radius: 50%;
  background: rgba(195, 194, 217, 0.45);
  filter: blur(40px);
  z-index: 1;
}
.hero__blob-creme {
  position: absolute;
  bottom: -20px; left: -40px;
  width: 180px; height: 180px;
  border-radius: 50%;
  background: rgba(234, 188, 159, 0.4);
  filter: blur(35px);
  z-index: 1;
}
.hero__floating-card {
  position: absolute;
  bottom: 24px;
  left: -24px;
  background: var(--blanc);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  box-shadow: 0 12px 32px rgba(66, 59, 68, 0.13);
  font-size: 13px;
  font-weight: 600;
  color: var(--encre);
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
}
.hero__floating-card::before {
  content: "";
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #6BC17A;
  flex-shrink: 0;
}

/* ---------- SECTION GÉNÉRIQUE --------------------------------------------- */
.section-bg--creme     { background: var(--creme); }
.section-bg--creme-chaud { background: var(--creme-chaud); }
.section-bg--lavande   { background: linear-gradient(160deg, var(--lavande-clair), #d6d5e4); }
.section-bg--encre     { background: var(--encre); color: var(--blanc); }

/* Animations d'entrée (JS les déclenche via IntersectionObserver) */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ---------- SECTION HISTOIRE / À PROPOS ----------------------------------- */
.about-grid {
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: clamp(40px, 7vw, 80px);
  align-items: start;
}

.about__portrait-wrap {
  position: sticky;
  top: 100px;
}
.about__portrait-inner {
  position: relative;
}
.about__portrait-blob {
  position: absolute;
  inset: -24px -24px 30px;
  background: linear-gradient(155deg, rgba(234, 188, 159, 0.5), rgba(195, 194, 217, 0.45));
  border-radius: 30px;
  z-index: 0;
}
.about__portrait {
  position: relative;
  z-index: 1;
  width: 100%;
  border-radius: 24px;
  object-fit: cover;
  aspect-ratio: 3 / 4;
  box-shadow: 0 20px 44px rgba(66, 59, 68, 0.14);
}
.about__signature-pill {
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--blanc);
  padding: 9px 22px;
  border-radius: var(--radius-pill);
  box-shadow: 0 8px 20px rgba(66, 59, 68, 0.12);
  font-family: var(--hand);
  font-size: 22px;
  color: var(--terracotta);
  white-space: nowrap;
  z-index: 2;
}

.about__content .eyebrow { margin-bottom: 12px; }
.about__content h2 { margin-bottom: 28px; }

/* Drop cap sur le premier paragraphe */
.about__lead > p:first-child::first-letter {
  font-family: var(--serif);
  font-size: 4.5em;
  font-weight: 400;
  color: var(--terracotta);
  float: left;
  line-height: 0.75;
  padding-right: 10px;
  margin-top: 6px;
}

.about__lead p {
  color: var(--encre-doux);
  margin-bottom: 20px;
  font-size: 17px;
}
.about__lead p:last-child { margin-bottom: 0; }

.about__signature-text {
  font-family: var(--serif);
  font-style: italic;
  font-size: 22px;
  color: var(--terracotta);
  margin-top: 24px;
  display: block;
}

.about__formations {
  margin-top: 32px;
  padding-top: 28px;
  border-top: 1px solid var(--ligne);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.about__formation {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  color: var(--encre-doux);
}
.about__formation::before {
  content: "✦";
  color: var(--terracotta);
  font-size: 11px;
  margin-top: 2px;
  flex-shrink: 0;
}

.about__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--terracotta);
  font-weight: 600;
  font-size: 15px;
  margin-top: 28px;
  transition: gap 0.2s ease;
}
.about__link:hover { gap: 10px; }

/* ---------- CARTES (3 colonnes) ------------------------------------------- */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.card {
  background: var(--blanc);
  border-radius: 24px;
  padding: 32px;
  border: 1px solid var(--ligne-douce);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 44px rgba(66, 59, 68, 0.1);
}

.card__icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(150deg, rgba(234, 188, 159, 0.45), rgba(195, 194, 217, 0.35));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  flex-shrink: 0;
}
.card__icon svg {
  width: 24px;
  height: 24px;
  color: var(--terracotta);
}

.card h3 { margin-bottom: 12px; }
.card p { font-size: 15px; color: var(--encre-doux); line-height: 1.65; }

/* ---------- ÉTAPES NUMÉROTÉES --------------------------------------------- */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.step-card {
  background: var(--blanc);
  border-radius: 24px;
  padding: 32px;
  border: 1px solid var(--ligne-douce);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.step-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 44px rgba(66, 59, 68, 0.1);
}
.step-card__num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 48px;
  color: var(--terracotta);
  line-height: 1;
  margin-bottom: 16px;
  opacity: 0.75;
}
.step-card h3 { margin-bottom: 10px; }
.step-card p { font-size: 14px; color: var(--encre-doux); line-height: 1.65; }

/* ---------- TÉMOIGNAGE / CITATION ----------------------------------------- */
.temoignage {
  text-align: center;
}
.temoignage__quote-mark {
  font-family: var(--serif);
  font-size: 80px;
  color: rgba(234, 188, 159, 0.6);
  line-height: 0.5;
  height: 48px;
  display: block;
  margin: 0 auto 24px;
}
.temoignage blockquote {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(20px, 2.5vw, 28px);
  line-height: 1.55;
  color: var(--encre);
  max-width: 760px;
  margin: 0 auto 20px;
  font-weight: 400;
}
.temoignage__author {
  font-size: 13px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--lavande-profond);
  font-weight: 600;
}

/* ---------- APPEL FINAL ---------------------------------------------------- */
.appel-card {
  background: linear-gradient(145deg, rgba(234, 188, 159, 0.35), rgba(195, 194, 217, 0.3));
  border-radius: var(--radius-lg);
  padding: clamp(48px, 8vw, 88px);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.appel-card::before {
  content: "";
  position: absolute;
  top: -60px; right: -60px;
  width: 200px; height: 200px;
  border-radius: 50%;
  background: rgba(234, 188, 159, 0.3);
  filter: blur(50px);
}
.appel-card h2 { margin-bottom: 16px; }
.appel-card p {
  color: var(--encre-doux);
  max-width: 480px;
  margin: 0 auto 32px;
  font-size: 17px;
}
.appel-card__note {
  display: block;
  font-size: 13px;
  color: var(--encre-doux);
  margin-top: 16px;
}
.appel-card__note a {
  color: var(--terracotta);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* ---------- PIED DE PAGE --------------------------------------------------- */
.site-footer {
  background: var(--encre);
  color: #D9D2DA;
  padding: 72px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 44px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.footer__brand-logo {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  margin-bottom: 14px;
  filter: brightness(0) invert(1) opacity(0.7);
}
.footer__brand-name {
  font-family: var(--serif);
  font-size: 20px;
  color: var(--creme);
  margin-bottom: 10px;
}
.footer__tagline {
  font-size: 13px;
  color: #8E8792;
  line-height: 1.6;
  max-width: 260px;
}
.footer__col h4 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--abricot);
  margin-bottom: 16px;
}
.footer__col a, .footer__col p {
  display: block;
  font-size: 14px;
  color: #B5AEB8;
  margin-bottom: 10px;
  transition: color 0.2s ease;
  font-weight: 300;
}
.footer__col a:hover { color: var(--creme); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 22px;
  font-size: 12px;
  color: #8E8792;
  flex-wrap: wrap;
  gap: 8px;
}
.footer-bottom .made-with {
  font-family: var(--hand);
  font-size: 16px;
  color: var(--abricot);
}

/* ---------- SECTION HERO PAGE INTÉRIEURE ---------------------------------- */
.page-hero {
  padding: clamp(120px, 14vw, 160px) 0 clamp(60px, 8vw, 100px);
  background:
    radial-gradient(ellipse 60% 50% at 80% 80%, rgba(195, 194, 217, 0.35), transparent 70%),
    radial-gradient(ellipse 55% 50% at 15% 15%, rgba(234, 188, 159, 0.35), transparent 70%),
    var(--creme);
}
.page-hero h1 { margin-bottom: 18px; max-width: 800px; }
.page-hero h1 em { font-style: italic; color: var(--terracotta); }
.page-hero__subtitle {
  font-size: 19px;
  color: var(--encre-doux);
  max-width: 560px;
  line-height: 1.6;
}

/* ---------- PAGE MON HISTOIRE --------------------------------------------- */
.article-body {
  max-width: 720px;
  margin: 0 auto;
}
.article-body p {
  font-size: 17px;
  color: var(--encre-doux);
  margin-bottom: 24px;
  line-height: 1.8;
}
.article-body .pull-quote {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(22px, 2.5vw, 30px);
  color: var(--terracotta);
  text-align: center;
  max-width: 600px;
  margin: 48px auto;
  line-height: 1.45;
}

.history-hero-photo {
  width: 100%;
  aspect-ratio: 16 / 7;
  object-fit: cover;
  border-radius: var(--radius-md);
  margin-bottom: clamp(48px, 6vw, 72px);
}

.formations-encart {
  background: var(--creme-chaud);
  border-radius: var(--radius-md);
  padding: 36px 40px;
  margin-top: 48px;
}
.formations-encart .eyebrow { margin-bottom: 24px; }
.formations-encart h3 { margin-bottom: 6px; color: var(--encre); }
.formations-encart p { color: var(--encre-doux); font-size: 15px; margin-bottom: 20px; }
.formations-encart p:last-child { margin-bottom: 0; }

/* ---------- ACCOMPAGNEMENT : SECTION MODALITÉS ---------------------------- */
.modalites-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

/* ---------- THÈMES (grille 6 cellules avec séparation) -------------------- */
.themes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--ligne);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.theme-cell {
  background: var(--creme);
  padding: 28px 24px;
  transition: background 0.2s ease;
}
.theme-cell:hover { background: var(--creme-chaud); }
.theme-cell__icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(150deg, rgba(234, 188, 159, 0.5), rgba(195, 194, 217, 0.35));
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.theme-cell__icon svg {
  width: 18px;
  height: 18px;
  color: var(--terracotta);
}
.theme-cell h3 {
  font-size: 20px;
  margin-bottom: 8px;
}
.theme-cell p {
  font-size: 14px;
  color: var(--encre-doux);
  line-height: 1.6;
}

/* ---------- TARIFS --------------------------------------------------------- */
.tarifs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.tarif-card {
  background: var(--blanc);
  border-radius: 24px;
  padding: 32px 28px;
  border: 1px solid var(--ligne-douce);
  display: flex;
  flex-direction: column;
  gap: 0;
  transition: box-shadow 0.3s ease;
}
.tarif-card:hover {
  box-shadow: 0 20px 44px rgba(66, 59, 68, 0.1);
}
.tarif-card--featured {
  background: var(--encre);
  color: var(--blanc);
  border-color: transparent;
  box-shadow: 0 16px 40px rgba(66, 59, 68, 0.22);
}

.tarif-card__badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  background: rgba(234, 188, 159, 0.5);
  color: var(--terracotta);
  margin-bottom: 16px;
  align-self: flex-start;
}
.tarif-card--featured .tarif-card__badge {
  background: rgba(234, 188, 159, 0.2);
  color: var(--abricot);
}

.tarif-card__name {
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--encre-doux);
  margin-bottom: 6px;
}
.tarif-card--featured .tarif-card__name { color: rgba(255,255,255,0.6); }

.tarif-card__price {
  font-family: var(--serif);
  font-size: 44px;
  font-weight: 400;
  color: var(--terracotta);
  line-height: 1;
  margin-bottom: 4px;
}
.tarif-card--featured .tarif-card__price { color: var(--abricot); }
.tarif-card__price.price-free { color: var(--sauge); }
.tarif-card--featured .tarif-card__price.price-free { color: #A3AE97; }

.tarif-card__duration {
  font-size: 12px;
  color: var(--encre-doux);
  margin-bottom: 14px;
  font-weight: 600;
}
.tarif-card--featured .tarif-card__duration { color: rgba(255,255,255,0.5); }

.tarif-card__desc {
  font-size: 14px;
  color: var(--encre-doux);
  margin-bottom: 20px;
  line-height: 1.55;
}
.tarif-card--featured .tarif-card__desc { color: rgba(255,255,255,0.7); }

.tarif-card__list {
  flex: 1;
  display: flex;
  flex-direction: column;
  margin-bottom: 24px;
}
.tarif-card__list li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 0;
  font-size: 14px;
  color: var(--encre-doux);
  border-bottom: 1px solid var(--ligne-douce);
}
.tarif-card__list li:last-child { border-bottom: none; }
.tarif-card--featured .tarif-card__list li {
  color: rgba(255,255,255,0.75);
  border-bottom-color: rgba(255,255,255,0.08);
}
.tarif-card__list li::before {
  content: "✓";
  color: var(--terracotta);
  font-weight: 700;
  font-size: 13px;
  flex-shrink: 0;
}
.tarif-card--featured .tarif-card__list li::before {
  color: var(--abricot);
}

.tarif-card .btn {
  align-self: stretch;
  justify-content: center;
  text-align: center;
}

.tarifs-note {
  text-align: center;
  margin-top: 28px;
  font-size: 14px;
  color: var(--encre-doux);
}

/* ---------- FAQ ACCORDÉON -------------------------------------------------- */
.faq-list {
  display: flex;
  flex-direction: column;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--ligne-douce);
}
.faq-item {
  border-bottom: 1px solid var(--ligne-douce);
}
.faq-item:last-child { border-bottom: none; }
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  cursor: pointer;
  background: var(--blanc);
  transition: background 0.2s ease;
  font-size: 16px;
  font-weight: 600;
  color: var(--encre);
  width: 100%;
  text-align: left;
}
.faq-question:hover { background: var(--creme); }
.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1.5px solid var(--ligne);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.3s ease, background 0.2s ease, border-color 0.2s ease;
  font-size: 16px;
  color: var(--terracotta);
}
.faq-item.open .faq-icon {
  transform: rotate(45deg);
  background: var(--terracotta);
  border-color: var(--terracotta);
  color: var(--blanc);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  background: var(--blanc);
}
.faq-answer-inner {
  padding: 0 24px 20px;
  font-size: 15px;
  color: var(--encre-doux);
  line-height: 1.75;
}

/* ---------- PAGE VOYAGE ---------------------------------------------------- */
.voyage-parabole p {
  font-size: 18px;
  color: var(--encre-doux);
  margin-bottom: 24px;
  line-height: 1.85;
  max-width: 680px;
}
.voyage-pissenlit-img {
  width: 100%;
  max-height: 420px;
  object-fit: cover;
  border-radius: var(--radius-md);
  margin: 0 auto;
  display: block;
}
.voyage-pissenlit-logo {
  display: block;
  margin: 0 auto;
  max-width: 320px;
  opacity: 0.75;
}

.voyage-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.voyage-card {
  background: var(--blanc);
  border-radius: 24px;
  padding: 36px 28px;
  border: 1px solid var(--ligne-douce);
  transition: transform 0.3s ease;
}
.voyage-card:hover { transform: translateY(-4px); }
.voyage-card .eyebrow { margin-bottom: 10px; }
.voyage-card h3 { margin-bottom: 14px; }
.voyage-card p {
  font-size: 15px;
  color: var(--encre-doux);
  line-height: 1.7;
  font-style: italic;
  font-family: var(--serif);
  font-size: 17px;
}

.articles-encart {
  background: var(--blanc);
  border: 1px solid var(--ligne-douce);
  border-radius: var(--radius-md);
  padding: 36px 40px;
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}
.articles-encart p {
  color: var(--encre-doux);
  font-size: 16px;
  margin-top: 12px;
}

/* ---------- PAGE CONTACT / BOOKING ---------------------------------------- */
.booking-container {
  background: var(--blanc);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 5vw, 52px);
  box-shadow: 0 16px 56px rgba(66, 59, 68, 0.1);
  max-width: 880px;
  margin: 0 auto;
}

/* Pills d'étapes */
.booking-steps {
  display: flex;
  gap: 8px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}
.booking-step-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  font-size: 13px;
  font-weight: 600;
  border: 1px solid var(--ligne-douce);
  background: var(--blanc);
  color: var(--encre-doux);
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.booking-step-pill.active {
  background: var(--encre);
  color: var(--creme);
  border-color: var(--encre);
}
.booking-step-pill.done {
  background: rgba(234, 188, 159, 0.3);
  color: var(--encre);
  border-color: var(--abricot);
}
.booking-step-pill__num {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--ligne-douce);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  flex-shrink: 0;
}
.booking-step-pill.active .booking-step-pill__num {
  background: rgba(255,255,255,0.2);
}
.booking-step-pill.done .booking-step-pill__num {
  background: var(--terracotta);
  color: var(--blanc);
}

.booking-step-title {
  font-family: var(--serif);
  font-size: clamp(24px, 3vw, 32px);
  margin-bottom: 8px;
}
.booking-step-subtitle {
  font-size: 15px;
  color: var(--encre-doux);
  margin-bottom: 28px;
}

/* Cartes motif */
.motifs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.motif-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px 20px;
  border: 1.5px solid var(--ligne);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease;
  text-align: left;
  background: var(--blanc);
}
.motif-card:hover { border-color: var(--abricot); }
.motif-card.selected {
  border-color: var(--encre);
  background: rgba(66, 59, 68, 0.04);
}
.motif-card__ico {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(150deg, rgba(234, 188, 159, 0.5), rgba(195, 194, 217, 0.35));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.motif-card__ico svg { width: 18px; height: 18px; color: var(--terracotta); }
.motif-card__title {
  font-weight: 700;
  font-size: 14px;
  color: var(--encre);
  margin-bottom: 4px;
}
.motif-card__desc {
  font-size: 13px;
  color: var(--encre-doux);
  line-height: 1.5;
}

/* Calendrier */
.calendrier-layout {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 24px;
  align-items: start;
}
.cal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}
.cal-mois {
  font-family: var(--serif);
  font-size: 22px;
  color: var(--encre);
}
.cal-nav-btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid var(--ligne);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s ease;
  color: var(--encre);
  font-size: 14px;
}
.cal-nav-btn:hover { background: var(--creme-chaud); }
.cal-nav-btn:disabled { opacity: 0.3; cursor: not-allowed; }

.cal-jours-semaine {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
  margin-bottom: 8px;
  text-align: center;
}
.cal-jour-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--encre-doux);
  padding: 4px 0;
}
.cal-grille {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
}
.cal-cell {
  aspect-ratio: 1;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 600;
  position: relative;
  cursor: default;
  color: var(--encre-doux);
}
.cal-cell.vide { background: transparent; }
.cal-cell.passe { color: rgba(66, 59, 68, 0.25); }
.cal-cell.indispo { color: rgba(66, 59, 68, 0.3); }
.cal-cell.dispo {
  background: var(--creme);
  cursor: pointer;
  transition: background 0.2s ease;
}
.cal-cell.dispo:hover { background: var(--creme-chaud); }
.cal-cell.dispo::after {
  content: "";
  position: absolute;
  bottom: 3px;
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--terracotta);
}
.cal-cell.selectionne {
  background: var(--encre);
  color: var(--creme);
  cursor: pointer;
}
.cal-cell.selectionne::after { background: var(--abricot); }

.creneaux-panel {
  background: var(--creme);
  border-radius: var(--radius-sm);
  padding: 22px 20px;
}
.creneaux-panel__titre {
  font-family: var(--serif);
  font-size: 18px;
  color: var(--encre);
  margin-bottom: 14px;
}
.creneaux-vide {
  font-size: 14px;
  color: var(--encre-doux);
  font-style: italic;
  text-align: center;
  padding: 20px 0;
}
.creneaux-grille {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}
.creneau-btn {
  padding: 10px;
  border: 1.5px solid var(--ligne);
  border-radius: 8px;
  background: var(--blanc);
  font-size: 13px;
  font-weight: 700;
  color: var(--encre);
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
  text-align: center;
}
.creneau-btn:hover { border-color: var(--encre); }
.creneau-btn.selected {
  background: var(--encre);
  color: var(--creme);
  border-color: var(--encre);
}

/* Formulaire coordonnées */
.coords-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.form-field--full { grid-column: 1 / -1; }
.form-field label {
  font-size: 13px;
  font-weight: 700;
  color: var(--encre);
  letter-spacing: 0.02em;
}
.form-field label .opt {
  font-weight: 400;
  color: var(--encre-doux);
  margin-left: 4px;
}
.form-field input,
.form-field textarea,
.form-field select {
  font-family: var(--sans);
  font-size: 15px;
  color: var(--encre);
  background: var(--creme);
  border: 1.5px solid var(--ligne);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  outline: none;
  transition: border-color 0.2s ease;
  width: 100%;
}
.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  border-color: var(--terracotta);
}
.form-field textarea { resize: vertical; min-height: 100px; }

.radio-group {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.radio-btn {
  padding: 9px 18px;
  border: 1.5px solid var(--ligne);
  border-radius: var(--radius-pill);
  background: var(--blanc);
  font-size: 14px;
  font-weight: 600;
  color: var(--encre);
  cursor: pointer;
  transition: all 0.2s ease;
}
.radio-btn.selected {
  background: var(--encre);
  color: var(--creme);
  border-color: var(--encre);
}

.rgpd-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: var(--encre-doux);
  line-height: 1.5;
}
.rgpd-check input[type="checkbox"] { margin-top: 2px; flex-shrink: 0; accent-color: var(--terracotta); }

/* Navigation entre étapes */
.booking-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--ligne-douce);
}

/* Confirmation */
.booking-confirm {
  text-align: center;
  padding: 20px 0;
}
.confirm-check {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  background: linear-gradient(145deg, rgba(234, 188, 159, 0.4), rgba(195, 194, 217, 0.3));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  animation: popIn 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) both;
}
.confirm-check svg { width: 36px; height: 36px; color: var(--terracotta); }
@keyframes popIn {
  0% { transform: scale(0); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}
.booking-confirm h3 { margin-bottom: 12px; }
.booking-confirm p {
  color: var(--encre-doux);
  max-width: 440px;
  margin: 0 auto 28px;
  font-size: 16px;
}
.confirm-recap {
  background: var(--creme);
  border-radius: var(--radius-md);
  padding: 22px 28px;
  max-width: 440px;
  margin: 0 auto 28px;
  text-align: left;
}
.confirm-recap__line {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 8px 0;
  font-size: 14px;
  border-bottom: 1px solid var(--ligne-douce);
}
.confirm-recap__line:last-child { border-bottom: none; }
.confirm-recap__label { color: var(--encre-doux); font-weight: 600; }
.confirm-recap__val { color: var(--encre); }

/* Contact direct */
.contact-direct {
  text-align: center;
  padding: 32px;
  background: var(--creme-chaud);
  border-radius: var(--radius-md);
  margin-top: 36px;
}
.contact-direct p { color: var(--encre-doux); font-size: 14px; margin-top: 6px; }
.contact-direct a {
  color: var(--terracotta);
  font-weight: 700;
  font-size: 17px;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ---------- PAGE CHARTE / MENTIONS LÉGALES -------------------------------- */
.legal-body {
  max-width: 720px;
  margin: 0 auto;
}
.legal-body h2 {
  font-size: clamp(24px, 2.5vw, 32px);
  margin-bottom: 16px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--ligne-douce);
}
.legal-body h2:first-child { border-top: none; margin-top: 0; padding-top: 0; }
.legal-body p {
  color: var(--encre-doux);
  font-size: 16px;
  margin-bottom: 18px;
  line-height: 1.8;
}
.legal-body strong { color: var(--encre); }

/* ---------- RESPONSIVE ----------------------------------------------------- */
@media (max-width: 1100px) {
  .tarifs-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 880px) {
  /* Header */
  .nav-links, .nav-cta { display: none; }
  .burger { display: flex; }

  /* Hero */
  .hero__grid {
    grid-template-columns: 1fr;
  }
  .hero__visual { display: none; }

  /* Grilles 2-3 colonnes → 1 colonne */
  .cards-grid,
  .steps-grid,
  .modalites-grid,
  .voyage-cards {
    grid-template-columns: 1fr;
  }
  .themes-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .tarifs-grid {
    grid-template-columns: 1fr;
  }
  .about-grid {
    grid-template-columns: 1fr;
  }
  .about__portrait-wrap { position: static; }

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

  /* Booking */
  .motifs-grid {
    grid-template-columns: 1fr;
  }
  .calendrier-layout {
    grid-template-columns: 1fr;
  }
  .coords-form {
    grid-template-columns: 1fr;
  }
  .form-field--full { grid-column: auto; }

  /* Section padding réduit */
  .section-py {
    padding-top: 64px;
    padding-bottom: 64px;
  }
  .page-hero {
    padding: 100px 0 60px;
  }
}

@media (max-width: 600px) {
  .themes-grid {
    grid-template-columns: 1fr;
  }
  .hero__ctas {
    flex-direction: column;
  }
  .hero__ctas .btn { text-align: center; justify-content: center; }
  .booking-steps {
    gap: 6px;
  }
  .booking-step-pill {
    font-size: 11px;
    padding: 6px 10px;
  }
  .tarifs-grid {
    grid-template-columns: 1fr;
  }
  .radio-group { flex-direction: column; }
  .booking-nav { flex-direction: column; gap: 12px; }
  .booking-nav .btn { width: 100%; justify-content: center; }
}
