/* style.css - Express Débarras - Moderne sans marron, pulse rouge */

:root {
  /* Fonds */
  --bg: #f5f3ef;
  --surface: #faf9f7;
  --surface-alt: #e8e4dc;

  /* Lignes et bordures */
  --line: #c8c4bc;

  /* Textes */
  --text: #1a1a1a;
  --muted: #5a5a5a;

  /* Accents principaux - bleu ardoise */
  --accent: #3d5a6c;
  --accent-dark: #2a3f4d;
  --accent-soft: #d4e0e8;

  /* Succès/positif */
  --success: #4a6741;

  /* CTA pulse - ROUGE */
  --cta: #c41e3a;
  --cta-hover: #9a1830;

  /* Radius et ombres */
  --radius: 18px;
  --radius-sm: 12px;
  --shadow: 0 10px 30px rgba(26, 26, 26, 0.08);

  /* Typo */
  --container: 1180px;
  --text-xs: clamp(0.7rem, 0.68rem + 0.15vw, 0.8rem);
  --text-sm: clamp(0.9rem, 0.84rem + 0.25vw, 1rem);
  --text-base: clamp(1rem, 0.96rem + 0.2vw, 1.1rem);
  --text-lg: clamp(1.15rem, 1.03rem + 0.5vw, 1.45rem);
  --text-xl: clamp(1.5rem, 1.2rem + 1vw, 2rem);
  --text-2xl: clamp(2rem, 1.35rem + 2vw, 3.2rem);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: var(--text-base);
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; }
button, input, textarea { font: inherit; }

.skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
}
.skip-link:focus {
  left: 1rem;
  top: 1rem;
  z-index: 1000;
  background: #fff;
  padding: 0.75rem 1rem;
  border-radius: 10px;
  outline: 2px solid var(--accent);
}

.container {
  width: min(100% - 2rem, var(--container));
  margin-inline: auto;
}
.section {
  padding: clamp(1.5rem, 3vw, 2.5rem) 0;
}
.section-title {
  font-size: var(--text-xl);
  line-height: 1.15;
  margin: 0 0 0.4rem;
  letter-spacing: -0.02em;
}
.section-intro {
  max-width: 68ch;
  color: var(--muted);
  margin: 0 0 0.5rem;
}
.eyebrow {
  display: inline-block;
  margin-bottom: 0.5rem;
  color: var(--accent);
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0.75rem 1.15rem;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  transition: background 180ms ease, transform 180ms ease;
}
.btn-primary:hover,
.btn-primary:focus-visible {
  background: var(--accent-dark);
  transform: translateY(-1px);
}
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0.75rem 1.15rem;
  border-radius: 999px;
  background: var(--surface);
  color: var(--accent);
  text-decoration: none;
  font-weight: 700;
  border: 2px solid var(--accent);
  transition: background 180ms ease, transform 180ms ease;
}
.btn-secondary:hover,
.btn-secondary:focus-visible {
  background: var(--accent-soft);
  transform: translateY(-1px);
}

.topbar {
  background: var(--surface);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(8px);
}
.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  min-height: 64px;
}
.brand {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.brand strong {
  font-size: 1rem;
  letter-spacing: 0.03em;
}
.brand span {
  font-size: var(--text-xs);
  color: var(--muted);
}
.topbar-contact {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--muted);
  font-size: var(--text-sm);
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.truck-icon {
  width: 32px;
  height: 32px;
  color: var(--accent);
  flex-shrink: 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 1rem;
  align-items: stretch;
}
.hero-copy,
.hero-aside {
  padding: clamp(1rem, 2vw, 1.5rem);
}
.hero-copy {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 6px);
  box-shadow: var(--shadow);
  text-align: center;
}
.hero h1 {
  margin: 0 0 0.5rem;
  font-size: var(--text-xl);
  line-height: 1.15;
  letter-spacing: -0.02em;
  text-align: center;
}
.hero h1 .line1 { display: block; }
.hero h1 .line2 {
  display: block;
  font-size: 0.85em;
  color: var(--muted);
  white-space: nowrap;
}
.hero-lead {
  max-width: 60ch;
  color: var(--muted);
  margin: 0 auto 0.5rem;
  text-align: center;
}
.hero-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.5rem;
  margin: 1rem 0 1.5rem;
  padding: 0;
  list-style: none;
}
.hero-points li,
.proofs li,
.faq-list li {
  list-style: none;
}
.hero-points li {
  padding: 0.7rem 0.8rem;
  background: var(--surface-alt);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  color: var(--text);
  font-size: var(--text-sm);
}

.hero-aside {
  display: grid;
  gap: 0.5rem;
  background: linear-gradient(180deg, #f0ede6 0%, #e8e4dc 100%);
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 6px);
}
.hero-aside img {
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 14px;
}

