/* =============================================
   PATRICK RIVARD — Magnétiseur & Réflexologue
   Vitré / Rennes (35) — CSS complet & responsive
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Raleway:wght@300;400;500;600;700&display=swap');

/* ── VARIABLES ─────────────────────────────── */
:root {
  --or:            #C9A96E;
  --or-clair:      #E8D5B0;
  --or-fonce:      #9E7A45;
  --vert:          #3D5A4A;
  --vert-clair:    #5A7A65;
  --vert-tres-fonce:#1A2B22;
  --vert-pale:     #EEF3EF;
  --blanc:         #FAFAF8;
  --gris-clair:    #F4F2EE;
  --gris:          #888;
  --texte:         #2A2A2A;
  --texte-sec:     #555;
  --radius:        12px;
  --radius-sm:     8px;
  --ombre:         0 4px 24px rgba(0,0,0,0.08);
  --ombre-lg:      0 12px 48px rgba(0,0,0,0.14);
  --trans:         all 0.3s ease;
  --nav-h:         72px;
}

/* ── RESET ─────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Raleway', sans-serif;
  color: var(--texte);
  background: var(--blanc);
  line-height: 1.7;
  overflow-x: hidden;
}
h1, h2, h3, h4, h5 {
  font-family: 'Playfair Display', serif;
  line-height: 1.25;
  color: var(--vert);
}
h1 { font-size: clamp(1.9rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.4rem); }
h3 { font-size: clamp(1.1rem, 2.5vw, 1.6rem); }
h4 { font-size: 1.1rem; }
p  { margin-bottom: 1rem; color: var(--texte-sec); }
a  { text-decoration: none; color: inherit; transition: var(--trans); }
img { max-width: 100%; height: auto; display: block; }
ul  { list-style: none; }
button { font-family: inherit; cursor: pointer; }

/* ── UTILITAIRES ───────────────────────────── */
.container  { max-width: 1160px; margin: 0 auto; padding: 0 1.5rem; }
.section    { padding: 80px 0; }
.section-sm { padding: 50px 0; }
.text-center { text-align: center; }
.bg-vert-pale { background: var(--vert-pale); }
.bg-gris      { background: var(--gris-clair); }
.bg-vert      { background: var(--vert); }

.titre-section { text-align: center; margin-bottom: 3rem; }
.titre-section h2 { margin-bottom: 0.6rem; }
.titre-section .sous-titre {
  font-size: 1.05rem;
  color: var(--gris);
  max-width: 620px;
  margin: 0.8rem auto 0;
}
.ligne-or {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--or), var(--or-fonce));
  margin: 0.8rem auto 0;
  border-radius: 2px;
}

