/* ═══════════════════════════════════════════
   ENDE MEDIA — main.css
═══════════════════════════════════════════ */
:root {
  --oranje:       #E8620A;
  --oranje-helder:#FF7A20;
  --oranje-donker:#B84D08;
  --zwart:        #0A0A0A;
  --zwart-mid:    #141414;
  --zwart-zacht:  #1C1C1C;
  --grijs-donker: #2A2A2A;
  --grijs-mid:    #444444;
  --grijs-licht:  #888888;
  --grijs-mist:   #F0EFED;
  --wit:          #FAFAF8;
  --font-hoofd:   'Oswald', sans-serif;
  --font-body:    'DM Sans', sans-serif;
  --font-serif:   'Source Serif 4', serif;
  --max:          1200px;
  --radius:       4px;
  --overgang:     0.25s cubic-bezier(.4,0,.2,1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--zwart);
  color: var(--wit);
  line-height: 1.6;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ─── TOPBALK ─── */
.topbalk {
  background: var(--oranje);
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  height: 36px;
  overflow: hidden;
}
.topbalk-label {
  font-family: var(--font-hoofd);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  color: white;
  white-space: nowrap;
  background: rgba(0,0,0,0.25);
  padding: 4px 10px;
  border-radius: 2px;
  flex-shrink: 0;
}
.topbalk-ticker {
  font-size: 12px;
  color: white;
  white-space: nowrap;
  animation: ticker 28s linear infinite;
  opacity: 0.92;
}
@keyframes ticker { 0% { transform: translateX(100vw); } 100% { transform: translateX(-100%); } }

/* ─── NAVIGATIE ─── */
header {
  position: sticky;
  top: 0;
  z-index: 900;
  background: rgba(10,10,10,0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(232,98,10,0.2);
}
.nav-wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.logo { display: flex; flex-direction: column; line-height: 1; }
.logo-hoofd { font-family: var(--font-hoofd); font-size: 22px; font-weight: 700; letter-spacing: 2px; color: var(--oranje); }
.logo-sub { font-family: var(--font-body); font-size: 10px; color: var(--grijs-licht); letter-spacing: 1.5px; text-transform: uppercase; margin-top: 2px; }
.site-nav { display: flex; align-items: center; gap: 2px; }
.nav-link {
  font-family: var(--font-hoofd);
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  padding: 8px 14px;
  border-radius: var(--radius);
  transition: color var(--overgang);
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 14px; right: 14px;
  height: 1px;
  background: var(--oranje);
  transform: scaleX(0);
  transition: transform var(--overgang);
}
.nav-link:hover { color: white; }
.nav-link:hover::after, .nav-link.current-menu-item::after { transform: scaleX(1); }
.nav-link.current-menu-item { color: var(--oranje); }
.nav-cta {
  font-family: var(--font-hoofd);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  background: var(--oranje);
  color: white !important;
  padding: 9px 20px;
  border-radius: var(--radius);
  margin-left: 12px;
  transition: background var(--overgang), transform var(--overgang);
}
.nav-cta:hover { background: var(--oranje-helder) !important; transform: translateY(-1px); }
.nav-cta::after { display: none !important; }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}
.hamburger span { display: block; width: 24px; height: 2px; background: white; transition: all var(--overgang); }

/* WordPress menu override */
.site-nav ul { display: flex; align-items: center; gap: 2px; padding: 0; margin: 0; list-style: none; }
.site-nav ul li a { font-family: var(--font-hoofd); font-size: 13px; letter-spacing: 1px; text-transform: uppercase; color: rgba(255,255,255,0.65); padding: 8px 14px; display: block; transition: color var(--overgang); }
.site-nav ul li a:hover, .site-nav ul li.current-menu-item > a { color: var(--oranje); }
.site-nav ul li:last-child > a { background: var(--oranje); color: white; border-radius: var(--radius); margin-left: 12px; }
.site-nav ul li:last-child > a:hover { background: var(--oranje-helder); }

/* ─── HERO ─── */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--zwart-mid);
}
.hero-bg {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(232,98,10,0.08) 0%, transparent 50%),
              linear-gradient(to bottom, transparent 30%, rgba(10,10,10,0.95) 100%);
  z-index: 1;
}
.hero-grid {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(232,98,10,0.04) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(232,98,10,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  z-index: 0;
}
.hero-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.4;
}
.hero-placeholder {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
  display: flex; align-items: center; justify-content: center;
}
.hero-placeholder span { font-family: var(--font-hoofd); font-size: 11px; letter-spacing: 2px; color: rgba(255,255,255,0.08); text-transform: uppercase; }
.hero-content {
  position: relative; z-index: 2;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 32px 80px;
  width: 100%;
}
.hero-tag {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--oranje); margin-bottom: 20px;
}
.hero-tag::before { content: ''; display: block; width: 32px; height: 1px; background: var(--oranje); }
.hero-titel {
  font-family: var(--font-hoofd);
  font-size: clamp(44px, 7vw, 88px);
  font-weight: 700; line-height: 0.95; letter-spacing: -1px;
  color: white; max-width: 780px; margin-bottom: 24px;
}
.hero-titel span { color: var(--oranje); }
.hero-subtitel {
  font-family: var(--font-serif);
  font-size: clamp(16px, 2vw, 20px);
  font-weight: 300; font-style: italic;
  color: rgba(255,255,255,0.6);
  max-width: 520px; margin-bottom: 40px; line-height: 1.7;
}
.hero-knoppen { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-scroll {
  position: absolute; bottom: 32px; right: 32px; z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  font-size: 10px; letter-spacing: 2px; color: rgba(255,255,255,0.3); text-transform: uppercase;
}
.scroll-lijn {
  width: 1px; height: 48px;
  background: linear-gradient(to bottom, rgba(232,98,10,0.6), transparent);
  animation: scrollpuls 2s ease-in-out infinite;
}
@keyframes scrollpuls { 0%,100% { opacity:0.3; } 50% { opacity:1; } }

/* ─── KNOPPEN ─── */
.btn-primair {
  font-family: var(--font-hoofd); font-size: 13px; font-weight: 500;
  letter-spacing: 1.5px; text-transform: uppercase;
  background: var(--oranje); color: white;
  padding: 14px 32px; border-radius: var(--radius); border: none; cursor: pointer;
  transition: all var(--overgang); display: inline-flex; align-items: center; gap: 8px;
}
.btn-primair:hover { background: var(--oranje-helder); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(232,98,10,0.35); }
.btn-lijn {
  font-family: var(--font-hoofd); font-size: 13px; font-weight: 400;
  letter-spacing: 1.5px; text-transform: uppercase;
  background: transparent; color: white;
  padding: 13px 32px; border-radius: var(--radius); border: 1px solid rgba(255,255,255,0.25);
  cursor: pointer; transition: all var(--overgang); display: inline-flex; align-items: center; gap: 8px;
}
.btn-lijn:hover { border-color: white; background: rgba(255,255,255,0.05); }

/* ─── STATS BALK ─── */
.stats-balk { background: var(--oranje); padding: 0 32px; }
.stats-balk-inner {
  max-width: var(--max); margin: 0 auto;
  display: grid; grid-template-columns: repeat(4,1fr);
}
.stat-item { padding: 28px 0; text-align: center; border-right: 1px solid rgba(255,255,255,0.2); }
.stat-item:last-child { border-right: none; }
.stat-getal { font-family: var(--font-hoofd); font-size: 40px; font-weight: 700; color: white; line-height: 1; }
.stat-eenheid { font-size: 22px; font-weight: 300; }
.stat-omschrijving { font-size: 11px; color: rgba(255,255,255,0.75); letter-spacing: 1px; text-transform: uppercase; margin-top: 4px; }

/* ─── SECTIES ALGEMEEN ─── */
.sectie { padding: 96px 32px; }
.sectie-donker { background: var(--zwart-mid); }
.sectie-inner { max-width: var(--max); margin: 0 auto; }
.sectie-tag {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-hoofd); font-size: 11px;
  letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--oranje); margin-bottom: 16px;
}
.sectie-tag::before { content: ''; display: block; width: 24px; height: 1px; background: var(--oranje); }
.sectie-titel {
  font-family: var(--font-hoofd);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 600; line-height: 1.05; letter-spacing: -0.5px; margin-bottom: 16px;
}
.sectie-intro {
  font-family: var(--font-serif); font-size: 18px;
  font-weight: 300; font-style: italic;
  color: var(--grijs-licht); max-width: 560px; line-height: 1.7; margin-bottom: 56px;
}

