/* ===========================================
   Emiel Vakman — Hoofdstylesheet
   Mobile-first, zwart + oranje huisstijl
   =========================================== */

:root {
	--black: #0F0F0F;
	--black-soft: #1a1a1a;
	--orange: #FF8300;
	--orange-dark: #E67500;
	--orange-soft: rgba(255, 131, 0, 0.1);
	--white: #FFFFFF;
	--gray-bg: #F8F9FA;
	--gray-line: #E5E7EB;
	--gray-text: #334155;
	--gray-soft: #94A3B8;
	--green: #16A34A;
	--green-dark: #15803D;
	--shadow-sm: 0 1px 3px rgba(0,0,0,0.04), 0 8px 24px rgba(0,0,0,0.03);
	--shadow-md: 0 8px 24px rgba(0,0,0,0.08);
	--radius: 12px;
	--radius-lg: 16px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
	color: var(--gray-text);
	background: var(--white);
	line-height: 1.6;
	font-size: 17px;
	-webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4 { color: var(--black); font-weight: 700; line-height: 1.2; letter-spacing: -0.5px; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
button { font-family: inherit; cursor: pointer; }

/* ---------- Container ---------- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.container.narrow { max-width: 760px; }

/* ---------- Eyebrow ---------- */
.eyebrow {
	display: inline-block; color: var(--orange); font-weight: 700;
	font-size: 13px; letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 12px;
}

.accent { color: var(--orange); }

/* ---------- Section base ---------- */
.section { padding: 64px 0; }
.section.alt-bg { background: var(--gray-bg); }
.section-head { text-align: center; max-width: 700px; margin: 0 auto 48px; }
.section-head h2 { font-size: 28px; margin-bottom: 12px; }
.section-head p { color: var(--gray-text); font-size: 17px; }

/* ===========================================
   STICKY HEADER
   =========================================== */
.site-header {
	position: sticky; top: 0; z-index: 100;
	background: var(--white);
	border-bottom: 1px solid var(--gray-line);
}
.header-inner {
	display: flex; align-items: center; justify-content: space-between;
	padding: 12px 20px; max-width: 1400px; margin: 0 auto;
	height: 64px;
}
.site-logo {
	font-weight: 800; font-size: 18px; color: var(--black); letter-spacing: -0.5px;
}
.site-logo .logo-orange { color: var(--orange); }
.custom-logo { max-height: 48px; width: auto; }

.nav-desktop { display: none; }
.nav-list { display: flex; gap: 32px; list-style: none; font-weight: 500; font-size: 15px; }
.nav-list a { color: var(--black); transition: color 0.2s; }
.nav-list a:hover, .nav-list .current-menu-item a { color: var(--orange); }

.header-actions { display: flex; align-items: center; gap: 8px; }
.phone-btn {
	width: 44px; height: 44px; border-radius: 50%;
	background: var(--gray-bg); display: flex; align-items: center; justify-content: center;
	color: var(--black); transition: background 0.2s;
}
.phone-btn:hover { background: var(--gray-line); }
.phone-text { display: none; font-weight: 600; color: var(--black); font-size: 15px; }
.btn-primary, .header-cta {
	background: var(--orange); color: var(--white);
	padding: 12px 20px; border-radius: 8px; font-weight: 600; font-size: 14px;
	transition: background 0.2s; border: none; display: inline-flex; align-items: center; gap: 6px;
}
.btn-primary:hover, .header-cta:hover { background: var(--orange-dark); color: var(--white); }
.hamburger {
	width: 44px; height: 44px; display: flex; align-items: center; justify-content: center;
	color: var(--black); background: transparent; border: none;
}

.mobile-menu {
	background: var(--white); border-top: 1px solid var(--gray-line);
	padding: 16px 20px;
}
.mobile-nav-list, .mobile-menu ul {
	list-style: none; display: flex; flex-direction: column; gap: 4px;
}
.mobile-menu a {
	display: block; padding: 12px 0; color: var(--black);
	font-weight: 500; font-size: 17px; border-bottom: 1px solid var(--gray-line);
}
.mobile-menu a:hover { color: var(--orange); }

/* ===========================================
   HERO (homepage)
   =========================================== */
.hero {
	position: relative; min-height: 80vh; overflow: hidden;
	display: flex; align-items: center;
}
.hero-bg {
	position: absolute; inset: 0;
	background-color: var(--black-soft);
	background-image: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 50%, #1a1a1a 100%),
		radial-gradient(ellipse at top right, rgba(255,131,0,0.15) 0%, transparent 60%);
	background-size: cover; background-position: center;
	display: flex; align-items: center; justify-content: center;
}
.hero-bg::before {
	content: ''; position: absolute; inset: 0;
	background:
		linear-gradient(to right, rgba(15,15,15,0.85) 0%, rgba(15,15,15,0.5) 60%, rgba(15,15,15,0.2) 100%),
		repeating-linear-gradient(45deg, transparent 0, transparent 40px, rgba(255,255,255,0.02) 40px, rgba(255,255,255,0.02) 41px);
}
.hero-content {
	position: relative; z-index: 2;
	padding: 60px 20px; max-width: 700px; margin: 0 auto;
}
.hero h1 {
	color: var(--white); font-size: 36px; font-weight: 800;
	letter-spacing: -1px; margin: 16px 0 20px;
}
.hero .eyebrow { color: var(--orange); }
.hero-sub {
	color: rgba(255,255,255,0.85); font-size: 18px; margin-bottom: 32px;
	max-width: 560px;
}
.hero-ctas { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 28px; }
.btn-hero-primary {
	background: var(--orange); color: var(--white);
	padding: 16px 28px; border-radius: 10px; font-weight: 600; font-size: 16px;
	display: inline-flex; align-items: center; gap: 8px;
	transition: background 0.2s;
}
.btn-hero-primary:hover { background: var(--orange-dark); color: var(--white); }
.btn-hero-secondary {
	background: transparent; color: var(--white);
	padding: 16px 28px; border-radius: 10px; font-weight: 600; font-size: 16px;
	border: 2px solid rgba(255,255,255,0.3);
	transition: border-color 0.2s, background 0.2s;
}
.btn-hero-secondary:hover { border-color: var(--white); background: rgba(255,255,255,0.05); color: var(--white); }
.trust-strip {
	display: flex; flex-wrap: wrap; gap: 20px;
	color: rgba(255,255,255,0.85); font-size: 14px; font-weight: 500;
}
.trust-item { display: flex; align-items: center; gap: 6px; }
.trust-item svg { color: var(--orange); flex-shrink: 0; }

/* ===========================================
   PAGE HERO (kleinere variant voor sub-pagina's)
   =========================================== */
.page-hero {
	background: var(--gray-bg);
	padding: 56px 0 40px;
	border-bottom: 1px solid var(--gray-line);
}
.page-hero .container { text-align: left; }
.page-hero h1 { font-size: 36px; margin-bottom: 12px; }
.page-hero-sub { font-size: 18px; color: var(--gray-text); max-width: 680px; }

/* ===========================================
   TWEE DIENSTEN (homepage 2-grid)
   =========================================== */
.twee-grid { display: grid; gap: 20px; grid-template-columns: 1fr; }
.dienst-card-big {
	background: var(--white); border: 1px solid var(--gray-line);
	border-radius: var(--radius-lg); overflow: hidden;
	color: inherit; transition: transform 0.3s, box-shadow 0.3s;
	display: flex; flex-direction: column;
}
.dienst-card-big:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.dienst-photo {
	aspect-ratio: 16/9; position: relative;
	background: linear-gradient(135deg, #2a2a2a, #1a1a1a);
	display: flex; align-items: center; justify-content: center;
	overflow: hidden;
}
.dienst-photo img { width: 100%; height: 100%; object-fit: cover; }
.dienst-photo.placeholder::before {
	content: ''; position: absolute; inset: 0;
	background: repeating-linear-gradient(135deg, transparent 0, transparent 30px, rgba(255,131,0,0.06) 30px, rgba(255,131,0,0.06) 31px);
}
.dienst-body { padding: 24px 24px 28px; }
.dienst-body h3 { font-size: 22px; margin-bottom: 10px; }
.dienst-body p { color: var(--gray-text); font-size: 16px; margin-bottom: 16px; }
.dienst-link { color: var(--orange); font-weight: 600; font-size: 15px; }
.dienst-card-big:hover .dienst-link { text-decoration: underline; }

.placeholder-label {
	position: relative; z-index: 2;
	color: rgba(255,255,255,0.4); font-size: 13px; font-weight: 500;
	text-align: center; padding: 0 20px; line-height: 1.5;
}

/* ===========================================
   BELOFTES (3-grid)
   =========================================== */
.beloftes { background: var(--gray-bg); }
.beloftes-grid { display: grid; gap: 20px; grid-template-columns: 1fr; }
.belofte-card {
	background: var(--white); padding: 32px 28px; border-radius: var(--radius-lg);
	box-shadow: var(--shadow-sm); border: 1px solid var(--gray-line);
}
.belofte-icon {
	width: 56px; height: 56px; border-radius: 14px;
	background: var(--orange-soft); color: var(--orange);
	display: flex; align-items: center; justify-content: center;
	margin-bottom: 20px;
}
.belofte-card h3 { font-size: 20px; margin-bottom: 10px; }
.belofte-card p { color: var(--gray-text); font-size: 16px; }

/* ===========================================
   PORTFOLIO (donker blok)
   =========================================== */
.portfolio-preview { background: var(--black); color: var(--white); }
.portfolio-preview .section-head h2 { color: var(--white); }
.portfolio-preview .section-head p { color: rgba(255,255,255,0.7); }
.portfolio-grid { display: grid; gap: 20px; grid-template-columns: 1fr; }
.project-card, .project-card-large {
	background: var(--black-soft); border: 1px solid rgba(255,255,255,0.08);
	border-radius: var(--radius-lg); overflow: hidden;
	color: inherit; transition: border-color 0.3s;
	display: flex; flex-direction: column;
}
.project-card:hover, .project-card-large:hover { border-color: var(--orange); }
.project-photo {
	aspect-ratio: 4/3; position: relative;
	background: linear-gradient(135deg, #333, #1a1a1a);
	display: flex; align-items: center; justify-content: center;
	overflow: hidden;
}
.project-photo img { width: 100%; height: 100%; object-fit: cover; }
.project-photo::before {
	content: ''; position: absolute; inset: 0; z-index: 1;
	background: repeating-linear-gradient(45deg, transparent 0, transparent 25px, rgba(255,255,255,0.02) 25px, rgba(255,255,255,0.02) 26px);
	pointer-events: none;
}
.project-card .project-photo img + .placeholder-label { display: none; }
.project-body { padding: 20px 24px 24px; }
.project-card .project-body h3, .project-card-large .project-body h3 { color: var(--white); font-size: 18px; margin-bottom: 6px; }
.project-meta { color: rgba(255,255,255,0.55); font-size: 14px; }
.project-excerpt { color: rgba(255,255,255,0.75); font-size: 14px; margin-top: 8px; line-height: 1.5; }
.portfolio-cta { text-align: center; margin-top: 40px; }
.btn-portfolio {
	background: var(--orange); color: var(--white);
	padding: 14px 26px; border-radius: 10px; font-weight: 600;
	display: inline-flex; align-items: center; gap: 6px;
}
.btn-portfolio:hover { background: var(--orange-dark); color: var(--white); }

/* ===========================================
   PROJECTEN ARCHIEF (page-projecten)
   =========================================== */
.projecten-archief { background: var(--white); }
.projecten-grid { display: grid; gap: 20px; grid-template-columns: 1fr; }
.projecten-archief .project-card-large {
	background: var(--white); border-color: var(--gray-line);
}
.projecten-archief .project-card-large .project-body h3 { color: var(--black); }
.projecten-archief .project-meta { color: var(--gray-soft); }
.projecten-archief .project-excerpt { color: var(--gray-text); }
.empty-state {
	text-align: center; padding: 80px 20px;
	background: var(--gray-bg); border-radius: var(--radius-lg);
}
.empty-state h3 { font-size: 24px; margin-bottom: 12px; }
.empty-state p { color: var(--gray-text); margin-bottom: 24px; }
.eigenhuis-box {
	background: var(--gray-bg); padding: 32px 28px; border-radius: var(--radius-lg);
	border-left: 4px solid var(--orange);
}
.eigenhuis-box h3 { font-size: 20px; margin-bottom: 8px; }

/* ===========================================
   REVIEWS
   =========================================== */
.reviews { background: var(--gray-bg); }
.reviews-grid { display: grid; gap: 20px; grid-template-columns: 1fr; }
.review-card {
	background: var(--white); padding: 28px; border-radius: var(--radius-lg);
	border: 1px solid var(--gray-line); box-shadow: var(--shadow-sm);
}
.stars { color: var(--orange); margin-bottom: 14px; font-size: 16px; letter-spacing: 2px; }
.review-quote { color: var(--black); font-size: 16px; margin-bottom: 20px; font-style: italic; line-height: 1.6; }
.review-author { display: flex; align-items: center; gap: 12px; }
.avatar {
	width: 44px; height: 44px; border-radius: 50%;
	background: linear-gradient(135deg, var(--orange), var(--orange-dark));
	color: var(--white); display: flex; align-items: center; justify-content: center;
	font-weight: 700; font-size: 16px;
}
.review-name { font-weight: 700; color: var(--black); font-size: 15px; }

/* ===========================================
   FINAL CTA
   =========================================== */
.final-cta {
	background: var(--black); color: var(--white);
	border-top: 4px solid var(--orange);
	text-align: center; padding: 72px 0;
}
.final-cta h2 { color: var(--white); font-size: 28px; margin-bottom: 12px; }
.final-cta p { color: rgba(255,255,255,0.75); font-size: 17px; max-width: 560px; margin: 0 auto 32px; }
.final-cta-buttons { display: flex; flex-direction: column; gap: 12px; max-width: 360px; margin: 0 auto; }

.btn-whatsapp {
	background: var(--green); color: var(--white);
	padding: 16px 24px; border-radius: 10px; font-weight: 600; font-size: 16px;
	display: inline-flex; align-items: center; justify-content: center; gap: 10px;
}
.btn-whatsapp:hover { background: var(--green-dark); color: var(--white); }
.btn-final-primary {
	background: var(--orange); color: var(--white);
	padding: 16px 24px; border-radius: 10px; font-weight: 600; font-size: 16px;
	display: inline-flex; align-items: center; justify-content: center; gap: 10px;
}
.btn-final-primary:hover { background: var(--orange-dark); color: var(--white); }
.btn-final-outline {
	background: transparent; color: var(--white);
	padding: 16px 24px; border-radius: 10px; font-weight: 600; font-size: 16px;
	border: 2px solid rgba(255,255,255,0.3);
	display: inline-flex; align-items: center; justify-content: center; gap: 10px;
}
.btn-final-outline:hover { border-color: var(--white); color: var(--white); }

/* ===========================================
   DIENSTEN PAGINA (split-layout)
   =========================================== */
.dienst-block { padding: 64px 0; }
.dienst-split {
	display: grid; gap: 32px; grid-template-columns: 1fr;
	align-items: start;
}
.dienst-tag {
	display: inline-block; color: var(--orange); font-weight: 800; font-size: 24px;
	letter-spacing: -1px; margin-bottom: 8px;
}
.dienst-text h2 { font-size: 28px; margin-bottom: 16px; }
.dienst-text > p { font-size: 17px; margin-bottom: 24px; color: var(--gray-text); }
.dienst-list { list-style: none; margin-bottom: 32px; }
.dienst-list li {
	padding: 14px 0; border-bottom: 1px solid var(--gray-line);
	font-size: 16px; color: var(--gray-text);
}
.dienst-list li strong { color: var(--black); display: block; margin-bottom: 4px; }
.dienst-list li:last-child { border-bottom: none; }
.dienst-image-large {
	aspect-ratio: 4/5; border-radius: var(--radius-lg); overflow: hidden;
	background: linear-gradient(135deg, #2a2a2a, #1a1a1a);
	display: flex; align-items: center; justify-content: center;
	position: relative;
}
.dienst-image-large.placeholder::before {
	content: ''; position: absolute; inset: 0;
	background: repeating-linear-gradient(135deg, transparent 0, transparent 30px, rgba(255,131,0,0.06) 30px, rgba(255,131,0,0.06) 31px);
}

.btn-outline-dark {
	border: 2px solid var(--black); color: var(--black);
	padding: 14px 26px; border-radius: 10px; font-weight: 600; font-size: 15px;
	display: inline-flex; align-items: center; gap: 6px;
	background: transparent; transition: background 0.2s, color 0.2s;
}
.btn-outline-dark:hover { background: var(--black); color: var(--white); }

.onzeker-section { background: var(--gray-bg); }
.onzeker-box {
	background: var(--white); padding: 40px 32px; border-radius: var(--radius-lg);
	border-left: 4px solid var(--orange); text-align: center;
}
.onzeker-box h2 { font-size: 24px; margin-bottom: 12px; }
.onzeker-box p { margin-bottom: 24px; }
.onzeker-buttons { display: flex; flex-direction: column; gap: 12px; max-width: 320px; margin: 0 auto; }

/* ===========================================
   OVER EMIEL
   =========================================== */
.over-hero {
	background: var(--gray-bg);
	padding: 56px 0;
	border-bottom: 1px solid var(--gray-line);
}
.over-grid {
	display: grid; gap: 32px; grid-template-columns: 1fr; align-items: center;
}
.over-text h1 { font-size: 36px; margin: 16px 0 16px; }
.over-photo {
	aspect-ratio: 4/5; border-radius: var(--radius-lg); overflow: hidden;
	background: linear-gradient(135deg, #2a2a2a, #1a1a1a);
	display: flex; align-items: center; justify-content: center;
	position: relative;
}
.over-photo.placeholder::before {
	content: ''; position: absolute; inset: 0;
	background: repeating-linear-gradient(135deg, transparent 0, transparent 30px, rgba(255,131,0,0.06) 30px, rgba(255,131,0,0.06) 31px);
}
.over-verhaal .lead {
	font-size: 22px; color: var(--black); font-weight: 500;
	margin-bottom: 24px; line-height: 1.4;
}
.over-verhaal p { margin-bottom: 20px; font-size: 17px; }
.werkgebied .section-head { text-align: left; margin-bottom: 24px; }

/* ===========================================
   PROJECT-DETAIL (single project)
   =========================================== */
.single-project-hero {
	background: var(--gray-bg); padding: 56px 0 40px; border-bottom: 1px solid var(--gray-line);
}
.back-link {
	display: inline-block; color: var(--orange); font-weight: 600; margin-bottom: 16px;
}
.back-link:hover { text-decoration: underline; }
.single-project-hero h1 { font-size: 32px; margin: 12px 0 20px; }
.project-meta-bar {
	display: flex; flex-wrap: wrap; gap: 24px;
	color: var(--gray-text); font-size: 15px;
}
.voor-na-grid {
	display: grid; gap: 20px; grid-template-columns: 1fr;
}
.voor-na-item { display: flex; flex-direction: column; gap: 8px; }
.voor-na-photo {
	aspect-ratio: 4/3; border-radius: var(--radius); overflow: hidden;
	background: linear-gradient(135deg, #2a2a2a, #1a1a1a);
	display: flex; align-items: center; justify-content: center;
	position: relative;
}
.voor-na-photo img { width: 100%; height: 100%; object-fit: cover; }
.voor-na-item figcaption {
	font-weight: 700; color: var(--black); text-transform: uppercase;
	font-size: 13px; letter-spacing: 1.5px;
}
.project-content .project-block { margin-bottom: 40px; }
.project-content h2 {
	font-size: 22px; margin-bottom: 16px; color: var(--black);
	padding-bottom: 8px; border-bottom: 2px solid var(--orange);
	display: inline-block;
}

/* ===========================================
   CONTACT PAGINA
   =========================================== */
.contact-grid {
	display: grid; gap: 40px; grid-template-columns: 1fr;
}
.contact-block { margin-bottom: 24px; padding-bottom: 24px; border-bottom: 1px solid var(--gray-line); }
.contact-block:last-child { border-bottom: none; }
.contact-block h3 {
	font-size: 13px; text-transform: uppercase; letter-spacing: 1.5px;
	color: var(--gray-soft); margin-bottom: 8px; font-weight: 700;
}
.contact-link {
	font-size: 20px; color: var(--black); display: inline-block; margin-bottom: 4px;
}
.contact-link:hover { color: var(--orange); }
.muted { color: var(--gray-soft); font-size: 14px; }

.contact-form-wrap h2 { font-size: 22px; margin-bottom: 24px; }
.emiel-form { display: flex; flex-direction: column; gap: 16px; }
.emiel-form label {
	font-weight: 600; color: var(--black); font-size: 14px;
	display: block; margin-bottom: 6px;
}
.emiel-form input,
.emiel-form textarea {
	width: 100%; padding: 14px 16px; border: 1px solid var(--gray-line);
	border-radius: 8px; font-family: inherit; font-size: 16px;
	color: var(--black); background: var(--white);
	transition: border-color 0.2s;
}
.emiel-form input:focus,
.emiel-form textarea:focus {
	outline: none; border-color: var(--orange);
}
.emiel-form textarea { resize: vertical; min-height: 120px; }
.emiel-form button[type="submit"] {
	align-self: flex-start; border: none; cursor: pointer; padding: 14px 28px;
}
.form-success {
	background: rgba(22,163,74,0.1); border-left: 4px solid var(--green);
	padding: 16px 20px; border-radius: 8px; margin-bottom: 16px;
	color: var(--green-dark);
}
.form-error {
	background: rgba(220,38,38,0.1); border-left: 4px solid #dc2626;
	padding: 16px 20px; border-radius: 8px; margin-bottom: 16px;
	color: #dc2626;
}
.form-note { font-size: 13px; color: var(--gray-soft); margin-top: 12px; }
.form-note a { color: var(--orange); }

/* ===========================================
   FOOTER
   =========================================== */
.site-footer { background: var(--black-soft); color: rgba(255,255,255,0.7); padding: 56px 0 24px; }
.footer-inner { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.footer-grid { display: grid; gap: 36px; grid-template-columns: 1fr; }
.footer-col h4 {
	color: var(--white); font-size: 14px; margin-bottom: 14px;
	text-transform: uppercase; letter-spacing: 1.5px;
}
.footer-col p, .footer-col a {
	font-size: 14px; color: rgba(255,255,255,0.7); line-height: 1.9; display: block;
}
.footer-col a:hover { color: var(--orange); }
.footer-nav { list-style: none; }
.footer-nav a { padding: 2px 0; }
.footer-bottom {
	margin-top: 40px; padding-top: 24px;
	border-top: 1px solid rgba(255,255,255,0.1);
	text-align: center; font-size: 13px; color: rgba(255,255,255,0.4);
}
.footer-bottom a { color: rgba(255,255,255,0.6); display: inline; }
.footer-bottom a:hover { color: var(--orange); }

/* ===========================================
   ZWEVENDE WHATSAPP-KNOP
   =========================================== */
.whatsapp-float {
	position: fixed; bottom: 20px; right: 20px;
	width: 60px; height: 60px; border-radius: 50%;
	background: var(--green); color: var(--white);
	display: flex; align-items: center; justify-content: center;
	box-shadow: 0 8px 24px rgba(22,163,74,0.4);
	z-index: 99;
	transition: transform 0.2s, background 0.2s;
}
.whatsapp-float:hover { transform: scale(1.08); background: var(--green-dark); color: var(--white); }

/* ===========================================
   DESKTOP RESPONSIVE (768px+)
   =========================================== */
@media (min-width: 768px) {
	.header-inner { padding: 16px 40px; height: 72px; }
	.nav-desktop { display: block; }
	.phone-text { display: inline; margin-right: 8px; }
	.hamburger { display: none; }
	.mobile-menu { display: none !important; }

	.hero { padding: 80px 0; min-height: 90vh; }
	.hero-content { padding: 80px 60px; max-width: 1200px; }
	.hero h1 { font-size: 52px; }
	.hero-sub { font-size: 20px; }

	.section { padding: 96px 0; }
	.section-head h2 { font-size: 36px; }
	.page-hero h1 { font-size: 44px; }

	.twee-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
	.beloftes-grid { grid-template-columns: repeat(3, 1fr); }
	.portfolio-grid { grid-template-columns: repeat(3, 1fr); }
	.projecten-grid { grid-template-columns: repeat(3, 1fr); }
	.reviews-grid { grid-template-columns: repeat(3, 1fr); }

	.final-cta-buttons { flex-direction: row; max-width: none; justify-content: center; }
	.final-cta-buttons a { min-width: 200px; }
	.final-cta h2 { font-size: 36px; }
	.onzeker-buttons { flex-direction: row; max-width: none; justify-content: center; }

	.dienst-split { grid-template-columns: 1.2fr 1fr; gap: 64px; }
	.dienst-split.reversed { grid-template-columns: 1fr 1.2fr; }
	.dienst-text h2 { font-size: 32px; }

	.over-grid { grid-template-columns: 1.3fr 1fr; gap: 48px; }
	.over-text h1 { font-size: 44px; }

	.contact-grid { grid-template-columns: 1fr 1.4fr; }
	.voor-na-grid { grid-template-columns: 1fr 1fr; }

	.footer-grid { grid-template-columns: 1.5fr 1fr 1fr 1.5fr; }

	.whatsapp-float { display: none; }
}

@media (min-width: 1024px) {
	.hero h1 { font-size: 60px; }
	.section-head h2 { font-size: 40px; }
}

/* ===========================================
   WordPress alignment classes
   =========================================== */
.alignleft { float: left; margin-right: 20px; }
.alignright { float: right; margin-left: 20px; }
.aligncenter { display: block; margin-left: auto; margin-right: auto; }
.alignwide { max-width: 1200px; margin-left: auto; margin-right: auto; }
.alignfull { width: 100vw; margin-left: calc(50% - 50vw); }

/* Skip link voor accessibility */
.skip-link {
	position: absolute; left: -9999px;
	background: var(--orange); color: var(--white);
	padding: 8px 16px; z-index: 999;
}
.skip-link:focus { left: 16px; top: 16px; }