/* ── BOUTONS ───────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: 50px;
  font-family: 'Raleway', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: none;
  transition: var(--trans);
  letter-spacing: 0.02em;
  white-space: nowrap;
}
.btn-or {
  background: linear-gradient(135deg, var(--or), var(--or-fonce));
  color: white;
  box-shadow: 0 4px 16px rgba(201,169,110,0.35);
}
.btn-or:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(201,169,110,0.45); }
.btn-vert {
  background: var(--vert);
  color: white;
  box-shadow: 0 4px 16px rgba(61,90,74,0.3);
}
.btn-vert:hover { background: var(--vert-clair); transform: translateY(-2px); }
.btn-contour {
  background: transparent;
  border: 2px solid var(--or);
  color: var(--or-fonce);
}
.btn-contour:hover { background: var(--or); color: white; }
.btn-contour-blanc {
  background: transparent;
  border: 2px solid rgba(255,255,255,0.7);
  color: white;
}
.btn-contour-blanc:hover { background: white; color: var(--vert); }
.btn-group { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ── NAVIGATION ────────────────────────────── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: var(--trans);
}
.navbar.scrolled {
  background: rgba(250,250,248,0.97);
  box-shadow: 0 2px 20px rgba(0,0,0,0.1);
  backdrop-filter: blur(8px);
}
.nav-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-h);
}
.nav-logo { display: flex; flex-direction: column; line-height: 1.1; }
.nav-logo .logo-nom {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 700;
  transition: var(--trans);
}
.navbar:not(.scrolled) .logo-nom { color: white; }
.navbar.scrolled       .logo-nom { color: var(--vert); }
.nav-logo .logo-titre {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--or);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 0;
}
.nav-links a {
  padding: 0.4rem 0.45rem;
  border-radius: 50px;
  font-size: 0.76rem;
  font-weight: 500;
  transition: var(--trans);
  white-space: nowrap;
}
.navbar:not(.scrolled) .nav-links a { color: rgba(255,255,255,0.9); }
.navbar.scrolled       .nav-links a { color: var(--texte); }
.nav-links a:hover,
.nav-links a.active {
  background: rgba(201,169,110,0.15);
  color: var(--or-fonce) !important;
}
.nav-links .btn-nav {
  background: linear-gradient(135deg, var(--or), var(--or-fonce));
  color: white !important;
  padding: 0.45rem 0.9rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.78rem;
  white-space: nowrap;
}
.nav-links .btn-nav:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(201,169,110,0.4);
  background: rgba(201,169,110,0.15) !important;
  color: white !important;
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 8px;
  border-radius: 6px;
  transition: var(--trans);
}
.nav-toggle span {
  display: block;
  width: 24px; height: 2px;
  border-radius: 2px;
  transition: var(--trans);
}
.navbar:not(.scrolled) .nav-toggle span { background: white; }
.navbar.scrolled        .nav-toggle span { background: var(--vert); }

/* Menu mobile open */
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── HERO ──────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--vert) 0%, #2A3E33 50%, #1E2E25 100%);
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../images/Patrick-Reflexologue-Magnetiseur.webp') center/cover no-repeat;
  opacity: 0.15;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(61,90,74,0.92) 0%, rgba(30,46,37,0.85) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: calc(var(--nav-h) + 2rem) 1.5rem 3rem;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 4rem;
  align-items: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(201,169,110,0.18);
  border: 1px solid rgba(201,169,110,0.4);
  padding: 0.4rem 1rem;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--or-clair);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1.4rem;
}
.hero-badge span { width: 6px; height: 6px; background: var(--or); border-radius: 50%; flex-shrink: 0; }
.hero-texte h1 { color: white; margin-bottom: 1rem; }
.hero-texte h1 em { font-style: italic; color: var(--or-clair); }
.hero-texte p {
  color: rgba(255,255,255,0.8);
  font-size: 1.05rem;
  margin-bottom: 2rem;
  max-width: 480px;
}
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-stats {
  display: flex;
  gap: 2rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.15);
  flex-wrap: wrap;
}
.hero-stat { text-align: center; min-width: 80px; }
.hero-stat .chiffre {
  font-family: 'Playfair Display', serif;
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--or-clair);
  display: block;
}
.hero-stat .label {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  display: block;
  margin-top: 0.2rem;
}
.hero-photo {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 18px 18px 48px 32px;
}
.hero-photo-cadre {
  position: relative;
  width: 100%;
  max-width: 400px;
}
.hero-photo-cadre::before {
  content: '';
  position: absolute;
  /* décalage vers le bas-droite sans sortir du padding parent */
  top: 14px; right: -14px;
  width: 100%; height: 100%;
  border: 2px solid var(--or);
  border-radius: var(--radius);
  opacity: 0.5;
  pointer-events: none;
  z-index: 0;
}
.hero-photo-cadre img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 480px;
  object-fit: cover;
  object-position: top center;
  border-radius: var(--radius);
  box-shadow: var(--ombre-lg);
}
.hero-photo-badge {
  position: absolute;
  bottom: 20px; left: -10px;
  z-index: 2;
  background: white;
  border-radius: 50px;
  padding: 0.45rem 0.9rem 0.45rem 0.5rem;
  box-shadow: var(--ombre-lg);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  max-width: 190px;
}
.hero-photo-badge .icone {
  width: 28px; height: 28px; min-width: 28px;
  background: var(--vert-pale);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.8rem;
}
.hero-photo-badge .badge-texte strong {
  display: block; font-size: 0.72rem; color: var(--vert); line-height: 1.2;
}
.hero-photo-badge .badge-texte span {
  font-size: 0.62rem; color: var(--gris);
}

