/*
Theme Name: EPC Attest Vlaanderen
Theme URI: https://epcattestvlaanderen.be/
Author: —
Description: Lichtgewicht maatthema voor epcattestvlaanderen.be. Geen page builder, geen externe afhankelijkheden. Bevat paginasjablonen voor home, over, waarom-epc, prijzen en contact, met een slot voor het Teamleader-contactformulier.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.8
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: epcattest
Tags: business, one-column, custom-menu, block-styles
*/

/* ==========================================================================
   EPC Attest Vlaanderen — stylesheet
   Merk: Playfair Display (titels) + Montserrat (tekst), geel #FFE900
   ========================================================================== */

:root {
  --geel: #ffe900;
  --geel-donker: #e8d400;
  --geel-zacht: #fffbe0;
  --ink: #292d3d;
  --ink-zacht: #3c4050;
  --grijs: #6b7085;
  --lijn: #e6e8ef;
  --wit: #ffffff;
  --bg-zacht: #f7f8fa;

  --max: 1160px;
  --radius: 14px;
  --radius-s: 8px;
  --schaduw: 0 2px 4px rgba(41, 45, 61, .04), 0 12px 32px rgba(41, 45, 61, .07);
  --schaduw-hover: 0 4px 8px rgba(41, 45, 61, .06), 0 18px 44px rgba(41, 45, 61, .12);

  --serif: "Playfair Display", Georgia, "Times New Roman", serif;
  --sans: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink-zacht);
  background: var(--wit);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }

h1, h2, h3, h4 {
  font-family: var(--serif);
  color: var(--ink);
  line-height: 1.15;
  margin: 0 0 .5em;
  font-weight: 700;
}
h1 { font-size: clamp(2.2rem, 6vw, 4rem); letter-spacing: -.01em; }
h2 { font-size: clamp(1.7rem, 3.6vw, 2.6rem); }
h3 { font-size: clamp(1.15rem, 2vw, 1.4rem); }
p { margin: 0 0 1.1em; }
ul, ol { margin: 0 0 1.1em; padding-left: 1.3em; }
li { margin-bottom: .45em; }
strong { color: var(--ink); font-weight: 600; }

/* ---------- layout ---------- */
.wrap { width: 100%; max-width: var(--max); margin: 0 auto; padding: 0 24px; }
.sectie { padding: clamp(56px, 8vw, 100px) 0; }
.sectie--zacht { background: var(--bg-zacht); }
.sectie--geel { background: var(--geel-zacht); }
.sectie__kop { max-width: 720px; margin-bottom: 48px; }
.sectie__kop--midden { margin-left: auto; margin-right: auto; text-align: center; }
.sectie__kop p { color: var(--grijs); font-size: 1.05rem; margin-bottom: 0; }

.eyebrow {
  display: inline-block;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--grijs);
  margin-bottom: 14px;
}
.eyebrow::before {
  content: "";
  display: inline-block;
  width: 26px; height: 3px;
  background: var(--geel);
  vertical-align: middle;
  margin-right: 10px;
  border-radius: 2px;
}

/* ---------- skip link ---------- */
.skip {
  position: absolute; left: -9999px; top: 0;
  background: var(--ink); color: #fff; padding: 12px 20px; z-index: 999;
  border-radius: 0 0 var(--radius-s) 0;
}
.skip:focus { left: 0; }

:focus-visible {
  outline: 3px solid var(--ink);
  outline-offset: 3px;
  border-radius: 3px;
}

