/* ============================================
   VARIABLES — Modifiez les couleurs ici
   ============================================ */
:root {
  --background: #fdfafb;
  --foreground: #2a1620;
  --card: #ffffff;
  --muted: #f5edf0;
  --muted-foreground: #7a5566;
  --border: #ead7df;
  --primary: #f5edf0;
  --primary-foreground: #4a1f33;
  --brand: #b22c6f;              /* rose foncé — non utilisé pour about/contact désormais */
  --brand-foreground: #fdfafb;
  --about-bg: #fbeaf0;           /* rose très pâle — fond section à propos */
  --about-foreground: #2a1620;   /* texte foncé sur fond clair */
  --contact-bg: #f3e3eb;         /* rose pâle légèrement plus soutenu — fond section contact */
  --contact-foreground: #2a1620; /* texte foncé sur fond clair */
  --secondary: #f3e3eb;
  --accent: #d66296;             /* rose accent */
  --accent-foreground: #ffffff;
  --radius: 0.75rem;
  --max-w: 1152px;
  --font-sans: 'Inter', ui-sans-serif, system-ui, -apple-system, sans-serif;
  --font-heading: 'Cormorant Garamond', Georgia, serif;
}

/* ============================================
   RESET & BASE
   ============================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-sans);
  background: var(--background);
  color: var(--foreground);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
h1, h2, h3, h4 { font-family: var(--font-heading); font-weight: 300; line-height: 1.15; }
em { font-style: italic; color: var(--accent); font-weight: 500; }

.container { max-width: var(--max-w); margin: 0 auto; padding: 0 1.25rem; }
@media (min-width: 768px) { .container { padding: 0 2rem; } }

.eyebrow {
  color: var(--accent); text-transform: uppercase;
  letter-spacing: 0.2em; font-size: 0.75rem; font-weight: 600;
  margin-bottom: 1rem;
}
.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1.25rem;
}
.section { padding: 6rem 0; }
@media (min-width: 768px) { .section { padding: 8rem 0; } }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  padding: 1rem 2rem; border-radius: 9999px;
  font-weight: 600; font-size: 0.875rem; letter-spacing: 0.025em;
  transition: all 0.25s ease;
  border: none; cursor: pointer; font-family: inherit; text-decoration: none;
}
.btn-accent { background: var(--accent); color: var(--accent-foreground); box-shadow: 0 10px 30px -10px rgba(0,0,0,.3); }
.btn-accent:hover { opacity: 0.92; transform: scale(1.04); }
.btn-ghost { background: rgba(255,255,255,.1); color: #fff; border: 1px solid rgba(255,255,255,.3); backdrop-filter: blur(4px); }
.btn-ghost:hover { background: rgba(255,255,255,.2); }

/* ============================================
   HEADER
   ============================================ */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  transition: background 0.4s, box-shadow 0.4s, border-color 0.4s;
}
.header.scrolled {
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 1px 0 var(--border);
}
.header-inner {
  max-width: var(--max-w); margin: 0 auto;
  padding: 0 1.25rem; height: 5rem;
  display: flex; align-items: center; justify-content: space-between;
}
@media (min-width: 768px) { .header-inner { padding: 0 2rem; height: 6rem; } }

.logo { display: flex; align-items: center; gap: 0.5rem; }
.logo img { width: 4rem; height: 4rem; object-fit: contain; transition: filter 0.3s; }
@media (min-width: 768px) { .logo img { width: 5rem; height: 5rem; } }
.logo-text {
  font-family: var(--font-heading); font-weight: 600;
  font-size: 1.5rem; color: #fff; transition: color 0.3s;
}
@media (min-width: 768px) { .logo-text { font-size: 1.875rem; } }
.logo-text em { font-style: normal; color: var(--accent); }
.header.scrolled .logo-text { color: var(--foreground); }
.header.scrolled .logo img { filter: brightness(0); }

