:root {
  --bg: #0d0d0d;
  --bg-soft: #161512;
  --panel: rgba(255, 255, 255, 0.06);
  --panel-strong: rgba(255, 255, 255, 0.1);
  --text: #f4efe8;
  --muted: #d0c4b7;
  --accent: #d8c2a0;
  --accent-deep: #9f8668;
  --line: rgba(255, 255, 255, 0.12);
  --shadow: 0 34px 90px rgba(0, 0, 0, 0.46);
  --dark: #090909;
  --success: #0a9f71;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(216, 194, 160, 0.12), transparent 18%),
    radial-gradient(circle at bottom right, rgba(255, 255, 255, 0.04), transparent 26%),
    linear-gradient(180deg, #090909 0%, #12100f 100%);
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 18px 18px;
  mask-image: radial-gradient(circle at center, black 30%, transparent 100%);
  opacity: 0.65;
}

body.loaded .page-wrap { opacity: 1; filter: blur(0); }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button, input { font: inherit; }

.page-wrap {
  opacity: 0;
  filter: blur(16px);
  transition: opacity 0.9s ease, filter 0.9s ease;
}
.container { width: min(1200px, calc(100% - 32px)); margin: 0 auto; }
.section-pad { padding: 108px 0; }

.eyebrow {
  margin: 0 0 18px;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 800;
  color: var(--accent-deep);
}

h1, h2, h3, h4 { margin-top: 0; color: var(--text); }

h2, h3 {
  font-family: "Cormorant Garamond", serif;
  letter-spacing: -0.05em;
  line-height: 0.9;
  font-weight: 600;
}

h2 { font-size: clamp(3.4rem, 6vw, 5.6rem); margin-bottom: 18px; }
h3 { font-size: clamp(2.6rem, 5vw, 4rem); margin-bottom: 18px; }
h4 { font-size: 1.5rem; margin-bottom: 10px; }

p {
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.75;
  margin: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(20px);
  background: rgba(11, 10, 10, 0.75);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 84px;
  gap: 22px;
}

.brand { display: inline-flex; align-items: center; gap: 12px; }

.brand-mark {
  width: 48px; height: 48px; border-radius: 14px; overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.18);
  background: rgba(255, 255, 255, 0.08);
}

.brand-mark img { width: 100%; height: 100%; object-fit: cover; }
.small-mark { width: 42px; height: 42px; border-radius: 12px; }

.brand-copy { display: flex; flex-direction: column; gap: 2px; }
.brand-copy strong { letter-spacing: -0.03em; font-size: 0.98rem; }
.brand-copy small {
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); font-size: 0.66rem;
}

.main-nav { display: flex; align-items: center; gap: clamp(18px, 2vw, 32px); }
.main-nav a {
  position: relative; color: var(--muted); font-weight: 600; transition: color 0.2s ease;
}
.main-nav a::after {
  content: ""; position: absolute; left: 0; bottom: -8px; width: 100%; height: 2px;
  border-radius: 999px; background: var(--accent); transform: scaleX(0); transform-origin: left;
  transition: transform 0.2s ease;
}
.main-nav a:hover, .main-nav a:focus-visible { color: var(--text); }
.main-nav a:hover::after, .main-nav a:focus-visible::after { transform: scaleX(1); }

.button {
  display: inline-flex; align-items: center; justify-content: center; border-radius: 0;
  padding: 0.92rem 1.5rem; font-weight: 700; letter-spacing: 0.01em;
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
  position: relative; isolation: isolate;
  overflow: hidden;
}
.button::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(255,255,255,0.22), transparent 34%, transparent 66%, rgba(255,255,255,0.18));
  opacity: 0; transform: translateX(-110%);
  transition: transform 0.5s ease, opacity 0.3s ease;
  z-index: -1;
}
.button:hover, .button:focus-visible {
  transform: translateY(-2px);
  filter: brightness(1.04);
  box-shadow: 0 18px 28px rgba(184, 139, 90, 0.22);
}
.button:hover::before, .button:focus-visible::before {
  opacity: 1;
  transform: translateX(110%);
}
.button-primary {
  background: linear-gradient(135deg, rgba(216, 194, 160, 0.95) 0%, rgba(156, 124, 90, 0.95) 100%);
  color: #111; box-shadow: 0 18px 36px rgba(184, 139, 90, 0.22);
}
.button-secondary {
  background: rgba(255, 255, 255, 0.03); border: 1px solid rgba(255, 255, 255, 0.14); color: var(--text);
}
.nav-cta { margin-left: auto; }

