/* INPERSON — strak & modern */
:root {
  --ink: #0a0a0a;
  --ink-soft: #55555e;
  --paper: #ffffff;
  --mist: #f4f4f6;
  --line: #e6e6ea;
  --accent: #0a0a0a;
  --accent-dark: #333333;
  --radius: 0px;
  --maxw: 1240px;
  --font-head: "Helvetica Neue", Helvetica, "Inter", Arial, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }
#work, #results { scroll-margin-top: 84px; }

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

/* ---------- Header ---------- */
header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
}
.logo {
  font-family: var(--font-head);
  font-weight: 700; font-size: 1.3rem; letter-spacing: -0.02em;
}
.logo span { color: var(--accent); }
.logo img { height: 36px; width: auto; display: block; }
.foot .logo img { height: 28px; }
nav ul { display: flex; gap: 32px; list-style: none; align-items: center; }
nav a {
  font-size: 1rem; font-weight: 500; color: var(--ink);
  transition: opacity 0.15s;
}
nav a:hover { opacity: 0.6; }
nav a.active { font-weight: 600; }

/* mobile nav */
.menu-toggle { display: none; background: none; border: 0; cursor: pointer; font-size: 1.6rem; line-height: 1; }
@media (max-width: 780px) {
  .menu-toggle { display: block; }
  nav { position: absolute; top: 72px; left: 0; right: 0; background: #fff; border-bottom: 1px solid var(--line); display: none; }
  nav.open { display: block; }
  nav ul { flex-direction: column; gap: 0; padding: 12px 24px 20px; align-items: flex-start; }
  nav li { width: 100%; padding: 10px 0; }
}

/* ---------- Hero ---------- */
.hero { padding: 56px 0 36px; position: relative; }
.hero h1 {
  font-family: var(--font-head);
  font-size: clamp(2.6rem, 6.5vw, 4.6rem);
  line-height: 1.02; font-weight: 700; letter-spacing: -0.03em;
  max-width: 15ch; text-transform: uppercase;
}
.hero h1 em { font-style: normal; color: var(--accent); }

/* homepage display hero — reference style */
.hero-tagline {
  font-family: var(--font-head);
  text-transform: uppercase;
  font-weight: 500;
  font-size: clamp(1.15rem, 2.9vw, 2.3rem);
  line-height: 1.22;
  letter-spacing: -0.015em;
}
.display, .hero h1.display {
  font-family: var(--font-head);
  font-size: clamp(3rem, 10.4vw, 8.4rem);
  font-weight: 700;
  letter-spacing: -0.045em;
  line-height: 0.95;
  text-transform: uppercase;
  margin-top: 8px;
  margin-left: -0.055em; /* optische uitlijning met de tagline erboven */
  white-space: nowrap;
}
.hero p.lead {
  margin-top: 28px; font-size: 1.25rem; color: var(--ink-soft); max-width: 54ch;
}
.hero .actions { margin-top: 40px; display: flex; gap: 16px; flex-wrap: wrap; }

.btn {
  display: inline-block; padding: 15px 30px; border-radius: 999px;
  font-weight: 600; font-size: 1rem; transition: all 0.15s;
}
.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover { background: var(--accent-dark); }
.btn-ghost { border: 1.5px solid var(--line); color: var(--ink); }
.btn-ghost:hover { border-color: var(--ink); }

/* ---------- Sections ---------- */
section { padding: 80px 0; }
section.alt { background: var(--mist); }

.kicker {
  display: inline-block; font-size: 0.8rem; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--accent);
  margin-bottom: 14px;
}
h2 {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem); font-weight: 700;
  letter-spacing: -0.025em; line-height: 1.12; max-width: 24ch;
  text-transform: uppercase;
}
.section-intro { margin-top: 18px; color: var(--ink-soft); max-width: 60ch; font-size: 1.1rem; }

