/* ============================================================
   Le Dessoucheur — production styles
   Dark / red / orange · Bebas Neue + Karla
   ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Karla:wght@400;500;600;700&display=swap');

:root {
  --bg:        #000000;
  --surface:   #101010;
  --surface-2: #161616;
  --line:      #272727;
  --cream:     #FFFFFF;
  --muted:     rgba(255,255,255,0.68);
  --muted-2:   rgba(255,255,255,0.44);
  --orange:    #FFE936;
  --orange-d:  #e6d016;
  --yellow:    #FFE936;
  --red:       #FF0F21;
  --red-d:     #d10c1b;
  --maroon:    #B00A16;
  --green:     #6FBF73;
  --grad:      linear-gradient(135deg, #FF0F21 0%, #FFE936 100%);
  --grad-soft: linear-gradient(135deg, #B00A16 0%, #FF0F21 60%, #FFE936 100%);
  --maxw:      1200px;
  --radius:    6px;
  --shadow:    0 20px 50px rgba(0,0,0,0.55);
  --font-disp: 'Bebas Neue', Impact, sans-serif;
  --font-body: 'Karla', system-ui, -apple-system, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 96px; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  overflow-x: hidden;
}
img, video { max-width: 100%; display: block; }
a { color: var(--orange); text-decoration: none; transition: color .15s; }
a:hover { color: var(--red); }
h1, h2, h3 { margin: 0; font-weight: 700; line-height: 1.04; }
p { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }
:focus-visible { outline: 3px solid var(--orange); outline-offset: 2px; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.disp { font-family: var(--font-disp); letter-spacing: 1px; font-weight: 400; }
.orange { color: var(--orange); }
.red { color: var(--red); }
.grad-text {
  background: var(--grad); -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }
.nowrap { white-space: nowrap; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-body); font-weight: 700; font-size: 16px;
  padding: 15px 28px; border-radius: var(--radius);
  border: 2px solid transparent; cursor: pointer; white-space: nowrap;
  transition: transform .12s, background .15s, border-color .15s, color .15s;
  text-align: center;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--red); color: #fff; }
.btn-primary:hover { background: var(--red-d); color: #fff; box-shadow: 0 10px 26px rgba(255,15,33,0.4); }
.btn-accent { background: var(--yellow); color: #000; }
.btn-accent:hover { background: var(--orange-d); color: #000; box-shadow: 0 10px 26px rgba(255,233,54,0.35); }
.btn-ghost { background: transparent; color: var(--cream); border-color: rgba(242,239,233,0.4); }
.btn-ghost:hover { border-color: var(--cream); color: var(--cream); }
.btn-lg { padding: 18px 34px; font-size: 17px; }
.btn svg { width: 20px; height: 20px; flex: none; }

/* ---------- section scaffolding ---------- */
section { position: relative; }
.pad { padding: 84px 0; }
.pad-sm { padding: 56px 0; }
.eyebrow { font-weight: 700; font-size: 13px; letter-spacing: 3px; text-transform: uppercase; color: var(--orange); margin: 0 0 14px; }
.h2 { font-family: var(--font-disp); font-size: clamp(38px, 6vw, 64px); letter-spacing: 1px; }
.lead { font-size: 19px; color: var(--muted); max-width: 620px; }
.section-head { margin-bottom: 46px; }

/* ---------- top bar ---------- */
.topbar {
  background: #000; color: var(--muted); font-size: 13.5px;
  border-bottom: 1px solid var(--line);
}
.topbar .container { display: flex; align-items: center; justify-content: space-between; gap: 16px; min-height: 40px; padding-top: 6px; padding-bottom: 6px; }
.topbar .status { display: inline-flex; align-items: center; gap: 8px; white-space: nowrap; min-width: 0; }
.dot { width: 8px; height: 8px; border-radius: 50%; background: var(--muted-2); flex: none; }
.dot.open { background: var(--green); box-shadow: 0 0 0 3px rgba(111,191,115,0.2); }
.dot.closed { background: var(--red); }
.topbar-right { display: inline-flex; align-items: center; gap: 18px; }
.topbar a { color: var(--cream); font-weight: 600; }

