:root {
  --bg-deep: #050508;
  --bg: #080a10;
  --surface: #0f1118;
  --surface-2: #161a24;
  /* Zilver voor tekst, randen, secundair */
  --silver-bright: #eef2f8;
  --silver-high: #d8dee9;
  --silver-mid: #b4bcc9;
  --silver-low: #8b96a8;
  --silver-dim: #5c6678;
  --border-silver: rgba(200, 210, 225, 0.14);
  --border-silver-strong: rgba(200, 210, 225, 0.22);
  /* Goud alleen voor hoofdaccenten */
  --gold: #d4af37;
  --gold-light: #f3e8bc;
  --gold-dark: #8a6e1f;
  --border-gold-soft: rgba(212, 175, 55, 0.28);
  --text: var(--silver-high);
  --muted: var(--silver-low);
  --border: var(--border-silver);
  --purple-glow: rgba(90, 70, 140, 0.22);
  --purple-deep: rgba(35, 28, 55, 0.55);
  --font: "Plus Jakarta Sans", system-ui, sans-serif;
  --font-display: "Syne", var(--font);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

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

@media (min-width: 1100px) {
  html {
    font-size: 118%;
  }
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font);
  background: var(--bg-deep);
  color: var(--text);
  line-height: 1.7;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse 85% 55% at 50% -15%, var(--purple-glow), transparent),
    radial-gradient(ellipse 55% 40% at 100% 40%, rgba(180, 188, 201, 0.04), transparent),
    radial-gradient(ellipse 50% 35% at 0% 85%, var(--purple-deep), transparent);
  pointer-events: none;
  z-index: -1;
}

/* Sitewide “living” layer (injected vóór header via components.js) */
.living-bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.living-bg__grid {
  position: absolute;
  inset: -50%;
  z-index: 0;
  width: 200%;
  height: 200%;
  background-image:
    linear-gradient(rgba(120, 132, 155, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(120, 132, 155, 0.035) 1px, transparent 1px);
  background-size: 48px 48px;
  transform-origin: center;
  animation: living-grid-pan 110s linear infinite;
}

.living-bg__drift {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: radial-gradient(ellipse 120% 80% at 28% 22%, rgba(212, 175, 55, 0.04), transparent 46%),
    radial-gradient(ellipse 95% 72% at 82% 88%, rgba(45, 48, 62, 0.12), transparent 52%);
  animation: living-drift 36s ease-in-out infinite alternate;
}

/* Subtiele diepte — zakelijk: zilver/goud, geen neon */
.living-bg__nodes {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    radial-gradient(circle at 20% 25%, rgba(200, 210, 225, 0.04) 0%, transparent 45%),
    radial-gradient(circle at 85% 75%, rgba(212, 175, 55, 0.045) 0%, transparent 40%),
    radial-gradient(circle at 50% 50%, rgba(70, 75, 95, 0.05) 0%, transparent 58%);
  animation: living-nodes-pulse 22s ease-in-out infinite alternate;
  pointer-events: none;
}

.living-bg__shimmer {
  position: absolute;
  inset: 0;
  z-index: 3;
  opacity: 0.18;
  background: linear-gradient(
    118deg,
    transparent 42%,
    rgba(230, 236, 248, 0.03) 49%,
    rgba(212, 175, 55, 0.04) 50%,
    rgba(230, 236, 248, 0.03) 51%,
    transparent 58%
  );
  background-size: 200% 200%;
  animation: living-shimmer 32s ease-in-out infinite;
  pointer-events: none;
  mix-blend-mode: soft-light;
}

@keyframes living-nodes-pulse {
  0% {
    opacity: 0.88;
    transform: scale(1);
  }
  100% {
    opacity: 1;
    transform: scale(1.012);
  }
}

@keyframes living-shimmer {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 100% 50%;
  }
}

@keyframes living-grid-pan {
  0% {
    transform: translate(0, 0) rotate(0deg);
  }
  100% {
    transform: translate(-2%, -1.5%) rotate(0.2deg);
  }
}

@keyframes living-drift {
  0% {
    opacity: 0.9;
    transform: scale(1) translate(0, 0);
  }
  100% {
    opacity: 1;
    transform: scale(1.015) translate(-0.6%, 0.4%);
  }
}

/* Header altijd boven main — anders verdwijnt nav/logo achter de homepage-hero */
#app-header {
  position: relative;
  z-index: 200;
}

#app-footer,
body > main {
  position: relative;
  z-index: 1;
}

@media (prefers-reduced-motion: reduce) {
  .video-hero__dragon {
    display: none;
  }

  .video-hero__dragon-hit {
    display: none;
  }

  #grovyx-hero-dragon > svg {
    animation: none !important;
  }

  .living-bg__grid,
  .living-bg__drift,
  .living-bg__nodes,
  .living-bg__shimmer {
    animation: none;
  }

  .living-bg__drift {
    opacity: 0.9;
    transform: none;
  }

  .living-bg__shimmer {
    opacity: 0.15;
  }

  .teaser-card {
    animation: none;
  }

  .teaser-card::before {
    display: none;
  }

  .page-home .media-showcase::before {
    animation: none;
  }

  .site-header::after {
    animation: none;
    opacity: 0.35;
  }

  .photo-frame::after {
    animation: none;
  }
}

a {
  color: var(--silver-mid);
  text-decoration: none;
}

a:hover {
  color: var(--gold-light);
  text-decoration: underline;
}

.wrap {
  width: min(1380px, 94vw);
  margin-inline: auto;
}

/* —— Header —— */
.site-header {
  padding: 1.1rem 0;
  border-bottom: 1px solid var(--border-silver);
  background: rgba(6, 5, 8, 0.88);
  backdrop-filter: blur(12px);
  position: sticky;
  top: 0;
  z-index: 100;
}