/* ---------- Work ---------- */
.work-head { display: flex; justify-content: space-between; align-items: center; gap: 24px; }
.work-title {
  font-family: var(--font-head);
  font-size: clamp(1.6rem, 2.6vw, 2.1rem); font-weight: 600;
  letter-spacing: -0.02em; text-transform: none; max-width: none;
}
.btn-more {
  background: var(--mist); border: 1px solid var(--line);
  padding: 14px 28px; font-weight: 600; font-size: 0.95rem;
  transition: background 0.15s;
}
.btn-more:hover { background: var(--line); }
.work-grid {
  display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 20px; margin-top: 44px;
}
@media (max-width: 900px) { .work-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 620px) { .work-grid { grid-template-columns: 1fr; } }
.work-grid img, .work-ph {
  width: 100%; aspect-ratio: 4 / 5; object-fit: cover; display: block;
}
.work-ph {
  background: var(--mist); display: flex; align-items: center; justify-content: center;
  color: var(--ink-soft); font-weight: 600;
}

.work-grid button.work-item {
  border: 0; padding: 0; background: none; cursor: pointer; display: block;
  position: relative; overflow: hidden;
}
.work-grid button.work-item img { transition: transform 0.3s; }
.work-grid button.work-item:hover img { transform: scale(1.03); }
.work-name {
  position: absolute; inset: 0; z-index: 1;
  display: flex; align-items: center; justify-content: center;
  padding: 24px; text-align: center;
  font-family: var(--font-head); font-weight: 700; text-transform: uppercase;
  font-size: clamp(1.4rem, 2.4vw, 2.2rem); letter-spacing: -0.015em; line-height: 1.05;
  color: #fff; background: rgba(10, 10, 10, 0.35);
  opacity: 0; transition: opacity 0.2s; pointer-events: none;
}
.work-item:hover .work-name, .work-item:focus-visible .work-name { opacity: 1; }

/* ---------- About ---------- */
.about-statement {
  font-family: var(--font-head);
  font-size: clamp(1.1rem, 2vw, 1.6rem);
  font-weight: 500; line-height: 1.45; letter-spacing: -0.01em;
  text-align: justify;
  max-width: 820px;
  margin-top: 40px;
}
.about-split {
  display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center;
}
@media (max-width: 780px) { .about-split { grid-template-columns: 1fr; gap: 36px; } }
.about-photo {
  width: 100%; aspect-ratio: 4 / 5; object-fit: cover; display: block;
}
.about-grid { display: grid; gap: 20px; }
.about-grid.two { grid-template-columns: 1fr 1fr; max-width: 80%; margin: 0 auto; }
.person-fig { margin: 0; }
.person-fig figcaption {
  margin-top: 14px;
  font-family: var(--font-head);
  font-weight: 600; font-size: 1.05rem; letter-spacing: -0.01em;
}
@media (max-width: 620px) { .about-grid.two { grid-template-columns: 1fr; } }
.about-grid img { aspect-ratio: 4 / 5; object-fit: cover; object-position: center 20%; width: 100%; display: block; }
.about-quote {
  font-family: var(--font-head);
  font-size: clamp(1.4rem, 2.8vw, 2.2rem);
  font-weight: 600; line-height: 1.35; letter-spacing: -0.015em;
  max-width: 24ch; margin: 0 auto; text-align: center;
}