/* ── GRILLES ───────────────────────────────── */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }

/* ── ATOUTS ────────────────────────────────── */
.atout-item { text-align: center; padding: 1.8rem 1rem; }
.atout-icone {
  width: 70px; height: 70px;
  background: var(--vert-pale);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem;
  margin: 0 auto 1rem;
  border: 2px solid rgba(201,169,110,0.3);
}
.atout-item h4 { margin-bottom: 0.4rem; font-size: 1rem; color: var(--vert); }
.atout-item p { font-size: 0.85rem; color: var(--gris); margin: 0; }

/* ── PRESTATIONS ───────────────────────────── */
.prestation-card {
  background: white;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--ombre);
  transition: var(--trans);
  display: flex;
  flex-direction: column;
}
.prestation-card:hover { transform: translateY(-6px); box-shadow: var(--ombre-lg); }
.prestation-img { height: 240px; overflow: hidden; position: relative; flex-shrink: 0; }
.prestation-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.prestation-card:hover .prestation-img img { transform: scale(1.05); }
.prestation-tag {
  position: absolute; top: 1rem; left: 1rem;
  background: var(--or); color: white;
  padding: 0.3rem 0.8rem;
  border-radius: 50px;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.05em;
}
.prestation-body { padding: 1.8rem; flex: 1; display: flex; flex-direction: column; }
.prestation-body h3 { margin-bottom: 0.6rem; }
.prestation-body p  { font-size: 0.92rem; margin-bottom: 1.2rem; flex: 1; }
.prestation-infos {
  display: flex; gap: 0.8rem; margin-bottom: 1.5rem; flex-wrap: wrap;
}
.prestation-info-item {
  display: flex; align-items: center; gap: 0.4rem;
  font-size: 0.8rem; color: var(--gris); font-weight: 500;
}

/* ── PRESTATION SIMPLE (pages locales) ─────── */
.prestation-simple {
  background: white;
  border-radius: var(--radius);
  padding: 1.8rem;
  box-shadow: var(--ombre);
  text-align: center;
  border-top: 4px solid var(--or);
  display: flex;
  flex-direction: column;
  align-items: center;
}
.prestation-simple-icone { font-size: 2.8rem; margin-bottom: 0.8rem; }
.prestation-simple h3 { font-size: 1.05rem; margin-bottom: 0.5rem; }
.prestation-simple p  { font-size: 0.88rem; color: var(--texte-sec); flex: 1; }

