/* =========================================================
   Digital Army — 2026 prototype
   Cinematisch · monochroom · met warm-amber accent
   ========================================================= */

:root {
  --bg: #0a0a0a;
  --bg-2: #111111;
  --fg: #f4f1ea;
  --fg-dim: #a8a29a;
  --fg-mute: #6b6862;
  --line: rgba(244, 241, 234, 0.12);
  --accent: #d6a64f;            /* warm amber */
  --accent-soft: rgba(214, 166, 79, 0.18);
  --serif: "Fraunces", "Times New Roman", serif;
  --sans: "Inter", system-ui, -apple-system, sans-serif;
  --max: 1280px;
  --gutter: clamp(20px, 4vw, 56px);
  --section-y: clamp(80px, 12vw, 180px);
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--fg);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body {
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: transparent; color: inherit; }

::selection { background: var(--accent); color: var(--bg); }

/* ---------- Layout helpers ---------- */
.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.container.narrow { max-width: 820px; }

/* ---------- Typography ---------- */
.display, .display-md {
  font-family: var(--serif);
  font-weight: 300;
  letter-spacing: -0.02em;
  line-height: 0.95;
  margin: 0;
}
.display {
  font-size: clamp(56px, 9vw, 144px);
}
.display-md {
  font-size: clamp(40px, 6vw, 88px);
  line-height: 1;
}
.display em, .display-md em {
  font-style: italic;
  color: var(--accent);
  font-weight: 300;
}

.eyebrow, .section-label {
  font-family: var(--sans);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 11px;
  font-weight: 500;
  color: var(--fg-dim);
  margin: 0 0 24px;
}

.lede {
  font-size: clamp(16px, 1.4vw, 19px);
  color: var(--fg-dim);
  max-width: 480px;
  margin: 28px 0 36px;
}
.lede-md {
  font-size: clamp(17px, 1.5vw, 21px);
  color: var(--fg-dim);
  max-width: 640px;
  margin: 32px 0;
  line-height: 1.6;
}
.muted { color: var(--fg-dim); margin: 8px 0; }
.muted.small { font-size: 13px; }

/* ---------- Header ---------- */
.site-header {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px var(--gutter);
  background: linear-gradient(180deg, rgba(10,10,10,0.85) 0%, rgba(10,10,10,0) 100%);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.brand {
  display: flex; align-items: center; gap: 12px;
}
.brand-mark {
  width: 36px; height: 36px; border-radius: 50%;
  background-image: url("../img/logo-mark.jpg");
  background-size: cover; background-position: 35% 60%;
  background-color: #1a1a1a;
  border: 1px solid var(--line);
  filter: grayscale(1) contrast(1.1);
  transition: transform .6s ease;
}
.brand:hover .brand-mark { transform: scale(1.06) rotate(-2deg); }
.brand-mark.small { width: 28px; height: 28px; }
.brand-name {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 19px;
  letter-spacing: 0.02em;
}
.nav { display: flex; gap: 28px; }
.nav a {
  font-size: 13px; font-weight: 500;
  text-transform: uppercase; letter-spacing: 0.18em;
  color: var(--fg-dim);
  transition: color .25s ease;
  position: relative;
}
.nav a:hover { color: var(--fg); }
.nav a::after {
  content: ""; position: absolute; left: 0; bottom: -6px;
  width: 0; height: 1px; background: var(--accent);
  transition: width .35s ease;
}
.nav a:hover::after { width: 100%; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: flex-end;
  overflow: hidden;
}
.hero-image {
  position: absolute; inset: 0;
  background-image: url("../img/logo-mark.jpg");
  background-size: cover;
  background-position: center;
  filter: grayscale(1) contrast(1.05) brightness(0.78);
  transform: scale(1.04);
  animation: heroBreath 14s ease-in-out infinite alternate;
}
@keyframes heroBreath {
  from { transform: scale(1.04); }
  to   { transform: scale(1.10); }
}
.hero-overlay {
  position: absolute; inset: 0;
  background:
    radial-gradient(60% 80% at 30% 50%, rgba(0,0,0,0.0) 0%, rgba(0,0,0,0.55) 100%),
    linear-gradient(180deg, rgba(10,10,10,0.4) 0%, rgba(10,10,10,0.1) 30%, rgba(10,10,10,0.95) 100%);
}
.hero-content {
  position: relative; z-index: 2;
  padding: 0 var(--gutter) clamp(60px, 10vh, 120px);
  max-width: 1200px;
}
.cta {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 26px;
  border: 1px solid var(--fg);
  color: var(--fg);
  font-size: 13px; font-weight: 500;
  text-transform: uppercase; letter-spacing: 0.18em;
  transition: background .35s ease, color .35s ease, border-color .35s ease, transform .25s ease;
}
.cta:hover {
  background: var(--fg); color: var(--bg);
  transform: translateY(-1px);
}
.scroll-cue {
  position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%);
  width: 1px; height: 60px; background: var(--line);
  overflow: hidden;
}
.scroll-cue span {
  display: block; width: 100%; height: 30px;
  background: var(--fg);
  animation: scrollCue 2.6s ease-in-out infinite;
}
@keyframes scrollCue {
  0%   { transform: translateY(-100%); }
  100% { transform: translateY(200%); }
}