/* ---------- Work modal ---------- */
.modal-overlay {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(10, 10, 10, 0.45);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  display: none; align-items: center; justify-content: center;
  padding: 24px;
}
.modal-overlay.open { display: flex; }
.modal {
  background: var(--paper); width: min(960px, 100%);
  max-height: 90vh; overflow-y: auto;
  display: grid; grid-template-columns: 0.9fr 1.1fr;
  position: relative;
}
@media (max-width: 720px) { .modal { grid-template-columns: 1fr; } }
.modal-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
@media (max-width: 720px) { .modal-img img { max-height: 320px; } }
.modal-body { padding: 36px 40px 40px; display: flex; flex-direction: column; }
.modal-meta { font-size: 0.82rem; letter-spacing: 0.06em; text-transform: uppercase; }
.modal-meta div { margin-bottom: 4px; }
.modal-meta span { color: var(--ink-soft); margin-right: 8px; }
.modal-meta b { font-weight: 600; }
.modal-name {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4.5vw, 3.2rem); font-weight: 700;
  letter-spacing: -0.03em; line-height: 0.95; text-transform: uppercase;
  margin: 22px 0 18px;
}
.modal-desc { color: var(--ink-soft); font-size: 0.98rem; line-height: 1.65; }
.modal-close {
  position: absolute; top: 12px; right: 14px;
  border: 0; background: none; cursor: pointer;
  font-size: 1.7rem; line-height: 1; color: var(--ink);
  padding: 6px; z-index: 1;
}
.modal-close:hover { opacity: 0.6; }

/* ---------- Results ---------- */
.results-grid {
  display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 20px; margin-top: 44px;
}
@media (max-width: 620px) { .results-grid { grid-template-columns: 1fr; } }
.result-tile {
  aspect-ratio: 1 / 1;
  background: var(--ink); color: #fff;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 32px;
}
.result-tile b {
  font-family: var(--font-head);
  font-size: clamp(2.8rem, 5.5vw, 4.8rem);
  font-weight: 700; letter-spacing: -0.04em; line-height: 1;
}
.result-tile span {
  display: block; margin-top: 12px;
  color: #b9b9c2; font-size: 0.98rem; max-width: 26ch;
}

/* ---------- Cards ---------- */
.grid { display: grid; gap: 24px; margin-top: 48px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 900px) { .grid-3 { grid-template-columns: 1fr 1fr; } }
@media (max-width: 620px) { .grid-3, .grid-2 { grid-template-columns: 1fr; } }

.card {
  background: var(--paper); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 32px 28px;
  transition: transform 0.15s, box-shadow 0.15s;
}
.card:hover { transform: translateY(-3px); box-shadow: 0 12px 32px rgba(16, 16, 20, 0.07); }
.card .num {
  font-size: 0.85rem; font-weight: 700; color: var(--accent); letter-spacing: 0.1em;
}
.card h3 { margin-top: 10px; font-size: 1.2rem; font-weight: 700; }
.card p { margin-top: 10px; color: var(--ink-soft); font-size: 0.98rem; }

/* ---------- Stats ---------- */
.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px; text-align: center; }
@media (max-width: 620px) { .stats { grid-template-columns: 1fr; } }
.stat b { display: block; font-size: 2.6rem; font-weight: 800; letter-spacing: -0.02em; }
.stat span { color: var(--ink-soft); font-size: 0.95rem; }

/* ---------- Cases ---------- */
.case {
  border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden;
  background: var(--paper);
  transition: transform 0.15s, box-shadow 0.15s;
}
.case:hover { transform: translateY(-3px); box-shadow: 0 12px 32px rgba(16, 16, 20, 0.07); }
.case .thumb {
  aspect-ratio: 16 / 9; display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 1.4rem; letter-spacing: 0.08em; color: #fff;
  overflow: hidden;
}
.case .thumb img { width: 100%; height: 100%; object-fit: cover; object-position: center 12%; }
.case .body { padding: 24px 26px 28px; }
.case .tag { font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; color: var(--accent); }
.case h3 { margin-top: 8px; font-size: 1.15rem; font-weight: 700; }
.case p { margin-top: 8px; color: var(--ink-soft); font-size: 0.95rem; }

/* ---------- Quote ---------- */
blockquote {
  font-size: clamp(1.3rem, 2.6vw, 1.8rem); font-weight: 600; line-height: 1.4;
  max-width: 30ch; letter-spacing: -0.01em;
}
blockquote footer { margin-top: 20px; font-size: 1rem; font-weight: 500; color: var(--ink-soft); }

