/* ===== Hagens dak & timmerwerken - stylesheet ===== */

:root {
  --navy: #10224f;
  --navy-dark: #0a1733;
  --blue: #1e56e0;
  --blue-light: #eaf0fd;
  --gray-bg: #f4f6fa;
  --text: #1c2333;
  --text-light: #5b647a;
  --white: #ffffff;
  --radius: 10px;
  --shadow: 0 10px 30px rgba(16, 34, 79, 0.08);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; height: 100%; }

body {
  font-family: 'Inter', Arial, Helvetica, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Sticky footer: houdt de footer onderaan, ook op korte pagina's */
.site-footer { margin-top: auto; }

h1, h2, h3, h4 {
  font-family: 'Poppins', 'Inter', Arial, sans-serif;
  font-weight: 800;
  color: var(--navy);
  line-height: 1.2;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 90px 0; }
.section-alt { background: var(--gray-bg); }

.section-tag {
  display: inline-block;
  color: var(--blue);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.8rem;
  margin-bottom: 10px;
}

.section-header { max-width: 640px; margin-bottom: 50px; }
.section-header.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-header h2 { font-size: clamp(1.8rem, 3vw, 2.4rem); margin-bottom: 14px; }
.section-header p { color: var(--text-light); font-size: 1.05rem; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, color 0.15s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--blue); color: var(--white); box-shadow: 0 8px 20px rgba(30, 86, 224, 0.35); }
.btn-primary:hover { background: #1747b8; }
.btn-outline { border-color: var(--white); color: var(--white); }
.btn-outline:hover { background: var(--white); color: var(--navy); }
.btn-outline-dark { border-color: var(--navy); color: var(--navy); }
.btn-outline-dark:hover { background: var(--navy); color: var(--white); }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid rgba(16, 34, 79, 0.08);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  max-width: 1160px;
  margin: 0 auto;
}
.logo { display: flex; align-items: center; gap: 12px; }
.logo-mark { flex-shrink: 0; }
.logo-img { height: 46px; width: auto; display: block; }
.logo-text { font-family: 'Baloo 2', 'Poppins', sans-serif; font-weight: 700; font-size: 1.4rem; color: var(--blue); line-height: 1; }
.logo-text span { display: block; font-family: 'Baloo 2', 'Poppins', sans-serif; font-weight: 600; font-size: 0.72rem; color: var(--navy); letter-spacing: 0.01em; margin-top: 2px; }

.main-nav ul { display: flex; gap: 32px; align-items: center; }
.main-nav a {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--navy);
  position: relative;
  padding: 6px 0;
}
.main-nav a:hover { color: var(--blue); }
.main-nav a.active { color: var(--blue); }

.header-cta { display: flex; align-items: center; gap: 20px; }
.header-phone { display: flex; align-items: center; gap: 8px; font-weight: 700; color: var(--navy); white-space: nowrap; }
.header-phone svg { flex-shrink: 0; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span { width: 26px; height: 3px; background: var(--navy); border-radius: 2px; transition: 0.2s; }

/* Hero */
.hero {
  position: relative;
  background: linear-gradient(120deg, var(--navy) 0%, var(--navy-dark) 65%);
  color: var(--white);
  overflow: hidden;
}
.hero::after {
  content: "";
  position: absolute;
  top: -20%;
  right: -10%;
  width: 60%;
  height: 140%;
  background: linear-gradient(135deg, rgba(30, 86, 224, 0.35), rgba(30, 86, 224, 0) 70%);
  transform: rotate(8deg);
  pointer-events: none;
}
.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin: 0 auto;
  padding: 110px 24px 100px;
  text-align: center;
}
.hero-tag {
  display: inline-block;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  padding: 7px 16px;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #cdd9ff;
  margin-bottom: 22px;
}
.hero h1 { color: var(--white); font-size: clamp(2.2rem, 4.2vw, 3.4rem); margin-bottom: 20px; }
.hero h1 em { color: #7fa1ff; font-style: normal; }
.hero p { color: #c7cfe6; font-size: 1.1rem; max-width: 560px; margin: 0 auto 32px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; justify-content: center; }
/* Diensten cards */
.diensten-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.dienst-card {
  background: var(--white);
  border: 1px solid rgba(16,34,79,0.08);
  border-radius: var(--radius);
  padding: 32px 24px;
  box-shadow: var(--shadow);
  transition: transform 0.2s ease;
}
.dienst-card:hover { transform: translateY(-6px); }
.dienst-icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: var(--blue-light);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  color: var(--blue);
}
.dienst-card h3 { font-size: 1.15rem; margin-bottom: 10px; }
.dienst-card p { color: var(--text-light); font-size: 0.95rem; }

/* Tijdlijn / werkwijze */
.tijdlijn-track {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-bottom: 48px;
}
.tijdlijn-lijn {
  position: absolute;
  top: 38px;
  left: 12.5%;
  right: 12.5%;
  height: 2px;
  background: linear-gradient(90deg, var(--blue), var(--navy));
  z-index: 0;
}
.tijdlijn-stap {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 16px;
}
.stap-nummer {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  color: var(--blue);
  margin-bottom: 8px;
}
.stap-icoon {
  width: 76px; height: 76px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--blue);
  color: var(--blue);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 22px;
  box-shadow: 0 0 0 8px var(--white);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.tijdlijn-stap:hover .stap-icoon {
  transform: scale(1.08);
  box-shadow: 0 0 0 8px var(--white), 0 10px 24px rgba(30,86,224,0.25);
}
.stap-inhoud h3 { font-size: 1.05rem; margin-bottom: 10px; }
.stap-inhoud p { color: var(--text-light); font-size: 0.9rem; max-width: 230px; margin: 0 auto; }
.tijdlijn-cta { text-align: center; }

/* Waarom kiezen / USP */
.usp-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
.usp-item { text-align: center; }
.usp-icon {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--blue);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
  box-shadow: 0 10px 24px rgba(30,86,224,0.3);
}
.usp-item h4 { font-size: 1.05rem; margin-bottom: 8px; }
.usp-item p { color: var(--text-light); font-size: 0.9rem; }

