/* =====================================
   VOOR WIE PAGE — Praktijk La Aurora
   Zelfde structuur als index.html
   ===================================== */

.page-voor-wie{
  background: var(--bg-page);
  color: var(--text-on-light);
}

/* =====================================
   HERO
   ===================================== */

.vw-hero{
  position: relative;
  min-height: calc(100vh - var(--header-height));
  overflow: hidden;
  display: flex;
  align-items: center;
}

.vw-hero-media{
  position: absolute;
  inset: 0;
  z-index: 0;
}

.vw-hero-media img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.vw-hero-overlay{
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(
      to bottom,
      rgba(14, 24, 21, 0.55) 0%,
      rgba(14, 24, 21, 0.34) 42%,
      rgba(14, 24, 21, 0.18) 100%
    );
}

.vw-hero-inner{
  position: relative;
  z-index: 2;
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-bottom: 12rem;
}

.vw-hero-content{
  max-width: 720px;
  width: 100%;
  color: var(--text-on-dark);
  text-align: left;
}

.vw-hero-content h1{
  margin-bottom: var(--space-5);
}

.vw-hero-lead{
  margin-bottom: var(--space-5);
  opacity: 1;
}

.vw-hero-sub{
  margin-bottom: 0;
  opacity: 1;
}

/* =====================================
   GENERIC PAGE SECTIONS
   ===================================== */

.vw-section{
  padding-block: clamp(4rem, 8vw, 7rem);
}

.vw-section--sand{
  background: var(--bg-section-sand);
  color: var(--text-on-light);
}

.vw-section--green{
  background: var(--bg-section-green);
  color: var(--text-on-dark);
}

.vw-stack{
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
}

.vw-section-header{
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.vw-section-header h2{
  margin-bottom: var(--space-5);
}

.vw-section-header p{
  max-width: 680px;
  margin-inline: auto;
  margin-bottom: 0;
}

/* =====================================
   SIGNALEN
   ===================================== */

.vw-signal-grid{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-5);
}

.vw-card{
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(42, 60, 52, 0.08);
  border-radius: 24px;
  padding: clamp(1.15rem, 2vw, 1.5rem);
  box-shadow: 0 10px 30px rgba(20, 30, 28, 0.05);
}

.vw-card p{
  margin: 0;
}

/* =====================================
   SPLIT SECTION
   ===================================== */

.vw-split{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.vw-split-media{
  margin: 0;
  overflow: hidden;
  border-radius: 28px;
  aspect-ratio: 1 / 1;
}

.vw-split-media img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.vw-split-text{
  max-width: 560px;
}

.vw-split-text h2{
  margin-bottom: var(--space-5);
}

.vw-split-text p:last-of-type{
  margin-bottom: var(--space-8);
}

/* =====================================
   CTA finetune
   ===================================== */

.section-cta{
  background: var(--gradient-green);
}

/* =====================================
   RESPONSIVE
   ===================================== */

@media (max-width: 960px){

  .vw-signal-grid,
  .vw-split{
    grid-template-columns: 1fr;
  }

  .vw-section-header{
    text-align: left;
    margin: 0;
  }

  .vw-section-header p{
    margin-inline: 0;
    max-width: none;
  }

  .vw-split-media{
    order: 1;
    aspect-ratio: 4 / 3;
  }

  .vw-split-text{
    order: 2;
    max-width: none;
  }
}

@media (max-width: 767px){

  .vw-hero{
    min-height: calc(100vh - var(--header-height));
    min-height: calc(100svh - var(--header-height));
    align-items: stretch;
  }

  .vw-hero-inner{
    min-height: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: clamp(3rem, 6vh, 3rem);
    padding-bottom: clamp(6rem, 12vh, 8rem);
    padding-inline: clamp(1.5rem, 6vw, 2rem);
  }

  .vw-hero-content{
    width: 100%;
    max-width: 28rem;
    margin-inline: auto;
    text-align: left;
  }

  .vw-hero-content h1{
    margin-bottom: 1rem;
  }

  .vw-hero-lead{
    margin-bottom: 0.95rem;
  }

  .vw-hero-sub{
    margin-bottom: 0;
  }

  .vw-card,
  .vw-split-media{
    border-radius: 20px;
  }
}