.site-header::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(180, 190, 205, 0.2),
    rgba(212, 175, 55, 0.35),
    rgba(180, 190, 205, 0.2),
    transparent
  );
  background-size: 200% 100%;
  animation: header-edge-flow 28s linear infinite;
  opacity: 0.4;
  pointer-events: none;
}

@keyframes header-edge-flow {
  0% {
    background-position: 0% 0;
  }
  100% {
    background-position: 240% 0;
  }
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  position: relative;
}

.header-logo-img {
  height: 52px;
  width: auto;
  display: block;
  object-fit: contain;
}

.nav {
  display: flex;
  align-items: center;
  gap: 0.5rem 1.35rem;
  flex-wrap: wrap;
}

.nav a {
  color: var(--silver-mid);
  font-weight: 500;
  font-size: 1.02rem;
}

.nav a:hover {
  color: var(--silver-bright);
  text-decoration: none;
}

.nav__toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--border-silver-strong);
  color: var(--silver-high);
  padding: 0.45rem 0.65rem;
  border-radius: 8px;
  cursor: pointer;
  font-size: 1rem;
}

@media (max-width: 860px) {
  .nav__toggle {
    display: block;
  }

  .nav {
    position: absolute;
    right: 0;
    top: calc(100% + 0.35rem);
    flex-direction: column;
    align-items: stretch;
    padding: 1rem;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 12px;
    min-width: 200px;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.45);
    display: none;
  }

  .nav.is-open {
    display: flex;
  }
}

/* —— Typography helpers —— */
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.82rem;
  font-weight: 700;
  background: linear-gradient(90deg, var(--gold-light), var(--gold), var(--gold-dark));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin: 0 0 1rem;
}

h1,
h2,
h3 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.15;
}

.section-title {
  font-size: clamp(2rem, 4.2vw, 3rem);
  margin: 0 0 0.65rem;
  font-weight: 800;
  background: linear-gradient(165deg, var(--silver-bright) 0%, var(--silver-mid) 45%, var(--silver-dim) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.section-title--gold {
  background: linear-gradient(135deg, #fff8e0 0%, var(--gold) 45%, var(--gold-dark) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.section-lead {
  color: var(--silver-low);
  max-width: 58ch;
  margin: 0 0 2.25rem;
  font-size: 1.2rem;
}

.section {
  padding: clamp(3.5rem, 9vw, 6.5rem) 0;
  position: relative;
}

.section--tight-top {
  padding-top: clamp(2rem, 5vw, 3rem);
}

/* —— Hero —— */
.hero {
  padding: clamp(2.5rem, 6vw, 4rem) 0 clamp(3rem, 8vw, 5rem);
  overflow: hidden;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

@media (max-width: 900px) {
  .hero__grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero__copy .btn-row {
    justify-content: center;
  }

  .hero__visual {
    order: -1;
  }
}

.hero__visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero__logo {
  width: min(100%, 420px);
  height: auto;
  filter: drop-shadow(0 8px 40px rgba(212, 175, 55, 0.25)) drop-shadow(0 0 60px rgba(100, 50, 180, 0.2));
}

.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  margin: 0 0 1rem;
  max-width: 20ch;
  background: linear-gradient(165deg, var(--silver-bright) 0%, var(--silver-mid) 50%, var(--silver-dim) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

@media (max-width: 900px) {
  .hero h1 {
    max-width: none;
    margin-inline: auto;
  }
}

.hero__lead {
  color: var(--silver-low);
  font-size: 1.2rem;
  max-width: 48ch;
  margin: 0 0 1.75rem;
}

@media (max-width: 900px) {
  .hero__lead {
    margin-inline: auto;
  }
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.65rem;
  border-radius: 12px;
  font-weight: 600;
  font-size: 1.05rem;
  border: 1px solid transparent;
  transition: transform 0.15s, box-shadow 0.2s, background 0.15s, border-color 0.15s;
}

.btn:active {
  transform: scale(0.98);
}

.btn--primary {
  background: linear-gradient(145deg, var(--gold-light), var(--gold) 40%, var(--gold-dark));
  color: #1a1204;
  box-shadow: 0 4px 24px rgba(212, 175, 55, 0.35);
}

.btn--primary:hover {
  box-shadow: 0 6px 32px rgba(212, 175, 55, 0.45);
  text-decoration: none;
}

.btn--ghost {
  border-color: var(--border-silver-strong);
  color: var(--silver-high);
  background: rgba(255, 255, 255, 0.04);
}

.btn--ghost:hover {
  border-color: var(--border-gold-soft);
  color: var(--gold-light);
  background: rgba(212, 175, 55, 0.07);
  text-decoration: none;
}

/* —— Pills / lists —— */
.pill-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.25rem;
}

.pill {
  font-size: 0.92rem;
  padding: 0.45rem 0.95rem;
  border-radius: 999px;
  border: 1px solid var(--border-silver);
  color: var(--silver-mid);
  background: rgba(255, 255, 255, 0.04);
}

/* —— Cards grids —— */
.cards__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.card {
  background: linear-gradient(165deg, rgba(22, 26, 36, 0.95), var(--surface));
  border: 1px solid var(--border-silver);
  border-radius: 20px;
  padding: 2rem 2rem 1.75rem;
  position: relative;
  overflow: hidden;
}

.card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.85;
}

.card h3 {
  margin: 0 0 0.65rem;
  font-size: 1.35rem;
  color: var(--silver-bright);
}

.card p {
  margin: 0;
  color: var(--silver-low);
  font-size: 1.05rem;
}

.card__link {
  display: inline-block;
  margin-top: 1.15rem;
  font-weight: 600;
  font-size: 0.98rem;
  color: var(--silver-mid);
}

.card__link:hover {
  color: var(--gold-light);
}

.card--soon .card__badge {
  display: inline-block;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.2rem 0.5rem;
  border-radius: 6px;
  background: rgba(212, 175, 55, 0.2);
  color: var(--gold-light);
  margin-bottom: 0.5rem;
}

/* —— Feature list —— */
.feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.75rem;
  max-width: 640px;
}

.feature-list li {
  padding-left: 1.5rem;
  position: relative;
  color: var(--silver-low);
  font-size: 1.08rem;
}

.feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-light), var(--gold-dark));
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

