/* ==========================================================================
   Vink & Klomp Consultancy — Design System
   ========================================================================== */

:root {
  /* Colors */
  --navy-950: #0a1220;
  --navy-900: #0e1a2e;
  --navy-800: #132540;
  --navy-700: #1a3155;
  --navy-600: #24406c;
  --navy-500: #33507f;

  --cream: #f6f5f2;
  --tint: #f1f0ec;
  --white: #ffffff;
  --ink: #1a2130;
  --gray-700: #414a5a;
  --gray-500: #63697a;
  --gray-300: #a7adb8;
  --border: #e2ddd0;
  --border-dark: #26385c;

  /* Type */
  --font-display: "Manrope", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --measure: 640px;

  /* Layout */
  --max-width: 1320px;
  --space-1: 0.5rem;
  --space-2: 1rem;
  --space-3: 1.5rem;
  --space-4: 2.5rem;
  --space-5: 4rem;
  --space-6: 5.5rem;
  --space-7: 9.5rem;

  --radius: 2px;
  --shadow-soft: 0 20px 50px -25px rgba(10, 18, 32, 0.25);
}

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

html { scroll-behavior: smooth; font-size: 90%; }

body {
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

ul { list-style: none; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.015em;
  color: var(--navy-950);
}

h1 { font-size: clamp(2.6rem, 5.2vw, 4.6rem); font-weight: 600; }
h2 { font-size: clamp(2rem, 3.4vw, 3rem); font-weight: 600; }
h3 { font-size: 1.3rem; font-weight: 600; letter-spacing: -0.01em; }
h4 { font-size: 1.05rem; font-weight: 700; }

p { color: var(--gray-700); }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-4);
}

section { padding: var(--space-6) 0; }

@media (max-width: 720px) {
  :root { --space-6: 4.5rem; }
  .container { padding: 0 var(--space-3); }
}

/* ---------- Reveal-on-scroll ----------
   Visible by default. JS opts elements into the hidden "pre-reveal" state
   only once it can guarantee they'll be revealed again, so content can
   never get stuck invisible if a script fails or is disabled. */
.reveal {
  transition: opacity 0.8s cubic-bezier(.2,.7,.3,1), transform 0.8s cubic-bezier(.2,.7,.3,1);
}
.reveal.pre-reveal { opacity: 0; transform: translateY(28px); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .reveal.pre-reveal { opacity: 1; transform: none; transition: none; }
}

/* ---------- Label / eyebrow ---------- */
.label {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-sans);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gray-500);
  margin-bottom: var(--space-2);
}
.label.on-dark { color: var(--gray-500); }
#diensten .editorial-text > .label { font-size: 0.94rem; }
.statement-dark .label,
.cta-band .label,
.site-footer .label { color: rgba(255,255,255,0.6); }
.label.label-lg {
  font-size: 1.2rem;
  letter-spacing: 0.04em;
  font-weight: 600;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 1.8rem;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  border-radius: var(--radius);
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.btn-outline-light,
.btn-outline-dark {
  background: transparent;
  border-color: var(--navy-900);
  color: var(--navy-900);
}
.btn-outline-light:hover,
.btn-outline-dark:hover {
  background: var(--navy-900);
  color: var(--white);
  border-color: var(--navy-900);
}

.btn-primary {
  background: var(--navy-900);
  border-color: var(--navy-900);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--navy-700);
  border-color: var(--navy-700);
}

.btn-phone {
  background: transparent;
  border-color: var(--border);
  color: var(--navy-900);
}
.btn-phone:hover {
  background: var(--cream);
  border-color: var(--navy-500);
}
.btn-phone svg { width: 16px; height: 16px; flex-shrink: 0; }

.btn-text {
  color: var(--navy-900);
  font-weight: 600;
  font-size: 0.92rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  border-bottom: 1px solid var(--navy-500);
  padding-bottom: 2px;
  transition: gap 0.2s ease;
}
.btn-text:hover { color: var(--gray-500); gap: 0.6rem; }
.btn-text.on-dark { color: var(--white); border-color: rgba(255,255,255,0.4); }
.btn-text.on-dark:hover { color: var(--gray-300); }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--navy-900);
  transition: box-shadow 0.25s ease;
}
.site-header.scrolled { box-shadow: 0 8px 30px -20px rgba(10,18,32,0.35); }

.emergency-bar { background: var(--navy-700); color: var(--white); }
.emergency-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-2);
  padding: 0.7rem 0;
}
.emergency-bar-text { display: inline-flex; align-items: center; gap: 0.55rem; font-size: 0.92rem; color: rgba(255, 255, 255, 0.9); }
.emergency-bar-text svg { width: 16px; height: 16px; flex-shrink: 0; }
.emergency-bar-phone { color: rgba(255, 255, 255, 0.85); font-weight: 600; letter-spacing: 0.01em; text-decoration: none; }
.emergency-bar-phone:hover { text-decoration: underline; }
@media (max-width: 560px) {
  .emergency-bar-inner { justify-content: center; text-align: center; }
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 88px;
}

