/* ── Google Fonts: DM Sans (CDN) ── */
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@300;400;500;700&display=swap');

/* ── Lokale Fonts: Playfair Display ── */
@font-face {
  font-family: 'Playfair Display';
  src: url('fonts/playfair-display-v40-latin-regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Playfair Display';
  src: url('fonts/playfair-display-v40-latin-italic.woff2') format('woff2');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Playfair Display';
  src: url('fonts/playfair-display-v40-latin-700.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --black: #080a12;
  --white: #f0f1f8;
  --accent: #7c5cbf;
  --accent2: #4f6fd4;
  --gray: #7a7d94;
  --light: #e6e7f5;
}


body {
  font-family: 'DM Sans', sans-serif;
  background: var(--white);
  color: var(--black);
  line-height: 1.6;
  cursor: none;
}

/* Cursor */
.cursor {
  width: 10px; height: 10px;
  background: var(--accent);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width 0.3s, height 0.3s;
  opacity: 0;
}
.cursor-ring {
  width: 36px; height: 36px;
  border: 1px solid rgba(124,92,191,0.6);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: width 0.3s, height 0.3s, opacity 0.3s;
  opacity: 0;
}

/* Nav */
nav {
  position: fixed; top: 0; width: 100%; z-index: 100;
  padding: 1.8rem 3rem;
  display: flex; justify-content: space-between; align-items: center;
  background: rgba(8,10,18,0.88);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(124,92,191,0.18);
}
.logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  letter-spacing: 0.02em;
  color: var(--white);
  text-decoration: none;
}
.logo span { color: var(--accent); font-style: italic; }
.nav-links { display: flex; gap: 1.8rem; list-style: none; }
.nav-links a {
  font-size: 0.76rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--accent); }
.nav-links a.actief { color: var(--accent); }

/* Hero */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding-top: 80px;
  overflow: hidden;
}
.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 6rem 4rem 6rem 3rem;
  animation: fadeUp 1s ease both;
}
.hero-tag {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 2rem;
}
.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3rem, 5vw, 5.5rem);
  line-height: 1.05;
  font-weight: 400;
  margin-bottom: 1.8rem;
}
.hero h1 em { font-style: italic; color: var(--accent); }
.hero-desc {
  color: var(--gray);
  font-size: 1rem;
  font-weight: 300;
  max-width: 400px;
  margin-bottom: 3rem;
  line-height: 1.8;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  background: var(--accent);
  color: var(--white);
  padding: 1rem 2rem;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  font-weight: 500;
  width: fit-content;
  position: relative;
  overflow: hidden;
  transition: gap 0.3s, color 0.3s;
  z-index: 1;
}
.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: #5a3a9e;
  transform: translateX(-100%);
  transition: transform 0.35s ease;
  z-index: -1;
}
.btn:hover::before { transform: translateX(0); }
.btn:hover { gap: 1.2rem; }
.btn * { position: relative; z-index: 2; }
.btn-arrow { font-size: 1.1rem; }

.hero-right {
  position: relative;
  background: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  animation: fadeIn 1.2s ease both 0.3s;
}
.hero-img-placeholder {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, #0d0f1e 0%, #1a1530 50%, #0d0f1e 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.hero-img-placeholder::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, rgba(124,92,191,0.18) 0%, transparent 70%);
}
.hero-img-placeholder .initial {
  position: relative; z-index: 1;
  font-family: 'Playfair Display', serif;
  color: rgba(124,92,191,0.4);
  font-size: 10rem;
  font-style: italic;
  line-height: 1;
}
.hero-quote {
  position: absolute;
  bottom: 3rem; left: 3rem; right: 3rem;
  color: rgba(255,255,255,0.5);
  font-size: 0.82rem;
  letter-spacing: 0.05em;
  font-weight: 300;
  border-left: 2px solid var(--accent);
  padding-left: 1rem;
  z-index: 1;
}

/* Stats */
.stats {
  background: var(--black);
  color: var(--white);
  display: flex;
  justify-content: center;
  gap: 5rem;
  padding: 3rem;
  border-top: 1px solid rgba(124,92,191,0.2);
}
.stat { text-align: center; }
.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-style: italic;
  color: var(--accent);
  display: block;
}
.stat-label {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  font-weight: 300;
}

/* Section */
section { padding: 7rem 3rem; }
.section-tag {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 1rem;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 400;
  line-height: 1.15;
  max-width: 600px;
  margin-bottom: 1rem;
}
.section-title em { font-style: italic; color: var(--accent); }

/* Blog posts */
.posts-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 4rem;
  flex-wrap: wrap;
  gap: 2rem;
}
.posts-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2px;
}
@media (max-width: 1100px) {
  .posts-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 700px) {
  .posts-grid { grid-template-columns: 1fr; }
}
.post-card {
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.08);
  padding: 2.5rem;
  transition: background 0.3s, transform 0.3s;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.post-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.post-card:hover::before { transform: scaleX(1); }
.post-card:hover { background: var(--light); transform: translateY(-2px); }

.post-featured {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: var(--black);
  color: var(--white);
  border: none;
}
.post-featured:hover { background: #12142a; }
.post-featured .post-img {
  background: linear-gradient(135deg, #10122a 0%, #1c1840 100%);
  min-height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 5rem;
  font-style: italic;
  color: rgba(124,92,191,0.3);
}
.post-featured .post-content { padding: 3rem; }
.post-category {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 1rem;
}
.post-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.3;
  margin-bottom: 1rem;
  height: 110px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}
.post-featured .post-title { font-size: 2rem; height: auto; overflow: visible; display: block; }
.post-excerpt {
  color: var(--gray);
  font-size: 0.9rem;
  font-weight: 300;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  height: 100px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
}
.post-featured .post-excerpt { color: rgba(255,255,255,0.5); height: auto; overflow: visible; display: block; }
.post-meta {
  font-size: 0.75rem;
  color: var(--gray);
  letter-spacing: 0.05em;
  display: flex;
  gap: 1.5rem;
  margin-top: auto;
  padding-top: 1.5rem;
}
.post-featured .post-meta { color: rgba(255,255,255,0.3); margin-top: 1rem; padding-top: 0; }
.read-more {
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  text-decoration: none;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
  transition: gap 0.2s;
}
.read-more:hover { gap: 0.9rem; }

/* About */
.about {
  background: var(--black);
  color: var(--white);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  min-height: 480px;
}
.about-img {
  background: linear-gradient(180deg, #0d0f1e 0%, #161235 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 6rem;
  font-style: italic;
  color: rgba(124,92,191,0.25);
  position: relative;
  overflow: hidden;
}
.about-img::after {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 30% 70%, rgba(124,92,191,0.12) 0%, transparent 60%);
}
.about-content {
  padding: 5rem 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.about-content .section-tag { margin-bottom: 1.5rem; }
.about-content .section-title { color: var(--white); max-width: 500px; margin-bottom: 2rem; }
.about-content p {
  color: rgba(255,255,255,0.5);
  font-weight: 300;
  line-height: 1.9;
  margin-bottom: 2.5rem;
  max-width: 480px;
}
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  border: 1px solid rgba(124,92,191,0.4);
  color: var(--white);
  padding: 1rem 2rem;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  font-weight: 500;
  transition: border-color 0.3s, background 0.3s, gap 0.3s;
  width: fit-content;
}
.btn-outline:hover { border-color: var(--accent); background: rgba(124,92,191,0.1); gap: 1.2rem; }

/* Newsletter */
.newsletter { background: var(--light); text-align: center; }
.newsletter .section-title { margin: 0 auto 1.5rem; text-align: center; }
.newsletter p { color: var(--gray); font-weight: 300; margin-bottom: 2.5rem; font-size: 0.95rem; }
.newsletter-form {
  display: flex;
  max-width: 480px;
  margin: 0 auto;
  border: 1px solid rgba(124,92,191,0.25);
  background: var(--white);
}
.newsletter-form input {
  flex: 1;
  padding: 1.1rem 1.5rem;
  border: none;
  background: transparent;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  color: var(--black);
  outline: none;
}
.newsletter-form input::placeholder { color: var(--gray); }
.newsletter-form button {
  background: var(--accent);
  color: var(--white);
  border: none;
  padding: 1.1rem 1.8rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  position: relative;
  overflow: hidden;
  transition: gap 0.3s, color 0.3s;
  z-index: 0;
}
.newsletter-form button::before {
  content: '';
  position: absolute;
  inset: 0;
  background: #5a3a9e;
  transform: translateX(-100%);
  transition: transform 0.35s ease;
  z-index: -1;
}
.newsletter-form button:hover::before { transform: translateX(0); }
.newsletter-form button:hover { gap: 1.2rem; }

/* Footer */
footer {
  background: var(--black);
  color: rgba(255,255,255,0.3);
  padding: 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  gap: 1.5rem;
  border-top: 1px solid rgba(124,92,191,0.15);
}
footer .logo { color: var(--white); font-size: 1.1rem; }
.social-links { display: flex; gap: 1.5rem; }
.social-links a {
  color: rgba(255,255,255,0.3);
  text-decoration: none;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: color 0.2s;
}
.social-links a:hover { color: var(--accent); }

/* Divider */
.divider {
  width: 40px; height: 1px;
  background: var(--accent);
  margin: 0.5rem 0 2rem;
}

/* Animations */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.fade-up {
  opacity: 1;
  transform: none;
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.animate-ready {
  opacity: 0;
  transform: translateY(25px);
}
.fade-up.visible { opacity: 1; transform: none; }

/* Werk sectie */
.werk { background: var(--white); padding: 7rem 3rem; }
.werk-inner { max-width: 1100px; margin: 0 auto; }
.werk-header { margin-bottom: 5rem; }
.werk-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem 5rem;
}
.werk-col-title {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(124,92,191,0.15);
}

/* Timeline */
.timeline { position: relative; }
.timeline::before {
  content: '';
  position: absolute;
  left: 0; top: 6px; bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, var(--accent), rgba(124,92,191,0.05));
}
.timeline-item {
  padding-left: 1.8rem;
  margin-bottom: 2.5rem;
  position: relative;
}
.timeline-item::before {
  content: '';
  position: absolute;
  left: -4px; top: 6px;
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 3px rgba(124,92,191,0.15);
}
.timeline-date {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 0.3rem;
  text-decoration: none;
  pointer-events: none;
}
.timeline-job {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-weight: 400;
  margin-bottom: 0.2rem;
  line-height: 1.3;
}
.timeline-company {
  font-size: 0.8rem;
  color: var(--gray);
  margin-bottom: 0.6rem;
}
.timeline-tasks { list-style: none; margin-top: 0.5rem; }
.timeline-tasks li {
  font-size: 0.85rem;
  color: var(--gray);
  font-weight: 300;
  padding: 0.2rem 0 0.2rem 1rem;
  position: relative;
}
.timeline-tasks li::before {
  content: '-';
  position: absolute; left: 0;
  color: var(--accent);
}

/* Skill bars */
.skill-bar-wrap { margin-bottom: 1rem; }
.skill-label {
  display: flex;
  justify-content: space-between;
  font-size: 0.82rem;
  font-weight: 500;
  margin-bottom: 0.4rem;
  color: var(--black);
}
.skill-bar {
  height: 3px;
  background: rgba(124,92,191,0.12);
  border-radius: 2px;
  overflow: hidden;
}
.skill-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--accent), var(--accent2));
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 1s cubic-bezier(0.4,0,0.2,1);
}
.skill-fill.animated { transform: scaleX(1); }

/* Tags */
.tags-wrap { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 0.5rem; }
.tag {
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  padding: 0.35rem 0.9rem;
  border: 1px solid rgba(124,92,191,0.3);
  color: var(--accent);
  font-weight: 500;
}

/* Educatie */
.educatie-item { margin-bottom: 1.5rem; }
.edu-school {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 400;
}
.edu-detail {
  font-size: 0.82rem;
  color: var(--gray);
  font-weight: 300;
}

/* Contact strip */
.contact-strip {
  margin-top: 4rem;
  padding: 2rem 2.5rem;
  background: var(--black);
  color: var(--white);
  display: flex;
  gap: 3rem;
  align-items: center;
  flex-wrap: wrap;
  border: 1px solid rgba(124,92,191,0.15);
}
.contact-strip p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.contact-strip a { color: var(--accent); text-decoration: none; }
.contact-strip a:hover { text-decoration: underline; }
.contact-strip-label {
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.25);
  margin-right: 1rem;
}