/* —— Split band —— */
.band {
  background: linear-gradient(180deg, rgba(22, 26, 34, 0.92), rgba(10, 12, 18, 0.96));
  border-block: 1px solid var(--border-silver);
}

.band__inner {
  padding: clamp(2.5rem, 6vw, 3.5rem) 0;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}

@media (max-width: 768px) {
  .split {
    grid-template-columns: 1fr;
  }
}

/* —— Footer —— */
.site-footer {
  border-top: 1px solid var(--border-silver);
  padding: 2.25rem 0;
  color: var(--silver-dim);
  font-size: 0.95rem;
}

.site-footer a {
  color: var(--silver-mid);
}

.site-footer a:hover {
  color: var(--gold-light);
}

.footer__grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
}

/* —— Contact page —— */
.page-main {
  padding: 2.5rem 0 4rem;
}

.page-main h1 {
  margin-top: 0;
  font-family: var(--font-display);
  background: linear-gradient(135deg, #fff8e0, var(--gold));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.contact-box {
  background: var(--surface);
  border: 1px solid var(--border-silver);
  border-radius: 20px;
  padding: 2.25rem;
  max-width: 640px;
}

.contact-box ul {
  margin: 0;
  padding-left: 1.2rem;
  color: var(--silver-low);
  font-size: 1.08rem;
}

.muted {
  color: var(--silver-dim);
  font-size: 1.02rem;
}

/* —— Anchor offset for sticky header —— */
section[id] {
  scroll-margin-top: 5rem;
}

/* —— Nav: actieve pagina + hamburger —— */
.nav__link.nav__link--active {
  color: var(--gold-light);
  font-weight: 700;
  text-shadow: 0 0 28px rgba(212, 175, 55, 0.25);
}

.nav__cta {
  padding: 0.55rem 1.25rem;
  border-radius: 999px;
  border: 1px solid var(--border-silver-strong);
  background: rgba(255, 255, 255, 0.05);
  color: var(--silver-bright) !important;
  font-weight: 600;
  font-size: 1.02rem;
}

.nav__cta:hover {
  border-color: var(--gold);
  color: var(--gold-light) !important;
  text-decoration: none;
}

.nav__cta--active {
  border-color: var(--gold);
  color: var(--gold-light) !important;
  box-shadow: 0 0 24px rgba(212, 175, 55, 0.18);
}

.header-brand {
  display: flex;
  align-items: center;
}

.nav__toggle-bar {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--silver-mid);
  margin: 5px 0;
  border-radius: 1px;
}

@media (max-width: 860px) {
  .nav__toggle {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
  }
}

/* —— Homepage: header over video —— */
.page-home #app-header .site-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: rgba(6, 6, 10, 0.78);
  border-bottom: 1px solid var(--border-silver);
  backdrop-filter: blur(14px);
}

.page-home #app-header .site-header__inner {
  position: relative;
}

/* —— Hero (home): effen achtergrond, geen video —— */
/* Voor wit: --hero-media-bg: #ffffff (let op: hero-tekstkleuren moeten dan donker). */
.video-hero {
  --hero-media-bg: #000000;
  position: relative;
  min-height: min(100vh, 1080px);
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  justify-content: center;
  width: 100%;
  padding: clamp(7rem, 20vh, 11rem) 0 clamp(3.5rem, 9vh, 6rem);
  padding-inline: clamp(1.25rem, 4vw, 3.25rem);
  overflow: hidden;
}

.video-hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: var(--hero-media-bg);
}

/* GifHaas-dragon + trail-canvas; element-thema’s lucht / vuur / water / aarde */
.video-hero__dragon {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  display: block;
  pointer-events: none;
}

.video-hero__dragon-trail {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  display: block;
  pointer-events: none;
}

/* Klikvlak rechts in hero: wisselt element (media zit onder content-blok aan onderkant) */
.video-hero__dragon-hit {
  position: absolute;
  top: 0;
  right: 0;
  width: min(52%, 620px);
  height: min(82vh, 780px);
  z-index: 5;
  margin: 0;
  padding: 0;
  border: 0;
  cursor: pointer;
  background: transparent;
  color: transparent;
  -webkit-tap-highlight-color: transparent;
}

.video-hero__dragon-hit:focus-visible {
  outline: 2px solid rgba(212, 175, 55, 0.55);
  outline-offset: 2px;
}

.video-hero__dragon > svg {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  transform: translateZ(0);
  will-change: filter, opacity;
}

/* Lucht — helder, wolkachtig */
#grovyx-hero-dragon[data-element="air"] > svg,
#grovyx-hero-dragon:not([data-element]) > svg {
  opacity: 0.88;
  animation: dragon-theme-air 12s ease-in-out infinite;
}

@keyframes dragon-theme-air {
  0%,
  100% {
    filter: brightness(1.02) sepia(0.12) saturate(0.42) hue-rotate(0deg) contrast(1.05);
    opacity: 0.82;
  }
  50% {
    filter: brightness(1.14) sepia(0.08) saturate(0.52) hue-rotate(195deg) contrast(1.06);
    opacity: 0.93;
  }
}

/* Vuur — sterk zichtbaar, pulse */
#grovyx-hero-dragon[data-element="fire"] > svg {
  opacity: 0.94;
  animation: dragon-theme-fire 1.05s ease-in-out infinite;
}

@keyframes dragon-theme-fire {
  0%,
  100% {
    filter: brightness(1.12) sepia(0.58) saturate(1.95) hue-rotate(-12deg) contrast(1.1);
  }
  35% {
    filter: brightness(1.32) sepia(0.68) saturate(2.35) hue-rotate(-24deg) contrast(1.14);
  }
  72% {
    filter: brightness(1.02) sepia(0.5) saturate(1.65) hue-rotate(-4deg) contrast(1.07);
  }
}

