/* =========================================================
   Dominique & Petra — shared stylesheet
   Bold editorial · warm & earthy
   ========================================================= */

:root {
  /* Palette — warm earthy */
  --paper:      #F4EBDD;  /* primary cream background */
  --sand:       #E8D9C2;  /* secondary panel */
  --sand-soft:  #EFE3D2;
  --ink:        #211B14;  /* deep espresso (near-black, warm) */
  --ink-soft:   #4A4036;
  --muted:      #8A7B69;
  --accent:     #BC5A33;  /* terracotta */
  --accent-deep:#97431F;
  --on-dark:    #F4EBDD;
  --on-dark-mut:#B7A892;
  --line:       rgba(33, 27, 20, 0.14);
  --line-dark:  rgba(244, 235, 221, 0.16);

  /* Type */
  --font-display: "Bricolage Grotesque", system-ui, sans-serif;
  --font-serif:   "Bodoni Moda", Georgia, serif;
  --font-body:    "Archivo", system-ui, sans-serif;

  /* Spacing & shape */
  --r:    4px;
  --r-lg: 8px;
  --container: 1280px;
  --gutter: clamp(20px, 5vw, 64px);

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; cursor: pointer; }
::selection { background: var(--accent); color: var(--paper); }

/* ---------- Layout helpers ---------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: clamp(72px, 11vw, 156px); }
.section--tight { padding-block: clamp(48px, 7vw, 96px); }
.section--dark { background: var(--ink); color: var(--on-dark); }
.section--sand { background: var(--sand); }
.section--dark .muted,
.section--dark .lead { color: var(--on-dark-mut); }

/* ---------- Typography ---------- */
.eyebrow {
  font-family: var(--font-body);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 0.7em;
  margin: 0 0 1.4rem;
}
.eyebrow::before {
  content: "";
  width: 28px; height: 1px;
  background: currentColor;
  display: inline-block;
}
.eyebrow--center { justify-content: center; }

h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 800; line-height: 0.98; letter-spacing: -0.02em; margin: 0; }
.display {
  font-size: clamp(3.1rem, 9.4vw, 8.6rem);
  line-height: 0.92;
  letter-spacing: -0.035em;
  text-transform: uppercase;
}
/* Page headers — safer scale so long words never collide with following text */
.page-title {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(2.7rem, 6.6vw, 5.9rem);
  line-height: 0.95; letter-spacing: -0.035em; text-transform: uppercase;
  text-wrap: balance; margin: 0;
}
.h-xl { font-size: clamp(2.4rem, 5.6vw, 4.6rem); line-height: 0.98; letter-spacing: -0.03em; }
.h-lg { font-size: clamp(1.9rem, 3.6vw, 3rem); }
.h-md { font-size: clamp(1.45rem, 2.4vw, 2rem); }
.serif-accent { font-family: var(--font-serif); font-style: italic; font-weight: 500; letter-spacing: -0.01em; text-transform: none; color: var(--accent); }
.lead { font-size: clamp(1.12rem, 1.7vw, 1.42rem); line-height: 1.55; color: var(--ink-soft); max-width: 60ch; }
.muted { color: var(--muted); }
.measure { max-width: 64ch; }

/* ---------- Buttons ---------- */
.btn {
  --c: var(--ink);
  display: inline-flex; align-items: center; gap: 0.6em;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 0.02em;
  padding: 0.95em 1.5em;
  border: 1.5px solid var(--c);
  border-radius: 100px;
  background: transparent;
  color: var(--c);
  white-space: nowrap;
  transition: background .35s var(--ease), color .35s var(--ease), transform .35s var(--ease);
}
.btn:hover { transform: translateY(-2px); }
.btn--solid { background: var(--accent); border-color: var(--accent); color: var(--paper); }
.btn--solid:hover { background: var(--accent-deep); border-color: var(--accent-deep); }
.btn--ink { background: var(--ink); border-color: var(--ink); color: var(--paper); }
.btn--ink:hover { background: var(--accent); border-color: var(--accent); }
.btn--ghost:hover { background: var(--ink); color: var(--paper); }
.section--dark .btn--ghost { --c: var(--on-dark); }
.section--dark .btn--ghost:hover { background: var(--paper); color: var(--ink); }
.btn .arrow { transition: transform .35s var(--ease); }
.btn:hover .arrow { transform: translateX(4px); }
.btn--lg { font-size: 1rem; padding: 1.05em 1.8em; }