/* Over ons */
.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
  align-items: center;
}
.about-visual {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.about-text p { color: var(--text-light); margin-bottom: 16px; }
.about-list { margin-top: 24px; display: grid; gap: 12px; }
.about-list li { display: flex; gap: 10px; align-items: flex-start; font-weight: 600; color: var(--navy); }
.about-list svg { flex-shrink: 0; margin-top: 3px; color: var(--blue); }

/* CTA banner */
.cta-banner {
  background: linear-gradient(120deg, var(--blue), #133a9c);
  color: var(--white);
  border-radius: 20px;
  padding: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.cta-banner h3 { color: var(--white); font-size: 1.6rem; margin-bottom: 8px; }
.cta-banner p { color: #dfe7ff; }
.cta-contacts { display: flex; gap: 28px; flex-wrap: wrap; }
.cta-contacts a { display: flex; align-items: center; gap: 10px; font-weight: 700; }

/* Projecten preview / grid - tegel (bento) stijl */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 220px;
  grid-auto-flow: dense;
  gap: 16px;
}
.project-card {
  position: relative;
  grid-column: span 1;
  grid-row: span 1;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--navy);
}
.project-card--large { grid-column: span 2; grid-row: span 2; }
.project-card--tall { grid-row: span 2; }
.project-thumb { position: absolute; inset: 0; background: var(--gray-bg); }
.project-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.project-card:hover .project-thumb img { transform: scale(1.06); }
.project-tag {
  position: absolute; top: 14px; left: 14px; z-index: 2;
  background: var(--blue); color: var(--white);
  font-size: 0.72rem; font-weight: 700;
  padding: 5px 12px; border-radius: 999px;
  text-transform: uppercase; letter-spacing: 0.04em;
}
.project-overlay {
  position: absolute; inset: 0; z-index: 1;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 18px 20px;
  background: linear-gradient(to top, rgba(10,17,51,0.9) 0%, rgba(10,17,51,0.15) 55%, transparent 100%);
}
.project-overlay h4 { color: var(--white); font-size: 1rem; margin-bottom: 2px; }
.project-overlay span { color: #c7cfe6; font-size: 0.82rem; }
.project-card--large .project-overlay h4 { font-size: 1.3rem; }

.view-all { text-align: center; margin-top: 44px; }

/* Cijfers / tellers */
.cijfers {
  background: linear-gradient(120deg, var(--blue), #133a9c);
  position: relative;
  overflow: hidden;
  padding: 64px 0;
}
.cijfers::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size: 42px 42px;
}
.cijfers-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: center;
}
.cijfer-item { text-align: center; padding: 0 20px; }
.cijfer-getal {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: clamp(2.4rem, 5vw, 3.4rem);
  color: var(--white);
  line-height: 1;
}
.cijfer-label {
  display: block;
  margin-top: 8px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #cdd9ff;
}
.cijfer-sep { width: 1px; height: 56px; background: rgba(255,255,255,0.25); }

.projects-grid--gallery .project-card:nth-child(5n+1) { grid-column: span 2; grid-row: span 2; }

/* Filter bar (projecten pagina) */
.filter-bar {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.filter-btn {
  padding: 10px 20px;
  border-radius: 999px;
  border: 2px solid rgba(16,34,79,0.12);
  background: var(--white);
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--navy);
  cursor: pointer;
  transition: 0.15s;
}
.filter-btn:hover { border-color: var(--blue); color: var(--blue); }
.filter-btn.active { background: var(--navy); border-color: var(--navy); color: var(--white); }

/* Lopende tekst (privacyverklaring e.d.) */
.prose { max-width: 760px; margin: 0 auto; }
.prose h2 { font-size: 1.4rem; margin-top: 44px; margin-bottom: 14px; }
.prose h2:first-child { margin-top: 0; }
.prose p { color: var(--text-light); margin-bottom: 16px; }
.prose ul { margin: 0 0 16px 0; padding-left: 22px; list-style: disc; }
.prose li { color: var(--text-light); margin-bottom: 8px; }
.prose a { color: var(--blue); text-decoration: underline; }
.prose .prose-meta { color: var(--text-light); font-size: 0.9rem; margin-bottom: 40px; }

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
}
.contact-info { display: grid; gap: 22px; }
.info-item { display: flex; gap: 16px; align-items: flex-start; }
.info-icon {
  width: 46px; height: 46px; border-radius: 12px;
  background: var(--blue-light); color: var(--blue);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.info-item h4 { font-size: 0.95rem; margin-bottom: 3px; }
.info-item p, .info-item a { color: var(--text-light); font-size: 0.95rem; }
.info-item a:hover { color: var(--blue); }
.map-embed {
  margin-top: 10px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 0;
}
.map-embed iframe { width: 100%; height: 220px; border: 0; display: block; }

.contact-form {
  background: var(--white);
  border: 1px solid rgba(16,34,79,0.08);
  border-radius: var(--radius);
  padding: 34px;
  box-shadow: var(--shadow);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-weight: 700; font-size: 0.88rem; margin-bottom: 6px; color: var(--navy); }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid rgba(16,34,79,0.15);
  border-radius: 8px;
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--text);
  background: var(--gray-bg);
  transition: border-color 0.15s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--blue);
  background: var(--white);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.hp-field { position: absolute; left: -9999px; opacity: 0; }
