/* ==========================================================================
   Algemene Ontstoppingsdienst — stylesheet
   Design : chaleureux / éditorial, à l'opposé des versions précédentes
   (fond crème, vert forêt, accent moutarde, serif + rounded, cartes ombrées)
   ========================================================================== */

:root{
  --forest: #1F3A2E;
  --forest-soft: #2C4B3C;
  --gold: #E8A33D;
  --gold-dark: #C7801F;
  --paper: #FBF8F2;
  --paper-alt: #F3EEE1;
  --line: #E5DDCB;
  --text: #23281F;
  --text-soft: #5C6357;
  --white: #FFFFFF;

  --font-display: "Fraunces", serif;
  --font-body: "Nunito Sans", sans-serif;

  --max-w: 1180px;
  --radius: 18px;
  --radius-sm: 12px;
  --shadow: 0 14px 34px -18px rgba(31, 58, 46, 0.35);
}

*, *::before, *::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior: auto; }
  *, *::before, *::after{ animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
}

body{
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--paper);
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
}

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

h1, h2, h3, h4{
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.12;
  margin: 0;
  color: var(--forest);
}
h2{ font-size: clamp(1.9rem, 3.6vw, 2.7rem); }
h3{ font-size: 1.28rem; font-weight: 600; }
p{ margin: 0 0 1em; max-width: 62ch; }

.container{ width: 100%; max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.visually-hidden{ position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
:focus-visible{ outline: 3px solid var(--gold-dark); outline-offset: 2px; }

section[id]{ scroll-margin-top: 100px; }

/* ---------- buttons ---------- */

.btn{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.97rem;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: transform 160ms ease, background-color 160ms ease, color 160ms ease, box-shadow 160ms ease;
}
.btn-gold{ background: var(--gold); color: var(--forest); box-shadow: var(--shadow); }
.btn-gold:hover{ background: var(--gold-dark); transform: translateY(-1px); }
.btn-outline{ background: transparent; border-color: var(--forest); color: var(--forest); }
.btn-outline:hover{ background: var(--forest); color: var(--white); }
.btn-outline-light{ background: transparent; border-color: rgba(255,255,255,0.55); color: var(--white); }
.btn-outline-light:hover{ background: rgba(255,255,255,0.14); border-color: var(--white); }

/* ---------- header ---------- */

.site-header{
  background: rgba(251, 248, 242, 0.92);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 40;
}
.nav{ display: flex; align-items: center; justify-content: space-between; padding: 18px 0; gap: 20px; }
.brand{ display: flex; align-items: center; gap: 12px; text-decoration: none; color: var(--forest); }
.brand-mark{ width: 42px; height: 42px; flex: none; }
.brand-name{ font-family: var(--font-display); font-size: 1.32rem; font-weight: 600; line-height: 1.05; }
.brand-name small{ display: block; font-family: var(--font-body); font-size: 0.68rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--gold-dark); }

.nav-links{ display: flex; align-items: center; gap: 30px; list-style: none; margin: 0; padding: 0; }
.nav-links a{ text-decoration: none; font-weight: 700; font-size: 0.95rem; color: var(--text); padding: 6px 2px; border-bottom: 2px solid transparent; }
.nav-links a:hover, .nav-links a[aria-current="page"]{ border-bottom-color: var(--gold-dark); color: var(--forest); }

.nav-cta{ display: flex; align-items: center; gap: 14px; }
.nav-phone{
  display: flex;
  align-items: center;
  gap: 9px;
  text-decoration: none;
  color: var(--forest);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 10px 18px;
  font-weight: 700;
  font-size: 0.95rem;
  box-shadow: var(--shadow);
}
.nav-phone svg{ width: 17px; height: 17px; color: var(--gold-dark); }
.lang-pill{
  text-decoration: none;
  font-weight: 800;
  font-size: 0.78rem;
  letter-spacing: 0.4px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 9px 14px;
  color: var(--forest);
  background: var(--white);
}
.lang-pill:hover{ border-color: var(--gold-dark); color: var(--gold-dark); }

.nav-toggle{ display: none; background: none; border: none; cursor: pointer; padding: 6px; }
.nav-toggle span, .nav-toggle::before, .nav-toggle::after{
  content: ""; display: block; width: 24px; height: 2px; background: var(--forest); margin: 6px 0;
}

@media (max-width: 920px){
  .nav-links{
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--paper); border-bottom: 1px solid var(--line);
    flex-direction: column; align-items: flex-start; padding: 18px 24px 26px; gap: 16px; display: none;
  }
  .nav-links.is-open{ display: flex; }
  .nav-toggle{ display: block; }
}