.hero {
  position: relative; padding: 80px 0 40px;
  background-image: linear-gradient(180deg, rgba(10,10,10,0.18), rgba(10,10,10,0.72)), url('https://images.squarespace-cdn.com/content/v1/5c3751475417fc85931b228a/1611834057565-04H2GRJP6HJVDP1NBAMX/Bart-van-Hattem-Zakelijke-portretfotografie.jpg');
  background-size: cover; background-position: center; background-repeat: no-repeat;
}
.hero::before {
  content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(9,9,9,0.82), rgba(9,9,9,0.38), rgba(9,9,9,0.6));
}
.hero-grid {
  position: relative; z-index: 1; display: grid; grid-template-columns: 1fr; align-items: center; gap: clamp(24px, 3vw, 42px);
}
.hero-copy { max-width: 860px; }
.hero-copy h2 span { color: var(--accent); }
.lead {
  max-width: 620px; font-size: clamp(1.08rem, 2vw, 1.25rem); margin-top: 18px;
  color: rgba(255,255,255,0.72);
}
.cta-row { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 30px; }
.stats {
  list-style: none; display: flex; flex-wrap: wrap; gap: 28px; padding: 0; margin: 36px 0 0;
}
.stats li { min-width: 124px; display: flex; flex-direction: column; gap: 5px; }
.stats strong { font-size: clamp(1.5rem, 3vw, 2.2rem); line-height: 1; letter-spacing: -0.06em; }
.stats span {
  font-size: 0.8rem; letter-spacing: 0.09em; text-transform: uppercase; color: var(--muted);
}



