/* Express Débouche Paris 7 — palette gris anthracite + cuivre (premium)
   primary #1f2937 / accent #b87333 / bg #f6f5f3 / ink #111827
   Fonts : Fraunces (titres) / Hanken Grotesk (texte) */

:root {
  --primary: #1f2937;
  --primary-700: #161d27;
  --accent: #b87333;
  --accent-dark: #93561f;
  --bg: #f6f5f3;
  --surface: #ffffff;
  --surface-alt: #efece7;
  --ink: #111827;
  --muted: #4b5563;
  --line: #ddd7cd;
  --line-strong: #c9c1b3;
  --radius: 2px;
  --maxw: 1180px;
  --shadow: 0 18px 40px -24px rgba(31, 41, 55, 0.45);
  --shadow-soft: 0 10px 30px -22px rgba(31, 41, 55, 0.4);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
}

body {
  font-family: "Hanken Grotesk", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  font-family: "Fraunces", Georgia, "Times New Roman", serif;
  color: var(--primary);
  line-height: 1.12;
  font-weight: 600;
  letter-spacing: -0.01em;
}

a { color: var(--accent-dark); }

.container { max-width: var(--maxw); margin: 0 auto; padding: 0 22px; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "Hanken Grotesk", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.74rem;
  font-weight: 700;
  color: var(--accent-dark);
}
.eyebrow::before { content: ""; width: 26px; height: 2px; background: var(--accent); display: inline-block; }

/* ---------- Buttons : carré contour ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 700;
  font-size: 1rem;
  padding: 15px 26px;
  border-radius: var(--radius);
  text-decoration: none;
  border: 2px solid var(--primary);
  background: transparent;
  color: var(--primary);
  min-height: 52px;
  transition: background-color .18s ease, color .18s ease, border-color .18s ease, transform .18s ease;
  cursor: pointer;
}
.btn svg { width: 20px; height: 20px; flex: none; }
.btn:hover { background: var(--primary); color: #fff; }
.btn:focus-visible { outline: 3px solid var(--accent); outline-offset: 3px; }

.btn--accent { border-color: var(--accent); color: var(--accent-dark); }
.btn--accent:hover { background: var(--accent); border-color: var(--accent); color: #fff; }

.btn--solid { background: var(--primary); color: #fff; border-color: var(--primary); }
.btn--solid:hover { background: var(--accent); border-color: var(--accent); }

.btn--lg { font-size: 1.08rem; padding: 18px 32px; min-height: 60px; }

/* ---------- Header (nav logo centré) ---------- */
.topbar {
  background: var(--primary);
  color: #e9e6df;
  font-size: 0.86rem;
}
.topbar .container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 22px;
  padding-top: 8px;
  padding-bottom: 8px;
  flex-wrap: wrap;
}
.topbar span { display: inline-flex; align-items: center; gap: 7px; }
.topbar svg { width: 15px; height: 15px; color: var(--accent); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(246, 245, 243, 0.94);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 14px 22px;
  max-width: var(--maxw);
  margin: 0 auto;
}
.nav-links { display: flex; gap: 26px; justify-self: start; }
.nav-links a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 6px 2px;
  border-bottom: 2px solid transparent;
}
.nav-links a:hover, .nav-links a:focus-visible { border-bottom-color: var(--accent); outline: none; }

.brand {
  justify-self: center;
  text-align: center;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1;
}
.brand .brand-mark {
  font-family: "Fraunces", serif;
  font-size: 1.32rem;
  font-weight: 600;
  color: var(--primary);
  letter-spacing: -0.01em;
}
.brand .brand-mark b { color: var(--accent-dark); font-weight: 600; }
.brand .brand-sub {
  font-size: 0.62rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 4px;
}

.nav-cta { justify-self: end; display: flex; align-items: center; gap: 12px; }
.nav-phone {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  text-decoration: none;
  color: var(--primary);
  font-weight: 800;
  font-size: 1.04rem;
}
.nav-phone svg { width: 19px; height: 19px; color: var(--accent-dark); }

.burger {
  display: none;
  background: none;
  border: 2px solid var(--primary);
  border-radius: var(--radius);
  width: 46px; height: 46px;
  cursor: pointer;
  color: var(--primary);
  align-items: center;
  justify-content: center;
}
.burger svg { width: 22px; height: 22px; }