.text-link {
  display: inline-flex; align-items: center; gap: 0.5em;
  font-weight: 600; letter-spacing: 0.02em;
  border-bottom: 1.5px solid var(--accent);
  padding-bottom: 2px;
  transition: gap .3s var(--ease), color .3s var(--ease);
}
.text-link:hover { gap: 0.9em; color: var(--accent); }

/* ---------- Navigation ---------- */
.site-nav {
  position: sticky; top: 0; z-index: 60;
  background: color-mix(in srgb, var(--paper) 86%, transparent);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.site-nav.on-dark { background: color-mix(in srgb, var(--ink) 80%, transparent); border-bottom-color: var(--line-dark); color: var(--on-dark); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 76px; }
.brand { display: flex; align-items: baseline; gap: 0.5ch; font-family: var(--font-display); font-weight: 800; font-size: 1.18rem; letter-spacing: -0.02em; text-transform: uppercase; }
.brand .amp { color: var(--accent); font-family: var(--font-serif); font-style: italic; font-weight: 500; text-transform: none; }
.nav-links { display: flex; align-items: center; gap: clamp(18px, 2.4vw, 40px); list-style: none; margin: 0; padding: 0; }
.nav-links a {
  font-size: 0.86rem; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase;
  padding: 6px 0; position: relative; color: inherit;
}
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 1.5px; width: 0; background: var(--accent);
  transition: width .35s var(--ease);
}
.nav-links a:hover::after, .nav-links a[aria-current="page"]::after { width: 100%; }
.nav-links a[aria-current="page"] { color: var(--accent); }
.nav-cta { margin-left: 6px; }
.nav-toggle { display: none; width: 44px; height: 44px; border: none; background: none; align-items: center; justify-content: center; }
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  content: ""; display: block; width: 24px; height: 2px; background: currentColor; transition: transform .3s var(--ease), opacity .3s var(--ease);
}
.nav-toggle span::before { transform: translateY(-7px); }
.nav-toggle span::after  { transform: translateY(5px); }
.nav-toggle[aria-expanded="true"] span { background: transparent; }
.nav-toggle[aria-expanded="true"] span::before { transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] span::after  { transform: rotate(-45deg); }

@media (max-width: 860px) {
  .nav-toggle { display: inline-flex; }
  .nav-links {
    position: fixed; inset: 76px 0 auto 0;
    flex-direction: column; align-items: flex-start; gap: 0;
    background: var(--ink); color: var(--on-dark);
    padding: 16px var(--gutter) 40px;
    transform: translateY(-120%); transition: transform .4s var(--ease);
    border-bottom: 1px solid var(--line-dark);
  }
  .nav-links.open { transform: translateY(0); }
  .nav-links a { font-size: 1.5rem; font-family: var(--font-display); padding: 14px 0; width: 100%; text-transform: none; letter-spacing: -0.01em; }
  .nav-links li { width: 100%; }
  .nav-cta { margin: 14px 0 0; }
}

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); color: var(--on-dark); padding-block: clamp(56px, 8vw, 100px) 36px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 48px; align-items: start; }
.footer-mark { font-family: var(--font-display); font-weight: 800; font-size: clamp(2.4rem, 5vw, 3.6rem); line-height: 0.95; text-transform: uppercase; letter-spacing: -0.03em; }
.footer-mark .amp { color: var(--accent); font-family: var(--font-serif); font-style: italic; font-weight: 500; text-transform: none; }
.footer-col h4 { font-family: var(--font-body); font-size: 0.74rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--on-dark-mut); margin-bottom: 16px; }
.footer-col ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.footer-col a { color: var(--on-dark); opacity: 0.85; transition: color .3s, opacity .3s; }
.footer-col a:hover { color: var(--accent); opacity: 1; }
/* contact-rij met icoon (mail / instagram) */
.footer-col .contact-list a { display: inline-flex; align-items: center; gap: 10px; }
.footer-col .contact-list svg { width: 17px; height: 17px; flex: 0 0 auto; color: var(--accent); }
.footer-bottom { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; margin-top: clamp(48px, 7vw, 80px); padding-top: 24px; border-top: 1px solid var(--line-dark); font-size: 0.82rem; color: var(--on-dark-mut); }
@media (max-width: 760px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; } .footer-mark { grid-column: 1 / -1; } }

