/* =============================================
   MEL & 1 CHIEN — Style Sheet v2.1
   Charte : Crème / Doré / Noir / Playfair+DM Sans
   ============================================= */

:root {
  --bg: #faf8f2;
  --bg-alt: #f3f0e8;
  --bg-dark: #111008;
  --bg-dark2: #1a1910;
  --accent: #e7c64c;
  --accent-dark: #c9a833;
  --accent-light: #f5e08a;
  --accent-glow: rgba(231, 198, 76, 0.3);
  --text: #111008;
  --text-light: #faf8f2;
  --muted: #7a7060;
  --muted-light: rgba(250,248,242,0.55);
  --border: rgba(0, 0, 0, 0.07);
  --border-dark: rgba(255,255,255,0.08);
  --radius: 20px;
  --radius-sm: 12px;
  --shadow-sm: 0 4px 16px rgba(0,0,0,0.07);
  --shadow-md: 0 12px 40px rgba(0,0,0,0.1);
  --shadow-lg: 0 24px 72px rgba(0,0,0,0.16);
  --shadow-gold: 0 12px 40px rgba(231,198,76,0.25);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
em { font-style: italic; }
.amp { font-family: 'DM Sans', sans-serif; font-style: normal; }

/* ── Typography ── */
h1, h2, h3 { font-family: 'Playfair Display', Georgia, serif; line-height: 1.15; }
h1 { font-size: clamp(2.4rem, 5vw, 3.6rem); }
h2 { font-size: clamp(2rem, 4vw, 2.8rem); }
h3 { font-size: 1.25rem; }

/* ── Container ── */
.container { width: 100%; max-width: 1180px; margin: 0 auto; padding: 0 2rem; }

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.4rem;
  padding: 0.8rem 1.6rem; border-radius: 999px; border: none; cursor: pointer;
  font-family: 'DM Sans', sans-serif; font-weight: 600; font-size: 0.95rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-sm { padding: 0.55rem 1.2rem; font-size: 0.88rem; }
.btn-lg { padding: 1rem 2rem; font-size: 1rem; }
.btn-full { width: 100%; }
.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: #111;
  box-shadow: var(--shadow-gold);
}
.btn-primary:hover { box-shadow: 0 20px 55px rgba(231,198,76,0.4); }
.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1.5px solid var(--border);
}
.btn-ghost:hover { background: rgba(0,0,0,0.04); }
.btn-outline {
  background: transparent;
  border: 1.5px solid var(--accent);
  color: var(--accent-dark);
}
.btn-outline:hover { background: var(--accent); color: #111; }
.btn-link { background: none; border: none; cursor: pointer; color: var(--muted-light); font-size: 0.88rem; }

/* ── Eyebrow ── */
.eyebrow {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.8rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--accent-dark); margin-bottom: 1rem;
}
.eyebrow::before { content: ''; display: inline-block; width: 24px; height: 2px; background: var(--accent); }
.eyebrow.light { color: var(--accent-light); }
.eyebrow.light::before { background: var(--accent-light); }

/* ── Section header ── */
.section-header { max-width: 640px; margin-bottom: 3.5rem; }
.section-header h2 { margin-bottom: 1rem; }
.section-sub { color: var(--muted); font-size: 1.1rem; }

/* ── Tags ── */
.tag {
  display: inline-block; padding: 0.2rem 0.7rem; border-radius: 999px;
  font-size: 0.75rem; font-weight: 600; letter-spacing: 0.05em;
}
.tag-problem { background: #fff0f0; color: #c0392b; }
.tag-solution { background: #f0fff4; color: #27ae60; }

/* ============================================
   HEADER
   ============================================ */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(250,248,242,0.9);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s ease;
}
.site-header.scrolled { box-shadow: var(--shadow-md); }
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.9rem 0;
}

/* Logo */
.logo { display: flex; align-items: center; gap: 0.75rem; }
.logo-img { height: 44px; width: auto; }
.logo-text {
  font-family: 'Playfair Display', serif; font-size: 1.1rem; font-weight: 600;
  color: var(--text);
}
.logo-text em { color: var(--accent-dark); }

/* Nav */
.main-nav { display: flex; align-items: center; gap: 1.75rem; }
.nav-link { font-weight: 500; font-size: 0.9rem; color: var(--muted); transition: color 0.2s; position: relative; }
.nav-link::after {
  content: ''; position: absolute; bottom: -4px; left: 0; right: 0;
  height: 2px; background: var(--accent); border-radius: 2px;
  transform: scaleX(0); transition: transform 0.2s ease;
}
.nav-link:hover { color: var(--text); }
.nav-link:hover::after { transform: scaleX(1); }