.logo {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.85rem;
  line-height: 1;
  flex-shrink: 0;
}
.logo .logo-mark {
  width: 30px;
  height: 37px;
  flex-shrink: 0;
  color: var(--white);
}
.logo .logo-mark svg,
.logo .logo-mark img { width: 100%; height: 100%; display: block; object-fit: contain; }
.logo .logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.logo .logo-main {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.01em;
}
.logo .logo-main span { color: rgba(255, 255, 255, 0.55); }
.logo .logo-sub {
  font-family: var(--font-sans);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 4px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  flex-shrink: 0;
}

.nav-links {
  display: flex;
  gap: 1rem;
}

.nav-links > li { position: relative; }

/* Only shown inside the collapsed (hamburger) menu, where the header CTA is hidden. */
.nav-item--cta { display: none; }

.nav-links a.nav-link {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.84rem;
  font-weight: 500;
  padding: 0.5rem 0;
  display: inline-block;
  border-bottom: 1px solid transparent;
  transition: all 0.2s ease;
}
.nav-links a.nav-link:hover,
.nav-links a.nav-link.active {
  color: var(--white);
  border-color: var(--white);
}

.nav-cta { display: flex; align-items: center; gap: var(--space-3); }
.nav-cta .btn { padding: 0.7rem 1rem; font-size: 0.82rem; }
@media (min-width: 1341px) {
  .nav-item--home { display: none; }
  /* The four services are four small filled squares, set apart from the other links (no outlines) */
  .nav-links { gap: 0; align-items: center; }
  .nav-links > li { margin-left: 0.6rem; }
  .nav-links > li.nav-item--service { margin-left: 2px; }
  .nav-links > li.nav-item--home + li.nav-item--service { margin-left: 0.6rem; }
  .nav-links .nav-item--service a.nav-link {
    padding: 0.55rem 0.6rem;
    border: 0;
    background: rgba(255, 255, 255, 0.07);
    transition: background 0.2s ease, color 0.2s ease;
  }
  .nav-links .nav-item--service a.nav-link:hover { background: rgba(255, 255, 255, 0.14); }
  .nav-links .nav-item--service a.nav-link.active { background: rgba(255, 255, 255, 0.2); }
}
.site-header .btn-outline-light { border-color: rgba(255, 255, 255, 0.5); color: var(--white); }
.site-header .btn-outline-light:hover { background: var(--white); color: var(--navy-950); border-color: var(--white); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span { width: 24px; height: 2px; background: var(--white); display: block; }

@media (max-width: 1340px) {
  .nav-links, .nav-cta .btn-outline-light { display: none; }
  .nav-toggle { display: flex; }

  .main-nav.open .nav-links {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 88px;
    left: 0;
    right: 0;
    background: var(--navy-900);
    padding: var(--space-3);
    gap: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    max-height: calc(100vh - 88px);
    max-height: calc(100dvh - 88px);
    overflow-y: auto;
  }
  .main-nav.open .nav-links > li { border-bottom: 1px solid rgba(255, 255, 255, 0.12); }
  .main-nav.open .nav-links > li.nav-item--cta {
    display: block;
    border-bottom: 0;
    padding-top: var(--space-3);
  }
  .main-nav.open .nav-item--cta .btn { display: block; width: 100%; text-align: center; }
  .main-nav.open .nav-links a.nav-link { padding: 1rem 0.2rem; width: 100%; }
}

/* ---------- Media / photography component ---------- */
/* Consistent, replaceable image containers: swap the <img src> only. */
.media {
  position: relative;
  overflow: hidden;
  background: var(--navy-900);
  display: block;
}
.media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: grayscale(1) contrast(1.08) brightness(0.98);
}
.media--wide { aspect-ratio: 16 / 9; }
.media--panorama { aspect-ratio: 21 / 9; }
.media--tall { aspect-ratio: 4 / 5; }
.media--classic { aspect-ratio: 4 / 3; }
.media--square { aspect-ratio: 1 / 1; }

.full-bleed {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background: var(--white);
  color: var(--ink);
  overflow: hidden;
  padding: var(--space-6) 0 var(--space-6);
  border-bottom: 1px solid var(--border);
}

.hero-content {
  position: relative;
  max-width: 720px;
}

.hero h1 { color: var(--navy-950); margin-bottom: var(--space-3); }
.hero .lede {
  font-size: 1.15rem;
  color: var(--gray-700);
  max-width: var(--measure);
  margin-bottom: var(--space-4);
}

.hero-actions { display: flex; gap: var(--space-2); flex-wrap: wrap; }

.hero.small { padding: var(--space-5) 0 3.5rem; }
.hero.small .hero-content { max-width: 800px; }

