@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;500;600;700;800&family=Figtree:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&display=swap');

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

:root {
  --d: 'Syne', sans-serif;
  --b: 'Figtree', sans-serif;
  --bg: #F0EDE6;
  --fg: #1C1A17;
  --mid: #716B61;
  --soft: #A39D93;
  --faint: #D5D0C7;
  --warm: #E2D9C8;
  --dark: #332F2B;
  --gold: #C2A87C;
  --accent: #8B7D68;
  --clay: #B8A88A;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--b);
  background: var(--bg);
  color: var(--fg);
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  position: relative;
}

::selection { background: #1C1A1718; }

body::before {
  content: '';
  position: fixed; inset: 0; z-index: 9999;
  pointer-events: none; opacity: 0.018;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 160px;
}

/* ── Name + role top left ── */
.nm { position: fixed; top: 24px; left: 32px; z-index: 200; }
.nm-name { font-family: var(--d); font-size: 15px; font-weight: 600; letter-spacing: -0.02em; cursor: pointer; }
.nm-name:hover { opacity: 0.7; }
.nm-role { font-family: var(--b); font-size: 11px; font-weight: 400; color: var(--soft); margin-top: 1px; }

/* ── Voice strip ── */
.voice-strip {
  position: fixed; top: 0; left: 0; right: 0; z-index: 150;
  background: var(--accent); color: #F2EFE8;
  font-family: var(--b); font-size: 15px; font-weight: 400; font-style: italic;
  padding: 14px 32px; line-height: 1.5;
  transform: translateY(0); transition: transform 0.35s ease, opacity 0.35s ease, background 0.35s ease;
}
.voice-strip.hidden { transform: translateY(-100%); opacity: 0; pointer-events: none; }
.voice-strip.culture-strip { background: #A32D2D; color: #F5EDED; }
body.has-strip .nm { top: 68px; }
body.has-strip .sidebar { padding-top: 48px; }

/* ── Right sidebar: pages + languages + tone + culture ── */
.sidebar {
  position: fixed; top: 0; right: 0; z-index: 200;
  display: flex; flex-direction: column;
  height: 100vh; justify-content: center;
  transition: padding-top 0.35s ease;
}
.sb-section { display: flex; flex-direction: column; align-items: center; }
.sb-sep { width: 18px; height: 1px; background: var(--faint); margin: 6px auto; }
.sb-sep-gold { width: 18px; height: 1px; background: var(--gold); margin: 6px auto; }
.sb-sep-red { width: 18px; height: 1px; background: #E24B4A; margin: 6px auto; }
.sb-btn {
  font-family: var(--d); font-size: 13px; font-weight: 500;
  letter-spacing: 0.06em; writing-mode: vertical-rl;
  padding: 16px 14px; border: none; background: transparent;
  color: var(--soft); cursor: pointer;
  transition: color 0.2s, background 0.2s;
  border-left: 2px solid transparent;
}
.sb-btn:hover { color: var(--fg); }
.sb-btn.on {
  color: var(--fg);
  border-left-color: var(--accent);
  background: linear-gradient(90deg, rgba(139,125,104,0.07), transparent);
}
.sb-btn.tone, .sb-btn.culture {
  font-size: 16px; font-weight: 700; padding: 0;
  writing-mode: horizontal-tb;
  width: 32px; height: 32px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--faint); border-left: 1px solid var(--faint);
  margin: 3px auto;
}
.sb-btn.tone { color: var(--accent); }
.sb-btn.tone:hover { border-color: var(--gold); color: var(--accent); }
.sb-btn.tone.on { color: var(--accent); border-color: var(--gold); background: rgba(194,168,124,0.08); }
.sb-btn.culture { color: #791F1F; }
.sb-btn.culture:hover { border-color: #E24B4A; color: #791F1F; }
.sb-btn.culture.on { color: #791F1F; border-color: #E24B4A; background: rgba(226,75,74,0.06); }

/* ── Pages ── */
.page { display: none; max-width: 1400px; }
.page.active { display: block; }

/* ── Floating color blocks ── */
.float { position: absolute; z-index: 0; pointer-events: none; }

/* ── Scroll fade ── */
.fade-in { opacity: 0; transform: translateY(14px); transition: opacity 0.7s ease, transform 0.7s ease; }
.fade-in.visible { opacity: 1; transform: none; }

/* ── Scroll down hint ── */
.scroll-down {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  font-family: var(--d); font-size: 10px; font-weight: 500;
  letter-spacing: 0.12em; color: var(--soft);
  animation: scrollBob 2.4s ease-in-out infinite;
}
.scroll-down-line { width: 1px; height: 24px; background: var(--faint); }
@keyframes scrollBob { 0%,100%{transform:translateX(-50%) translateY(0)} 50%{transform:translateX(-50%) translateY(8px)} }

/* ═══ OPENING ═══ */
.sec-opening {
  min-height: 100vh; display: flex; flex-direction: column;
  justify-content: center; padding: 100px 32px 80px; padding-right: 60px;
  position: relative; z-index: 1;
}
.o-small { font-size: 13px; color: var(--soft); margin-bottom: 32px; }
.o-big {
  font-family: var(--d); font-size: clamp(34px, 6.5vw, 76px);
  font-weight: 700; line-height: 1.08; letter-spacing: -0.035em;
  white-space: pre-line; max-width: 800px; min-height: 2.2em;
  transition: opacity 0.5s; position: relative; z-index: 2;
}
.o-bottom { display: flex; justify-content: flex-end; margin-top: 60px; padding-right: 40px; }
.o-right { max-width: 400px; }
.o-after { font-size: 16px; font-weight: 300; line-height: 1.75; color: var(--mid); }
.o-coda { margin-top: 16px; }
.o-coda-a { font-family: var(--d); font-size: 20px; font-weight: 600; display: block; }
.o-coda-b { font-family: var(--d); font-size: 20px; font-weight: 600; color: var(--accent); display: block; margin-top: 3px; }

/* ── Photo + reframe side by side ── */
.photo-reframe {
  position: relative; z-index: 1; padding: 120px 32px 160px; padding-right: 60px;
  display: flex; gap: 40px; align-items: flex-start;
}
.photo-dual {
  display: flex; gap: 8px; flex-shrink: 0; width: 44%;
}
.photo-dual-img {
  flex: 1; aspect-ratio: 1/1.05; background: #D5CFC4; overflow: hidden;
}
.photo-dual-img img { width: 100%; height: 100%; object-fit: cover; display: block; }

.rf-block { background: var(--warm); padding: 48px 44px; flex: 1; }
.rf-t { font-size: 18px; font-weight: 300; line-height: 1.85; color: #4A453D; }

/* ── Portrait right offset (aanpak, 1b) ── */
.photo-1b {
  position: relative; z-index: 1; padding: 0 32px; padding-right: 60px;
  display: flex; gap: 32px; align-items: flex-start; min-height: 300px;
}
.photo-1b-text { flex: 1; padding-top: 20px; }
.photo-1b-img {
  width: 28%; flex-shrink: 0; margin-top: 40px;
  aspect-ratio: 3/4; background: #D5CFC4; overflow: hidden;
}
.photo-1b-img img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ── Peek-in from left (visie, 2a) ── */
.photo-2a {
  position: relative; z-index: 1;
  margin-left: -5%; width: 32%; aspect-ratio: 5/6;
  background: #D5CFC4; overflow: hidden;
}
.photo-2a img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ── Centered portrait (gesprek) ── */
.photo-center {
  position: relative; z-index: 1; padding: 0 32px; padding-right: 60px;
  display: flex; justify-content: center;
}
.photo-center-img {
  width: 29%; aspect-ratio: 3/4; background: #D5CFC4; overflow: hidden;
}
.photo-center-img img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ── Photo + text side by side row ── */
.photo-text-row {
  position: relative; z-index: 1; padding: 0 32px 100px; padding-right: 60px;
  display: flex; gap: 40px; align-items: flex-start;
}
.photo-text-row .photo-2a {
  flex-shrink: 0; margin-left: 0; width: 29%; position: relative;
}
.photo-text-right { flex: 1; padding-top: 20px; }
.photo-text-row-rev { flex-direction: row; }
.photo-1b-img-sm {
  width: 24%; flex-shrink: 0;
  aspect-ratio: 1/1; background: #D5CFC4; overflow: hidden;
}
.photo-1b-img-sm img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* (reframe is now part of .photo-reframe above) */

/* ── What — dark block, staggered items, orbit dot ── */
.sec-what { position: relative; z-index: 1; padding: 0 32px 160px; padding-right: 60px; }
.wh-title {
  font-family: var(--d); font-size: 12px; font-weight: 600;
  color: var(--accent); letter-spacing: 0.06em; margin-bottom: 48px;
}
.wh-block {
  background: var(--dark); padding: 48px 44px; max-width: 75%;
  margin-left: auto; position: relative; overflow: hidden;
}
.wh-grid { display: flex; flex-direction: column; gap: 0; }
.wh-item { padding: 16px 0; }
.wh-item:nth-child(2) { padding-left: 40px; }
.wh-item:nth-child(3) { padding-left: 80px; }
.wh-h {
  font-family: var(--d); font-size: 16px; font-weight: 600;
  color: #E2DED5; line-height: 1.3; margin-bottom: 6px;
}
.wh-b { font-size: 13px; font-weight: 300; color: #A39D93; line-height: 1.65; max-width: 400px; }

/* ── Mirror ── */
.sec-mirror { position: relative; z-index: 1; padding: 120px 32px 140px; padding-right: 60px; }
.mr-in { max-width: 560px; margin-left: 80px; }
.mr-title { font-family: var(--d); font-size: clamp(20px, 2.5vw, 28px); font-weight: 600; letter-spacing: -0.02em; margin-bottom: 6px; }
.mr-sub { font-size: 13px; font-weight: 300; color: var(--soft); margin-bottom: 40px; }
.mq { padding: 18px 0; border-bottom: 1px solid var(--faint); display: grid; grid-template-columns: 1fr auto; gap: 14px; align-items: center; }
.mq:first-child { border-top: 1px solid var(--faint); }
.mq-t { font-size: 14px; line-height: 1.5; color: #4A453D; }
.mq-btns { display: flex; gap: 6px; }
.mb {
  font-family: var(--b); font-size: 12px; font-weight: 500;
  padding: 6px 16px; border: 1px solid var(--faint);
  background: transparent; color: var(--mid); cursor: pointer; transition: all 0.2s;
}
.mb:hover { border-color: var(--fg); color: var(--fg); }
.mb.sy { background: var(--fg); border-color: var(--fg); color: var(--bg); }
.mb.sn { background: var(--accent); border-color: var(--accent); color: #F5F2EC; }
.mr-result { margin-top: 28px; padding-top: 20px; border-top: 2px solid var(--accent); opacity: 0; transition: opacity 0.5s; }
.mr-result.show { opacity: 1; }
.mr-result-text { font-family: var(--d); font-size: 19px; font-weight: 500; font-style: italic; line-height: 1.5; }
.mr-reset { margin-top: 10px; font-size: 11px; color: var(--soft); background: none; border: none; cursor: pointer; text-decoration: underline; text-underline-offset: 3px; }

/* ── Closing ── */
.sec-closing { position: relative; z-index: 1; padding: 80px 32px 48px 120px; padding-right: 60px; }
.cl-q { font-family: var(--d); font-size: clamp(24px, 3.2vw, 38px); font-weight: 700; line-height: 1.15; letter-spacing: -0.03em; white-space: pre-line; margin-bottom: 36px; }
.cl-a { font-family: var(--d); font-size: 16px; font-weight: 600; color: var(--fg); text-decoration: none; border-bottom: 1.5px solid var(--faint); padding-bottom: 3px; cursor: pointer; transition: border-color 0.2s; }
.cl-a:hover { border-color: var(--fg); }

/* ── Inner page hero ── */
.pg-hero { padding: 180px 32px 60px; padding-right: 60px; max-width: 780px; position: relative; z-index: 1; }
.pg-hero-line { font-family: var(--d); font-size: clamp(28px, 4vw, 44px); font-weight: 600; letter-spacing: -0.025em; line-height: 1.2; margin-bottom: 20px; }
.pg-hero-sub { font-size: 18px; font-weight: 300; line-height: 1.8; color: var(--mid); max-width: 560px; }
.hero-orbit { position: absolute; right: 40px; top: 50%; transform: translateY(-50%); opacity: 0.5; }

/* ── Text sections ── */
.txt-section { padding: 0 32px 100px; padding-right: 60px; position: relative; z-index: 1; }
.txt-narrow { max-width: 600px; }
.txt-offset { margin-left: 100px; }
.txt-right { margin-left: auto; max-width: 580px; margin-right: 40px; }
.txt-label { font-family: var(--d); font-size: 12px; font-weight: 600; color: var(--accent); letter-spacing: 0.04em; margin-bottom: 24px; }
.txt-h { font-family: var(--d); font-size: clamp(20px, 2.5vw, 28px); font-weight: 500; letter-spacing: -0.02em; line-height: 1.3; margin-bottom: 16px; }
.txt-p { font-size: 17px; font-weight: 300; line-height: 1.85; color: #4A453D; margin-bottom: 24px; }
.txt-p:last-child { margin-bottom: 0; }
.txt-punch { font-family: var(--d); font-size: 18px; font-weight: 500; letter-spacing: -0.01em; margin-top: 28px; line-height: 1.45; }

/* ── Aanpak phases with photo alongside ── */
.aanpak-phases-wrap {
  position: relative; z-index: 1; display: flex; gap: 32px;
  padding-right: 60px; align-items: center;
}
.aanpak-phases-content { flex: 1; min-width: 0; }
.aanpak-phases-photo {
  width: 22%; flex-shrink: 0;
  overflow: hidden;
}
.aanpak-phases-photo img { width: 100%; height: auto; object-fit: cover; display: block; }

/* ── Phases (aanpak) ── */
.phase { padding: 0 32px; padding-right: 60px; margin-bottom: 72px; position: relative; z-index: 1; }
.phase-head { display: grid; grid-template-columns: 48px 1fr 24px; gap: 16px; cursor: pointer; align-items: start; padding: 8px 0; transition: background 0.2s; }
.phase-head:hover { background: rgba(139,125,104,0.05); }
.phase-num { font-family: var(--d); font-size: 13px; font-weight: 600; color: var(--accent); padding-top: 3px; }
.phase-title { font-family: var(--d); font-size: 20px; font-weight: 500; letter-spacing: -0.015em; line-height: 1.35; }
.phase-leader { font-size: 14px; font-weight: 400; font-style: italic; color: var(--soft); margin-top: 4px; }
.phase-expand { font-family: var(--d); font-size: 18px; font-weight: 300; color: var(--soft); transition: transform 0.3s ease, color 0.2s; padding-top: 2px; user-select: none; animation: plusPulse 3s ease-in-out infinite; }
.phase-expand.open { transform: rotate(45deg); color: var(--accent); animation: none; }
@keyframes plusPulse { 0%,100%{opacity:0.4} 50%{opacity:1} }
.phase-body { margin-left: 64px; max-width: 520px; overflow: hidden; max-height: 0; opacity: 0; transition: max-height 0.4s ease, opacity 0.3s ease, margin-top 0.3s ease; margin-top: 0; }
.phase-body.open { max-height: 400px; opacity: 1; margin-top: 16px; }
.phase-body-text { font-size: 15px; font-weight: 300; line-height: 1.75; color: var(--mid); margin-bottom: 12px; }
.phase-result { font-size: 14px; font-weight: 500; color: var(--fg); margin-top: 8px; }

/* ── Arc ── */
.arc-section { padding: 120px 32px 160px; padding-right: 60px; position: relative; z-index: 1; }
.arc-title { font-family: var(--d); font-size: clamp(20px, 2.5vw, 26px); font-weight: 400; letter-spacing: -0.02em; margin-bottom: 8px; }
.arc-sub { font-size: 14px; font-weight: 300; color: var(--soft); margin-bottom: 48px; }
.arc-diagram { position: relative; max-width: 860px; }
.arc-cols { display: flex; gap: 32px; margin-bottom: 6px; }
.arc-col { display: flex; flex-direction: column; gap: 2px; flex: 1; min-width: 0; }
.arc-col-h { font-family: var(--d); font-size: 15px; font-weight: 500; letter-spacing: -0.01em; }
.arc-col-dur { font-size: 11px; color: var(--soft); }
.arc-col-p { font-size: 13px; font-weight: 300; line-height: 1.55; color: var(--mid); margin-top: 2px; }
.net-block { margin: 4px 0 0; border: 0.5px solid var(--faint); border-radius: 6px; padding: 14px 18px 14px 36px; position: relative; }
.net-block-dot { position: absolute; left: 14px; top: 18px; width: 10px; height: 10px; border-radius: 50%; background: #B5D4F4; }
@keyframes arcLoop { 0%{offset-distance:0%} 100%{offset-distance:100%} }

/* ── Cyclus (verdieping) ── */
.cyclus-duo { display: grid; grid-template-columns: 1fr 1fr; max-width: 820px; padding: 0 32px; padding-right: 60px; margin-bottom: 120px; position: relative; z-index: 1; }
.cyclus-block { padding: 32px 28px 36px; position: relative; }
.cyclus-block-richten { background: var(--warm); z-index: 1; padding-right: 72px; }
.cyclus-block-verrichten { background: var(--fg); color: #E8E5DD; margin-top: 48px; margin-left: -40px; margin-bottom: 60px; z-index: 2; }
.cyclus-block-verrichten .cs-num { color: var(--warm); opacity: 0.5; }
.cyclus-block-verrichten .cs-title { color: #E8E5DD; }
.cyclus-block-verrichten .cs-desc { color: #B8B2A6; }
.cyclus-block-verrichten .cb-label { color: var(--warm); }
.cb-label { font-family: var(--d); font-size: 12px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--accent); margin-bottom: 20px; }
.cyclus-item { display: grid; grid-template-columns: 28px 1fr; gap: 10px; margin-bottom: 16px; }
.cyclus-item:last-child { margin-bottom: 0; }
.cs-num { font-family: var(--d); font-size: 12px; font-weight: 600; color: var(--accent); padding-top: 2px; }
.cs-title { font-family: var(--d); font-size: 15px; font-weight: 500; margin-bottom: 2px; }
.cs-desc { font-size: 13px; font-weight: 300; line-height: 1.55; color: var(--mid); }

/* ── Principles, patterns, sources ── */
.principle { padding: 24px 0; border-bottom: 1px solid var(--faint); }
.principle:first-child { border-top: 1px solid var(--faint); }
.pr-title { font-family: var(--d); font-size: 17px; font-weight: 500; margin-bottom: 6px; }
.pr-desc { font-size: 15px; font-weight: 300; line-height: 1.7; color: var(--mid); }
.pattern-item { padding: 14px 0; border-bottom: 1px solid var(--faint); font-size: 15px; font-weight: 300; color: #4A453D; line-height: 1.55; }
.pattern-item:first-child { border-top: 1px solid var(--faint); }
.bron-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.bron { padding: 20px 24px; background: var(--warm); border: none; }
.bron:nth-child(even) { margin-top: 28px; }
.bron:first-child { border: none; }
.bron-label { font-family: var(--d); font-size: 15px; font-weight: 500; margin-bottom: 4px; }
.bron-duiding { font-size: 14px; font-weight: 300; color: var(--mid); line-height: 1.6; margin-bottom: 4px; }
.bron-oa { font-size: 12px; color: var(--soft); }

/* ── Gesprek grid ── */
.gesprek-grid {
  min-height: 60vh; display: grid; grid-template-columns: 1fr 1fr;
  padding-right: 60px; position: relative; z-index: 1;
}
.gesprek-left { display: flex; flex-direction: column; justify-content: center; padding: 160px 56px 80px 32px; }
.gesprek-right { display: flex; flex-direction: column; justify-content: center; padding: 160px 40px 80px 56px; background: var(--warm); }
.g-headline { font-family: var(--d); font-size: clamp(24px, 3vw, 34px); font-weight: 600; letter-spacing: -0.02em; margin-bottom: 20px; }
.g-body { font-size: 17px; font-weight: 300; line-height: 1.8; color: var(--mid); max-width: 440px; }
.g-contact-block { margin-bottom: 32px; }
.g-contact-label { font-family: var(--d); font-size: 11px; font-weight: 600; letter-spacing: 0.1em; color: var(--accent); margin-bottom: 6px; text-transform: uppercase; }
.g-contact-value a { font-family: var(--d); font-size: 18px; font-weight: 400; color: var(--fg); text-decoration: none; transition: color 0.2s; }
.g-contact-value a:hover { color: var(--accent); }

/* ── Footer — LinkedIn icon only ── */
.ft { position: relative; z-index: 1; padding: 64px 32px 56px; display: flex; justify-content: flex-start; }
.li-block {
  display: flex; align-items: center; justify-content: center;
  width: 52px; height: 52px; border: 1px solid var(--faint);
  text-decoration: none; color: var(--fg); cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
}
.li-block:hover { border-color: var(--accent); background: rgba(194,168,124,0.06); }
.li-icon { width: 23px; height: 23px; }

/* ═══ RESPONSIVE ═══ */
@media (max-width: 820px) {
  .nm { top: 16px; left: 20px; }
  .nm-name { font-size: 13px; }
  .nm-role { font-size: 10px; }
  .sidebar { padding-top: 0; }
  .sb-btn { padding: 10px 9px; font-size: 9px; }
  .voice-strip { font-size: 12px; padding: 9px 20px; }

  .sec-opening { padding: 80px 20px 60px; padding-right: 44px; }
  .o-bottom { padding-right: 0; justify-content: flex-start; margin-top: 40px; }
  .scroll-down { bottom: 20px; }

  .photo-reframe { flex-direction: column; padding: 60px 20px 80px; padding-right: 44px; gap: 24px; }
  .photo-dual { width: 100%; }
  .rf-block { padding: 32px 24px; }

  .photo-1b { flex-direction: column; padding: 0 20px; padding-right: 44px; }
  .photo-1b-img { width: 70%; margin-top: 0; }
  .photo-1b-text { max-width: 100%; }
  .photo-2a { width: 70%; margin-left: 0; }
  .photo-text-row { flex-direction: column; padding: 0 20px 60px; padding-right: 44px; gap: 20px; }
  .photo-text-row .photo-2a { width: 60%; }
  .photo-1b-img-sm { width: 60%; }
  .photo-center { padding: 0 20px; }
  .photo-center-img { width: 60%; }

  .sec-what { padding: 0 20px 100px; padding-right: 44px; }
  .wh-block { max-width: 100%; padding: 28px 20px; }
  .wh-item:nth-child(2), .wh-item:nth-child(3) { padding-left: 0; }

  .sec-mirror { padding: 80px 20px 100px; padding-right: 44px; }
  .mr-in { margin-left: 0; max-width: 100%; }
  .mq { grid-template-columns: 1fr; gap: 10px; }

  .sec-closing { padding: 48px 20px 36px; padding-right: 44px; }

  .pg-hero { padding: 140px 20px 40px; padding-right: 44px; }
  .txt-section { padding: 0 20px 60px; padding-right: 44px; }
  .txt-offset { margin-left: 0; }
  .txt-right { margin-left: 0; margin-right: 0; max-width: 100%; }

  .phase { padding: 0 20px; padding-right: 44px; }
  .aanpak-phases-wrap { flex-direction: column; padding-right: 44px; }
  .aanpak-phases-photo { width: 50%; }
  .phase-body { margin-left: 0; }
  .arc-section { padding: 80px 20px 100px; padding-right: 44px; }
  .arc-cols { flex-direction: column; gap: 20px; }

  .cyclus-duo { grid-template-columns: 1fr; padding-right: 44px; }
  .cyclus-block-verrichten { margin-left: 0; margin-top: 0; }

  .gesprek-grid { grid-template-columns: 1fr; padding-right: 44px; }
  .gesprek-left { padding: 140px 20px 32px; }
  .gesprek-right { padding: 32px 20px 48px; }

  .ft { padding: 40px 20px 44px; }
  .float { display: none; }
}
