/* ============================================================
   PEGGY LANGLET — Style principal
   Approche : Mobile First | CSS3 natif | Zéro framework
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400&family=Jost:wght@300;400;500&display=swap');

/* ── Variables ─────────────────────────────────────────────── */
:root {
  --creme:       #f8f4ef;
  --creme-dark:  #ede7de;
  --vert:        #4a5e4a;
  --vert-light:  #7a9478;
  --vert-pale:   #c8d9c4;
  --or:          #b8955a;
  --or-light:    #d4b483;
  --brun:        #2d2419;
  --brun-light:  #6b5744;
  --blanc:       #fdfbf8;
  --gris-texte:  #4a4038;

  --font-serif:  'Cormorant Garamond', Georgia, serif;
  --font-sans:   'Jost', sans-serif;

  --radius:      2px;
  --radius-lg:   8px;
  --transition:  0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --shadow:      0 4px 32px rgba(45,36,25,0.10);
  --shadow-lg:   0 12px 64px rgba(45,36,25,0.16);
}

/* ── Reset & Base ───────────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  background-color: var(--creme);
  color: var(--gris-texte);
  font-family: var(--font-sans);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
}

img, picture { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ── Typographie ────────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  font-weight: 400;
  line-height: 1.2;
  color: var(--brun);
}

h1 { font-size: clamp(2.2rem, 6vw, 4rem); }
h2 { font-size: clamp(1.7rem, 4vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 3vw, 1.9rem); }
h4 { font-size: 1.1rem; font-family: var(--font-sans); font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; }

p { font-size: clamp(0.95rem, 2vw, 1.05rem); }

/* ── Layout ─────────────────────────────────────────────────── */
.container {
  width: 92%;
  max-width: 1160px;
  margin: 0 auto;
}

.container--narrow {
  width: 92%;
  max-width: 760px;
  margin: 0 auto;
}

/* ── HEADER & NAV ───────────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(248,244,239,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.site-header.scrolled {
  border-bottom-color: var(--creme-dark);
  box-shadow: 0 2px 20px rgba(45,36,25,0.07);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo img {
  height: 52px;
  width: auto;
}

.logo-text {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  color: var(--brun);
  line-height: 1.1;
}

.logo-text span {
  display: block;
  font-size: 0.7rem;
  font-family: var(--font-sans);
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--vert);
}

.nav-main ul {
  display: none;
  flex-direction: column;
  gap: 0;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--blanc);
  padding: 1.5rem 0;
  box-shadow: var(--shadow);
  border-top: 1px solid var(--creme-dark);
}

.nav-main ul.open {
  display: flex;
}

.nav-main li a {
  display: block;
  padding: 0.75rem 1.5rem;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brun-light);
  transition: color var(--transition), background var(--transition);
}

.nav-main li a:hover,
.nav-main li a.active {
  color: var(--vert);
  background: var(--creme);
}

.nav-cta {
  display: none;
  align-items: center;
  gap: 1rem;
}

.nav-tel {
  font-family: var(--font-sans);
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--vert);
  letter-spacing: 0.05em;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.7rem 1.6rem;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: all var(--transition);
  cursor: pointer;
  border: none;
}

.btn--primary {
  background: var(--vert);
  color: var(--blanc);
}

.btn--primary:hover {
  background: var(--brun);
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(74,94,74,0.3);
}

.btn--outline {
  background: transparent;
  color: var(--vert);
  border: 1.5px solid var(--vert);
}

.btn--outline:hover {
  background: var(--vert);
  color: var(--blanc);
  transform: translateY(-1px);
}

.btn--gold {
  background: var(--or);
  color: var(--blanc);
}

.btn--gold:hover {
  background: var(--brun);
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(184,149,90,0.35);
}

.burger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
  aria-label: "Menu";
}

.burger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--brun);
  transition: all var(--transition);
  transform-origin: center;
}

.burger.open span:nth-child(1) { transform: rotate(45deg) translate(4.5px, 4.5px); }
.burger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.burger.open span:nth-child(3) { transform: rotate(-45deg) translate(4.5px, -4.5px); }

/* ── FOOTER ─────────────────────────────────────────────────── */
.site-footer {
  background: var(--brun);
  color: rgba(248,244,239,0.7);
  padding: 3rem 0 1.5rem;
}

