/* =============================================================
   VINCENT LAMOLINAIRIE — Énergéticien Magnétiseur — Cahors (46)
   Feuille de styles globale
   Esthétique : épurée, inspirée Apple, apaisante, sérieuse
   ============================================================= */

/* -------------------------------------------------------------
   1. POLICES LOCALES — @font-face (aucun CDN, 100% local)
   ------------------------------------------------------------- */
@font-face {
  font-family: 'Cormorant Garamond';
  src: url('../fonts/CormorantGaramond-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Cormorant Garamond';
  src: url('../fonts/CormorantGaramond-Italic.woff2') format('woff2');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Cormorant Garamond';
  src: url('../fonts/CormorantGaramond-SemiBold.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Lato';
  src: url('../fonts/Lato-Light.woff2') format('woff2');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Lato';
  src: url('../fonts/Lato-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Lato';
  src: url('../fonts/Lato-Bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* -------------------------------------------------------------
   2. VARIABLES DE DESIGN
   ------------------------------------------------------------- */
:root {
  /* Couleurs */
  --color-white: #FFFFFF;
  --color-beige: #F5F0E8;
  --color-beige-rose: #EDE6D6;
  --color-pearl: #D9D2C5;
  --color-gold: #C8A97E;
  --color-gold-dark: #A8875D;
  --color-text: #2B2520;
  --color-text-soft: #5A524A;
  --color-text-muted: #8A8078;
  --color-border: #E8E0D2;

  /* Typographie */
  --font-serif: 'Cormorant Garamond', 'Georgia', 'Times New Roman', serif;
  --font-sans: 'Lato', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Helvetica, Arial, sans-serif;

  /* Espacement */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 4rem;
  --space-xl: 6rem;
  --space-xxl: 9rem;

  /* Conteneur */
  --max-width: 1200px;
  --max-width-narrow: 860px;
  --max-width-text: 680px;

  /* Header */
  --header-height: 80px;

  /* Transitions */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

/* -------------------------------------------------------------
   3. RESET ET BASE
   ------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  text-size-adjust: 100%;
}
body {
  margin: 0;
  padding: 0;
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: 17px;
  line-height: 1.75;
  color: var(--color-text);
  background: var(--color-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img, svg, iframe { max-width: 100%; display: block; }
a {
  color: var(--color-text);
  text-decoration: none;
  transition: color 0.3s var(--ease);
}
a:hover { color: var(--color-gold-dark); }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, textarea, select { font-family: inherit; font-size: inherit; }

/* Titres — serif élégant */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  font-weight: 400;
  color: var(--color-text);
  margin: 0 0 var(--space-sm);
  line-height: 1.15;
  letter-spacing: -0.01em;
}
h1 {
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  font-weight: 400;
  letter-spacing: -0.02em;
}
h2 {
  font-size: clamp(1.9rem, 3.8vw, 3rem);
  font-weight: 400;
}
h3 {
  font-size: clamp(1.3rem, 2.2vw, 1.65rem);
  font-weight: 500;
}
p { margin: 0 0 1.25em; }
p:last-child { margin-bottom: 0; }

/* -------------------------------------------------------------
   4. CONTENEUR & UTILITAIRES
   ------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 2.5rem);
}
.container-narrow { max-width: var(--max-width-narrow); }
.container-text { max-width: var(--max-width-text); }
.text-center { text-align: center; }
.text-gold { color: var(--color-gold-dark); }
.eyebrow {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--color-gold-dark);
  margin-bottom: 1.5rem;
}
.divider {
  width: 40px;
  height: 1px;
  background: var(--color-gold);
  border: none;
  margin: var(--space-md) auto;
}

/* -------------------------------------------------------------
   5. HEADER STICKY + NAVIGATION
   ------------------------------------------------------------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--header-height);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: saturate(180%) blur(16px);
  -webkit-backdrop-filter: saturate(180%) blur(16px);
  border-bottom: 1px solid transparent;
  z-index: 100;
  transition: background 0.3s var(--ease), border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.site-header.scrolled {
  background: rgba(255, 255, 255, 0.98);
  border-bottom-color: var(--color-border);
  box-shadow: 0 1px 20px rgba(0, 0, 0, 0.03);
}
.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.site-logo {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: var(--color-text);
  line-height: 1;
  display: flex;
  align-items: center;
  gap: 12px;
}
.site-logo picture, .site-logo img {
  flex-shrink: 0;
  width: 44px;
  height: auto;
  display: block;
}
.site-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.site-logo small {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 300;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-top: 4px;
}
.nav-desktop {
  display: flex;
  align-items: center;
  gap: clamp(1.5rem, 3vw, 2.8rem);
}
.nav-desktop a {
  font-size: 0.92rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  color: var(--color-text-soft);
  position: relative;
  padding: 8px 0;
}
.nav-desktop a::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 2px;
  height: 1px;
  background: var(--color-gold);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.35s var(--ease-out);
}
.nav-desktop a:hover::after,
.nav-desktop a.active::after { transform: scaleX(1); }
.nav-desktop a.active { color: var(--color-text); }
.nav-desktop .nav-cta {
  background: var(--color-text);
  color: var(--color-white);
  padding: 10px 22px;
  border-radius: 999px;
  transition: background 0.3s var(--ease), transform 0.3s var(--ease);
}
.nav-desktop .nav-cta::after { display: none; }
.nav-desktop .nav-cta:hover { background: var(--color-gold-dark); color: var(--color-white); transform: translateY(-1px); }

/* Burger mobile */
.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  position: relative;
  margin-right: -10px;
}
.nav-toggle span {
  position: absolute;
  left: 10px; right: 10px;
  height: 1.5px;
  background: var(--color-text);
  transition: transform 0.35s var(--ease), opacity 0.25s var(--ease), top 0.35s var(--ease);
}
.nav-toggle span:nth-child(1) { top: 16px; }
.nav-toggle span:nth-child(2) { top: 21px; }
.nav-toggle span:nth-child(3) { top: 26px; }
.nav-toggle.open span:nth-child(1) { top: 21px; transform: rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { top: 21px; transform: rotate(-45deg); }

.nav-mobile {
  position: fixed;
  top: var(--header-height);
  left: 0; right: 0;
  background: var(--color-white);
  border-top: 1px solid var(--color-border);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s var(--ease-out);
  z-index: 99;
}
.nav-mobile.open { max-height: calc(100vh - var(--header-height)); }
.nav-mobile ul { list-style: none; margin: 0; padding: 1rem 1.5rem 2rem; }
.nav-mobile li { border-bottom: 1px solid var(--color-border); }
.nav-mobile li:last-child { border-bottom: none; }
.nav-mobile a {
  display: block;
  padding: 18px 4px;
  font-size: 1.05rem;
  color: var(--color-text);
}
.nav-mobile a.active { color: var(--color-gold-dark); }
.nav-mobile .mobile-cta {
  display: block;
  margin-top: 1.25rem;
  background: var(--color-text);
  color: var(--color-white);
  text-align: center;
  padding: 16px;
  border-radius: 999px;
  font-size: 1rem;
}

/* -------------------------------------------------------------
   6. SECTIONS COMMUNES
   ------------------------------------------------------------- */
main { padding-top: var(--header-height); }
.section { padding: clamp(3.5rem, 8vw, 7rem) 0; }
.section-beige { background: var(--color-beige); }
.section-rose { background: var(--color-beige-rose); }
.section-pearl { background: var(--color-pearl); }

.section-header { text-align: center; max-width: 720px; margin: 0 auto clamp(2.5rem, 5vw, 4.5rem); }
.section-header .lead {
  margin-top: 1rem;
  font-size: 1.1rem;
  color: var(--color-text-soft);
  line-height: 1.8;
}

/* -------------------------------------------------------------
   7. HERO — page d'accueil
   ------------------------------------------------------------- */
.hero {
  position: relative;
  min-height: calc(100vh - var(--header-height));
  display: flex;
  align-items: center;
  padding: clamp(3rem, 8vw, 6rem) 0;
  background: linear-gradient(180deg, var(--color-white) 0%, var(--color-beige) 100%);
  overflow: hidden;
}
.hero-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 880px;
  margin: 0 auto;
}
.hero h1 {
  margin-bottom: 2rem;
  font-weight: 400;
}
.hero h1 span { display: block; }
.hero h1 .accent { color: var(--color-gold-dark); font-style: italic; }
.hero-lead {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  line-height: 1.85;
  color: var(--color-text-soft);
  max-width: 640px;
  margin: 0 auto 2.5rem;
}
.hero-lead strong { font-weight: 400; color: var(--color-text); }
.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  align-items: center;
  margin-top: 2rem;
}
.hero::before {
  content: '';
  position: absolute;
  top: 10%; left: -10%;
  width: 45%; height: 60%;
  background: radial-gradient(circle, rgba(200, 169, 126, 0.08), transparent 70%);
  filter: blur(40px);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: 5%; right: -10%;
  width: 40%; height: 50%;
  background: radial-gradient(circle, rgba(237, 230, 214, 0.6), transparent 70%);
  filter: blur(40px);
  pointer-events: none;
}

/* Page hero (interior pages) */
.page-hero {
  background: var(--color-beige);
  padding: calc(var(--header-height) + 4rem) 0 5rem;
  text-align: center;
}
.page-hero .eyebrow { margin-bottom: 1rem; }
.page-hero h1 { margin-bottom: 1rem; }
.page-hero p { max-width: 620px; margin: 0 auto; color: var(--color-text-soft); font-size: 1.1rem; }

/* -------------------------------------------------------------
   8. BOUTONS
   ------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 52px;
  padding: 0 32px;
  font-family: var(--font-sans);
  font-size: 0.98rem;
  font-weight: 400;
  letter-spacing: 0.03em;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.35s var(--ease);
  text-align: center;
  white-space: nowrap;
}
.btn-primary {
  background: var(--color-text);
  color: var(--color-white);
}
.btn-primary:hover {
  background: var(--color-gold-dark);
  color: var(--color-white);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(168, 135, 93, 0.25);
}
.btn-outline {
  background: transparent;
  border-color: var(--color-text);
  color: var(--color-text);
}
.btn-outline:hover {
  background: var(--color-text);
  color: var(--color-white);
  transform: translateY(-2px);
}
.btn-gold {
  background: var(--color-gold-dark);
  color: var(--color-white);
}
.btn-gold:hover { background: var(--color-text); color: var(--color-white); transform: translateY(-2px); }
.btn-phone { gap: 0.7rem; }
.btn-phone svg { width: 18px; height: 18px; }

/* -------------------------------------------------------------
   9. BANDEAU DE CONFIANCE
   ------------------------------------------------------------- */
.trust-bar {
  background: var(--color-text);
  color: var(--color-white);
  padding: 2rem 0;
}
.trust-bar-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  align-items: center;
  gap: 1.5rem;
  text-align: center;
}
.trust-bar span {
  font-size: 0.85rem;
  font-weight: 300;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
}
.trust-bar span strong { color: var(--color-gold); font-weight: 400; }

/* -------------------------------------------------------------
   10. SERVICES — grille 4 cartes
   ------------------------------------------------------------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: clamp(1.5rem, 3vw, 2.5rem);
}
.service-card {
  background: var(--color-white);
  padding: clamp(2rem, 3vw, 2.75rem);
  border: 1px solid var(--color-border);
  border-radius: 4px;
  transition: transform 0.5s var(--ease-out), box-shadow 0.5s var(--ease-out), border-color 0.5s var(--ease-out);
  position: relative;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(43, 37, 32, 0.08);
  border-color: var(--color-gold);
}
.service-card .service-num {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--color-gold-dark);
  margin-bottom: 1rem;
  display: block;
}
.service-card h3 { margin-bottom: 0.75rem; }
.service-card p {
  font-size: 0.97rem;
  color: var(--color-text-soft);
  line-height: 1.75;
  margin-bottom: 0;
}

/* Version liste détaillée (page à propos) */
.service-detail {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: clamp(2rem, 5vw, 4rem);
  padding: clamp(2.5rem, 5vw, 4rem) 0;
  border-bottom: 1px solid var(--color-border);
  align-items: start;
}
.service-detail:last-child { border-bottom: none; }
.service-detail h3 {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 400;
  margin: 0;
}
.service-detail .service-detail-body p {
  color: var(--color-text-soft);
  font-size: 1.02rem;
  line-height: 1.85;
}

/* -------------------------------------------------------------
   11. POUR QUI + COMMENT
   ------------------------------------------------------------- */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: clamp(2rem, 4vw, 3rem);
  margin-top: 3rem;
}
.step {
  text-align: center;
  padding: 2rem 1rem;
}
.step-num {
  display: inline-flex;
  width: 56px; height: 56px;
  align-items: center; justify-content: center;
  font-family: var(--font-serif);
  font-size: 1.6rem;
  border: 1px solid var(--color-gold);
  color: var(--color-gold-dark);
  border-radius: 50%;
  margin-bottom: 1.5rem;
}
.step h3 { margin-bottom: 0.75rem; font-size: 1.25rem; }
.step p { color: var(--color-text-soft); font-size: 0.96rem; max-width: 280px; margin: 0 auto; }

/* -------------------------------------------------------------
   12. PLACEHOLDERS ILLUSTRATIONS
   ------------------------------------------------------------- */
.illustration-placeholder {
  background: var(--color-beige-rose);
  border: 1px dashed var(--color-pearl);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-muted);
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  position: relative;
  width: 100%;
  border-radius: 2px;
}
.illustration-placeholder.ratio-16-9 { aspect-ratio: 16 / 9; }
.illustration-placeholder.ratio-4-3 { aspect-ratio: 4 / 3; }
.illustration-placeholder.ratio-1-1 { aspect-ratio: 1 / 1; }
.illustration-placeholder.ratio-3-4 { aspect-ratio: 3 / 4; }
.illustration-placeholder.h-300 { min-height: 300px; }
.illustration-placeholder.h-500 { min-height: 500px; }