/* ---------- Image slot styling ---------- */
image-slot { background: var(--sand); --slot-bg: var(--sand); }
.section--dark image-slot { background: #2c2419; }

/* ---------- Real images in media frames ---------- */
.proj__media img, .hero__media img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .8s var(--ease); }
.proj:hover .proj__media img { transform: scale(1.04); }
.profile__photo img { width: 100%; display: block; border-radius: 6px; }
.about-portrait img { width: 100%; display: block; border-radius: 6px; }

/* ---------- Brand logo ---------- */
.brand-logo { height: 40px; width: auto; display: block; }
.site-nav.on-dark .brand-logo { filter: invert(1) brightness(1.6); }
.footer-logo { height: 84px; width: auto; display: block; }

/* ---------- Masonry gallery (Selectie) ---------- */
.masonry { columns: 3; column-gap: clamp(12px, 1.6vw, 22px); }
@media (max-width: 860px) { .masonry { columns: 2; } }
@media (max-width: 520px) { .masonry { columns: 1; } }
.masonry figure { break-inside: avoid; margin: 0 0 clamp(12px, 1.6vw, 22px); border-radius: var(--r); overflow: hidden; background: var(--sand); }
.masonry img { width: 100%; display: block; transition: transform .8s var(--ease), filter .5s var(--ease); }
.masonry figure:hover img { transform: scale(1.04); }

/* ---------- Portfolio masonry cards ---------- */
.pf-masonry { columns: 3; column-gap: clamp(14px, 1.8vw, 28px); }
@media (max-width: 900px) { .pf-masonry { columns: 2; } }
@media (max-width: 560px) { .pf-masonry { columns: 1; } }
.m-item { break-inside: avoid; margin: 0 0 clamp(26px, 3vw, 46px); display: inline-block; width: 100%; }
.m-item[hidden] { display: none; }
.m-item .proj__media { height: auto; }
.m-item .proj__media img { height: auto; }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: .08s; }
.reveal[data-delay="2"] { transition-delay: .16s; }
.reveal[data-delay="3"] { transition-delay: .24s; }
.reveal[data-delay="4"] { transition-delay: .32s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; transition: none; }
}
/* Frozen / non-animating environments: show end-state instantly, no transition. */
.no-anim .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }

/* ---------- Misc utilities ---------- */
.tag {
  display: inline-block;
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  padding: 5px 11px; border-radius: 100px; border: 1px solid var(--line);
  color: var(--ink-soft);
}
.tag--accent { background: var(--accent); color: var(--paper); border-color: var(--accent); }
.tag--dom { background: color-mix(in srgb, var(--accent) 16%, var(--paper)); color: var(--accent-deep); border-color: transparent; }
.tag--pet { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.divider { height: 1px; background: var(--line); border: 0; margin: 0; }
.grid { display: grid; gap: clamp(20px, 3vw, 40px); }

/* =========================================================
   COMPONENTS
   ========================================================= */

/* ---------- Hero (home) ---------- */
.hero { position: relative; min-height: min(92vh, 920px); display: flex; align-items: flex-end; overflow: hidden; background: var(--ink); }
.hero__media { position: absolute; inset: 0; }
.hero__media image-slot { width: 100%; height: 100%; }
.hero__scrim { position: absolute; inset: 0; background:
  linear-gradient(to top, rgba(20,15,10,0.82) 0%, rgba(20,15,10,0.28) 42%, rgba(20,15,10,0.12) 70%, rgba(20,15,10,0.34) 100%); pointer-events: none; }
.hero__inner { position: relative; z-index: 2; width: 100%; padding-bottom: clamp(40px, 7vw, 92px); padding-top: 120px; color: var(--on-dark); }
.hero .eyebrow { color: #E9A98C; }
.hero__title { font-size: clamp(3.2rem, 11vw, 10rem); line-height: 0.88; letter-spacing: -0.04em; text-transform: uppercase; margin: 0; }
.hero__title .serif-accent { display: block; font-size: 0.42em; letter-spacing: -0.01em; color: #EBB89E; margin-top: 0.18em; }
.hero__row { display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between; gap: 28px; margin-top: clamp(24px, 4vw, 44px); }
.hero__sub { max-width: 40ch; font-size: clamp(1.02rem, 1.5vw, 1.28rem); color: #E4D6C3; line-height: 1.5; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }

/* Play button */
.play-btn {
  display: inline-flex; align-items: center; gap: 0.85em;
  padding: 0.7em 1.5em 0.7em 0.7em;
  border-radius: 100px; border: 1.5px solid rgba(244,235,221,0.5);
  background: rgba(244,235,221,0.08); color: var(--on-dark);
  font-weight: 600; letter-spacing: 0.02em; backdrop-filter: blur(6px);
  white-space: nowrap;
  transition: background .35s var(--ease), border-color .35s var(--ease), transform .35s var(--ease);
}
.play-btn:hover { background: var(--accent); border-color: var(--accent); transform: translateY(-2px); }
.play-btn .ico { width: 38px; height: 38px; border-radius: 50%; background: var(--accent); color: var(--paper); display: grid; place-items: center; transition: background .35s var(--ease); flex: none; }
.play-btn:hover .ico { background: var(--paper); color: var(--accent); }
.play-btn .ico svg { width: 14px; height: 14px; margin-left: 2px; }

/* ---------- Stat / marquee strip ---------- */
.metastrip { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line); border-block: 1px solid var(--line); }
.metastrip > div { background: var(--paper); padding: clamp(22px, 3vw, 36px) clamp(16px, 2vw, 28px); }
.metastrip .num { font-family: var(--font-display); font-weight: 800; font-size: clamp(2rem, 4vw, 3.2rem); line-height: 1; letter-spacing: -0.03em; }
.metastrip .lbl { font-size: 0.82rem; color: var(--muted); margin-top: 8px; letter-spacing: 0.04em; }
@media (max-width: 760px) { .metastrip { grid-template-columns: 1fr 1fr; } }

/* ---------- Section header ---------- */
.sec-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 28px; flex-wrap: wrap; margin-bottom: clamp(36px, 5vw, 64px); }
.sec-head .measure { margin: 0; }

/* ---------- Project cards ---------- */
.proj-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: clamp(16px, 2.4vw, 32px); }
.proj { grid-column: span 6; }
.proj--wide { grid-column: span 12; }
.proj--tall { grid-column: span 6; }
@media (max-width: 760px) { .proj, .proj--tall, .proj--wide { grid-column: 1 / -1; } }

.proj__media { position: relative; overflow: hidden; border-radius: var(--r); background: var(--sand); }
.proj__media image-slot { width: 100%; height: 100%; display: block; transition: transform .8s var(--ease); }
.proj:hover .proj__media image-slot { transform: scale(1.035); }
.proj__media.is-video::after {
  content: ""; position: absolute; inset: 0; background: rgba(20,15,10,0.18);
  opacity: 0; transition: opacity .4s var(--ease); pointer-events: none;
}
.proj:hover .proj__media.is-video::after { opacity: 1; }
.proj__play {
  position: absolute; left: 18px; bottom: 18px; z-index: 3;
  width: 56px; height: 56px; border-radius: 50%;
  background: rgba(244,235,221,0.92); color: var(--ink);
  display: grid; place-items: center; border: none;
  transition: background .35s var(--ease), color .35s var(--ease), transform .35s var(--ease);
}
.proj__play svg { width: 17px; height: 17px; margin-left: 3px; }
/* portfolio inline video's */
.proj__media video.pf-video { width: 100%; height: auto; display: block; background: var(--ink); }
.proj__media.is-playing .proj__play { display: none; }
.proj__media.is-playing::after { display: none; }
.proj:hover .proj__play { background: var(--accent); color: var(--paper); transform: scale(1.06); }
.proj__tags { display: flex; gap: 8px; flex-wrap: wrap; position: absolute; top: 16px; left: 16px; z-index: 3; }
.proj__body { display: flex; align-items: flex-start; justify-content: space-between; gap: 18px; padding: 18px 2px 0; }
.proj__title { font-family: var(--font-display); font-weight: 700; font-size: clamp(1.3rem, 2vw, 1.85rem); line-height: 1.02; letter-spacing: -0.02em; }
.proj__meta { font-size: 0.88rem; color: var(--muted); margin-top: 6px; }
.proj__cat { font-family: var(--font-body); font-size: 0.78rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--accent); white-space: nowrap; padding-top: 6px; }