.footer-grid {
  display: grid;
  gap: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(248,244,239,0.1);
}

.footer-brand .logo-text { color: var(--creme); }
.footer-brand .logo-text span { color: var(--vert-light); }

.footer-brand p {
  margin-top: 1rem;
  font-size: 0.88rem;
  line-height: 1.6;
  color: rgba(248,244,239,0.6);
}

.footer-col h4 {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--or-light);
  margin-bottom: 1rem;
}

.footer-col ul li {
  margin-bottom: 0.5rem;
}

.footer-col ul li a {
  font-size: 0.9rem;
  color: rgba(248,244,239,0.65);
  transition: color var(--transition);
}

.footer-col ul li a:hover { color: var(--creme); }

.footer-col address {
  font-style: normal;
  font-size: 0.9rem;
  line-height: 1.8;
  color: rgba(248,244,239,0.65);
}

.footer-col address a {
  color: var(--vert-pale);
  font-weight: 500;
}

.footer-bottom {
  padding-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 0.78rem;
  color: rgba(248,244,239,0.35);
}

.footer-mention {
  font-size: 0.75rem;
  font-style: italic;
  color: rgba(248,244,239,0.4);
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(248,244,239,0.08);
}

/* ── HERO ───────────────────────────────────────────────────── */
.hero {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
  overflow: hidden;
  padding-top: 80px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse 80% 60% at 70% 40%, rgba(200,217,196,0.35) 0%, transparent 60%),
    radial-gradient(ellipse 60% 80% at 20% 80%, rgba(184,149,90,0.12) 0%, transparent 50%),
    linear-gradient(160deg, var(--creme) 0%, var(--creme-dark) 50%, #e8ddd0 100%);
  z-index: 1;
}

.hero-ornament {
  position: absolute;
  top: 10%;
  right: -5%;
  width: 55%;
  max-width: 520px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(122,148,120,0.15) 0%, transparent 70%);
  z-index: 2;
}

.hero-ornament-2 {
  position: absolute;
  bottom: 20%;
  left: -10%;
  width: 40%;
  max-width: 320px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(184,149,90,0.08) 0%, transparent 70%);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  padding: 4rem 0 6rem;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--vert);
  margin-bottom: 1.5rem;
}

.hero-tag::before {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: var(--vert);
}

.hero h1 {
  font-size: clamp(2.4rem, 7vw, 5.5rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--brun);
  max-width: 800px;
  margin-bottom: 0.5rem;
}

.hero h1 em {
  font-style: italic;
  color: var(--vert);
}

.hero-subtitle {
  font-size: clamp(1rem, 2.5vw, 1.3rem);
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--brun-light);
  max-width: 560px;
  margin-bottom: 2.5rem;
  line-height: 1.5;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3rem;
}

.hero-quote {
  background: rgba(248,244,239,0.7);
  backdrop-filter: blur(8px);
  border-left: 3px solid var(--or);
  padding: 1.25rem 1.5rem;
  max-width: 520px;
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
}

.hero-quote blockquote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1rem;
  color: var(--brun-light);
  line-height: 1.6;
}

.hero-quote cite {
  display: block;
  margin-top: 0.5rem;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--or);
  font-style: normal;
}

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--brun-light);
  opacity: 0.6;
  z-index: 3;
  animation: scrollPulse 2s ease-in-out infinite;
}

.hero-scroll::after {
  content: '';
  display: block;
  width: 1px;
  height: 32px;
  background: linear-gradient(to bottom, var(--brun-light), transparent);
}

@keyframes scrollPulse {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: 0.6; }
  50% { transform: translateX(-50%) translateY(4px); opacity: 0.4; }
}

/* ── SECTION GÉNÉRIQUE ─────────────────────────────────────── */
.section {
  padding: 5rem 0;
}

.section--dark {
  background: var(--brun);
  color: var(--creme);
}