/* Figure (photos réelles) */
.about-figure {
  margin: 0;
  position: relative;
}
.about-figure picture,
.about-figure img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 2px;
  background: var(--color-beige-rose);
}
.about-figure img {
  object-fit: cover;
  aspect-ratio: 3 / 4;
  box-shadow: 0 20px 50px rgba(43, 37, 32, 0.08);
  transition: transform 0.8s var(--ease-out);
}
.about-figure:hover img { transform: translateY(-4px); }
.about-figure figcaption {
  margin-top: 1rem;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 0.9rem;
  color: var(--color-text-muted);
  text-align: center;
  letter-spacing: 0.02em;
}

/* -------------------------------------------------------------
   13. TÉMOIGNAGES PLACEHOLDER
   ------------------------------------------------------------- */
.testimonials-placeholder {
  text-align: center;
  padding: 4rem 2rem;
  background: var(--color-beige-rose);
  border-radius: 4px;
  color: var(--color-text-muted);
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.1rem;
}

/* -------------------------------------------------------------
   14. FORMULAIRES
   ------------------------------------------------------------- */
.form-wrap {
  background: var(--color-white);
  padding: clamp(2rem, 4vw, 3.5rem);
  border: 1px solid var(--color-border);
  border-radius: 4px;
  max-width: 640px;
  margin: 0 auto;
}
.form-wrap.wide { max-width: 820px; }
.form-row {
  margin-bottom: 1.4rem;
}
.form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-bottom: 1.4rem;
}
.form-label {
  display: block;
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text-soft);
  margin-bottom: 0.55rem;
}
.form-label .req { color: var(--color-gold-dark); }
.form-control {
  display: block;
  width: 100%;
  padding: 14px 16px;
  font-size: 1rem;
  font-weight: 300;
  color: var(--color-text);
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 2px;
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease), box-shadow 0.3s var(--ease);
  min-height: 48px;
  font-family: var(--font-sans);
}
textarea.form-control {
  resize: vertical;
  min-height: 140px;
  line-height: 1.6;
}
.form-control:focus {
  outline: none;
  border-color: var(--color-gold);
  background: #FDFCF9;
  box-shadow: 0 0 0 3px rgba(200, 169, 126, 0.12);
}
.form-control.invalid { border-color: #C0392B; }
select.form-control {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path fill='%238A8078' d='M6 8L0 0h12z'/></svg>");
  background-repeat: no-repeat;
  background-position: right 18px center;
  padding-right: 42px;
}
.form-error {
  display: none;
  margin-top: 0.4rem;
  font-size: 0.82rem;
  color: #C0392B;
}
.form-row.has-error .form-error,
.form-row-2 .has-error .form-error { display: block; }
.form-row.has-error .form-control,
.form-row-2 .has-error .form-control { border-color: #C0392B; }
.form-submit {
  display: flex;
  justify-content: center;
  margin-top: 1.75rem;
}
.form-help {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  margin-top: 1rem;
  text-align: center;
}
.form-success, .form-fail {
  display: none;
  padding: 1.5rem 1.75rem;
  border-radius: 4px;
  margin-top: 1.5rem;
  text-align: center;
  font-size: 1rem;
  line-height: 1.6;
  border: 1px solid transparent;
}
.form-success {
  background: #F0F5EE;
  color: #3C5A35;
  border-color: #CDDDC7;
}
.form-fail {
  background: #FAECE9;
  color: #8A2E22;
  border-color: #E6C7C0;
}
.form-success.show, .form-fail.show { display: block; }
.honeypot { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; pointer-events: none; }

/* -------------------------------------------------------------
   15. INFO CARDS (contact page)
   ------------------------------------------------------------- */
.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3rem;
}
.info-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  padding: 2rem 1.75rem;
  border-radius: 4px;
  text-align: center;
}
.info-card .info-label {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-gold-dark);
  margin-bottom: 0.75rem;
}
.info-card .info-value {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: var(--color-text);
  line-height: 1.4;
}
.info-card .info-value a { color: inherit; }
.info-card .info-value a:hover { color: var(--color-gold-dark); }
.info-card .info-sub {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  margin-top: 0.5rem;
}