.nav-desktop { display: none; gap: 2rem; align-items: center; }
@media (min-width: 768px) { .nav-desktop { display: flex; } }
.nav-desktop a {
  font-size: 0.875rem; font-weight: 500; letter-spacing: 0.025em;
  color: rgba(255,255,255,.8); transition: color 0.2s;
}
.nav-desktop a:hover { color: var(--accent); }
.header.scrolled .nav-desktop a { color: rgba(42,22,32,.7); }

.header-cta { display: none; }
@media (min-width: 768px) { .header-cta { display: inline-flex; padding: 0.625rem 1.25rem; font-size: 0.875rem; } }

.menu-btn { display: block; padding: 0.5rem; color: #fff; transition: color 0.3s; }
@media (min-width: 768px) { .menu-btn { display: none; } }
.header.scrolled .menu-btn { color: var(--foreground); }
.menu-btn svg { width: 1.5rem; height: 1.5rem; }

.nav-mobile {
  display: none; background: rgba(255,255,255,.98); backdrop-filter: blur(10px);
  border-top: 1px solid var(--border); box-shadow: 0 10px 20px -5px rgba(0,0,0,.1);
}
.nav-mobile.open { display: block; }
.nav-mobile-inner { padding: 1rem 1.25rem; display: flex; flex-direction: column; gap: 0.25rem; }
.nav-mobile a {
  padding: 0.75rem 0; font-size: 0.875rem; font-weight: 500;
  color: rgba(42,22,32,.8); border-bottom: 1px solid rgba(234,215,223,.5);
  transition: color 0.2s;
}
.nav-mobile a:hover { color: var(--primary-foreground); }
.nav-mobile .btn { margin-top: 0.75rem; padding: 0.75rem 1.25rem; }

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center; overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background: rgba(0,0,0,.6);
}
.hero-inner {
  position: relative; z-index: 1;
  max-width: var(--max-w); margin: 0 auto; width: 100%;
  padding: 7rem 1.25rem 5rem;
}
@media (min-width: 768px) { .hero-inner { padding: 7rem 2rem 5rem; } }
.hero-content { max-width: 36rem; }
.hero-eyebrow { animation: fadeUp 0.7s ease forwards; }
.hero h1 {
  font-size: clamp(2.75rem, 6vw, 4.5rem); color: #fff;
  margin-bottom: 1.5rem; opacity: 0; animation: fadeUp 0.7s ease 0.1s forwards;
  text-wrap: balance;
}
.hero-subtitle {
  color: rgba(255,255,255,.75); font-size: 1.125rem;
  line-height: 1.7; max-width: 32rem; margin-bottom: 2.5rem;
  opacity: 0; animation: fadeUp 0.7s ease 0.2s forwards;
}
@media (min-width: 768px) { .hero-subtitle { font-size: 1.25rem; } }
.hero-ctas {
  display: flex; flex-direction: column; gap: 1rem;
  opacity: 0; animation: fadeUp 0.7s ease 0.3s forwards;
}
@media (min-width: 640px) { .hero-ctas { flex-direction: row; } }

.hero-stats {
  margin-top: 4rem; display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem; max-width: 32rem;
  opacity: 0; animation: fadeUp 0.7s ease 0.4s forwards;
}
.hero-stat { text-align: center; }
.hero-stat-value {
  font-family: var(--font-heading); font-size: 2rem; font-weight: 600;
  color: var(--accent);
}
@media (min-width: 768px) { .hero-stat-value { font-size: 2.5rem; } }
.hero-stat-label { color: rgba(255,255,255,.6); font-size: 0.75rem; margin-top: 0.25rem; line-height: 1.3; }

/* ============================================
   SERVICES
   ============================================ */
.services { background: var(--background); }
.services-header { max-width: 36rem; margin-bottom: 4rem; }
.services-grid { display: grid; gap: 1.5rem; }
@media (min-width: 768px) { .services-grid { grid-template-columns: repeat(3, 1fr); gap: 2rem; } }

