/* ══════════════════════════════════════════
   DUURZAAMHEID PAGINA — SPECIFIEKE CSS
   ══════════════════════════════════════════ */
 
/* HERO */
.du-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 70vh;
}
.du-hero-inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 60px 80px 80px;
  background: var(--warm-white);
}
.du-hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 4.5vw, 68px);
  font-weight: 300;
  line-height: 1.1;
  color: var(--charcoal);
  margin-bottom: 24px;
}
.du-hero-title em { font-style: italic; color: var(--accent); }
.du-hero-sub {
  font-size: 15px;
  line-height: 1.8;
  color: var(--bark);
  max-width: 440px;
}
.du-hero-img {
  position: relative;
  overflow: hidden;
  min-height: 400px;
}
.du-hero-img img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
}
 
/* INTRO */
.du-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.du-intro-text p {
  font-size: 15px;
  line-height: 1.85;
  color: var(--bark);
  margin-bottom: 20px;
}
.du-intro-img {
  position: relative;
  overflow: hidden;
  border-radius: 0;
}
.du-intro-img img {
  width: 100%;
  height: auto;
  max-height: 700px;
  object-fit: contain;
  object-position: center top;
  display: block;
}
 
/* DUURZAAMHEIDSPUNTEN GRID */
.du-punten-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.du-punt-card {
  background: var(--warm-white);
  padding: 40px 36px;
  border: 1px solid var(--sand);
  transition: box-shadow 0.3s, border-color 0.3s, transform 0.3s;
}
.du-punt-card:hover {
  box-shadow: 0 16px 48px rgba(58,47,40,0.15);
  border-color: var(--accent);
  transform: translateY(-4px);
}
.du-punt-icon {
  font-size: 32px;
  margin-bottom: 20px;
  text-align: center;
}
.du-punt-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 400;
  color: var(--deep);
  margin-bottom: 12px;
  line-height: 1.2;
  text-align: center;
}
.du-punt-text {
  font-size: 14px;
  line-height: 1.75;
  color: var(--bark);
}
 
/* CTA SECTIE */
.du-cta {
  background: var(--deep);
  padding: 100px 80px;
  text-align: center;
}
.du-cta-inner {
  max-width: 600px;
  margin: 0 auto;
}
.du-cta .gl-section-label {
  justify-content: center;
  color: var(--gold);
}
.du-cta .gl-section-label::before { background: var(--gold); }
.du-cta-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 300;
  line-height: 1.15;
  color: var(--cream);
  margin-bottom: 40px;
}
.du-cta-title em { font-style: italic; color: var(--gold); }
.du-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--cream);
  text-decoration: none;
  border-bottom: 1px solid var(--stone);
  padding-bottom: 6px;
  transition: all 0.3s;
}
.du-cta-btn:hover { color: var(--gold); border-color: var(--gold); gap: 22px; }
 
/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .du-hero { min-height: 60vh; }
  .du-hero-inner { padding: 60px 40px; }
  .du-intro-grid { gap: 48px; }
  .du-cta { padding: 72px 40px; }
}
 
@media (max-width: 768px) {
  .du-hero { grid-template-columns: 1fr; grid-template-rows: 60vw auto; min-height: unset; }
  .du-hero-img { grid-row: 1; min-height: 60vw; }
  .du-hero-inner { grid-row: 2; padding: 40px 24px 48px; text-align: center; align-items: center; }
  .du-hero-sub { margin-left: auto; margin-right: auto; }
  .du-intro-grid { grid-template-columns: 1fr; gap: 32px; }
  .du-intro-img img { height: 60vw; }
  .du-punten-grid { grid-template-columns: 1fr; gap: 20px; }
  .du-punt-card { padding: 28px 24px; }
  .du-cta { padding: 56px 24px; }
}
 
@media (max-width: 480px) {
  .du-hero-inner { padding: 32px 20px 40px; }
  .du-cta { padding: 48px 20px; }
}