/* -------------------------------------------------------------
   16. GOOGLE MAPS
   ------------------------------------------------------------- */
.map-wrap {
  position: relative;
  width: 100%;
  height: 450px;
  border: 1px solid var(--color-border);
  border-radius: 4px;
  overflow: hidden;
  background: var(--color-beige-rose);
}
.map-wrap iframe { width: 100%; height: 100%; border: 0; filter: grayscale(25%) contrast(95%); }

/* -------------------------------------------------------------
   17. FAQ ACCORDÉON
   ------------------------------------------------------------- */
.faq-list {
  max-width: 820px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid var(--color-border);
}
.faq-item:first-child { border-top: 1px solid var(--color-border); }
.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.75rem 0;
  text-align: left;
  font-family: var(--font-serif);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  font-weight: 400;
  color: var(--color-text);
  background: transparent;
  transition: color 0.3s var(--ease);
  gap: 1.5rem;
}
.faq-question:hover { color: var(--color-gold-dark); }
.faq-icon {
  flex-shrink: 0;
  width: 24px; height: 24px;
  position: relative;
  transition: transform 0.4s var(--ease);
}
.faq-icon::before, .faq-icon::after {
  content: '';
  position: absolute;
  background: var(--color-gold-dark);
  transition: transform 0.4s var(--ease);
}
.faq-icon::before { top: 50%; left: 0; right: 0; height: 1px; transform: translateY(-50%); }
.faq-icon::after { left: 50%; top: 0; bottom: 0; width: 1px; transform: translateX(-50%); }
.faq-item.open .faq-icon::after { transform: translateX(-50%) rotate(90deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s var(--ease);
}
.faq-answer-inner {
  padding: 0 0 1.75rem;
  color: var(--color-text-soft);
  font-size: 1rem;
  line-height: 1.85;
  max-width: 740px;
}
.faq-item.open .faq-answer {
  max-height: 800px;
}

/* -------------------------------------------------------------
   18. FOOTER
   ------------------------------------------------------------- */
.site-footer {
  background: var(--color-text);
  color: rgba(255,255,255,0.75);
  padding: clamp(3rem, 6vw, 5rem) 0 2rem;
  font-size: 0.92rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}
.footer-brand {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--color-white);
  margin-bottom: 0.75rem;
}
.footer-brand-sub {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 1.25rem;
}
.footer-col h4 {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 1.25rem;
}
.footer-col ul { list-style: none; margin: 0; padding: 0; }
.footer-col li { margin-bottom: 0.65rem; }
.footer-col a { color: rgba(255,255,255,0.75); }
.footer-col a:hover { color: var(--color-white); }
.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
}
.footer-bottom a { color: rgba(255,255,255,0.7); text-decoration: none; }
.footer-bottom a:hover { color: var(--color-white); }

