/* =============================================================== */
/* HERO STICKY */
/* =============================================================== */
.sticky-hero {
    position: fixed; /* Houdt de hero op zijn plaats */
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh; /* Volledige schermhoogte */
    z-index: -1; /* Plaatst de hero achter de content */
    background-image: url('../img/Hero_Image.png'); /* Vervang door eigen afbeelding */
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 10px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.6);
}
.hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(28,28,26,0.0) 30%,
    rgba(28,28,26,0.55) 100%
  );
  pointer-events: none;
}

.hero-caption {
  position: absolute;
  bottom: 4rem;
  right: 5rem;
  text-align: right;
  animation: fadeUp 0.9s 0.2s ease forwards;
  opacity: 0;
}

.hero-caption-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  font-weight: 300;
  line-height: 1.12;
  color: var(--cream);
}

.hero-caption-title em {
  font-style: italic;
  color: var(--sand);
}

/* De Scrollbare Content */
.content {
    margin-top: 100vh; /* Duwt de content exact onder het startscherm */
    background: white; /* Voorkomt dat de hero door de content heen schijnt */
    position: relative;
    z-index: 1;
    box-shadow: 0px -10px 20px rgba(0, 0, 0, 0.2); /* Geeft diepte tijdens het scrollen */
}
/* =============================================================== */
/* STATS */
/* =============================================================== */
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: 100%;
  background: var(--charcoal);
  border-top: 1px solid rgba(255,255,255,0.08);
}

.hero-stat {
  padding: 2.2rem 3rem;
  border-right: 1px solid rgba(255,255,255,0.08);
}

.hero-stat:last-child { border-right: none; }

.hero-stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.8rem;
  font-weight: 300;
  color: var(--warm-white);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.hero-stat-num em {
  font-style: normal;
  color: var(--sand);
  font-size: 1.6rem;
}

.hero-stat-label {
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--stone);
}
/* =============================================================== */
/* OVER ONS */
/* =============================================================== */
.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 600px;
}
/* Replace .about-img content with a real <img> tag */
.about-img {
  background: var(--cream);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 500px;
}

.about-img-inner {
  width: 72%;
  aspect-ratio: 3/4;
  background: var(--sand);
  opacity: 0.25;
  position: relative;
}

.about-img-inner::after {
  content: '';
  position: absolute;
  inset: 1.5rem;
  border: 1px solid var(--accent);
  opacity: 0.4;
}

.about-content {
  padding: 7rem 5rem 7rem 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.section-eyebrow {
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--stone);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.section-eyebrow::before {
  content: '';
  display: block;
  width: 2rem;
  height: 1px;
  background: var(--sand);
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 300;
  line-height: 1.2;
  color: var(--charcoal);
  margin-bottom: 1.75rem;
}

.section-title em { font-style: italic; color: var(--accent); }

.section-body {
  font-size: 0.92rem;
  line-height: 1.9;
  color: var(--stone);
  margin-bottom: 2.5rem;
}
.btn-primary {
  display: inline-block;
  font-family: 'Jost', sans-serif;
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--warm-white);
  background: var(--charcoal);
  padding: 0.9rem 2.2rem;
  transition: background 0.3s;
}

.btn-primary:hover { background: var(--accent); }
/* =============================================================== */
/* Onze diensten */
/* =============================================================== */
.services {
  padding: 7rem 5rem;
  background: var(--warm-white);
}

.services-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
  align-items: end;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--light-border);
  border: 1px solid var(--light-border);
}

.service-card {
  background: var(--warm-white);
  padding: 3rem 2.5rem;
  transition: background 0.4s;
  cursor: default;
}

.service-card:hover { background: var(--cream); }

.service-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  color: var(--sand);
  font-weight: 400;
  margin-bottom: 2rem;
  letter-spacing: 0.1em;
}

.service-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.55rem;
  font-weight: 400;
  color: var(--charcoal);
  margin-bottom: 1rem;
  line-height: 1.25;
}

.service-desc {
  font-size: 0.83rem;
  line-height: 1.8;
  color: var(--stone);
}

.service-arrow {
  display: inline-flex;
  align-items: center;
  margin-top: 2rem;
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  gap: 0.5rem;
  text-decoration: none;
}

/* =============================================================== */
/* Realisaties */
/* =============================================================== */
.work {
  padding: 7rem 5rem;
  background: var(--cream);
}

.work-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 3.5rem;
}
.btn-ghost {
  display: inline-block;
  font-family: 'Jost', sans-serif;
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--charcoal);
  border-bottom: 1px solid var(--charcoal);
  padding-bottom: 0.2rem;
  transition: color 0.3s, border-color 0.3s;
}

.btn-ghost:hover {
  color: var(--accent);
  border-color: var(--accent);
}
.work-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 320px 320px;
  gap: 1rem;
}

/* Replace .work-item backgrounds with <img> tags */
.work-item {
  background: var(--charcoal);
  position: relative;
  overflow: hidden;
}

.work-item:first-child { grid-row: 1 / 3; }

.work-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(28,28,26,0.7) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.4s;
}

.work-item:hover .work-item-overlay { opacity: 1; }

.work-item-label {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  right: 1.5rem;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.4s, transform 0.4s;
}

.work-item:hover .work-item-label { opacity: 1; transform: translateY(0); }

.work-item-label-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--cream);
  font-style: italic;
}

.work-item-label-type {
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--sand);
  margin-top: 0.3rem;
}

.work-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.08;
}
/* ============================================================================================================================== */
/* Tablet versie */
/* ============================================================================================================================== */
@media (max-width: 1024px) {
  /* Onze diensten */
  .services {
    padding: 5rem 3rem;
  }

  .services-header {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 3rem;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  /* Realisaties */
  .work {
    padding: 5rem 3rem;
  }

  .work-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
  }

  .work-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 260px 260px 260px;
  }

  .work-item:first-child {
    grid-column: 1 / 3;
    grid-row: 1 / 2;
  }
  /* Labels altijd zichtbaar op Tablet (geen hover) */
  .work-item-overlay {
    opacity: 1;
  }

  .work-item-label {
    opacity: 1;
    transform: translateY(0);
  }
}
/* ============================================================================================================================== */
/* Mobiele versie */
/* ============================================================================================================================== */
@media (max-width: 768px) {
  /* Hero */
.sticky-hero {
    height: 100dvh; /* dvh voorkomt adresbalk-problemen op iOS/Android */
    background-position: center center;
  }

  .content {
    margin-top: 100dvh;
  }

  /* STATS */
  .hero-stats {
    grid-template-columns: 1fr;
  }

  .hero-stat {
    padding: 1.6rem 2rem;
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }

  .hero-stat:last-child { border-bottom: none; }

  .hero-stat-num { font-size: 2.2rem; }
  .hero-stat-num em { font-size: 1.3rem; }
  /* Onze diensten */
   .services {
    padding: 4rem 1.5rem;
  }

  .services-header {
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 2.5rem;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    padding: 2rem 1.5rem;
  }

  .service-name {
    font-size: 1.35rem;
  }
  /* Realisaties */
  .work {
    padding: 4rem 1.5rem;
  }

  .work-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
  }

  .work-grid {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(5, 240px);
  }

  .work-item:first-child {
    grid-column: unset;
    grid-row: unset;
  }

  /* Labels altijd zichtbaar op mobiel (geen hover) */
  .work-item-overlay {
    opacity: 1;
  }

  .work-item-label {
    opacity: 1;
    transform: translateY(0);
  }
}