.service-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 1rem; padding: 2rem;
  display: flex; flex-direction: column; gap: 1.25rem;
  transition: box-shadow 0.3s, border-color 0.3s, transform 0.3s;
}
.service-card:hover { box-shadow: 0 25px 40px -20px rgba(0,0,0,.15); border-color: rgba(214,98,150,.3); }
.service-icon {
  width: 3rem; height: 3rem; border-radius: 0.75rem;
  background: var(--accent); color: #fff;
  display: flex; align-items: center; justify-content: center;
}
.service-icon svg { width: 1.75rem; height: 1.75rem; }
.service-card h3 { font-family: var(--font-heading); font-size: 1.375rem; font-weight: 600; margin-bottom: 0.75rem; }
.service-card p { color: var(--muted-foreground); font-size: 0.875rem; line-height: 1.65; }
.service-details {
  list-style: none; border-top: 1px solid var(--border);
  padding-top: 1.25rem; display: flex; flex-direction: column; gap: 0.4rem;
}
.service-details li {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 0.875rem; color: rgba(42,22,32,.7);
}
.service-details svg { width: 0.875rem; height: 0.875rem; color: var(--accent); flex-shrink: 0; }

.services-cta { margin-top: 3rem; text-align: center; }
.services-cta a {
  display: inline-flex; align-items: center; gap: 0.5rem;
  color: var(--primary-foreground); font-weight: 600; font-size: 0.875rem;
  border-bottom: 2px solid var(--accent); padding-bottom: 0.125rem;
  transition: gap 0.3s;
}
.services-cta a:hover { gap: 0.75rem; }
.services-cta svg { width: 1rem; height: 1rem; }

/* ============================================
   PROCESS — Comment ça se passe
   ============================================ */
.process { background: var(--background); }
.process-header { max-width: 36rem; margin-bottom: 4rem; }
.process-steps {
  display: grid; gap: 2.5rem;
  position: relative;
}
@media (min-width: 768px) {
  .process-steps {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
  }
  .process-steps::before {
    content: ''; position: absolute; top: 1.25rem; left: 12.5%; right: 12.5%;
    height: 1px; background: var(--border); z-index: 0;
  }
}
.process-step { text-align: center; position: relative; z-index: 1; }
.process-number {
  width: 2.5rem; height: 2.5rem; margin: 0 auto 1.25rem;
  border-radius: 9999px; background: var(--card); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-heading); font-size: 1rem; color: var(--accent);
}
.process-step h3 { font-size: 1.0625rem; font-weight: 600; margin-bottom: 0.5rem; font-family: var(--font-heading); }
.process-step p { font-size: 0.875rem; color: var(--muted-foreground); line-height: 1.6; }

/* ============================================
   ABOUT (clair)
   ============================================ */
.about { background: var(--about-bg); color: var(--about-foreground); overflow: hidden; }
.about-grid { display: grid; gap: 3rem; align-items: center; }
@media (min-width: 768px) { .about-grid { grid-template-columns: 1fr 1fr; gap: 5rem; } }

.about-image-wrap {
  position: relative; border-radius: 1rem; overflow: hidden;
  aspect-ratio: 4/5; max-width: 28rem; margin: 0 auto;
}
@media (min-width: 768px) { .about-image-wrap { max-width: none; } }
.about-image-wrap img { width: 100%; height: 100%; object-fit: cover; }
.about-quote {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 1.5rem;
  background: linear-gradient(to top, rgba(42,22,32,.85), transparent);
  color: #fff; font-family: var(--font-heading); font-style: italic;
  font-size: 0.95rem; line-height: 1.6;
}
.about h2 { color: var(--about-foreground); font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 1.5rem; }
.about-intro { color: rgba(42,22,32,.7); font-size: 1.0625rem; line-height: 1.75; margin-bottom: 2.5rem; }

.strengths { display: grid; gap: 1.25rem; }
@media (min-width: 640px) { .strengths { grid-template-columns: 1fr 1fr; } }
.strength {
  display: flex; gap: 1rem; padding: 1rem;
  border-radius: 0.75rem; background: rgba(255,255,255,.6);
  border: 1px solid rgba(42,22,32,.08);
  transition: border-color 0.3s;
}
.strength:hover { border-color: rgba(214,98,150,.5); }
.strength-icon {
  flex-shrink: 0; width: 2.25rem; height: 2.25rem; border-radius: 0.5rem;
  background: rgba(214,98,150,.15); color: var(--accent);
  display: flex; align-items: center; justify-content: center;
}
.strength-icon svg { width: 1.25rem; height: 1.25rem; }
.strength h3 { font-family: var(--font-sans); font-size: 0.9rem; font-weight: 600; margin-bottom: 0.25rem; color: var(--about-foreground); }
.strength p { font-size: 0.75rem; color: rgba(42,22,32,.6); line-height: 1.5; }