.hero-dark {
  background: var(--navy-900);
  color: var(--white);
  border-bottom: none;
}
.hero-dark h1 { color: var(--white); }
.mission-statement {
  font-size: clamp(1.5rem, 2.6vw, 2.1rem);
  line-height: 1.4;
  font-weight: 600;
}
.hero-dark .lede { color: rgba(255, 255, 255, 0.78); }
.hero-dark .breadcrumb { color: rgba(255, 255, 255, 0.5); }
.hero-dark .breadcrumb a { color: rgba(255, 255, 255, 0.78); }
.hero-dark .breadcrumb a:hover { color: var(--white); }
.hero-dark .label.on-dark { color: rgba(255, 255, 255, 0.65); }

/* Photography-led homepage hero */
.hero-photo {
  background: var(--white);
  padding: 0;
}
.hero-photo .hero-content { max-width: 760px; margin-bottom: var(--space-5); }
.hero-photo h1 { margin-bottom: var(--space-3); }
.hero-photo .lede { font-size: 1.02rem; margin-bottom: var(--space-5); }

/* Cinematic hero: grayscale photo under a dark navy layer, then three pillars. */
.hero-cinematic {
  position: relative;
  isolation: isolate;
  background: var(--navy-900);
  color: var(--white);
  overflow: hidden;
  padding: var(--space-6) 0 var(--space-5);
}
.hero-cinematic-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 0% center; /* keeps the figure right of the text column */
  filter: grayscale(1);
  z-index: -2;
}
/* Darkest behind the text (left), lighter where the photo's subject stands. */
.hero-cinematic::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(10, 18, 32, 0.94) 0%, rgba(10, 18, 32, 0.82) 50%, rgba(10, 18, 32, 0.6) 100%),
    linear-gradient(180deg, rgba(10, 18, 32, 0) 60%, rgba(10, 18, 32, 0.85) 100%);
  z-index: -1;
}
.hero-cinematic-inner { max-width: 760px; }
.hero-cinematic .hero-brand {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2vw, 1.6rem);
  font-weight: 700;
  letter-spacing: -0.01em;
  text-transform: none;
  color: var(--white);
  margin-bottom: var(--space-3);
}
.hero-cinematic h1 {
  color: var(--white);
  font-size: clamp(2.2rem, 4.2vw, 3.6rem);
  margin-bottom: var(--space-3);
}
.hero-cinematic .lede {
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.02rem;
  max-width: var(--measure);
  margin-bottom: var(--space-4);
}
.hero-cinematic .btn-primary { background: var(--white); border-color: var(--white); color: var(--navy-950); }
.hero-cinematic .btn-primary:hover { background: var(--cream); border-color: var(--cream); }
.hero-cinematic .btn-phone { border-color: rgba(255, 255, 255, 0.5); color: var(--white); }
.hero-cinematic .btn-phone:hover { background: rgba(255, 255, 255, 0.12); border-color: var(--white); }
.hero-cinematic .btn-outline-light { border-color: rgba(255, 255, 255, 0.55); color: var(--white); }
.hero-cinematic .btn-outline-light:hover { background: var(--white); border-color: var(--white); color: var(--navy-950); }

@media (max-width: 720px) {
  .hero-cinematic { padding: var(--space-5) 0 var(--space-4); }
  .hero-cinematic-photo { object-position: 50% center; }
}
.hero-photo .hero-media {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
}
.hero-photo .hero-media .media { border-radius: 0; }
.hero-photo .hero-media .media--panorama { aspect-ratio: 21 / 9; }
@media (max-width: 720px) {
  .hero-photo .hero-media .media--panorama { aspect-ratio: 4 / 5; }
}

.hero-photo .hero-media .media--panorama img {
  transform: scale(1.12);
  will-change: transform;
}
@media (prefers-reduced-motion: reduce) {
  .hero-photo .hero-media .media--panorama img { transform: none; }
}

/* ---------- Section headers ---------- */
.section-head { max-width: 640px; margin-bottom: var(--space-5); }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head p { font-size: 1.05rem; margin-top: var(--space-2); max-width: var(--measure); }
.section-head.center p { margin-left: auto; margin-right: auto; }

/* ---------- Intro statement ---------- */
.section-divider {
  position: relative;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-4);
}
.section-divider::before {
  content: "";
  display: block;
  height: 1px;
  background: var(--border);
}
.section-divider-icon {
  position: absolute;
  right: 12%;
  top: 0;
  transform: translateY(-50%);
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 1px solid var(--navy-500);
  background: var(--white);
}
.section-divider-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--navy-900);
  transform: translate(-50%, -50%);
}
@media (max-width: 720px) {
  .section-divider-icon { right: 6%; }
}

/* Intro: statement + text on the left, a portrait on the right that dissolves
   into the page (multiply makes the photo's white background transparent). */
