@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;1,400&family=Lato:wght@300;400;700&display=swap');

* { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: 'Lato', sans-serif; background: #f5f0e8; color: #2e2a20; }

a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }

.logo-fixed {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 999;
  pointer-events: none;
}
.logo-fixed img {
  height: 130px;
  width: auto;
  display: block;
}

nav {
  display: flex;
  align-items: center;
  padding: 12px 160px 12px 28px;
  background: #fff;
  border-bottom: 1px solid #e0d8c8;
  position: sticky;
  top: 0;
  z-index: 300;
  box-shadow: 0 1px 8px rgba(0, 0, 0, 0.06);
  min-height: 76px;
}

.logo-nav {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  color: #3a7a5a;
  line-height: 1.2;
}
.logo-sub {
  font-size: 10px;
  color: #a09070;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 300;
}

.nav-centre {
  display: flex;
  justify-content: center;
  gap: 6px;
  flex: 1;
}
.nav-btn {
  background: none;
  border: 1px solid #d0c8b0;
  color: #5a5040;
  padding: 9px 22px;
  font-size: 12px;
  letter-spacing: 1.5px;
  cursor: pointer;
  border-radius: 2px;
  transition: all 0.2s;
  text-transform: uppercase;
}
.nav-btn:hover,
.nav-btn.is-actief {
  background: #3a7a5a;
  color: #fff;
  border-color: #3a7a5a;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 8px;
  flex-shrink: 0;
}
.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: #3a7a5a;
  border-radius: 2px;
  transition: all 0.3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  flex-direction: column;
  background: #fff;
  border-bottom: 1px solid #e0d8c8;
  position: sticky;
  top: 76px;
  z-index: 290;
}
.mobile-menu.open { display: flex; }
.mob-btn {
  border: none;
  border-bottom: 1px solid #f0ece4;
  padding: 16px 28px;
  text-align: left;
  font-size: 14px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #5a5040;
  cursor: pointer;
  background: none;
}
.mob-btn:hover,
.mob-btn.is-actief {
  background: #f0f8f4;
  color: #3a7a5a;
}