/* Tel header */
.nav-tel {
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-size: 0.88rem; font-weight: 600; color: var(--accent-dark);
  background: rgba(231,198,76,0.1); border: 1px solid rgba(231,198,76,0.25);
  padding: 0.4rem 0.9rem; border-radius: 999px;
  transition: background 0.2s, transform 0.2s;
  white-space: nowrap;
}
.nav-tel:hover { background: rgba(231,198,76,0.2); transform: translateY(-1px); }

/* Burger */
.menu-toggle {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.menu-toggle span {
  display: block; width: 24px; height: 2px;
  background: var(--text); border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.menu-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative; min-height: 100svh;
  display: flex; align-items: center;
  overflow: hidden; padding: 7rem 0 5rem;
}

.hero-bg { position: absolute; inset: 0; pointer-events: none; }
.hero-blob {
  position: absolute; border-radius: 50%; filter: blur(80px);
  animation: blobFloat 8s ease-in-out infinite;
}
.blob-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(231,198,76,0.18), transparent);
  top: -100px; right: -100px;
}
.blob-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(231,198,76,0.1), transparent);
  bottom: -50px; left: 10%;
  animation-delay: -4s;
}
@keyframes blobFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(20px, -30px) scale(1.05); }
}

.hero-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem; align-items: center;
  position: relative; z-index: 1;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.4rem 1rem; border-radius: 999px;
  background: rgba(231,198,76,0.12); border: 1px solid rgba(231,198,76,0.3);
  font-size: 0.82rem; font-weight: 500; color: var(--accent-dark);
  margin-bottom: 1.5rem;
}
.badge-dot { width: 7px; height: 7px; background: var(--accent); border-radius: 50%; animation: pulse 2s infinite; }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }

.hero-text h1 { margin-bottom: 1.2rem; }
.hero-text h1 em { color: var(--accent-dark); }
.hero-sub { font-size: 1.1rem; color: var(--muted); margin-bottom: 2.5rem; max-width: 500px; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 3rem; }

.hero-stats { display: flex; align-items: flex-start; gap: 1.5rem; flex-wrap: wrap; }
.stat { display: flex; flex-direction: column; gap: 0.2rem; }
.stat strong { display: block; font-size: 1.15rem; font-weight: 700; color: var(--text); }
.stat span { font-size: 0.8rem; color: var(--muted); }
.stat-sep { width: 1px; height: 36px; background: var(--border); flex-shrink: 0; margin-top: 0.3rem; }


