/* gevelwerken.org: eigen huisstijl (staalblauw, baksteen-terracotta, warm steengrijs, serif-koppen) */
:root {
  --navy: #1e3a5f;
  --navy-d: #14283f;
  --navy-l: #2c5282;
  --brick: #c2410c;
  --brick-d: #9a3412;
  --brick-l: #fbe9df;
  --sand: #f6f2ec;
  --sand-d: #e8e0d5;
  --ink: #1b1f24;
  --ink-2: #3f4650;
  --muted: #6b727c;
  --line: #ddd6cc;
  --white: #ffffff;
  --serif: Georgia, "Times New Roman", "DejaVu Serif", serif;
  --sans: "Segoe UI", system-ui, -apple-system, "Helvetica Neue", Arial, sans-serif;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: var(--sans); color: var(--ink); background: var(--white); line-height: 1.65; }
.wrap { max-width: 1180px; margin: 0 auto; padding: 0 22px; }
a { color: var(--navy-l); }
a:hover { color: var(--brick); }
img { max-width: 100%; height: auto; display: block; }
h1, h2, h3 { font-family: var(--serif); font-weight: 700; color: var(--navy-d); }

.skip { position: absolute; left: -999px; top: 0; background: var(--navy-d); color: #fff; padding: 10px 18px; z-index: 100; }
.skip:focus { left: 0; }

/* ===== Header: donkere balk ===== */
.site-header { background: var(--navy-d); color: #fff; position: relative; z-index: 20; border-bottom: 4px solid var(--brick); }
.header-inner { display: flex; align-items: center; gap: 18px; padding-top: 10px; padding-bottom: 10px; }
.brand { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; color: #fff; flex: 0 0 auto; }
.brand svg { flex: 0 0 auto; }
.brand-name { font-family: var(--serif); font-size: 1.28rem; font-weight: 700; letter-spacing: 0; white-space: nowrap; }
.brand-name b { color: #f6ad55; font-weight: 700; }
.brand-name i { color: #a7b4c2; font-style: normal; font-weight: 400; font-size: 0.95em; }

.main-nav { flex: 1 1 auto; min-width: 0; }
.main-nav ul { list-style: none; display: flex; flex-wrap: nowrap; gap: 0 18px; justify-content: center; }
.main-nav a { text-decoration: none; font-weight: 600; font-size: 0.8rem; color: #dbe4ee; white-space: nowrap; padding: 8px 0; border-bottom: 2px solid transparent; }
.main-nav a:hover, .main-nav a[aria-current="page"] { color: #fff; border-bottom-color: #f6ad55; }

.header-actions { display: flex; align-items: center; gap: 10px; flex: 0 0 auto; margin-left: auto; }
.lang-switch { font-weight: 700; font-size: 0.82rem; text-decoration: none; color: #fff; border: 1px solid rgba(255,255,255,0.45); border-radius: 4px; padding: 7px 10px; }
.lang-switch:hover { border-color: #f6ad55; color: #f6ad55; }

/* Hamburger (mobiel) */
.nav-toggle { display: none; }
.burger { display: none; flex-direction: column; justify-content: center; gap: 5px; width: 44px; height: 44px; padding: 10px; cursor: pointer; border: 1px solid rgba(255,255,255,0.45); border-radius: 4px; flex: 0 0 auto; }
.burger span { display: block; height: 3px; border-radius: 2px; background: #fff; transition: transform 0.2s, opacity 0.2s; }

/* ===== Knoppen ===== */
.btn { display: inline-block; background: var(--brick); color: #fff; font-weight: 700; text-decoration: none; border-radius: 4px; padding: 11px 20px; font-size: 0.92rem; white-space: nowrap; border: 0; }
.btn:hover { background: var(--brick-d); color: #fff; }
.btn-lg { padding: 15px 30px; font-size: 1.05rem; }

/* ===== Breadcrumbs ===== */
.crumbs { background: var(--white); border-bottom: 1px solid var(--line); font-size: 0.82rem; }
.crumbs ol { list-style: none; display: flex; flex-wrap: wrap; gap: 6px; padding: 9px 0; }
.crumbs li + li::before { content: "/"; margin-right: 6px; color: var(--muted); }
.crumbs a { color: var(--muted); text-decoration: none; }
.crumbs a:hover { color: var(--brick); }
.crumbs span { color: var(--ink-2); font-weight: 600; }

/* ===== Hero: licht steengrijs, tekst links, beeld rechts ===== */
.hero { background: var(--sand); border-bottom: 1px solid var(--sand-d); padding: 46px 0 44px; }
.hero-grid { display: grid; grid-template-columns: minmax(0, 1fr) 440px; gap: 56px; align-items: center; }
.hero h1 { font-size: clamp(1.8rem, 3.4vw, 2.6rem); line-height: 1.12; letter-spacing: -0.3px; }
.hero-copy p { margin-top: 16px; color: var(--ink-2); font-size: 1.02rem; }
.hero-bullets { list-style: none; display: flex; flex-wrap: wrap; gap: 8px 22px; margin-top: 18px; }
.hero-bullets li { font-weight: 600; color: var(--navy-d); font-size: 0.9rem; }
.hero-bullets li::before { content: "\2714"; color: var(--brick); margin-right: 8px; }
.hero-actions { margin-top: 24px; }
.hero-media { margin: 0; }
.hero-media img { width: 100%; border-radius: 6px; border-left: 6px solid var(--brick); box-shadow: 0 18px 40px rgba(20, 40, 63, 0.18); }

/* ===== Layout: content + sidebar ===== */
.layout { display: grid; grid-template-columns: minmax(0, 1fr) 360px; gap: 52px; align-items: start; padding-top: 40px; padding-bottom: 36px; }
.page-content { min-width: 0; }
.page-content section { margin-bottom: 42px; }
.page-content h2 { font-size: 1.55rem; line-height: 1.25; margin-bottom: 14px; }
.page-content h2::after { content: ""; display: block; width: 48px; height: 3px; background: var(--brick); margin-top: 8px; }
.page-content h3 { font-size: 1.12rem; margin: 20px 0 6px; }
.page-content p { margin-bottom: 13px; color: var(--ink-2); }
.page-content ul, .page-content ol { margin: 0 0 13px 22px; color: var(--ink-2); }
.page-content li { margin-bottom: 8px; }
.page-content li strong, .page-content p strong { color: var(--ink); }

/* Afbeeldingen in content */
.page-content figure { margin: 22px 0 28px; }
.page-content figure img { width: 100%; border-radius: 6px; border: 1px solid var(--line); }
.page-content figcaption { font-size: 0.84rem; color: var(--muted); margin-top: 8px; font-style: italic; }

/* Tabellen */
.page-content table { width: 100%; border-collapse: collapse; margin: 16px 0 20px; font-size: 0.92rem; border: 1px solid var(--line); }
.page-content th { background: var(--navy-d); color: #fff; text-align: left; padding: 10px 14px; font-weight: 600; }
.page-content td { padding: 10px 14px; border-bottom: 1px solid var(--line); color: var(--ink-2); vertical-align: top; }
.page-content tr:nth-child(even) td { background: var(--sand); }
.page-content td strong { color: var(--ink); }
.page-content table.compare td:first-child { font-weight: 600; color: var(--ink); }
.table-scroll { overflow-x: auto; contain: inline-size; }

/* Uitgelicht blok (non-commodity laag) */
.tip { background: var(--sand); border: 1px solid var(--sand-d); border-left: 5px solid var(--navy-l); border-radius: 0 6px 6px 0; padding: 18px 22px; margin: 20px 0 24px; }
.tip p { margin-bottom: 8px; }
.tip p:last-child { margin-bottom: 0; }
.tip strong { color: var(--navy-d); }

/* Stappen */
.steps { counter-reset: step; list-style: none; margin-left: 0 !important; }
.steps li { counter-increment: step; position: relative; padding-left: 48px; margin-bottom: 14px; }
.steps li::before { content: counter(step); position: absolute; left: 0; top: 1px; width: 32px; height: 32px; border-radius: 4px; background: var(--brick); color: #fff; font-weight: 700; font-family: var(--serif); font-size: 1rem; display: flex; align-items: center; justify-content: center; }

/* Kaarten */
.cards { list-style: none; margin: 18px 0 0 !important; display: grid; gap: 16px; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); }
.cards li { margin: 0; }
.cards a { display: block; height: 100%; border: 1px solid var(--line); border-top: 4px solid var(--brick); border-radius: 0 0 6px 6px; padding: 18px; text-decoration: none; background: var(--sand); transition: background 0.15s; }
.cards a:hover { background: var(--brick-l); }
.cards h3 { color: var(--navy-d); font-size: 1.05rem; margin: 0 0 6px; }
.cards p { color: var(--ink-2); font-size: 0.88rem; margin: 0; }

/* Gerelateerd */
.related { background: var(--white); border: 1px solid var(--line); border-radius: 6px; padding: 20px 24px; }
.related h2 { font-size: 1.15rem; }
.related h2::after { display: none; }
.related ul { margin-bottom: 0; }

/* FAQ */
.faq h2 { font-size: 1.55rem; margin-bottom: 14px; }
.faq details { border: 1px solid var(--line); border-radius: 6px; margin-bottom: 10px; background: var(--sand); }
.faq summary { cursor: pointer; font-weight: 700; padding: 13px 18px; color: var(--navy-d); }
.faq summary:hover { color: var(--brick); }
.faq details p { padding: 0 18px 14px; margin: 0; color: var(--ink-2); }

/* ===== Sidebar ===== */
.sidebar { position: sticky; top: 16px; }
.form-card { background: var(--white); border: 1px solid var(--line); border-radius: 6px; overflow: hidden; box-shadow: 0 14px 34px rgba(20, 40, 63, 0.12); }
.form-card h2 { background: var(--navy-d); color: #fff; font-size: 1.15rem; padding: 14px 22px; margin: 0; }
.form-card > p { color: var(--muted); font-size: 0.88rem; margin: 0; padding: 12px 22px 4px; }
.offerte-form { display: flex; flex-direction: column; gap: 10px; padding: 10px 22px 22px; }
.offerte-form .form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.offerte-form .form-row { display: flex; flex-direction: column; gap: 4px; min-width: 0; }
.offerte-form label { font-size: 0.8rem; font-weight: 600; color: var(--ink-2); }
.offerte-form input, .offerte-form select, .offerte-form textarea { width: 100%; font: inherit; font-size: 0.95rem; color: var(--ink); background: #fff; border: 1px solid #c9c1b6; border-radius: 4px; padding: 9px 11px; }
.offerte-form input:focus, .offerte-form select:focus, .offerte-form textarea:focus { outline: 2px solid var(--navy-l); outline-offset: 1px; border-color: var(--navy-l); }
.offerte-form textarea { resize: vertical; }
.offerte-form .form-check { display: flex; gap: 8px; align-items: flex-start; font-size: 0.8rem; color: var(--ink-2); }
.offerte-form .form-check input { width: auto; margin-top: 3px; }
.offerte-form .btn { cursor: pointer; width: 100%; margin-top: 4px; font: inherit; font-weight: 700; }
.offerte-form .botcheck { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }
@media (max-width: 420px) { .offerte-form .form-grid { grid-template-columns: 1fr; } }
.form-consent { font-size: 0.76rem; color: var(--muted); margin: 0; padding: 0 22px 18px; line-height: 1.5; }
.form-consent a { color: var(--navy-l); }
.cluster-nav { background: #fff; border: 1px solid var(--line); border-radius: 6px; padding: 18px 20px; margin-top: 18px; }
.cluster-nav h2 { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 1px; color: var(--brick); margin-bottom: 10px; font-family: var(--sans); }
.cluster-nav ul { list-style: none; }
.cluster-nav li { margin: 0; border-top: 1px solid var(--line); }
.cluster-nav li:first-child { border-top: 0; }
.cluster-nav a { display: block; padding: 9px 0; font-size: 0.92rem; font-weight: 600; color: var(--ink-2); text-decoration: none; }
.cluster-nav a:hover { color: var(--brick); }
.usp-box { background: var(--sand); border: 1px solid var(--sand-d); border-radius: 6px; padding: 16px 20px; margin-top: 18px; }
.usp-box ul { list-style: none; }
.usp-box li { font-weight: 600; font-size: 0.88rem; color: var(--ink-2); margin-bottom: 8px; }
.usp-box li:last-child { margin-bottom: 0; }
.usp-box li::before { content: "\2714"; color: var(--brick); margin-right: 8px; }

/* Centerpiece: dienstkeuze-chips direct na de intro */
.centerpiece { background: var(--white); border: 1px solid var(--line); border-left: 6px solid var(--navy-d); border-radius: 0 6px 6px 0; padding: 20px 22px; margin: 0 0 34px; }
.centerpiece h2 { font-size: 1.2rem; margin-bottom: 6px; }
.centerpiece h2::after { display: none; }
.centerpiece p { margin-bottom: 12px; }
.chips { display: flex; flex-wrap: wrap; gap: 8px; list-style: none; margin: 0 0 14px !important; }
.chips li { margin: 0; }
.chips a { display: inline-block; padding: 7px 13px; border-radius: 4px; border: 1px solid var(--navy-l); color: var(--navy-d); text-decoration: none; font-weight: 600; font-size: 0.86rem; background: var(--sand); }
.chips a:hover { background: var(--navy-d); color: #fff; border-color: var(--navy-d); }

/* Conversieband halverwege */
.band { background: var(--sand); border: 1px solid var(--sand-d); border-top: 4px solid var(--navy-d); border-radius: 0 0 6px 6px; padding: 22px 24px; margin: 8px 0 36px; display: flex; flex-wrap: wrap; gap: 14px 24px; align-items: center; justify-content: space-between; }
.band p { color: var(--navy-d); margin: 0; font-weight: 700; font-family: var(--serif); font-size: 1.12rem; }

/* Zichtbare nakijkdatum */
.dateline { font-size: 0.78rem; color: var(--muted); margin: -6px 0 18px; text-transform: uppercase; letter-spacing: 0.6px; }

/* Samenvattend blok */
.kernpunten { background: var(--sand); border: 1px solid var(--sand-d); border-left: 5px solid var(--brick); border-radius: 0 6px 6px 0; padding: 22px 26px; margin: 28px 0; }
.kernpunten h2 { font-size: 1.15rem; margin: 0 0 12px; }
.kernpunten h2::after { display: none; }
.kernpunten ol { margin: 0; padding-left: 22px; }
.kernpunten li { margin: 7px 0; line-height: 1.55; }
.kernpunten li b { color: var(--ink); }

/* ===== Footer ===== */
.site-footer { background: var(--navy-d); color: #a7b4c2; margin-top: 24px; font-size: 0.92rem; border-top: 4px solid var(--brick); }
.site-footer a { color: #d3dde8; text-decoration: none; }
.site-footer a:hover { color: #f6ad55; }
.footer-grid { display: grid; gap: 30px; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); padding-top: 44px; padding-bottom: 30px; }
.footer-about .brand-name { color: #fff; }
.footer-about p { margin-top: 14px; line-height: 1.7; }
.footer-col h2 { color: #fff; font-size: 0.82rem; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 14px; font-family: var(--sans); }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 9px; }
.footer-bottom { border-top: 1px solid rgba(255, 255, 255, 0.12); padding-top: 16px; padding-bottom: 22px; display: flex; flex-wrap: wrap; gap: 6px 30px; justify-content: space-between; font-size: 0.8rem; color: #7f8d9b; }

/* ===== Responsief ===== */
@media (max-width: 1240px) {
  .burger { display: flex; order: 4; }
  .header-actions { margin-left: auto; order: 3; }
  .header-actions .btn { display: none; }
  .main-nav { display: none; position: absolute; top: 100%; left: 0; right: 0; background: var(--navy-d); border-bottom: 4px solid var(--brick); box-shadow: 0 18px 30px rgba(20, 40, 63, 0.25); padding: 8px 22px 16px; }
  .nav-toggle:checked ~ .main-nav { display: block; }
  .nav-toggle:checked ~ .burger span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
  .nav-toggle:checked ~ .burger span:nth-child(2) { opacity: 0; }
  .nav-toggle:checked ~ .burger span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
  .main-nav ul { flex-direction: column; gap: 0; }
  .main-nav li { border-bottom: 1px solid rgba(255,255,255,0.12); }
  .main-nav li:last-child { border-bottom: 0; }
  .main-nav a { display: block; padding: 13px 4px; font-size: 1rem; border-bottom: 0; color: #fff; }
  .hero { padding: 34px 0; }
  .hero-grid { grid-template-columns: 1fr; gap: 26px; }
  .hero-media { max-width: 560px; }
  .layout { display: flex; flex-direction: column; gap: 34px; }
  .sidebar { position: static; order: -1; width: 100%; max-width: 640px; }
}
@media (max-width: 480px) {
  .brand-name { font-size: 1.08rem; }
  .header-inner { gap: 12px; }
  .page-content h2 { font-size: 1.32rem; }
}