/* -------------------------------------------------------------
   19. ANIMATIONS (fade-in au scroll)
   ------------------------------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
  will-change: opacity, transform;
}
.reveal.visible { opacity: 1; transform: none; }
.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; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
  html { scroll-behavior: auto; }
}

/* -------------------------------------------------------------
   20. RESPONSIVE — tablette & mobile
   ------------------------------------------------------------- */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  body { font-size: 16px; }
  .nav-desktop { display: none; }
  .nav-toggle { display: block; }
  .form-row-2 { grid-template-columns: 1fr; gap: 0; }
  .form-row-2 > * { margin-bottom: 1.4rem; }
  .service-detail { grid-template-columns: 1fr; gap: 1rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; margin-bottom: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .trust-bar-inner { flex-direction: column; gap: 0.75rem; }
  .trust-bar span { font-size: 0.75rem; }
  .hero { min-height: auto; padding: 4rem 0 3rem; }
  .page-hero { padding: calc(var(--header-height) + 3rem) 0 3rem; }
  .map-wrap { height: 350px; }
  .hero-cta { flex-direction: column; align-items: stretch; }
  .hero-cta .btn { width: 100%; }
}
@media (max-width: 480px) {
  .service-card { padding: 1.75rem 1.5rem; }
  .form-wrap { padding: 1.75rem 1.25rem; }
  .map-wrap { height: 300px; }
}