.section--dark h2, .section--dark h3 { color: var(--creme); }
.section--dark p { color: rgba(248,244,239,0.75); }

.section--vert {
  background: var(--vert);
  color: var(--blanc);
}

.section--vert h2, .section--vert h3 { color: var(--blanc); }
.section--vert p { color: rgba(253,251,248,0.85); }

.section--creme-dark {
  background: var(--creme-dark);
}

.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--or);
  margin-bottom: 1rem;
}

.section-tag::before, .section-tag::after {
  content: '';
  display: block;
  width: 20px;
  height: 1px;
  background: var(--or);
}

.section--dark .section-tag { color: var(--or-light); }
.section--dark .section-tag::before,
.section--dark .section-tag::after { background: var(--or-light); }

.divider {
  display: block;
  width: 48px;
  height: 1px;
  background: var(--or);
  margin: 1.25rem auto;
}

/* ── HORAIRES ───────────────────────────────────────────────── */
.horaires-grid {
  display: grid;
  gap: 1rem;
}

.horaire-card {
  background: var(--blanc);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}

.horaire-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.horaire-icon {
  font-size: 1.8rem;
  flex-shrink: 0;
}

.horaire-card h3 {
  font-size: 1rem;
  font-family: var(--font-sans);
  font-weight: 500;
  color: var(--brun);
  margin-bottom: 0.15rem;
}

.horaire-card p {
  font-size: 0.88rem;
  color: var(--brun-light);
}

.horaires-note {
  background: linear-gradient(135deg, rgba(74,94,74,0.08), rgba(184,149,90,0.06));
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  border: 1px solid rgba(74,94,74,0.12);
  margin-top: 1rem;
  font-size: 0.92rem;
  color: var(--brun-light);
  text-align: center;
}

/* ── TÉMOIGNAGES ────────────────────────────────────────────── */
.temoignages-grid {
  display: grid;
  gap: 1.5rem;
}

.temoignage-card {
  background: var(--blanc);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  position: relative;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}

.temoignage-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.temoignage-card::before {
  content: '\201C';
  position: absolute;
  top: -0.2rem;
  left: 1.25rem;
  font-family: var(--font-serif);
  font-size: 5rem;
  color: var(--vert-pale);
  line-height: 1;
  z-index: 0;
}

.stars {
  color: var(--or);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  margin-bottom: 0.75rem;
}

.temoignage-card blockquote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1rem;
  color: var(--brun-light);
  line-height: 1.7;
  position: relative;
  z-index: 1;
}

.temoignage-auteur {
  margin-top: 1.25rem;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--vert);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.temoignage-auteur::before {
  content: '';
  display: block;
  width: 20px;
  height: 1px;
  background: var(--vert);
}

/* ── PRESTATIONS CARDS ─────────────────────────────────────── */
.prestations-grid {
  display: grid;
  gap: 1.5rem;
}

.prestation-card {
  background: var(--blanc);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
  border: 1px solid rgba(45,36,25,0.05);
}