/* Responsive */
@media (max-width: 768px) {
  nav { padding: 1.5rem; }
  .nav-links { gap: 1.5rem; }
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-right { min-height: 300px; }
  .stats { gap: 2rem; flex-wrap: wrap; padding: 2rem; }
  section { padding: 5rem 1.5rem; }
  .post-featured { grid-template-columns: 1fr; }
  .about { grid-template-columns: 1fr; }
  .about-img { min-height: 200px; }
  .werk-grid { grid-template-columns: 1fr; gap: 3rem; }
  .contact-strip { flex-direction: column; gap: 1rem; }
  footer { flex-direction: column; text-align: center; }
}

/* ── Page Hero (gedeeld door alle paginas) ── */
.page-hero {
  min-height: 35vh;
  background: linear-gradient(135deg, #0d0f1e 0%, #1a1530 50%, #0d0f1e 100%);
  display: flex;
  align-items: flex-end;
  padding: 8rem 3rem 4rem;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 60% 50%, rgba(124,92,191,0.2) 0%, transparent 70%);
}
.page-hero-inner { position: relative; z-index: 1; }
.page-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 400;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 1rem;
}
.page-hero h1 em { font-style: italic; color: var(--accent); }
.page-hero p { color: rgba(255,255,255,0.4); font-weight: 300; font-size: 0.95rem; }

/* ── CV ── */
.cv-body {
  max-width: 1100px;
  margin: 0 auto;
  padding: 6rem 3rem;
}
.cv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
}
.cv-print-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--accent);
  color: var(--white);
  padding: 0.8rem 1.8rem;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  font-weight: 500;
  border: none;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  transition: background 0.3s;
  margin-bottom: 4rem;
}
.cv-print-btn:hover { background: var(--accent2); }

/* ── Projecten / Werk ── */
.projecten-section {
  padding: 6rem 3rem;
  max-width: 1200px;
  margin: 0 auto;
}
.projecten-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 2px;
  margin-top: 3rem;
}
.project-card {
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.08);
  overflow: hidden;
  position: relative;
  transition: transform 0.3s;
}
.project-card:hover { transform: translateY(-4px); }
.project-card:hover .project-overlay { opacity: 1; }
.project-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}
.project-overlay {
  position: absolute;
  inset: 0;
  background: rgba(8,10,18,0.75);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
}
.project-overlay a {
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.5);
  padding: 0.8rem 1.8rem;
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  font-weight: 500;
  transition: background 0.2s, border-color 0.2s;
}
.project-overlay a:hover { background: var(--accent); border-color: var(--accent); }
.project-info { padding: 1.8rem 2rem; }
.project-tag {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 0.5rem;
}
.project-naam {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 400;
  margin-bottom: 0.6rem;
  color: var(--black);
}
.project-desc {
  font-size: 0.88rem;
  color: var(--gray);
  font-weight: 300;
  line-height: 1.7;
}
.project-card.featured {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.project-card.featured .project-img { height: 100%; min-height: 300px; }
.project-card.featured .project-info {
  padding: 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.project-card.featured .project-naam { font-size: 1.8rem; margin-bottom: 1rem; }
.project-card.featured .project-desc { font-size: 0.95rem; line-height: 1.8; margin-bottom: 2rem; }

/* ── Print CV ── */
@media print {
  nav, footer, .cv-print-btn, .cursor, .cursor-ring { display: none !important; }
  .page-hero { min-height: auto; padding: 2rem; }
  .cv-body { padding: 2rem; }
}

/* ── Responsive paginas ── */
@media (max-width: 768px) {
  .cv-body { padding: 4rem 1.5rem; }
  .cv-grid { grid-template-columns: 1fr; gap: 3rem; }
  .projecten-section { padding: 4rem 1.5rem; }
  .projecten-grid { grid-template-columns: 1fr; }
  .project-card.featured { grid-template-columns: 1fr; }
  .project-card.featured .project-img { min-height: 220px; }
}

/* ── Blog pagina ── */
.blog-hero {
  min-height: 35vh;
  background: linear-gradient(135deg, #0d0f1e 0%, #1a1530 50%, #0d0f1e 100%);
  display: flex;
  align-items: flex-end;
  padding: 8rem 3rem 4rem;
  position: relative;
  overflow: hidden;
}
.blog-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 60% 50%, rgba(124,92,191,0.2) 0%, transparent 70%);
}
.blog-hero-inner { position: relative; z-index: 1; }
.blog-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 400;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 1rem;
}
.blog-hero h1 em { font-style: italic; color: var(--accent); }
.blog-hero p { color: rgba(255,255,255,0.4); font-weight: 300; font-size: 0.95rem; }

.blog-page { padding: 5rem 3rem; max-width: 1100px; margin: 0 auto; }

.filter-bar {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}
.filter-btn {
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.5rem 1.2rem;
  border: 1px solid rgba(124,92,191,0.25);
  color: var(--gray);
  background: transparent;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  transition: all 0.2s;
}
.filter-btn:hover, .filter-btn.active {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
}
.all-posts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2px;
  align-items: stretch;
}
.all-posts-grid .post-card {
  cursor: pointer;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.all-posts-grid .post-card .post-title {
  height: 110px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  margin-bottom: 1rem;
}
.all-posts-grid .post-card .post-excerpt {
  margin-bottom: 0;
  height: 100px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
}
.all-posts-grid .post-card .post-meta { margin-top: auto; padding-top: 1.5rem; }
.all-posts-grid .post-card-link { display: flex; flex-direction: column; height: 100%; }
.all-posts-grid .post-card .read-more { margin-top: 1rem; }
.post-card-link { text-decoration: none; color: inherit; display: block; }

@media (max-width: 768px) {
  .blog-page { padding: 3rem 1.5rem; }
  .all-posts-grid { grid-template-columns: 1fr; }
}

/* ── contact.html ── */
.page-hero {
    min-height: 35vh;
    background: linear-gradient(135deg, #0d0f1e 0%, #1a1530 50%, #0d0f1e 100%);
    display: flex;
    align-items: flex-end;
    padding: 8rem 3rem 4rem;
    position: relative;
    overflow: hidden;
  }
  .page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 60% 50%, rgba(124,92,191,0.2) 0%, transparent 70%);
  }
  .page-hero-inner { position: relative; z-index: 1; }
  .page-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 400;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 1rem;
  }
  .page-hero h1 em { font-style: italic; color: var(--accent); }
  .page-hero p { color: rgba(255,255,255,0.4); font-weight: 300; font-size: 0.95rem; }

  .contact-page {
    max-width: 900px;
    margin: 0 auto;
    padding: 6rem 3rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
  }
  .contact-info h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
  }
  .contact-info h2 em { font-style: italic; color: var(--accent); }
  .contact-info > p {
    font-size: 0.95rem;
    color: var(--gray);
    font-weight: 300;
    line-height: 1.8;
    margin-bottom: 2.5rem;
  }
  .contact-detail {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
  }
  .contact-detail-icon {
    width: 42px;
    height: 42px;
    background: rgba(124,92,191,0.08);
    border: 1px solid rgba(124,92,191,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
  }
  .contact-detail-label {
    font-size: 0.7rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gray);
    margin-bottom: 0.3rem;
  }
  .contact-detail-text {
    font-size: 0.9rem;
    color: var(--black);
    font-weight: 400;
  }
  .contact-detail-text a { color: var(--accent); text-decoration: none; }
  .contact-detail-text a:hover { text-decoration: underline; }

  .contact-form h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
  }
  .contact-form h2 em { font-style: italic; color: var(--accent); }
  .form-group { margin-bottom: 1.2rem; }
  .form-group label {
    display: block;
    font-size: 0.75rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gray);
    margin-bottom: 0.5rem;
    font-weight: 500;
  }
  .form-group input,
  .form-group textarea {
    width: 100%;
    padding: 0.9rem 1.2rem;
    border: 1px solid rgba(124,92,191,0.2);
    background: var(--white);
    font-family: 'DM Sans', sans-serif;
    font-size: 0.9rem;
    color: var(--black);
    outline: none;
    transition: border-color 0.2s;
    box-sizing: border-box;
  }
  .form-group input:focus,
  .form-group textarea:focus { border-color: var(--accent); }
  .form-group textarea { height: 130px; resize: vertical; }
  .form-submit {
    background: var(--accent);
    color: var(--white);
    border: none;
    padding: 1rem 2rem;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.82rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-weight: 500;
    cursor: pointer;
    width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    position: relative;
    overflow: hidden;
    transition: gap 0.3s, color 0.3s;
    z-index: 0;
  }
  .form-submit::before {
    content: '';
    position: absolute;
    inset: 0;
    background: #5a3a9e;
    transform: translateX(-100%);
    transition: transform 0.35s ease;
    z-index: -1;
  }
  .form-submit:hover::before { transform: translateX(0); }
  .form-submit:hover { gap: 1.2rem; }
  #form-succes {
    display: none;
    color: var(--accent);
    font-size: 0.9rem;
    margin-top: 1rem;
    text-align: center;
  }

  .newsletter-strip {
    background: var(--light);
    padding: 5rem 3rem;
    text-align: center;
  }
  .newsletter-strip .section-title {
    margin: 0.5rem auto 1rem;
    text-align: center;
  }
  .newsletter-strip > p {
    color: var(--gray);
    font-weight: 300;
    margin-bottom: 2rem;
  }

  @media (max-width: 768px) {
    .contact-page { grid-template-columns: 1fr; gap: 3rem; }
  }

/* ── over.html ── */
.page-hero {
    min-height: 35vh;
    background: linear-gradient(135deg, #0d0f1e 0%, #1a1530 50%, #0d0f1e 100%);
    display: flex;
    align-items: flex-end;
    padding: 8rem 3rem 4rem;
    position: relative;
    overflow: hidden;
  }
  .page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 60% 50%, rgba(124,92,191,0.2) 0%, transparent 70%);
  }
  .page-hero-inner {
    position: relative;
    z-index: 1;
  }
  .page-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 400;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 1rem;
  }
  .page-hero h1 em {
    font-style: italic;
    color: var(--accent);
  }
  .page-hero p {
    color: rgba(255,255,255,0.4);
    font-weight: 300;
    font-size: 0.95rem;
  }
  .over-body {
    max-width: 820px;
    margin: 0 auto;
    padding: 6rem 3rem;
  }
  .over-body p {
    font-size: 1.05rem;
    font-weight: 300;
    color: #2a2c3a;
    line-height: 1.9;
    margin-bottom: 1.8rem;
  }
  .over-body h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 400;
    margin: 3rem 0 1.2rem;
    color: var(--black);
  }
  .over-body h2 em {
    font-style: italic;
    color: var(--accent);
  }
  .over-initial {
    width: 180px;
    height: 180px;
    background: linear-gradient(135deg, #10122a, #1c1840);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-style: italic;
    color: rgba(124,92,191,0.5);
    margin-bottom: 3rem;
    border: 1px solid rgba(124,92,191,0.2);
  }

/* ── artikel-boeken.html ── */
.artikel-hero {
    min-height: 40vh;
    background: linear-gradient(135deg, #0d0f1e 0%, #1a1530 50%, #0d0f1e 100%);
    display: flex;
    align-items: flex-end;
    padding: 8rem 3rem 4rem;
    position: relative;
    overflow: hidden;
  }
  .artikel-hero::before {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(ellipse at 30% 50%, rgba(124,92,191,0.2) 0%, transparent 70%);
  }
  .artikel-hero-inner { position: relative; z-index: 1; max-width: 800px; }
  .artikel-hero .post-category { margin-bottom: 1.2rem; }
  .artikel-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 400;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 1.5rem;
  }
  .artikel-hero h1 em { font-style: italic; color: var(--accent); }
  .artikel-meta {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.35);
    letter-spacing: 0.08em;
    display: flex;
    gap: 2rem;
  }

  .artikel-body {
    max-width: 720px;
    margin: 0 auto;
    padding: 5rem 3rem;
  }
  .artikel-body p {
    font-size: 1.05rem;
    font-weight: 300;
    color: #2a2c3a;
    line-height: 1.9;
    margin-bottom: 1.8rem;
  }
  .artikel-body h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.7rem;
    font-weight: 400;
    margin: 3rem 0 1.2rem;
    color: var(--black);
  }
  .artikel-body h2 em { font-style: italic; color: var(--accent); }

  .boek-card {
    border-left: 3px solid var(--accent);
    padding: 1.5rem 2rem;
    background: var(--light);
    margin: 2rem 0;
  }
  .boek-nummer {
    font-size: 0.72rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--accent);
    font-weight: 500;
    margin-bottom: 0.4rem;
  }
  .boek-titel {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 400;
    margin-bottom: 0.8rem;
    font-style: italic;
  }
  .boek-tekst {
    font-size: 0.92rem;
    color: var(--gray);
    font-weight: 300;
    line-height: 1.8;
    margin: 0 !important;
  }

  .terug-link {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.8rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--accent);
    text-decoration: none;
    font-weight: 500;
    margin-bottom: 3rem;
    transition: gap 0.2s;
  }
  .terug-link:hover { gap: 1rem; }

  .artikel-footer {
    max-width: 720px;
    margin: 0 auto;
    padding: 0 3rem 5rem;
    border-top: 1px solid rgba(124,92,191,0.15);
    padding-top: 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
  }
  .artikel-footer p {
    font-size: 0.82rem;
    color: var(--gray);
    font-weight: 300;
  }