/* ─── DIENSTEN ─── */
.diensten-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2px; }
.dienst-kaart {
  background: var(--zwart-zacht); padding: 40px 36px;
  position: relative; overflow: hidden; cursor: default;
  transition: background var(--overgang);
}
.dienst-kaart::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: var(--oranje); transform: scaleX(0); transform-origin: left;
  transition: transform 0.4s ease;
}
.dienst-kaart:hover { background: #222; }
.dienst-kaart:hover::before { transform: scaleX(1); }
.dienst-nr { font-family: var(--font-hoofd); font-size: 64px; font-weight: 700; color: rgba(232,98,10,0.08); line-height: 1; margin-bottom: 20px; transition: color var(--overgang); }
.dienst-kaart:hover .dienst-nr { color: rgba(232,98,10,0.15); }
.dienst-icoon { font-size: 28px; margin-bottom: 16px; }
.dienst-naam { font-family: var(--font-hoofd); font-size: 20px; font-weight: 500; letter-spacing: 0.5px; color: white; margin-bottom: 12px; }
.dienst-tekst { font-size: 14px; color: var(--grijs-licht); line-height: 1.7; }

/* ─── OVER MIJ ─── */
.over-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.over-foto-wrap { position: relative; }
.over-foto { width: 100%; aspect-ratio: 3/4; background: var(--grijs-donker); border-radius: 2px; overflow: hidden; position: relative; }
.over-foto img { width: 100%; height: 100%; object-fit: cover; }
.over-foto-placeholder { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px; background: linear-gradient(135deg, #1e1e1e 0%, #141414 100%); }
.over-foto-placeholder span { font-family: var(--font-hoofd); font-size: 11px; letter-spacing: 2px; color: rgba(255,255,255,0.15); text-transform: uppercase; }
.over-foto-accent { position: absolute; bottom: -16px; right: -16px; width: 120px; height: 120px; border: 2px solid var(--oranje); border-radius: 2px; z-index: -1; }
.over-tekst p { font-size: 15px; color: rgba(255,255,255,0.7); line-height: 1.8; margin-bottom: 20px; }
.over-tekst p:first-of-type { font-family: var(--font-serif); font-size: 18px; font-style: italic; color: rgba(255,255,255,0.85); }
.clients-lijst { margin-top: 40px; padding-top: 32px; border-top: 1px solid rgba(255,255,255,0.08); }
.clients-label { font-family: var(--font-hoofd); font-size: 11px; letter-spacing: 2px; color: var(--grijs-licht); text-transform: uppercase; margin-bottom: 16px; }
.clients-namen { display: flex; flex-wrap: wrap; gap: 8px; }
.client-badge { font-family: var(--font-hoofd); font-size: 11px; letter-spacing: 0.5px; color: rgba(255,255,255,0.5); background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08); padding: 5px 12px; border-radius: 2px; transition: all var(--overgang); }
.client-badge:hover { color: var(--oranje); border-color: rgba(232,98,10,0.3); }

/* ─── PORTFOLIO ─── */
.portfolio-filters { display: flex; gap: 4px; margin-bottom: 40px; flex-wrap: wrap; }
.filter-btn { font-family: var(--font-hoofd); font-size: 12px; letter-spacing: 1px; text-transform: uppercase; background: none; color: var(--grijs-licht); border: 1px solid rgba(255,255,255,0.1); padding: 8px 18px; border-radius: var(--radius); cursor: pointer; transition: all var(--overgang); }
.filter-btn:hover, .filter-btn.actief { background: var(--oranje); color: white; border-color: var(--oranje); }
.portfolio-grid { display: grid; grid-template-columns: repeat(3,1fr); grid-auto-rows: 260px; gap: 3px; }
.portfolio-item { position: relative; overflow: hidden; background: var(--grijs-donker); cursor: pointer; }
.portfolio-item:nth-child(1) { grid-column: span 2; grid-row: span 2; }
.portfolio-item:nth-child(5) { grid-column: span 2; }
.portfolio-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.portfolio-item:hover img { transform: scale(1.05); }
.portfolio-placeholder { width: 100%; height: 100%; background: linear-gradient(135deg, #222 0%, #1a1a1a 100%); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px; transition: transform 0.6s ease; }
.portfolio-item:hover .portfolio-placeholder { transform: scale(1.04); }
.portfolio-placeholder-icoon { font-size: 32px; opacity: 0.2; }
.portfolio-placeholder-tekst { font-family: var(--font-hoofd); font-size: 10px; letter-spacing: 2px; color: rgba(255,255,255,0.15); text-transform: uppercase; }
.portfolio-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(10,10,10,0.9) 0%, transparent 60%); opacity: 0; transition: opacity var(--overgang); display: flex; align-items: flex-end; padding: 24px; }
.portfolio-item:hover .portfolio-overlay { opacity: 1; }
.portfolio-categorie { font-family: var(--font-hoofd); font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: var(--oranje); margin-bottom: 4px; }
.portfolio-naam { font-family: var(--font-hoofd); font-size: 18px; font-weight: 500; color: white; }

/* ─── NIEUWS ─── */
.nieuws-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 3px; }
.nieuws-groot { position: relative; aspect-ratio: 16/9; background: var(--grijs-donker); overflow: hidden; }
.nieuws-groot img { width: 100%; height: 100%; object-fit: cover; opacity: 0.5; }
.nieuws-groot-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(10,10,10,0.95) 0%, rgba(10,10,10,0.2) 70%); display: flex; flex-direction: column; justify-content: flex-end; padding: 36px; }
.nieuws-meta { display: flex; align-items: center; gap: 12px; margin-bottom: 10px; }
.nieuws-tag { font-family: var(--font-hoofd); font-size: 10px; letter-spacing: 1.5px; text-transform: uppercase; background: var(--oranje); color: white; padding: 3px 10px; border-radius: 2px; }
.nieuws-datum { font-size: 12px; color: rgba(255,255,255,0.45); }
.nieuws-groot-titel { font-family: var(--font-hoofd); font-size: 26px; font-weight: 600; color: white; line-height: 1.2; margin-bottom: 8px; }
.nieuws-groot-tekst { font-size: 14px; color: rgba(255,255,255,0.6); line-height: 1.6; }
.nieuws-klein-lijst { display: flex; flex-direction: column; gap: 3px; }
.nieuws-klein { background: var(--zwart-zacht); padding: 24px; flex: 1; cursor: pointer; border-left: 2px solid transparent; transition: all var(--overgang); }
.nieuws-klein:hover { background: #222; border-left-color: var(--oranje); }
.nieuws-klein-titel { font-family: var(--font-hoofd); font-size: 16px; font-weight: 500; color: white; margin-bottom: 6px; line-height: 1.3; }
.nieuws-klein-tekst { font-size: 13px; color: var(--grijs-licht); line-height: 1.6; }

/* WordPress berichten ─── */
.wp-bericht { margin-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,0.06); padding-bottom: 40px; }
.wp-bericht:last-child { border-bottom: none; }
.wp-bericht-afb { width: 100%; aspect-ratio: 16/9; object-fit: cover; margin-bottom: 20px; }
.wp-bericht-meta { display: flex; gap: 12px; align-items: center; margin-bottom: 8px; }
.wp-bericht-cat { font-family: var(--font-hoofd); font-size: 10px; letter-spacing: 1.5px; text-transform: uppercase; background: var(--oranje); color: white; padding: 3px 10px; border-radius: 2px; }
.wp-bericht-datum { font-size: 12px; color: rgba(255,255,255,0.45); }
.wp-bericht-titel { font-family: var(--font-hoofd); font-size: 22px; font-weight: 600; color: white; margin-bottom: 8px; line-height: 1.2; }
.wp-bericht-titel a:hover { color: var(--oranje); }
.wp-bericht-excerpt { font-size: 14px; color: rgba(255,255,255,0.6); line-height: 1.7; margin-bottom: 16px; }
.wp-bericht-lees { font-family: var(--font-hoofd); font-size: 12px; letter-spacing: 1px; text-transform: uppercase; color: var(--oranje); transition: color var(--overgang); }
.wp-bericht-lees:hover { color: var(--oranje-helder); }