.founder {
  display: flex; align-items: center; gap: 1.25rem;
  margin-top: 2.5rem; padding-top: 2rem;
  border-top: 1px solid rgba(42,22,32,.1);
}
.founder-photo {
  flex-shrink: 0; width: 6.5rem; height: 6.5rem; border-radius: 9999px;
  overflow: hidden; border: 3px solid rgba(255,255,255,.8);
}
.founder-photo img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 30%; }
.founder-name { font-family: var(--font-heading); font-size: 1.0625rem; font-weight: 600; color: var(--about-foreground); }
.founder-role { font-size: 0.75rem; color: var(--accent); margin-bottom: 0.375rem; }
.founder-bio { font-size: 0.8125rem; color: rgba(42,22,32,.65); line-height: 1.6; }
@media (max-width: 480px) {
  .founder { flex-direction: column; text-align: center; }
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials { background: var(--secondary); }
.testimonials-header { text-align: center; max-width: 36rem; margin: 0 auto 4rem; }
.testimonials-header h2 { font-size: clamp(2rem, 4vw, 3rem); }
.testimonials-header em { color: var(--primary-foreground); }

.testimonials-grid { display: grid; gap: 1.25rem; }
@media (min-width: 768px) { .testimonials-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .testimonials-grid { grid-template-columns: repeat(4, 1fr); } }

.testimonial {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 1rem; padding: 1.5rem;
  display: flex; flex-direction: column; gap: 1rem;
  transition: box-shadow 0.3s, border-color 0.3s;
}
.testimonial:hover { box-shadow: 0 15px 30px -10px rgba(0,0,0,.12); border-color: rgba(214,98,150,.3); }
.stars { display: flex; gap: 2px; }
.stars svg { width: 1rem; height: 1rem; color: var(--accent); fill: currentColor; }
.testimonial-text { color: var(--muted-foreground); font-size: 0.875rem; line-height: 1.65; flex: 1; }
.testimonial cite { font-style: normal; }
.testimonial-name { font-weight: 600; font-size: 0.875rem; color: var(--foreground); }
.testimonial-loc { font-size: 0.75rem; color: var(--muted-foreground); }

.trust-badge {
  margin-top: 3rem; display: flex; align-items: center; justify-content: center; gap: 0.75rem;
}
.trust-avatars { display: flex; }
.trust-avatars > div {
  width: 2rem; height: 2rem; border-radius: 9999px; border: 2px solid #fff;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 0.75rem; font-weight: 700;
  margin-left: -0.5rem;
}
.trust-avatars > div:first-child { margin-left: 0; }
.trust-badge p { font-size: 0.875rem; color: var(--muted-foreground); }
.trust-badge strong { color: var(--foreground); font-weight: 700; }

/* ============================================
   CONTACT (clair)
   ============================================ */
.contact { background: var(--contact-bg); color: var(--contact-foreground); }
.contact-grid { display: grid; gap: 3rem; align-items: start; }
@media (min-width: 768px) { .contact-grid { grid-template-columns: 1fr 1fr; gap: 5rem; } }
.contact h2 { color: var(--contact-foreground); font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 1.5rem; }
.contact-intro { color: rgba(42,22,32,.7); font-size: 1rem; line-height: 1.7; margin-bottom: 2.5rem; }

.contact-list { display: flex; flex-direction: column; gap: 1.25rem; }
.contact-item { display: flex; align-items: flex-start; gap: 1rem; }
.contact-item-icon {
  flex-shrink: 0; width: 2.5rem; height: 2.5rem; border-radius: 0.75rem;
  background: rgba(255,255,255,.7); color: var(--accent);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
}
.contact-item:hover .contact-item-icon { background: rgba(255,255,255,.95); }
.contact-item-icon svg { width: 1.25rem; height: 1.25rem; }
.contact-item-label { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(42,22,32,.5); margin-bottom: 0.125rem; }
.contact-item-value { font-size: 0.95rem; color: var(--contact-foreground); font-weight: 500; }

.contact-form {
  background: rgba(255,255,255,.6); border: 1px solid rgba(42,22,32,.08);
  border-radius: 1rem; padding: 1.5rem;
  display: flex; flex-direction: column; gap: 1rem;
}
@media (min-width: 768px) { .contact-form { padding: 2rem; } }
.form-row { display: grid; gap: 1rem; }
@media (min-width: 640px) { .form-row { grid-template-columns: 1fr 1fr; } }
.form-field label {
  display: block; font-size: 0.7rem; text-transform: uppercase;
  letter-spacing: 0.1em; color: rgba(42,22,32,.6); margin-bottom: 0.375rem;
}
.form-field input, .form-field textarea {
  width: 100%; background: rgba(255,255,255,.8);
  border: 1px solid rgba(42,22,32,.12); border-radius: 0.75rem;
  padding: 0.75rem 1rem; font-size: 0.875rem; color: var(--contact-foreground);
  font-family: inherit; transition: border-color 0.2s;
}
.form-field input::placeholder, .form-field textarea::placeholder { color: rgba(42,22,32,.35); }
.form-field input:focus, .form-field textarea:focus { outline: none; border-color: var(--accent); }
.form-field textarea { resize: none; }
.contact-form button {
  width: 100%; background: var(--accent); color: var(--accent-foreground);
  padding: 1rem 1.5rem; border-radius: 0.75rem;
  font-weight: 600; font-size: 0.875rem; letter-spacing: 0.025em;
  box-shadow: 0 10px 25px -10px rgba(0,0,0,.2);
  transition: transform 0.2s, opacity 0.2s;
}
.contact-form button:hover { opacity: 0.92; transform: scale(1.015); }
.form-note { text-align: center; font-size: 0.75rem; color: rgba(42,22,32,.45); }

.form-success {
  background: rgba(255,255,255,.6); border: 1px solid rgba(214,98,150,.3);
  border-radius: 1rem; padding: 2.5rem;
  text-align: center; display: flex; flex-direction: column; align-items: center; gap: 1rem;
}
.form-success-icon {
  width: 3.5rem; height: 3.5rem; border-radius: 9999px;
  background: rgba(214,98,150,.2);
  display: flex; align-items: center; justify-content: center;
}
.form-success-icon svg { width: 1.75rem; height: 1.75rem; color: var(--accent); }
.form-success h3 { font-family: var(--font-heading); font-size: 1.5rem; color: var(--contact-foreground); }
.form-success p { color: rgba(42,22,32,.65); font-size: 0.875rem; line-height: 1.6; }

/* ============================================
   FOOTER
   ============================================ */
.footer {
  max-width: var(--max-w); margin: 0 auto;
  padding: 2rem 1.25rem; margin-top: 5rem;
  border-top: 1px solid var(--border);
  display: flex; flex-direction: column; gap: 1rem;
  align-items: center; justify-content: space-between;
  font-size: 0.75rem; color: var(--muted-foreground);
}
@media (min-width: 768px) { .footer { flex-direction: row; padding: 2rem; } }
.footer-brand { font-family: var(--font-heading); font-weight: 600; color: var(--foreground); font-size: 1rem; }
.footer-brand em { font-style: normal; }
.footer-links { display: flex; gap: 1rem; }
.footer a:hover { color: var(--accent); }

/* ============================================
   ZONE D'INTERVENTION (coverage)
   ============================================ */
.coverage-header { max-width: 640px; margin: 0 auto 3rem; text-align: center; }
.coverage-grid {
  display: grid; gap: 2.5rem; align-items: center;
}
@media (min-width: 900px) { .coverage-grid { grid-template-columns: 1.1fr 1fr; gap: 3rem; } }

.coverage-map {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 0.75rem;
  overflow: hidden;
}
#coverage-leaflet-map {
  width: 100%; height: 360px;
  border-radius: calc(var(--radius) - 0.4rem);
  z-index: 0;
}
.leaflet-popup-content-wrapper, .leaflet-popup-tip { background: var(--card); color: var(--foreground); }
.leaflet-popup-content { font-family: var(--font-body, inherit); font-size: 0.875rem; margin: 0.5rem 0.75rem; }