/* ---------- CTA band ---------- */
.cta-band { background: var(--ink); color: #fff; text-align: center; padding: 90px 0; }
.cta-band h2 { margin: 0 auto; }
.cta-band p { margin: 18px auto 0; color: #b9b9c2; max-width: 50ch; }
.cta-band .btn-primary { margin-top: 36px; background: #fff; color: var(--ink); }
.cta-band .btn-primary:hover { background: var(--mist); }

/* ---------- Team ---------- */
.person { text-align: left; }
.person .avatar {
  aspect-ratio: 1; border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  font-size: 2.2rem; font-weight: 800; color: #fff;
}
.person h3 { margin-top: 16px; font-size: 1.1rem; font-weight: 700; }
.person span { color: var(--ink-soft); font-size: 0.92rem; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 60px; margin-top: 48px; }
@media (max-width: 780px) { .contact-grid { grid-template-columns: 1fr; gap: 40px; } }
.contact-info p { color: var(--ink-soft); margin-bottom: 20px; }
.contact-info .item { margin-bottom: 22px; }
.contact-info .item b { display: block; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 4px; }
.contact-info a { color: var(--accent); font-weight: 600; }

form .field { margin-bottom: 20px; }
label { display: block; font-weight: 600; font-size: 0.92rem; margin-bottom: 8px; }
input, textarea, select {
  width: 100%; padding: 14px 16px; border: 1.5px solid var(--line);
  border-radius: 10px; font: inherit; background: var(--paper); color: var(--ink);
  transition: border-color 0.15s;
}
input:focus, textarea:focus, select:focus { outline: none; border-color: var(--accent); }
textarea { min-height: 140px; resize: vertical; }

/* ---------- Mega footer ---------- */
.mega { background: #0a0a0a; color: #fff; padding: 36px 0 32px; }
.mega-top { display: flex; justify-content: flex-end; gap: 28px; }
.mega-top a { color: #fff; font-size: 0.92rem; font-weight: 500; transition: opacity 0.15s; }
.mega-top a:hover { opacity: 0.6; }
.mega-title {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  font-weight: 600; letter-spacing: -0.02em; line-height: 1.1;
  max-width: 18ch; text-transform: none;
  margin: 32px 0 24px;
  color: #fff;
}
.btn-light { background: #fff; color: #0a0a0a; }
.btn-light:hover { background: var(--mist); }
.mega-bottom {
  display: flex; align-items: flex-end; gap: 64px; flex-wrap: wrap;
  margin-top: 48px;
}
.mega-contact a {
  display: block; color: #b9b9c2; font-size: 0.95rem; line-height: 1.8;
  transition: color 0.15s;
}
.mega-contact a:hover { color: #fff; }
.mega-copy { margin-left: auto; text-align: right; color: #b9b9c2; font-size: 0.95rem; line-height: 1.8; }
@media (max-width: 620px) {
  .mega-bottom { gap: 24px; }
  .mega-copy { margin-left: 0; text-align: left; width: 100%; }
}

/* ---------- Footer ---------- */
footer.site {
  border-top: 1px solid var(--line); padding: 56px 0 40px; background: var(--paper);
}
.foot { display: flex; justify-content: space-between; gap: 32px; flex-wrap: wrap; }
.foot .logo { font-size: 1.1rem; }
.foot ul { list-style: none; display: flex; gap: 24px; flex-wrap: wrap; }
.foot a { color: var(--ink-soft); font-size: 0.92rem; }
.foot a:hover { color: var(--ink); }
.foot .copy { width: 100%; margin-top: 28px; color: var(--ink-soft); font-size: 0.85rem; }

/* monochrome thumbs */
.g1 { background: #0a0a0a; }
.g2 { background: #2e2e34; }
.g3 { background: #55555e; }
.g4 { background: #17171c; }
.g5 { background: #3f3f47; }
.g6 { background: #6b6b75; }