/* Water — koel, levendig */
#grovyx-hero-dragon[data-element="water"] > svg {
  opacity: 0.9;
  animation: dragon-theme-water 2.4s ease-in-out infinite;
}

@keyframes dragon-theme-water {
  0%,
  100% {
    filter: brightness(1) sepia(0.38) saturate(1.35) hue-rotate(165deg) contrast(1.06);
    opacity: 0.84;
  }
  50% {
    filter: brightness(1.14) sepia(0.3) saturate(1.48) hue-rotate(178deg) contrast(1.09);
    opacity: 0.94;
  }
}

/* Aarde — warm groen-bruin */
#grovyx-hero-dragon[data-element="earth"] > svg {
  opacity: 0.9;
  animation: dragon-theme-earth 5s ease-in-out infinite;
}

@keyframes dragon-theme-earth {
  0%,
  100% {
    filter: brightness(0.94) sepia(0.52) saturate(0.82) hue-rotate(48deg) contrast(1.06);
  }
  50% {
    filter: brightness(1.06) sepia(0.58) saturate(0.95) hue-rotate(38deg) contrast(1.09);
  }
}

.video-hero__fallback {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: var(--hero-media-bg);
}

.video-hero__fallback::before {
  display: none;
}

.video-hero__fallback .video-hero__orb {
  display: none;
}

.video-hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(64px);
  opacity: 0.38;
  animation: orb-float 18s ease-in-out infinite;
  pointer-events: none;
}

.video-hero__orb--1 {
  width: min(55vw, 420px);
  height: min(55vw, 420px);
  background: radial-gradient(circle, rgba(212, 175, 55, 0.14), transparent 72%);
  top: 10%;
  left: -10%;
  animation-delay: 0s;
}

.video-hero__orb--2 {
  width: min(45vw, 360px);
  height: min(45vw, 360px);
  background: radial-gradient(circle, rgba(130, 138, 158, 0.18), transparent 72%);
  bottom: 15%;
  right: -5%;
  animation-delay: -4s;
}

.video-hero__orb--3 {
  width: min(35vw, 280px);
  height: min(35vw, 280px);
  background: radial-gradient(circle, rgba(180, 188, 205, 0.12), transparent 70%);
  top: 40%;
  right: 25%;
  animation-delay: -7s;
}

@keyframes orb-float {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(4%, -3%) scale(1.05);
  }
}

.video-hero__scrim {
  position: absolute;
  inset: 0;
  z-index: 3;
  background: linear-gradient(
    180deg,
    rgba(6, 7, 11, 0.35) 0%,
    rgba(6, 7, 11, 0.45) 42%,
    rgba(5, 6, 10, 0.62) 68%,
    rgba(5, 5, 8, 0.88) 90%,
    var(--bg-deep) 100%
  );
  pointer-events: none;
}

.video-hero__content {
  position: relative;
  z-index: 4;
  width: min(1100px, 100%);
  max-width: min(1100px, 96vw);
  margin: 0 auto;
  text-align: center;
}

@media (min-width: 960px) {
  .video-hero__content {
    width: min(1040px, 94vw);
    max-width: min(1040px, 94vw);
    margin-left: auto;
    margin-right: auto;
  }
}

.video-hero__content > .eyebrow,
.video-hero__content > .video-hero__kicker,
.video-hero__content > h1,
.video-hero__content > .video-hero__lead {
  text-shadow:
    0 2px 28px rgba(0, 0, 0, 0.92),
    0 0 48px rgba(4, 6, 12, 0.75);
}

.video-hero__kicker {
  margin: 0.35rem auto 1rem;
  font-size: clamp(0.98rem, 1.6vw, 1.12rem);
  font-weight: 500;
  color: rgba(230, 236, 248, 0.88);
  letter-spacing: 0.01em;
  line-height: 1.45;
  max-width: 62ch;
}

.video-hero__content h1 {
  display: block;
  width: 100%;
  max-width: none;
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5.5vw, 4.35rem);
  line-height: 1.07;
  margin: 0 auto 1.15rem;
  background: linear-gradient(135deg, #fff 0%, var(--gold-light) 38%, var(--gold) 72%, var(--gold-dark) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 4px 32px rgba(0, 0, 0, 0.45));
}

.video-hero__lead {
  color: rgba(248, 250, 255, 0.94);
  font-size: clamp(1.12rem, 2.05vw, 1.38rem);
  line-height: 1.58;
  letter-spacing: 0.01em;
  max-width: min(68ch, 100%);
  margin: 0 auto 1.75rem;
  text-shadow:
    0 2px 28px rgba(0, 0, 0, 0.92),
    0 0 48px rgba(4, 6, 12, 0.75);
}

.video-hero__services {
  margin: 1.25rem auto 0;
  padding-top: 1.1rem;
  border-top: 1px solid rgba(200, 210, 225, 0.14);
  font-size: clamp(0.82rem, 1.35vw, 0.95rem);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(200, 210, 225, 0.72);
  line-height: 1.6;
  max-width: 100%;
  text-align: center;
}

.video-hero__services__sep {
  margin: 0 0.45em;
  color: rgba(212, 175, 55, 0.55);
  font-weight: 400;
}

.video-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  filter: drop-shadow(0 4px 24px rgba(0, 0, 0, 0.65));
}

.video-hero__content .pill-grid {
  margin-top: 1.35rem;
  justify-content: center;
  filter: drop-shadow(0 3px 20px rgba(0, 0, 0, 0.55));
}

/* Teaser cards onder hero */
.teaser-section {
  padding: clamp(4rem, 9vw, 6.5rem) 0 clamp(4.5rem, 11vw, 7.5rem);
  background: radial-gradient(ellipse 85% 55% at 50% 0%, rgba(212, 175, 55, 0.045), transparent 58%);
}