/* aspect helpers */
.ar-4-3   { aspect-ratio: 4 / 3; }
.ar-3-4   { aspect-ratio: 3 / 4; }
.ar-16-9  { aspect-ratio: 16 / 9; }
.ar-1-1   { aspect-ratio: 1 / 1; }
.ar-21-9  { aspect-ratio: 21 / 9; }
@media (max-width: 760px) { .ar-21-9 { aspect-ratio: 16/10; } }

/* ---------- Filters ---------- */
.filters { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: clamp(28px, 4vw, 48px); }
.filter {
  font-family: var(--font-body); font-weight: 600; font-size: 0.86rem; letter-spacing: 0.02em;
  padding: 0.62em 1.15em; border-radius: 100px; border: 1.5px solid var(--line);
  background: transparent; color: var(--ink-soft); white-space: nowrap;
  transition: background .3s var(--ease), color .3s var(--ease), border-color .3s var(--ease);
}
.filter:hover { border-color: var(--ink); }
.filter[aria-pressed="true"] { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.filter[data-filter="dominique"][aria-pressed="true"] { background: var(--accent); border-color: var(--accent); }
.filter .count { opacity: 0.55; margin-left: 0.4em; font-variant-numeric: tabular-nums; }
.proj[hidden] { display: none; }
.gallery-empty { color: var(--muted); padding: 40px 0; display: none; }

/* portfolio uniform grid */
.pf-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(16px, 2vw, 30px); }
@media (max-width: 900px) { .pf-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .pf-grid { grid-template-columns: 1fr; } }
.pf-grid .proj { grid-column: auto; }
.pf-grid .proj[hidden] { display: none; }

/* ---------- Profiles ---------- */
.profile { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(24px, 4vw, 56px); align-items: center; }
.profile--rev { grid-template-columns: 1.15fr 0.85fr; }
.profile--rev .profile__text { order: -1; }
.profile__photo image-slot { width: 100%; }
.profile__role { font-family: var(--font-serif); font-style: italic; font-size: clamp(1.1rem, 1.6vw, 1.35rem); color: var(--accent); margin-bottom: 0.6rem; }
.profile__name { font-size: clamp(2.4rem, 5vw, 4.2rem); line-height: 0.94; text-transform: uppercase; letter-spacing: -0.03em; margin-bottom: 1.2rem; }
.profile__skills { list-style: none; margin: 1.6rem 0 0; padding: 0; display: flex; flex-direction: column; }
.profile__skills li { display: flex; gap: 14px; padding: 14px 0; border-top: 1px solid var(--line); font-size: 0.96rem; }
.section--dark .profile__skills li { border-top-color: var(--line-dark); }
.profile__skills li span:first-child { color: var(--accent); font-weight: 700; font-variant-numeric: tabular-nums; }
@media (max-width: 820px) {
  .profile, .profile--rev { grid-template-columns: 1fr; gap: 28px; }
  .profile--rev .profile__text { order: 0; }
}