.intro-editorial { background: var(--white); }
.intro-grid {
  display: grid;
  grid-template-columns: 7fr 5fr;
  gap: var(--space-5);
  align-items: center;
}
.intro-copy { max-width: 700px; }
.intro-editorial .statement {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3vw, 2.6rem);
  font-weight: 600;
  color: var(--navy-950);
  line-height: 1.25;
  letter-spacing: -0.015em;
}
.intro-editorial .support {
  margin-top: var(--space-4);
  padding-top: var(--space-4);
  border-top: 1px solid var(--border);
  font-size: 1.05rem;
}
.intro-editorial .support p { max-width: 58ch; margin-bottom: var(--space-2); }
.intro-editorial .support p:last-child { margin-bottom: 0; }
.intro-figure img {
  width: 100%;
  height: auto;
  max-height: 640px;
  object-fit: contain;
  mix-blend-mode: multiply;
  filter: grayscale(1) contrast(1.08);
}
/* Approach band: the dark opening beat right after the hero, with a
   heading, two lede paragraphs and a row of short, bordered approach cards. */
.approach-band { background: #f3f3f4; padding: var(--space-6) 0; }
.approach-heading {
  display: flex;
  flex-direction: column;
  gap: 0.2em;
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.5rem);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.015em;
  margin-bottom: var(--space-3);
}
.approach-heading .line-strong { color: var(--navy-950); }
.approach-heading .line-soft { color: var(--gray-500); }
.approach-lede { max-width: 68ch; font-size: 1.1rem; color: var(--gray-700); margin-bottom: var(--space-3); }
.approach-lede:last-of-type { margin-bottom: var(--space-4); }
.approach-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-3); }
.approach-card {
  background: var(--navy-900);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius);
  padding: var(--space-3);
}
.approach-card h3 { color: var(--white); font-size: 1.15rem; margin-bottom: var(--space-1); }
.approach-card p { color: rgba(255, 255, 255, 0.75); font-size: 0.98rem; margin-bottom: 0; }
.approach-cta { display: inline-block; margin-top: var(--space-4); }
@media (max-width: 860px) {
  .approach-cards { grid-template-columns: 1fr; }
}
@media (max-width: 860px) {
  .intro-grid { grid-template-columns: 1fr; gap: var(--space-4); }
  .intro-figure { max-width: 320px; margin: 0 auto; }
}

/* ---------- About: single editorial panel ---------- */
.about-panel {
  position: relative;
  max-width: 980px;
  margin: 0 auto;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 6px;
  box-shadow: 0 30px 60px -42px rgba(10, 18, 32, 0.16);
  padding: var(--space-5);
}
.about-panel-content { max-width: 560px; }
.about-panel-content .label {
  font-size: clamp(1.6rem, 2.6vw, 2.1rem);
  line-height: 1.25;
  letter-spacing: -0.01em;
  text-transform: none;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--navy-950);
  margin-bottom: var(--space-3);
}
.about-panel-content p + p { margin-top: var(--space-3); }

@media (max-width: 720px) {
  .about-panel { padding: var(--space-4) var(--space-3); }
}

/* ---------- Service cards (compact overview use) ---------- */
.service-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-3);
}
.service-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 860px) { .service-grid.cols-3 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 720px) { .service-grid { grid-template-columns: 1fr; } }

.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: var(--space-4);
  transition: border-color 0.2s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.service-card:hover {
  border-color: var(--navy-500);
}
.service-card .icon {
  width: 26px; height: 26px;
  color: var(--navy-900);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: var(--space-3);
}
.service-card .num {
  font-family: var(--font-display);
  color: var(--border);
  font-size: 2.4rem;
  position: absolute;
  top: var(--space-3);
  right: var(--space-3);
}
.service-card { position: relative; }
.service-card h3 { margin-bottom: 0.6rem; }
.service-card p { font-size: 0.95rem; flex: 1; }
.service-card .card-link { margin-top: var(--space-2); font-size: 0.88rem; }

/* ---------- Services: three cinematic bands ---------- */
.services {
  background: var(--tint);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.bands { display: grid; gap: var(--space-2); }
.band {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: flex;
  align-items: center;
  min-height: 440px;
  padding: var(--space-5);
  background: var(--navy-900);
  color: var(--white);
  border-radius: var(--radius);
}
.band:nth-child(2) { min-height: 380px; }
.band-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: var(--focus, center);
  filter: grayscale(1);
  z-index: -2;
}
/* Darkest behind the text, lighter on the photo's side. */
.band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(10, 18, 32, 0.94) 0%, rgba(10, 18, 32, 0.82) 45%, rgba(10, 18, 32, 0.5) 100%);
  z-index: -1;
}
.band--right { justify-content: flex-end; }
.band--right::before { background: linear-gradient(270deg, rgba(10, 18, 32, 0.94) 0%, rgba(10, 18, 32, 0.82) 45%, rgba(10, 18, 32, 0.5) 100%); }
.band-inner { max-width: 560px; }
.band .label { color: rgba(255, 255, 255, 0.72); }
.band h3 { color: var(--white); font-size: clamp(1.6rem, 2.6vw, 2.3rem); margin-bottom: var(--space-2); }
.band-text { color: rgba(255, 255, 255, 0.85); font-size: 1.02rem; max-width: 52ch; }
.band-tags { display: flex; flex-wrap: wrap; gap: 0.55rem; margin: var(--space-3) 0 var(--space-4); }
.band-tags a {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 500;
  padding: 0.4rem 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 30px;
  color: var(--white);
  transition: background 0.18s ease, color 0.18s ease, border-color 0.18s ease;
}
.band-tags a:hover,
.band-tags a:focus-visible { background: var(--white); border-color: var(--white); color: var(--navy-950); }
.band-tags a:focus-visible { outline: 2px solid var(--white); outline-offset: 2px; }
@media (max-width: 720px) {
  .band, .band:nth-child(2) { min-height: 0; padding: var(--space-4) var(--space-3); }
  .band--right { justify-content: flex-start; }
  .band::before, .band--right::before { background: rgba(10, 18, 32, 0.84); }
}


