/* ================================
   VANHOUTTE LOODGIETER — v3
   Font: Barlow Condensed + Barlow
   Palette: Parchment + Ink + Teal / Crimson
   ================================ */

:root {
  --parchment:  #ede8de;
  --parchment2: #f7f3ec;
  --ink:        #111110;
  --ink2:       #3a3733;
  --muted:      #877f74;
  --rule:       #d6cfc3;
  --white:      #ffffff;

  /* Page 1 – Plomberie: steel teal */
  --p:          #1b4f6e;
  --p-dk:       #0e3349;
  --p-lt:       #d0e9f4;

  /* Page 2 – Ontstopping: forest green */
  --d:          #1e7e4a;
  --d-dk:       #145c34;
  --d-lt:       #d1f5e0;

  /* Call / form accent – orange (stays) */
  --orange:     #f97316;
  --orange-dk:  #ea6a0a;

  --navy:       #1b3a5c;

  --r:          6px;
  --r-lg:       16px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body { overflow-x: hidden; }

body {
  font-family: 'Barlow', 'Segoe UI', system-ui, sans-serif;
  background: var(--parchment2);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'Barlow Condensed', 'Barlow', sans-serif;
  letter-spacing: -.01em;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

.wrap        { max-width: 1160px; margin: 0 auto; padding: 0 28px; }
.wrap-narrow { max-width: 760px;  margin: 0 auto; padding: 0 28px; }

/* ─── ANNOUNCE ─────────────────── */
.announce {
  background: var(--navy);
  color: rgba(255,255,255,.65);
  font-size: .8rem;
  padding: 8px 28px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px; flex-wrap: wrap;
  font-family: 'Barlow', sans-serif;
}
.announce strong { color: #fff; font-weight: 600; }
.announce a { color: #fff; text-decoration: underline; text-underline-offset: 2px; font-weight: 600; }

/* ─── HEADER ───────────────────── */
.site-header {
  position: sticky; top: 0; z-index: 200;
  background: var(--parchment2);
  border-bottom: 2px solid var(--ink);
  overflow: visible;
}
.site-header__inner {
  max-width: 1160px; margin: 0 auto; padding: 0 28px;
  height: 88px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.brand { display: flex; align-items: center; gap: 10px; }
.brand__sq {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  border: 2px solid var(--ink);
}
.brand__sq svg { width: 20px; height: 20px; }
.brand__logo {
  height: 140px;
  width: auto;
  display: block;
  object-fit: contain;
}
.brand__logo--footer {
  height: 60px;
}
.brand__name {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.15rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .04em;
  line-height: 1.1;
}
.brand__sub { font-size: .7rem; color: var(--muted); letter-spacing: .02em; }
.hdr-right { display: flex; align-items: center; gap: 10px; flex-wrap: nowrap; }
.hdr-tel {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.3rem; font-weight: 700;
  display: flex; align-items: center; gap: 6px;
  letter-spacing: .02em;
}

/* ─── BURGER ───────────────────── */
.burger {
  display: none;
  flex-direction: column; justify-content: center; gap: 5px;
  width: 38px; height: 38px; padding: 6px;
  background: transparent; border: 2px solid var(--ink); cursor: pointer;
  border-radius: 2px;
}
.burger span {
  display: block; width: 100%; height: 2px; background: var(--ink);
  transition: transform .25s, opacity .25s;
}
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.burger-nav {
  display: none;
  flex-direction: column;
  position: fixed;
  top: 74px;
  right: 0;
  min-width: 220px;
  background: var(--parchment2);
  border: 2px solid var(--ink);
  border-top: none;
  z-index: 9999;
  box-shadow: 4px 4px 0 var(--ink);
}
.burger-nav.open { display: flex; }
.burger-nav a {
  padding: 13px 20px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.05rem; font-weight: 700; letter-spacing: .03em;
  color: var(--ink); text-transform: uppercase;
  border-bottom: 1px solid var(--rule);
}
.burger-nav a:last-child { border-bottom: none; }
.burger-nav a:hover { background: var(--parchment); }

/* ─── BUTTONS ──────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 10px 20px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1rem; font-weight: 700;
  letter-spacing: .04em; text-transform: uppercase;
  cursor: pointer; border: 2px solid transparent;
  transition: all .15s; white-space: nowrap;
}
.btn-p  { background: var(--p);    color: #fff; border-color: var(--p); }
.btn-p:hover  { background: var(--p-dk); border-color: var(--p-dk); transform: translateY(-1px); }
.btn-d  { background: var(--d);    color: #fff; border-color: var(--d); }
.btn-d:hover  { background: var(--d-dk); border-color: var(--d-dk); transform: translateY(-1px); }
.btn-ink  { background: var(--ink); color: #fff; border-color: var(--ink); }
.btn-ink:hover  { opacity: .85; transform: translateY(-1px); }
.btn-outline { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn-outline:hover { background: var(--ink); color: #fff; }
.btn-outline-w { background: transparent; color: #fff; border-color: rgba(255,255,255,.5); }
.btn-outline-w:hover { border-color: #fff; background: rgba(255,255,255,.08); }
.btn-lg   { padding: 14px 28px; font-size: 1.1rem; }
.btn-block { width: 100%; justify-content: center; }

/* ─── CALL BUTTON (orange + pulse) */
@keyframes call-ring {
  0%   { box-shadow: 0 0 0 0   rgba(249,115,22,.75); }
  65%  { box-shadow: 0 0 0 12px rgba(249,115,22,.0); }
  100% { box-shadow: 0 0 0 0   rgba(249,115,22,.0); }
}
.btn-call {
  background: var(--orange); color: #fff;
  border: 2px solid var(--ink);
  border-radius: 999px;
  animation: call-ring 1.8s ease-out infinite;
}
.btn-call:hover {
  background: var(--orange-dk); border-color: var(--ink);
  animation: none;
  box-shadow: 0 4px 18px rgba(249,115,22,.45);
  transform: translateY(-1px);
}

/* ─── PAGE SWITCH ─────────────── */
.page-switch {
  background: var(--parchment);
  border-bottom: 1px solid var(--rule);
  padding: 8px 28px; font-size: .8rem;
  color: var(--muted); text-align: right;
}
.page-switch a { color: var(--ink); font-weight: 700; text-decoration: underline; text-underline-offset: 2px; }

/* ─── URGENCY BAR ─────────────── */
.urgency-bar {
  background: var(--d); color: #fff;
  padding: 10px 28px; font-size: .85rem; font-weight: 600;
  display: flex; align-items: center; justify-content: center; gap: 10px;
}
.u-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #fff; flex-shrink: 0;
  animation: ublink 1.3s ease-in-out infinite;
}
@keyframes ublink { 0%,100%{opacity:1} 50%{opacity:.2} }

/* ─── HERO ─────────────────────── */
.hero {
  border-bottom: 2px solid var(--ink);
}
.hero {
  border-bottom: 2px solid var(--ink);
  background: var(--navy);
}
.hero-grid {
  display: block;
  min-height: 70vh;
}
.hero-left {
  padding: 60px 64px 48px 28px;
  min-height: 70vh;
  display: flex; flex-direction: column; justify-content: flex-end;
  background: var(--parchment2);
  position: relative;
  overflow: hidden;
}
.hero-left .hero-h1 {
  position: relative;
  z-index: 1;
  margin-bottom: 32px;
}
.hero-cta-call {
  position: relative;
  z-index: 1;
  font-size: 1.3rem;
  padding: 18px 36px;
  width: 100%;
  justify-content: center;
}
.hero-left::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('images/plombier pc.webp') no-repeat bottom right / auto 95%;
  opacity: 0.5;
  pointer-events: none;
}
.hero-plombier-mobile { display: none; }
.hero-right {
  background: var(--navy);
  display: flex; align-items: center;
  padding: 48px 36px;
}
.hero-eyebrow {
  font-family: 'Barlow', sans-serif;
  font-size: .72rem; font-weight: 600; letter-spacing: .12em;
  text-transform: uppercase; color: var(--muted);
  margin-bottom: 18px;
}
.hero-h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(3rem, 5.5vw, 5.2rem);
  font-weight: 800;
  font-style: italic;
  line-height: .97;
  letter-spacing: -.01em;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.hero-h1 em { font-style: italic; }

.h1-band {
  display: inline;
  background: var(--parchment2);
  color: var(--ink);
  padding: 3px 10px;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
  line-height: 1.35;
}
.h1-band--color {
  background: var(--p);
  color: #fff;
}
.hero-lead {
  font-size: 1rem; color: var(--ink2); max-width: 460px;
  line-height: 1.75; margin-bottom: 28px;
}
.hero-checks {
  list-style: none; display: flex; flex-direction: column; gap: 8px;
  margin-bottom: 32px;
}
.hero-checks li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: .9rem; color: var(--ink2);
}
.hero-checks li::before {
  content: '—'; font-weight: 700; flex-shrink: 0; margin-top: 1px;
}
.hero-ctas { display: flex; gap: 10px; flex-wrap: wrap; }

/* ─── FORM CARD ────────────────── */
@keyframes form-ring {
  0%   { box-shadow: 0 0 0 0   rgba(249,115,22,.7),  0 24px 48px rgba(0,0,0,.5); }
  65%  { box-shadow: 0 0 0 14px rgba(249,115,22,.0), 0 24px 48px rgba(0,0,0,.5); }
  100% { box-shadow: 0 0 0 0   rgba(249,115,22,.0),  0 24px 48px rgba(0,0,0,.5); }
}
.form-card {
  background: var(--parchment2);
  border: 2px solid rgba(249,115,22,.6);
  padding: 32px 28px;
  width: 100%;
  animation: form-ring 2.4s ease-out infinite;
}
.form-card__ttl {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.35rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .04em; margin-bottom: 2px;
}
.form-card__sub { font-size: .78rem; color: var(--muted); margin-bottom: 20px; }

.field { margin-bottom: 12px; }
.field label {
  display: block; font-size: .75rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .06em;
  color: var(--ink2); margin-bottom: 4px;
}
.field input, .field select, .field textarea {
  width: 100%; padding: 9px 12px;
  border: 1.5px solid var(--rule);
  background: var(--white);
  font-family: 'Barlow', sans-serif;
  font-size: .9rem; color: var(--ink);
  transition: border-color .15s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--orange);
}
.field textarea { resize: vertical; min-height: 68px; }
.form-privacy { font-size: .7rem; color: var(--muted); text-align: center; margin-top: 9px; line-height: 1.5; }
.form-ok {
  display: none; text-align: center; padding: 24px 16px;
}
.form-ok__ico {
  width: 52px; height: 52px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 14px;
  background: #d1fae5;
}
.form-ok h4 { font-family: 'Barlow Condensed', sans-serif; font-size: 1.2rem; font-weight: 700; text-transform: uppercase; }
.form-ok p  { font-size: .82rem; color: var(--muted); margin-top: 4px; }
.form-err {
  display: none; align-items: center; gap: 10px;
  padding: 12px 16px; margin-top: 12px;
  background: #fef2f2; border: 1px solid #fca5a5; border-radius: 4px;
}
.form-err p { font-size: .82rem; color: #991b1b; margin: 0; }
.btn[disabled] { opacity: .6; cursor: not-allowed; animation: none; }

/* ─── TICKER ───────────────────── */
.ticker {
  background: var(--navy);
  color: #fff;
  border-top: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
  overflow: hidden;
  padding: 20px 0;
  position: relative;
}
.ticker::before,
.ticker::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}
.ticker::before { left: 0;  background: linear-gradient(to right, var(--ink), transparent); }
.ticker::after  { right: 0; background: linear-gradient(to left,  var(--ink), transparent); }

.ticker__track {
  display: flex;
  width: max-content;
  animation: ticker-scroll 22s linear infinite;
}
.ticker__track:hover { animation-play-state: paused; }

@keyframes ticker-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.ticker__item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 40px;
  border-right: 1px solid rgba(255,255,255,.12);
  flex-shrink: 0;
  white-space: nowrap;
}
.ticker__n {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 2rem; font-weight: 800; font-style: italic;
  line-height: 1;
}
.ticker__sep {
  width: 1px; height: 28px;
  background: rgba(255,255,255,.2);
  flex-shrink: 0;
}
.ticker__l {
  font-size: .7rem; color: rgba(255,255,255,.45);
  letter-spacing: .1em; text-transform: uppercase;
}