.page-home .teaser-section {
  position: relative;
  border-bottom: 1px solid rgba(200, 210, 225, 0.08);
}

.page-home .teaser-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(720px, 92vw);
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(212, 175, 55, 0.38),
    rgba(200, 210, 225, 0.22),
    transparent
  );
  pointer-events: none;
}

.teaser-section .wrap > .eyebrow {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 1.1rem;
}

.teaser-section .section-title {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 1rem;
  max-width: 22ch;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

/* Rechte, rustige titel (geen Syne — voorkomt “schuin” gevoel) */
.teaser-section .section-title--upright {
  font-family: var(--font);
  font-style: normal;
  font-weight: 800;
  font-synthesis: none;
  letter-spacing: -0.035em;
  max-width: min(20ch, 92vw);
}

.teaser-section .section-lead {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 1.35rem;
  max-width: min(52rem, 92vw);
  font-size: clamp(1.08rem, 1.45vw, 1.3rem);
  line-height: 1.68;
  color: rgba(184, 192, 208, 0.96);
}

.teaser-section .section-lead strong {
  color: rgba(236, 240, 248, 0.98);
  font-weight: 700;
}

.teaser-powers {
  list-style: none;
  margin: 0 auto clamp(2.25rem, 4.5vw, 3.25rem);
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.55rem 0.65rem;
  max-width: min(44rem, 94vw);
}

.teaser-powers li {
  margin: 0;
  padding: 0.45rem 0.95rem;
  font-size: 0.86rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(210, 218, 232, 0.95);
  border-radius: 999px;
  border: 1px solid rgba(200, 210, 225, 0.22);
  background: linear-gradient(165deg, rgba(28, 32, 44, 0.92), rgba(14, 16, 24, 0.88));
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.35), 0 4px 18px rgba(0, 0, 0, 0.25);
  transition: border-color 0.2s ease, color 0.2s ease, transform 0.2s ease, box-shadow 0.25s ease;
}

.teaser-powers li:hover {
  border-color: rgba(212, 175, 55, 0.35);
  color: var(--silver-bright);
  transform: translateY(-2px);
  box-shadow:
    0 0 0 1px rgba(212, 175, 55, 0.12),
    0 8px 24px rgba(0, 0, 0, 0.35);
}

.teaser-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
  gap: clamp(1.35rem, 2.5vw, 2.25rem);
}

.teaser-card {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  padding: clamp(2rem, 3vw, 2.5rem);
  padding-top: calc(clamp(2rem, 3vw, 2.5rem) + 4px);
  border-radius: 22px;
  border: 1px solid var(--border-silver);
  background: linear-gradient(168deg, rgba(24, 28, 38, 0.98), rgba(12, 14, 20, 0.99));
  color: inherit;
  text-decoration: none;
  transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.35s ease;
  animation: card-ambient 28s ease-in-out infinite;
}

.teaser-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 1.25rem;
  right: 1.25rem;
  height: 3px;
  border-radius: 0 0 6px 6px;
  background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.45), transparent);
  opacity: 0.55;
  pointer-events: none;
}

.teaser-card::before {
  content: "";
  position: absolute;
  inset: -45% -70%;
  background: linear-gradient(
    108deg,
    transparent 38%,
    rgba(212, 175, 55, 0.07) 48%,
    rgba(230, 236, 248, 0.05) 52%,
    transparent 62%
  );
  opacity: 0;
  transform: translateX(-42%) skewX(-4deg);
  transition: opacity 0.35s ease;
  pointer-events: none;
}

.teaser-card:hover::before {
  opacity: 1;
  animation: teaser-card-sheen 2.6s ease-in-out infinite;
}

@keyframes teaser-card-sheen {
  0% {
    transform: translateX(-48%) skewX(-4deg);
  }
  100% {
    transform: translateX(48%) skewX(-4deg);
  }
}

.teaser-card:nth-child(2) {
  animation-delay: -5s;
}

.teaser-card:nth-child(3) {
  animation-delay: -10s;
}

@keyframes card-ambient {
  0%,
  100% {
    box-shadow: 0 0 0 rgba(212, 175, 55, 0);
  }
  50% {
    box-shadow: 0 0 28px rgba(212, 175, 55, 0.025);
  }
}

.teaser-card:hover {
  transform: translateY(-5px);
  border-color: rgba(212, 175, 55, 0.32);
  box-shadow:
    0 24px 56px rgba(0, 0, 0, 0.45),
    0 0 0 1px rgba(212, 175, 55, 0.06);
  text-decoration: none;
}

.teaser-card h2 {
  margin: 0 0 0.5rem;
  font-size: clamp(1.42rem, 2.2vw, 1.62rem);
  font-family: var(--font);
  font-style: normal;
  font-weight: 800;
  color: var(--silver-bright);
  letter-spacing: -0.03em;
}

.teaser-card__hook {
  margin: 0 0 0.65rem;
  font-size: clamp(0.95rem, 1.15vw, 1.05rem);
  font-weight: 600;
  line-height: 1.45;
  color: rgba(200, 208, 222, 0.98);
}

.teaser-card p:not(.teaser-card__hook) {
  margin: 0;
  flex: 1;
  color: rgba(176, 184, 200, 0.95);
  font-size: clamp(1.02rem, 1.2vw, 1.1rem);
  line-height: 1.62;
}

.teaser-card__more {
  display: block;
  margin-top: auto;
  padding-top: 1rem;
  font-weight: 600;
  font-size: 0.98rem;
  letter-spacing: 0.02em;
  color: var(--silver-mid);
  border-top: 1px solid rgba(200, 210, 225, 0.1);
  width: 100%;
}

.teaser-card:hover .teaser-card__more {
  color: var(--gold-light);
}