/* ── TEMOIGNAGES ───────────────────────────── */
.temoignage-card {
  background: white;
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--ombre);
  position: relative;
  transition: var(--trans);
  display: flex;
  flex-direction: column;
}
.temoignage-card::before {
  content: '"';
  position: absolute; top: -10px; left: 1.5rem;
  font-family: 'Playfair Display', serif;
  font-size: 5rem;
  color: var(--or-clair);
  line-height: 1;
}
.temoignage-etoiles { color: #F5A623; font-size: 1rem; margin-bottom: 0.8rem; }
.temoignage-texte   { font-style: italic; color: var(--texte-sec); margin-bottom: 1.2rem; font-size: 0.93rem; flex: 1; }
.temoignage-auteur  { display: flex; align-items: center; gap: 0.8rem; margin-top: auto; }
.temoignage-avatar  {
  width: 44px; height: 44px; min-width: 44px;
  background: var(--vert-pale); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  border: 2px solid var(--or-clair);
}
.temoignage-auteur-info strong { font-size: 0.88rem; color: var(--vert); display: block; }
.temoignage-auteur-info span   { font-size: 0.76rem; color: var(--gris); }

/* ── FAQ ───────────────────────────────────── */
.faq-item {
  background: white;
  border-radius: var(--radius);
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.06);
}
.faq-question {
  padding: 1.2rem 1.5rem;
  display: flex; align-items: center; justify-content: space-between;
  cursor: pointer;
  font-weight: 600; color: var(--vert); font-size: 0.95rem;
  gap: 1rem;
  transition: var(--trans);
  user-select: none;
}
.faq-question:hover { background: var(--vert-pale); }
.faq-question .faq-icone {
  width: 28px; height: 28px; min-width: 28px;
  background: var(--vert-pale); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem; color: var(--vert);
  transition: var(--trans); font-style: normal;
}
.faq-item.open .faq-icone { transform: rotate(45deg); background: var(--or); color: white; }
.faq-reponse { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-item.open .faq-reponse { max-height: 600px; }
.faq-reponse-inner {
  padding: 0.2rem 1.5rem 1.5rem;
  color: var(--texte-sec); font-size: 0.93rem; line-height: 1.7;
}
.faq-group { display: flex; flex-direction: column; gap: 0.7rem; }

/* ── TARIFS ────────────────────────────────── */
.tarif-card {
  background: white;
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  box-shadow: var(--ombre);
  text-align: center;
  position: relative;
  transition: var(--trans);
  border-top: 4px solid var(--or-clair);
  display: flex;
  flex-direction: column;
  align-items: center;
}
.tarif-card:hover { transform: translateY(-4px); box-shadow: var(--ombre-lg); }
.tarif-card.featured {
  border-top-color: var(--vert);
  box-shadow: 0 8px 32px rgba(61,90,74,0.2);
}
.tarif-badge {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  background: var(--vert);
  color: white;
  font-size: 0.72rem; font-weight: 700;
  padding: 0.25rem 0.9rem;
  border-radius: 50px;
  white-space: nowrap;
}
.tarif-icone { font-size: 2.5rem; margin-bottom: 1rem; }
.tarif-nom   { font-size: 0.95rem; font-weight: 600; color: var(--gris); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 0.8rem; }
.tarif-prix  {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem; font-weight: 700; color: var(--vert);
  line-height: 1; margin-bottom: 0.4rem;
}
.tarif-prix span { font-size: 1rem; font-weight: 400; color: var(--gris); }
.tarif-desc { font-size: 0.85rem; color: var(--gris); margin-bottom: 1.5rem; flex: 1; }

/* ── BLOG ──────────────────────────────────── */
.blog-card {
  background: white;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--ombre);
  transition: var(--trans);
  display: flex;
  flex-direction: column;
}
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--ombre-lg); }
.blog-img { height: 200px; overflow: hidden; flex-shrink: 0; }
.blog-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.blog-card:hover .blog-img img { transform: scale(1.06); }
.blog-body  { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }
.blog-meta  { display: flex; gap: 0.8rem; margin-bottom: 0.8rem; flex-wrap: wrap; align-items: center; }
.blog-tag   {
  font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--or-fonce); background: rgba(201,169,110,0.12);
  padding: 0.2rem 0.7rem; border-radius: 50px;
}
.blog-date  { font-size: 0.78rem; color: var(--gris); }
.blog-body h2,
.blog-body h3 { font-size: 1rem; margin-bottom: 0.5rem; }
.blog-body p  { font-size: 0.87rem; color: var(--texte-sec); margin-bottom: 1rem; flex: 1; }
.blog-lire  {
  font-size: 0.84rem; font-weight: 600; color: var(--or-fonce);
  display: inline-flex; align-items: center; gap: 0.3rem;
  margin-top: auto;
}
.blog-lire:hover { gap: 0.6rem; }

/* ── INFO BOX ──────────────────────────────── */
.info-box {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: var(--gris-clair);
  padding: 1rem 1.2rem;
  border-radius: var(--radius-sm);
  margin-bottom: 0.8rem;
}
.info-icone {
  width: 46px; height: 46px; min-width: 46px;
  background: var(--vert-pale); border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
}
.info-contenu { display: flex; flex-direction: column; }
.info-contenu strong { font-size: 0.88rem; font-weight: 700; color: var(--vert); display: block; margin-bottom: 0.2rem; }
.info-contenu span,
.info-contenu a { font-size: 0.88rem; color: var(--texte-sec); }

/* ── FORMULAIRE ────────────────────────────── */
.contact-form-wrap {
  background: white;
  border-radius: var(--radius);
  padding: 2.5rem;
  box-shadow: var(--ombre);
}
.form-grid  { display: grid; grid-template-columns: 1fr 1fr; gap: 0 1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 1.1rem; }
.form-group label {
  font-size: 0.85rem; font-weight: 600; color: var(--vert);
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1.5px solid #DDD; border-radius: var(--radius-sm);
  font-family: 'Raleway', sans-serif; font-size: 0.93rem;
  color: var(--texte); background: var(--blanc);
  transition: var(--trans);
  outline: none;
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--vert);
  box-shadow: 0 0 0 3px rgba(61,90,74,0.1);
}
.form-group textarea { min-height: 130px; resize: vertical; }