/* ---------- Tinted section (subtle band) ---------- */


/* ---------- Dark statement section ---------- */
.statement-dark {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: flex;
  align-items: center;
  min-height: 460px;
  background: var(--navy-900);
  color: var(--white);
}
.statement-dark > .container { width: 100%; }
.statement-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 20%;
  filter: grayscale(1);
  z-index: -2;
}
/* Darkest in the middle where the text sits, lighter at the edges so the
   two silhouettes stay visible. */
.statement-dark::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(10, 18, 32, 0.6) 0%, rgba(10, 18, 32, 0.9) 30%, rgba(10, 18, 32, 0.9) 70%, rgba(10, 18, 32, 0.6) 100%);
  z-index: -1;
}
@media (max-width: 720px) {
  .statement-dark { min-height: 0; }
  .statement-dark::before { background: rgba(10, 18, 32, 0.86); }
}
.statement-dark .statement-inner { max-width: 920px; margin: 0 auto; text-align: center; }
.statement-dark .quote-text {
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 3vw, 2.55rem);
  font-weight: 600;
  line-height: 1.35;
  color: var(--white);
  letter-spacing: -0.015em;
}
.statement-dark .quote-attr {
  margin-top: var(--space-4);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
}

/* ---------- Split layout ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-5);
  align-items: center;
}
@media (max-width: 860px) { .split { grid-template-columns: 1fr; gap: var(--space-4); } }
.split.reverse .split-media { order: 2; }

/* ---------- Legal pages (privacy / voorwaarden / cookies) ---------- */
.legal-content { max-width: 760px; margin: 0 auto; }
.legal-content .disclaimer {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: var(--space-3);
  font-size: 0.88rem;
  color: var(--gray-700);
  margin-bottom: var(--space-5);
}
.legal-content .updated { color: var(--gray-500); font-size: 0.85rem; margin-bottom: var(--space-4); }
.legal-content h2 { font-size: 1.3rem; margin-top: var(--space-5); margin-bottom: var(--space-2); }
.legal-content h2:first-of-type { margin-top: 0; }
.legal-content p { margin-bottom: var(--space-2); }
.legal-content ul { margin: var(--space-2) 0 var(--space-3) 1.2rem; }
.legal-content li { margin-bottom: 0.4rem; color: var(--gray-700); }
.legal-content a { color: var(--navy-900); text-decoration: underline; }

.media-frame {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--cream);
  border: 1px solid var(--border);
}
.media-frame-wrap { position: relative; }
.media-frame-wrap .frame-border {
  position: absolute;
  top: 14px; left: 14px;
  width: 100%; height: 100%;
  border: 1px solid var(--navy-500);
  border-radius: var(--radius);
  z-index: -1;
}

.checklist { margin-top: var(--space-3); display: flex; flex-direction: column; gap: 0.9rem; }
.checklist li { display: flex; align-items: flex-start; gap: 0.8rem; font-size: 0.96rem; color: var(--gray-700); }
.checklist .tick {
  flex-shrink: 0;
  width: 18px; height: 18px;
  border-radius: 50%;
  border: 1px solid var(--navy-500);
  color: var(--navy-900);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.65rem;
  margin-top: 2px;
}

/* ---------- Quote / testimonial (light, inline use) ---------- */
.quote-block {
  border-left: 2px solid var(--navy-500);
  padding-left: var(--space-4);
}
.quote-block p.quote-text {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--navy-950);
  line-height: 1.45;
  letter-spacing: -0.01em;
}
.quote-block .quote-attr {
  margin-top: var(--space-2);
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--gray-500);
}

/* ---------- CTA band ---------- */
.cta-band {
  background: var(--navy-900);
  color: var(--white);
  padding: var(--space-6) var(--space-5);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  flex-wrap: wrap;
}
.cta-band h2 { color: var(--white); margin-bottom: 0.5rem; font-size: clamp(1.8rem, 3vw, 2.6rem); }
.cta-band p { color: rgba(255,255,255,0.7); max-width: 480px; }
.cta-band .btn-outline-light { border-color: rgba(255,255,255,0.5); color: var(--white); }
.cta-band .btn-outline-light:hover { background: var(--white); color: var(--navy-950); border-color: var(--white); }
@media (max-width: 720px) { .cta-band { padding: var(--space-5) var(--space-3); } }