/* Teaser: Diensten / Over ons / Projecten — elk een eigen accent */
.teaser-card--diensten {
  border-color: rgba(212, 175, 55, 0.34);
  background:
    radial-gradient(ellipse 120% 80% at 50% -20%, rgba(212, 175, 55, 0.12), transparent 55%),
    linear-gradient(168deg, rgba(36, 30, 22, 0.99), rgba(16, 12, 8, 0.99));
  animation-name: teaser-ambient-gold;
}

.teaser-card--diensten::after {
  background: linear-gradient(90deg, transparent, rgba(255, 220, 140, 0.65), rgba(212, 175, 55, 0.85), rgba(255, 220, 140, 0.65), transparent);
  opacity: 0.75;
}

.teaser-card--diensten::before {
  background: linear-gradient(
    108deg,
    transparent 38%,
    rgba(212, 175, 55, 0.14) 48%,
    rgba(255, 248, 220, 0.07) 52%,
    transparent 62%
  );
}

.teaser-card--diensten:hover {
  border-color: rgba(230, 195, 95, 0.48);
  box-shadow:
    0 24px 56px rgba(0, 0, 0, 0.45),
    0 0 0 1px rgba(212, 175, 55, 0.1),
    0 0 40px rgba(212, 175, 55, 0.1);
}

.teaser-card--over-ons {
  border-color: rgba(118, 152, 218, 0.38);
  background:
    radial-gradient(ellipse 120% 80% at 50% -20%, rgba(118, 152, 218, 0.14), transparent 55%),
    linear-gradient(168deg, rgba(24, 28, 44, 0.99), rgba(10, 12, 24, 0.99));
  animation-name: teaser-ambient-blue;
}

.teaser-card--over-ons::after {
  background: linear-gradient(90deg, transparent, rgba(170, 200, 255, 0.55), rgba(118, 152, 218, 0.9), rgba(170, 200, 255, 0.55), transparent);
  opacity: 0.72;
}

.teaser-card--over-ons::before {
  background: linear-gradient(
    108deg,
    transparent 38%,
    rgba(118, 152, 218, 0.14) 48%,
    rgba(190, 210, 255, 0.07) 52%,
    transparent 62%
  );
}

.teaser-card--over-ons:hover {
  border-color: rgba(150, 180, 245, 0.48);
  box-shadow:
    0 24px 56px rgba(0, 0, 0, 0.45),
    0 0 0 1px rgba(118, 152, 218, 0.12),
    0 0 42px rgba(90, 120, 200, 0.14);
}

.teaser-card--over-ons:hover .teaser-card__more {
  color: #d4e2ff;
}

.teaser-card--projecten {
  border-color: rgba(64, 188, 178, 0.36);
  background:
    radial-gradient(ellipse 120% 80% at 50% -20%, rgba(64, 188, 178, 0.13), transparent 55%),
    linear-gradient(168deg, rgba(18, 34, 36, 0.99), rgba(8, 16, 20, 0.99));
  animation-name: teaser-ambient-teal;
}

.teaser-card--projecten::after {
  background: linear-gradient(90deg, transparent, rgba(140, 235, 225, 0.5), rgba(64, 188, 178, 0.9), rgba(140, 235, 225, 0.5), transparent);
  opacity: 0.72;
}

.teaser-card--projecten::before {
  background: linear-gradient(
    108deg,
    transparent 38%,
    rgba(64, 188, 178, 0.13) 48%,
    rgba(160, 235, 228, 0.07) 52%,
    transparent 62%
  );
}

.teaser-card--projecten:hover {
  border-color: rgba(95, 215, 200, 0.48);
  box-shadow:
    0 24px 56px rgba(0, 0, 0, 0.45),
    0 0 0 1px rgba(64, 188, 178, 0.1),
    0 0 40px rgba(50, 175, 165, 0.14);
}

.teaser-card--projecten:hover .teaser-card__more {
  color: #a8f0e8;
}

@keyframes teaser-ambient-gold {
  0%,
  100% {
    box-shadow: 0 0 0 rgba(212, 175, 55, 0);
  }
  50% {
    box-shadow: 0 0 38px rgba(212, 175, 55, 0.1);
  }
}

@keyframes teaser-ambient-blue {
  0%,
  100% {
    box-shadow: 0 0 0 rgba(118, 152, 218, 0);
  }
  50% {
    box-shadow: 0 0 40px rgba(118, 152, 218, 0.12);
  }
}

@keyframes teaser-ambient-teal {
  0%,
  100% {
    box-shadow: 0 0 0 rgba(64, 188, 178, 0);
  }
  50% {
    box-shadow: 0 0 38px rgba(64, 188, 178, 0.11);
  }
}

/* —— Binnenpagina’s: compacte hero —— */
.page-inner .page-main {
  padding-top: clamp(5.5rem, 12vw, 7rem);
}

.page-hero {
  margin-bottom: 2.5rem;
}

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.35rem, 5.5vw, 3.85rem);
  margin: 0 0 1rem;
  line-height: 1.08;
  background: linear-gradient(135deg, #fff8e0, var(--gold-light) 35%, var(--gold) 70%, var(--gold-dark) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.page-hero__lead {
  color: var(--silver-low);
  font-size: 1.22rem;
  max-width: 54ch;
  margin: 0;
}

.content-block {
  margin-bottom: 2.75rem;
}

.content-block h2 {
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 2.5vw, 1.85rem);
  color: var(--silver-bright);
  margin: 0 0 0.85rem;
}

.content-block p {
  color: var(--silver-low);
  font-size: 1.08rem;
  margin: 0 0 1rem;
}

/* —— Footer uitgebreid —— */
.site-footer--extended {
  padding: 2.5rem 0 0;
}

.footer-columns {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--border-silver);
}

.footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-col li {
  margin-bottom: 0.45rem;
}

.footer-brand {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.45rem;
  letter-spacing: 0.08em;
  margin: 0 0 0.45rem;
  background: linear-gradient(165deg, var(--silver-bright), var(--silver-mid));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.footer-tagline {
  margin: 0;
  color: var(--silver-dim);
  font-size: 1rem;
}

.footer-heading {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--silver-mid);
  margin: 0 0 0.85rem;
}