.hero-social { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 2rem; }
.hero-social span { font-size: 0.82rem; color: var(--muted); font-weight: 500; }
.hero-social-link {
  display: flex; align-items: center; justify-content: center;
  width: 32px; height: 32px; border-radius: 50%;
  background: rgba(231,198,76,0.1); border: 1px solid rgba(231,198,76,0.25);
  color: var(--accent-dark); transition: background 0.2s, color 0.2s, transform 0.2s;
}
.hero-social-link:hover { background: var(--accent); color: #111; transform: translateY(-2px); }

/* Macaron cynologiste */
.card-macaron { background: transparent !important; box-shadow: none !important; border: none !important; padding: 0 !important; }
.card-macaron img { width: 140px; height: 140px; object-fit: contain; }

.hero-visual { position: relative; }
.hero-image-frame { position: relative; }
.hero-img-wrap { border-radius: 28px; overflow: hidden; box-shadow: var(--shadow-lg); }
.hero-photo { width: 100%; aspect-ratio: 4/5; object-fit: cover; }
.hero-photo-fallback {
  background: linear-gradient(135deg, rgba(231,198,76,0.15), rgba(231,198,76,0.05));
  border: 1px solid rgba(231,198,76,0.2);
  min-height: 420px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  color: var(--muted); gap: 0.5rem;
}
.hero-photo-fallback span { font-size: 3rem; }
.hero-fc {
  position: absolute; background: white; border-radius: var(--radius-sm);
  padding: 0.75rem 1rem; display: flex; align-items: center; gap: 0.7rem;
  box-shadow: var(--shadow-md); font-size: 0.85rem;
  animation: cardFloat 6s ease-in-out infinite;
}
.hero-fc span { font-size: 1.4rem; }
.hero-fc strong { display: block; font-size: 0.85rem; }
.hero-fc small { color: var(--muted); font-size: 0.75rem; }
.card-1 { bottom: 30px; left: -30px; animation-delay: 0s; }
.card-2 { top: 30px; right: -20px; animation-delay: -3s; }
@keyframes cardFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* ============================================
   SECTIONS
   ============================================ */
.section { padding: 7rem 0; }
.section-alt { background: var(--bg-alt); }
.section-dark { background: var(--bg-dark); color: var(--text-light); }
.section-dark .section-sub { color: var(--muted-light); }
.section-empty {
  grid-column: 1/-1;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 0.75rem; padding: 4rem;
  border: 2px dashed var(--border); border-radius: var(--radius);
  color: var(--muted);
}
.section-empty span { font-size: 3rem; }

/* ============================================
   PROCESSUS
   ============================================ */
.process-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem;
}
.process-card {
  position: relative; padding: 2rem 1.5rem;
  text-align: center; background: white;
  border-radius: var(--radius); margin: 0;
  box-shadow: var(--shadow-sm); border: 1px solid var(--border);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.process-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.pc-num {
  position: absolute; top: 1.25rem; right: 1.25rem;
  font-size: 0.7rem; font-weight: 700; color: var(--accent); letter-spacing: 0.05em;
}
.pc-icon { font-size: 2.8rem; margin-bottom: 1rem; display: block; }
.process-card h3 { color: var(--text); margin-bottom: 0.6rem; font-size: 1.05rem; }
.process-card p { font-size: 0.9rem; color: var(--muted); }

/* ============================================
   À PROPOS (dark)
   ============================================ */
.apropos-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; }
.apropos-left h2 { color: var(--text-light); margin-bottom: 1.25rem; }
.apropos-left h2 em { color: var(--accent-light); }
.apropos-left .lead { color: var(--muted-light); margin-bottom: 2.5rem; font-size: 1.05rem; }

.milestones { display: flex; flex-direction: column; gap: 1.5rem; }
.milestone { display: flex; gap: 1.25rem; align-items: flex-start; }
.m-year {
  flex-shrink: 0; min-width: 52px;
  font-size: 0.78rem; font-weight: 700; color: var(--accent);
  padding-top: 0.2rem; letter-spacing: 0.04em;
}
.milestone strong { display: block; color: var(--text-light); margin-bottom: 0.2rem; font-size: 0.95rem; }
.milestone p { color: var(--muted-light); font-size: 0.88rem; line-height: 1.5; }

.apropos-imgs { position: relative; padding: 1rem; }
.img-main { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-lg); }
.img-main img { width: 100%; aspect-ratio: 4/5; object-fit: cover; object-position: top; }
.img-diplome {
  position: absolute; bottom: -10px; right: -10px;
  width: 280px;
  border-radius: var(--radius-sm); overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,0.45);
  border: 3px solid rgba(231,198,76,0.4);
}
.img-diplome img { width: 100%; display: block; }
.apropos-badge {
  position: absolute; top: -10px; left: -10px;
  background: var(--accent); color: #111;
  border-radius: var(--radius-sm); padding: 1rem;
  text-align: center; box-shadow: var(--shadow-gold);
  z-index: 2;
}
.apropos-badge span { display: block; font-size: 1.5rem; margin-bottom: 0.25rem; }
.apropos-badge strong { display: block; font-size: 1.1rem; font-weight: 700; }
.apropos-badge small { font-size: 0.72rem; opacity: 0.7; }

/* ============================================
   SITUATIONS
   ============================================ */