.services { background: rgba(255, 255, 255, 0.12); }
.section-head { margin-bottom: 42px; }
.service-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 22px; }
.service-card {
  position: relative; overflow: hidden; padding: 28px 24px; border-radius: 0; background: rgba(16, 15, 14, 0.9);
  border: 1px solid rgba(255,255,255,0.08); box-shadow: 0 18px 36px rgba(15, 12, 10, 0.03); transition: transform 0.25s ease, box-shadow 0.25s ease;
  background-image: linear-gradient(180deg, rgba(0,0,0,0.18), rgba(0,0,0,0.7));
  background-size: cover; background-position: center; min-height: 320px; display: flex; flex-direction: column; justify-content: flex-end;
}
.service-card:nth-child(1) { background-image: linear-gradient(180deg, rgba(0,0,0,0.14), rgba(0,0,0,0.72)), url('https://images.squarespace-cdn.com/content/v1/5c3751475417fc85931b228a/1654248388975-UEP668RUYIL9M2M5DGN7/headshot-beeldbank-moor-communicatie-zorg-welzijn.jpg'); }
.service-card:nth-child(2) { background-image: linear-gradient(180deg, rgba(0,0,0,0.14), rgba(0,0,0,0.72)), url('https://images.squarespace-cdn.com/content/v1/5c3751475417fc85931b228a/67bee2f4-a17f-4f6e-8291-c76484941cb7/portretfotografie-personal-branding-shoot-ondernemers.jpg'); }
.service-card:nth-child(3) { background-image: linear-gradient(180deg, rgba(0,0,0,0.14), rgba(0,0,0,0.72)), url('https://images.squarespace-cdn.com/content/v1/5c3751475417fc85931b228a/1637699812690-NCMDBLUYNTH562TLOB1W/zakelijk-portret-eigenaar-hans-koot-serious-coffee-ontwikkelaar-espressomachine-emilia.jpg'); }
.service-card:nth-child(4) { background-image: linear-gradient(180deg, rgba(0,0,0,0.14), rgba(0,0,0,0.72)), url('https://images.squarespace-cdn.com/content/v1/5c3751475417fc85931b228a/1611834057565-04H2GRJP6HJVDP1NBAMX/Bart-van-Hattem-Zakelijke-portretfotografie.jpg'); }
.service-card::before {
  content: ""; position: absolute; inset: 0 0 auto 0; height: 1px; background: linear-gradient(90deg, transparent, rgba(184,139,90,0.6), transparent);
}
.service-card:hover { transform: translateY(-6px); box-shadow: 0 26px 52px rgba(15, 12, 10, 0.08); }
.card-number {
  display: inline-flex; align-items: center; justify-content: center; width: 54px; height: 54px; border-radius: 0; background: rgba(184, 139, 90, 0.11); color: var(--accent-deep); font-weight: 800; margin-bottom: 18px;
}
.service-card p { margin-top: 8px; color: rgba(255,255,255,0.82); }
.service-card h4 { color: #fff; }
.service-card .card-number { color: #fff; background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.16); }

.portfolio-wrap { padding-top: 96px; }
.portfolio-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; }
.portfolio-card {
  position: relative; min-height: 340px; border-radius: 0; overflow: hidden; background-size: cover; background-position: center;
  border: 1px solid rgba(255,255,255,0.08); box-shadow: var(--shadow); transition: transform 0.28s ease, filter 0.28s ease;
}
.portfolio-card::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.08), rgba(0,0,0,0.55));
  z-index: 0;
}
.portfolio-card:hover { transform: translateY(-6px) scale(1.01); filter: saturate(1.1) contrast(1.04); }
.portfolio-content {
  position: absolute; inset: auto 0 0 0; padding: 26px 22px 28px; background: linear-gradient(180deg, transparent, rgba(12, 10, 9, 0.68));
  z-index: 1;
}
.portfolio-card {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.portfolio-card.executive {
  background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(15, 12, 10, 0.7)), url('https://images.squarespace-cdn.com/content/v1/5c3751475417fc85931b228a/2d29cdc7-1729-4913-8da5-1438f4b0389e/headshot-ileen-kersemaekers-directeur-eigenaar-modellenbureau-frisse+koppen-tilburg-brabant?format=750w');
  min-height: 540px;
}

.portfolio-card.founder {
  background-image: linear-gradient(180deg, rgba(28, 23, 20, 0.12), rgba(28, 23, 20, 0.76)), url('https://images.squarespace-cdn.com/content/v1/5c3751475417fc85931b228a/1f364468-675a-4bb2-ad3f-15b86c23f4c6/headshot-luca-arbouw-entrepreneur-mentor-innvesteerder-coach?format=750w');
}

.portfolio-card:nth-child(3) {
  background-image: linear-gradient(180deg, rgba(28, 23, 20, 0.12), rgba(28, 23, 20, 0.76)), url('https://images.squarespace-cdn.com/content/v1/5c3751475417fc85931b228a/1637699812690-NCMDBLUYNTH562TLOB1W/zakelijk-portret-eigenaar-hans-koot-serious-coffee-ontwikkelaar-espressomachine-emilia.jpg');
}