/* ---------- Showreel ---------- */
.showreel {
  padding: var(--section-y) 0;
  border-top: 1px solid var(--line);
}
.section-head { margin-bottom: 64px; }
.showreel-frame {
  margin-top: 40px;
  aspect-ratio: 16 / 9;
  background: #050505;
  border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  position: relative;
  overflow: hidden;
}
.showreel-frame::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(214,166,79,0.08) 0%, transparent 60%);
}
.showreel-placeholder {
  text-align: center; color: var(--fg-dim);
  display: flex; flex-direction: column; align-items: center; gap: 22px;
  position: relative; z-index: 1;
}
.play-btn {
  width: 84px; height: 84px; border-radius: 50%;
  border: 1px solid var(--fg);
  display: flex; align-items: center; justify-content: center;
  color: var(--fg);
  transition: background .35s ease, color .35s ease, transform .35s ease;
}
.play-btn svg { margin-left: 4px; }
.play-btn:hover { background: var(--accent); color: var(--bg); border-color: var(--accent); transform: scale(1.05); }

/* ---------- Werk ---------- */
.werk {
  padding: var(--section-y) 0;
  border-top: 1px solid var(--line);
}
.project {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: center;
  padding: 80px 0;
  border-bottom: 1px solid var(--line);
}
.project:last-child { border-bottom: 0; }
.project.reverse { grid-template-columns: 1fr 1.1fr; }
.project.reverse .project-media { order: 2; }
.project.reverse .project-body  { order: 1; }
.project-media {
  position: relative; overflow: hidden;
  aspect-ratio: 4 / 5;
  background: #1a1a1a;
}
.project-media img {
  width: 100%; height: 100%; object-fit: cover;
  filter: grayscale(0.85) contrast(1.05) brightness(0.92);
  transition: transform 1.2s cubic-bezier(.2,.8,.2,1), filter .6s ease;
}
.project:hover .project-media img {
  transform: scale(1.04);
  filter: grayscale(0) contrast(1.05) brightness(1);
}
.project-meta {
  font-family: var(--sans);
  font-size: 12px; text-transform: uppercase; letter-spacing: 0.22em;
  color: var(--fg-mute);
  margin: 0 0 18px;
}
.project-title {
  font-family: var(--serif);
  font-weight: 300; font-size: clamp(36px, 4.4vw, 64px);
  line-height: 1.0; letter-spacing: -0.02em;
  margin: 0 0 24px;
}
.project-title span {
  display: block; font-size: 0.45em;
  font-style: italic; color: var(--accent);
  margin-top: 14px;
  letter-spacing: 0;
}
.project-text {
  color: var(--fg-dim); max-width: 480px;
  margin: 0 0 32px;
}