/* ── artikel-crypto.html ── */
.artikel-hero {
    min-height: 40vh;
    background: linear-gradient(135deg, #0d0f1e 0%, #1a1530 50%, #0d0f1e 100%);
    display: flex;
    align-items: flex-end;
    padding: 8rem 3rem 4rem;
    position: relative;
    overflow: hidden;
  }
  .artikel-hero::before {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(ellipse at 30% 50%, rgba(124,92,191,0.2) 0%, transparent 70%);
  }
  .artikel-hero-inner { position: relative; z-index: 1; max-width: 800px; }
  .artikel-hero .post-category { margin-bottom: 1.2rem; }
  .artikel-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 400;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 1.5rem;
  }
  .artikel-hero h1 em { font-style: italic; color: var(--accent); }
  .artikel-meta {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.35);
    letter-spacing: 0.08em;
    display: flex;
    gap: 2rem;
  }
  .artikel-body { max-width: 720px; margin: 0 auto; padding: 5rem 3rem; }
  .artikel-body p {
    font-size: 1.05rem;
    font-weight: 300;
    color: #2a2c3a;
    line-height: 1.9;
    margin-bottom: 1.8rem;
  }
  .artikel-body h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.7rem;
    font-weight: 400;
    margin: 3rem 0 1.2rem;
    color: var(--black);
  }
  .artikel-body h2 em { font-style: italic; color: var(--accent); }
  .quote-blok {
    border-left: 3px solid var(--accent);
    padding: 1.2rem 2rem;
    background: var(--light);
    margin: 2.5rem 0;
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    font-style: italic;
    color: var(--black);
    line-height: 1.7;
  }
  .crypto-card {
    border-left: 3px solid var(--accent);
    padding: 1.5rem 2rem;
    background: var(--light);
    margin: 2rem 0;
  }
  .crypto-term {
    font-size: 0.72rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--accent);
    font-weight: 500;
    margin-bottom: 0.4rem;
  }
  .crypto-titel {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-weight: 400;
    margin-bottom: 0.6rem;
  }
  .crypto-tekst {
    font-size: 0.92rem;
    color: var(--gray);
    font-weight: 300;
    line-height: 1.8;
    margin: 0 !important;
  }
  .terug-link {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.8rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--accent);
    text-decoration: none;
    font-weight: 500;
    margin-bottom: 3rem;
    transition: gap 0.2s;
  }
  .terug-link:hover { gap: 1rem; }
  .artikel-footer {
    max-width: 720px;
    margin: 0 auto;
    padding: 3rem 3rem 5rem;
    border-top: 1px solid rgba(124,92,191,0.15);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
  }
  .artikel-footer p { font-size: 0.82rem; color: var(--gray); font-weight: 300; }

/* ── artikel-falen.html ── */
.artikel-hero { min-height: 40vh; background: linear-gradient(135deg, #0d0f1e 0%, #1a1530 50%, #0d0f1e 100%); display: flex; align-items: flex-end; padding: 8rem 3rem 4rem; position: relative; overflow: hidden; }
  .artikel-hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 30% 50%, rgba(124,92,191,0.2) 0%, transparent 70%); }
  .artikel-hero-inner { position: relative; z-index: 1; max-width: 800px; }
  .artikel-hero .post-category { margin-bottom: 1.2rem; }
  .artikel-hero h1 { font-family: 'Playfair Display', serif; font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 400; color: var(--white); line-height: 1.15; margin-bottom: 1.5rem; }
  .artikel-hero h1 em { font-style: italic; color: var(--accent); }
  .artikel-meta { font-size: 0.78rem; color: rgba(255,255,255,0.35); letter-spacing: 0.08em; display: flex; gap: 2rem; }
  .artikel-body { max-width: 720px; margin: 0 auto; padding: 5rem 3rem; }
  .artikel-body p { font-size: 1.05rem; font-weight: 300; color: #2a2c3a; line-height: 1.9; margin-bottom: 1.8rem; }
  .artikel-body h2 { font-family: 'Playfair Display', serif; font-size: 1.7rem; font-weight: 400; margin: 3rem 0 1.2rem; color: var(--black); }
  .artikel-body h2 em { font-style: italic; color: var(--accent); }
  .quote-blok { border-left: 3px solid var(--accent); padding: 1.2rem 2rem; background: var(--light); margin: 2.5rem 0; font-family: 'Playfair Display', serif; font-size: 1.15rem; font-style: italic; color: var(--black); line-height: 1.7; }
  .terug-link { display: inline-flex; align-items: center; gap: 0.6rem; font-size: 0.8rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--accent); text-decoration: none; font-weight: 500; margin-bottom: 3rem; transition: gap 0.2s; }
  .terug-link:hover { gap: 1rem; }
  .artikel-footer { max-width: 720px; margin: 0 auto; padding: 3rem 3rem 5rem; border-top: 1px solid rgba(124,92,191,0.15); display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; }
  .artikel-footer p { font-size: 0.82rem; color: var(--gray); font-weight: 300; }

/* ── artikel-ochtend.html ── */
.artikel-hero { min-height: 40vh; background: linear-gradient(135deg, #0d0f1e 0%, #1a1530 50%, #0d0f1e 100%); display: flex; align-items: flex-end; padding: 8rem 3rem 4rem; position: relative; overflow: hidden; }
  .artikel-hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 30% 50%, rgba(124,92,191,0.2) 0%, transparent 70%); }
  .artikel-hero-inner { position: relative; z-index: 1; max-width: 800px; }
  .artikel-hero .post-category { margin-bottom: 1.2rem; }
  .artikel-hero h1 { font-family: 'Playfair Display', serif; font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 400; color: var(--white); line-height: 1.15; margin-bottom: 1.5rem; }
  .artikel-hero h1 em { font-style: italic; color: var(--accent); }
  .artikel-meta { font-size: 0.78rem; color: rgba(255,255,255,0.35); letter-spacing: 0.08em; display: flex; gap: 2rem; }
  .artikel-body { max-width: 720px; margin: 0 auto; padding: 5rem 3rem; }
  .artikel-body p { font-size: 1.05rem; font-weight: 300; color: #2a2c3a; line-height: 1.9; margin-bottom: 1.8rem; }
  .artikel-body h2 { font-family: 'Playfair Display', serif; font-size: 1.7rem; font-weight: 400; margin: 3rem 0 1.2rem; color: var(--black); }
  .artikel-body h2 em { font-style: italic; color: var(--accent); }
  .quote-blok { border-left: 3px solid var(--accent); padding: 1.2rem 2rem; background: var(--light); margin: 2.5rem 0; font-family: 'Playfair Display', serif; font-size: 1.15rem; font-style: italic; color: var(--black); line-height: 1.7; }
  .terug-link { display: inline-flex; align-items: center; gap: 0.6rem; font-size: 0.8rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--accent); text-decoration: none; font-weight: 500; margin-bottom: 3rem; transition: gap 0.2s; }
  .terug-link:hover { gap: 1rem; }
  .artikel-footer { max-width: 720px; margin: 0 auto; padding: 3rem 3rem 5rem; border-top: 1px solid rgba(124,92,191,0.15); display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; }
  .artikel-footer p { font-size: 0.82rem; color: var(--gray); font-weight: 300; }

/* ── artikel-productief.html ── */
.artikel-hero {
    min-height: 40vh;
    background: linear-gradient(135deg, #0d0f1e 0%, #1a1530 50%, #0d0f1e 100%);
    display: flex; align-items: flex-end;
    padding: 8rem 3rem 4rem;
    position: relative; overflow: hidden;
  }
  .artikel-hero::before {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(ellipse at 30% 50%, rgba(124,92,191,0.2) 0%, transparent 70%);
  }
  .artikel-hero-inner { position: relative; z-index: 1; max-width: 800px; }
  .artikel-hero .post-category { margin-bottom: 1.2rem; }
  .artikel-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 400; color: var(--white); line-height: 1.15; margin-bottom: 1.5rem;
  }
  .artikel-hero h1 em { font-style: italic; color: var(--accent); }
  .artikel-meta { font-size: 0.78rem; color: rgba(255,255,255,0.35); letter-spacing: 0.08em; display: flex; gap: 2rem; }
  .artikel-body { max-width: 720px; margin: 0 auto; padding: 5rem 3rem; }
  .artikel-body p { font-size: 1.05rem; font-weight: 300; color: #2a2c3a; line-height: 1.9; margin-bottom: 1.8rem; }
  .artikel-body h2 { font-family: 'Playfair Display', serif; font-size: 1.7rem; font-weight: 400; margin: 3rem 0 1.2rem; color: var(--black); }
  .artikel-body h2 em { font-style: italic; color: var(--accent); }
  .terug-link { display: inline-flex; align-items: center; gap: 0.6rem; font-size: 0.8rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--accent); text-decoration: none; font-weight: 500; margin-bottom: 3rem; transition: gap 0.2s; }
  .terug-link:hover { gap: 1rem; }
  .artikel-footer { max-width: 720px; margin: 0 auto; padding: 3rem 3rem 5rem; border-top: 1px solid rgba(124,92,191,0.15); display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; }
  .artikel-footer p { font-size: 0.82rem; color: var(--gray); font-weight: 300; }

/* ── artikel-zelfreflectie.html ── */
.artikel-hero {
    min-height: 40vh;
    background: linear-gradient(135deg, #0d0f1e 0%, #1a1530 50%, #0d0f1e 100%);
    display: flex; align-items: flex-end;
    padding: 8rem 3rem 4rem;
    position: relative; overflow: hidden;
  }
  .artikel-hero::before {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(ellipse at 30% 50%, rgba(124,92,191,0.2) 0%, transparent 70%);
  }
  .artikel-hero-inner { position: relative; z-index: 1; max-width: 800px; }
  .artikel-hero .post-category { margin-bottom: 1.2rem; }
  .artikel-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 400; color: var(--white); line-height: 1.15; margin-bottom: 1.5rem;
  }
  .artikel-hero h1 em { font-style: italic; color: var(--accent); }
  .artikel-meta {
    font-size: 0.78rem; color: rgba(255,255,255,0.35);
    letter-spacing: 0.08em; display: flex; gap: 2rem;
  }
  .artikel-body { max-width: 720px; margin: 0 auto; padding: 5rem 3rem; }
  .artikel-body p {
    font-size: 1.05rem; font-weight: 300; color: #2a2c3a;
    line-height: 1.9; margin-bottom: 1.8rem;
  }
  .artikel-body h2 {
    font-family: 'Playfair Display', serif; font-size: 1.7rem;
    font-weight: 400; margin: 3rem 0 1.2rem; color: var(--black);
  }
  .artikel-body h2 em { font-style: italic; color: var(--accent); }
  .quote-blok {
    border-left: 3px solid var(--accent);
    padding: 1.2rem 2rem;
    background: var(--light);
    margin: 2.5rem 0;
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    font-style: italic;
    color: var(--black);
    line-height: 1.7;
  }
  .terug-link {
    display: inline-flex; align-items: center; gap: 0.6rem;
    font-size: 0.8rem; letter-spacing: 0.12em; text-transform: uppercase;
    color: var(--accent); text-decoration: none; font-weight: 500;
    margin-bottom: 3rem; transition: gap 0.2s;
  }
  .terug-link:hover { gap: 1rem; }
  .artikel-footer {
    max-width: 720px; margin: 0 auto; padding: 3rem 3rem 5rem;
    border-top: 1px solid rgba(124,92,191,0.15);
    display: flex; justify-content: space-between; align-items: center;
    flex-wrap: wrap; gap: 1rem;
  }
  .artikel-footer p { font-size: 0.82rem; color: var(--gray); font-weight: 300; }