/* Focus visible pour accessibilité */
:focus-visible {
  outline: 2px solid var(--color-gold);
  outline-offset: 3px;
  border-radius: 2px;
}
.form-control:focus-visible { outline: none; }

/* -------------------------------------------------------------
   ADDITIONS V2 — Avis Google, Offre Pro, QR, Booking, FAQ divider
   ------------------------------------------------------------- */

/* Reviews Google — grid */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(1.25rem, 2.5vw, 2rem);
  margin-bottom: 3rem;
}
.review-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 4px;
  padding: clamp(1.5rem, 2.5vw, 2.25rem);
  position: relative;
  transition: transform 0.5s var(--ease-out), box-shadow 0.5s var(--ease-out), border-color 0.5s var(--ease-out);
  display: flex;
  flex-direction: column;
}
.review-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 40px rgba(43, 37, 32, 0.06);
  border-color: var(--color-gold);
}
.review-stars {
  color: var(--color-gold-dark);
  font-size: 1.05rem;
  letter-spacing: 0.15em;
  margin-bottom: 1rem;
}
.review-text {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.02rem;
  line-height: 1.75;
  color: var(--color-text);
  margin: 0 0 1.5rem;
  flex: 1;
}
.review-meta {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-size: 0.85rem;
  color: var(--color-text-muted);
  letter-spacing: 0.04em;
  border-top: 1px solid var(--color-border);
  padding-top: 1rem;
}
.review-author { font-weight: 400; color: var(--color-text-soft); }
.reviews-cta { text-align: center; }