.prestation-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.prestation-card-header {
  background: linear-gradient(135deg, var(--vert) 0%, var(--vert-light) 100%);
  padding: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.prestation-icon {
  font-size: 2rem;
  line-height: 1;
}

.prestation-card-header h3 {
  color: var(--blanc);
  font-size: 1.25rem;
  margin: 0;
}

.prestation-card-header p {
  color: rgba(253,251,248,0.8);
  font-size: 0.85rem;
  margin: 0;
}

.prestation-card-body {
  padding: 1.5rem;
}

.prestation-card-body p {
  color: var(--brun-light);
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.prestation-benefits {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1.25rem;
}

.prestation-benefits li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.9rem;
  color: var(--gris-texte);
}

.prestation-benefits li::before {
  content: '✦';
  color: var(--or);
  font-size: 0.6rem;
  margin-top: 0.35rem;
  flex-shrink: 0;
}

.prestation-tarif {
  background: linear-gradient(135deg, rgba(184,149,90,0.1), rgba(184,149,90,0.05));
  border-radius: var(--radius);
  padding: 1rem;
  border: 1px solid rgba(184,149,90,0.2);
}

.prestation-tarif .price {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  color: var(--or);
  font-weight: 600;
  line-height: 1;
}

.prestation-tarif .price-detail {
  font-size: 0.8rem;
  color: var(--brun-light);
  margin-top: 0.25rem;
}

.prestation-tarif ul {
  margin-top: 0.75rem;
}

.prestation-tarif ul li {
  font-size: 0.88rem;
  color: var(--brun-light);
  padding: 0.2rem 0;
  border-top: 1px dashed rgba(45,36,25,0.1);
  display: flex;
  justify-content: space-between;
}

/* ── PAGE PRÉSENTATION ─────────────────────────────────────── */
.presentation-hero {
  min-height: 60svh;
  display: flex;
  align-items: flex-end;
  position: relative;
  overflow: hidden;
  padding-top: 80px;
  background: linear-gradient(150deg, var(--creme) 40%, var(--vert-pale) 100%);
}

.bio-grid {
  display: grid;
  gap: 2.5rem;
  align-items: start;
}

.bio-photo-wrap {
  position: relative;
}

.bio-photo-wrap::after {
  content: '';
  position: absolute;
  bottom: -12px;
  right: -12px;
  width: 70%;
  height: 70%;
  border: 2px solid var(--or-light);
  border-radius: var(--radius-lg);
  z-index: 0;
}

.bio-photo-wrap picture, .bio-photo-wrap img {
  border-radius: var(--radius-lg);
  position: relative;
  z-index: 1;
  width: 100%;
  object-fit: cover;
  aspect-ratio: 4/5;
}

.bio-text h2 {
  margin-bottom: 1.25rem;
}

.bio-text p {
  margin-bottom: 1rem;
  font-size: 1rem;
  line-height: 1.8;
}

.formation-list {
  margin-top: 1.5rem;
}

.formation-list li {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 0.5rem 1rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--creme-dark);
  align-items: center;
  font-size: 0.92rem;
}

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

.formation-year {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--or);
  font-weight: 600;
}

/* ── PAGE À QUOI S'ATTENDRE ─────────────────────────────────── */
.soin-article {
  background: var(--blanc);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  margin-bottom: 1.5rem;
}

.soin-article-header {
  padding: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--creme-dark);
  cursor: pointer;
  transition: background var(--transition);
}

.soin-article-header:hover { background: var(--vert-pale); }

.soin-icon { font-size: 2rem; }

.soin-article-header h3 {
  font-size: 1.3rem;
  color: var(--brun);
}

.soin-article-header p {
  font-size: 0.85rem;
  color: var(--brun-light);
}

.soin-article-body {
  padding: 1.5rem;
}

.soin-benefits {
  display: grid;
  gap: 0.5rem;
}

.soin-benefits li {
  display: flex;
  gap: 0.75rem;
  font-size: 0.92rem;
  color: var(--gris-texte);
  align-items: flex-start;
  padding: 0.35rem 0;
  border-bottom: 1px solid var(--creme-dark);
}

.soin-benefits li:last-child { border-bottom: none; }

.soin-benefits li::before {
  content: '—';
  color: var(--or);
  flex-shrink: 0;
  font-weight: 500;
}

/* Details/Summary FAQ */
details {
  background: var(--blanc);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  overflow: hidden;
  margin-bottom: 0.75rem;
}

summary {
  padding: 1.25rem 1.5rem;
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--brun);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  list-style: none;
  transition: background var(--transition);
}

summary::-webkit-details-marker { display: none; }

summary::after {
  content: '+';
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--vert);
  transition: transform var(--transition);
}

details[open] summary::after {
  transform: rotate(45deg);
}

details[open] summary {
  background: var(--creme-dark);
}

details .details-body {
  padding: 0 1.5rem 1.25rem;
  font-size: 0.92rem;
  color: var(--brun-light);
}

details .details-body ul {
  display: grid;
  gap: 0.4rem;
  margin-top: 0.5rem;
}