.portfolio-card:nth-child(4) {
  background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(15, 12, 10, 0.7)), url('https://images.squarespace-cdn.com/content/v1/5c3751475417fc85931b228a/1643364465648-IDKQ3UWSCC2WFE2XGIC3/nieuwe-profielfoto-bart-van-hattem_2.jpg');
  grid-column: span 2; min-height: 300px; background-position: center 20%;
}
.portfolio-content { position: absolute; inset: auto 0 0 0; padding: 26px 22px 28px; background: linear-gradient(180deg, transparent, rgba(12, 10, 9, 0.68)); }
.portfolio-content span { display: inline-block; margin-bottom: 12px; color: rgba(255, 255, 255, 0.82); letter-spacing: 0.12em; font-size: 0.72rem; text-transform: uppercase; }
.portfolio-content h4 { color: #fff; font-family: "Manrope", sans-serif; margin: 0; font-weight: 700; letter-spacing: -0.05em; }

.experience-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; align-items: center; gap: 30px; }
.about-photo {
  position: relative; overflow: hidden; border: 1px solid rgba(255,255,255,0.12); box-shadow: var(--shadow); background: rgba(255,255,255,0.04);
}
.about-photo img {
  display: block; width: 100%; height: min(72vw, 680px); object-fit: cover; filter: contrast(1.1) saturate(0.8) brightness(0.88);
  transform: scale(1.02);
}
.experience-copy { max-width: 600px; }
.experience-copy p + p { margin-top: 18px; }
.experience-points { display: grid; gap: 18px; margin-top: 24px; }
.point-box {
  display: grid; grid-template-columns: 76px 1fr; gap: 18px; padding: 20px 22px;
  background: rgba(17, 17, 16, 0.9); border: 1px solid rgba(255, 255, 255, 0.08); border-radius: 0; box-shadow: 0 18px 36px rgba(15, 12, 10, 0.06);
}
.point-box strong {
  display: inline-flex; align-items: center; justify-content: center; width: 74px; height: 74px; border-radius: 0;
  background: linear-gradient(135deg, rgba(184, 139, 90, 0.18), rgba(184, 139, 90, 0.26)); color: #f8efe7; font-weight: 800;
}
.point-box h4 { margin-bottom: 8px; color: #f7f2ec; }
.point-box p { color: rgba(247,242,236,0.8); }

.process-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 22px; }
.process-card {
  padding: 26px 22px 20px; border-radius: 0; background: rgba(18, 17, 16, 0.9); border: 1px solid rgba(255,255,255,0.08); transition: transform 0.24s ease, box-shadow 0.24s ease;
  background-size: cover; background-position: center; min-height: 260px; display: flex; flex-direction: column; justify-content: flex-end; position: relative; overflow: hidden;
}
.process-card:nth-child(1) { background-image: linear-gradient(180deg, rgba(0,0,0,0.08), rgba(0,0,0,0.7)), url('https://images.squarespace-cdn.com/content/v1/5c3751475417fc85931b228a/1654248388975-UEP668RUYIL9M2M5DGN7/headshot-beeldbank-moor-communicatie-zorg-welzijn.jpg'); }
.process-card:nth-child(2) { background-image: linear-gradient(180deg, rgba(0,0,0,0.08), rgba(0,0,0,0.7)), url('https://images.squarespace-cdn.com/content/v1/5c3751475417fc85931b228a/67bee2f4-a17f-4f6e-8291-c76484941cb7/portretfotografie-personal-branding-shoot-ondernemers.jpg'); }
.process-card:nth-child(3) { background-image: linear-gradient(180deg, rgba(0,0,0,0.08), rgba(0,0,0,0.7)), url('https://images.squarespace-cdn.com/content/v1/5c3751475417fc85931b228a/1637699812690-NCMDBLUYNTH562TLOB1W/zakelijk-portret-eigenaar-hans-koot-serious-coffee-ontwikkelaar-espressomachine-emilia.jpg'); }
.process-card:nth-child(4) { background-image: linear-gradient(180deg, rgba(0,0,0,0.08), rgba(0,0,0,0.7)), url('https://images.squarespace-cdn.com/content/v1/5c3751475417fc85931b228a/1611834057565-04H2GRJP6HJVDP1NBAMX/Bart-van-Hattem-Zakelijke-portretfotografie.jpg'); }
.process-card:hover { transform: translateY(-4px); box-shadow: 0 18px 32px rgba(15, 12, 10, 0.04); }
.process-card span {
  display: inline-flex; align-items: center; justify-content: center; width: 52px; height: 52px; border-radius: 0; background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.18); color: #fff; font-weight: 800; margin-bottom: 18px;
}
.process-card h4, .process-card p { color: #fff; }

.testimonials { background: rgba(255, 255, 255, 0.14); }
.testimonial-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; }
.testimonial {
  margin: 0; padding: 28px 24px 26px; border-radius: 0; background: rgba(17, 17, 16, 0.9); border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 18px 36px rgba(15, 12, 10, 0.03); font-size: 1.06rem; line-height: 1.8; color: #f5efe9;
}
.testimonial footer {
  margin-top: 18px; font-size: 0.8rem; letter-spacing: 0.09em; text-transform: uppercase; color: var(--accent-deep); font-weight: 800;
}