/* ---------- Services ---------- */
.svc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(16px, 2.4vw, 32px); }
.svc-grid--3 { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 980px) { .svc-grid--3 { grid-template-columns: 1fr 1fr; } }
@media (max-width: 820px) { .svc-grid { grid-template-columns: 1fr; } .svc-grid--3 { grid-template-columns: 1fr; } }
.svc {
  border: 1px solid var(--line); border-radius: var(--r-lg); padding: clamp(28px, 3.4vw, 48px);
  background: var(--paper); display: flex; flex-direction: column; min-height: 100%;
  transition: transform .4s var(--ease), border-color .4s var(--ease), background .4s var(--ease);
}
.svc:hover { transform: translateY(-4px); border-color: var(--accent); }
.section--dark .svc { background: #271f17; border-color: var(--line-dark); }
.svc__num { font-family: var(--font-serif); font-style: italic; font-size: 1.3rem; color: var(--accent); }
.svc__title { font-family: var(--font-display); font-weight: 700; font-size: clamp(1.5rem, 2.4vw, 2.2rem); letter-spacing: -0.02em; margin: 0.8rem 0 0.9rem; line-height: 1; }
.svc__list { list-style: none; margin: 1.4rem 0 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.svc__list li { display: flex; gap: 12px; align-items: flex-start; font-size: 0.96rem; color: var(--ink-soft); }
.section--dark .svc__list li { color: var(--on-dark-mut); }
.svc__list li::before { content: ""; flex: none; width: 7px; height: 7px; margin-top: 8px; border-radius: 50%; background: var(--accent); }
.svc__who { margin-top: auto; padding-top: 1.6rem; font-size: 0.82rem; color: var(--muted); letter-spacing: 0.02em; }

/* ---------- Quote ---------- */
.bigquote { font-family: var(--font-serif); font-style: italic; font-weight: 500; font-size: clamp(1.8rem, 4.4vw, 3.6rem); line-height: 1.12; letter-spacing: -0.02em; max-width: 18ch; }
.bigquote em { color: var(--accent); font-style: italic; }

/* ---------- CTA band ---------- */
.cta { text-align: center; }
.cta__title { font-size: clamp(2.6rem, 7vw, 6rem); text-transform: uppercase; letter-spacing: -0.035em; line-height: 0.95; }
.cta__title .serif-accent { display: inline; }

/* ---------- Contact form ---------- */
.contact-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(36px, 6vw, 88px); align-items: start; }
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; gap: 44px; } }
.field { display: flex; flex-direction: column; gap: 8px; margin-bottom: 22px; }
.field label { font-size: 0.78rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-soft); }
.field input, .field textarea, .field select {
  font: inherit; color: var(--ink); background: var(--paper);
  border: 1.5px solid var(--line); border-radius: var(--r); padding: 0.85em 1em;
  transition: border-color .3s var(--ease), box-shadow .3s var(--ease); width: 100%;
}
.field textarea { resize: vertical; min-height: 130px; }
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent) 20%, transparent);
}
.field input::placeholder, .field textarea::placeholder { color: var(--muted); }
.field.invalid input, .field.invalid textarea { border-color: #C0392B; }
.field__err { font-size: 0.8rem; color: #C0392B; font-weight: 600; display: none; }
.field.invalid .field__err { display: block; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
@media (max-width: 560px) { .form-row { grid-template-columns: 1fr; gap: 0; } }
.form-note { font-size: 0.84rem; color: var(--muted); margin-top: 4px; }
.form-success {
  display: none; align-items: flex-start; gap: 14px; padding: 20px 22px;
  background: color-mix(in srgb, var(--accent) 12%, var(--paper)); border: 1px solid var(--accent);
  border-radius: var(--r-lg); margin-top: 8px;
}
.form-success.show { display: flex; }
.form-success .ico { flex: none; width: 26px; height: 26px; border-radius: 50%; background: var(--accent); color: var(--paper); display: grid; place-items: center; }

.contact-detail { display: flex; flex-direction: column; gap: 4px; margin-bottom: 30px; }

/* ---------- Contact cards (per person) ---------- */
.contact-card { border: 1px solid var(--line); border-radius: var(--r-lg); padding: clamp(20px, 2.6vw, 30px); background: var(--paper); }
.contact-card__name { font-family: var(--font-display); font-weight: 700; font-size: clamp(1.3rem, 2vw, 1.7rem); letter-spacing: -0.02em; margin-top: 14px; }
.contact-card__role { font-family: var(--font-serif); font-style: italic; color: var(--accent); margin-top: 2px; }
.contact-card__list { list-style: none; margin: 16px 0 0; padding: 0; display: flex; flex-direction: column; gap: 9px; }
.contact-card__list a { color: var(--ink-soft); border-bottom: 1px solid transparent; transition: color .25s, border-color .25s; }
.contact-card__list a:hover { color: var(--accent); border-color: var(--accent); }
.contact-detail .k { font-size: 0.74rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); }
.contact-detail .v { font-family: var(--font-display); font-weight: 600; font-size: clamp(1.3rem, 2.4vw, 1.9rem); letter-spacing: -0.02em; }
.contact-detail .v a { border-bottom: 2px solid transparent; transition: border-color .3s; }
.contact-detail .v a:hover { border-color: var(--accent); }
.socials { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 8px; }
.social {
  display: inline-flex; align-items: center; gap: 0.55em; padding: 0.6em 1.05em;
  border: 1.5px solid var(--line); border-radius: 100px; font-weight: 600; font-size: 0.9rem;
  transition: background .3s var(--ease), color .3s var(--ease), border-color .3s var(--ease);
}
.social:hover { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.social svg { width: 17px; height: 17px; }

/* ---------- Video modal ---------- */
.video-modal {
  position: fixed; inset: 0; z-index: 200; display: none;
  align-items: center; justify-content: center; padding: clamp(16px, 4vw, 56px);
  background: rgba(16,11,7,0.86); backdrop-filter: blur(8px);
}
.video-modal.open { display: flex; animation: vm-fade .3s var(--ease); }
@keyframes vm-fade { from { opacity: 0; } to { opacity: 1; } }
.video-modal__dialog { position: relative; width: min(1100px, 100%); }
.video-modal__head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; color: var(--on-dark); }
.video-modal__title { font-family: var(--font-display); font-weight: 700; font-size: 1.2rem; letter-spacing: -0.01em; }
.video-modal__close {
  width: 44px; height: 44px; border-radius: 50%; border: 1.5px solid rgba(244,235,221,0.4);
  background: transparent; color: var(--on-dark); display: grid; place-items: center;
  transition: background .3s, transform .3s;
}
.video-modal__close:hover { background: var(--accent); border-color: var(--accent); transform: rotate(90deg); }
.video-modal__stage { position: relative; aspect-ratio: 16/9; background: #000; border-radius: var(--r-lg); overflow: hidden; }
.video-modal__frame { width: 100%; height: 100%; border: 0; display: block; }
.video-modal__placeholder {
  position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 14px; text-align: center; padding: 32px; color: var(--on-dark-mut);
  background: repeating-linear-gradient(45deg, #1c1610, #1c1610 14px, #211b14 14px, #211b14 28px);
}
.video-modal__placeholder .pico { width: 64px; height: 64px; border-radius: 50%; border: 2px solid var(--accent); color: var(--accent); display: grid; place-items: center; }
.video-modal__placeholder .pico svg { width: 22px; height: 22px; margin-left: 3px; }
.video-modal__placeholder strong { color: var(--on-dark); font-family: var(--font-display); font-size: 1.15rem; }
.video-modal__placeholder code { font-family: ui-monospace, Menlo, monospace; font-size: 0.82rem; background: rgba(244,235,221,0.08); padding: 3px 8px; border-radius: 4px; color: #E9A98C; }

/* ---------- Tweaks panel ---------- */
#dp-tweaks {
  position: fixed; right: 18px; bottom: 18px; z-index: 300;
  width: 268px; display: none; flex-direction: column;
  background: #1b1610; color: var(--on-dark);
  border: 1px solid rgba(244,235,221,0.16); border-radius: 12px;
  box-shadow: 0 18px 50px rgba(0,0,0,0.4); overflow: hidden;
  font-family: var(--font-body);
}
#dp-tweaks.open { display: flex; }
#dp-tweaks .dpt-head { display: flex; align-items: center; justify-content: space-between; padding: 13px 14px; border-bottom: 1px solid rgba(244,235,221,0.12); font-family: var(--font-display); font-weight: 700; font-size: 0.98rem; }
#dp-tweaks .dpt-x { width: 26px; height: 26px; border: none; background: rgba(244,235,221,0.08); color: var(--on-dark); border-radius: 6px; font-size: 1.1rem; line-height: 1; display: grid; place-items: center; }
#dp-tweaks .dpt-x:hover { background: var(--accent); }
#dp-tweaks .dpt-body { padding: 14px; display: flex; flex-direction: column; gap: 16px; }
#dp-tweaks .dpt-label { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--on-dark-mut); margin-bottom: 9px; }
#dp-tweaks .dpt-swatches { display: flex; gap: 9px; }
#dp-tweaks .dpt-sw { width: 34px; height: 34px; border-radius: 50%; border: 2px solid transparent; cursor: pointer; outline: 1px solid rgba(244,235,221,0.18); outline-offset: 1px; transition: transform .2s; }
#dp-tweaks .dpt-sw:hover { transform: scale(1.08); }
#dp-tweaks .dpt-sw.on { border-color: #fff; }
#dp-tweaks .dpt-seg { display: flex; gap: 6px; }
#dp-tweaks .dpt-segbtn { flex: 1; padding: 8px 6px; border-radius: 7px; border: 1px solid rgba(244,235,221,0.18); background: transparent; color: var(--on-dark); font-size: 0.82rem; font-weight: 600; cursor: pointer; transition: background .2s, color .2s, border-color .2s; }
#dp-tweaks .dpt-segbtn:hover { border-color: rgba(244,235,221,0.4); }
#dp-tweaks .dpt-segbtn.on { background: var(--accent); border-color: var(--accent); color: #fff; }
#dp-tweaks .dpt-foot { padding: 10px 14px 13px; font-size: 0.72rem; color: var(--on-dark-mut); border-top: 1px solid rgba(244,235,221,0.1); }

/* =========================================================
   MOBIELE VERFIJNINGEN (telefoon-proof)
   ========================================================= */
/* "Wie zijn wij" twee-koloms blok op over-ons */
.about-cols { grid-template-columns: 0.85fr 1.15fr; }
@media (max-width: 820px){ .about-cols { grid-template-columns: 1fr; } }
.about-portrait img { width: 100%; height: auto; border-radius: var(--r); }

/* Algemene tablet/telefoon polish */
@media (max-width: 760px){
  body { font-size: 16px; }
  /* iets meer ademruimte rond de pagina-randen */
  :root { --gutter: 20px; }
  /* hero leest prettiger op smal scherm */
  .hero { min-height: 88vh; }
  .hero__inner { padding-top: 104px; }
  .hero__row { gap: 20px; }
  .hero__actions { width: 100%; }
  .hero__actions .btn { width: 100%; justify-content: center; }
  /* knoppen vullen de breedte zodat ze makkelijk te tikken zijn */
  .cta .btn, .section .btn--lg { width: 100%; justify-content: center; }
  /* sectie-koppen netjes onder elkaar */
  .sec-head { flex-direction: column; align-items: flex-start; gap: 14px; }
  .sec-head .measure { max-width: none; }
}

/* Heel kleine schermen */
@media (max-width: 420px){
  .metastrip { grid-template-columns: 1fr 1fr; }
  .filterbar { gap: 8px; }
  .filter { font-size: 0.8rem; padding: 9px 14px; }
  /* contactkaarten niet te krap */
  .contact-card { padding: 20px; }
}

/* Voorkom horizontaal scrollen door te brede media */
img, video, iframe { max-width: 100%; }
.proj__media, .m-item, .masonry figure { max-width: 100%; }

/* Grotere, makkelijk tikbare nav-links in het mobiele menu */
@media (max-width: 860px){
  .nav-links a { padding-block: 6px; }
  .nav-links .btn { width: 100%; justify-content: center; margin-top: 6px; }
}