.coverage-list h3 {
  font-family: var(--font-heading); font-size: 1.375rem; font-weight: 600;
  margin-bottom: 1.25rem;
}
.coverage-departments { list-style: none; padding: 0; margin: 0 0 1.5rem; display: flex; flex-direction: column; gap: 0.5rem; }
.coverage-departments li {
  display: flex; align-items: center; gap: 0.75rem;
  font-size: 0.9375rem; color: var(--foreground);
  cursor: pointer; padding: 0.5rem 0.75rem; border-radius: 0.5rem;
  border: 1px solid transparent; transition: background 0.15s ease, border-color 0.15s ease;
}
.coverage-departments li:hover { background: var(--card); border-color: var(--border); }
.coverage-departments li.active { background: var(--card); border-color: var(--accent); }
.coverage-dot { width: 0.625rem; height: 0.625rem; border-radius: 9999px; background: var(--accent); flex-shrink: 0; }
.coverage-dot-light { background: var(--accent); opacity: 0.4; }
.coverage-note { font-size: 0.875rem; color: var(--muted-foreground); line-height: 1.6; margin-bottom: 1.5rem; }
.coverage-stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; margin-bottom: 1.5rem; }
.coverage-stat { text-align: center; background: var(--card); border: 1px solid var(--border); border-radius: 0.75rem; padding: 1rem 0.5rem; }
.coverage-stat-value { font-family: var(--font-serif); font-size: 1.5rem; font-weight: 600; color: var(--accent); line-height: 1.2; margin-bottom: 0.25rem; }
.coverage-stat-label { font-size: 0.75rem; color: var(--muted-foreground); line-height: 1.3; }
.coverage-cta { display: inline-flex; align-items: center; gap: 0.5rem; }