/* ─── SECTION LABELS ──────────── */
.s-eyebrow {
  font-size: .72rem; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: var(--muted); margin-bottom: 10px; display: block;
}
.s-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 800; font-style: italic;
  text-transform: uppercase; line-height: 1.05;
  margin-bottom: 14px;
}
.s-body { font-size: .95rem; color: var(--ink2); line-height: 1.75; max-width: 520px; }

/* ─── SERVICES ─────────────────── */
.services-sec { padding: 80px 0; }
.services-hd { margin-bottom: 48px; }
.svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.svc-item {
  padding: 28px 24px;
  background: var(--white);
  border: 1.5px solid var(--rule);
  transition: border-color .18s, box-shadow .18s, transform .18s;
}
.svc-item:hover {
  border-color: var(--ink);
  box-shadow: 4px 4px 0 var(--ink);
  transform: translate(-2px, -2px);
}
.svc-ico {
  width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
  flex-shrink: 0;
}
.svc-ico svg { width: 30px; height: 30px; }
.svc-item h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.1rem; font-weight: 700; text-transform: uppercase;
  margin-bottom: 8px; letter-spacing: .02em;
}
.svc-item p { font-size: .85rem; color: var(--ink2); line-height: 1.65; }

/* ─── WHY ──────────────────────── */
.why-sec {
  background: var(--navy); color: #fff;
  padding: 80px 0;
  border-top: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
}
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: start; }
.why-sec .s-eyebrow { color: rgba(255,255,255,.35); }
.why-sec .s-title { color: #fff; }
.why-sec .s-body { color: rgba(255,255,255,.55); margin-bottom: 32px; }

.why-rows { display: flex; flex-direction: column; }
.why-row {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 18px 0; border-bottom: 1px solid rgba(255,255,255,.08);
}
.why-row:first-child { border-top: 1px solid rgba(255,255,255,.08); }
.why-row__num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: .7rem; font-weight: 700; letter-spacing: .1em;
  color: rgba(255,255,255,.25); padding-top: 2px; flex-shrink: 0; width: 24px;
}
.why-row h4 { font-family: 'Barlow Condensed', sans-serif; font-size: 1.05rem; font-weight: 700; text-transform: uppercase; margin-bottom: 3px; }
.why-row p  { font-size: .85rem; color: rgba(255,255,255,.5); line-height: 1.6; }