/* ─── CONTACT ─── */
.contact-sectie { background: var(--zwart-mid); position: relative; overflow: hidden; }
.contact-sectie::before { content: 'CONTACT'; position: absolute; right: -40px; top: 50%; transform: translateY(-50%) rotate(90deg); font-family: var(--font-hoofd); font-size: 140px; font-weight: 700; color: rgba(255,255,255,0.02); pointer-events: none; letter-spacing: 10px; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.contact-info-item { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 28px; }
.contact-icoon { width: 40px; height: 40px; background: rgba(232,98,10,0.1); border: 1px solid rgba(232,98,10,0.2); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; font-size: 16px; flex-shrink: 0; }
.contact-info-label { font-family: var(--font-hoofd); font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--oranje); margin-bottom: 4px; }
.contact-info-waarde { font-size: 15px; color: rgba(255,255,255,0.75); }
.form-veld { margin-bottom: 20px; }
.form-veld label { display: block; font-family: var(--font-hoofd); font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--grijs-licht); margin-bottom: 8px; }
.form-veld input, .form-veld textarea, .form-veld select { width: 100%; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.1); border-radius: var(--radius); padding: 13px 16px; font-family: var(--font-body); font-size: 14px; color: white; transition: border-color var(--overgang), background var(--overgang); outline: none; }
.form-veld input:focus, .form-veld textarea:focus, .form-veld select:focus { border-color: var(--oranje); background: rgba(232,98,10,0.05); }
.form-veld textarea { min-height: 120px; resize: vertical; }
.form-veld select option { background: var(--zwart-mid); }
.form-rij { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* ─── FOOTER ─── */
.site-footer { background: var(--zwart); border-top: 1px solid rgba(255,255,255,0.06); padding: 48px 32px 32px; }
.footer-inner { max-width: var(--max); margin: 0 auto; }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-merk-naam { font-family: var(--font-hoofd); font-size: 20px; font-weight: 700; letter-spacing: 2px; color: var(--oranje); margin-bottom: 12px; }
.footer-merk-tekst { font-size: 13px; color: var(--grijs-licht); line-height: 1.7; max-width: 280px; }
.footer-col-titel { font-family: var(--font-hoofd); font-size: 12px; letter-spacing: 1.5px; text-transform: uppercase; color: white; margin-bottom: 16px; }
.footer-link { display: block; font-size: 13px; color: var(--grijs-licht); padding: 4px 0; transition: color var(--overgang); }
.footer-link:hover { color: var(--oranje); }
/* WordPress footer menu */
.footer-nav ul { padding: 0; margin: 0; list-style: none; }
.footer-nav ul li a { display: block; font-size: 13px; color: var(--grijs-licht); padding: 4px 0; transition: color var(--overgang); }
.footer-nav ul li a:hover { color: var(--oranje); }
.footer-bodem { padding-top: 28px; border-top: 1px solid rgba(255,255,255,0.06); display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-copy { font-size: 12px; color: rgba(255,255,255,0.25); }
.footer-boekh-link { font-family: var(--font-hoofd); font-size: 11px; letter-spacing: 1px; color: rgba(232,98,10,0.5); transition: color var(--overgang); }
.footer-boekh-link:hover { color: var(--oranje); }

/* ─── MOBIEL MENU ─── */
.mobiel-menu { display: none; position: fixed; inset: 0; background: rgba(10,10,10,0.98); z-index: 800; flex-direction: column; align-items: center; justify-content: center; gap: 8px; }
.mobiel-menu.open { display: flex; }
.mobiel-nav-link { font-family: var(--font-hoofd); font-size: 36px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,0.5); padding: 8px 24px; transition: color var(--overgang); }
.mobiel-nav-link:hover { color: var(--oranje); }

/* ─── ANIMATIES ─── */
.fade-in { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
.fade-in.zichtbaar { opacity: 1; transform: translateY(0); }

/* ─── SINGLE POST ─── */
.single-content { max-width: 720px; margin: 0 auto; padding: 64px 32px; }
.single-content h1 { font-family: var(--font-hoofd); font-size: clamp(28px,4vw,48px); font-weight: 600; line-height: 1.1; margin-bottom: 20px; }
.single-content .post-meta { display: flex; gap: 16px; align-items: center; margin-bottom: 32px; padding-bottom: 24px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.single-content .post-content p { font-size: 17px; line-height: 1.8; color: rgba(255,255,255,0.78); margin-bottom: 24px; }
.single-content .post-content h2 { font-family: var(--font-hoofd); font-size: 26px; margin: 36px 0 16px; }
.single-content .post-content img { width: 100%; border-radius: var(--radius); margin: 32px 0; }
.single-content .post-afbeelding { width: 100%; aspect-ratio: 16/9; object-fit: cover; margin-bottom: 36px; }

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .diensten-grid { grid-template-columns: repeat(2,1fr); }
  .portfolio-grid { grid-template-columns: repeat(2,1fr); }
  .portfolio-item:nth-child(1) { grid-column: span 2; grid-row: span 1; }
  .portfolio-item:nth-child(5) { grid-column: span 1; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 768px) {
  .site-nav { display: none; }
  .hamburger { display: flex; }
  .hero { min-height: 80vh; }
  .stats-balk-inner { grid-template-columns: repeat(2,1fr); }
  .sectie { padding: 64px 20px; }
  .over-grid, .contact-grid, .nieuws-grid { grid-template-columns: 1fr; gap: 40px; }
  .diensten-grid { grid-template-columns: 1fr; }
  .portfolio-grid { grid-template-columns: 1fr; grid-auto-rows: 220px; }
  .portfolio-item:nth-child(1), .portfolio-item:nth-child(5) { grid-column: span 1; grid-row: span 1; }
  .form-rij { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .footer-bodem { flex-direction: column; text-align: center; }
  .hero-scroll { display: none; }
  .nav-wrap { padding: 0 20px; }
}