/* ── Werk Hero ── */
.werk-hero {
  min-height: 35vh;
  background: linear-gradient(135deg, #0d0f1e 0%, #1a1530 50%, #0d0f1e 100%);
  display: flex;
  align-items: flex-end;
  padding: 8rem 3rem 4rem;
  position: relative;
  overflow: hidden;
}
.werk-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 60% 50%, rgba(124,92,191,0.2) 0%, transparent 70%);
}
.werk-hero-inner { position: relative; z-index: 1; }
.werk-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 400;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 1rem;
}
.werk-hero h1 em { font-style: italic; color: var(--accent); }
.werk-hero p { color: rgba(255,255,255,0.4); font-weight: 300; font-size: 0.95rem; }

/* ── Portfolio lijst ── */
.portfolio-lijst {
  background: var(--black);
}

.portfolio-item {
  display: grid;
  grid-template-columns: 80px 1fr 380px 60px;
  align-items: center;
  gap: 3rem;
  padding: 3.5rem 4rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  text-decoration: none;
  color: var(--white);
  position: relative;
  overflow: hidden;
  transition: background 0.4s;
}
.portfolio-item:hover {
  background: rgba(124,92,191,0.07);
}
.portfolio-item:hover .portfolio-img-wrap {
  opacity: 1;
  transform: scale(1.03);
}
.portfolio-item:hover .portfolio-arrow {
  transform: translateX(6px);
  color: var(--accent);
}
.portfolio-item:hover .portfolio-nummer {
  color: var(--accent);
}

.portfolio-nummer {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-style: italic;
  color: rgba(255,255,255,0.2);
  transition: color 0.3s;
  padding-top: 0.2rem;
}

.portfolio-categorie {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 0.7rem;
}
.portfolio-titel {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.3rem, 2.5vw, 2rem);
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 0.8rem;
  color: var(--white);
}
.portfolio-desc {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.4);
  font-weight: 300;
  line-height: 1.7;
  max-width: 480px;
}

.portfolio-img-wrap {
  height: 220px;
  overflow: hidden;
  opacity: 0.6;
  transition: opacity 0.4s, transform 0.4s;
}
.portfolio-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.portfolio-arrow {
  font-size: 1.5rem;
  color: rgba(255,255,255,0.3);
  transition: transform 0.3s, color 0.3s;
  justify-self: end;
}

.portfolio-cta {
  background: var(--black);
  border-top: 1px solid rgba(124,92,191,0.2);
  padding: 5rem 4rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
}
.portfolio-cta .section-title { color: var(--white); margin: 0; }
.portfolio-cta .section-title em { color: var(--accent); }

@media (max-width: 900px) {
  .portfolio-item {
    grid-template-columns: 50px 1fr 50px;
    gap: 1.5rem;
    padding: 2.5rem 2rem;
  }
  .portfolio-img-wrap { display: none; }
  .portfolio-cta { padding: 4rem 2rem; }
}

@media (max-width: 600px) {
  .portfolio-item {
    grid-template-columns: 1fr 40px;
    padding: 2rem 1.5rem;
  }
  .portfolio-nummer { display: none; }
}

/* ── Realisaties Banner (Black Mountain stijl) ── */
.realisaties-banner {
  background: linear-gradient(145deg, #0e1020 0%, #1a1535 60%, #0e1020 100%);
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 8rem 2rem 4rem;
  gap: 2rem;
}
.realisaties-banner::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 60%, rgba(124,92,191,0.15) 0%, transparent 65%);
}

.banner-float {
  width: 280px;
  border-radius: 16px;
  object-fit: cover;
  position: relative;
  z-index: 1;
  box-shadow: 0 30px 80px rgba(0,0,0,0.6);
  flex-shrink: 0;
}
.banner-float-left {
  transform: rotate(-4deg) translateY(20px);
}
.banner-float-right {
  transform: rotate(4deg) translateY(-20px);
}

.banner-content {
  text-align: center;
  position: relative;
  z-index: 2;
  max-width: 520px;
  flex-shrink: 0;
}

.banner-titel {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.05;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 2rem;
}

.banner-script {
  display: block;
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-weight: 400;
  text-transform: none;
  font-size: 1.1em;
  color: var(--accent);
  letter-spacing: 0.02em;
}

.banner-btn {
  display: inline-block;
  background: var(--white);
  color: var(--black);
  padding: 1rem 2.2rem;
  font-size: 0.82rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 700;
  text-decoration: none;
  border-radius: 2px;
  margin-bottom: 1.2rem;
  transition: background 0.3s, color 0.3s;
  font-family: 'DM Sans', sans-serif;
}
.banner-btn:hover {
  background: var(--accent);
  color: var(--white);
}

.banner-sub {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
  font-weight: 300;
  margin-bottom: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
}

.banner-checks {
  display: flex;
  gap: 1.2rem;
  justify-content: center;
  flex-wrap: wrap;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.55);
  font-weight: 300;
}
.banner-checks span { display: flex; gap: 0.3rem; align-items: center; }

@media (max-width: 960px) {
  .banner-float { display: none; }
  .realisaties-banner { min-height: auto; padding: 7rem 2rem 4rem; }
}

/* ══════════════════════════════════════
   WERK PAGINA — ORIGINEEL DESIGN
══════════════════════════════════════ */

/* Intro */
.werk-intro {
  min-height: 100vh;
  background: #08090f;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 10rem 5rem 5rem;
  position: relative;
  overflow: hidden;
}
.werk-intro::before {
  content: 'WERK';
  position: absolute;
  right: -2rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: clamp(12rem, 22vw, 22rem);
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  color: rgba(124,92,191,0.04);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}
.werk-jaar {
  font-size: 0.72rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 500;
  display: block;
  margin-bottom: 2rem;
}
.werk-intro-h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3.5rem, 8vw, 8rem);
  font-weight: 400;
  color: var(--white);
  line-height: 1.0;
  margin-bottom: 2.5rem;
}
.werk-intro-h1 em {
  font-style: italic;
  color: var(--accent);
}
.werk-intro-sub {
  font-size: 1rem;
  color: rgba(255,255,255,0.35);
  font-weight: 300;
  line-height: 1.8;
  max-width: 480px;
}
.werk-scroll-hint {
  position: absolute;
  bottom: 3rem;
  left: 5rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.2);
}
.werk-scroll-lijn {
  width: 60px;
  height: 1px;
  background: rgba(255,255,255,0.15);
  position: relative;
  overflow: hidden;
}
.werk-scroll-lijn::after {
  content: '';
  position: absolute;
  left: -100%;
  top: 0;
  width: 100%;
  height: 100%;
  background: var(--accent);
  animation: slideRight 2s ease infinite;
}
@keyframes slideRight {
  0% { left: -100%; }
  100% { left: 100%; }
}

/* Project blokken */
.project-blok {
  padding: 0;
  overflow: hidden;
}
.project-blok--donker {
  background: #0b0c14;
}
.project-blok--licht {
  background: #f5f4f8;
}

.project-blok-inner {
  display: grid;
  grid-template-columns: 120px 1fr 1fr;
  min-height: 520px;
}
.project-blok-inner--omgekeerd {
  direction: rtl;
}
.project-blok-inner--omgekeerd > * {
  direction: ltr;
}

.project-meta-links {
  padding: 4rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-right: 1px solid rgba(124,92,191,0.1);
}
.project-blok--licht .project-meta-links {
  border-right-color: rgba(0,0,0,0.08);
}

.project-nr {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  font-weight: 400;
  font-style: italic;
  color: rgba(124,92,191,0.2);
  line-height: 1;
}
.project-blok--licht .project-nr {
  color: rgba(124,92,191,0.25);
}

.project-tag-label {
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 500;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

.project-midden {
  padding: 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.5rem;
}
.project-naam {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--white);
}
.project-blok--licht .project-naam {
  color: var(--black);
}
.project-naam em {
  font-style: italic;
  color: var(--accent);
}
.project-tekst {
  font-size: 0.92rem;
  font-weight: 300;
  line-height: 1.85;
  color: rgba(255,255,255,0.45);
  max-width: 420px;
}
.project-blok--licht .project-tekst {
  color: rgba(0,0,0,0.5);
}
.project-link {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  text-decoration: none;
  font-weight: 500;
  border-bottom: 1px solid rgba(124,92,191,0.3);
  padding-bottom: 0.3rem;
  width: fit-content;
  transition: gap 0.2s, border-color 0.2s;
}
.project-link:hover {
  gap: 1rem;
  border-color: var(--accent);
}

.project-beeld {
  position: relative;
  overflow: hidden;
}
.project-beeld img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.8s ease;
  filter: saturate(0.7);
}
.project-blok:hover .project-beeld img {
  transform: scale(1.04);
  filter: saturate(1);
}
.project-beeld-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(11,12,20,0.5) 0%, transparent 50%);
}
.project-blok--licht .project-beeld-overlay {
  background: linear-gradient(to right, rgba(245,244,248,0.5) 0%, transparent 50%);
}

/* CTA strip */
.werk-cta-strip {
  background: #ffffff;
  border-top: 2px solid var(--black);
  padding: 6rem 5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}
.werk-cta-vraag {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
  font-weight: 500;
}
.werk-cta-titel {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 400;
  font-style: italic;
  color: var(--black);
  line-height: 1;
}
.werk-cta-btn {
  display: block;
  width: fit-content;
  background: var(--black);
  color: var(--white);
  padding: 1.2rem 2.5rem;
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 700;
  text-decoration: none;
  font-family: 'DM Sans', sans-serif;
  margin-top: 2rem;
  border: 2px solid var(--black);
  position: relative;
  overflow: hidden;
  transition: color 0.3s, transform 0.2s;
  z-index: 0;
}
.werk-cta-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--accent);
  transform: translateX(-100%);
  transition: transform 0.35s ease;
  z-index: -1;
}
.werk-cta-btn:hover::before { transform: translateX(0); }
.werk-cta-btn:hover {
  color: var(--white);
  border-color: var(--accent);
  transform: translateX(4px);
}
.werk-cta-deco {
  font-family: 'Playfair Display', serif;
  font-size: clamp(8rem, 18vw, 18rem);
  font-weight: 700;
  font-style: italic;
  color: var(--accent);
  line-height: 1;
  position: absolute;
  right: 3rem;
  bottom: -1rem;
  user-select: none;
  pointer-events: none;
}

/* Responsive */
@media (max-width: 900px) {
  .werk-intro { padding: 9rem 2.5rem 4rem; }
  .werk-scroll-hint { left: 2.5rem; }
  .project-blok-inner {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
  .project-meta-links {
    flex-direction: row;
    padding: 2rem;
    border-right: none;
    border-bottom: 1px solid rgba(124,92,191,0.1);
    align-items: center;
  }
  .project-tag-label { writing-mode: horizontal-tb; transform: none; }
  .project-nr { font-size: 2rem; }
  .project-midden { padding: 2.5rem 2rem; }
  .project-beeld { height: 260px; }
  .project-blok-inner--omgekeerd { direction: ltr; }
  .werk-cta-strip { padding: 4rem 2rem; flex-direction: column; align-items: flex-start; gap: 2rem; }
  .werk-cta-deco { display: none; }
}

/* ── Project slideshow ── */
.project-slideshow { position: relative; overflow: hidden; min-height: 400px; }

.slide-track { width: 100%; height: 100%; position: absolute; inset: 0; }

.pslide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.7s ease;
  display: block;
}
.pslide.actief { opacity: 1; }

.pslide-nav {
  position: absolute;
  bottom: 1.2rem;
  left: 0; right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  z-index: 10;
}
.pslide-prev, .pslide-next {
  background: rgba(255,255,255,0.12);
  border: none;
  color: var(--white);
  width: 32px; height: 32px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 0.85rem;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
  backdrop-filter: blur(4px);
}
.pslide-prev:hover, .pslide-next:hover { background: var(--accent); }
.pslide-dots { display: flex; gap: 6px; align-items: center; }
.pdot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  transition: background 0.3s, transform 0.3s;
}
.pdot.actief { background: var(--white); transform: scale(1.3); }

/* ── Project tags ── */
.project-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0.5rem 0;
}
.project-tags span {
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.3rem 0.8rem;
  border: 1px solid rgba(124,92,191,0.3);
  color: rgba(255,255,255,0.5);
  font-weight: 400;
}
.project-blok--licht .project-tags span {
  border-color: rgba(124,92,191,0.25);
  color: rgba(0,0,0,0.4);
}