/* Offre Pro — carte unique mise en valeur */
.pro-card {
  background: var(--color-white);
  border: 1px solid var(--color-gold);
  border-radius: 4px;
  padding: clamp(2rem, 4vw, 3.5rem);
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: center;
  box-shadow: 0 12px 40px rgba(200, 169, 126, 0.10);
}
.pro-card h3 {
  font-size: clamp(1.4rem, 2.5vw, 1.85rem);
  margin-bottom: 1rem;
}
.pro-card-body p {
  color: var(--color-text-soft);
  font-size: 1.02rem;
  line-height: 1.85;
}
.pro-features {
  list-style: none;
  padding: 0;
  margin: 1.25rem 0 1.5rem;
}
.pro-features li {
  position: relative;
  padding-left: 1.75rem;
  margin-bottom: 0.75rem;
  color: var(--color-text-soft);
  font-size: 0.98rem;
  line-height: 1.6;
}
.pro-features li::before {
  content: '';
  position: absolute;
  left: 0; top: 12px;
  width: 18px; height: 1px;
  background: var(--color-gold);
}
.pro-price {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: var(--color-text);
  border-top: 1px solid var(--color-border);
  padding-top: 1.25rem;
  margin-top: 1.25rem;
}
.pro-price em {
  display: block;
  font-style: italic;
  font-size: 0.95rem;
  color: var(--color-text-muted);
  margin-top: 0.4rem;
  font-family: var(--font-sans);
}
.pro-card-cta {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  align-items: stretch;
}

/* Booking grid (rendez-vous page) */
.booking-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 4px;
  padding: clamp(2rem, 4vw, 3.5rem);
}
.booking-azenda h2 { margin-bottom: 1rem; }
.booking-qr {
  margin: 0;
  text-align: center;
}
.booking-qr img {
  width: 100%;
  max-width: 320px;
  height: auto;
  margin: 0 auto;
  display: block;
  background: var(--color-white);
  padding: 14px;
  border: 1px solid var(--color-border);
  border-radius: 4px;
  box-shadow: 0 8px 24px rgba(43, 37, 32, 0.06);
}
.booking-qr figcaption {
  margin-top: 1rem;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--color-text-soft);
}