.aside-list {
  display: grid;
  gap: 0.5rem;
  color: var(--text);
  font-size: var(--text-sm);
}
.aside-item {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}
.aside-icon {
  width: 18px;
  height: 18px;
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 2px;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 0.75rem;
  color: var(--accent);
  font-size: var(--text-sm);
  text-decoration: none;
  font-weight: 600;
}
.back-link:hover { color: var(--accent-dark); }
.back-link svg {
  width: 16px;
  height: 16px;
}

.proofs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.5rem;
  padding: 0;
  margin: 0;
}
.proofs li {
  padding: 0.85rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
}
.proofs strong {
  display: block;
  margin-bottom: 0.25rem;
  font-size: var(--text-lg);
  color: var(--accent-dark);
}

.services-grid,
.steps-grid,
.faq-grid,
.contact-grid {
  display: grid;
  gap: 0.5rem;
}
.services-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.service-card { overflow: hidden; }
.service-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.service-card-content { padding: 0.85rem; }
.service-card h3,
.step h3,
.faq-item h3,
.testimonial h3,
.contact-card h3 {
  margin: 0 0 0.4rem;
  font-size: 1.1rem;
}
.service-card p,
.step p,
.faq-item p,
.testimonial p,
.contact-card p {
  margin: 0;
  color: var(--muted);
  font-size: var(--text-sm);
}

.steps-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.step {
  padding: 0.85rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
}
.step-number {
  display: inline-flex;
  width: 2rem;
  height: 2rem;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.6rem;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent-dark);
  font-size: var(--text-sm);
  font-weight: 700;
}

.zone-wrap {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 0.5rem;
}
.zone-card,
.faq-item,
.testimonial,
.contact-card {
  padding: 0.85rem;
}
.zones-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 0.75rem;
}
.zone-tag {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0.35rem 0.6rem;
  border-radius: 999px;
  background: var(--surface-alt);
  border: 1px solid var(--line);
  font-size: var(--text-xs);
  color: var(--text);
}

.villages-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.5rem;
  margin-top: 1rem;
}
.village-card {
  padding: 0.85rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  text-align: center;
}
.village-card strong {
  display: block;
  font-size: var(--text-sm);
  color: var(--text);
}
.village-card span {
  font-size: var(--text-xs);
  color: var(--muted);
}

.faq-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.faq-item {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
}

.contact-grid { grid-template-columns: 1.1fr 0.9fr; }
.contact-panel {
  padding: clamp(1rem, 2vw, 1.5rem);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 4px);
  box-shadow: var(--shadow);
}
.contact-list { display: grid; gap: 0.5rem; }
.contact-card {
  background: var(--surface-alt);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
}
.contact-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}
.phone-icon {
  width: 16px;
  height: 16px;
  color: var(--accent);
  flex-shrink: 0;
}

.footer {
  padding: 0.6rem 0 0.8rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: var(--text-xs);
  text-align: center;
}
.footer strong { color: var(--text); }
.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
}
.footer-line {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
}
.footer-icon {
  width: 12px;
  height: 12px;
  color: var(--accent);
  flex-shrink: 0;
}
.mini-note {
  margin-top: 0.5rem;
  font-size: var(--text-xs);
  color: var(--muted);
}

/* ============================================
   BOUTON PULSE - ACHAT ANTIQUITÉS (ROUGE)
   ============================================ */

.btn-pulse {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 48px;
  padding: 0.85rem 1.5rem;
  border-radius: 999px;
  background: var(--cta);
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  font-size: var(--text-sm);
  animation: pulse 2s ease-in-out infinite;
  box-shadow: 0 0 0 0 rgba(196, 30, 58, 0.6);
}

@keyframes pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(196, 30, 58, 0.6);
  }
  70% {
    transform: scale(1.02);
    box-shadow: 0 0 0 12px rgba(196, 30, 58, 0);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(196, 30, 58, 0);
  }
}

.btn-pulse:hover {
  background: var(--cta-hover);
}

.pulse-wrap {
  text-align: center;
  margin: 1.5rem 0;
}

@media (max-width: 1024px) {
  .hero-grid,
  .zone-wrap,
  .contact-grid { grid-template-columns: 1fr; }
  .proofs,
  .steps-grid,
  .services-grid,
  .faq-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 680px) {
  .topbar-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.75rem;
    padding: 0.75rem 0;
  }
  .brand-logo {
    flex-direction: column;
    align-items: center;
  }
  .brand { text-align: center; }
  .topbar-contact {
    width: 100%;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
  }
  .tagline { text-align: center; }
  .hero-grid {
    grid-template-columns: 1fr;
  }
  .hero-aside {
    order: -1;
  }
  .hero-copy {
    order: 1;
  }
  .hero-points,
  .proofs,
  .steps-grid,
  .services-grid,
  .faq-grid,
  .villages-grid { grid-template-columns: 1fr; }
  .hero h1 .line2 { white-space: normal; }
  .btn-primary,
  .btn-secondary { width: 100%; }
  .contact-buttons { flex-direction: column; }
  .footer-line { flex-wrap: wrap; }
  .btn-pulse {
    width: 100%;
    max-width: 320px;
  }
}