.situ-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }
.situ-card {
  background: white; border-radius: var(--radius);
  padding: 1.75rem; border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  display: flex; flex-direction: column; gap: 1rem;
}
.situ-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.situ-featured {
  background: var(--text); color: var(--text-light);
  border-color: transparent; box-shadow: var(--shadow-lg);
}
.situ-featured h3 { color: white; }
.situ-card.situ-featured h3 { color: white !important; }
.situ-featured p { color: rgba(255,255,255,0.75); }
.situ-featured .situ-result { color: var(--accent-light); border-color: rgba(231,198,76,0.2); }
.situ-featured .tag-label { background: var(--accent); color: #111; }

.situ-top { display: flex; align-items: center; justify-content: space-between; }
.situ-emoji { font-size: 2rem; }
.situ-tag {
  font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em;
  background: var(--bg-alt); color: var(--muted); padding: 0.2rem 0.6rem; border-radius: 999px;
}
.situ-card h3 { color: var(--text); margin: 0; }
.situ-block { display: flex; flex-direction: column; gap: 0.4rem; }
.tag-label {
  font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em;
  background: var(--bg-alt); color: var(--muted); padding: 0.15rem 0.5rem;
  border-radius: 999px; display: inline-block; width: fit-content;
}
.situ-block p { font-size: 0.88rem; color: var(--muted); margin: 0; }
.situ-result {
  display: flex; align-items: center; justify-content: center;
  padding-top: 0.75rem; border-top: 1px solid var(--border);
  margin-top: auto; color: var(--accent-dark);
}

/* ============================================
   GALERIE
   ============================================ */
.galerie-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1.25rem; min-height: 200px;
}
.dog-card {
  background: white; border-radius: var(--radius-sm);
  overflow: hidden; box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.dog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.dog-photo { width: 100%; aspect-ratio: 1; object-fit: cover; }
.dog-photo-placeholder {
  width: 100%; aspect-ratio: 1;
  background: linear-gradient(135deg, var(--bg-alt), var(--bg));
  display: flex; align-items: center; justify-content: center;
  font-size: 3rem;
}
.dog-info { padding: 0.85rem; }
.dog-info strong { display: block; font-size: 0.95rem; }
.dog-race { color: var(--muted); font-size: 0.8rem; }
.dog-info p { font-size: 0.82rem; color: var(--muted); margin-top: 0.3rem; }

/* ============================================
   ZONES
   ============================================ */
.zones-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.zones-map {
  position: relative;
  background: linear-gradient(160deg, #e4f0e4 0%, #cce8cc 60%, #b8ddb8 100%);
  border-radius: var(--radius);
  min-height: 380px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  box-shadow: inset 0 0 60px rgba(0,0,0,0.04);
}
.zones-map::before {
  content: '';
  position: absolute; inset: 0;
  background:
    linear-gradient(42deg, transparent 48%, rgba(255,255,255,0.4) 48.5%, rgba(255,255,255,0.4) 51.5%, transparent 52%),
    linear-gradient(135deg, transparent 43%, rgba(255,255,255,0.3) 43.5%, rgba(255,255,255,0.3) 45.5%, transparent 46%);
  pointer-events: none;
}
.map-circles { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; }
.mc { position: absolute; border-radius: 50%; animation: circlePulse 4s ease-in-out infinite; }
.mc1 {
  width: 300px; height: 300px;
  border: 2px dashed rgba(100,140,100,0.4);
  background: radial-gradient(circle, rgba(255,255,255,0.15), transparent 70%);
}
.mc2 {
  width: 180px; height: 180px;
  border: 2px solid rgba(100,140,100,0.5);
  background: radial-gradient(circle, rgba(255,255,255,0.2), transparent 70%);
  animation-delay: -2s;
}
.mc3 {
  width: 420px; height: 420px;
  border: 1px dashed rgba(100,140,100,0.2);
  animation-delay: -1s;
}
@keyframes circlePulse { 0%, 100% { transform: scale(1); opacity: 0.6; } 50% { transform: scale(1.03); opacity: 1; } }

.map-pin { position: absolute; display: flex; flex-direction: column; align-items: center; gap: 4px; z-index: 2; }
.pin-dot {
  width: 14px; height: 14px; border-radius: 50%;
  background: var(--accent-dark); border: 3px solid #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}
.pin-dot-sm {
  width: 10px; height: 10px; border-radius: 50%;
  background: rgba(100,140,100,0.7); border: 2px solid #fff;
  box-shadow: 0 1px 4px rgba(0,0,0,0.2);
}
.pin-label {
  background: white; border-radius: 999px;
  padding: 0.18rem 0.65rem; font-size: 0.74rem; font-weight: 700;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15); white-space: nowrap;
}
.pin-label-sm {
  background: rgba(255,255,255,0.85); border-radius: 999px;
  padding: 0.12rem 0.5rem; font-size: 0.65rem; font-weight: 600;
  box-shadow: 0 1px 4px rgba(0,0,0,0.1); white-space: nowrap; color: var(--muted);
}
.pin-a { top: 28%; left: 28%; }
.pin-b { top: 55%; left: 54%; }
.pin-brou    { top: 20%; left: 62%; }
.pin-bonneval { top: 42%; left: 72%; }
.pin-chateaudun-s { top: 68%; left: 25%; }
/* .pin-voves   { top: 15%; left: 42%; } */
.pin-arrou   { top: 48%; left: 38%; }

.map-legend {
  position: absolute; bottom: 1rem; left: 50%; transform: translateX(-50%);
  font-size: 0.7rem; color: rgba(60,80,60,0.7); background: rgba(255,255,255,0.8);
  padding: 0.25rem 0.8rem; border-radius: 999px; white-space: nowrap;
  backdrop-filter: blur(4px);
}
.zones-list { display: flex; flex-direction: column; gap: 1.25rem; }
.zone-item { display: flex; gap: 1rem; align-items: flex-start; }
.zone-dot {
  flex-shrink: 0; width: 12px; height: 12px; border-radius: 50%;
  background: var(--accent); margin-top: 0.4rem;
}
.dot-muted { background: var(--border); }
.zone-active .zone-dot { animation: pulse 2s infinite; }
.zone-item strong { display: block; margin-bottom: 0.2rem; }
.zone-item p { font-size: 0.9rem; color: var(--muted); }
.zone-note {
  display: flex; gap: 0.75rem; align-items: flex-start;
  background: rgba(231,198,76,0.1); border: 1px solid rgba(231,198,76,0.2);
  border-radius: var(--radius-sm); padding: 1rem; margin-top: 0.5rem;
}
.zone-note span { font-size: 1.1rem; flex-shrink: 0; }
.zone-note p { font-size: 0.88rem; color: var(--muted); }

/* ── Bloc SEO villes ── */
.zones-seo {
  margin-top: 3.5rem; padding: 2rem 2.5rem;
  background: var(--bg-alt); border-radius: var(--radius); border: 1px solid var(--border);
}
.zones-seo h3 { font-size: 1.2rem; margin-bottom: 0.75rem; color: var(--text); }
.zones-seo > p { font-size: 0.92rem; color: var(--muted); margin-bottom: 1.25rem; max-width: 700px; }
.zones-cities {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 0.4rem 2rem; list-style: none; margin-bottom: 1.25rem;
}
.zones-cities li { font-size: 0.88rem; color: var(--muted); padding: 0.35rem 0; border-bottom: 1px solid var(--border); }
.zones-cities li strong { color: var(--text); }
.zones-cta-text { font-size: 0.9rem; color: var(--muted); margin: 0; }
.zones-cta-text a { color: var(--accent-dark); font-weight: 600; text-decoration: underline; text-underline-offset: 2px; }

/* ============================================
   ACTUALITÉS
   ============================================ */
.actu-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1.5rem; min-height: 120px; }
.actu-card {
  background: white; border-radius: var(--radius);
  padding: 1.75rem; border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.actu-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.actu-emoji { font-size: 2rem; margin-bottom: 0.75rem; }
.actu-card h3 { font-size: 1.1rem; margin-bottom: 0.6rem; color: var(--text); }
.actu-card p { font-size: 0.9rem; color: var(--muted); line-height: 1.6; }
.actu-date { display: block; font-size: 0.75rem; color: var(--muted); margin-top: 1rem; padding-top: 0.75rem; border-top: 1px solid var(--border); }

/* ============================================
   FAQ
   ============================================ */
.faq-list { display: flex; flex-direction: column; gap: 0.75rem; max-width: 760px; }
.faq-item {
  background: white; border: 1px solid var(--border);
  border-radius: var(--radius-sm); overflow: hidden; cursor: pointer;
  transition: box-shadow 0.2s ease;
}
.faq-item:hover { box-shadow: var(--shadow-sm); }
.faq-item[open] { box-shadow: var(--shadow-md); }
.faq-item summary {
  padding: 1.25rem 1.5rem; font-weight: 600; font-size: 1rem;
  list-style: none; display: flex; align-items: center; justify-content: space-between;
  user-select: none;
}
.faq-item summary::after { content: '+'; font-size: 1.25rem; color: var(--accent); transition: transform 0.2s; }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-body { padding: 0 1.5rem 1.25rem; color: var(--muted); font-size: 0.95rem; }

/* ============================================
   CONTACT (dark)
   ============================================ */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; }
.contact-left h2 { color: var(--text-light); margin-bottom: 1rem; }
.contact-left h2 em { color: var(--accent-light); }
.contact-left > p { color: var(--muted-light); margin-bottom: 2rem; }

.contact-infos { display: flex; flex-direction: column; gap: 1rem; margin-bottom: 1.75rem; }
.ci-item {
  display: flex; align-items: center; gap: 1rem; padding: 1rem 1.25rem;
  border-radius: var(--radius-sm); background: rgba(255,255,255,0.05);
  border: 1px solid var(--border-dark); transition: background 0.2s; text-decoration: none;
}
.ci-item:hover { background: rgba(255,255,255,0.08); }
.ci-icon {
  color: var(--accent); display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; width: 40px; height: 40px;
  background: rgba(231,198,76,0.12); border-radius: 50%;
}
.ci-item small { display: block; font-size: 0.75rem; color: var(--muted-light); }
.ci-item strong { display: block; color: var(--text-light); font-size: 0.95rem; }

.contact-note {
  display: flex; gap: 0.75rem; align-items: flex-start;
  padding: 0.85rem 1rem; border-radius: var(--radius-sm);
  background: rgba(231,198,76,0.08); border: 1px solid rgba(231,198,76,0.15);
}
.contact-note p { font-size: 0.88rem; color: var(--muted-light); }

.contact-form {
  background: rgba(255,255,255,0.05); border: 1px solid var(--border-dark);
  border-radius: var(--radius); padding: 2rem;
}
.form-group { margin-bottom: 1.25rem; }
.form-group label { display: block; font-size: 0.82rem; font-weight: 500; margin-bottom: 0.4rem; color: rgba(250,248,242,0.6); }
.label-opt { opacity: 0.6; font-weight: 400; }
.form-group input,
.form-group textarea {
  width: 100%; padding: 0.8rem 1rem;
  border-radius: var(--radius-sm); border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.07); color: var(--text-light);
  font-family: 'DM Sans', sans-serif; font-size: 0.95rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form-group input::placeholder, .form-group textarea::placeholder { color: rgba(255,255,255,0.25); }
.form-group input:focus, .form-group textarea:focus {
  outline: none; border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(231,198,76,0.15);
}
.form-status { margin-top: 0.75rem; font-size: 0.9rem; color: var(--accent-light); text-align: center; }

/* ============================================
   FOOTER
   ============================================ */
.site-footer { background: #0d0c07; color: var(--muted-light); padding: 4rem 0 0; }
.footer-inner { display: grid; grid-template-columns: 1fr auto auto; gap: 4rem; align-items: start; padding-bottom: 3rem; }
.footer-logo { height: 44px; margin-bottom: 1rem; }
.footer-brand p { font-size: 0.88rem; line-height: 1.7; }
.footer-nav { display: flex; flex-direction: column; gap: 0.75rem; }
.footer-nav a { font-size: 0.9rem; transition: color 0.2s; }
.footer-nav a:hover { color: var(--accent-light); }
.footer-contact p { font-size: 0.88rem; line-height: 2; }
.footer-social { display: flex; gap: 0.75rem; margin-top: 1rem; }
.footer-social a {
  display: flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,0.07); border: 1px solid var(--border-dark);
  color: var(--muted-light); transition: background 0.2s, color 0.2s, transform 0.2s;
}
.footer-social a:hover { background: var(--accent); color: #111; transform: translateY(-2px); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.05); padding: 1.25rem 0; text-align: center; }
.footer-bottom p { font-size: 0.8rem; color: rgba(255,255,255,0.25); }
.footer-bottom-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 0.75rem; }
.footer-legal { display: flex; align-items: center; gap: 0.6rem; font-size: 0.8rem; }
.footer-legal a { color: rgba(255,255,255,0.35); transition: color 0.2s; }
.footer-legal a:hover { color: var(--accent-light); }
.footer-legal span { color: rgba(255,255,255,0.15); }
.footer-credit { font-size: 0.8rem; color: rgba(255,255,255,0.25); }
.footer-credit a { color: var(--accent); font-weight: 600; transition: color 0.2s; }
.footer-credit a:hover { color: var(--accent-light); }

/* ============================================
   BACK TO TOP
   ============================================ */
.back-to-top {
  position: fixed; right: 1.75rem; bottom: 1.75rem;
  width: 48px; height: 48px; border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: #111; border: none; cursor: pointer;
  display: none; align-items: center; justify-content: center;
  font-size: 1.1rem; font-weight: 700;
  box-shadow: var(--shadow-gold); transition: transform 0.2s, box-shadow 0.2s; z-index: 90;
}
.back-to-top:hover { transform: translateY(-3px); box-shadow: 0 20px 40px rgba(231,198,76,0.4); }

/* ============================================
   POPUP
   ============================================ */
.popup-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.7);
  display: none; align-items: center; justify-content: center; z-index: 9999;
  backdrop-filter: blur(4px);
}
.popup {
  background: var(--bg-dark); color: var(--text-light);
  border-radius: var(--radius); padding: 2.5rem;
  max-width: 440px; width: calc(100% - 2rem);
  box-shadow: 0 32px 80px rgba(0,0,0,0.6);
  position: relative; text-align: center;
  border: 1px solid var(--border-dark);
  animation: popupIn 0.35s ease;
}
@keyframes popupIn { from { opacity: 0; transform: scale(0.92) translateY(10px); } to { opacity: 1; transform: scale(1) translateY(0); } }
.popup-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--accent); color: #111;
  padding: 0.2rem 0.8rem; border-radius: 999px;
  font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em;
}
.popup-icon { font-size: 3rem; margin-bottom: 1rem; }
.popup h3 { color: white; margin-bottom: 0.75rem; font-size: 1.4rem; }
.popup p { color: var(--muted-light); font-size: 0.95rem; margin-bottom: 1.5rem; }
.popup-close {
  position: absolute; top: 1rem; right: 1rem;
  background: rgba(255,255,255,0.08); border: none; color: var(--muted-light);
  width: 32px; height: 32px; border-radius: 50%;
  font-size: 1.1rem; cursor: pointer; transition: background 0.2s;
  display: flex; align-items: center; justify-content: center;
}
.popup-close:hover { background: rgba(255,255,255,0.15); color: white; }
.popup-image {
  margin: -2.5rem -2.5rem 1.5rem;
  border-radius: var(--radius) var(--radius) 0 0;
  overflow: hidden; max-height: 220px;
}
.popup-image img { width: 100%; height: 100%; object-fit: cover; display: block; }
.popup-with-image { padding-top: 0; }
.popup-with-image .popup-close { background: rgba(0,0,0,0.5); top: 0.75rem; right: 0.75rem; }