/* ── BANNER CTA ────────────────────────────── */
.banner-cta {
  background: linear-gradient(135deg, var(--vert) 0%, #2A3E33 100%);
  padding: 70px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.banner-cta::before {
  content: '';
  position: absolute; top: -50%; left: -10%;
  width: 400px; height: 400px;
  background: rgba(201,169,110,0.07);
  border-radius: 50%;
  pointer-events: none;
}
.banner-cta::after {
  content: '';
  position: absolute; bottom: -50%; right: -5%;
  width: 300px; height: 300px;
  background: rgba(201,169,110,0.05);
  border-radius: 50%;
  pointer-events: none;
}
.banner-cta h2 { color: white; margin-bottom: 0.8rem; position: relative; z-index: 1; }
.banner-cta p  {
  color: rgba(255,255,255,0.78); margin-bottom: 2rem;
  max-width: 540px; margin-left: auto; margin-right: auto;
  position: relative; z-index: 1;
}
.banner-cta .btn-group { position: relative; z-index: 1; }

/* ── FOOTER ────────────────────────────────── */
footer {
  background: var(--vert-tres-fonce);
  color: rgba(255,255,255,0.75);
  padding: 60px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}
.footer-brand p { font-size: 0.87rem; margin: 1rem 0 1.2rem; line-height: 1.7; }
.footer-tel {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(201,169,110,0.15);
  border: 1px solid rgba(201,169,110,0.3);
  padding: 0.5rem 1rem; border-radius: 50px;
  color: var(--or-clair); font-weight: 600; font-size: 0.93rem;
  transition: var(--trans);
}
.footer-tel:hover { background: var(--or); color: white; }
.footer-col h4 {
  color: white; font-family: 'Raleway', sans-serif;
  font-size: 0.85rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.08em;
  margin-bottom: 1.2rem;
}
.footer-col ul li { margin-bottom: 0.45rem; }
.footer-col ul li a {
  font-size: 0.87rem; color: rgba(255,255,255,0.6);
  display: inline-flex; align-items: center; gap: 0.3rem;
  transition: var(--trans);
}
.footer-col ul li a:hover { color: var(--or-clair); padding-left: 3px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 1.5rem 0;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 1rem;
  font-size: 0.8rem;
}
.footer-bottom a { color: var(--or-clair); }
.footer-bottom a:hover { text-decoration: underline; }
.footer-desc { font-size: 0.87rem; margin: 0.8rem 0 1.2rem; line-height: 1.7; color: rgba(255,255,255,0.65); }

/* ── PAGE HERO (sous-pages) ────────────────── */
.page-hero {
  background: linear-gradient(135deg, var(--vert) 0%, #1E2E25 100%);
  padding: calc(var(--nav-h) + 60px) 0 70px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  opacity: 0.06;
  background-image: radial-gradient(circle, rgba(201,169,110,0.8) 1px, transparent 1px);
  background-size: 30px 30px;
  pointer-events: none;
}
.page-hero h1 { color: white; margin-bottom: 0.8rem; position: relative; z-index: 1; }
.page-hero p  {
  color: rgba(255,255,255,0.75); max-width: 580px;
  margin: 0 auto 1.5rem; position: relative; z-index: 1;
}
.breadcrumb {
  display: flex; align-items: center; justify-content: center;
  gap: 0.5rem; font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 1.5rem;
  position: relative; z-index: 1;
}
.breadcrumb a { color: var(--or-clair); }
.breadcrumb a:hover { text-decoration: underline; }

/* ── SCROLL ANIMATIONS ─────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── BANDEAU COOKIES ───────────────────────── */
#cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 9999;
  background: var(--vert-tres-fonce);
  color: rgba(255,255,255,0.85);
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
  box-shadow: 0 -4px 24px rgba(0,0,0,0.25);
  border-top: 2px solid rgba(201,169,110,0.3);
  transform: translateY(0);
  transition: transform 0.4s ease;
}
#cookie-banner.hidden { transform: translateY(110%); }
#cookie-banner p {
  margin: 0;
  font-size: 0.87rem;
  color: rgba(255,255,255,0.8);
  max-width: 700px;
  flex: 1;
}
#cookie-banner p a {
  color: var(--or-clair);
  text-decoration: underline;
}
.cookie-btns {
  display: flex;
  gap: 0.7rem;
  flex-shrink: 0;
  flex-wrap: wrap;
}
#cookie-accept {
  background: linear-gradient(135deg, var(--or), var(--or-fonce));
  color: white;
  border: none;
  padding: 0.55rem 1.3rem;
  border-radius: 50px;
  font-family: 'Raleway', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
  transition: var(--trans);
}
#cookie-accept:hover { transform: translateY(-1px); box-shadow: 0 4px 12px rgba(201,169,110,0.4); }
#cookie-refuse {
  background: transparent;
  color: rgba(255,255,255,0.6);
  border: 1px solid rgba(255,255,255,0.25);
  padding: 0.55rem 1.3rem;
  border-radius: 50px;
  font-family: 'Raleway', sans-serif;
  font-weight: 500;
  font-size: 0.85rem;
  cursor: pointer;
  transition: var(--trans);
}
#cookie-refuse:hover { border-color: rgba(255,255,255,0.5); color: white; }
@media (max-width: 600px) {
  #cookie-banner { flex-direction: column; align-items: flex-start; }
  .cookie-btns { width: 100%; }
  #cookie-accept, #cookie-refuse { flex: 1; text-align: center; }
}