/* ── Project leeg (coming soon) ── */
.project-beeld--leeg {
  background: linear-gradient(135deg, #f0eef8 0%, #e8e4f5 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.project-leeg-inhoud {
  text-align: center;
}
.project-leeg-inhoud span {
  font-family: 'Playfair Display', serif;
  font-size: 6rem;
  font-style: italic;
  color: rgba(124,92,191,0.15);
  display: block;
  line-height: 1;
}
.project-leeg-inhoud p {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(124,92,191,0.4);
  margin-top: 0.5rem;
}

/* ── Project leeg donker variant ── */
.project-beeld--leeg-donker {
  background: linear-gradient(135deg, #12111c 0%, #1a1830 100%);
}
.project-beeld--leeg-donker .project-leeg-inhoud span {
  color: rgba(124,92,191,0.12);
}
.project-beeld--leeg-donker .project-leeg-inhoud p {
  color: rgba(124,92,191,0.3);
}

/* ── Over mij contact knop ── */
.over-contact-btn { margin-top: 1rem; }

/* ── Exclusives nav — altijd goud ── */
.nav-exclusives {
  color: #c9a84c !important;
  font-weight: 600 !important;
  letter-spacing: 0.14em;
  position: relative;
}
.nav-exclusives::after {
  content: '✦';
  font-size: 0.5rem;
  position: absolute;
  top: -4px;
  right: -8px;
  color: #c9a84c;
}
.nav-exclusives:hover {
  color: #e8c96a !important;
}

/* ══════════════════════════════════════
   EXCLUSIVES PAGINA — GOUD THEMA
══════════════════════════════════════ */

:root {
  --goud: #c9a84c;
  --goud-licht: #e8c96a;
  --goud-donker: #9a7a2e;
}

/* Hero */
.excl-hero {
  min-height: 100vh;
  background: #08090f;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 10rem 5rem 6rem;
  position: relative;
  overflow: hidden;
}
.excl-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 40% 60%, rgba(201,168,76,0.08) 0%, transparent 65%);
}
.excl-hero-noise {
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
  opacity: 0.4;
  pointer-events: none;
}
.excl-hero-inner { position: relative; z-index: 2; max-width: 700px; }
.excl-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--goud);
  border: 1px solid rgba(201,168,76,0.3);
  padding: 0.4rem 1rem;
  margin-bottom: 2rem;
  width: fit-content;
  font-weight: 500;
}
.excl-titel {
  font-family: 'Playfair Display', serif;
  font-size: clamp(4rem, 10vw, 10rem);
  font-weight: 400;
  color: var(--white);
  line-height: 0.85;
  margin-bottom: 2rem;
}
.excl-titel em {
  font-style: italic;
  color: var(--goud-licht);
  display: block;
  margin-top: -0.1em;
}
.excl-sub {
  font-size: 1rem;
  color: rgba(255,255,255,0.4);
  font-weight: 300;
  line-height: 1.8;
  max-width: 520px;
  margin-bottom: 3rem;
}
.excl-cta-rij {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
}
.excl-btn-goud {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  background: var(--goud);
  color: #08090f;
  padding: 1rem 2rem;
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 700;
  text-decoration: none;
  font-family: 'DM Sans', sans-serif;
  position: relative;
  overflow: hidden;
  transition: gap 0.3s, color 0.3s;
  z-index: 0;
  border: none;
  cursor: pointer;
}
.excl-btn-goud::before {
  content: '';
  position: absolute; inset: 0;
  background: var(--goud-licht);
  transform: translateX(-100%);
  transition: transform 0.35s ease;
  z-index: -1;
}
.excl-btn-goud:hover::before { transform: translateX(0); }
.excl-btn-goud:hover { gap: 1.1rem; }

.excl-btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  background: transparent;
  color: rgba(255,255,255,0.5);
  padding: 1rem 2rem;
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 500;
  text-decoration: none;
  font-family: 'DM Sans', sans-serif;
  border: 1px solid rgba(255,255,255,0.15);
  transition: color 0.3s, border-color 0.3s;
}
.excl-btn-ghost:hover { color: var(--goud); border-color: var(--goud); }

.excl-hero-deco {
  position: absolute;
  right: 5rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 20rem;
  color: rgba(201,168,76,0.03);
  pointer-events: none;
  user-select: none;
  font-family: serif;
  animation: goudDraai 20s linear infinite;
}
@keyframes goudDraai {
  from { transform: translateY(-50%) rotate(0deg); }
  to { transform: translateY(-50%) rotate(360deg); }
}

/* Wat sectie */
.excl-wat {
  background: #f9f7f2;
  padding: 7rem 5rem;
}
.excl-wat-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: start;
}
.excl-label {
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--goud-donker);
  font-weight: 600;
  margin-bottom: 1.2rem;
  display: block;
}
.excl-wat-tekst h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 400;
  color: var(--black);
  line-height: 1.3;
  margin-bottom: 1.5rem;
}
.excl-wat-tekst h2 em { font-style: italic; color: var(--goud-donker); }
.excl-wat-tekst p { font-size: 0.95rem; color: var(--gray); line-height: 1.8; font-weight: 300; }

.excl-verschil {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: rgba(0,0,0,0.08);
}
.excl-kolom {
  padding: 2rem;
}
.excl-kolom--gratis { background: #f0ede6; }
.excl-kolom--goud { background: #08090f; }
.excl-kolom-label {
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 1.2rem;
  display: block;
}
.excl-kolom--gratis .excl-kolom-label { color: rgba(0,0,0,0.4); }
.excl-kolom--goud .excl-kolom-label { color: var(--goud); }
.excl-kolom ul { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.excl-kolom ul li { font-size: 0.82rem; font-weight: 300; line-height: 1.5; }
.excl-kolom--gratis ul li { color: rgba(0,0,0,0.55); }
.excl-kolom--goud ul li { color: rgba(255,255,255,0.6); }
.excl-kolom--goud ul li:nth-child(-n+3) { color: rgba(255,255,255,0.3); }
.excl-kolom--goud ul li:nth-child(n+4) { color: var(--goud); font-weight: 500; }

/* Voorproeven */
.excl-voorproeven {
  background: var(--black);
  padding: 7rem 5rem;
}
.excl-voorproeven-inner { max-width: 1100px; margin: 0 auto; }
.excl-voorproeven h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  color: var(--white);
}
.excl-voorproeven h2 em { font-style: italic; color: var(--goud); }
.excl-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1px;
  background: rgba(201,168,76,0.1);
}
.excl-card {
  background: #0d0e18;
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: relative;
  overflow: hidden;
}
.excl-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--goud), transparent);
}
.excl-card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.excl-card-cat {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--goud);
  font-weight: 600;
}
.excl-slot {
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.25);
  text-transform: uppercase;
}
.excl-card-titel {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--white);
  line-height: 1.3;
}
.excl-card-tekst {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.5);
  font-weight: 300;
  line-height: 1.7;
}
.excl-card-blur {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.2);
  font-weight: 300;
  line-height: 1.7;
  filter: blur(4px);
  user-select: none;
  pointer-events: none;
  border-top: 1px solid rgba(201,168,76,0.1);
  padding-top: 1rem;
}
.excl-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,0.05);
  font-size: 0.72rem;
  color: rgba(255,255,255,0.25);
}
.excl-badge-klein {
  color: var(--goud);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
}

/* Coming soon */
.excl-coming {
  background: linear-gradient(135deg, #0d0b08 0%, #1a1508 50%, #0d0b08 100%);
  padding: 7rem 5rem;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(201,168,76,0.15);
}
.excl-coming::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(201,168,76,0.06) 0%, transparent 70%);
}
.excl-coming-inner { max-width: 600px; margin: 0 auto; text-align: center; position: relative; z-index: 1; }
.excl-coming-titel {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 400;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 1.5rem;
}
.excl-coming-titel em { font-style: italic; color: var(--goud); }
.excl-coming-sub {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.4);
  font-weight: 300;
  line-height: 1.8;
  margin-bottom: 2.5rem;
}
.excl-coming-form {
  display: flex;
  gap: 0;
  max-width: 500px;
  margin: 0 auto;
}
.excl-input {
  flex: 1;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(201,168,76,0.2);
  border-right: none;
  color: var(--white);
  padding: 1rem 1.5rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.88rem;
  outline: none;
}
.excl-input::placeholder { color: rgba(255,255,255,0.25); }
.excl-input:focus { border-color: var(--goud); }
.excl-coming-note {
  color: var(--goud);
  font-size: 0.85rem;
  margin-top: 1.5rem;
  letter-spacing: 0.05em;
}
.excl-coming-deco {
  position: absolute;
  right: 4rem; bottom: -3rem;
  font-size: 18rem;
  color: rgba(201,168,76,0.04);
  pointer-events: none;
  user-select: none;
  font-family: serif;
}

/* Responsive */
@media (max-width: 900px) {
  .excl-hero { padding: 9rem 2rem 5rem; }
  .excl-wat { padding: 5rem 2rem; }
  .excl-wat-inner { grid-template-columns: 1fr; gap: 3rem; }
  .excl-voorproeven { padding: 5rem 2rem; }
  .excl-cards { grid-template-columns: 1fr; }
  .excl-coming { padding: 5rem 2rem; }
  .excl-coming-form { flex-direction: column; }
  .excl-input { border-right: 1px solid rgba(201,168,76,0.2); border-bottom: none; }
  .excl-hero-deco { display: none; }
}

/* ══════════════════════════════════════
   PC BUILDER PAGINA
══════════════════════════════════════ */

:root {
  --pcb-cyan: #00e5ff;
  --pcb-dark: #060810;
  --pcb-card: #0d0f1a;
  --pcb-border: rgba(0,229,255,0.15);
  --pcb-groen: #00ff88;
  --pcb-rood: #ff4444;
}

.pcb-body { background: var(--pcb-dark); }

/* ── Scanlines & grid bg ── */
.pcb-scanlines {
  position: fixed; inset: 0; pointer-events: none; z-index: 0;
  background: repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(0,229,255,0.015) 2px, rgba(0,229,255,0.015) 4px);
}
.pcb-grid-bg {
  position: absolute; inset: 0; pointer-events: none;
  background-image: linear-gradient(rgba(0,229,255,0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(0,229,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}

/* ── Hero ── */
.pcb-hero {
  min-height: 100vh;
  background: var(--pcb-dark);
  display: flex; align-items: center;
  padding: 8rem 5rem 5rem;
  position: relative; overflow: hidden;
}
.pcb-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(0,229,255,0.06) 0%, transparent 60%);
}
.pcb-hero-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem; align-items: center;
  width: 100%; max-width: 1200px; margin: 0 auto;
  position: relative; z-index: 2;
}
.pcb-status-bar {
  display: flex; align-items: center; gap: 0.8rem;
  margin-bottom: 2rem;
}
.pcb-dot {
  width: 8px; height: 8px; border-radius: 50%;
}
.pcb-dot--groen { background: var(--pcb-groen); box-shadow: 0 0 8px var(--pcb-groen); }
.pcb-mono {
  font-family: 'Share Tech Mono', monospace;
  font-size: 0.72rem; letter-spacing: 0.15em;
  color: rgba(255,255,255,0.4);
}
.pcb-blink { animation: blink 1s step-end infinite; }
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0} }

.pcb-hero-titel {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3rem, 6vw, 6rem);
  font-weight: 700; line-height: 0.95;
  color: var(--white); margin-bottom: 1.5rem;
}
.pcb-hero-accent {
  color: var(--pcb-cyan);
  text-shadow: 0 0 40px rgba(0,229,255,0.4);
  font-style: italic;
}
.pcb-hero-sub {
  font-size: 1rem; font-weight: 300; line-height: 1.8;
  color: rgba(255,255,255,0.45); max-width: 480px;
  margin-bottom: 2.5rem;
}
.pcb-hero-stats {
  display: flex; gap: 2rem; align-items: center;
  margin-bottom: 2.5rem; padding: 1.5rem;
  border: 1px solid var(--pcb-border);
  background: rgba(0,229,255,0.03);
  width: fit-content;
}
.pcb-stat { text-align: center; }
.pcb-stat-nr {
  display: block;
  font-family: 'Share Tech Mono', monospace;
  font-size: 1.8rem; color: var(--pcb-cyan);
  text-shadow: 0 0 20px rgba(0,229,255,0.5);
}
.pcb-stat-label {
  font-size: 0.65rem; letter-spacing: 0.1em;
  text-transform: uppercase; color: rgba(255,255,255,0.3);
  line-height: 1.4;
}
.pcb-stat-divider { width: 1px; height: 40px; background: var(--pcb-border); }
.pcb-hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }

/* Buttons */
.pcb-btn-primary {
  display: inline-flex; align-items: center; gap: 0.7rem;
  background: var(--pcb-cyan); color: #000;
  padding: 1rem 2rem; font-size: 0.78rem;
  letter-spacing: 0.15em; text-transform: uppercase;
  font-weight: 700; text-decoration: none;
  font-family: 'DM Sans', sans-serif;
  border: none; cursor: pointer;
  position: relative; overflow: hidden;
  transition: gap 0.3s, box-shadow 0.3s;
}
.pcb-btn-primary:hover {
  gap: 1.2rem;
  box-shadow: 0 0 30px rgba(0,229,255,0.4);
}
.pcb-btn-full { width: 100%; justify-content: center; margin-top: 1.5rem; }
.pcb-btn-ghost {
  display: inline-flex; align-items: center; gap: 0.7rem;
  background: transparent; color: rgba(255,255,255,0.5);
  padding: 1rem 2rem; font-size: 0.78rem;
  letter-spacing: 0.15em; text-transform: uppercase;
  font-weight: 500; text-decoration: none;
  border: 1px solid rgba(255,255,255,0.15);
  transition: color 0.3s, border-color 0.3s;
}
.pcb-btn-ghost:hover { color: var(--pcb-cyan); border-color: var(--pcb-cyan); }

/* PC Visual */
.pcb-hero-right { display: flex; justify-content: center; align-items: center; }
.pcb-pc-visual { position: relative; }
.pcb-case {
  width: 280px; height: 380px;
  border: 2px solid rgba(0,229,255,0.2);
  position: relative; background: #080a14;
  box-shadow: 0 0 60px rgba(0,229,255,0.08), inset 0 0 40px rgba(0,0,0,0.5);
}
.pcb-case-inner {
  position: absolute; inset: 15px;
  display: flex; flex-direction: column; gap: 10px;
  padding: 15px;
}
.pcb-component {
  border: 1px solid rgba(0,229,255,0.15);
  background: rgba(0,229,255,0.03);
  display: flex; align-items: center; justify-content: center;
  position: relative; transition: border-color 0.3s, box-shadow 0.3s;
  cursor: default;
}
.pcb-component:hover {
  border-color: var(--pcb-cyan);
  box-shadow: 0 0 15px rgba(0,229,255,0.2);
}
.pcb-comp-label {
  font-family: 'Share Tech Mono', monospace;
  font-size: 0.65rem; letter-spacing: 0.15em;
  color: rgba(0,229,255,0.6);
}
.pcb-cpu { height: 70px; }
.pcb-gpu { height: 90px; }
.pcb-ram { height: 40px; }
.pcb-ssd { height: 30px; }
.pcb-comp-glow {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, rgba(0,229,255,0.08) 0%, transparent 70%);
  animation: pulseGlow 3s ease infinite;
}
@keyframes pulseGlow {
  0%,100% { opacity: 0.5; } 50% { opacity: 1; }
}
.pcb-rgb-strip {
  height: 4px; margin-top: auto;
  background: linear-gradient(90deg, #ff0080, #00e5ff, #00ff88, #ff0080);
  background-size: 200%;
  animation: rgbSlide 3s linear infinite;
}
@keyframes rgbSlide { 0%{background-position:0%} 100%{background-position:200%} }
.pcb-case-glass {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.03) 0%, transparent 50%);
  pointer-events: none;
}

/* Section labels */
.pcb-section-tag {
  font-family: 'Share Tech Mono', monospace;
  font-size: 0.7rem; letter-spacing: 0.25em;
  text-transform: uppercase; color: var(--pcb-cyan);
  margin-bottom: 1rem; display: block;
}
.pcb-section-titel {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 400; color: var(--white); line-height: 1.1;
  margin-bottom: 1.5rem;
}
.pcb-section-sub {
  font-size: 0.95rem; color: rgba(255,255,255,0.4);
  font-weight: 300; line-height: 1.8; max-width: 600px;
  margin-bottom: 3rem;
}
.pcb-cyan { color: var(--pcb-cyan); font-style: italic; }
.pcb-groen { color: var(--pcb-groen); }
.pcb-rood { color: var(--pcb-rood); }