/* ---------- Audio player (waveform-stijl) ---------- */
.audio-player {
  display: inline-flex; align-items: center; gap: 18px;
  padding: 12px 20px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.02);
  transition: border-color .3s ease, background .3s ease;
}
.audio-player:hover { border-color: var(--fg-dim); background: rgba(255,255,255,0.04); }
.audio-play {
  width: 36px; height: 36px; border-radius: 50%;
  border: 1px solid var(--fg);
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: background .3s ease, color .3s ease;
}
.audio-play svg { margin-left: 2px; }
.audio-play:hover, .audio-player.playing .audio-play {
  background: var(--accent); color: var(--bg); border-color: var(--accent);
}
.waveform {
  display: flex; align-items: center; gap: 3px;
  height: 32px; width: clamp(160px, 20vw, 260px);
}
.waveform span {
  display: block; flex: 1;
  background: var(--fg-mute);
  border-radius: 1px;
  transition: background .25s ease;
}
.waveform span:nth-child(1)  { height: 30%; }
.waveform span:nth-child(2)  { height: 55%; }
.waveform span:nth-child(3)  { height: 75%; }
.waveform span:nth-child(4)  { height: 45%; }
.waveform span:nth-child(5)  { height: 80%; }
.waveform span:nth-child(6)  { height: 60%; }
.waveform span:nth-child(7)  { height: 35%; }
.waveform span:nth-child(8)  { height: 90%; }
.waveform span:nth-child(9)  { height: 50%; }
.waveform span:nth-child(10) { height: 70%; }
.waveform span:nth-child(11) { height: 40%; }
.waveform span:nth-child(12) { height: 65%; }
.waveform span:nth-child(13) { height: 85%; }
.waveform span:nth-child(14) { height: 25%; }
.waveform span:nth-child(15) { height: 60%; }
.waveform span:nth-child(16) { height: 50%; }
.waveform span:nth-child(17) { height: 75%; }
.waveform span:nth-child(18) { height: 35%; }
.waveform span:nth-child(19) { height: 95%; }
.waveform span:nth-child(20) { height: 55%; }
.waveform span:nth-child(21) { height: 70%; }
.waveform span:nth-child(22) { height: 40%; }
.waveform span:nth-child(23) { height: 65%; }
.waveform span:nth-child(24) { height: 80%; }
.waveform span:nth-child(25) { height: 30%; }
.waveform span:nth-child(26) { height: 60%; }
.waveform span:nth-child(27) { height: 45%; }
.waveform span:nth-child(28) { height: 85%; }
.waveform span:nth-child(29) { height: 55%; }
.waveform span:nth-child(30) { height: 70%; }
.waveform span:nth-child(31) { height: 40%; }
.waveform span:nth-child(32) { height: 75%; }
.waveform span:nth-child(33) { height: 50%; }
.waveform span:nth-child(34) { height: 60%; }
.waveform span:nth-child(35) { height: 35%; }
.waveform span:nth-child(36) { height: 80%; }
.waveform span:nth-child(37) { height: 45%; }
.waveform span:nth-child(38) { height: 65%; }
.waveform span:nth-child(39) { height: 50%; }
.waveform span:nth-child(40) { height: 30%; }

.audio-player.playing .waveform span {
  animation: bar 1.1s ease-in-out infinite;
  background: var(--fg);
}
.audio-player.playing .waveform span:nth-child(2n)  { animation-delay: -0.2s; }
.audio-player.playing .waveform span:nth-child(3n)  { animation-delay: -0.4s; }
.audio-player.playing .waveform span:nth-child(5n)  { animation-delay: -0.6s; }
.audio-player.playing .waveform span:nth-child(7n)  { animation-delay: -0.8s; }
@keyframes bar {
  0%, 100% { transform: scaleY(0.4); }
  50%      { transform: scaleY(1.0); }
}
.audio-time {
  font-variant-numeric: tabular-nums;
  font-size: 12px;
  color: var(--fg-mute);
  letter-spacing: 0.05em;
}