/* ============================================
   TARIFS
   ============================================ */
.tarifs-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem; margin-bottom: 2.5rem;
}
.tarif-card {
  background: white; border-radius: var(--radius); padding: 1.75rem;
  border: 1px solid var(--border); box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column; gap: 0.75rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.tarif-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.tarif-featured { background: var(--bg-dark); border-color: transparent; box-shadow: var(--shadow-lg); }
.tarif-featured h3 { color: white; }
.tarif-featured .tarif-content h3 { color: white !important; }
.tarif-featured .tarif-content p { color: var(--muted-light) !important; }
.tarif-featured .tarif-duree { background: rgba(231,198,76,0.2); color: var(--accent-light); }
.tarif-featured strong { color: var(--accent-light); }
.tarif-validite { font-size: 0.78rem; margin-top: 0.4rem; color: rgba(250,248,242,0.5) !important; }
.tarif-icon { font-size: 2rem; }
.tarif-content h3 { font-size: 1.05rem; color: var(--text); margin-bottom: 0.35rem; }
.tarif-content p { font-size: 0.88rem; color: var(--muted); line-height: 1.5; }
.tarif-prix {
  display: flex; align-items: center; justify-content: space-between;
  margin-top: auto; padding-top: 0.75rem; border-top: 1px solid var(--border);
}
.tarif-featured .tarif-prix { border-color: rgba(255,255,255,0.1); }
.tarif-duree {
  font-size: 0.78rem; font-weight: 600;
  background: var(--bg-alt); color: var(--muted);
  padding: 0.2rem 0.6rem; border-radius: 999px;
}
.tarif-prix strong { font-size: 1.4rem; font-family: 'Playfair Display', serif; color: var(--accent-dark); }

.tarifs-deplacement {
  background: white; border-radius: var(--radius);
  border: 1px solid var(--border); box-shadow: var(--shadow-sm); padding: 2rem;
}
.tarifs-dep-header { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.5rem; }
.tarifs-dep-header span { font-size: 1.8rem; flex-shrink: 0; }
.tarifs-dep-header h3 { font-size: 1.1rem; color: var(--text); margin-bottom: 0.2rem; }
.tarifs-dep-header p { font-size: 0.85rem; color: var(--muted); }
.tarifs-dep-grid {
  display: grid; grid-template-columns: repeat(4, minmax(0, 200px));
  gap: 0.5rem; margin-bottom: 1.25rem;
  justify-content: center;
}
.dep-item {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: 0.75rem; border-radius: var(--radius-sm);
  background: var(--bg-alt); border: 1px solid var(--border); gap: 0.3rem;
}
.dep-item span { font-size: 0.78rem; color: var(--muted); }
.dep-item strong { font-size: 1rem; font-weight: 700; color: var(--text); }
.dep-free { border-color: rgba(39,174,96,0.3); background: #f0fff4; }
.dep-free strong { color: #27ae60; }
.tarifs-dep-note {
  display: flex; gap: 0.75rem; align-items: flex-start;
  background: rgba(231,198,76,0.08); border: 1px solid rgba(231,198,76,0.2);
  border-radius: var(--radius-sm); padding: 0.85rem 1rem;
}
.tarifs-dep-note span { font-size: 1rem; flex-shrink: 0; }
.tarifs-dep-note p { font-size: 0.88rem; color: var(--muted); }
.tarifs-dep-note a { color: var(--accent-dark); font-weight: 600; text-decoration: underline; text-underline-offset: 2px; }

@media (max-width: 1024px) { .tarifs-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) {
  .tarifs-grid { grid-template-columns: 1fr; }
  .tarifs-dep-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ============================================
   AVIS GOOGLE
   ============================================ */
.avis-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.avis-card {
  background: rgba(255,255,255,0.05); border: 1px solid var(--border-dark);
  border-radius: var(--radius); padding: 1.75rem;
  display: flex; flex-direction: column; gap: 1rem;
  transition: background 0.2s, transform 0.25s;
}
.avis-card:hover { background: rgba(255,255,255,0.08); transform: translateY(-3px); }
.avis-featured { border-color: rgba(231,198,76,0.35); background: rgba(231,198,76,0.06); }
.avis-summary {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; background: rgba(231,198,76,0.07); border-color: rgba(231,198,76,0.25);
}
.avis-score {
  font-family: 'Playfair Display', serif; font-size: 3.5rem; font-weight: 600;
  color: var(--accent-light); line-height: 1; margin-bottom: .25rem;
}
.avis-header { display: flex; align-items: center; gap: .85rem; }
.avis-avatar {
  width: 42px; height: 42px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .8rem; font-weight: 700; flex-shrink: 0;
}
.avis-header > div:nth-child(2) { flex: 1; }
.avis-header strong { display: block; font-size: .9rem; color: var(--text-light); }
.avis-date { font-size: .75rem; color: var(--muted-light); }
.avis-stars { color: var(--accent); font-size: .95rem; letter-spacing: 1px; }
.avis-card > p { font-size: .9rem; color: var(--muted-light); line-height: 1.7; font-style: italic; flex: 1; }
.avis-footer {
  display: flex; align-items: center; gap: .5rem;
  padding-top: .75rem; border-top: 1px solid var(--border-dark);
  font-size: .75rem; color: rgba(255,255,255,0.3);
}

@media (max-width: 1024px) { .avis-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .avis-grid { grid-template-columns: 1fr; } }

/* ============================================
   REVEAL ANIMATIONS
   ============================================ */
[data-reveal], [data-reveal-delay] {
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
[data-reveal-delay] { transition-delay: 0.2s; }
[data-reveal].visible, [data-reveal-delay].visible { opacity: 1; transform: translateY(0); }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .situ-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
}

@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-visual { display: none; }
  .hero-stats { justify-content: center; }
  .hero-actions { justify-content: center; }
  .apropos-grid { grid-template-columns: 1fr; gap: 3rem; }
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .zones-layout { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .zones-seo { padding: 1.5rem; }
}

@media (max-width: 768px) {
  .section { padding: 5rem 0; }
  .main-nav {
    display: none; flex-direction: column; align-items: flex-start;
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--bg); padding: 1.5rem 2rem;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-md); gap: 1.25rem;
  }
  .main-nav.open { display: flex; }
  .menu-toggle { display: flex; }
  .situ-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .zones-cities { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  h1 { font-size: 2.1rem; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .zones-cities { grid-template-columns: 1fr; }
}

/* Tel cliquable uniquement sur mobile */
@media (hover: hover) and (pointer: fine) {
  .nav-tel { pointer-events: none; cursor: default; }
}

@media (hover: hover) and (pointer: fine) {
  .nav-tel { pointer-events: none; cursor: default; }
  .ci-item { pointer-events: none; cursor: default; }
}