/* ── Content Page (shared by aanpak, oorsprong) ──── */
.page {
  position: relative;
  background-color: #12100B;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(6rem, 10vw, 10rem) 1.5rem clamp(4rem, 6vw, 6rem);
  overflow: hidden;
}

/* ── Atmospheric Background ─────────────────────── */
.page__background {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.page__background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  filter: brightness(0.3) saturate(0.5) blur(2px);
  transform: scale(1.05); /* prevent blur edge bleed */
}

.page__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: radial-gradient(
    ellipse 60% 70% at 50% 45%,
    rgba(18, 16, 11, 0.2) 0%,
    rgba(18, 16, 11, 0.65) 50%,
    rgba(18, 16, 11, 0.92) 100%
  );
}

/* ── Content ────────────────────────────────────── */
.page__inner {
  position: relative;
  z-index: 2;
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
}

.page__logo {
  width: clamp(100px, 20vw, 140px);
  height: auto;
  filter: drop-shadow(0 2px 12px rgba(0, 0, 0, 0.3));
  mix-blend-mode: lighten;
  margin-bottom: 3rem;
}

.page__title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 300;
  font-size: clamp(1.25rem, 2vw, 1.65rem);
  letter-spacing: 0.35em;
  text-indent: 0.35em;
  text-transform: uppercase;
  color: #C4B9A8;
  margin-bottom: 0;
}

.page__rule {
  width: 60px;
  height: 1px;
  margin: 2.5rem auto;
  background: linear-gradient(
    90deg,
    transparent 0%,
    #C4973B 50%,
    transparent 100%
  );
  opacity: 0.4;
}

.page__text {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 300;
  font-size: clamp(1.15rem, 1.8vw, 1.35rem);
  line-height: 1.85;
  color: rgba(200, 200, 208, 0.92);
  margin-bottom: 0.6rem;
}

/* ── Inline link (e.g. A&P reference) ───────────── */
.page__link {
  color: #C4973B;
  text-decoration: none;
  position: relative;
  transition: color 0.6s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.page__link::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 50%;
  width: 0;
  height: 1px;
  background-color: #C4973B;
  transition: width 0.6s cubic-bezier(0.25, 0.1, 0.25, 1), left 0.6s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.page__link:hover {
  color: #D4A94B;
}

.page__link:hover::after {
  width: 100%;
  left: 0;
}

/* ── Aanpak — show the governance image clearly ─── */
.page--aanpak .page__background img {
  filter: brightness(1) saturate(0.9);
  transform: none;
}

.page--aanpak .page__overlay {
  background: linear-gradient(
    to bottom,
    rgba(18, 16, 11, 0) 0%,
    rgba(18, 16, 11, 0.25) 12%,
    rgba(18, 16, 11, 0.6) 28%,
    rgba(18, 16, 11, 0.78) 100%
  );
}

.page--aanpak .page__title {
  color: #e0d5c5;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.8), 0 0 30px rgba(0, 0, 0, 0.5);
}

.page--aanpak .page__text {
  color: rgba(220, 218, 225, 0.95);
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.8), 0 0 30px rgba(0, 0, 0, 0.5);
}

/* ── Mobile ─────────────────────────────────────── */
@media (max-width: 768px) {
  .page__rule {
    width: 50px;
  }

  .page__background img {
    object-position: center center;
    filter: brightness(0.25) saturate(0.4) blur(3px);
  }

  .page--aanpak .page__background {
    bottom: auto;
    height: 100vh;
  }

  .page--aanpak .page__background img {
    filter: brightness(0.9) saturate(0.85);
    transform: none;
    object-position: center 30%;
  }
}