/* Contact - blocs cabinet (Cahors + Saint-Cloud) */
.cabinet-block {
  margin-top: 2rem;
  padding: 1.5rem;
  background: var(--color-beige);
  border-left: 2px solid var(--color-gold);
  border-radius: 2px;
}
.cabinet-block:first-of-type { margin-top: 1.75rem; }
.cabinet-block h3 {
  font-size: 1.2rem;
  margin: 0 0 0.5rem;
  color: var(--color-text);
}
.cabinet-address {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  line-height: 1.45;
  margin: 0 0 0.5rem;
}
.cabinet-address a {
  color: var(--color-text);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s var(--ease);
}
.cabinet-address a:hover {
  color: var(--color-gold-dark);
  border-bottom-color: var(--color-gold);
}
.cabinet-meta {
  font-size: 0.92rem;
  color: var(--color-text-muted);
  margin: 0;
}

/* Maps grid (deux cartes côte à côte) */
.maps-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.5rem, 3vw, 2.5rem);
}
.map-figure { margin: 0; }
.map-figure figcaption {
  font-family: var(--font-serif);
  font-size: 0.95rem;
  color: var(--color-text-soft);
  margin-bottom: 0.75rem;
  text-align: center;
}
.map-figure .map-wrap { height: 360px; }
@media (max-width: 768px) {
  .maps-grid { grid-template-columns: 1fr; }
  .map-figure .map-wrap { height: 300px; }
}

/* FAQ section divider (entre les deux sections de FAQ) */
.faq-section-divider {
  width: 80px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
  margin: 4rem auto 0;
}
/* Titre de groupe inline dans la FAQ — sépare visuellement sans casser le flux */
.faq-group-title {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1rem, 1.4vw, 1.1rem);
  color: var(--color-text-muted);
  letter-spacing: 0.02em;
  margin: 3rem 0 0.5rem;
  padding: 1rem 0 0.5rem;
  text-align: center;
  border-top: 1px solid var(--color-border);
  position: relative;
}
.faq-group-title::after {
  content: '';
  position: absolute;
  top: -1px; left: 50%; transform: translateX(-50%);
  width: 60px; height: 1px;
  background: var(--color-gold);
}

/* Pro features list base style for service-detail with <ul> */
.service-detail-body ul {
  list-style: none;
  padding: 0;
  margin: 1.25rem 0;
}
.service-detail-body ul li {
  position: relative;
  padding-left: 1.75rem;
  margin-bottom: 0.65rem;
  color: var(--color-text-soft);
  line-height: 1.7;
}
.service-detail-body ul li::before {
  content: '';
  position: absolute;
  left: 0; top: 14px;
  width: 18px; height: 1px;
  background: var(--color-gold);
}
.service-detail-body ol {
  padding-left: 1.5rem;
  margin: 1.25rem 0;
  color: var(--color-text-soft);
  line-height: 1.85;
}
.service-detail-body ol li { margin-bottom: 0.65rem; padding-left: 0.4rem; }

/* FAQ answer ol/ul */
.faq-answer-inner ol,
.faq-answer-inner ul {
  margin: 0.75rem 0 1rem;
  padding-left: 1.4rem;
  color: var(--color-text-soft);
}
.faq-answer-inner ol li,
.faq-answer-inner ul li { margin-bottom: 0.4rem; }

/* Responsive */
@media (max-width: 900px) {
  .pro-card,
  .booking-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .pro-card-cta { flex-direction: row; flex-wrap: wrap; }
  .pro-card-cta .btn { flex: 1; min-width: 180px; }
}
@media (max-width: 768px) {
  .reviews-grid { grid-template-columns: 1fr; }
  .pro-card-cta { flex-direction: column; }
  .pro-card-cta .btn { width: 100%; }
}

/* Impression */
@media print {
  .site-header, .site-footer, .nav-toggle, .nav-mobile, .hero-cta, .form-wrap { display: none; }
  body { color: #000; background: #fff; }
  main { padding-top: 0; }
}