.hero {
  padding: 64px 40px 48px;
  text-align: center;
  background: #fff;
  border-bottom: 1px solid #e8e0d0;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 100%, rgba(200, 160, 60, 0.07) 0%, transparent 70%);
  pointer-events: none;
}
.hero.green::before {
  background: radial-gradient(ellipse at 50% 100%, rgba(60, 140, 90, 0.07) 0%, transparent 70%);
}
.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 46px;
  color: #2e2a20;
  font-weight: 400;
  line-height: 1.2;
  position: relative;
}
.hero h1 em { font-style: italic; color: #3a7a5a; }
.hero p {
  font-size: 15px;
  color: #8a8070;
  margin-top: 14px;
  font-weight: 300;
  letter-spacing: 0.3px;
  position: relative;
}

.split { display: grid; grid-template-columns: 1fr 1fr; }
.pillar {
  padding: 48px 44px;
  border-bottom: 3px solid transparent;
  transition: all 0.2s;
}
.pillar.kunst { background: #fffbf0; border-right: 1px solid #e8e0d0; }
.pillar.tuin  { background: #f0f8f4; }
.pillar:hover.kunst { border-bottom-color: #c89030; background: #fffdf5; }
.pillar:hover.tuin  { border-bottom-color: #3a7a5a; background: #eaf5ee; }
.pillar-icon { font-size: 32px; margin-bottom: 14px; }
.pillar h2 {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 400;
  margin-bottom: 12px;
}
.pillar.kunst h2 { color: #8a6010; }
.pillar.tuin h2 { color: #2a6a44; }
.pillar p { font-size: 14px; color: #6a6050; line-height: 1.75; }
.pillar-arrow { margin-top: 20px; font-size: 12px; letter-spacing: 2px; text-transform: uppercase; }
.pillar.kunst .pillar-arrow { color: #c89030; }
.pillar.tuin .pillar-arrow { color: #3a7a5a; }

.gallery-wrap { padding: 40px; }
.section-label {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #a09070;
  margin-bottom: 18px;
  padding-bottom: 10px;
  border-bottom: 1px solid #e0d8c8;
}
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
.gallery-grid.cols5 { grid-template-columns: repeat(5, 1fr); }
.thumb {
  aspect-ratio: 1;
  overflow: hidden;
  position: relative;
  background: #e8e0d0;
  border-radius: 3px;
  border: 1px solid #e0d8c8;
  cursor: pointer;
}
.thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.92;
  transition: opacity 0.25s, transform 0.35s;
  display: block;
}
.thumb:hover img { opacity: 1; transform: scale(1.05); }
.badge {
  position: absolute;
  bottom: 7px;
  right: 7px;
  background: #c89030;
  color: #fff;
  font-size: 9px;
  padding: 3px 7px;
  border-radius: 2px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.reviews-wrap { padding: 0 40px 40px; }
.reviews-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.review-card {
  background: #fff;
  border: 1px solid #e0d8c8;
  border-radius: 3px;
  padding: 28px 32px;
  max-width: 740px;
  position: relative;
}
.review-card-full { max-width: none; }
.review-card::before {
  content: '\201C';
  font-family: 'Playfair Display', serif;
  font-size: 72px;
  color: #e8d8b0;
  position: absolute;
  top: 4px;
  left: 18px;
  line-height: 1;
  pointer-events: none;
}
.stars { color: #c89030; font-size: 17px; margin-bottom: 12px; }
.review-text { font-size: 14px; color: #4a4030; line-height: 1.8; font-style: italic; padding-left: 12px; }
.review-author { margin-top: 16px; font-size: 12px; color: #8a8070; padding-left: 12px; }
.review-author strong { color: #5a5040; font-weight: 600; }

.over-wrap { padding: 40px 40px 24px; }
.over-wrap p { font-size: 15px; color: #4a4030; line-height: 1.85; margin-bottom: 16px; }

.diensten-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; padding: 0 40px 40px; }
.dienst { background: #fff; border: 1px solid #d8ead0; border-left: 4px solid #3a7a5a; padding: 22px 26px; border-radius: 0 3px 3px 0; }
.dienst h3 { font-family: 'Playfair Display', serif; font-size: 17px; color: #2a6a44; font-weight: 400; margin-bottom: 7px; }
.dienst p { font-size: 13px; color: #5a6858; line-height: 1.7; }

.diensten-lijst { padding: 0 40px 40px; }
.diensten-lijst ul { display: grid; grid-template-columns: repeat(3, 1fr); gap: 4px 24px; list-style: none; }
.diensten-lijst li { font-size: 13px; color: #5a6050; padding: 6px 0; border-bottom: 1px solid #ece8e0; }
.diensten-lijst li::before { content: '✓ '; color: #3a7a5a; font-weight: 700; }

.hide { display: none; }

.project-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; padding: 0 40px 40px; }
.project-card {
  display: block;
  width: 100%;
  text-align: left;
  background: #fff;
  border: 1px solid #e0d8c8;
  border-radius: 3px;
  overflow: hidden;
  cursor: pointer;
}
.project-card img { width: 100%; height: 190px; object-fit: cover; display: block; opacity: 0.90; }
.project-card-body { padding: 20px 22px; }
.project-card h3 { font-family: 'Playfair Display', serif; font-size: 18px; color: #2a6a44; font-weight: 400; margin-bottom: 8px; }
.project-card p { font-size: 13px; color: #6a7060; line-height: 1.7; }

.contact-wrap { padding: 0 40px 48px; max-width: 760px; }
.contact-info-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 40px; }
.cinfo-card { background: #fff; padding: 24px 28px; border-radius: 3px; }
.cinfo-card.goud { border: 1px solid #e8d090; border-top: 4px solid #c89030; }
.cinfo-card.groen { border: 1px solid #c0dcc8; border-top: 4px solid #3a7a5a; }
.cinfo-label { font-size: 11px; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 8px; }
.cinfo-card.goud .cinfo-label { color: #a07020; }
.cinfo-card.groen .cinfo-label { color: #2a6a44; }
.cinfo-value { font-family: 'Playfair Display', serif; font-size: 22px; font-weight: 400; }
.cinfo-card.goud .cinfo-value { color: #7a5010; }
.cinfo-card.groen .cinfo-value { color: #2a6a44; font-size: 16px; line-height: 1.5; }

.form-card { background: #fff; border: 1px solid #e0d8c8; border-radius: 3px; padding: 36px 40px; }
.form-card h2 { font-family: 'Playfair Display', serif; font-size: 24px; font-weight: 400; color: #2a6a44; margin-bottom: 6px; }
.form-intro { font-size: 13px; color: #8a8070; margin-bottom: 28px; line-height: 1.6; }
.form-row { margin-bottom: 20px; }
.form-row label { display: block; font-size: 12px; letter-spacing: 1.5px; text-transform: uppercase; color: #7a7060; margin-bottom: 7px; }
.form-row input, .form-row textarea {
  width: 100%;
  padding: 11px 14px;
  font-size: 14px;
  border: 1px solid #d8d0c0;
  border-radius: 3px;
  background: #fdfaf5;
  color: #2e2a20;
  outline: none;
}
.form-row textarea { resize: vertical; min-height: 120px; }
.form-row input:focus, .form-row textarea:focus {
  border-color: #3a7a5a;
  box-shadow: 0 0 0 3px rgba(58, 122, 90, 0.10);
}
.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 20px; }
.submit-btn {
  background: #3a7a5a;
  color: #fff;
  border: none;
  padding: 14px 36px;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 2px;
  font-weight: 700;
}

.notice, .error-list {
  border-radius: 3px;
  padding: 12px 14px;
  margin-bottom: 16px;
  font-size: 13px;
}
.notice { background: #f0f8f4; border: 1px solid #b0dcc0; color: #2a6a44; }
.error-list { background: #fff3f2; border: 1px solid #f0c7c2; color: #8b3a2f; }

.empty-state { margin: 0 40px 30px; color: #7e7465; font-size: 14px; }

.agenda-preview-wrap { padding-top: 14px; }
.agenda-list { display: grid; gap: 14px; }
.agenda-item {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 16px;
  background: #fff;
  border: 1px solid #e0d8c8;
  border-radius: 3px;
  overflow: hidden;
}
.agenda-item-media { background: #ebe5d8; min-height: 170px; }
.agenda-item-media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.agenda-item-placeholder {
  width: 100%;
  height: 100%;
  min-height: 170px;
  background: linear-gradient(135deg, rgba(58,122,90,0.16), rgba(200,144,48,0.14));
}
.agenda-item-body { padding: 16px 16px 14px 0; }
.agenda-item-body h3 {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  font-weight: 400;
  color: #2a6a44;
  margin-bottom: 7px;
}
.agenda-item-body p { font-size: 13px; color: #5a6050; line-height: 1.65; margin-bottom: 6px; }
.agenda-type { font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: #a07020; margin-bottom: 4px; }
.agenda-meta { color: #7c7468; }
.agenda-link { margin-top: 14px; font-size: 12px; letter-spacing: 1px; text-transform: uppercase; }
.agenda-link a { color: #3a7a5a; font-weight: 700; }

footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 40px;
  border-top: 1px solid #e0d8c8;
  background: #fff;
  margin-top: 20px;
}
footer p { font-size: 13px; color: #8a8070; }
footer strong { color: #3a7a5a; font-weight: 600; }
.cta-btn {
  background: #3a7a5a;
  color: #fff;
  border: none;
  padding: 12px 28px;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: 2px;
  font-weight: 700;
}

.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(240, 236, 228, 0.96);
  z-index: 9000;
  align-items: center;
  justify-content: center;
}
.lightbox.open { display: flex; }
.lightbox img {
  max-width: 80vw;
  max-height: 85vh;
  border-radius: 3px;
  object-fit: contain;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.18);
}
.lb-close {
  position: absolute;
  top: 24px;
  right: 32px;
  font-size: 28px;
  color: #3a7a5a;
  cursor: pointer;
  background: none;
  border: none;
}
.lb-prev, .lb-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #fff;
  border: 1px solid #d0c8b0;
  color: #3a7a5a;
  font-size: 20px;
  padding: 12px 18px;
  cursor: pointer;
  border-radius: 2px;
}
.lb-prev { left: 24px; }
.lb-next { right: 24px; }

@media (max-width: 768px) {
  .logo-fixed img { height: 80px; }
  nav { padding: 10px 90px 10px 8px; min-height: 64px; justify-content: flex-start; gap: 10px; }
  .nav-centre { display: none; }
  .hamburger { display: flex; }
  .hero h1 { font-size: 30px; }
  .hero { padding: 40px 20px 32px; }
  .split { grid-template-columns: 1fr; }
  .pillar { padding: 32px 24px; }
  .gallery-wrap { padding: 24px 16px; }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); gap: 6px; }
  .gallery-grid.cols5 { grid-template-columns: repeat(3, 1fr); }
  .project-grid { grid-template-columns: 1fr; padding: 0 16px 32px; }
  .diensten-grid { grid-template-columns: 1fr; padding: 0 16px 32px; }
  .diensten-lijst { padding: 0 16px 32px; }
  .diensten-lijst ul { grid-template-columns: 1fr 1fr; }
  .agenda-item { grid-template-columns: 1fr; }
  .agenda-item-body { padding: 16px; }
  .agenda-item-body h3 { font-size: 21px; }
  .reviews-wrap { padding: 0 16px 32px; }
  .reviews-grid { grid-template-columns: 1fr; }
  .over-wrap { padding: 24px 16px 16px; }
  .contact-wrap { padding: 0 16px 40px; }
  .contact-info-cards { grid-template-columns: 1fr; }
  .form-card { padding: 24px 20px; }
  .form-row-2 { grid-template-columns: 1fr; }
  footer { gap: 16px; text-align: center; padding: 20px 16px; }
  body.pagina-contact footer { justify-content: center; }
  body:not(.pagina-contact) footer { flex-direction: column; }
  .empty-state { margin: 0 16px 24px; }
}

@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid.cols5 { grid-template-columns: repeat(2, 1fr); }
  .diensten-lijst ul { grid-template-columns: 1fr; }
  .hero h1 { font-size: 26px; }
}