.cta-section { padding-top: 36px; }
.cta-shell {
  display: flex; align-items: center; justify-content: space-between; gap: 24px; border-radius: 0; background: linear-gradient(135deg, rgba(18, 15, 13, 0.98), rgba(69, 55, 49, 0.98)); padding: clamp(30px, 5vw, 56px); box-shadow: var(--shadow);
}
.cta-shell h3, .cta-shell .eyebrow, .cta-shell p { color: #fff; }
.cta-shell .eyebrow { color: rgba(255, 255, 255, 0.7); }
.cta-box { display: grid; justify-items: end; gap: 16px; }

.site-footer { padding: 24px 0 58px; }
.footer-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 18px; border-top: 1px solid var(--line); padding-top: 20px;
}
.footer-brand { gap: 12px; }
.footer-meta { display: flex; align-items: center; flex-wrap: wrap; gap: 18px; color: var(--muted); }

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.8s ease, transform 0.8s ease, filter 0.8s ease;
  filter: blur(8px);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

.menu-toggle {
  display: none; flex-direction: column; justify-content: center; width: 44px; height: 44px; background: transparent; border: none; padding: 0; cursor: pointer;
}
.menu-toggle span { display: block; width: 22px; height: 2px; background: var(--text); border-radius: 999px; margin: 3px auto; }

.cinematic-intro {
  position: fixed; inset: 0; z-index: 100; display: grid; place-items: center; background:
    radial-gradient(circle at center, rgba(255, 255, 255, 0.12), transparent 22%),
    linear-gradient(180deg, rgba(8, 8, 8, 0.96), rgba(18, 16, 14, 0.96));
  transition: opacity 0.9s ease, visibility 0.9s ease;
}
.cinematic-intro::before {
  content: ""; position: absolute; inset: 0; background: url('wallpaper.jpg') center/cover no-repeat; filter: saturate(0.2) contrast(1.5) brightness(0.38) grayscale(1); transform: scale(1.16);
}
.cinematic-intro::after {
  content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(8, 8, 8, 0.85), rgba(8, 8, 8, 0.3), rgba(8, 8, 8, 0.85));
}

.photo-flash {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 180vmax;
  height: 180vmax;
  z-index: 2;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(255,255,255,1) 0%, rgba(255,255,255,0.96) 10%, rgba(255,255,255,0.72) 18%, rgba(255,255,255,0.24) 34%, rgba(255,255,255,0) 58%),
    linear-gradient(90deg, rgba(255,255,255,0.1), rgba(255,255,255,0.72), rgba(255,255,255,0.14));
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.1);
  filter: blur(1px) saturate(1.1) brightness(1.15);
  mix-blend-mode: screen;
  animation: cameraFlashCenter 1.8s cubic-bezier(.25,.8,.18,1) 1.9s forwards;
}