/* ── SCROLL TO TOP ─────────────────────────── */
#scrollTop {
  position: fixed;
  bottom: 1.5rem; right: 1.5rem;
  width: 44px; height: 44px;
  background: var(--vert);
  color: white; border: none; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  box-shadow: var(--ombre);
  opacity: 0; transform: translateY(12px);
  transition: var(--trans); z-index: 998;
}
#scrollTop.visible { opacity: 1; transform: translateY(0); }
#scrollTop:hover { background: var(--or-fonce); }

/* ── RESPONSIVE : TABLETTE ≤ 1100px ─────────── */
@media (max-width: 1100px) {
  .hero-content {
    grid-template-columns: 1fr 340px;
    gap: 2.5rem;
    padding: calc(var(--nav-h) + 2rem) 1.5rem 3rem;
  }
  .hero-photo-cadre img { height: 400px; }
}

/* ── RESPONSIVE : TABLETTE ≤ 900px ─────────── */
@media (max-width: 900px) {
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
    padding: calc(var(--nav-h) + 2rem) 1.5rem 4rem;
    gap: 0;
  }
  .hero-texte p  { margin-left: auto; margin-right: auto; }
  .hero-btns     { justify-content: center; }
  .hero-stats    { justify-content: center; gap: 2rem; }

  /* Photo : repositionnée sous le texte, compacte et centrée */
  .hero-photo {
    order: -1;
    padding: 1.5rem 1.5rem 0;
    justify-content: center;
  }
  .hero-photo-cadre {
    max-width: 260px;
  }
  .hero-photo-cadre::before {
    top: 10px; right: -10px;
  }
  .hero-photo-cadre img {
    height: 300px;
    object-position: top center;
  }
  .hero-photo-badge { display: none; }

  /* Réorganisation : photo en haut, texte en dessous */
  .hero-content { display: flex; flex-direction: column; align-items: center; }
  .hero-texte   { order: 2; margin-top: 2rem; width: 100%; }
  .hero-photo   { order: 1; }

  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