/* ---------- Hero split 50/50 (texte à gauche) ---------- */
.hero { padding: 64px 0 56px; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
}
.hero h1 {
  font-size: clamp(2.3rem, 5vw, 3.4rem);
  margin: 18px 0 18px;
}
.hero h1 .accent { color: var(--accent-dark); font-style: italic; }
.hero-lead { font-size: 1.16rem; color: var(--muted); max-width: 46ch; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 28px; }
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 30px;
  margin-top: 30px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
}
.hero-trust div { display: flex; flex-direction: column; }
.hero-trust .num { font-family: "Fraunces", serif; font-size: 1.55rem; color: var(--primary); font-weight: 600; }
.hero-trust .lbl { font-size: 0.82rem; color: var(--muted); }

.stars { color: var(--accent); display: inline-flex; gap: 2px; }
.stars svg { width: 18px; height: 18px; }

.hero-media { position: relative; }
.hero-media img {
  width: 100%;
  height: auto;
  aspect-ratio: 1316 / 720;
  object-fit: cover;
  border-radius: var(--radius);
  display: block;
  border: 1px solid var(--line-strong);
  box-shadow: var(--shadow);
}
.hero-badge {
  position: absolute;
  left: -14px;
  bottom: 22px;
  background: var(--primary);
  color: #fff;
  padding: 14px 18px;
  border-radius: var(--radius);
  border-left: 4px solid var(--accent);
  box-shadow: var(--shadow-soft);
  max-width: 230px;
}
.hero-badge strong { display: block; font-family: "Fraunces", serif; font-size: 1.1rem; }
.hero-badge span { font-size: 0.82rem; color: #d9d4ca; }

/* ---------- Generic section ---------- */
section { padding: 62px 0; }
.section-head { max-width: 60ch; margin-bottom: 38px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 { font-size: clamp(1.8rem, 3.6vw, 2.5rem); margin: 12px 0 14px; }
.section-head p { color: var(--muted); font-size: 1.05rem; }

.band { background: var(--surface-alt); }
.band-dark { background: var(--primary); color: #e9e6df; }
.band-dark h2, .band-dark h3 { color: #fff; }
.band-dark .section-head p { color: #cfcabf; }

/* ---------- Cartes alternées ---------- */
.alt-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 44px;
  align-items: center;
  margin-bottom: 26px;
}
.alt-row:last-child { margin-bottom: 0; }
.alt-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-top: 4px solid var(--accent);
  border-radius: var(--radius);
  padding: 34px 32px;
  box-shadow: var(--shadow-soft);
}
.alt-card h3 { font-size: 1.45rem; margin-bottom: 12px; }
.alt-card p { color: var(--muted); }
.alt-figure {
  background: var(--primary);
  color: #e9e6df;
  border-radius: var(--radius);
  padding: 34px 32px;
  position: relative;
  overflow: hidden;
}
.alt-figure::after {
  content: "";
  position: absolute;
  inset: auto -40px -40px auto;
  width: 180px; height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(184,115,51,.5), transparent 70%);
}
.alt-figure h3 { color: #fff; font-size: 1.35rem; margin-bottom: 14px; position: relative; }
.alt-figure ul { list-style: none; position: relative; }
.alt-figure li { display: flex; gap: 11px; padding: 7px 0; color: #d9d4ca; }
.alt-figure li svg { width: 20px; height: 20px; color: var(--accent); flex: none; margin-top: 3px; }
.alt-row.reverse .alt-figure { order: -1; }

/* ---------- Services grid ---------- */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.svc-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 26px;
  transition: transform .18s ease, box-shadow .18s ease;
}
.svc-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-soft); }
.svc-icon {
  width: 50px; height: 50px;
  border: 2px solid var(--accent);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  color: var(--accent-dark);
  margin-bottom: 16px;
}
.svc-icon svg { width: 26px; height: 26px; }
.svc-card h3 { font-size: 1.2rem; margin-bottom: 8px; }
.svc-card p { color: var(--muted); font-size: 0.97rem; }

/* ---------- Steps ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.step { position: relative; padding: 26px 22px; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); }
.step .n {
  font-family: "Fraunces", serif;
  font-size: 2rem;
  color: var(--accent);
  font-weight: 600;
  line-height: 1;
}
.step h3 { font-size: 1.1rem; margin: 10px 0 6px; }
.step p { color: var(--muted); font-size: 0.93rem; }

/* ---------- Zones ---------- */
.zones-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.zone-tag {
  background: var(--surface);
  border: 1px solid var(--line);
  border-left: 3px solid var(--accent);
  border-radius: var(--radius);
  padding: 14px 16px;
  font-weight: 600;
  color: var(--primary);
  display: flex; align-items: center; gap: 10px;
  font-size: 0.96rem;
}
.zone-tag svg { width: 18px; height: 18px; color: var(--accent-dark); flex: none; }

/* ---------- Reviews ---------- */
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.review {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 26px;
  box-shadow: var(--shadow-soft);
}
.review p { color: var(--ink); font-size: 1.02rem; margin: 12px 0 18px; }
.review .who { font-weight: 700; color: var(--primary); }
.review .where { font-size: 0.85rem; color: var(--muted); }

/* ---------- CTA band ---------- */
.cta-band { text-align: center; }
.cta-band h2 { color: #fff; font-size: clamp(1.9rem, 4vw, 2.7rem); }
.cta-band p { color: #cfcabf; max-width: 54ch; margin: 14px auto 26px; }
.cta-band .btn--solid { background: var(--accent); border-color: var(--accent); }
.cta-band .btn--solid:hover { background: #fff; color: var(--primary); border-color: #fff; }
.cta-phone-big {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: "Fraunces", serif;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  color: #fff; text-decoration: none; font-weight: 600;
  margin-top: 8px;
}
.cta-phone-big svg { width: 34px; height: 34px; color: var(--accent); }

/* ---------- FAQ ---------- */
.faq { max-width: 820px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  font-family: "Fraunces", serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--primary);
  padding: 20px 44px 20px 0;
  cursor: pointer;
  position: relative;
}
.faq-q:focus-visible { outline: 3px solid var(--accent); outline-offset: 3px; }
.faq-q .chev {
  position: absolute; right: 4px; top: 22px;
  width: 22px; height: 22px; color: var(--accent-dark);
  transition: transform .2s ease;
}
.faq-q[aria-expanded="true"] .chev { transform: rotate(180deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .25s ease; }
.faq-a p { padding: 0 0 20px; color: var(--muted); }

/* ---------- Footer ---------- */
.site-footer { background: var(--primary-700); color: #cfcabf; padding: 54px 0 90px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 36px; }
.footer-grid h4 { color: #fff; font-family: "Fraunces", serif; font-size: 1.1rem; margin-bottom: 14px; }
.footer-grid a { color: #cfcabf; text-decoration: none; display: block; padding: 4px 0; }
.footer-grid a:hover { color: var(--accent); }
.footer-grid p { font-size: 0.95rem; }
.footer-phone { color: #fff !important; font-weight: 800; font-size: 1.2rem; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.12);
  margin-top: 36px; padding-top: 22px;
  font-size: 0.83rem; color: #9b9588;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px;
}

/* ---------- Floating mobile call ---------- */
.float-call {
  display: none;
  position: fixed;
  left: 14px; right: 14px; bottom: 14px;
  z-index: 60;
  background: var(--accent);
  color: #fff;
  text-decoration: none;
  font-weight: 800;
  font-size: 1.1rem;
  padding: 16px;
  border-radius: var(--radius);
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: 0 -6px 24px -10px rgba(0,0,0,.4);
}
.float-call svg { width: 22px; height: 22px; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; gap: 32px; }
  .hero-media { order: -1; }
  .cards-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .zones-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .alt-row, .alt-row.reverse { grid-template-columns: 1fr; gap: 22px; }
  .alt-row.reverse .alt-figure { order: 0; }
}

@media (max-width: 860px) {
  body { padding-bottom: 0; }
  .nav-links { display: none; }
  .nav { grid-template-columns: auto 1fr auto; }
  .brand { justify-self: center; }
  .nav-cta .nav-phone span.hide-sm { display: none; }
  .burger { display: inline-flex; }
  .nav-links.open {
    display: flex;
    position: absolute;
    top: 100%; left: 0; right: 0;
    flex-direction: column;
    background: var(--bg);
    border-bottom: 1px solid var(--line);
    padding: 12px 22px 18px;
    gap: 4px;
  }
  .nav-links.open a { padding: 12px 0; border-bottom: 1px solid var(--line); }
  .float-call { display: flex; }
  .site-footer { padding-bottom: 96px; }
}

@media (max-width: 560px) {
  .cards-grid, .steps, .zones-grid, .footer-grid { grid-template-columns: 1fr; }
  .topbar .container { gap: 14px; }
  .hero-badge { left: 0; }
}