.why-panel {
  border: 1px solid rgba(255,255,255,.12);
  padding: 36px 32px;
}
.why-panel__big {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 5.5rem; font-weight: 800; font-style: italic;
  line-height: .9; margin-bottom: 6px;
}
.why-panel__lbl { font-size: .8rem; color: rgba(255,255,255,.4); text-transform: uppercase; letter-spacing: .1em; margin-bottom: 28px; }
.why-tile {
  padding: 14px 16px; border: 1px solid rgba(255,255,255,.1);
  margin-bottom: 10px;
}
.why-tile:last-child { margin-bottom: 0; }
.why-tile strong { display: block; font-family: 'Barlow Condensed', sans-serif; text-transform: uppercase; font-size: .95rem; margin-bottom: 2px; }
.why-tile span { font-size: .8rem; color: rgba(255,255,255,.45); }

/* ─── REVIEWS ──────────────────── */
.reviews-sec { padding: 80px 0; background: var(--parchment); border-bottom: 2px solid var(--ink); }
.reviews-hd { margin-bottom: 40px; }
.reviews-grid { display: grid; grid-template-columns: repeat(3,1fr); border: 2px solid var(--ink); }
.review-item {
  padding: 28px 24px;
  border-right: 2px solid var(--ink);
}
.review-item:last-child { border-right: none; }
.review-stars { font-size: 1rem; margin-bottom: 12px; letter-spacing: 2px; }
.review-text { font-size: .875rem; color: var(--ink2); line-height: 1.75; font-style: italic; margin-bottom: 18px; }
.review-author { display: flex; align-items: center; gap: 10px; }
.review-av {
  width: 34px; height: 34px;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: .85rem;
  color: #fff; flex-shrink: 0;
}
.review-name { font-family: 'Barlow Condensed', sans-serif; font-size: .9rem; font-weight: 700; text-transform: uppercase; }
.review-city { font-size: .72rem; color: var(--muted); letter-spacing: .05em; }