/* language switcher */
.lang { display: inline-flex; gap: 2px; border: 1px solid var(--line); border-radius: 4px; overflow: hidden; }
.lang button {
  background: transparent; color: var(--muted); border: 0; cursor: pointer;
  font: 700 12px/1 var(--font-body); letter-spacing: 1px; padding: 6px 9px; text-transform: uppercase;
}
.lang button[aria-pressed="true"] { background: var(--orange); color: #141414; }

/* ---------- header ---------- */
.header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(12,12,12,0.86); backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
  transition: background .2s;
}
.header .container { display: flex; align-items: center; justify-content: space-between; min-height: 84px; gap: 20px; padding-top: 10px; padding-bottom: 10px; }
.brand { display: inline-flex; align-items: center; gap: 16px; }
.brand .mark {
  font-family: var(--font-disp); font-size: 32px; letter-spacing: 2.5px; color: var(--cream); line-height: 0.98; white-space: nowrap;
}
.brand .sub { font-size: 10.5px; letter-spacing: 3.5px; color: var(--orange); text-transform: uppercase; font-weight: 700; margin-top: 3px; }
.brand .grinder { width: 64px; height: 64px; flex: none; object-fit: contain; filter: drop-shadow(0 3px 10px rgba(0,0,0,0.5)); }
.nav { display: flex; align-items: center; gap: 26px; }
.nav a.link { color: var(--cream); font-weight: 600; font-size: 15px; white-space: nowrap; }
.nav a.link:hover { color: var(--orange); }
.header-cta { display: inline-flex; align-items: center; gap: 12px; }
.header-phone { font-family: var(--font-disp); font-size: 24px; color: var(--cream); letter-spacing: 1px; white-space: nowrap; }
.header-phone:hover { color: var(--orange); }
[data-phone-display] { white-space: nowrap; }
.burger { display: none; background: transparent; border: 0; cursor: pointer; padding: 8px; }
.burger span { display: block; width: 26px; height: 2px; background: var(--cream); margin: 5px 0; transition: .2s; }

/* ---------- hero ---------- */
.hero { position: relative; min-height: 92vh; display: flex; align-items: center; overflow: hidden; }
.hero-media { position: absolute; inset: 0; z-index: 0; }
.hero-media img, .hero-media video { width: 100%; height: 100%; object-fit: cover; }
.hero-scrim { position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(90deg, rgba(8,8,8,0.95) 0%, rgba(8,8,8,0.78) 42%, rgba(8,8,8,0.25) 100%); }
.hero-scrim::after { content:""; position:absolute; inset:0; background: linear-gradient(0deg, rgba(8,8,8,0.9) 0%, transparent 40%); }
.hero .container { position: relative; z-index: 2; padding-top: 60px; padding-bottom: 60px; }
.hero-inner { max-width: 720px; }
.badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,233,54,0.12); border: 1px solid var(--yellow); color: var(--yellow);
  font-weight: 700; font-size: 12.5px; letter-spacing: 1.5px; text-transform: uppercase;
  padding: 7px 14px; border-radius: 4px; margin-bottom: 22px;
}
.hero h1 .orange {
  background: var(--grad); -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}
.hero h1 { font-family: var(--font-disp); font-size: clamp(52px, 9vw, 108px); letter-spacing: 1px; margin-bottom: 18px; }
.hero .lead { font-size: 20px; color: rgba(242,239,233,0.88); margin-bottom: 28px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 30px; }
.hero-chips { display: flex; flex-wrap: wrap; gap: 10px 22px; }
.hero-chips span { display: inline-flex; align-items: center; gap: 8px; font-weight: 600; font-size: 14.5px; color: rgba(242,239,233,0.9); }
.hero-chips .tick { color: var(--orange); font-weight: 700; }