/* ---------- Logos strip ---------- */
.trust-strip {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: var(--space-3) 0;
}
.trust-strip .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-3);
}
.trust-strip .trust-label {
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-500);
  font-weight: 600;
}
.trust-badges { display: flex; gap: var(--space-4); flex-wrap: wrap; }
.trust-badges span {
  font-size: 0.85rem;
  color: var(--gray-500);
  font-weight: 600;
  letter-spacing: 0.03em;
}

/* ---------- Team ---------- */
.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-3);
  max-width: 640px;
  margin: 0 auto;
}
@media (max-width: 560px) { .team-grid { grid-template-columns: 1fr; } }

.team-card .photo {
  aspect-ratio: 3/3.4;
  border-radius: var(--radius);
  background: var(--cream);
  border: 1px solid var(--border);
  margin-bottom: var(--space-2);
  overflow: hidden;
}
.team-card .photo img { width: 100%; height: 100%; object-fit: cover; display: block; filter: grayscale(1) contrast(1.08) brightness(0.98); }
.team-card h4 { margin-bottom: 0.15rem; }
.team-card .role { font-size: 0.85rem; color: var(--gray-500); font-weight: 600; }

/* ---------- Forms ---------- */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-3); }
@media (max-width: 640px) { .form-grid { grid-template-columns: 1fr; } }
.form-field { display: flex; flex-direction: column; gap: 0.5rem; }
.form-field.full { grid-column: 1 / -1; }
.form-field label { font-size: 0.85rem; font-weight: 600; color: var(--navy-900); }
.form-field input, .form-field select, .form-field textarea {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.85rem 1rem;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  background: var(--cream);
  color: var(--ink);
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  outline: none;
  border-color: var(--navy-500);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(51, 80, 127, 0.25);
}
.form-note { font-size: 0.8rem; color: var(--gray-500); margin-top: var(--space-2); }
.form-consent {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  margin-top: var(--space-3);
  font-size: 0.85rem;
  color: var(--gray-700);
}
.form-consent input[type="checkbox"] { margin-top: 0.2rem; flex-shrink: 0; width: 16px; height: 16px; }
.form-consent a { color: var(--navy-900); text-decoration: underline; }

.contact-info-card {
  background: var(--cream);
  border: 1px solid var(--border);
  color: var(--ink);
  border-radius: var(--radius);
  padding: var(--space-4);
}
.contact-info-card h4 { color: var(--navy-900); margin-bottom: 0.3rem; font-size: 0.8rem; letter-spacing: 0.1em; text-transform: uppercase; }
.contact-info-card .info-item { padding: var(--space-2) 0; border-bottom: 1px solid var(--border); }
.contact-info-card .info-item:last-child { border-bottom: none; }
.contact-info-card .info-item .k { font-size: 0.8rem; color: var(--gray-500); }
.contact-info-card .info-item .v { font-size: 1rem; margin-top: 0.2rem; color: var(--navy-950); }

/* ---------- Breadcrumb ---------- */
.breadcrumb {
  font-size: 0.82rem;
  color: var(--gray-500);
  display: flex;
  gap: 0.5rem;
  margin-bottom: var(--space-3);
}
.breadcrumb a:hover { color: var(--navy-950); }

/* ---------- Related services ---------- */
.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-3);
}
@media (max-width: 860px) { .related-grid { grid-template-columns: 1fr; } }
.related-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: var(--space-3);
  transition: all 0.2s ease;
}
.related-card:hover { border-color: var(--navy-500); background: var(--cream); }
.related-card .label { margin-bottom: 0.8rem; }

/* ---------- Blog ---------- */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-3);
}
@media (max-width: 860px) { .blog-grid { grid-template-columns: 1fr; } }
.blog-card {
  display: block;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: var(--space-3);
  transition: all 0.2s ease;
}
.blog-card:hover { border-color: var(--navy-500); background: var(--cream); }
.blog-card .date {
  display: block;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-500);
  margin-bottom: 0.8rem;
}
.blog-card h3 { font-size: 1.1rem; margin-bottom: 0.6rem; }
.blog-card p { font-size: 0.92rem; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--navy-900);
  color: rgba(255,255,255,0.75);
  padding: var(--space-5) 0 var(--space-3);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: var(--space-4);
  padding-bottom: var(--space-5);
  border-bottom: 1px solid var(--border-dark);
}
@media (max-width: 860px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; }
}
.footer-brand .logo { margin-bottom: var(--space-2); }
.footer-brand .logo .logo-mark { color: var(--white); }
.footer-brand .logo .logo-main { color: var(--white); }
.footer-brand .logo .logo-main span { color: var(--gray-300); }
.footer-brand .logo-main { font-size: 1.25rem; }
.footer-brand .tagline {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.75);
  margin-bottom: var(--space-2);
}
.footer-brand p { font-size: 0.9rem; max-width: 260px; color: rgba(255, 255, 255, 0.75); }
.footer-col h4 {
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: var(--space-2);
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.6rem; font-size: 0.92rem; }
.footer-col a { font-size: 0.92rem; }
.footer-col a:hover { color: var(--white); text-decoration: underline; }
.footer-service-group { margin-top: var(--space-3); }
.footer-service-group:first-of-type { margin-top: var(--space-2); }
.footer-service-title {
  display: block;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 0.5rem;
  font-size: 0.92rem;
}
.footer-service-group ul li a { font-size: 0.85rem; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: var(--space-3);
  font-size: 0.82rem;
  flex-wrap: wrap;
  gap: var(--space-2);
}
.footer-bottom .legal-links { display: flex; gap: var(--space-3); }
.social-links { display: flex; gap: var(--space-2); }
.social-links a {
  width: 34px; height: 34px;
  border: 1px solid var(--border-dark);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.2s ease;
}
.social-links a:hover { border-color: var(--white); color: var(--white); }