.intro-noise {
  position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px); background-size: 18px 18px; mix-blend-mode: soft-light; opacity: 0.5;
}
.intro-inner {
  position: relative; z-index: 1; display: grid; place-items: center; gap: 28px; text-align: center; opacity: 1; transform: none; filter: none;
}
.intro-frame {
  width: min(32vw, 210px); aspect-ratio: 1; padding: 14px; border-radius: 0; background: rgba(255, 255, 255, 0.08); border: 1px solid rgba(255, 255, 255, 0.22); backdrop-filter: blur(5px); box-shadow: 0 0 38px rgba(216, 194, 160, 0.15), 0 24px 70px rgba(0, 0, 0, 0.32);
  transform: translateY(-18px) scale(0.9); opacity: 0;
  animation: logoDropIn 1.1s cubic-bezier(.2,.8,.2,1) 0.2s forwards;
}
.intro-frame img { width: 100%; height: 100%; object-fit: cover; border-radius: 0; }
.intro-copy { display: grid; gap: 12px; color: #fff; opacity: 0; transform: translateY(20px); animation: textRiseIn 1.1s cubic-bezier(.2,.8,.2,1) 0.7s forwards; }
.intro-kicker { margin: 0; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; font-size: 0.72rem; color: rgba(255, 255, 255, 0.82); }
.intro-copy h1 {
  margin: 0; font-family: "Cormorant Garamond", serif; font-weight: 600; font-size: clamp(3.2rem, 8vw, 7rem); line-height: 0.88; letter-spacing: -0.05em; color: #fff;
}
.intro-copy span { display: block; color: rgba(255, 255, 255, 0.78); letter-spacing: 0.12em; font-size: 0.68rem; text-transform: uppercase; }
@keyframes logoDropIn {
  0% { opacity: 0; transform: translateY(-26px) scale(0.88); filter: blur(6px); }
  60% { opacity: 1; transform: translateY(10px) scale(1.02); filter: blur(0); }
  100% { opacity: 1; transform: translateY(0) scale(1); filter: blur(0); }
}
@keyframes textRiseIn {
  0% { opacity: 0; transform: translateY(24px); filter: blur(8px); }
  65% { opacity: 1; transform: translateY(-4px); filter: blur(0); }
  100% { opacity: 1; transform: translateY(0); filter: blur(0); }
}
@keyframes introReveal {
  0% { opacity: 1; transform: scale(1); filter: none; }
  100% { opacity: 0; transform: scale(1.02); filter: blur(3px); }
}

@keyframes cameraFlashCenter {
  0% { opacity: 0; transform: translate(-50%, -50%) scale(0.08); }
  12% { opacity: 0.8; transform: translate(-50%, -50%) scale(0.52); }
  28% { opacity: 1; transform: translate(-50%, -50%) scale(0.9); }
  46% { opacity: 0.78; transform: translate(-50%, -50%) scale(1.22); }
  68% { opacity: 0.22; transform: translate(-50%, -50%) scale(1.7); }
  100% { opacity: 0; transform: translate(-50%, -50%) scale(2.15); }
}

.cinematic-intro.ending {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 1s ease, visibility 1s ease;
}

.editorial-photos { padding-top: 20px; }
.editorial-grid {
  display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 20px;
}
.editorial-frame {
  position: relative; overflow: hidden; border: 1px solid rgba(255,255,255,0.12); background: rgba(255,255,255,0.05); box-shadow: var(--shadow);
  min-height: 420px;
}
.editorial-frame:nth-child(1) {
  background-image: linear-gradient(180deg, rgba(0,0,0,0.12), rgba(0,0,0,0.52)), url('https://images.squarespace-cdn.com/content/v1/5c3751475417fc85931b228a/2d29cdc7-1729-4913-8da5-1438f4b0389e/headshot-ileen-kersemaekers-directeur-eigenaar-modellenbureau-frisse+koppen-tilburg-brabant?format=750w');
  background-size: cover; background-position: center;
}
.editorial-frame:nth-child(2) {
  background-image: linear-gradient(180deg, rgba(0,0,0,0.12), rgba(0,0,0,0.52)), url('https://images.squarespace-cdn.com/content/v1/5c3751475417fc85931b228a/1f364468-675a-4bb2-ad3f-15b86c23f4c6/headshot-luca-arbouw-entrepreneur-mentor-innvesteerder-coach?format=750w');
  background-size: cover; background-position: center;
}
.editorial-frame img {
  display: block; width: 100%; height: min(52vw, 560px); object-fit: cover; filter: contrast(1.08) saturate(0.8) brightness(0.88);
} 

.floating-chat {
  position: fixed; right: 24px; bottom: 20px; z-index: 40; display: flex; flex-direction: column; align-items: flex-end; gap: 12px;
}
.chat-toggle {
  width: 68px; height: 68px; display: grid; place-items: center; border: none; border-radius: 50%;
  background: linear-gradient(135deg, #25d366, #128c7e); box-shadow: 0 16px 30px rgba(18, 140, 126, 0.32); color: white; cursor: pointer; transition: transform 0.2s ease;
}
.chat-toggle:hover, .chat-toggle:focus-visible { transform: translateY(-2px); }
.chat-toggle svg { width: 28px; height: 28px; fill: currentColor; }
.chat-box {
  width: min(320px, calc(100vw - 34px)); background: rgba(17, 17, 16, 0.94); backdrop-filter: blur(16px); border: 1px solid rgba(255, 255, 255, 0.08); border-radius: 20px 20px 18px 18px; box-shadow: 0 18px 40px rgba(12, 10, 9, 0.18); overflow: hidden; opacity: 0; transform: translateY(12px) scale(0.96); transition: opacity 0.25s ease, transform 0.25s ease; pointer-events: none;
}
.floating-chat.open .chat-box { opacity: 1; transform: translateY(0) scale(1); pointer-events: auto; }
.chat-header {
  display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 16px 16px 14px; background: linear-gradient(135deg, rgba(26, 21, 17, 0.96), rgba(56, 43, 35, 0.96)); color: #fff;
}
.chat-header strong { display: block; font-size: 0.95rem; }
.chat-header span { display: block; margin-top: 2px; font-size: 0.72rem; color: rgba(255, 255, 255, 0.7); }
.chat-close {
  width: 26px; height: 26px; border-radius: 50%; border: 1px solid rgba(255, 255, 255, 0.2); background: rgba(255, 255, 255, 0.06); color: #fff; font-size: 1.2rem; line-height: 1; cursor: pointer;
}
.chat-body { padding: 18px 16px 12px; background: rgba(17, 17, 16, 0.8); }
.chat-body p {
  margin: 0; padding: 12px 14px; border-radius: 14px 14px 14px 4px; background: rgba(255,255,255,0.08); color: #f5efe9; font-size: 0.92rem; border: 1px solid rgba(255,255,255,0.06);
}
.chat-button {
  display: block; margin: 0 16px 16px; padding: 0.9rem 1.1rem; border-radius: 0; background: linear-gradient(135deg, #25d366, #128c7e); color: #fff; text-align: center; font-weight: 700;
}

@media (max-width: 980px) {
  .hero-grid, .experience-grid { grid-template-columns: 1fr; }
  .service-grid, .process-grid, .testimonial-grid, .brand-strip-inner { grid-template-columns: 1fr 1fr; }
  .portfolio-grid { grid-template-columns: 1fr 1fr; }
  .portfolio-card:nth-child(4) { grid-column: span 2; }
  .cta-shell, .footer-inner { flex-direction: column; align-items: flex-start; }
  .cta-box { justify-items: start; }
}

@media (max-width: 720px) {
  .nav-shell { min-height: 74px; }
  .main-nav {
    position: absolute; top: 76px; left: 16px; right: 16px; display: none; flex-direction: column; align-items: flex-start; gap: 18px; padding: 18px 20px; background: rgba(255, 255, 255, 0.8); border: 1px solid rgba(28, 23, 20, 0.06); border-radius: 18px; box-shadow: 0 18px 32px rgba(12, 10, 9, 0.08);
  }
  .main-nav.open { display: flex; }
  .menu-toggle { display: flex; margin-left: auto; }
  .nav-cta { display: none; }
  .hero { padding-top: 52px; }
  .section-pad { padding: 84px 0; }
  .service-grid, .process-grid, .testimonial-grid, .brand-strip-inner, .portfolio-grid { grid-template-columns: 1fr; }
  .portfolio-card:nth-child(4) { grid-column: span 1; }
  .visual-stage { min-height: 440px; }
  .cta-shell { padding: 28px 20px; }
  .floating-chat { right: 14px; bottom: 14px; }
  .chat-toggle { width: 60px; height: 60px; }
  .intro-frame { width: min(40vw, 210px); }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
}