/* ---------- trust bar ---------- */
.trust { background: linear-gradient(135deg, #B00A16 0%, #FF0F21 100%); border-top: 1px solid rgba(255,255,255,0.14); border-bottom: 1px solid rgba(255,255,255,0.14); }
.trust .grid { display: grid; grid-template-columns: repeat(4,1fr); }
.trust .item { padding: 30px 24px; border-right: 1px solid rgba(255,255,255,0.18); }
.trust .item:last-child { border-right: 0; }
.trust .k { font-family: var(--font-disp); font-size: 36px; letter-spacing: 1px; line-height: 1; color: #FFE936; -webkit-text-fill-color: #FFE936; }
.trust .v { font-size: 14.5px; color: rgba(255,255,255,0.92); margin-top: 6px; }

/* ---------- services ---------- */
.cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.card { background: var(--surface); border: 1px solid var(--line); border-radius: 10px; overflow: hidden; display: flex; flex-direction: column; transition: transform .18s, border-color .18s; }
.card:hover { transform: translateY(-4px); border-color: rgba(255,233,54,0.55); }
.card .thumb { aspect-ratio: 16/11; overflow: hidden; }
.card .thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.card:hover .thumb img { transform: scale(1.05); }
.card .body { padding: 26px; flex: 1; display: flex; flex-direction: column; }
.card h3 { font-family: var(--font-disp); font-size: 30px; letter-spacing: 1px; margin-bottom: 10px; background: var(--grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; color: transparent; }
.card p { color: var(--muted); font-size: 15.5px; }
.card .more { margin-top: 16px; font-weight: 700; font-size: 14px; color: var(--cream); display: inline-flex; gap: 6px; }

/* ---------- action / why split ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 0; align-items: stretch; }
.split .media { min-height: 460px; position: relative; }
.split .media video, .split .media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.split .text { padding: 72px 6vw 72px 56px; display: flex; flex-direction: column; justify-content: center; }
.why-list { list-style: none; margin: 22px 0 0; padding: 0; display: grid; gap: 16px; }
.why-list li { display: grid; grid-template-columns: 30px 1fr; gap: 12px; align-items: start; }
.why-list .ic { color: var(--red); font-size: 22px; line-height: 1; font-weight: 700; }
.why-list strong { display: block; font-size: 16.5px; }
.why-list span { color: var(--muted); font-size: 15px; }

/* ---------- before / after ---------- */
.ba { display: grid; grid-template-columns: 1fr 1fr; gap: 6px; border-radius: 10px; overflow: hidden; }
.ba figure { position: relative; margin: 0; aspect-ratio: 4/3; }
.ba figure img { width: 100%; height: 100%; object-fit: cover; }
.ba .tag { position: absolute; bottom: 0; left: 0; font-family: var(--font-disp); font-size: 24px; letter-spacing: 3px; padding: 10px 22px; }
.ba .tag.before { background: #0C0C0C; color: var(--cream); }
.ba .tag.after { background: var(--red); color: #fff; }

/* ---------- process ---------- */
.steps { display: grid; grid-template-columns: repeat(4,1fr); gap: 22px; }
.step { background: var(--surface); border: 1px solid var(--line); border-radius: 10px; padding: 28px; position: relative; }
.step .n { font-family: var(--font-disp); font-size: 52px; line-height: 1; background: var(--grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; color: transparent; }
.step h3 { font-size: 19px; margin: 8px 0 8px; }
.step p { color: var(--muted); font-size: 14.5px; }

/* ---------- zones ---------- */
.zones-wrap { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 40px; align-items: center; }
.zone-tags { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px; }
.zone-tags span { border: 1px solid var(--line); background: var(--surface); border-radius: 999px; padding: 9px 16px; font-weight: 600; font-size: 14.5px; }
.zone-tags span.core { border-color: var(--orange); color: var(--orange); }
.map-card { background: var(--surface); border: 1px solid var(--line); border-radius: 12px; padding: 26px; }
.map-card svg { width: 100%; height: auto; display: block; }

/* ---------- reviews / avis ---------- */
.avis-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.avis { background: var(--surface); border: 1px solid var(--line); border-radius: 10px; padding: 26px; }
.avis .stars { color: var(--orange); letter-spacing: 2px; font-size: 18px; margin-bottom: 10px; }
.avis p { font-size: 15.5px; }
.avis .who { margin-top: 14px; font-size: 13.5px; color: var(--muted-2); }
.avis-note { margin-top: 26px; font-size: 14px; color: var(--muted-2); }

/* ---------- faq ---------- */
.faq { max-width: 860px; margin: 0 auto; }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary {
  list-style: none; cursor: pointer; padding: 22px 44px 22px 0; position: relative;
  font-weight: 700; font-size: 18px; color: var(--cream);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; position: absolute; right: 6px; top: 18px; font-family: var(--font-disp); font-size: 30px; color: var(--orange); transition: transform .2s; }
.faq details[open] summary::after { content: "–"; }
.faq .a { padding: 0 44px 22px 0; color: var(--muted); font-size: 15.5px; }

/* ---------- devis / form ---------- */
.devis { background: linear-gradient(180deg, var(--surface) 0%, var(--bg) 100%); border-top: 1px solid var(--line); }
.devis-wrap { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 48px; align-items: start; }
.devis-info .contact-line { display: flex; align-items: center; gap: 12px; margin: 14px 0; font-size: 16px; }
.devis-info .contact-line svg { width: 22px; height: 22px; flex: none; color: var(--orange); }
.devis-info .contact-line a { color: var(--cream); font-weight: 600; }
.form-card { background: var(--surface); border: 1px solid var(--line); border-radius: 12px; padding: 30px; }
.field { margin-bottom: 16px; }
.field label { display: block; font-weight: 600; font-size: 14px; margin-bottom: 6px; }
.field .req { color: var(--red); }
.field input, .field textarea, .field select {
  width: 100%; background: var(--bg); border: 1px solid var(--line); border-radius: 6px;
  color: var(--cream); font: 400 16px var(--font-body); padding: 13px 14px;
}
.field input:focus, .field textarea:focus, .field select:focus { border-color: var(--orange); outline: none; }
.field textarea { min-height: 110px; resize: vertical; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.consent { display: flex; gap: 10px; align-items: flex-start; font-size: 13px; color: var(--muted); margin: 4px 0 18px; }
.consent input { width: 18px; height: 18px; margin-top: 2px; flex: none; accent-color: var(--orange); }
.form-note { font-size: 12.5px; color: var(--muted-2); margin-top: 14px; }

/* ---------- footer ---------- */
.footer { background: #000; border-top: 1px solid var(--line); padding: 60px 0 30px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 36px; }
.footer h4 { font-family: var(--font-disp); font-size: 20px; letter-spacing: 1px; color: var(--cream); margin-bottom: 16px; }
.footer p, .footer li, .footer a.f { color: var(--muted); font-size: 14.5px; }
.footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 9px; }
.footer a.f:hover { color: var(--orange); }
.socials { display: flex; gap: 12px; margin-top: 14px; }
.socials a { width: 40px; height: 40px; border: 1px solid var(--line); border-radius: 8px; display: grid; place-items: center; color: var(--cream); }
.socials a:hover { border-color: var(--orange); color: var(--orange); }
.socials svg { width: 20px; height: 20px; }
.legal-strip { border-top: 1px solid var(--line); margin-top: 44px; padding-top: 22px; display: flex; flex-wrap: wrap; gap: 8px 22px; justify-content: space-between; font-size: 13px; color: var(--muted-2); }
.legal-strip nav { display: flex; flex-wrap: wrap; gap: 8px 18px; }
.legal-strip a { color: var(--muted); }

/* ---------- sticky mobile action bar ---------- */
.mobile-bar { position: fixed; left: 0; right: 0; bottom: 0; z-index: 70; display: none;
  grid-template-columns: 1fr 1fr 1fr; background: #000; border-top: 1px solid var(--line); }
.mobile-bar a { display: flex; flex-direction: column; align-items: center; gap: 3px; padding: 10px 4px; font-size: 11.5px; font-weight: 700; color: var(--cream); border-right: 1px solid var(--line); }
.mobile-bar a:last-child { border-right: 0; }
.mobile-bar a.call { color: var(--cream); }
.mobile-bar a.wa { color: var(--green); }
.mobile-bar a.quote { background: var(--red); color: #fff; }
.mobile-bar svg { width: 22px; height: 22px; }

/* ---------- cookie notice ---------- */
.cookie {
  position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 80; max-width: 520px;
  background: var(--surface-2); border: 1px solid var(--line); border-radius: 12px; padding: 18px 20px;
  box-shadow: var(--shadow); font-size: 13.5px; color: var(--muted);
  display: none;
}
.cookie.show { display: block; }
.cookie strong { color: var(--cream); }
.cookie .row { display: flex; gap: 10px; margin-top: 12px; }
.cookie .btn { padding: 9px 18px; font-size: 14px; }

/* ---------- legal pages ---------- */
.legal-page { max-width: 860px; margin: 0 auto; padding: 60px 0 80px; }
.legal-page h1 { font-family: var(--font-disp); font-size: clamp(40px,7vw,72px); letter-spacing: 1px; margin-bottom: 8px; }
.legal-page h2 { font-family: var(--font-disp); font-size: 30px; letter-spacing: 1px; color: var(--orange); margin: 40px 0 12px; }
.legal-page h3 { font-size: 19px; margin: 26px 0 8px; }
.legal-page p, .legal-page li { color: var(--muted); font-size: 16px; }
.legal-page ul { padding-left: 22px; }
.legal-page a { text-decoration: underline; }
.legal-meta { color: var(--muted-2); font-size: 14px; margin-bottom: 30px; }
.legal-box { background: var(--surface); border: 1px solid var(--line); border-left: 3px solid var(--orange); border-radius: 8px; padding: 18px 22px; margin: 22px 0; }
.legal-box p { color: var(--cream); }
.back-home { display: inline-flex; align-items: center; gap: 8px; font-weight: 700; margin-bottom: 30px; }

/* ---------- reveal ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ---------- language visibility ---------- */
[data-lang-only] { display: none; }

/* ============================================================
   Before / After — paired rows
   ============================================================ */
.ba-list { display: flex; flex-direction: column; gap: 22px; }
.ba-pair {
  display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 0;
  background: var(--surface); border: 1px solid var(--line); border-radius: 16px;
  overflow: hidden; padding: 14px;
}
.ba-pair figure { margin: 0; position: relative; border-radius: 12px; overflow: hidden; aspect-ratio: 4 / 3; }
.ba-pair img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .5s ease; }
.ba-pair figure:hover img { transform: scale(1.05); }
.ba-pair .tag {
  position: absolute; top: 12px; left: 12px; margin: 0; padding: 6px 14px; border-radius: 999px;
  font: 700 13px var(--font-body); letter-spacing: .5px; text-transform: uppercase; color: #fff;
}
.ba-pair .tag.before { background: rgba(20,20,20,.82); border: 1px solid rgba(255,255,255,.25); }
.ba-pair .tag.after { background: var(--red); }
.ba-arrow {
  display: flex; align-items: center; justify-content: center; width: 52px; height: 52px; margin: 0 14px; flex: none;
  border-radius: 50%; background: var(--yellow); color: #000; font-size: 0;
  box-shadow: 0 6px 18px rgba(0,0,0,.35); z-index: 2; transform: rotate(-90deg);
}
.ba-arrow::before {
  content: ""; width: 24px; height: 24px; background: #000;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M11 4h2v12.17l4.59-4.58L19 13l-7 7-7-7 1.41-1.41L11 16.17z'/%3E%3C/svg%3E") center/contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M11 4h2v12.17l4.59-4.58L19 13l-7 7-7-7 1.41-1.41L11 16.17z'/%3E%3C/svg%3E") center/contain no-repeat;
}
@media (max-width: 700px) {
  .ba-pair { grid-template-columns: 1fr; gap: 12px; }
  .ba-arrow { transform: rotate(0deg); margin: -6px auto; width: 46px; height: 46px; }
}

/* ============================================================
   Gallery / chantiers mosaic
   ============================================================ */
.gallery { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 200px; gap: 10px; }
.gallery figure { margin: 0; position: relative; overflow: hidden; border-radius: 10px; border: 1px solid var(--line); }
.gallery img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .5s ease; }
.gallery figure:hover img { transform: scale(1.06); }
.gallery figcaption {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 26px 16px 14px;
  font: 700 14px var(--font-body); color: #fff;
  background: linear-gradient(0deg, rgba(0,0,0,0.82) 0%, rgba(0,0,0,0) 100%);
}
.gallery .g-big { grid-column: span 2; grid-row: span 2; }
.gallery .g-wide { grid-column: span 2; }
.gallery .g-tall { grid-row: span 2; }
@media (max-width: 860px) {
  .gallery { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 160px; }
  .gallery .g-big { grid-column: span 2; grid-row: span 2; }
  .gallery .g-wide { grid-column: span 2; }
  .gallery .g-tall { grid-row: span 1; }
}
@media (max-width: 480px) {
  .gallery { grid-template-columns: 1fr; grid-auto-rows: 220px; }
  .gallery figure, .gallery .g-big, .gallery .g-wide, .gallery .g-tall { grid-column: auto; grid-row: auto; }
}

/* ============================================================
   Colored section themes (young / dynamic rhythm)
   ============================================================ */
/* Light cream section — dark text, high contrast */
.sec-light { background: #FFFFFF !important; border-top: 0 !important; border-bottom: 0 !important; }
.sec-light .h2 { color: #000000; }
.sec-light .lead, .sec-light > .container > p, .sec-light .ba-note { color: #3a3a3a; }
.sec-light .eyebrow { color: #D10C1B; -webkit-text-fill-color: #D10C1B; background: none; }
.sec-light .faq details { border-bottom-color: rgba(0,0,0,0.14); }
.sec-light .faq summary { color: #000000; }
.sec-light .faq summary::after { color: #D10C1B; -webkit-text-fill-color: #D10C1B; background: none; }
.sec-light .faq .a { color: #3a3a3a; }
.sec-light .avis-note { color: #5a5a5a; }

/* Bold gradient section — white text on red/maroon */
.sec-grad { background: linear-gradient(150deg, #B00A16 0%, #FF0F21 100%) !important; border-top: 0 !important; border-bottom: 0 !important; }
.sec-grad .h2 { color: #FFFFFF; }
.sec-grad .eyebrow { color: #FFE936; -webkit-text-fill-color: #FFE936; background: none; }
.sec-grad .lead { color: rgba(255,255,255,0.94); }
.sec-grad .avis { background: rgba(0,0,0,0.28); border-color: rgba(255,255,255,0.22); }
.sec-grad .avis .stars { color: #FFE936; -webkit-text-fill-color: #FFE936; }
.sec-grad .avis p { color: #FFFFFF; }
.sec-grad .avis .who { color: rgba(255,255,255,0.72); }
.sec-grad .avis-note { color: rgba(255,255,255,0.9); }
.sec-grad .btn-ghost { border-color: rgba(255,255,255,0.65); color: #FFFFFF; }
.sec-grad .btn-ghost:hover { border-color: #FFFFFF; background: rgba(255,255,255,0.12); color: #FFFFFF; }

/* Belgian flag section — tricolor bands + dark scrim for readability */
.sec-flag { position: relative; background: #000 !important; border-top: 0 !important; border-bottom: 0 !important; overflow: hidden; }
.sec-flag::before {
  content: ""; position: absolute; inset: 0; z-index: 0;
  background: linear-gradient(90deg, #000000 0 33.33%, #FFE936 33.33% 66.66%, #FF0F21 66.66% 100%);
}
.sec-flag::after {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(0,0,0,0.78) 0%, rgba(0,0,0,0.62) 45%, rgba(0,0,0,0.78) 100%);
}
.sec-flag > .container { position: relative; z-index: 2; }
.sec-flag .h2 { color: #FFFFFF; text-shadow: 0 2px 14px rgba(0,0,0,0.55); }
.sec-flag .eyebrow { color: #FFE936; -webkit-text-fill-color: #FFE936; background: none; text-shadow: 0 1px 8px rgba(0,0,0,0.6); }
.sec-flag .lead { color: rgba(255,255,255,0.95); text-shadow: 0 1px 10px rgba(0,0,0,0.5); }
.sec-flag .avis { background: rgba(0,0,0,0.6); border-color: rgba(255,255,255,0.28); backdrop-filter: blur(3px); }
.sec-flag .avis .stars { color: #FFE936; -webkit-text-fill-color: #FFE936; }
.sec-flag .avis p { color: #FFFFFF; }
.sec-flag .avis .who { color: rgba(255,255,255,0.72); }
.sec-flag .avis-note { color: #FFFFFF; text-shadow: 0 1px 8px rgba(0,0,0,0.6); }
.sec-flag .btn-ghost { border-color: rgba(255,255,255,0.7); color: #FFFFFF; background: rgba(0,0,0,0.35); }
.sec-flag .btn-ghost:hover { border-color: #FFFFFF; background: rgba(0,0,0,0.55); color: #FFFFFF; }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 1140px) {
  .nav { display: none; }
  .header-phone { display: none; }
  .burger { display: block; }
  .header .container { gap: 12px; }
  .topbar-right > a[data-tel] { display: none; }
  .nav.open {
    display: flex; flex-direction: column; align-items: flex-start; gap: 4px;
    position: absolute; top: 100%; left: 0; right: 0; background: var(--surface);
    border-bottom: 1px solid var(--line); padding: 12px 24px 20px; z-index: 60;
  }
  .nav.open a.link { padding: 10px 0; width: 100%; border-bottom: 1px solid var(--line); }
}
@media (max-width: 1024px) {
  .split { grid-template-columns: 1fr; }
  .split .media { min-height: 320px; }
  .split .text { padding: 48px 24px; }
  .zones-wrap { grid-template-columns: 1fr; }
  .devis-wrap { grid-template-columns: 1fr; gap: 32px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
  .topbar .status .hours-txt { display: none; }
  /* collapse header to burger at tablet widths to avoid overflow */
  .nav { display: none; }
  .header-phone { display: none; }
  .burger { display: block; }
  .header .container { gap: 12px; }
  .topbar-right > a[data-tel] { display: none; }
  .nav.open {
    display: flex; flex-direction: column; align-items: flex-start; gap: 4px;
    position: absolute; top: 100%; left: 0; right: 0; background: var(--surface);
    border-bottom: 1px solid var(--line); padding: 12px 24px 20px; z-index: 60;
  }
  .nav.open a.link { padding: 10px 0; width: 100%; border-bottom: 1px solid var(--line); }
}
@media (max-width: 860px) {
  body { font-size: 16px; }
  .nav { display: none; }
  .header-phone { display: none; }
  .burger { display: block; }
  .header .container { gap: 10px; }
  .brand .mark { font-size: 22px; letter-spacing: 1.5px; }
  .brand .sub { font-size: 9px; letter-spacing: 2px; }
  .brand .grinder { width: 50px; height: 50px; }
  .header-cta { gap: 8px; }
  .header-cta .btn { padding: 11px 16px; font-size: 14px; }
  .topbar .container { gap: 10px; }
  .topbar-right { gap: 10px; }
  .topbar-right > a[data-tel] { display: none; }
  .nav.open {
    display: flex; flex-direction: column; align-items: flex-start; gap: 4px;
    position: absolute; top: 100%; left: 0; right: 0; background: var(--surface);
    border-bottom: 1px solid var(--line); padding: 12px 24px 20px;
  }
  .nav.open a.link { padding: 10px 0; width: 100%; border-bottom: 1px solid var(--line); }
  .cards { grid-template-columns: 1fr; }
  .avis-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr 1fr; }
  .trust .grid { grid-template-columns: 1fr 1fr; }
  .trust .item:nth-child(2) { border-right: 0; }
  .trust .item:nth-child(1), .trust .item:nth-child(2) { border-bottom: 1px solid var(--line); }
  .ba { grid-template-columns: 1fr; }
  .mobile-bar { display: grid; }
  body { padding-bottom: 62px; }
  .grid-2 { grid-template-columns: 1fr; }
  .topbar .status span.hours-txt { display: none; }
  .footer-grid { grid-template-columns: 1fr; }
  .pad { padding: 60px 0; }
  .hero { min-height: 88vh; }
}
@media (max-width: 480px) {
  .steps { grid-template-columns: 1fr; }
  .trust .grid { grid-template-columns: 1fr; }
  .trust .item { border-right: 0; border-bottom: 1px solid var(--line); }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .topbar-right .status-wrap { display: none; }
  .brand .sub { display: none; }
  .brand .mark { font-size: 18px; letter-spacing: 1px; }
  .brand .grinder { width: 44px; height: 44px; }
  .header-cta .btn { padding: 10px 13px; font-size: 13px; }
  .container { padding: 0 16px; }
  .hero h1 { font-size: 46px; }
}