/* ---------- Utility ---------- */
.mt-1 { margin-top: var(--space-1); }
.mt-2 { margin-top: var(--space-2); }
.mt-3 { margin-top: var(--space-3); }
.mt-4 { margin-top: var(--space-4); }
.mb-2 { margin-bottom: var(--space-2); }
.text-center { text-align: center; }

/* ---------- Service pages ---------- */
.hero-cinematic--page { padding: var(--space-5) 0 var(--space-5); }
.hero-cinematic--page .hero-cinematic-photo {
  object-position: var(--focus, 50% 40%);
  transform: scale(var(--zoom, 1));
  transform-origin: var(--focus, 50% 40%);
}
.hero-cinematic .breadcrumb { color: rgba(255, 255, 255, 0.55); margin-bottom: var(--space-3); flex-wrap: wrap; }
.hero-cinematic .breadcrumb a { color: rgba(255, 255, 255, 0.8); }
.hero-cinematic .breadcrumb a:hover { color: var(--white); }
.hero-cinematic--page h1 { margin-bottom: var(--space-3); }

.crop { position: relative; overflow: hidden; border-radius: var(--radius); background: var(--navy-900); }
.crop img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: var(--focus, 50% 50%);
  transform: scale(var(--zoom, 1));
  transform-origin: var(--focus, 50% 50%);
  filter: grayscale(1) contrast(1.08) brightness(0.98);
}
.intro-figure .crop { aspect-ratio: 5 / 4; }
.intro-figure .crop img { mix-blend-mode: normal; max-height: none; }
.intro-editorial h2 {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3vw, 2.6rem);
  font-weight: 600;
  color: var(--navy-950);
  line-height: 1.25;
  letter-spacing: -0.015em;
}
.intro-editorial .label { margin-bottom: var(--space-2); }
.intro-editorial .intro-copy h2 ~ p { font-size: 1.05rem; max-width: 58ch; }
.intro-editorial .intro-copy h2 + p { margin-top: var(--space-3); }
.intro-editorial .intro-copy p + p { margin-top: var(--space-2); }

/* Overview: each service as a photo tile; the text appears on hover or focus */
.svc-section { background: var(--tint); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.svc-tiles { display: flex; flex-wrap: wrap; justify-content: center; gap: var(--space-2); }
.svc-tile {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  flex: 0 0 calc((100% - 2 * var(--space-2)) / 3);
  min-height: 460px;
  padding: var(--space-4);
  background: var(--navy-900);
  color: var(--white);
  border-radius: var(--radius);
}
.svc-tile-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: var(--focus, 50% 50%);
  transform: scale(var(--zoom, 1));
  transform-origin: var(--focus, 50% 50%);
  filter: grayscale(1);
  transition: transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: -3;
}
.svc-tile::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background: linear-gradient(180deg, rgba(10, 18, 32, 0.25) 0%, rgba(10, 18, 32, 0.55) 45%, rgba(10, 18, 32, 0.92) 100%);
}
/* An extra dark layer makes the revealed text easy to read */
.svc-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(10, 18, 32, 0.55);
  opacity: 0;
  transition: opacity 0.45s ease;
}
.svc-tile:hover .svc-tile-photo,
.svc-tile:focus .svc-tile-photo { transform: scale(calc(var(--zoom, 1) * 1.05)); }
.svc-tile:hover::after,
.svc-tile:focus::after { opacity: 1; }
.svc-tile:focus-visible { outline: 2px solid var(--navy-500); outline-offset: 3px; }
.svc-tile-body { width: 100%; max-width: 560px; }
.svc-tile h3 { color: var(--white); font-size: clamp(1.35rem, 2vw, 1.75rem); }
.svc-tile-text {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.55s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease, margin-top 0.4s ease;
}
.svc-tile:hover .svc-tile-text,
.svc-tile:focus .svc-tile-text { max-height: 380px; opacity: 1; margin-top: var(--space-2); }
.svc-tile-text p { color: rgba(255, 255, 255, 0.9); font-size: 0.95rem; }
.svc-tile-text ul { margin-top: var(--space-2); display: grid; gap: 0.3rem; font-size: 0.88rem; color: rgba(255, 255, 255, 0.85); }
.svc-tile-text li { position: relative; padding-left: 1.1rem; }
.svc-tile-text li::before { content: ""; position: absolute; left: 0; top: 0.62em; width: 6px; height: 1px; background: rgba(255, 255, 255, 0.7); }
/* Plus mark: the tile has more to show */
.svc-tile-plus {
  position: absolute;
  top: var(--space-3);
  right: var(--space-3);
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 50%;
  transition: transform 0.35s ease, background 0.3s ease, border-color 0.3s ease;
}
.svc-tile-plus::before,
.svc-tile-plus::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 12px;
  height: 1.5px;
  background: var(--white);
  transform: translate(-50%, -50%);
  transition: background 0.3s ease;
}
.svc-tile-plus::after { transform: translate(-50%, -50%) rotate(90deg); }
.svc-tile:hover .svc-tile-plus,
.svc-tile:focus .svc-tile-plus { transform: rotate(45deg); background: var(--white); border-color: var(--white); }
.svc-tile:hover .svc-tile-plus::before, .svc-tile:hover .svc-tile-plus::after,
.svc-tile:focus .svc-tile-plus::before, .svc-tile:focus .svc-tile-plus::after { background: var(--navy-900); }
@media (max-width: 1100px) {
  .svc-tile { flex-basis: calc((100% - var(--space-2)) / 2); min-height: 440px; }
}
@media (max-width: 640px) {
  .svc-tile { flex-basis: 100%; padding: var(--space-3); }
}
/* No hover on touch screens: show the text right away */
@media (hover: none) {
  .svc-tile { min-height: 0; padding-top: 12rem; }
  .svc-tile-text { max-height: none; opacity: 1; margin-top: var(--space-2); }
  .svc-tile::after { opacity: 1; }
  .svc-tile-plus { display: none; }
}
@media (prefers-reduced-motion: reduce) {
  .svc-tile-photo, .svc-tile::after, .svc-tile-text, .svc-tile-plus { transition: none; }
  .svc-tile:hover .svc-tile-photo, .svc-tile:focus .svc-tile-photo { transform: scale(var(--zoom, 1)); }
}