/* ── VS Sectie ── */
.pcb-vs {
  background: #060d1a; padding: 7rem 5rem;
}
.pcb-vs-inner { max-width: 1000px; margin: 0 auto; }
.pcb-vs .pcb-section-tag {
  color: var(--pcb-cyan) !important;
  font-family: 'Share Tech Mono', monospace;
  font-size: 0.72rem;
  letter-spacing: 0.25em;
}
.pcb-vs .pcb-section-titel {
  color: var(--white);
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 400;
  font-style: italic;
  line-height: 1.15;
}
.pcb-vs-grid {
  display: grid; grid-template-columns: 1fr auto 1fr;
  gap: 0; align-items: stretch; margin-top: 3rem;
  border: 1px solid rgba(0,0,0,0.08);
}
.pcb-vs-kolom { padding: 2.5rem; }
.pcb-vs-bad { background: #0a1525; }
.pcb-vs-good { background: #04080f; }
.pcb-vs-midden {
  display: flex; align-items: center; justify-content: center;
  padding: 0 1.5rem;
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem; font-style: italic;
  color: rgba(0,229,255,0.2); background: #080e1c;
  writing-mode: vertical-rl;
  border-left: 1px solid var(--pcb-border);
  border-right: 1px solid var(--pcb-border);
}
.pcb-vs-header { margin-bottom: 2rem; }
.pcb-vs-header h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem; font-weight: 400; margin: 0.5rem 0;
}
.pcb-vs-bad .pcb-vs-header h3 { color: var(--white); }
.pcb-vs-good .pcb-vs-header h3 { color: var(--white); }
.pcb-vs-icon { font-size: 1.5rem; display: block; }
.pcb-vs-prijs {
  font-family: 'Share Tech Mono', monospace;
  font-size: 1.2rem; color: var(--pcb-rood);
}
.pcb-vs-prijs.pcb-groen { color: var(--pcb-groen) !important; }
.pcb-vs-kolom ul { list-style: none; display: flex; flex-direction: column; gap: 0.9rem; }
.pcb-vs-kolom ul li { font-size: 0.88rem; font-weight: 300; line-height: 1.4; }
.pcb-vs-bad ul li { color: rgba(255,255,255,0.45); }
.bad { color: rgba(255,80,80,0.7) !important; }
.good { color: rgba(0,229,255,0.8) !important; font-weight: 400 !important; }

/* ── Preset Builds ── */
.pcb-presets { background: var(--pcb-dark); padding: 7rem 5rem; }
.pcb-presets-inner { max-width: 1200px; margin: 0 auto; }
.pcb-builds-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; background: var(--pcb-border);
}
.pcb-build-card {
  background: var(--pcb-card); padding: 2.5rem;
  position: relative; cursor: pointer;
  transition: background 0.3s;
  border-top: 2px solid transparent;
}
.pcb-build-card:hover { background: #111422; border-top-color: var(--pcb-cyan); }
.pcb-build-card--featured {
  background: #0a1020;
  border-top: 2px solid var(--pcb-cyan);
  box-shadow: 0 0 40px rgba(0,229,255,0.08);
}
.pcb-build-card.geselecteerd { border-top-color: var(--pcb-cyan); background: #0d1525; }
.pcb-build-badge {
  position: absolute; top: -1px; right: 1.5rem;
  background: var(--pcb-dark); border: 1px solid var(--pcb-border);
  font-size: 0.62rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(255,255,255,0.4); padding: 0.3rem 0.7rem;
  font-family: 'Share Tech Mono', monospace;
}
.pcb-build-badge--featured { background: var(--pcb-cyan); color: #000; border-color: var(--pcb-cyan); }
.pcb-build-badge--gold { background: #c9a84c; color: #000; border-color: #c9a84c; }
.pcb-build-tier {
  font-family: 'Share Tech Mono', monospace;
  font-size: 0.65rem; letter-spacing: 0.25em;
  color: rgba(255,255,255,0.3); margin-bottom: 0.8rem;
  margin-top: 0.5rem;
}
.pcb-build-naam {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem; font-weight: 400;
  color: var(--white); margin-bottom: 0.4rem;
}
.pcb-build-sub {
  font-size: 0.8rem; color: rgba(255,255,255,0.3);
  margin-bottom: 1.5rem; font-weight: 300;
}
.pcb-build-specs { display: flex; flex-direction: column; gap: 0.5rem; margin-bottom: 2rem; }
.pcb-spec-rij {
  display: flex; justify-content: space-between;
  font-size: 0.78rem; padding: 0.4rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.pcb-spec-rij span:first-child { color: rgba(255,255,255,0.3); font-family: 'Share Tech Mono', monospace; font-size: 0.7rem; }
.pcb-spec-rij span:last-child { color: rgba(255,255,255,0.7); }
.pcb-build-prijs { margin-bottom: 1.5rem; }
.pcb-prijs-label { font-size: 0.65rem; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.3); display: block; margin-bottom: 0.3rem; }
.pcb-prijs-bedrag {
  font-family: 'Share Tech Mono', monospace;
  font-size: 2rem; color: var(--pcb-cyan);
  text-shadow: 0 0 20px rgba(0,229,255,0.3);
}
.pcb-build-select {
  width: 100%; padding: 0.9rem; border: 1px solid var(--pcb-border);
  background: transparent; color: rgba(255,255,255,0.5);
  font-family: 'DM Sans', sans-serif; font-size: 0.75rem;
  letter-spacing: 0.12em; text-transform: uppercase; cursor: pointer;
  transition: all 0.3s;
}
.pcb-build-select:hover, .pcb-build-select--featured {
  background: var(--pcb-cyan); color: #000;
  border-color: var(--pcb-cyan); font-weight: 700;
}

/* ── Interactive Builder ── */
.pcb-interactive { background: #09090f; padding: 7rem 5rem; }
.pcb-interactive-inner { max-width: 1200px; margin: 0 auto; }
.pcb-config-layout {
  display: grid; grid-template-columns: 1fr 380px;
  gap: 3rem; align-items: start;
}
.pcb-config-opties { display: flex; flex-direction: column; gap: 0; }
.pcb-config-groep {
  border-bottom: 1px solid rgba(255,255,255,0.05);
  padding: 1.5rem 0;
}
.pcb-config-titel {
  display: flex; align-items: center; gap: 0.8rem;
  font-size: 0.8rem; letter-spacing: 0.12em;
  text-transform: uppercase; color: rgba(255,255,255,0.5);
  font-family: 'Share Tech Mono', monospace;
  margin-bottom: 1rem;
}
.pcb-config-keuzes { display: flex; flex-direction: column; gap: 0.4rem; }
.pcb-keuze {
  display: grid; grid-template-columns: auto 1fr auto auto;
  align-items: center; gap: 1rem;
  padding: 0.9rem 1.2rem;
  border: 1px solid rgba(255,255,255,0.05);
  cursor: pointer; transition: all 0.2s;
  background: rgba(255,255,255,0.02);
}
.pcb-keuze:hover { border-color: var(--pcb-border); background: rgba(0,229,255,0.03); }
.pcb-keuze input { accent-color: var(--pcb-cyan); width: 16px; height: 16px; cursor: pointer; }
.pcb-keuze:has(input:checked) {
  border-color: rgba(0,229,255,0.4);
  background: rgba(0,229,255,0.05);
}
.pcb-keuze-naam { font-size: 0.88rem; color: rgba(255,255,255,0.8); font-weight: 400; }
.pcb-keuze-detail { font-size: 0.72rem; color: rgba(255,255,255,0.25); font-family: 'Share Tech Mono', monospace; }
.pcb-keuze-prijs {
  font-family: 'Share Tech Mono', monospace;
  font-size: 0.85rem; color: var(--pcb-cyan);
}

/* Summary */
.pcb-config-summary {
  background: var(--pcb-card);
  border: 1px solid var(--pcb-border);
  padding: 2rem; position: sticky; top: 100px;
  box-shadow: 0 0 40px rgba(0,229,255,0.05);
}
.pcb-summary-header {
  display: flex; justify-content: space-between;
  align-items: center; margin-bottom: 1.5rem;
}
.pcb-sum-rij {
  display: flex; justify-content: space-between;
  padding: 0.6rem 0; border-bottom: 1px solid rgba(255,255,255,0.04);
  font-size: 0.78rem;
}
.pcb-sum-rij span:first-child { color: rgba(255,255,255,0.3); font-family: 'Share Tech Mono', monospace; font-size: 0.68rem; }
.pcb-sum-rij span:last-child { color: rgba(255,255,255,0.7); text-align: right; }
.pcb-summary-divider { border-top: 1px solid var(--pcb-border); margin: 1.5rem 0; }
.pcb-summary-totaal {
  display: flex; justify-content: space-between; align-items: center;
}
.pcb-summary-totaal span:first-child { font-size: 0.75rem; color: rgba(255,255,255,0.4); text-transform: uppercase; letter-spacing: 0.1em; }
.pcb-totaal-prijs {
  font-family: 'Share Tech Mono', monospace;
  font-size: 2.2rem; color: var(--pcb-cyan);
  text-shadow: 0 0 20px rgba(0,229,255,0.4);
  transition: transform 0.2s;
}
.pcb-summary-note {
  font-size: 0.68rem; color: rgba(255,255,255,0.2);
  margin-top: 1rem; line-height: 1.6;
}

/* ── Offerte ── */
.pcb-offerte { background: var(--pcb-dark); padding: 7rem 5rem; border-top: 1px solid var(--pcb-border); }
.pcb-offerte-inner {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 6rem;
  align-items: start;
}
.pcb-offerte-sub { font-size: 0.95rem; color: rgba(255,255,255,0.4); font-weight: 300; line-height: 1.8; margin-bottom: 2rem; }
.pcb-offerte-info { display: flex; flex-direction: column; gap: 1rem; }
.pcb-info-item {
  display: flex; gap: 1rem; align-items: center;
  font-size: 0.85rem; color: rgba(255,255,255,0.5);
}
.pcb-form { display: flex; flex-direction: column; gap: 1.2rem; }
.pcb-form-rij { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.pcb-form-groep { display: flex; flex-direction: column; gap: 0.5rem; }
.pcb-form-groep label {
  font-size: 0.7rem; letter-spacing: 0.15em; text-transform: uppercase;
  color: rgba(255,255,255,0.4); font-family: 'Share Tech Mono', monospace;
}
.pcb-form-groep input, .pcb-form-groep select, .pcb-form-groep textarea {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--white); padding: 0.9rem 1.2rem;
  font-family: 'DM Sans', sans-serif; font-size: 0.88rem;
  outline: none; transition: border-color 0.3s;
}
.pcb-form-groep input:focus, .pcb-form-groep select:focus, .pcb-form-groep textarea:focus {
  border-color: var(--pcb-cyan);
}
.pcb-form-groep input::placeholder, .pcb-form-groep textarea::placeholder { color: rgba(255,255,255,0.2); }
.pcb-form-groep select { cursor: pointer; }
.pcb-form-groep select option { background: #0d0f1a; }
.pcb-form-groep textarea { min-height: 100px; resize: vertical; }
.pcb-gebruik-keuzes { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.pcb-gebruik-label {
  display: flex; align-items: center; gap: 0.5rem;
  padding: 0.5rem 1rem;
  border: 1px solid rgba(255,255,255,0.1);
  font-size: 0.78rem; color: rgba(255,255,255,0.5);
  cursor: pointer; transition: all 0.2s;
}
.pcb-gebruik-label:hover { border-color: var(--pcb-cyan); color: var(--pcb-cyan); }
.pcb-gebruik-label input { accent-color: var(--pcb-cyan); }

/* Responsive */
@media (max-width: 1000px) {
  .pcb-hero { padding: 8rem 2rem 4rem; }
  .pcb-hero-inner { grid-template-columns: 1fr; }
  .pcb-hero-right { display: none; }
  .pcb-vs { padding: 5rem 2rem; }
  .pcb-vs-grid { grid-template-columns: 1fr; }
  .pcb-vs-midden { writing-mode: horizontal-tb; padding: 1rem; border: none; border-top: 1px solid rgba(0,229,255,0.1); border-bottom: 1px solid rgba(0,229,255,0.1); transform: none; font-size: 1.2rem; }
  .pcb-presets { padding: 5rem 2rem; }
  .pcb-builds-grid { grid-template-columns: 1fr; }
  .pcb-interactive { padding: 5rem 2rem; }
  .pcb-config-layout { grid-template-columns: 1fr; }
  .pcb-config-summary { position: static; }
  .pcb-offerte { padding: 5rem 2rem; }
  .pcb-offerte-inner { grid-template-columns: 1fr; gap: 3rem; }
  .pcb-form-rij { grid-template-columns: 1fr; }
  .pcb-hero-stats { flex-wrap: wrap; gap: 1rem; }
}

/* ── PC Builder nav — altijd cyaan ── */
.nav-pcbuilder {
  color: #00e5ff !important;
  font-weight: 600 !important;
  letter-spacing: 0.14em;
}
.nav-pcbuilder:hover {
  color: #7ff0ff !important;
}

/* ── Blog: PC Builder speciale kaart ── */
.post-card--special {
  border-top: 2px solid #00e5ff;
  background: linear-gradient(135deg, #f9f9ff 0%, #f0f4ff 100%);
}
.post-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 1rem;
}
.post-card-cta {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #000;
  background: #00e5ff;
  padding: 0.4rem 0.9rem;
  text-decoration: none;
  transition: background 0.2s, gap 0.2s;
}
.post-card-cta:hover { background: #00c8e0; }

/* ═══════════════════════════════════════════
   MOBILE & TABLET RESPONSIVE (max 768px)
═══════════════════════════════════════════ */

/* ── Hamburger knop ── */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  z-index: 200;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: rgba(255,255,255,0.8);
  border-radius: 2px;
  transition: all 0.3s ease;
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

@media (max-width: 768px) {

  /* Nav hamburger */
  nav {
    padding: 1.2rem 1.5rem;
  }
  .hamburger {
    display: flex;
  }
  .nav-links {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(8,10,18,0.97);
    backdrop-filter: blur(16px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
    z-index: 150;
  }
  .nav-links.open {
    display: flex;
  }
  .nav-links a {
    font-size: 1.1rem;
    letter-spacing: 0.15em;
  }

  /* Hero */
  .hero {
    grid-template-columns: 1fr;
    padding: 100px 1.5rem 3rem;
    gap: 2rem;
  }
  .hero-right { display: none; }
  .hero h1 { font-size: 2.4rem; }
  .hero-desc { font-size: 0.95rem; }

  /* Stats */
  .stats {
    flex-direction: column;
    gap: 1rem;
    padding: 2rem 1.5rem;
  }
  .stat-divider { display: none; }

  /* Blog grid - 1 kolom */
  .posts-grid {
    grid-template-columns: 1fr !important;
  }

  /* About sectie */
  .about {
    flex-direction: column;
    padding: 3rem 1.5rem;
    gap: 2rem;
  }
  .about-img {
    width: 100px;
    height: 100px;
    font-size: 1.2rem;
  }

  /* Hero pagina */
  .page-hero { padding: 100px 1.5rem 3rem; }
  .page-hero h1 { font-size: 2.2rem; }

  /* CV grid */
  .cv-grid {
    grid-template-columns: 1fr;
  }
  .cv-body { padding: 2rem 1.5rem; }

  /* Contact */
  .contact-page {
    flex-direction: column;
    padding: 2rem 1.5rem;
    gap: 2rem;
  }

  /* Werk grid */
  .werk-grid, .projects-grid {
    grid-template-columns: 1fr;
  }

  /* Newsletter */
  .newsletter, .newsletter-strip {
    padding: 3rem 1.5rem;
  }
  .newsletter-form {
    flex-direction: column;
    gap: 1rem;
  }
  .newsletter-form input,
  .newsletter-form button {
    width: 100%;
  }

  /* Footer */
  footer {
    padding: 2rem 1.5rem;
    gap: 1rem;
  }
  .social-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
  }

  /* Artikel pagina */
  .artikel-hero { padding: 100px 1.5rem 2rem; }
  .artikel-body { padding: 2rem 1.5rem; }
  .artikel-body p, .artikel-body li { font-size: 1rem; }

  /* PC Builder mobile */
  .pcb-hero { padding: 100px 1.5rem 3rem; }
  .pcb-hero-inner { flex-direction: column; }
  .pcb-hero-right { display: none; }
  .pcb-hero-titel { font-size: 2.5rem; }
  .pcb-hero-stats { gap: 1rem; }
  .pcb-builds-grid { grid-template-columns: 1fr; }
  .pcb-config-layout { flex-direction: column; }
  .pcb-config-summary {
    position: static;
    width: 100%;
  }
  .pcb-offerte-inner { flex-direction: column; }
  .pcb-form-rij { flex-direction: column; }

  /* Exclusives */
  .excl-hero { padding: 100px 1.5rem 3rem; }
  .excl-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 2rem; }
  .section-title { font-size: 1.6rem; }
  .pcb-hero-titel { font-size: 2rem; }
  .pcb-hero-btns { flex-direction: column; }
  .pcb-btn-primary, .pcb-btn-ghost { width: 100%; text-align: center; }
}

/* ══════════════════════════════════════════
   THEME TOGGLE BUTTON
══════════════════════════════════════════ */
.theme-toggle {
  background: none;
  border: 1px solid rgba(124,92,191,0.35);
  border-radius: 20px;
  padding: 0.28rem 0.7rem;
  cursor: pointer;
  font-size: 0.82rem;
  color: #f0f1f8;
  transition: border-color 0.2s, background 0.2s, color 0.2s;
  line-height: 1.5;
  flex-shrink: 0;
  margin-left: auto;
  margin-right: 0.8rem;
  letter-spacing: 0.04em;
}
.theme-toggle:hover {
  border-color: var(--accent);
  background: rgba(124,92,191,0.12);
}
@media (min-width: 769px) {
  .theme-toggle {
    margin-left: 1.5rem;
    margin-right: 0;
  }
}

/* ══════════════════════════════════════════
   LIGHT MODE  [data-theme="light"]
══════════════════════════════════════════ */
[data-theme="light"] nav {
  background: rgba(245,246,251,0.95);
  border-bottom-color: rgba(100,70,180,0.12);
}
[data-theme="light"] .logo { color: #0d0f1a; }
[data-theme="light"] .nav-links a { color: #0d0f1a; }
[data-theme="light"] .nav-links a:hover { color: var(--accent); }
[data-theme="light"] .nav-links a.actief { color: var(--accent); }
[data-theme="light"] .theme-toggle { color: #0d0f1a; border-color: rgba(80,50,160,0.3); }
[data-theme="light"] .hamburger span { background: #0d0f1a; }

/* Mobile nav overlay — light */
@media (max-width: 768px) {
  [data-theme="light"] .nav-links {
    background: rgba(245,246,251,0.98);
    backdrop-filter: blur(16px);
  }
  [data-theme="light"] .nav-links a { color: #0d0f1a; }
}

/* Hero secties — licht */
[data-theme="light"] .page-hero,
[data-theme="light"] .blog-hero,
[data-theme="light"] .artikel-hero,
[data-theme="light"] .werk-hero {
  background: linear-gradient(135deg, #ecedf7 0%, #dbd8f0 50%, #ecedf7 100%) !important;
}
[data-theme="light"] .page-hero::before,
[data-theme="light"] .blog-hero::before,
[data-theme="light"] .artikel-hero::before {
  background: radial-gradient(ellipse at 60% 50%, rgba(124,92,191,0.08) 0%, transparent 70%);
}
[data-theme="light"] .page-hero h1,
[data-theme="light"] .blog-hero h1,
[data-theme="light"] .artikel-hero h1,
[data-theme="light"] .werk-hero h1 { color: #0d0f1a; }
[data-theme="light"] .page-hero p,
[data-theme="light"] .blog-hero p { color: rgba(13,15,26,0.5) !important; }
[data-theme="light"] .artikel-meta { color: rgba(13,15,26,0.45) !important; }
[data-theme="light"] .artikel-hero .post-category { color: var(--accent); }

/* Footer — licht */
[data-theme="light"] footer { background: #e8eaf2; border-top-color: rgba(80,50,160,0.12); }
[data-theme="light"] footer .logo { color: #0d0f1a; }
[data-theme="light"] footer p { color: #3a3c52; }
[data-theme="light"] .social-links a { color: #3a3c52; }
[data-theme="light"] .social-links a:hover { color: var(--accent); }

/* ══════════════════════════════════════════
   DARK MODE  [data-theme="dark"]
══════════════════════════════════════════ */
[data-theme="dark"] body { background: #080a12; color: #f0f1f8; }

/* Artikel content */
[data-theme="dark"] .artikel-body p { color: #b8bad4 !important; }
[data-theme="dark"] .artikel-body h2 { color: #f0f1f8 !important; }
[data-theme="dark"] .artikel-footer p { color: #7a7d94; }
[data-theme="dark"] .quote-blok {
  background: rgba(124,92,191,0.08) !important;
  color: #c0c2d8 !important;
  border-left-color: var(--accent);
}

/* Kaarten */
[data-theme="dark"] .post-card { background: #0e1020; border-color: rgba(124,92,191,0.12); }
[data-theme="dark"] .post-card:hover { background: #13152a; }
[data-theme="dark"] .post-title,
[data-theme="dark"] .post-card-title { color: #f0f1f8; }
[data-theme="dark"] .post-excerpt { color: #7a7d94; }

/* Skill bars */
[data-theme="dark"] .skill-bar { background: rgba(124,92,191,0.1); }
[data-theme="dark"] .skill-label { color: #c0c2d8; }

/* Formulier inputs */
[data-theme="dark"] .form-group input,
[data-theme="dark"] .form-group textarea,
[data-theme="dark"] .form-group select {
  background: #0e1020;
  color: #f0f1f8;
  border-color: rgba(124,92,191,0.2);
}
[data-theme="dark"] .form-group label { color: #c0c2d8; }

/* CV */
[data-theme="dark"] .cv-body { background: #0e1020; }
[data-theme="dark"] .cv-job,
[data-theme="dark"] .cv-edu-item { border-left-color: rgba(124,92,191,0.3); }
[data-theme="dark"] .cv-job h3,
[data-theme="dark"] .cv-edu-item h3 { color: #f0f1f8; }

/* Contact sectie */
[data-theme="dark"] .contact-detail-text { color: #f0f1f8; }
[data-theme="dark"] .contact-detail-label { color: #7a7d94; }
[data-theme="dark"] .contact-info h2 { color: #f0f1f8; }
[data-theme="dark"] .contact-info > p { color: #b8bad4; }
[data-theme="dark"] .contact-form h2 { color: #f0f1f8; }
[data-theme="dark"] .contact-form > p { color: #b8bad4; }
[data-theme="dark"] .form-group label { color: #b8bad4; }

/* Reacties sectie */
[data-theme="dark"] .reacties-sectie { background: #0a0c18; border-top-color: rgba(124,92,191,0.15); }
[data-theme="dark"] .reacties-sectie h2 { color: #f0f1f8; }

/* Lichte kaarten — tekst donker houden in dark mode */
[data-theme="dark"] .newsletter .section-title,
[data-theme="dark"] .newsletter .section-tag,
[data-theme="dark"] .newsletter p,
[data-theme="dark"] .newsletter-strip .section-title,
[data-theme="dark"] .newsletter-strip .section-tag,
[data-theme="dark"] .newsletter-strip > p { color: #0d0f1a; }

/* Over mij pagina */
[data-theme="dark"] .over-body p { color: #b8bad4; }
[data-theme="dark"] .over-body h2 { color: #f0f1f8; }

[data-theme="dark"] .crypto-card .crypto-titel,
[data-theme="dark"] .crypto-card .crypto-tekst,
[data-theme="dark"] .crypto-card p { color: #0d0f1a !important; }

[data-theme="dark"] .boek-card .boek-titel,
[data-theme="dark"] .boek-card .boek-tekst,
[data-theme="dark"] .boek-card p { color: #0d0f1a !important; }

/* ══════════════════════════════════════════
   REACTIES (GISCUS)
══════════════════════════════════════════ */
.reacties-sectie {
  max-width: 720px;
  margin: 0 auto;
  padding: 3rem 3rem 5rem;
  border-top: 1px solid rgba(124,92,191,0.15);
}
.reacties-sectie h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--black);
  margin-bottom: 2rem;
}

/* ══════════════════════════════════════════
   COOKIE BANNER (GDPR)
══════════════════════════════════════════ */
#cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: #0d0f1c;
  border-top: 1px solid rgba(124,92,191,0.3);
  padding: 1.2rem 2rem;
  z-index: 9998;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}
#cookie-banner.cookie-visible {
  transform: translateY(0);
}
.cookie-content {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.cookie-content p {
  font-size: 0.85rem;
  color: #b8bad4;
  margin: 0;
  flex: 1;
  min-width: 200px;
}
.cookie-btns {
  display: flex;
  gap: 0.8rem;
  flex-shrink: 0;
}
#cookie-accept {
  background: var(--accent);
  color: #f0f1f8;
  border: none;
  padding: 0.55rem 1.2rem;
  font-size: 0.82rem;
  font-family: 'DM Sans', sans-serif;
  letter-spacing: 0.05em;
  cursor: pointer;
  border-radius: 2px;
  transition: background 0.2s;
}
#cookie-accept:hover { background: var(--accent2); }
#cookie-decline {
  background: none;
  color: #7a7d94;
  border: 1px solid rgba(124,92,191,0.3);
  padding: 0.55rem 1.2rem;
  font-size: 0.82rem;
  font-family: 'DM Sans', sans-serif;
  letter-spacing: 0.05em;
  cursor: pointer;
  border-radius: 2px;
  transition: border-color 0.2s, color 0.2s;
}
#cookie-decline:hover { border-color: var(--accent); color: #f0f1f8; }

[data-theme="light"] #cookie-banner { background: #ecedf7; border-top-color: rgba(100,70,180,0.2); }
[data-theme="light"] .cookie-content p { color: #3a3c52; }
[data-theme="light"] #cookie-decline { color: #555770; }

@media (max-width: 600px) {
  .cookie-content { flex-direction: column; align-items: flex-start; }
  .cookie-btns { width: 100%; }
  #cookie-accept, #cookie-decline { flex: 1; text-align: center; }
}

/* ══════════════════════════════════════════
   PRIVACY PAGINA
══════════════════════════════════════════ */
.privacy-blok {
  background: var(--light);
  border-left: 3px solid var(--accent);
  padding: 1.2rem 1.8rem;
  margin: 1.5rem 0;
  border-radius: 0 4px 4px 0;
}
.privacy-blok p { margin-bottom: 0.5rem; color: var(--black); }
.privacy-blok p:last-child { margin-bottom: 0; }
.privacy-blok a { color: var(--accent); text-decoration: none; }
.privacy-blok a:hover { text-decoration: underline; }

.privacy-label {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent) !important;
  margin-bottom: 0.6rem !important;
}

.privacy-tabel {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0 2rem;
  font-size: 0.88rem;
}
.privacy-tabel th {
  text-align: left;
  padding: 0.7rem 1rem;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  border-bottom: 1px solid rgba(124,92,191,0.2);
}
.privacy-tabel td {
  padding: 0.8rem 1rem;
  border-bottom: 1px solid rgba(124,92,191,0.1);
  color: var(--black);
  vertical-align: top;
}
.privacy-tabel tr:last-child td { border-bottom: none; }

/* Dark mode */
[data-theme="dark"] .privacy-blok { background: rgba(124,92,191,0.07); }
[data-theme="dark"] .privacy-blok p { color: #b8bad4; }
[data-theme="dark"] .privacy-tabel td { color: #b8bad4; }
[data-theme="dark"] .privacy-tabel th { color: var(--accent); }

@media (max-width: 600px) {
  .privacy-tabel { display: block; overflow-x: auto; }
}

/* ══════════════════════════════════════════
   FEEDBACK WIDGET
══════════════════════════════════════════ */
#feedback-btn {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 999;
  background: var(--accent);
  color: #f0f1f8;
  border: none;
  border-radius: 2rem;
  padding: 0.6rem 1.1rem;
  font-size: 0.82rem;
  font-family: 'DM Sans', sans-serif;
  letter-spacing: 0.05em;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.45rem;
  box-shadow: 0 4px 20px rgba(124,92,191,0.35);
  transition: background 0.2s, transform 0.2s;
}
#feedback-btn:hover { background: var(--accent2); transform: translateY(-2px); }

#feedback-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 1000;
  align-items: flex-end;
  justify-content: flex-end;
  padding: 1.5rem;
}
#feedback-overlay.feedback-open { display: flex; }

#feedback-modal {
  background: var(--bg);
  border: 1px solid rgba(124,92,191,0.25);
  border-radius: 12px;
  width: 100%;
  max-width: 360px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.4);
  overflow: hidden;
  animation: feedbackSlide 0.25s ease;
}
@keyframes feedbackSlide {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

#feedback-header {
  background: var(--accent);
  color: #f0f1f8;
  padding: 0.85rem 1.2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.95rem;
  font-weight: 600;
}
#feedback-sluit {
  background: none;
  border: none;
  color: #f0f1f8;
  font-size: 1.4rem;
  cursor: pointer;
  line-height: 1;
  padding: 0;
  opacity: 0.8;
  transition: opacity 0.2s;
}
#feedback-sluit:hover { opacity: 1; }

#feedback-body {
  padding: 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
#feedback-body label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: -0.2rem;
}
#feedback-type,
#feedback-bericht,
#feedback-email {
  background: #f4f4fb;
  border: 1px solid rgba(124,92,191,0.2);
  border-radius: 6px;
  color: #1a1b2e;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  padding: 0.6rem 0.8rem;
  width: 100%;
  box-sizing: border-box;
  transition: border-color 0.2s;
}
#feedback-type:focus,
#feedback-bericht:focus,
#feedback-email:focus { outline: none; border-color: var(--accent); }
#feedback-bericht { resize: vertical; min-height: 90px; }
#feedback-type option { color: #1a1b2e !important; background: #fff !important; }

#feedback-verstuur {
  background: var(--accent);
  color: #f0f1f8;
  border: none;
  border-radius: 6px;
  padding: 0.65rem 1.2rem;
  font-size: 0.88rem;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
  margin-top: 0.3rem;
  align-self: flex-end;
}
#feedback-verstuur:hover { background: var(--accent2); }
#feedback-verstuur:disabled { opacity: 0.6; cursor: not-allowed; }

#feedback-succes {
  display: none;
  color: #4caf50;
  font-size: 0.85rem;
  font-weight: 600;
}
#feedback-fout {
  display: none;
  color: #e53935;
  font-size: 0.85rem;
}

[data-theme="light"] #feedback-modal { background: #fff; }
[data-theme="light"] #feedback-type,
[data-theme="light"] #feedback-bericht,
[data-theme="light"] #feedback-email { background: #f4f4fb; color: #1a1b2e; }

@media (max-width: 480px) {
  #feedback-btn { bottom: 1rem; right: 1rem; }
  #feedback-overlay { padding: 0; align-items: flex-end; justify-content: stretch; }
  #feedback-modal { max-width: 100%; border-radius: 12px 12px 0 0; }
}

/* ══════════════════════════════════════════
   LIGHTBOX
══════════════════════════════════════════ */
.screenshots-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.2rem;
  margin-top: 1.5rem;
}
.screenshots-grid img {
  width: 100%;
  border-radius: 8px;
  border: 1px solid rgba(124,92,191,0.2);
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
}
.screenshots-grid img:hover {
  transform: scale(1.02);
  box-shadow: 0 8px 30px rgba(124,92,191,0.3);
}

#lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 1rem;
}
#lightbox.lightbox-open {
  display: flex;
}
#lightbox-img {
  max-width: 90vw;
  max-height: 80vh;
  border-radius: 8px;
  object-fit: contain;
  box-shadow: 0 20px 60px rgba(0,0,0,0.6);
  animation: lightboxFade 0.2s ease;
}
@keyframes lightboxFade {
  from { opacity: 0; transform: scale(0.96); }
  to   { opacity: 1; transform: scale(1); }
}
#lightbox-teller {
  color: rgba(255,255,255,0.6);
  font-size: 0.85rem;
  margin-top: 0.8rem;
  letter-spacing: 0.1em;
}
#lightbox-sluit {
  position: fixed;
  top: 1.2rem;
  right: 1.5rem;
  background: none;
  border: none;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
  opacity: 0.7;
  transition: opacity 0.2s;
  line-height: 1;
  z-index: 2001;
}
#lightbox-sluit:hover { opacity: 1; }
#lightbox-prev,
#lightbox-next {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(124,92,191,0.7);
  border: none;
  color: #fff;
  font-size: 1.5rem;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  z-index: 2001;
}
#lightbox-prev { left: 1rem; }
#lightbox-next { right: 1rem; }
#lightbox-prev:hover,
#lightbox-next:hover { background: var(--accent); }

@media (max-width: 600px) {
  #lightbox-prev { left: 0.3rem; }
  #lightbox-next { right: 0.3rem; }
  #lightbox-img { max-height: 70vh; }
}