/* ============================================
   ANIMATIONS / REVEAL
   ============================================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* Skip link */
.skip-link {
  position: absolute; left: -9999px; top: 0;
  background: var(--accent); color: var(--accent-foreground);
  padding: 0.5rem 1rem; border-radius: 0.5rem; font-weight: 600; z-index: 100;
}
.skip-link:focus { left: 1rem; top: 1rem; position: fixed; }

/* --- Barre de recherche de commune --- */
.commune-search-bar {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
  align-items: center;
}
.commune-search-input {
  flex: 1;
  padding: 0.55rem 0.875rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--background);
  color: var(--foreground);
  font-family: var(--font-body, inherit);
  font-size: 0.9375rem;
  outline: none;
  transition: border-color 0.2s;
}
.commune-search-input:focus {
  border-color: var(--accent, #d66296);
}
.commune-search-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.55rem 1.1rem;
  background: var(--accent, #d66296);
  color: #fff;
  border: none;
  border-radius: var(--radius);
  font-family: var(--font-body, inherit);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s;
}
.commune-search-btn:hover { background: #b22c6f; }
.commune-search-result {
  min-height: 1.5rem;
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
  padding: 0.4rem 0.75rem;
  border-radius: var(--radius);
  display: none;
  line-height: 1.5;
}
.commune-search-result:not(:empty) { display: block; }
.commune-search-result.in-zone {
  background: #d4f4dd;
  color: #166534;
  border: 1px solid #86efac;
}
.commune-search-result.out-zone {
  background: #fef3c7;
  color: #92400e;
  border: 1px solid #fcd34d;
}
.commune-search-result.not-found {
  background: #fee2e2;
  color: #991b1b;
  border: 1px solid #fca5a5;
}
.commune-search-result.loading {
  background: var(--muted, #f3f4f6);
  color: var(--muted-foreground, #6b7280);
  border: 1px solid var(--border);
}