/* ── RESPONSIVE : MOBILE ≤ 768px ──────────── */
@media (max-width: 768px) {
  :root { --nav-h: 64px; }

  .section { padding: 50px 0; }
  .titre-section { margin-bottom: 2rem; }

  /* Nav mobile */
  .nav-toggle { display: flex; }
  .nav-links {
    display: none;
    flex-direction: column;
    position: fixed;
    top: var(--nav-h); left: 0; right: 0;
    background: white;
    padding: 1rem 1.2rem 1.5rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.18);
    gap: 0.2rem;
    max-height: calc(100vh - var(--nav-h));
    overflow-y: auto;
    transform: translateY(-8px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease, transform 0.25s ease;
  }
  .nav-links.open {
    display: flex;
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }
  .nav-links a {
    color: var(--texte) !important;
    padding: 0.75rem 1rem;
    border-radius: var(--radius-sm);
    font-size: 0.95rem;
  }
  .nav-links .btn-nav {
    margin-top: 0.5rem;
    text-align: center;
    justify-content: center;
    color: white !important;
    background: linear-gradient(135deg, var(--or), var(--or-fonce)) !important;
  }
  .nav-links a:hover,
  .nav-links a.active {
    background: var(--vert-pale) !important;
    color: var(--vert) !important;
  }

  /* Grilles → 1 colonne */
  .grid-2,
  .grid-3,
  .grid-4 { grid-template-columns: 1fr; gap: 1.2rem; }

  /* Hero mobile : photo petite en haut, texte dessous */
  .hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: calc(var(--nav-h) + 1.5rem) 1.2rem 3.5rem;
    gap: 0;
  }
  .hero-texte { order: 2; width: 100%; text-align: center; margin-top: 1.8rem; }
  .hero-photo { order: 1; padding: 1rem 1rem 0.5rem; }
  .hero-photo-cadre { max-width: 200px; }
  .hero-photo-cadre::before { top: 8px; right: -8px; }
  .hero-photo-cadre img { height: 240px; }
  .hero-photo-badge { display: none; }

  .hero-badge { font-size: 0.7rem; padding: 0.35rem 0.9rem; }
  .hero-btns  { justify-content: center; gap: 0.8rem; }
  .hero-btns .btn { width: 100%; max-width: 260px; }
  .hero-stats {
    flex-direction: row;
    justify-content: space-around;
    gap: 0.5rem;
    padding-top: 1.5rem;
    margin-top: 1.5rem;
  }
  .hero-stat .chiffre { font-size: 1.3rem; }
  .hero-stat .label   { font-size: 0.65rem; }

  /* Tarifs */
  .tarif-card.featured { transform: none; }

  /* Formulaire */
  .form-grid { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 1.5rem; }

  /* CTA */
  .banner-cta { padding: 50px 0; }
  .banner-cta .btn-group {
    flex-direction: column;
    align-items: stretch;
    max-width: 280px;
    margin: 0 auto;
  }
  .banner-cta .btn-group .btn { width: 100%; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 0.5rem; }

  /* Prestation */
  .prestation-img { height: 200px; }
  .prestation-body { padding: 1.3rem; }

  /* Temoignages */
  .temoignage-card { padding: 1.5rem 1.2rem; }

  /* Page hero */
  .page-hero { padding: calc(var(--nav-h) + 40px) 0 50px; }
}

/* ── RESPONSIVE : PETIT MOBILE ≤ 480px ─────── */
@media (max-width: 480px) {
  .container { padding: 0 1rem; }

  h1 { font-size: 1.75rem; }
  h2 { font-size: 1.4rem; }

  .btn { padding: 0.75rem 1.5rem; font-size: 0.88rem; }

  .hero-stats { gap: 0; justify-content: space-between; }
  .hero-stat  { min-width: 0; flex: 1; }

  .atout-item  { padding: 1.2rem 0.5rem; }
  .atout-icone { width: 58px; height: 58px; font-size: 1.5rem; }

  .tarif-prix { font-size: 2.2rem; }

  .blog-body { padding: 1.2rem; }
  .faq-question { padding: 1rem 1.2rem; font-size: 0.9rem; }
  .faq-reponse-inner { padding: 0.2rem 1.2rem 1.2rem; }

  .banner-cta .btn-group { max-width: 100%; }

  .footer-grid { gap: 1.2rem; }

  .info-box { padding: 0.8rem 1rem; }
  .info-icone { width: 38px; height: 38px; min-width: 38px; font-size: 1.1rem; }

  #scrollTop { bottom: 1rem; right: 1rem; width: 40px; height: 40px; }
}