/* ---------- Over ---------- */
.over {
  padding: var(--section-y) 0;
  border-top: 1px solid var(--line);
}
.capabilities {
  list-style: none; padding: 0; margin: 56px 0 0;
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.capabilities li {
  background: var(--bg);
  padding: 28px 24px;
  font-family: var(--serif);
  font-size: 22px; font-weight: 300;
  letter-spacing: -0.01em;
  color: var(--fg);
}

/* ---------- Contact ---------- */
.contact {
  padding: var(--section-y) 0;
  border-top: 1px solid var(--line);
}
.contact-form {
  margin: 56px 0 36px;
  display: grid; gap: 22px;
}
.contact-form .row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 22px;
}
.contact-form label {
  display: flex; flex-direction: column; gap: 8px;
}
.contact-form span {
  font-size: 11px; text-transform: uppercase; letter-spacing: 0.22em;
  color: var(--fg-dim);
}
.contact-form input,
.contact-form textarea {
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line);
  padding: 12px 0;
  font: inherit; color: var(--fg);
  outline: none;
  transition: border-color .3s ease;
}
.contact-form input:focus,
.contact-form textarea:focus { border-color: var(--accent); }
.contact-form textarea { resize: vertical; }
.contact-form button { justify-self: start; margin-top: 14px; }
.contact-direct { color: var(--fg-dim); }
.contact-direct a { color: var(--accent); border-bottom: 1px solid var(--accent-soft); }
.contact-direct a:hover { border-color: var(--accent); }

/* ---------- Footer ---------- */
.site-footer {
  padding: 60px 0 40px;
  border-top: 1px solid var(--line);
  background: #060606;
}
.footer-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 24px; align-items: end;
}
.footer-grid .brand-name { margin: 12px 0 4px; font-size: 18px; }
.footer-grid > div:last-child { text-align: right; }

/* ---------- Reveal-on-scroll ---------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .9s ease, transform .9s cubic-bezier(.2,.8,.2,1);
}
[data-reveal].is-in {
  opacity: 1;
  transform: none;
}

/* ---------- Responsive ---------- */
@media (max-width: 820px) {
  .nav { display: none; }
  .project, .project.reverse { grid-template-columns: 1fr; gap: 32px; padding: 56px 0; }
  .project.reverse .project-media { order: 0; }
  .project.reverse .project-body { order: 0; }
  .capabilities { grid-template-columns: repeat(2, 1fr); }
  .contact-form .row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-grid > div:last-child { text-align: left; }
}

/* =========================================================
   Case-study (single-project) — toegevoegd voor WordPress
   ========================================================= */

.single-project { padding-top: 0; }

.case-hero {
  position: relative;
  min-height: 80vh;
  display: flex; align-items: flex-end;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}
.case-hero-image {
  position: absolute; inset: 0;
}
.case-hero-image img {
  width: 100%; height: 100%; object-fit: cover;
  filter: grayscale(0.85) contrast(1.05) brightness(0.78);
}
.case-hero::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,10,10,0.4) 0%, rgba(10,10,10,0.2) 30%, rgba(10,10,10,0.95) 100%);
}
.case-hero-content {
  position: relative; z-index: 2;
  padding: 0 var(--gutter) clamp(60px, 10vh, 120px);
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
}
.case-hero-content .display em {
  display: block; margin-top: 14px; font-size: 0.55em;
}