/* Closing block with photo */
.cta-photo {
  position: relative; isolation: isolate; overflow: hidden;
  display: flex; align-items: center;
  min-height: 380px;
  background: var(--navy-900); color: var(--white);
  border-radius: var(--radius);
  padding: var(--space-5);
}
.cta-photo-mark {
  position: absolute;
  right: -0.06em;
  bottom: -0.32em;
  font-family: var(--font-display);
  font-size: 26rem;
  font-weight: 700;
  line-height: 1;
  color: rgba(255, 255, 255, 0.05);
  z-index: 0;
  pointer-events: none;
  user-select: none;
}
.cta-photo > div { position: relative; z-index: 1; }
.cta-photo h2 { color: var(--white); font-size: clamp(1.6rem, 2.8vw, 2.4rem); margin-bottom: var(--space-2); }
.cta-photo p { color: rgba(255, 255, 255, 0.85); max-width: 46ch; margin-bottom: var(--space-3); }
.cta-photo .btn-primary { background: var(--white); border-color: var(--white); color: var(--navy-950); }
.cta-photo .btn-primary:hover { background: var(--cream); border-color: var(--cream); }
.cta-photo .btn-phone { border-color: rgba(255, 255, 255, 0.5); color: var(--white); }
.cta-photo .btn-phone:hover { background: rgba(255, 255, 255, 0.12); border-color: var(--white); }

@media (max-width: 720px) {
  .cta-photo { min-height: 0; padding: var(--space-4) var(--space-3); }
}


.band-text + .btn-text { display: inline-block; margin-top: var(--space-3); }

/* Homepage hero over the full screen height, text low in the picture */
.hero-cinematic--full {
  display: flex;
  align-items: flex-end;
  min-height: calc(100vh - 88px);
  min-height: calc(100svh - 88px);
  padding: var(--space-6) 0;
}
.hero-cinematic--full > .container { width: 100%; }
@media (max-width: 720px) {
  .hero-cinematic--full { padding: var(--space-5) 0; }
}

/* Over ons: two-column editorial layout, no photos */
.about-hero { padding: var(--space-6) 0 var(--space-7); }
.about-grid { display: grid; grid-template-columns: 5fr 7fr; gap: var(--space-6); align-items: start; }
.about-intro { position: sticky; top: 120px; }
.about-intro h1 { font-size: clamp(2rem, 3.4vw, 2.8rem); letter-spacing: -0.015em; margin-bottom: var(--space-3); }
.about-intro .lede { font-size: 1.1rem; color: var(--gray-700); max-width: 42ch; margin-bottom: var(--space-4); }
.about-principle { padding: var(--space-4) 0; border-top: 1px solid var(--border); }
.about-principle:first-child { border-top: none; padding-top: 0; }
.about-principle h2 { font-size: 1.3rem; margin-bottom: var(--space-2); }
.about-principle p { color: var(--gray-700); max-width: 60ch; }
@media (max-width: 860px) {
  .about-grid { grid-template-columns: 1fr; gap: var(--space-4); }
  .about-intro { position: static; }
}