.footer-meta {
  margin-top: 1rem;
  font-size: 0.88rem;
}

.footer-bottom {
  padding: 1.5rem 0;
  text-align: center;
  color: var(--silver-dim);
  font-size: 0.95rem;
}

.footer-bottom p {
  margin: 0;
}

/* —— Foto’s / visuele secties —— */
.media-showcase {
  position: relative;
  padding: clamp(3rem, 8vw, 5.5rem) 0;
  border-top: 1px solid var(--border-silver);
  border-bottom: 1px solid var(--border-silver);
  background: rgba(0, 0, 0, 0.2);
}

.page-home .media-showcase {
  padding: clamp(3.75rem, 9vw, 6.25rem) 0 clamp(4rem, 10vw, 6.5rem);
  border-top-color: rgba(200, 210, 225, 0.12);
  background:
    radial-gradient(ellipse 80% 48% at 50% 0%, rgba(212, 175, 55, 0.05), transparent 55%),
    radial-gradient(ellipse 60% 45% at 80% 100%, rgba(90, 100, 130, 0.06), transparent 50%),
    rgba(0, 0, 0, 0.32);
}

.page-home .media-showcase .wrap > .eyebrow,
.page-home .media-showcase .wrap > .section-title,
.page-home .media-showcase .wrap > .section-lead {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.page-home .media-showcase .wrap > .eyebrow {
  margin-bottom: 1rem;
}

.page-home .media-showcase .wrap > .section-title {
  margin-bottom: 0.95rem;
  max-width: 24ch;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.page-home .media-showcase .wrap > .section-lead {
  margin-bottom: clamp(2.5rem, 5vw, 3.5rem);
  max-width: min(48rem, 92vw);
  font-size: clamp(1.06rem, 1.42vw, 1.28rem);
  line-height: 1.68;
  color: rgba(184, 192, 208, 0.96);
}

/* Homepage: visuele sectie als twee horizontale “verhalen” i.p.v. twee gelijke tegels */
.page-home .visual-split {
  display: flex;
  flex-direction: column;
  gap: clamp(1.75rem, 4vw, 2.85rem);
  margin-top: clamp(2.25rem, 4vw, 3rem);
  max-width: min(72rem, 100%);
  margin-left: auto;
  margin-right: auto;
}

.page-home .visual-split__row {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  gap: clamp(1.25rem, 3vw, 2.5rem);
  align-items: center;
}

.page-home .visual-split__row + .visual-split__row {
  padding-top: clamp(1.35rem, 3vw, 2.1rem);
  border-top: 1px solid rgba(200, 210, 225, 0.09);
}

.page-home .visual-split__row--figure-end {
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
}

.page-home .visual-split__row--figure-end .visual-split__figure {
  order: 2;
}

.page-home .visual-split__row--figure-end .visual-split__body {
  order: 1;
  text-align: right;
  align-items: flex-end;
}

.page-home .visual-split__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.65rem;
  min-width: 0;
  text-align: left;
  align-items: flex-start;
}

.page-home .visual-split__label {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.72rem;
  font-weight: 700;
  background: linear-gradient(90deg, var(--gold-light), var(--gold), var(--gold-dark));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.page-home .visual-split__text {
  margin: 0;
  font-size: clamp(1.02rem, 1.35vw, 1.2rem);
  line-height: 1.58;
  color: rgba(175, 185, 205, 0.95);
  max-width: 36ch;
}

.page-home .visual-split__row--figure-end .visual-split__text {
  margin-left: auto;
}

.page-home .visual-split__figure {
  width: 100%;
  border-radius: 22px;
}

@media (max-width: 820px) {
  .page-home .visual-split__row,
  .page-home .visual-split__row--figure-end {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }

  .page-home .visual-split__row--figure-end .visual-split__figure {
    order: -1;
  }

  .page-home .visual-split__row--figure-end .visual-split__body,
  .page-home .visual-split__row--figure-start .visual-split__body {
    text-align: center;
    align-items: center;
  }

  .page-home .visual-split__text {
    max-width: 42ch;
  }

  .page-home .visual-split__row--figure-end .visual-split__text {
    margin-left: 0;
  }
}

.page-home .media-showcase::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 1;
  background:
    radial-gradient(ellipse 55% 45% at 14% 18%, rgba(212, 175, 55, 0.06), transparent 55%),
    radial-gradient(ellipse 50% 40% at 92% 78%, rgba(200, 210, 225, 0.045), transparent 50%),
    repeating-linear-gradient(
      -12deg,
      transparent,
      transparent 52px,
      rgba(120, 132, 155, 0.02) 52px,
      rgba(120, 132, 155, 0.02) 53px
    );
  animation: media-showcase-drift 42s ease-in-out infinite alternate;
}

.page-home .media-showcase .wrap {
  position: relative;
  z-index: 1;
}

@keyframes media-showcase-drift {
  0% {
    filter: hue-rotate(0deg);
    opacity: 0.92;
  }
  100% {
    filter: hue-rotate(6deg);
    opacity: 1;
  }
}

.photo-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(1rem, 2vw, 1.75rem);
  margin-top: 2rem;
}

@media (max-width: 768px) {
  .photo-grid {
    grid-template-columns: 1fr;
  }
}

.photo-frame {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--border-silver);
  aspect-ratio: 16 / 10;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
  transition: border-color 0.35s ease, box-shadow 0.45s ease;
}

.photo-frame:hover {
  border-color: rgba(212, 175, 55, 0.22);
  box-shadow:
    0 28px 72px rgba(0, 0, 0, 0.42),
    0 0 0 1px rgba(212, 175, 55, 0.08),
    0 0 48px rgba(212, 175, 55, 0.06);
}

.photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.photo-frame img.illus-svg,
.photo-frame .illus-svg {
  object-fit: contain;
  object-position: center;
  padding: clamp(0.75rem, 2vw, 1.5rem);
  background: radial-gradient(ellipse 80% 70% at 50% 40%, rgba(22, 26, 36, 0.95), rgba(8, 10, 16, 0.98));
}

.photo-frame:hover img {
  transform: scale(1.04);
}

.photo-frame:hover img.illus-svg,
.photo-frame:hover .illus-svg {
  transform: scale(1.02);
}

.photo-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(212, 175, 55, 0.12);
  pointer-events: none;
  animation: photo-frame-edge 10s ease-in-out infinite;
}

@keyframes photo-frame-edge {
  0%,
  100% {
    box-shadow: inset 0 0 0 1px rgba(212, 175, 55, 0.12);
  }
  50% {
    box-shadow:
      inset 0 0 0 1px rgba(212, 175, 55, 0.2),
      inset 0 0 28px rgba(200, 210, 225, 0.04);
  }
}

.photo-caption {
  margin-top: 0.85rem;
  font-size: 0.98rem;
  color: var(--silver-dim);
  max-width: 52ch;
}

.page-photo-hero {
  margin: 0 0 2.5rem;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--border-silver);
  aspect-ratio: 21 / 9;
  max-height: min(52vh, 520px);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.4);
}

.page-photo-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.page-photo-hero img.illus-hero-svg {
  object-fit: contain;
  object-position: center;
  padding: clamp(0.5rem, 2vw, 1.25rem);
  background: linear-gradient(160deg, #0a0c14 0%, #141a28 50%, #0c0e16 100%);
}

.page-photo-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin: 2.5rem 0;
}

@media (max-width: 768px) {
  .page-photo-row {
    grid-template-columns: 1fr;
  }
}

.page-photo-row .photo-frame {
  aspect-ratio: 4 / 3;
}

/* —— Screenreader-only —— */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* —— Scroll-reveal: altijd leesbaar (geen opacity: 0), alleen lichte beweging —— */
.js-reveal {
  opacity: 1;
  transform: translate3d(0, 0.65rem, 0);
  transition: transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--reveal-delay, 0s);
}

.js-reveal.is-inview {
  transform: translate3d(0, 0, 0);
}

@media (prefers-reduced-motion: reduce) {
  .js-reveal {
    transform: none;
    transition: none;
  }
}

/* —— Illustraties: vloeiende muis-kanteling (JS zet transform) —— */
.photo-frame img,
.page-photo-hero img {
  transition: transform 0.35s ease-out;
}

.page-photo-hero {
  overflow: hidden;
}

/* —— Projecten-pagina: uitgebreide blokken —— */
.project-toc {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 0.65rem;
  margin: 0 0 2.75rem;
  padding: 0;
  list-style: none;
}

.project-toc a {
  display: inline-block;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  border: 1px solid var(--border-silver);
  background: rgba(255, 255, 255, 0.03);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--silver-mid);
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s, box-shadow 0.2s;
}

.project-toc a:hover {
  border-color: var(--border-gold-soft);
  color: var(--silver-bright);
  text-decoration: none;
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.08);
}

.project-showcase {
  display: flex;
  flex-direction: column;
  gap: clamp(2.5rem, 5vw, 3.75rem);
}

.project-block {
  padding: clamp(1.75rem, 3vw, 2.5rem);
  border-radius: 22px;
  border: 1px solid var(--border-silver);
  background: linear-gradient(165deg, rgba(20, 24, 34, 0.92), var(--surface));
  box-shadow: 0 20px 56px rgba(0, 0, 0, 0.35);
}

.project-block__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(1.5rem, 3vw, 2.75rem);
  align-items: center;
}

.project-block--reverse .project-block__body {
  order: 2;
}

.project-block--reverse .project-block__figure {
  order: 1;
}

.project-block__body h2 {
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 3vw, 2.15rem);
  margin: 0.35rem 0 0.75rem;
  background: linear-gradient(135deg, #fff8e0, var(--gold-light) 40%, var(--gold) 75%, var(--gold-dark) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.project-block__lead {
  margin: 0 0 1.1rem;
  color: var(--silver-low);
  font-size: 1.06rem;
  line-height: 1.65;
  max-width: 58ch;
}

.project-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-light);
  border: 1px solid var(--border-gold-soft);
  padding: 0.25rem 0.55rem;
  border-radius: 8px;
  background: rgba(212, 175, 55, 0.08);
}

.project-tech {
  margin: 0 0 1.35rem;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.65rem;
}

.project-tech li {
  position: relative;
  padding-left: 0;
  color: var(--silver-low);
  font-size: 0.98rem;
  line-height: 1.55;
}

.project-tech__label {
  display: inline-block;
  min-width: 3.2rem;
  margin-right: 0.35rem;
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--gold-light);
  letter-spacing: 0.04em;
}

.project-block__figure {
  margin: 0;
  max-height: min(340px, 42vh);
}

.project-block__figure img {
  max-height: min(320px, 40vh);
}

@media (max-width: 900px) {
  .project-block__inner {
    grid-template-columns: 1fr;
  }

  .project-block--reverse .project-block__body,
  .project-block--reverse .project-block__figure {
    order: unset;
  }

  .project-block__figure {
    max-height: none;
  }

  .project-block__figure img {
    max-height: none;
  }
}

/* Kaarten / links: lichte “levend” hover (alle pagina’s) */
.card,
.contact-box,
.project-block {
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.card:hover,
.contact-box:hover {
  border-color: var(--border-gold-soft);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
  transform: translateY(-2px);
}

.project-block:hover {
  border-color: rgba(212, 175, 55, 0.22);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.42);
  transform: translateY(-2px);
}

@media (prefers-reduced-motion: reduce) {
  .card:hover,
  .contact-box:hover,
  .project-block:hover {
    transform: none;
  }
}