.form-msg { margin-top: 16px; padding: 12px 16px; border-radius: 8px; font-size: 0.9rem; font-weight: 600; display: none; }
.form-msg.success { display: block; background: #e5f7ec; color: #1a7a44; }
.form-msg.error { display: block; background: #fdecec; color: #b0261e; }

/* Footer */
.site-footer { background: var(--navy-dark); color: #b9c3e0; padding: 60px 0 30px; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-logo { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.footer-logo .logo-text { color: var(--white); }
.footer-logo .logo-text span { color: #7fa1ff; }
.footer-about p { color: #8f9ac2; font-size: 0.92rem; max-width: 320px; }
.footer-col h5 { color: var(--white); font-size: 0.95rem; margin-bottom: 18px; letter-spacing: 0.03em; }
.footer-col ul { display: grid; gap: 10px; }
.footer-col a { color: #b9c3e0; font-size: 0.92rem; }
.footer-col a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 0.85rem;
  color: #7883a8;
}
.footer-bottom a { text-decoration: underline; }
.footer-bottom a:hover { color: var(--white); }

/* Responsive */
@media (max-width: 900px) {
  .hero-inner { padding-top: 90px; }
  .diensten-grid { grid-template-columns: repeat(2, 1fr); }
  .usp-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; }
  .projects-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .tijdlijn-track { grid-template-columns: repeat(2, 1fr); row-gap: 40px; }
  .tijdlijn-lijn { display: none; }

  .main-nav { position: fixed; top: 68px; left: 0; right: 0; background: var(--white); border-bottom: 1px solid rgba(16,34,79,0.08); box-shadow: var(--shadow); padding: 20px 24px; transform: translateY(-150%); opacity: 0; transition: 0.2s; }
  .main-nav.open { transform: translateY(0); opacity: 1; }
  .main-nav ul { flex-direction: column; align-items: flex-start; gap: 16px; }
  .nav-toggle { display: flex; }
  .header-phone span { display: none; }
  .header-cta { gap: 12px; }
  .header-cta .btn-primary { display: none; }
}

@media (max-width: 680px) {
  .diensten-grid { grid-template-columns: 1fr; }
  .usp-grid { grid-template-columns: 1fr; }
  .projects-grid { grid-template-columns: 1fr; }
  .project-card--large { grid-column: span 1; }
  .form-row { grid-template-columns: 1fr; }
  .cta-banner { flex-direction: column; text-align: center; }
  .footer-grid { grid-template-columns: 1fr; }
  .section { padding: 60px 0; }
  .cijfers-grid { grid-template-columns: 1fr; row-gap: 28px; }
  .cijfer-sep { display: none; }
  .tijdlijn-track { grid-template-columns: 1fr; row-gap: 32px; }
  .tijdlijn-stap { flex-direction: row; text-align: left; gap: 20px; padding: 0; }
  .stap-icoon { flex-shrink: 0; width: 60px; height: 60px; margin-bottom: 0; box-shadow: none; }
  .stap-icoon svg { width: 24px; height: 24px; }
  .stap-inhoud p { max-width: none; margin: 0; }
}

/* Project-lightbox */
.project-card { cursor: pointer; }

.modal-overlay {
  display: none;
  position: fixed; inset: 0; z-index: 200;
  background: rgba(10, 17, 51, 0.92);
  backdrop-filter: blur(6px);
  overflow-y: auto;
  padding: 24px 16px;
}
.modal-overlay.open { display: flex; align-items: flex-start; justify-content: center; }
.modal {
  background: var(--navy-dark);
  border-radius: 16px;
  width: 100%; max-width: 920px;
  margin: auto;
  overflow: hidden;
  position: relative;
}
.modal-close {
  position: absolute; top: 16px; right: 16px; z-index: 10;
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,0.12); border: none; color: var(--white);
  font-size: 16px; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: 0.15s;
}
.modal-close:hover { background: rgba(255,255,255,0.25); }

.modal-main-wrap { position: relative; background: #05070f; display: flex; align-items: center; }
.modal-main-img-wrap { flex: 1; aspect-ratio: 16/10; overflow: hidden; display: flex; align-items: center; justify-content: center; }
.modal-main-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.modal-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(255,255,255,0.12); border: none; color: var(--white);
  font-size: 22px; cursor: pointer; z-index: 5;
  display: flex; align-items: center; justify-content: center;
  transition: 0.15s;
}
.modal-nav:hover { background: var(--blue); }
.modal-prev { left: 14px; }
.modal-next { right: 14px; }
.modal-foto-teller { text-align: center; font-size: 0.78rem; color: #8592bd; padding: 10px 0 0; letter-spacing: 0.06em; }

.modal-info { padding: 22px 28px 8px; }
.modal-meta { display: flex; align-items: center; gap: 12px; margin-bottom: 8px; }
.modal-cat {
  background: rgba(30,86,224,0.18); border: 1px solid rgba(30,86,224,0.4);
  color: #8fb0ff; font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 4px 12px; border-radius: 999px;
}
.modal-locatie { color: #8592bd; font-size: 0.85rem; }
.modal-titel { color: var(--white); font-size: 1.4rem; }

.modal-thumbs {
  display: flex; gap: 10px; padding: 16px 28px 26px;
  overflow-x: auto;
}
.modal-thumb {
  flex-shrink: 0; width: 84px; height: 60px; border-radius: 8px;
  overflow: hidden; cursor: pointer; border: 2px solid transparent;
  transition: 0.15s;
}
.modal-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.modal-thumb.active { border-color: var(--blue); }
.modal-thumb:hover { border-color: rgba(30,86,224,0.5); }

@media (max-width: 680px) {
  .modal-main-img-wrap { aspect-ratio: 4/3; }
  .modal-nav { width: 36px; height: 36px; font-size: 18px; }
  .modal-info { padding: 18px 18px 6px; }
  .modal-thumbs { padding: 12px 18px 20px; }
  .modal-titel { font-size: 1.15rem; }
}

/* FAQ */
.faq-list { max-width: 780px; margin: 0 auto; display: grid; gap: 12px; }
.faq-item {
  background: var(--white);
  border: 1px solid rgba(16,34,79,0.08);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.faq-vraag {
  width: 100%;
  background: none;
  border: none;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  padding: 20px 24px;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq-vraag:hover { color: var(--blue); }
.faq-icon {
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--blue);
  flex-shrink: 0;
  line-height: 1;
  transition: transform 0.25s ease;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-antwoord { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.faq-antwoord p { padding: 0 24px 20px; color: var(--text-light); font-size: 0.95rem; line-height: 1.7; }
.faq-item.open .faq-antwoord { max-height: 320px; }
