/* About pagina — lichte achtergrond */

.about-page {
  background: #e4ddd2;
  color: #111;
  min-height: 100vh;
}

.about-page .nav--light {
  background: transparent;
}

.about-page .nav__logo,
.about-page .nav__about,
.about-page .nav__contact {
  color: #001966;
}

.about-main {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 6rem 4rem 4rem;
}

.about-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 6rem;
  align-items: start;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
}

/* Foto */
.about-photo__img {
  aspect-ratio: 3 / 4;
  border-radius: 16px;
  overflow: hidden;
}

.about-photo__img--placeholder {
  background: #ccc5b8;
  width: 100%;
  height: 100%;
}

/* Tekst */
.about-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(5rem, 10vw, 10rem);
  line-height: 0.88;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #001966;
  margin-bottom: 3rem;
}

.about-bio {
  max-width: 640px;
  margin-bottom: 3rem;
}

.about-bio__heading {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.3rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #001966;
  margin-bottom: 0.6rem;
}

.about-bio__heading:not(:first-child) {
  margin-top: 2rem;
}

.about-bio p {
  font-size: 0.92rem;
  color: rgba(0,0,0,0.6);
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

.about-bio p:last-child {
  margin-bottom: 0;
}

.about-bio p.about-bio__cta {
  color: #001966;
  font-weight: 500;
  margin-top: 0.5rem;
}

.about-back {
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.4);
  transition: color 0.2s ease;
}

.about-back:hover { color: #001966; }

@media (max-width: 900px) {
  .about-layout {
    grid-template-columns: 1fr;
    gap: 3rem;
    padding: 0;
  }

  .about-main { padding: 5rem 1.5rem 3rem; }

  .about-photo__img { aspect-ratio: 1 / 1; }

}