/* ─── PROCESS ──────────────────── */
.process-sec { padding: 80px 0; }
.process-grid {
  display: grid; grid-template-columns: repeat(4,1fr);
  border: 2px solid var(--ink); margin-top: 40px;
}
.process-cell {
  padding: 28px 22px;
  border-right: 2px solid var(--ink);
}
.process-cell:last-child { border-right: none; }
.process-cell__n {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 3.5rem; font-weight: 800; font-style: italic;
  line-height: .9; margin-bottom: 14px;
}
.process-cell h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1rem; font-weight: 700; text-transform: uppercase; margin-bottom: 6px;
}
.process-cell p { font-size: .82rem; color: var(--ink2); line-height: 1.6; }

/* ─── FAQ ──────────────────────── */
.faq-sec { padding: 80px 0; background: var(--parchment2); border-top: 2px solid var(--ink); }
.faq-hd  { margin-bottom: 40px; }
.faq-list { border: 2px solid var(--ink); }
.faq-item { border-bottom: 2px solid var(--ink); }
.faq-item:last-child { border-bottom: none; }
.faq-q {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 20px 24px;
  cursor: pointer;
  user-select: none;
  transition: background .15s;
}
.faq-q:hover { background: var(--parchment); }
.faq-q__txt {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.1rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .02em;
}
.faq-q__ico {
  width: 28px; height: 28px; flex-shrink: 0;
  border: 2px solid var(--ink);
  display: flex; align-items: center; justify-content: center;
  transition: transform .2s, background .15s;
  font-size: 1.2rem; font-weight: 700; line-height: 1;
}
.faq-item.open .faq-q { background: var(--ink); color: #fff; }
.faq-item.open .faq-q__ico { background: var(--ink); color: #fff; transform: rotate(45deg); border-color: rgba(255,255,255,.3); }
.faq-a {
  display: none;
  padding: 20px 24px 24px;
  border-top: 1px solid var(--rule);
  font-size: .9rem; color: var(--ink2); line-height: 1.75;
}
.faq-item.open .faq-a { display: block; }

/* ─── CTA FINALE ───────────────── */
.cta-finale {
  background: var(--navy);
  border-top: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
  padding: 80px 0;
  text-align: center;
}
.cta-finale__inner { display: flex; flex-direction: column; align-items: center; gap: 0; }
.cta-finale__top { margin-bottom: 20px; }
.cta-finale__stars {
  font-size: 1.6rem; color: var(--orange);
  letter-spacing: 4px; margin-bottom: 6px;
}
.cta-finale__note {
  font-size: .75rem; color: rgba(255,255,255,.45);
  letter-spacing: .1em; text-transform: uppercase;
}
.cta-finale__title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 800; font-style: italic;
  text-transform: uppercase; line-height: .95;
  color: #fff; margin-bottom: 20px;
}
.cta-finale__sub {
  font-size: 1rem; color: rgba(255,255,255,.55);
  max-width: 480px; line-height: 1.7; margin-bottom: 40px;
}
.cta-finale__btn {
  font-size: 1.5rem;
  padding: 22px 56px;
  letter-spacing: .06em;
  margin-bottom: 32px;
}
.cta-finale__badges {
  display: flex; gap: 12px; flex-wrap: wrap; justify-content: center;
}
.cta-finale__badges span {
  font-size: .72rem; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: rgba(255,255,255,.4);
  border: 1px solid rgba(255,255,255,.15);
  padding: 6px 14px;
}

/* ─── FOOTER ───────────────────── */
.site-footer {
  background: var(--orange); color: rgba(0,0,0,.55);
  border-top: 2px solid var(--ink);
  padding: 24px 28px;
}
.site-footer__inner {
  max-width: 1160px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 14px;
}
.footer-brand .brand__name { color: var(--ink); }
.footer-brand .brand__sub  { color: rgba(0,0,0,.45); }
.footer-links { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-links a { font-size: .8rem; color: rgba(0,0,0,.6); }
.footer-links a:hover { color: var(--ink); }
.footer-copy { font-size: .72rem; color: rgba(0,0,0,.5); }

/* ─── FORM SECTION (bas de page) ── */
.form-sec {
  padding: 80px 0;
  background: var(--parchment);
  border-top: 2px solid var(--ink);
}
.form-sec__inner {
  display: grid;
  grid-template-columns: 1fr 440px;
  gap: 64px;
  align-items: start;
}
.form-sec .form-card { animation: none; box-shadow: 4px 4px 0 var(--ink); }

/* ─── FLOATING CALL BUTTON ──────── */
.floating-call {
  position: fixed;
  bottom: 24px; right: 20px;
  z-index: 500;
  display: flex; align-items: center; gap: 10px;
  padding: 16px 26px;
  background: var(--orange);
  color: #fff;
  border: 2px solid var(--ink);
  border-radius: 999px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.25rem; font-weight: 700;
  letter-spacing: .04em; text-transform: uppercase;
  text-decoration: none;
  animation: call-ring 1.8s ease-out infinite;
  box-shadow: 0 4px 20px rgba(0,0,0,.25);
}
.floating-call svg { width: 22px; height: 22px; flex-shrink: 0; }
.floating-call:hover {
  background: var(--orange-dk); animation: none;
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(249,115,22,.4);
}
.floating-call__txt { display: inline; }

/* ─── ONTSTOPPING PAGE THEME ────── */
body.page-ontstopping {
  --navy: #0d3320;
}

/* ─── RESPONSIVE ───────────────── */
@media (max-width: 1024px) {
  .hero-grid  { min-height: auto; }
  .hero-left  { padding: 52px 28px 36px; min-height: 60vh; }
  .form-sec__inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-right { padding: 40px 28px; }
  .form-card  { max-width: 100%; }
  .why-grid   { grid-template-columns: 1fr; gap: 40px; }
  .reviews-grid { grid-template-columns: 1fr; }
  .review-item  { border-right: none; border-bottom: 2px solid var(--ink); }
  .review-item:last-child { border-bottom: none; }
  .process-grid { grid-template-columns: repeat(2,1fr); }
  .process-cell:nth-child(2n) { border-right: none; }
  .process-cell:nth-child(n+3) { border-top: 2px solid var(--ink); }
  .svc-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .announce { display: none; }
  .hero-h1 { font-size: 1.7rem; }
  .svc-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .process-cell { border-right: none; border-bottom: 2px solid var(--ink); }
  .process-cell:last-child { border-bottom: none; }
  .brand__logo:not(.brand__logo--footer) { height: 80px; }
  .hdr-tel { display: none; }
  .site-header__inner { height: 72px; }
  .burger { display: flex; }
}
@media (max-width: 480px) {
  .hero-ctas, .cta-band__btns { flex-direction: column; }
  .hero-ctas .btn, .cta-band__btns .btn { width: 100%; justify-content: center; }
  .brand__logo:not(.brand__logo--footer) { height: 120px; }
  .btn-ink { font-size: .85rem; padding: 9px 14px; }
}