.case-body {
  padding: var(--section-y) 0;
}
.case-body .audio-player {
  margin-bottom: 56px;
}
.case-content {
  font-size: 18px; line-height: 1.7; color: var(--fg);
}
.case-content p { margin: 0 0 1.4em; max-width: 64ch; }
.case-content h2 {
  font-family: var(--serif); font-weight: 300;
  font-size: clamp(28px, 3vw, 40px);
  margin: 2em 0 0.6em; letter-spacing: -0.01em;
  line-height: 1.1;
}
.case-content h3 {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(22px, 2.2vw, 28px);
  margin: 1.6em 0 0.5em; letter-spacing: -0.01em;
}
.case-content blockquote {
  border-left: 2px solid var(--accent);
  padding: 8px 0 8px 24px;
  margin: 32px 0;
  font-family: var(--serif); font-weight: 300;
  font-size: clamp(20px, 2vw, 26px);
  font-style: italic;
  color: var(--fg);
}
.case-content a { color: var(--accent); border-bottom: 1px solid var(--accent-soft); }
.case-content a:hover { border-color: var(--accent); }
.case-content img {
  margin: 32px 0;
  filter: grayscale(0.85) contrast(1.05);
}

.case-credits {
  margin-top: 80px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}
.case-credits ul {
  list-style: none; padding: 0; margin: 0;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 8px 32px;
  color: var(--fg-dim);
  font-size: 14px;
}

.case-nav {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 32px;
  align-items: center;
  padding: 60px var(--gutter) 100px;
  border-top: 1px solid var(--line);
}
.case-nav-link {
  display: inline-block;
  color: var(--fg-dim);
  transition: color .25s ease;
}
.case-nav-link:hover { color: var(--fg); }
.case-nav-link strong {
  display: block;
  font-family: var(--serif); font-weight: 300;
  font-size: 22px; line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--fg);
  margin-top: 6px;
}

/* Form status line */
.form-status {
  margin: 12px 0 0;
  font-size: 14px;
  min-height: 1.4em;
  color: var(--accent);
}

/* Page-content (generic page template) */
.page-content h2,
.page-content h3 {
  font-family: var(--serif); font-weight: 300;
  letter-spacing: -0.01em;
  margin-top: 1.6em;
}
.page-content a { color: var(--accent); border-bottom: 1px solid var(--accent-soft); }

/* Pagination */
.pagination .page-numbers {
  display: inline-block;
  padding: 8px 14px;
  margin: 0 4px;
  border: 1px solid var(--line);
  color: var(--fg-dim);
  transition: border-color .3s ease, color .3s ease;
}
.pagination .page-numbers.current,
.pagination .page-numbers:hover {
  border-color: var(--accent);
  color: var(--fg);
}

@media (max-width: 820px) {
  .case-nav { grid-template-columns: 1fr; text-align: left; }
  .case-credits ul { grid-template-columns: 1fr; }
}

/* =========================================================
   Over-sectie met portretfoto
   ========================================================= */
.over.has-portrait .container { max-width: var(--max); }

.over-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.15fr);
  gap: clamp(40px, 6vw, 100px);
  align-items: center;
  margin-left: auto;
  margin-right: auto;
}

.over-portrait {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  background: #1a1a1a;
}
.over-portrait img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  filter: grayscale(0.85) contrast(1.05) brightness(0.92);
  transition: filter 0.8s ease, transform 1.2s cubic-bezier(.2,.8,.2,1);
}
.over-portrait:hover img {
  filter: grayscale(0) contrast(1.05) brightness(1);
  transform: scale(1.02);
}

.over-text .lede-md { max-width: none; }
.over-text .capabilities { margin-top: 40px; }

@media (max-width: 820px) {
  .over-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .over-portrait {
    max-width: 360px;
    margin: 0 auto;
  }
}

/* =========================================================
   v1.1.0 — Customizer-overrides terug in main.css
   ========================================================= */

/* --- Hero split layout: titel + eyebrow boven, lede + CTA onder --- */
.hero { align-items: stretch; }
.hero-content {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding-top: clamp(80px, 10vh, 110px);
  padding-bottom: clamp(48px, 8vh, 100px);
}
.hero-content .lede { margin-top: auto; }
.hero-content .cta { align-self: flex-start; }
.hero .eyebrow { margin-bottom: 12px; }