/* ---------- knoppen ---------- */
.knop {
  display: inline-flex; align-items: center; justify-content: center; gap: .55em;
  font-family: var(--sans);
  font-size: .93rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase;
  padding: 16px 32px;
  border: 2px solid transparent; border-radius: 60px;
  text-decoration: none; cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background-color .18s ease, color .18s ease;
}
.knop--primair { background: var(--geel); color: #0a0a0a; box-shadow: 0 6px 18px rgba(232, 212, 0, .35); }
.knop--primair:hover { background: var(--geel-donker); transform: translateY(-2px); box-shadow: 0 10px 26px rgba(232, 212, 0, .45); }
.knop--donker { background: var(--ink); color: #fff; }
.knop--donker:hover { background: #1c1f2c; transform: translateY(-2px); }
.knop--lijn { background: transparent; color: var(--ink); border-color: rgba(41, 45, 61, .25); }
.knop--lijn:hover { border-color: var(--ink); transform: translateY(-2px); }
.knop--licht { background: rgba(255,255,255,.12); color: #fff; border-color: rgba(255,255,255,.5); }
.knop--licht:hover { background: rgba(255,255,255,.22); transform: translateY(-2px); }
.knoppen { display: flex; flex-wrap: wrap; gap: 14px; }
.knoppen--midden { justify-content: center; }

/* ---------- header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.94);
  backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--lijn);
}
.site-header__inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px; min-height: 84px;
}
.logo { display: flex; align-items: center; gap: 12px; text-decoration: none; flex-shrink: 0; }
.logo img { height: 48px; width: auto; }
@media (max-width: 480px) { .logo img { height: 38px; } }
.logo__tekst { display: flex; flex-direction: column; line-height: 1.05; }
.logo__naam {
  font-family: var(--sans); font-weight: 700; font-size: .95rem;
  letter-spacing: .06em; text-transform: uppercase; color: var(--ink);
}
.logo__sub { font-size: .68rem; letter-spacing: .18em; text-transform: uppercase; color: var(--grijs); }

.nav { display: flex; align-items: center; gap: 6px; }
.nav a {
  text-decoration: none; color: var(--ink-zacht);
  font-size: .95rem; font-weight: 500;
  padding: 10px 14px; border-radius: var(--radius-s);
  transition: color .15s ease, background-color .15s ease;
}
.nav a:hover { color: var(--ink); background: var(--bg-zacht); }
.nav a[aria-current="page"] { color: var(--ink); font-weight: 600; box-shadow: inset 0 -3px 0 var(--geel); }
.nav .knop { margin-left: 10px; padding: 13px 24px; box-shadow: none; }
.nav .knop:hover { box-shadow: none; }

.nav-toggle {
  display: none;
  background: none; border: 0; cursor: pointer;
  padding: 10px; border-radius: var(--radius-s);
  color: var(--ink);
}
.nav-toggle svg { display: block; }

@media (max-width: 900px) {
  .nav-toggle { display: block; }
  .nav {
    position: absolute; left: 0; right: 0; top: 100%;
    flex-direction: column; align-items: stretch; gap: 2px;
    background: #fff; border-bottom: 1px solid var(--lijn);
    padding: 12px 24px 24px;
    box-shadow: var(--schaduw);
    display: none;
  }
  .nav[data-open="true"] { display: flex; }
  .nav a { padding: 14px 4px; border-bottom: 1px solid var(--lijn); border-radius: 0; }
  .nav a[aria-current="page"] { box-shadow: none; color: var(--ink); }
  .nav .knop { margin: 16px 0 0; border-bottom: 0; justify-content: center; }
  .site-header__inner { position: relative; }
}

/* ---------- hero ---------- */
.hero {
  position: relative;
  background: linear-gradient(150deg, #2b3040 0%, #3a4055 55%, #4a5168 100%);
  color: #fff;
  overflow: hidden;
  padding: clamp(72px, 12vw, 140px) 0;
}
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='60' viewBox='0 0 120 60'%3E%3Cpath d='M0 45 L30 15 L60 45 L90 15 L120 45' fill='none' stroke='%23ffffff' stroke-width='10' stroke-opacity='0.05'/%3E%3C/svg%3E");
  background-size: 120px 60px;
  opacity: .9;
}
.hero::after {
  content: "";
  position: absolute; right: -12%; top: -30%;
  width: 620px; height: 620px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,233,0,.16) 0%, rgba(255,233,0,0) 70%);
}
.hero .wrap { position: relative; z-index: 1; }
.hero__inner { max-width: 780px; }
.hero h1 { color: #fff; margin-bottom: 20px; }
.hero .eyebrow { color: rgba(255,255,255,.75); }
.hero__lead {
  font-size: clamp(1.05rem, 2vw, 1.28rem);
  color: rgba(255,255,255,.86);
  max-width: 620px;
  margin-bottom: 34px;
}
.hero__lead strong { color: var(--geel); font-weight: 600; }
.hero__lead a { color: #fff; text-decoration: underline; text-underline-offset: 3px; }
.hero__lead a:hover { color: var(--geel); }

.hero-mini {
  background: linear-gradient(150deg, #2b3040 0%, #3a4055 100%);
  color: #fff;
  padding: clamp(56px, 8vw, 96px) 0 clamp(48px, 7vw, 80px);
  position: relative; overflow: hidden;
}
.hero-mini::after {
  content: ""; position: absolute; right: -10%; bottom: -60%;
  width: 480px; height: 480px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,233,0,.14) 0%, rgba(255,233,0,0) 70%);
}
.hero-mini .wrap { position: relative; z-index: 1; }
.hero-mini h1 { color: #fff; }
.hero-mini p { color: rgba(255,255,255,.82); max-width: 620px; font-size: 1.08rem; margin-bottom: 0; }
.hero-mini .eyebrow { color: rgba(255,255,255,.72); }

/* ---------- kruimelpad ---------- */
.kruimels { font-size: .85rem; color: rgba(255,255,255,.6); margin-bottom: 18px; }
.kruimels a { text-decoration: none; }
.kruimels a:hover { text-decoration: underline; }

/* ---------- vertrouwensbalk ---------- */
.balk { background: var(--ink); color: #fff; padding: 22px 0; }
.balk__grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px;
  text-align: center;
}
.balk__item { font-size: .88rem; color: rgba(255,255,255,.82); display: flex; flex-direction: column; gap: 4px; }
.balk__item b { color: var(--geel); font-size: .95rem; font-weight: 600; letter-spacing: .04em; }
@media (max-width: 760px) { .balk__grid { grid-template-columns: repeat(2, 1fr); gap: 22px; } }

/* ---------- kaarten ---------- */
.kaarten { display: grid; gap: 24px; }
.kaarten--4 { grid-template-columns: repeat(4, 1fr); }
.kaarten--3 { grid-template-columns: repeat(3, 1fr); }
.kaarten--2 { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 980px) { .kaarten--4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 860px) { .kaarten--3 { grid-template-columns: 1fr; } .kaarten--2 { grid-template-columns: 1fr; } }
@media (max-width: 560px) { .kaarten--4 { grid-template-columns: 1fr; } }

.kaart {
  background: #fff; border: 1px solid var(--lijn); border-radius: var(--radius);
  padding: 32px 28px;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.kaart:hover { transform: translateY(-3px); box-shadow: var(--schaduw-hover); border-color: transparent; }
.kaart h3 { margin-bottom: .4em; }
.kaart p { color: var(--grijs); font-size: .96rem; margin-bottom: 0; }
.kaart__icoon {
  width: 48px; height: 48px; border-radius: 12px;
  background: var(--geel-zacht); color: var(--ink);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.kaart__icoon svg { width: 24px; height: 24px; }

/* ---------- stappen ---------- */
.stappen { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; counter-reset: stap; }
@media (max-width: 860px) { .stappen { grid-template-columns: 1fr; } }
.stap { position: relative; padding-top: 12px; }
.stap__nr {
  font-family: var(--serif); font-size: 3.2rem; font-weight: 700;
  color: var(--geel); line-height: 1; margin-bottom: 10px; display: block;
}
.stap h3 { margin-bottom: .35em; }
.stap p { color: var(--grijs); font-size: .96rem; margin-bottom: 0; }

/* ---------- prijstabel ---------- */
.tabel-wrap { overflow-x: auto; border: 1px solid var(--lijn); border-radius: var(--radius); background: #fff; }
table.prijzen { width: 100%; border-collapse: collapse; min-width: 560px; font-size: .97rem; }
table.prijzen th, table.prijzen td { padding: 18px 22px; text-align: left; border-bottom: 1px solid var(--lijn); }
table.prijzen thead th {
  background: var(--ink); color: #fff;
  font-size: .78rem; letter-spacing: .12em; text-transform: uppercase; font-weight: 600;
}
table.prijzen tbody tr:last-child td { border-bottom: 0; }
table.prijzen tbody tr:hover { background: var(--geel-zacht); }
table.prijzen td:first-child { font-weight: 600; color: var(--ink); }
table.prijzen .prijs { font-family: var(--serif); font-size: 1.25rem; font-weight: 700; color: var(--ink); white-space: nowrap; }
table.prijzen .extra { color: var(--grijs); white-space: nowrap; }

.notitie {
  display: flex; gap: 14px; align-items: flex-start;
  background: var(--geel-zacht); border-left: 4px solid var(--geel);
  padding: 20px 24px; border-radius: 0 var(--radius-s) var(--radius-s) 0;
  font-size: .95rem; color: var(--ink-zacht);
}
.notitie p:last-child { margin-bottom: 0; }

/* ---------- proza ---------- */
.proza { max-width: 760px; }
.proza h2 { margin-top: 1.8em; }
.proza h2:first-child { margin-top: 0; }
.proza h3 { margin-top: 1.6em; }
.proza ul li::marker { color: var(--geel-donker); }
.proza .bron { font-size: .88rem; color: var(--grijs); font-style: italic; }

.info-blok {
  background: var(--bg-zacht); border-radius: var(--radius);
  padding: 28px 30px; margin: 32px 0;
}
.info-blok h3 { margin-top: 0; }
.info-blok p:last-child, .info-blok ul:last-child { margin-bottom: 0; }

/* ---------- contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1.35fr .85fr; gap: 44px; align-items: start; }
@media (max-width: 940px) { .contact-grid { grid-template-columns: 1fr; } }

.form-kaart {
  background: #fff; border: 1px solid var(--lijn); border-radius: var(--radius);
  box-shadow: var(--schaduw); padding: 8px;
  overflow: hidden;
}
.form-kaart__kop { padding: 26px 26px 6px; }
.form-kaart__kop h2 { font-size: 1.5rem; margin-bottom: .3em; }
.form-kaart__kop p { color: var(--grijs); font-size: .95rem; margin-bottom: 0; }

/* schakelaar tussen particulieren- en bedrijvenformulier */
.form-schakelaar {
  display: flex; gap: 6px;
  margin: 0 12px 4px; padding: 5px;
  background: var(--bg-zacht); border-radius: 60px;
}
.form-schakelaar button {
  flex: 1; padding: 12px 18px;
  font-family: var(--sans); font-size: .88rem; font-weight: 600;
  letter-spacing: .04em;
  color: var(--grijs); background: transparent;
  border: 0; border-radius: 60px; cursor: pointer;
  transition: background-color .18s ease, color .18s ease, box-shadow .18s ease;
}
.form-schakelaar button:hover { color: var(--ink); }
.form-schakelaar button[aria-selected="true"] {
  background: #fff; color: var(--ink);
  box-shadow: 0 1px 2px rgba(41,45,61,.08), 0 4px 12px rgba(41,45,61,.08);
}
.form-schakelaar button:focus-visible { outline: 3px solid var(--ink); outline-offset: 2px; }
@media (max-width: 420px) {
  .form-schakelaar { flex-direction: column; border-radius: var(--radius-s); }
  .form-schakelaar button { border-radius: var(--radius-s); }
}
.tl-embed[hidden] { display: none; }

/* Teamleader iframe */
.tl-embed { padding: 12px; }
/* De hoogte komt uit de embed-code van Teamleader zelf (height: 600px).
   Scrollt het formulier binnenin, verhoog dat getal dan in de embed-code —
   of overschrijf het hier met een min-height. */
.tl-embed iframe {
  width: 100%; border: 0; display: block; border-radius: var(--radius-s);
  background: var(--bg-zacht);
}
/* Teamleader geeft height:600px mee, maar beide formulieren zijn ongeveer
   2000 px hoog. Zonder deze correctie moet de bezoeker binnen het kader
   scrollen om bij de verzendknop te komen. */
.form-kaart .tl-embed iframe { height: 2120px !important; background: #fff !important; }
.form-kaart [data-form-paneel="bedrijf"] iframe { height: 2040px !important; }
@media (max-width: 600px) {
  .form-kaart .tl-embed iframe { height: 2600px !important; }
  .form-kaart [data-form-paneel="bedrijf"] iframe { height: 2520px !important; }
}
/* Tijdelijke placeholder — verwijderen zodra de Teamleader-embed erin staat */
.tl-placeholder {
  border: 2px dashed var(--lijn); border-radius: var(--radius-s);
  padding: 40px 28px; text-align: center; color: var(--grijs);
  background: repeating-linear-gradient(45deg, #fcfcfd, #fcfcfd 12px, #f7f8fa 12px, #f7f8fa 24px);
}
.tl-placeholder strong { display: block; color: var(--ink); font-size: 1.05rem; margin-bottom: 8px; }
.tl-placeholder code {
  display: inline-block; background: var(--ink); color: var(--geel);
  padding: 3px 8px; border-radius: 4px; font-size: .85rem;
}

.contact-info { display: flex; flex-direction: column; gap: 4px; }
.contact-item {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 20px 0; border-bottom: 1px solid var(--lijn);
}
.contact-item:last-of-type { border-bottom: 0; }
.contact-item__icoon {
  flex-shrink: 0; width: 42px; height: 42px; border-radius: 10px;
  background: var(--geel-zacht); color: var(--ink);
  display: flex; align-items: center; justify-content: center;
}
.contact-item__icoon svg { width: 20px; height: 20px; }
.contact-item > span:last-child { display: block; }
.contact-item__label {
  display: block;
  font-size: .74rem; letter-spacing: .14em; text-transform: uppercase;
  color: var(--grijs); font-weight: 600; margin-bottom: 3px;
}
.contact-item a { color: var(--ink); text-decoration: none; font-weight: 500; border-bottom: 2px solid var(--geel); }
.contact-item a:hover { background: var(--geel-zacht); }

/* ---------- contactblok (prijs op maat) ---------- */
.contact-blok { display: grid; grid-template-columns: 1.2fr .8fr; gap: 48px; align-items: center; }
@media (max-width: 900px) { .contact-blok { grid-template-columns: 1fr; gap: 32px; } }
.contact-blok .proza h2:first-child { margin-top: 0; }

.checklijst { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 16px; }
.checklijst li {
  display: flex; gap: 14px; align-items: flex-start; margin: 0;
  font-size: 1rem; font-weight: 500; color: var(--ink);
}
.checklijst li::before {
  content: ""; flex-shrink: 0; width: 24px; height: 24px; margin-top: 2px; border-radius: 50%;
  background: var(--geel) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23292d3d' stroke-width='3.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E") center / 14px no-repeat;
}

/* ---------- makelaars / B2B ---------- */
.b2b-strip { background: var(--ink); color: #fff; padding: 34px 0; }
.b2b-strip__inner {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 20px;
}
.b2b-strip p { margin: 0; color: rgba(255,255,255,.78); font-size: 1rem; }
.b2b-strip strong { color: #fff; }
.b2b-strip .knop { flex-shrink: 0; }

.cijfers { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
@media (max-width: 760px) { .cijfers { grid-template-columns: 1fr; } }
.cijfer {
  background: #fff; border: 1px solid var(--lijn); border-radius: var(--radius);
  padding: 28px 26px;
}
.cijfer b {
  display: block; font-family: var(--serif); font-size: 2.1rem; font-weight: 700;
  color: var(--ink); line-height: 1; margin-bottom: 8px;
}
.cijfer span { font-size: .95rem; color: var(--grijs); }

/* ---------- CTA band ---------- */
.cta-band {
  background: var(--geel);
  padding: clamp(48px, 7vw, 76px) 0;
  text-align: center;
}
.cta-band h2 { margin-bottom: .35em; }
.cta-band p { color: rgba(41,45,61,.78); max-width: 560px; margin: 0 auto 28px; }

/* ---------- footer ---------- */
.site-footer { background: var(--ink); color: rgba(255,255,255,.7); padding: 64px 0 0; font-size: .94rem; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; padding-bottom: 48px; }
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 34px; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }
.site-footer h4 {
  font-family: var(--sans); color: #fff; font-size: .78rem;
  letter-spacing: .14em; text-transform: uppercase; margin: 0 0 16px; font-weight: 600;
}
.site-footer a { color: rgba(255,255,255,.7); text-decoration: none; }
.site-footer a:hover { color: var(--geel); }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin-bottom: 10px; }
.footer-merk .logo__naam { color: #fff; }
.footer-merk .logo__sub { color: rgba(255,255,255,.55); }
.footer-merk p { margin-top: 16px; max-width: 280px; font-size: .92rem; }
.erkend {
  background: var(--geel); color: #0a0a0a; border-radius: var(--radius-s);
  padding: 14px 18px; display: inline-flex; align-items: center; gap: 12px;
  font-weight: 600; font-size: .84rem; line-height: 1.3; max-width: 100%;
}
.erkend svg { flex-shrink: 0; }
.footer-bodem {
  border-top: 1px solid rgba(255,255,255,.12);
  padding: 22px 0;
  display: flex; flex-wrap: wrap; gap: 12px; justify-content: space-between;
  font-size: .85rem; color: rgba(255,255,255,.5);
}

/* ---------- utilities ---------- */
.center { text-align: center; }
.mb-0 { margin-bottom: 0; }
.visually-hidden {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}

@media print {
  .site-header, .cta-band, .site-footer, .knop { display: none !important; }
  body { font-size: 12pt; color: #000; }
}

/* ==========================================================================
   WordPress-specifiek
   ========================================================================== */

/* admin bar duwt de sticky header naar beneden */
.admin-bar .site-header { top: 32px; }
@media screen and (max-width: 782px) { .admin-bar .site-header { top: 46px; } }

/* standaard blok-uitlijning binnen .proza */
.proza .alignwide, .proza .alignfull { margin-left: 0; margin-right: 0; max-width: 100%; }
.proza figure { margin: 2em 0; }
.proza figure img { border-radius: var(--radius-s); }
.proza figcaption { font-size: .88rem; color: var(--grijs); margin-top: .6em; }
.proza blockquote {
  margin: 2em 0; padding: 4px 0 4px 24px;
  border-left: 4px solid var(--geel);
  font-family: var(--serif); font-size: 1.15rem; color: var(--ink);
}
.proza table { width: 100%; border-collapse: collapse; margin: 2em 0; }
.proza th, .proza td { padding: 12px 14px; border-bottom: 1px solid var(--lijn); text-align: left; }
.wp-caption { max-width: 100%; }
.screen-reader-text {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* het Teamleader-formulier zelf, zowel plugin-shortcode als iframe-embed */
.tl-embed form { margin: 0; }
.tl-embed input[type="text"],
.tl-embed input[type="email"],
.tl-embed input[type="tel"],
.tl-embed input[type="number"],
.tl-embed select,
.tl-embed textarea {
  width: 100%; padding: 14px 16px;
  font-family: var(--sans); font-size: 1rem; color: var(--ink);
  background: var(--bg-zacht);
  border: 1px solid var(--lijn); border-radius: var(--radius-s);
  margin-bottom: 14px;
  transition: border-color .15s ease, background-color .15s ease;
}
.tl-embed textarea { min-height: 140px; resize: vertical; }
.tl-embed input:focus, .tl-embed select:focus, .tl-embed textarea:focus {
  background: #fff; border-color: var(--ink); outline: none;
}
.tl-embed label { display: block; font-size: .9rem; font-weight: 500; color: var(--ink); margin-bottom: 6px; }
.tl-embed input[type="submit"], .tl-embed button[type="submit"] {
  width: auto; margin-top: 6px;
  background: var(--geel); color: #0a0a0a;
  font-size: .93rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase;
  padding: 16px 32px; border: 0; border-radius: 60px; cursor: pointer;
  box-shadow: 0 6px 18px rgba(232, 212, 0, .35);
  transition: transform .18s ease, background-color .18s ease;
}
.tl-embed input[type="submit"]:hover, .tl-embed button[type="submit"]:hover {
  background: var(--geel-donker); transform: translateY(-2px);
}

/* ==========================================================================
   Bescherming tegen globale knopstijlen van page builders

   Elementor (en sommige andere plugins) zetten een globale kleur op elk
   <button>. Die regels laden na deze stylesheet en winnen bij gelijke
   specificiteit — met zwarte tekst op een zwarte knop tot gevolg. De
   selectors hieronder zijn daarom één niveau specifieker.
   ========================================================================== */
.site-header .nav-toggle {
  background: transparent;
  color: var(--ink);
}
.form-kaart .form-schakelaar button {
  background: transparent;
  color: var(--grijs);
}
.form-kaart .form-schakelaar button:hover { color: var(--ink); }
.form-kaart .form-schakelaar button[aria-selected="true"] {
  background: #fff;
  color: var(--ink);
  box-shadow: 0 1px 2px rgba(41, 45, 61, .08), 0 4px 12px rgba(41, 45, 61, .08);
}


/* ── Opsomming in de hero ─────────────────────────────────────────────── */
.hero__punten {
	list-style: none;
	margin: 0 0 2rem;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: .7rem;
	max-width: 46rem;
}
.hero__punten li {
	position: relative;
	padding-left: 2rem;
	line-height: 1.55;
}
.hero__punten li::before {
	content: "";
	position: absolute;
	left: .25rem;
	top: .45em;
	width: .95rem;
	height: .5rem;
	border-left: .17rem solid var(--geel);
	border-bottom: .17rem solid var(--geel);
	transform: rotate(-45deg);
}
.hero__punten strong { color: var(--wit); }
