/* Paris Débouchage Pro — bleu nuit + or sobre (premium)
   Fonts: Fraunces (titres) / Mulish (texte) */

:root {
  --primary: #0a1f44;
  --primary-soft: #12305f;
  --accent: #c8a04a;
  --accent-dark: #a9842f;
  --bg: #fbfaf7;
  --surface: #ffffff;
  --surface-2: #f3f0e9;
  --ink: #0a1f44;
  --ink-soft: #44506b;
  --line: #e3ddcf;
  --line-strong: #cfc6b2;
  --white: #ffffff;
  --radius: 2px;
  --maxw: 1180px;
  --shadow: 0 14px 40px rgba(10, 31, 68, 0.10);
  --shadow-sm: 0 4px 16px rgba(10, 31, 68, 0.07);
}

*, *::before, *::after { box-sizing: border-box; }

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 {
  margin: 0;
  font-family: "Mulish", 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, h4 {
  font-family: "Fraunces", Georgia, "Times New Roman", serif;
  font-weight: 600;
  line-height: 1.15;
  color: var(--primary);
  letter-spacing: -0.01em;
  margin: 0 0 0.5em;
}
h1 { font-size: clamp(2rem, 5vw, 3.1rem); }
h2 { font-size: clamp(1.6rem, 3.6vw, 2.4rem); }
h3 { font-size: 1.28rem; }
p { margin: 0 0 1rem; }
a { color: var(--primary-soft); }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: "Mulish", sans-serif; font-weight: 800;
  text-transform: uppercase; letter-spacing: 0.18em; font-size: 0.72rem;
  color: var(--accent-dark);
}
.eyebrow::before { content: ""; width: 26px; height: 1px; background: var(--accent); }
.section { padding: 76px 0; }
.section--alt { background: var(--surface-2); }
.section--ink { background: var(--primary); }
.section--ink h2, .section--ink h3, .section--ink p { color: #f4f1ea; }
.lead { font-size: 1.12rem; color: var(--ink-soft); max-width: 62ch; }
.center { text-align: center; }
.center .lead { margin-left: auto; margin-right: auto; }
.muted { color: var(--ink-soft); }

/* ---------- Buttons : carré contour fin ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: "Mulish", sans-serif; font-weight: 800; font-size: 1rem;
  padding: 15px 26px; min-height: 52px;
  border-radius: var(--radius);
  border: 1.5px solid var(--primary);
  text-decoration: none; cursor: pointer;
  transition: background .18s ease, color .18s ease, border-color .18s ease, transform .12s ease;
}
.btn svg { width: 19px; height: 19px; flex: none; }
.btn--primary { background: var(--primary); color: #fff; border-color: var(--primary); }
.btn--primary:hover { background: var(--primary-soft); transform: translateY(-1px); }
.btn--gold { background: transparent; color: var(--primary); border-color: var(--accent); }
.btn--gold:hover { background: var(--accent); color: var(--primary); }
.btn--ghost { background: transparent; color: var(--primary); border-color: var(--line-strong); }
.btn--ghost:hover { border-color: var(--primary); }
.btn--light { background: var(--accent); color: var(--primary); border-color: var(--accent); }
.btn--light:hover { background: #d8b562; }
.btn--block { width: 100%; }

a:focus-visible, button:focus-visible, .btn:focus-visible {
  outline: 3px solid var(--accent); outline-offset: 3px;
}

/* ---------- Top bar ---------- */
.topbar { background: var(--primary); color: #e9e3d4; font-size: 0.84rem; }
.topbar .container { display: flex; justify-content: space-between; align-items: center; gap: 12px; padding-top: 8px; padding-bottom: 8px; }
.topbar a { color: #f3eddd; text-decoration: none; font-weight: 700; }
.topbar .topbar__items { display: flex; gap: 22px; }
.topbar .topbar__items span { display: inline-flex; align-items: center; gap: 7px; }
.topbar svg { width: 15px; height: 15px; stroke: var(--accent); }
@media (max-width: 760px){ .topbar .topbar__items span:not(.always){ display:none; } }

/* ---------- Header / nav (mega-menu) ---------- */
.header { position: sticky; top: 0; z-index: 50; background: rgba(251,250,247,.94); backdrop-filter: blur(8px); border-bottom: 1px solid var(--line); }
.header .container { display: flex; align-items: center; justify-content: space-between; gap: 18px; height: 76px; }
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.brand__mark { width: 42px; height: 42px; flex: none; }
.brand__name { font-family: "Fraunces", serif; font-weight: 600; color: var(--primary); font-size: 1.18rem; line-height: 1.05; }
.brand__name small { display: block; font-family: "Mulish", sans-serif; font-weight: 800; font-size: 0.6rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--accent-dark); }

.nav { display: flex; align-items: center; gap: 4px; }
.nav > ul { list-style: none; display: flex; gap: 2px; margin: 0; padding: 0; }
.nav a.navlink { display: inline-flex; align-items: center; gap: 6px; text-decoration: none; color: var(--ink); font-weight: 700; font-size: 0.96rem; padding: 10px 14px; border-radius: var(--radius); }
.nav a.navlink:hover, .nav a.navlink[aria-current="page"] { color: var(--primary); background: var(--surface-2); }
.nav .has-mega { position: relative; }
.nav .has-mega > button.navlink { background: none; border: none; font: inherit; font-weight: 700; cursor: pointer; color: var(--ink); }
.nav .mega {
  position: absolute; top: calc(100% + 8px); left: 0;
  width: 560px; background: var(--surface); border: 1px solid var(--line);
  box-shadow: var(--shadow); border-radius: 4px; padding: 18px;
  display: none; grid-template-columns: 1fr 1fr; gap: 6px 22px;
}
.nav .has-mega:hover .mega, .nav .has-mega:focus-within .mega { display: grid; }
.mega a { display: flex; gap: 12px; padding: 11px; border-radius: 4px; text-decoration: none; color: var(--ink); align-items: flex-start; }
.mega a:hover { background: var(--surface-2); }
.mega svg { width: 22px; height: 22px; flex: none; stroke: var(--accent-dark); margin-top: 2px; }
.mega strong { display: block; color: var(--primary); font-size: 0.97rem; }
.mega span { font-size: 0.82rem; color: var(--ink-soft); }
.header__cta { display: flex; align-items: center; gap: 12px; }
.header__tel { display: inline-flex; align-items: center; gap: 9px; text-decoration: none; color: var(--primary); font-weight: 900; font-size: 1.05rem; }
.header__tel svg { width: 20px; height: 20px; stroke: var(--accent-dark); }

.burger { display: none; background: none; border: 1.5px solid var(--line-strong); border-radius: var(--radius); width: 48px; height: 48px; cursor: pointer; align-items: center; justify-content: center; }
.burger svg { width: 24px; height: 24px; stroke: var(--primary); }

@media (max-width: 980px) {
  .nav { display: none; }
  .header__tel span { display: none; }
  .burger { display: inline-flex; }
}

/* Mobile drawer */
.mobile-nav { display: none; border-top: 1px solid var(--line); background: var(--surface); }
.mobile-nav.open { display: block; }
.mobile-nav ul { list-style: none; margin: 0; padding: 8px 0; }
.mobile-nav a { display: block; padding: 13px 24px; text-decoration: none; color: var(--ink); font-weight: 700; border-bottom: 1px solid var(--line); }
.mobile-nav a:hover { background: var(--surface-2); }

/* ---------- Hero : split 50/50, texte à gauche ---------- */
.hero { background: linear-gradient(180deg, #fbfaf7 0%, #f3f0e9 100%); border-bottom: 1px solid var(--line); }
.hero__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 54px; align-items: center; padding: 72px 0; }
.hero h1 { margin-bottom: 18px; }
.hero h1 .gold { color: var(--accent-dark); font-style: italic; }
.hero__lead { font-size: 1.18rem; color: var(--ink-soft); margin-bottom: 26px; max-width: 52ch; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 26px; }
.hero__trust { display: flex; flex-wrap: wrap; gap: 22px; align-items: center; }
.hero__trust .item { display: inline-flex; align-items: center; gap: 9px; font-weight: 700; font-size: 0.92rem; color: var(--primary); }
.hero__trust svg { width: 20px; height: 20px; stroke: var(--accent-dark); flex: none; }
.hero__media { position: relative; }
.hero__media img { width: 100%; height: auto; aspect-ratio: 597/333; object-fit: cover; border-radius: 4px; box-shadow: var(--shadow); border: 1px solid var(--line); }
.hero__badge {
  position: absolute; left: -16px; bottom: -16px; background: var(--primary); color: #fff;
  padding: 14px 18px; border-radius: 4px; box-shadow: var(--shadow); border-left: 3px solid var(--accent);
}
.hero__badge strong { font-family: "Fraunces", serif; font-size: 1.5rem; display: block; color: #fff; }
.hero__badge span { font-size: 0.78rem; color: #d9d1bd; letter-spacing: .04em; }

.stars { color: var(--accent); letter-spacing: 2px; }

@media (max-width: 900px) {
  .hero__grid { grid-template-columns: 1fr; gap: 36px; padding: 48px 0; }
  .hero__media { order: -1; }
  .hero__badge { left: 8px; }
}

/* ---------- Columns / grids ---------- */
.cols { display: grid; gap: 26px; }
.cols-2 { grid-template-columns: repeat(2, 1fr); }
.cols-3 { grid-template-columns: repeat(3, 1fr); }
.cols-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 900px) { .cols-3, .cols-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .cols-2, .cols-3, .cols-4 { grid-template-columns: 1fr; } }

.split { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
@media (max-width: 860px) { .split { grid-template-columns: 1fr; gap: 30px; } }
.split img { width: 100%; height: auto; border-radius: 4px; box-shadow: var(--shadow-sm); border: 1px solid var(--line); }

.card {
  background: var(--surface); border: 1px solid var(--line); border-radius: 4px;
  padding: 26px; box-shadow: var(--shadow-sm);
}
.card .ico { width: 46px; height: 46px; border: 1.5px solid var(--accent); border-radius: 4px; display: grid; place-items: center; margin-bottom: 16px; }
.card .ico svg { width: 24px; height: 24px; stroke: var(--accent-dark); }
.card h3 { margin-bottom: 8px; }
.card p { margin: 0; color: var(--ink-soft); font-size: 0.96rem; }
.card--ink { background: var(--primary-soft); border-color: var(--primary-soft); }
.card--ink h3, .card--ink p { color: #f1ede2; }

/* numbered steps */
.steps { counter-reset: step; display: grid; gap: 20px; }
.step { display: grid; grid-template-columns: 56px 1fr; gap: 18px; align-items: start; background: var(--surface); border: 1px solid var(--line); border-radius: 4px; padding: 22px; }
.step__num { counter-increment: step; width: 56px; height: 56px; border-radius: 4px; background: var(--primary); color: var(--accent); font-family: "Fraunces", serif; font-size: 1.5rem; display: grid; place-items: center; }
.step__num::before { content: counter(step, decimal-leading-zero); }
.step h3 { margin-bottom: 4px; }
.step p { margin: 0; color: var(--ink-soft); font-size: 0.95rem; }

/* list with check */
.checklist { list-style: none; padding: 0; margin: 0; display: grid; gap: 13px; }
.checklist li { display: grid; grid-template-columns: 24px 1fr; gap: 12px; align-items: start; }
.checklist svg { width: 22px; height: 22px; stroke: var(--accent-dark); margin-top: 2px; }

/* CTA band */
.cta-band { background: var(--primary); color: #fff; border-top: 3px solid var(--accent); }
.cta-band .container { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 22px; padding: 44px 24px; }
.cta-band h2 { color: #fff; margin: 0 0 6px; }
.cta-band p { color: #d8d1c0; margin: 0; }
.cta-band .actions { display: flex; flex-wrap: wrap; gap: 12px; }

/* reviews */
.review { background: var(--surface); border: 1px solid var(--line); border-radius: 4px; padding: 24px; box-shadow: var(--shadow-sm); }
.review p { font-style: italic; color: var(--ink); }
.review .who { display: flex; align-items: center; gap: 12px; margin-top: 14px; }
.review .avatar { width: 40px; height: 40px; border-radius: 50%; background: var(--primary); color: var(--accent); display: grid; place-items: center; font-weight: 900; font-family: "Fraunces", serif; }
.review .who b { color: var(--primary); display: block; font-size: 0.95rem; }
.review .who small { color: var(--ink-soft); }

/* stats */
.stats { display: grid; grid-template-columns: repeat(4,1fr); gap: 22px; text-align: center; }
.stat strong { display: block; font-family: "Fraunces", serif; font-size: 2.2rem; color: var(--accent); }
.stat span { color: #d9d1bd; font-size: 0.92rem; }
@media (max-width: 700px){ .stats { grid-template-columns: repeat(2,1fr); } }

/* FAQ accordion */
.faq { display: grid; gap: 12px; max-width: 860px; margin: 0 auto; }
.faq details { background: var(--surface); border: 1px solid var(--line); border-radius: 4px; padding: 4px 20px; }
.faq summary { cursor: pointer; font-weight: 800; color: var(--primary); padding: 16px 0; list-style: none; display: flex; justify-content: space-between; gap: 14px; align-items: center; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-family: "Fraunces", serif; font-size: 1.5rem; color: var(--accent-dark); }
.faq details[open] summary::after { content: "–"; }
.faq details p { color: var(--ink-soft); padding-bottom: 16px; margin: 0; }

/* zones tags */
.tags { display: flex; flex-wrap: wrap; gap: 10px; }
.tag { display: inline-flex; align-items: center; gap: 7px; background: var(--surface); border: 1px solid var(--line); border-radius: 4px; padding: 9px 14px; font-weight: 700; font-size: 0.9rem; color: var(--primary); }
.tag svg { width: 15px; height: 15px; stroke: var(--accent-dark); }

/* contact */
.contact-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 40px; }
@media (max-width: 860px){ .contact-grid { grid-template-columns: 1fr; } }
.field { margin-bottom: 16px; }
.field label { display: block; font-weight: 700; font-size: 0.9rem; margin-bottom: 6px; color: var(--primary); }
.field input, .field textarea, .field select {
  width: 100%; padding: 13px 14px; border: 1.5px solid var(--line-strong); border-radius: var(--radius);
  font: inherit; background: var(--surface); color: var(--ink);
}
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--accent); }
.contact-card { background: var(--primary); color: #fff; border-radius: 4px; padding: 30px; border-left: 3px solid var(--accent); }
.contact-card h3 { color: #fff; }
.contact-card a { color: var(--accent); font-weight: 800; }
.contact-card .row { display: flex; gap: 12px; align-items: flex-start; margin-bottom: 16px; }
.contact-card .row svg { width: 22px; height: 22px; stroke: var(--accent); flex: none; margin-top: 2px; }
.contact-card .row span { color: #dcd5c4; font-size: 0.95rem; }

/* breadcrumb */
.crumbs { font-size: 0.85rem; color: var(--ink-soft); padding: 14px 0 0; }
.crumbs a { color: var(--ink-soft); text-decoration: none; }
.crumbs a:hover { color: var(--primary); }

/* page header */
.pagehead { background: var(--primary); color: #fff; padding: 54px 0; border-bottom: 3px solid var(--accent); }
.pagehead h1 { color: #fff; margin-bottom: 12px; }
.pagehead p { color: #d8d1c0; max-width: 60ch; margin: 0; }
.pagehead .crumbs { color: #b9b09a; }
.pagehead .crumbs a { color: #b9b09a; }

/* ---------- Footer ---------- */
.footer { background: #08193a; color: #c9c2b1; padding: 56px 0 22px; }
.footer h4 { color: #fff; font-family: "Mulish", sans-serif; font-weight: 800; font-size: 0.82rem; letter-spacing: 0.16em; text-transform: uppercase; margin-bottom: 16px; }
.footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 36px; }
.footer a { color: #c9c2b1; text-decoration: none; }
.footer a:hover { color: var(--accent); }
.footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 9px; font-size: 0.93rem; }
.footer .footer__tel { color: var(--accent); font-weight: 900; font-size: 1.3rem; font-family: "Fraunces", serif; }
.footer__brand p { font-size: 0.9rem; color: #a89f8c; }
.footer__bottom { border-top: 1px solid #1c2f55; margin-top: 36px; padding-top: 18px; font-size: 0.82rem; color: #8a8270; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; }
@media (max-width: 860px){ .footer__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px){ .footer__grid { grid-template-columns: 1fr; } }

/* ---------- Floating mobile call button ---------- */
.fab {
  display: none; position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 60;
  background: var(--primary); color: #fff; border: 1.5px solid var(--accent);
  border-radius: 4px; padding: 15px; text-align: center; text-decoration: none;
  font-weight: 900; font-size: 1.08rem; box-shadow: 0 10px 30px rgba(10,31,68,.35);
  align-items: center; justify-content: center; gap: 10px;
}
.fab svg { width: 20px; height: 20px; stroke: var(--accent); }
@media (max-width: 860px){ .fab { display: flex; } body { padding-bottom: 78px; } }

/* helpers */
.mb-0 { margin-bottom: 0; }
.mt-2 { margin-top: 26px; }
.intro-prose p { max-width: 70ch; }
.tableprices { width: 100%; border-collapse: collapse; background: var(--surface); border: 1px solid var(--line); border-radius: 4px; overflow: hidden; }
.tableprices th, .tableprices td { text-align: left; padding: 14px 18px; border-bottom: 1px solid var(--line); }
.tableprices th { background: var(--surface-2); font-family: "Mulish", sans-serif; color: var(--primary); }
.tableprices tr:last-child td { border-bottom: none; }