/* ---------- hero ---------- */

.hero{ background: var(--paper); position: relative; overflow: hidden; }
.hero .container{
  display: grid; grid-template-columns: 1.05fr 0.95fr; align-items: center; gap: 50px;
  padding-top: 68px; padding-bottom: 56px;
}
.hero-eyebrow{
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--gold-dark); font-weight: 800; font-size: 0.86rem; letter-spacing: 0.4px; text-transform: uppercase;
  margin: 0 0 16px;
}
.hero h1{ font-size: clamp(2.5rem, 4.6vw, 3.6rem); max-width: 15ch; }
.hero p.lede{ color: var(--text-soft); font-size: 1.13rem; margin-top: 20px; max-width: 46ch; }
.hero-actions{ display: flex; flex-wrap: wrap; gap: 16px; margin-top: 32px; }

.hero-art{ position: relative; }
.hero-blob{ width: 100%; height: auto; }
.hero-badge{
  position: absolute;
  bottom: 18px; left: -10px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  max-width: 260px;
}
.hero-badge svg{ width: 34px; height: 34px; color: var(--gold-dark); flex: none; }
.hero-badge strong{ display: block; font-family: var(--font-display); font-size: 1.15rem; color: var(--forest); }
.hero-badge span{ font-size: 0.82rem; color: var(--text-soft); }

@media (max-width: 900px){
  .hero .container{ grid-template-columns: 1fr; padding-top: 44px; }
  .hero-art{ max-width: 380px; margin: 10px auto 0; }
}

/* ---------- section scaffolding ---------- */

section{ padding: 80px 0; }
.section-head{ max-width: 640px; margin-bottom: 44px; }
.section-head p{ color: var(--text-soft); font-size: 1.04rem; margin-top: 12px; }
.section-tag{ color: var(--gold-dark); font-weight: 800; font-size: 0.86rem; letter-spacing: 0.4px; text-transform: uppercase; margin: 0 0 10px; }
.bg-alt{ background: var(--paper-alt); }
.bg-forest{ background: var(--forest); color: var(--white); }
.bg-forest h2, .bg-forest h3{ color: var(--white); }
.bg-forest p{ color: #CFE0D3; }

/* ---------- mid-page contact strip ---------- */

.contact-strip{ background: var(--white); }
.contact-strip .container{
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px;
  padding-top: 44px; padding-bottom: 44px;
}
.contact-pill{
  display: flex; align-items: flex-start; gap: 16px;
  background: var(--paper); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 22px;
}
.contact-pill svg{ width: 28px; height: 28px; flex: none; color: var(--gold-dark); }
.contact-pill strong{ display: block; font-size: 0.8rem; font-weight: 800; color: var(--text-soft); text-transform: uppercase; letter-spacing: 0.3px; margin-bottom: 5px; }
.contact-pill a, .contact-pill span{ display: block; font-family: var(--font-display); font-size: 1.18rem; color: var(--forest); text-decoration: none; line-height: 1.2; }
.contact-pill a:hover{ color: var(--gold-dark); }

@media (max-width: 820px){
  .contact-strip .container{ grid-template-columns: 1fr; }
}

/* ---------- services ---------- */

.services-grid{ display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 22px; }
.service-card{
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px 26px; display: flex; flex-direction: column; gap: 14px;
  box-shadow: var(--shadow); transition: transform 160ms ease;
}
.service-card:hover{ transform: translateY(-3px); }
.service-icon{
  width: 52px; height: 52px; border-radius: 14px;
  background: #FBEBD2; display: flex; align-items: center; justify-content: center;
}
.service-icon svg{ width: 26px; height: 26px; color: var(--gold-dark); }
.service-card h3{ font-size: 1.18rem; }
.service-card p{ color: var(--text-soft); font-size: 0.96rem; margin-bottom: 0; }

/* ---------- why us (icon-left rows) ---------- */

.usp-rows{ display: flex; flex-direction: column; gap: 4px; }
.usp-row{
  display: grid; grid-template-columns: 64px 1fr; gap: 22px; align-items: flex-start;
  padding: 26px 0; border-top: 1px solid var(--line);
}
.usp-rows .usp-row:last-child{ border-bottom: 1px solid var(--line); }
.usp-icon{
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--forest); display: flex; align-items: center; justify-content: center;
}
.usp-icon svg{ width: 26px; height: 26px; color: var(--gold); }
.usp-row h3{ margin-bottom: 6px; }
.usp-row p{ color: var(--text-soft); margin-bottom: 0; }

