/* ------------------------------------------------------------------
   Tokens — donkerblauw/wit/grijs, cinematisch minimalistisch (Canva-
   referentie: "director portfolio, black and white grey minimalist",
   met een donkerblauwe tint in plaats van kale zwart). Geen kleuraccent:
   het contrast komt volledig uit lettergewicht en schaal.
------------------------------------------------------------------- */
:root {
  --black: #0A0F1C;
  --panel-dark: #131A2B;
  --white: #FFFFFF;
  --paper: #F1F1EF;
  --grey-600: #5B5B5B;
  --grey-400: #9A9A9A;
  --grey-200: #DEDEDC;
  --line-on-dark: rgba(255, 255, 255, 0.16);
  --line-on-light: rgba(10, 10, 10, 0.12);

  --font: "Archivo", -apple-system, sans-serif;
  --content-max: 620px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--black);
  font-family: var(--font);
  font-weight: 400;
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; }

h1, h2, h3 {
  font-family: var(--font);
  margin: 0;
}

.eyebrow {
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

/* ------------------------------------------------------------------
   Hero — volledige hoogte, donker, typografische naam-lockup i.p.v.
   portretfoto (geen fotomateriaal beschikbaar). Eyebrow bovenin, naam
   halverwege-onder, kleine tag + scroll-pijl helemaal onderaan — zelfde
   verticale ritme als de referentie.
------------------------------------------------------------------- */
.hero {
  min-height: 100vh;
  background:
    radial-gradient(ellipse 1100px 700px at 75% 15%, #1b2438, transparent 60%),
    var(--black);
  color: var(--white);
  display: flex;
  align-items: stretch;
}

.hero__photo-col {
  flex: 0 0 clamp(220px, 38%, 480px);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 2rem 1rem 0;
}

.hero__photo {
  width: 100%;
  height: auto;
  max-height: 88vh;
  object-fit: contain;
  display: block;
}

.hero__content-col {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 3rem clamp(1.5rem, 5vw, 4rem) 2.5rem;
}

.hero__top { color: var(--grey-400); }

.hero__name {
  max-width: 700px;
}

.hero__name .heavy {
  display: block;
  font-weight: 900;
  font-size: clamp(3rem, 8vw, 6.5rem);
  line-height: 0.98;
  letter-spacing: -0.01em;
}

.hero__name .light {
  display: block;
  font-weight: 300;
  font-size: clamp(1.6rem, 4vw, 3rem);
  line-height: 1.1;
  margin-top: 0.3rem;
}

.hero__bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  color: var(--grey-400);
}

.hero__arrow {
  display: inline-block;
  animation: bob 2.4s ease-in-out infinite;
}

@keyframes bob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}

@media (prefers-reduced-motion: reduce) {
  .hero__arrow { animation: none; }
  html { scroll-behavior: auto; }
}

/* ------------------------------------------------------------------
   Secties — lichte en donkere banden wisselen elkaar af
------------------------------------------------------------------- */
.section {
  padding: clamp(4rem, 9vw, 7rem) clamp(1.5rem, 6vw, 5rem);
}

.section--light { background: var(--paper); color: var(--black); }
.section--dark { background: var(--panel-dark); color: var(--white); }

.section__eyebrow { margin-bottom: 1.2rem; }
.section--light .section__eyebrow { color: var(--grey-600); }
.section--dark .section__eyebrow { color: var(--grey-400); }

.section h2 {
  font-weight: 900;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  line-height: 1.08;
  letter-spacing: -0.01em;
  max-width: 14ch;
}

/* Sectie 2: intro-tweeluik (koptekst + tekst | grote uitspraak) */
.intro-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: end;
  margin-top: 3rem;
}

.intro-grid p {
  max-width: 46ch;
  color: var(--grey-600);
}

.pull-quote {
  font-weight: 300;
  font-size: clamp(1.4rem, 2.6vw, 2rem);
  line-height: 1.35;
  border-left: 2px solid var(--black);
  padding-left: 1.5rem;
  max-width: 46ch;
}

.tile-grid__eyebrow {
  margin-top: clamp(3rem, 7vw, 5rem);
}

/* ------------------------------------------------------------------
   Vaardigheden — als raster van tegels (analoog aan "body of work")
------------------------------------------------------------------- */
.tile-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line-on-light);
  margin-top: 3rem;
  border-top: 1px solid var(--line-on-light);
  border-bottom: 1px solid var(--line-on-light);
}

.tile {
  background: var(--paper);
  padding: 2.5rem 2rem;
}

.tile__number {
  color: var(--grey-400);
  font-weight: 600;
  font-size: 0.85rem;
  margin-bottom: 1.5rem;
}

.tile h3 {
  font-weight: 700;
  font-size: 1.15rem;
  margin-bottom: 0.9rem;
}

.tile p {
  color: var(--grey-600);
  font-size: 0.95rem;
}

/* ------------------------------------------------------------------
   Doelgroep — donkere band, lijst met dunne scheidingslijnen
------------------------------------------------------------------- */
.target-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  padding: 1.6rem 0;
  border-top: 1px solid var(--line-on-dark);
}

.target-list { margin-top: 3rem; }
.target-row:last-child { border-bottom: 1px solid var(--line-on-dark); }

.target-row h3 {
  font-weight: 700;
  font-size: 1.1rem;
}

.target-row p {
  color: var(--grey-400);
  margin: 0;
  max-width: 42ch;
}

/* ------------------------------------------------------------------
   Sluiting — "thank you"-achtige volledige-breedte donkere afsluiter
------------------------------------------------------------------- */
.closing {
  min-height: 70vh;
  background: var(--black);
  color: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 4rem clamp(1.5rem, 6vw, 5rem);
}

.closing h2 {
  font-weight: 900;
  font-size: clamp(2.4rem, 7vw, 5rem);
  max-width: 12ch;
  margin-bottom: 2rem;
  letter-spacing: -0.01em;
}

.closing__statement {
  font-weight: 300;
  color: var(--grey-400);
  font-size: 1.2rem;
  max-width: 42ch;
  margin-bottom: 2.5rem;
}

.btn {
  display: inline-block;
  text-decoration: none;
  font-family: var(--font);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 1rem 1.8rem;
  border: 1px solid currentColor;
  transition: background 0.15s ease, color 0.15s ease;
}

.btn--on-dark { color: var(--white); }
.btn--on-dark:hover { background: var(--white); color: var(--black); }

.btn:focus-visible {
  outline: 2px solid var(--white);
  outline-offset: 3px;
}

.closing__footer {
  margin-top: 3.5rem;
  color: var(--grey-400);
  font-size: 0.85rem;
}

/* ------------------------------------------------------------------
   Mobiel
------------------------------------------------------------------- */
@media (max-width: 880px) {
  .hero {
    flex-direction: column;
    min-height: auto;
  }

  .hero__photo-col {
    flex: none;
    padding-top: 3rem;
  }

  .hero__photo { max-height: 46vh; }

  .hero__content-col { padding-top: 2rem; gap: 2.5rem; }

  .intro-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .tile-grid { grid-template-columns: 1fr; }

  .target-row { grid-template-columns: 1fr; gap: 0.4rem; }
}