details .details-body ul li {
  display: flex;
  gap: 0.5rem;
  align-items: flex-start;
}

details .details-body ul li::before {
  content: '⚠';
  color: var(--or);
  font-size: 0.75rem;
  margin-top: 0.2rem;
  flex-shrink: 0;
}

/* ── PAGE TÉMOIGNAGES ───────────────────────────────────────── */
.temoignages-all {
  display: grid;
  gap: 1.5rem;
}

/* Formulaire témoignage */
.form-temoignage {
  background: var(--blanc);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow);
}

/* ── FORMULAIRE CONTACT ─────────────────────────────────────── */
.contact-grid {
  display: grid;
  gap: 2.5rem;
}

.contact-info-card {
  background: var(--blanc);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow);
}

.contact-info-card h3 {
  margin-bottom: 1.25rem;
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--creme-dark);
  font-size: 0.92rem;
}

.contact-detail:last-of-type { border-bottom: none; }

.contact-detail-icon {
  font-size: 1.2rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.contact-detail strong {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--or);
  margin-bottom: 0.15rem;
}

.contact-detail a {
  color: var(--vert);
  font-weight: 500;
}

.form-contact {
  background: var(--blanc);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow);
}

.form-row {
  display: grid;
  gap: 1rem;
  margin-bottom: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-group label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brun-light);
}

.form-group input,
.form-group textarea,
.form-group select {
  padding: 0.85rem 1rem;
  background: var(--creme);
  border: 1.5px solid transparent;
  border-radius: var(--radius);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: var(--brun);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  -webkit-appearance: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--vert);
  box-shadow: 0 0 0 3px rgba(74,94,74,0.1);
  background: var(--blanc);
}

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

.form-note {
  font-size: 0.8rem;
  color: var(--brun-light);
  font-style: italic;
  margin-top: 0.75rem;
  opacity: 0.7;
}

/* ── FORFAIT NATURE ─────────────────────────────────────────── */
.forfait-nature {
  background: linear-gradient(135deg, var(--vert) 0%, #3d5242 100%);
  border-radius: var(--radius-lg);
  padding: 2rem;
  color: var(--blanc);
  position: relative;
  overflow: hidden;
}

.forfait-nature::before {
  content: '🌿';
  position: absolute;
  right: -0.5rem;
  bottom: -0.5rem;
  font-size: 8rem;
  opacity: 0.1;
}

.forfait-nature h3 { color: var(--blanc); }
.forfait-nature p { color: rgba(253,251,248,0.85); }

.forfait-details {
  display: grid;
  gap: 0.6rem;
  margin: 1rem 0;
}

.forfait-details li {
  display: flex;
  gap: 0.6rem;
  font-size: 0.9rem;
  color: rgba(253,251,248,0.85);
}

.forfait-details li::before {
  content: '✦';
  color: var(--or-light);
  flex-shrink: 0;
  font-size: 0.65rem;
  margin-top: 0.3rem;
}

.cadeau-card {
  background: linear-gradient(135deg, var(--or) 0%, #9e7a3a 100%);
  border-radius: var(--radius-lg);
  padding: 2rem;
  color: var(--blanc);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cadeau-card::before {
  content: '🎁';
  font-size: 6rem;
  opacity: 0.12;
  position: absolute;
  right: 1rem;
  bottom: -0.5rem;
}

.cadeau-card h3 { color: var(--blanc); margin-bottom: 0.75rem; }
.cadeau-card p { color: rgba(253,251,248,0.9); }

/* ── ASIDE PAIEMENT ─────────────────────────────────────────── */
.aside-paiement {
  background: var(--creme-dark);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  border-left: 4px solid var(--vert);
}

.aside-paiement h4 {
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--vert);
  margin-bottom: 0.75rem;
}

.paiement-methods {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.paiement-badge {
  background: var(--blanc);
  border: 1px solid rgba(74,94,74,0.2);
  border-radius: 20px;
  padding: 0.3rem 0.8rem;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--brun);
}

.aside-medical {
  background: rgba(184,149,90,0.08);
  border-radius: var(--radius);
  padding: 1rem;
  font-size: 0.82rem;
  font-style: italic;
  color: var(--brun-light);
  border: 1px solid rgba(184,149,90,0.2);
}

/* ── SECTION CTA ────────────────────────────────────────────── */
.cta-band {
  padding: 4rem 0;
  text-align: center;
  background: linear-gradient(135deg, var(--brun) 0%, #1a1208 100%);
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  height: 200%;
  background: radial-gradient(ellipse, rgba(184,149,90,0.08) 0%, transparent 60%);
}

.cta-band h2 { color: var(--creme); margin-bottom: 0.75rem; }
.cta-band p { color: rgba(248,244,239,0.7); margin-bottom: 2rem; max-width: 480px; margin-left: auto; margin-right: auto; }

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

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ── BADGE LOCALISATION ─────────────────────────────────────── */
.localisation-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(74,94,74,0.1);
  border: 1px solid rgba(74,94,74,0.2);
  border-radius: 30px;
  padding: 0.4rem 1rem;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--vert);
  margin-bottom: 1.25rem;
}

/* ── PAGE HEADER générique ──────────────────────────────────── */
.page-hero {
  padding: 8rem 0 4rem;
  background: linear-gradient(150deg, var(--creme) 0%, var(--creme-dark) 100%);
  position: relative;
  overflow: hidden;
}

.page-hero::after {
  content: '';
  position: absolute;
  top: -40%;
  right: -10%;
  width: 50%;
  height: 200%;
  background: radial-gradient(ellipse, rgba(200,217,196,0.3) 0%, transparent 60%);
}

.page-hero .container { position: relative; z-index: 1; }

.page-hero h1 { margin-bottom: 0.75rem; }
.page-hero p {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--brun-light);
  max-width: 560px;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  color: var(--brun-light);
  margin-bottom: 1.25rem;
  opacity: 0.7;
}