/* --- Over-sectie met portretfoto: portret links, bio rechts --- */
.over.has-portrait .container { max-width: var(--max); }
.over-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(40px, 6vw, 100px);
  align-items: center;
  margin-left: auto; margin-right: auto;
}
.over-portrait {
  position: relative;
  aspect-ratio: 3 / 4;
  background: transparent;
  overflow: visible;
}
.over-portrait img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  filter: grayscale(0.85) contrast(1.05) brightness(0.78);
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 18%, #000 78%, transparent 100%);
          mask-image: linear-gradient(180deg, transparent 0%, #000 18%, #000 78%, transparent 100%);
  transition: filter .8s ease, transform 1.2s cubic-bezier(.2,.8,.2,1);
}
.over-portrait:hover img {
  filter: grayscale(0) contrast(1.05) brightness(1);
  transform: scale(1.02);
}
.over-text .lede-md { max-width: none; }
.over-text .capabilities { margin-top: 40px; }

/* --- Showreel: iframe/video vult het hele frame --- */
.showreel-frame iframe,
.showreel-frame video {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  border: 0;
  display: block;
  z-index: 2;
}
.showreel-frame .showreel-placeholder {
  position: relative;
  width: auto; height: auto;
  z-index: 3;
}

/* =========================================================
   Project-grid: 3 video-tiles met titel + video + meer-info link
   ========================================================= */
.project-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(28px, 3vw, 48px);
  margin-top: 24px;
}

.project-tile {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.project-tile .tile-head { margin: 0; }
.project-tile .tile-meta {
  font-family: var(--sans);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--fg-mute);
  margin: 0 0 8px;
}
.project-tile .tile-title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(22px, 1.8vw, 28px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0;
}
.project-tile .tile-title a {
  color: var(--fg);
  text-decoration: none;
  transition: color .25s ease;
}
.project-tile .tile-title a:hover { color: var(--accent); }
.project-tile .tile-sub {
  display: block;
  font-size: 0.7em;
  color: var(--accent);
  font-style: italic;
  margin-top: 6px;
  letter-spacing: 0;
}

/* Video / image / placeholder frame */
.project-tile .tile-media {
  position: relative;
  background: #050505;
  border: 1px solid var(--line);
  overflow: hidden;
  aspect-ratio: 16 / 9;
}
.project-tile .tile-media .video-frame {
  position: absolute;
  inset: 0;
  aspect-ratio: auto !important;
}
.project-tile .tile-media iframe,
.project-tile .tile-media video {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  border: 0;
  display: block;
}
.project-tile .tile-thumb {
  display: block; width: 100%; height: 100%;
}
.project-tile .tile-thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(0.85) contrast(1.05) brightness(0.92);
  transition: filter .6s ease, transform 1.2s cubic-bezier(.2,.8,.2,1);
}
.project-tile:hover .tile-thumb img {
  filter: grayscale(0) contrast(1.05) brightness(1);
  transform: scale(1.04);
}
.project-tile .tile-empty {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%; height: 100%;
  color: var(--fg-dim);
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  transition: color .3s ease, background .3s ease;
}
.project-tile .tile-empty:hover {
  color: var(--fg);
  background: #111;
}

/* Meer info link */
.project-tile .tile-foot { margin: 0; }
.project-tile .tile-more {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--accent);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
  display: inline-block;
  transition: color .25s ease, border-color .25s ease;
}
.project-tile .tile-more:hover {
  color: var(--fg);
  border-bottom-color: var(--accent);
}

/* Single-project: video bovenaan case body */
.case-body .video-frame.case-video {
  margin-bottom: 56px;
  position: relative;
  border: 1px solid var(--line);
  overflow: hidden;
}
.case-body .video-frame.case-video iframe,
.case-body .video-frame.case-video video {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  border: 0;
  display: block;
}

/* Responsive */
@media (max-width: 1100px) {
  .project-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 700px) {
  .project-grid { grid-template-columns: 1fr; }
  .over-grid { grid-template-columns: 1fr; gap: 32px; }
  .over-portrait { max-width: 360px; margin-left: auto; margin-right: auto; }
}

/* =========================================================
   v1.2.0 — Showreel: 2-kolom met Spotify ernaast
   ========================================================= */