/* ---------- process steps ---------- */

.steps{ display: grid; grid-template-columns: repeat(3, 1fr); gap: 36px; }
.step{
  background: var(--white); border-radius: var(--radius); padding: 30px 26px;
  box-shadow: var(--shadow);
}
.step-num{
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--gold); color: var(--forest);
  font-family: var(--font-display); font-weight: 700; font-size: 1.15rem;
  margin-bottom: 16px;
}
.step h3{ margin-bottom: 8px; }
.step p{ color: var(--text-soft); margin-bottom: 0; }

@media (max-width: 820px){ .steps{ grid-template-columns: 1fr; } }

/* ---------- stats ---------- */

.stats-band .container{
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px;
  padding-top: 52px; padding-bottom: 52px;
}
.stat{ text-align: center; }
.stat strong{ display: block; font-family: var(--font-display); font-size: 2.6rem; color: var(--gold); line-height: 1; margin-bottom: 8px; }
.stat span{ font-size: 0.92rem; color: #CFE0D3; }
.stats-note{ text-align: center; font-size: 0.78rem; color: var(--text-soft); background: var(--paper); margin: 0; padding: 14px 0 0; }

@media (max-width: 720px){ .stats-band .container{ grid-template-columns: 1fr; gap: 24px; } }

/* ---------- coverage ---------- */

.coverage{ display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.coverage-list{ list-style: none; margin: 22px 0 0; padding: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 12px 24px; }
.coverage-list li{
  background: var(--white); border: 1px solid var(--line); border-radius: 999px;
  padding: 10px 18px; font-weight: 700; font-size: 0.94rem; text-align: center;
}
.coverage-map{ width: 100%; height: auto; }

@media (max-width: 820px){
  .coverage{ grid-template-columns: 1fr; }
  .coverage-list{ grid-template-columns: 1fr 1fr; }
}

/* ---------- testimonials ---------- */

.testimonials{ display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px; }
.testimonial{
  background: var(--white); border-radius: var(--radius); padding: 34px 30px;
  box-shadow: var(--shadow); position: relative;
}
.testimonial .quote-mark{ font-family: var(--font-display); font-size: 3.2rem; color: var(--gold); line-height: 1; display: block; margin-bottom: 6px; }
.stars{ display: flex; gap: 3px; margin-bottom: 12px; }
.stars svg{ width: 16px; height: 16px; color: var(--gold-dark); }
.testimonial p{ font-size: 1.03rem; color: var(--text); margin-bottom: 16px; }
.testimonial cite{ font-style: normal; font-weight: 800; font-size: 0.9rem; color: var(--text-soft); }

@media (max-width: 820px){ .testimonials{ grid-template-columns: 1fr; } }

/* ---------- FAQ ---------- */

.faq-list{ max-width: 780px; display: flex; flex-direction: column; gap: 14px; }
.faq-item{ background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-sm); overflow: hidden; }
.faq-item summary{
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  padding: 20px 22px; cursor: pointer; font-weight: 700; font-size: 1.01rem; color: var(--forest); list-style: none;
}
.faq-item summary::-webkit-details-marker{ display: none; }
.faq-item summary .faq-icon{
  flex: none; width: 26px; height: 26px; border-radius: 50%;
  background: var(--paper-alt); display: flex; align-items: center; justify-content: center; position: relative;
}
.faq-item summary .faq-icon::before, .faq-item summary .faq-icon::after{ content: ""; position: absolute; background: var(--forest); }
.faq-item summary .faq-icon::before{ width: 10px; height: 2px; }
.faq-item summary .faq-icon::after{ width: 2px; height: 10px; transition: transform 160ms ease; }
.faq-item[open] summary .faq-icon::after{ transform: rotate(90deg); opacity: 0; }
.faq-item[open] summary{ color: var(--gold-dark); }
.faq-answer{ padding: 0 22px 22px; color: var(--text-soft); }
.faq-answer p{ margin: 0; }

/* ---------- CTA band ---------- */

.cta-band{ background: var(--gold); }
.cta-band .container{
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 24px;
  padding-top: 46px; padding-bottom: 46px;
}
.cta-band h2{ color: var(--forest); font-size: clamp(1.6rem, 3vw, 2.2rem); max-width: 22ch; }

/* ---------- footer ---------- */

.site-footer{ background: var(--forest); color: #CFE0D3; padding: 60px 0 26px; }
.footer-grid{ display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,0.14); }
.footer-brand .brand-name{ color: var(--white); }
.footer-brand .brand-name small{ color: var(--gold); }
.footer-brand p{ color: #A9C0AE; margin-top: 14px; font-size: 0.95rem; }
.footer-lang{ display: flex; gap: 8px; margin-top: 18px; }
.footer-lang a{ text-decoration: none; font-size: 0.85rem; font-weight: 800; color: #CFE0D3; border: 1px solid rgba(255,255,255,0.28); padding: 6px 13px; border-radius: 999px; }
.footer-lang a.is-active{ background: var(--gold); color: var(--forest); border-color: var(--gold); }
.footer-lang a:not(.is-active):hover{ color: var(--white); border-color: rgba(255,255,255,0.6); }
.footer-col h4{ color: var(--white); font-family: var(--font-body); font-size: 0.88rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.4px; margin-bottom: 16px; }
.footer-col ul{ list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.footer-col a{ color: #CFE0D3; text-decoration: none; font-size: 0.95rem; }
.footer-col a:hover{ color: var(--gold); }
.footer-col address{ font-style: normal; color: #CFE0D3; font-size: 0.95rem; line-height: 1.7; }
.footer-bottom{ display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; padding-top: 24px; font-size: 0.85rem; color: #8FA894; }
.footer-bottom a{ color: #8FA894; text-decoration: underline; }

@media (max-width: 880px){ .footer-grid{ grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px){ .footer-grid{ grid-template-columns: 1fr; } }

/* ---------- sticky mobile call bar ---------- */

.mobile-call-bar{ display: none; position: fixed; left: 0; right: 0; bottom: 0; z-index: 50; background: var(--gold); }
.mobile-call-bar a{ display: flex; align-items: center; justify-content: center; gap: 10px; padding: 14px 20px; color: var(--forest); text-decoration: none; font-weight: 800; font-size: 1rem; }
.mobile-call-bar svg{ width: 20px; height: 20px; }
@media (max-width: 720px){ .mobile-call-bar{ display: block; } body{ padding-bottom: 54px; } }

/* ---------- inner page header ---------- */

.page-header{ background: var(--forest); color: var(--white); padding: 58px 0 50px; }
.page-header h1{ color: var(--white); font-size: clamp(2rem, 3.8vw, 2.7rem); }
.page-header p{ color: #CFE0D3; margin-top: 14px; }

/* ---------- contact page ---------- */

.contact-layout{ display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.contact-card{ background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 32px; box-shadow: var(--shadow); }
.contact-detail{ display: flex; gap: 16px; padding: 16px 0; border-bottom: 1px solid var(--line); }
.contact-detail:last-child{ border-bottom: none; }
.contact-detail svg{ width: 22px; height: 22px; color: var(--gold-dark); flex: none; margin-top: 3px; }
.contact-detail strong{ display: block; font-size: 0.9rem; }
.contact-detail span, .contact-detail a{ color: var(--text-soft); text-decoration: none; font-size: 0.98rem; }
.contact-detail a:hover{ color: var(--gold-dark); }

form.contact-form{ display: flex; flex-direction: column; gap: 18px; }
.form-row{ display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field{ display: flex; flex-direction: column; gap: 6px; }
.field label{ font-size: 0.88rem; font-weight: 700; color: var(--forest); }
.field input, .field textarea, .field select{
  border: 1px solid var(--line); background: var(--white); padding: 12px 14px;
  font-family: var(--font-body); font-size: 0.98rem; border-radius: var(--radius-sm); color: var(--text);
}
.field input:focus, .field textarea:focus, .field select:focus{ border-color: var(--gold-dark); }
.field textarea{ resize: vertical; min-height: 130px; }
.form-note{ font-size: 0.85rem; color: var(--text-soft); }

@media (max-width: 860px){ .contact-layout{ grid-template-columns: 1fr; } .form-row{ grid-template-columns: 1fr; } }

.map-embed{ border: 1px solid var(--line); border-radius: var(--radius); width: 100%; height: 340px; filter: grayscale(0.1) sepia(0.06); }

/* ---------- legal page ---------- */

.legal-content{ max-width: 760px; }
.legal-content h2{ font-size: 1.45rem; margin-top: 44px; margin-bottom: 14px; }
.legal-content h2:first-child{ margin-top: 0; }
.legal-content p, .legal-content li{ color: var(--text-soft); }
.legal-content ul{ padding-left: 20px; }
.legal-content li{ margin-bottom: 8px; }