.breadcrumb a { color: var(--vert); }
.breadcrumb span { color: var(--brun-light); }

/* ── STATS BAND ─────────────────────────────────────────────── */
.stats-band {
  background: var(--vert);
  padding: 2.5rem 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  text-align: center;
}

.stat-item .stat-num {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  color: var(--blanc);
  font-weight: 300;
  line-height: 1;
}

.stat-item .stat-label {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(253,251,248,0.7);
  margin-top: 0.3rem;
}

/* ── MAP PLACEHOLDER ────────────────────────────────────────── */
.map-frame {
  width: 100%;
  height: 260px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.map-frame iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* ============================================================
   TABLET — min-width: 640px
   ============================================================ */
@media (min-width: 640px) {
  .horaires-grid { grid-template-columns: 1fr 1fr; }
  .temoignages-grid { grid-template-columns: 1fr 1fr; }
  .prestations-grid { grid-template-columns: 1fr 1fr; }
  .temoignages-all { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr 1fr; }
  .stats-grid { gap: 2rem; }
  .stat-item .stat-num { font-size: 3rem; }
}

/* ============================================================
   DESKTOP — min-width: 1024px
   ============================================================ */
@media (min-width: 1024px) {
  .nav-main ul {
    display: flex;
    flex-direction: row;
    position: static;
    background: none;
    padding: 0;
    box-shadow: none;
    border: none;
    gap: 0.25rem;
  }

  .nav-main li a {
    padding: 0.5rem 0.85rem;
    font-size: 0.78rem;
  }

  .nav-cta { display: flex; }
  .burger { display: none; }

  .bio-grid { grid-template-columns: 1fr 1.8fr; }
  .contact-grid { grid-template-columns: 1fr 1.6fr; }

  .prestations-grid { grid-template-columns: repeat(3, 1fr); }
  .temoignages-all { grid-template-columns: repeat(3, 1fr); }

  .hero-content { padding: 6rem 0 8rem; }
  .hero-actions { flex-wrap: nowrap; }

  .footer-grid { grid-template-columns: 1.5fr 1fr 1fr 1.5fr; }
  .footer-bottom { flex-direction: row; justify-content: space-between; }

  .stats-grid { gap: 3rem; }
}