.showreel.has-spotify .showreel-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: clamp(28px, 3vw, 48px);
  align-items: start;
}
.showreel-col .section-label { margin: 0 0 18px; }

/* Video frame (links) — niet meer full-bleed dominant */
.showreel.has-spotify .showreel-col-video .showreel-frame {
  margin-top: 0;
  aspect-ratio: 16 / 9;
}
.showreel.has-spotify .showreel-frame::before { display: none; } /* radial glow weghalen */

/* Spotify frame (rechts) — wat hoger dan 16:9 voor playlist player */
.spotify-frame {
  position: relative;
  background: #050505;
  border: 1px solid var(--line);
  overflow: hidden;
  aspect-ratio: 16 / 9;
  border-radius: 12px;
}
.spotify-frame iframe {
  position: absolute;
  inset: 0;
  width: 100% !important;
  height: 100% !important;
  border: 0;
  display: block;
  border-radius: 12px;
}

/* Match heights: video ook subtiele rounded edges */
.showreel.has-spotify .showreel-frame {
  border-radius: 12px;
}
.showreel.has-spotify .showreel-frame iframe,
.showreel.has-spotify .showreel-frame video {
  border-radius: 12px;
}

@media (max-width: 900px) {
  .showreel.has-spotify .showreel-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

/* v1.3.0 — Studio-adres in footer */
.footer-address {
  font-style: normal;
  margin-top: 8px;
  font-size: 13px;
  line-height: 1.5;
  color: var(--fg-mute);
}

/* v1.4.0 — Footer contact list (adres + telefoon + email) */
.footer-contact {
  list-style: none;
  padding: 0;
  margin: 16px 0 0;
  font-size: 13px;
  line-height: 1.55;
  color: var(--fg-mute);
}
.footer-contact li {
  margin: 0 0 6px;
}
.footer-contact .footer-address {
  font-style: normal;
}
.footer-contact a {
  color: var(--fg-mute);
  border-bottom: 1px solid transparent;
  transition: color .25s ease, border-color .25s ease;
}
.footer-contact a:hover {
  color: var(--fg);
  border-bottom-color: var(--fg-mute);
}

/* =========================================================
   v1.5.0 — Archief-lijst (eerder werk onder de 3 featured)
   ========================================================= */
.archive-list {
  margin-top: clamp(60px, 8vw, 120px);
  padding-top: clamp(48px, 6vw, 80px);
  border-top: 1px solid var(--line);
}
.archive-list-head { margin-bottom: 56px; }

.archive-list ul {
  list-style: none; padding: 0; margin: 0;
}
.archive-list li {
  border-top: 1px solid var(--line);
}
.archive-list li:last-child {
  border-bottom: 1px solid var(--line);
}
.archive-list li a {
  display: grid;
  grid-template-columns: 90px minmax(0, 1fr) auto;
  gap: clamp(20px, 3vw, 56px);
  align-items: baseline;
  padding: 22px 0;
  color: inherit;
  text-decoration: none;
  transition: padding-left .35s ease, color .25s ease;
}
.archive-list li a:hover {
  padding-left: 12px;
}
.archive-list li a:hover .archive-title { color: var(--accent); }

.archive-year {
  font-family: var(--sans);
  font-size: 12px;
  color: var(--fg-mute);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  font-variant-numeric: tabular-nums;
}
.archive-title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(20px, 1.8vw, 28px);
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--fg);
  transition: color .25s ease;
}
.archive-title-sub {
  display: block;
  font-size: 0.65em;
  color: var(--accent);
  font-style: italic;
  margin-top: 4px;
  letter-spacing: 0;
}
.archive-role {
  font-family: var(--sans);
  font-size: 11px;
  color: var(--fg-dim);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  white-space: nowrap;
}

@media (max-width: 700px) {
  .archive-list li a {
    grid-template-columns: 1fr;
    gap: 4px;
    padding: 20px 0;
  }
  .archive-role { white-space: normal; }
}
