* { margin: 0; padding: 0; box-sizing: border-box; }
:root {
  --black: #100c07;
  --white: #f5edd8;
  --gold: #d4a853;
  --gold-lt: #e8c070;
}
html, body {
  width: 100%; height: 100%;
  overflow: hidden;
  background: var(--black);
  color: var(--white);
  font-family: 'Cinzel', serif;
  cursor: none;
}

/* cursor via JS */
#ankh-ring.big { width: 42px !important; height: 42px !important; opacity: 0.45 !important; }

#light-canvas { position: fixed; inset: 0; z-index: 9; pointer-events: none; }
#burst-canvas { position: fixed; inset: 0; z-index: 450; pointer-events: none; }
#cosmos { position: fixed; inset: 0; z-index: 1; pointer-events: none; }

/* WEEGSCHAAL */
.s1-scale {
  position: absolute; right: 8%; top: 50%; transform: translateY(-50%);
  opacity: 0.12; pointer-events: none;
  filter: drop-shadow(0 0 32px rgba(240,225,190,0.55)) drop-shadow(0 0 10px rgba(240,196,112,0.40));
  animation: scaleFloat 6s ease-in-out infinite;
}
@keyframes scaleFloat {
  0%,100% { transform: translateY(-50%) rotate(-1deg); }
  50%      { transform: translateY(calc(-50% - 8px)) rotate(1deg); }
}
.s1-scale-sm {
  display: block; margin: 2.5rem 0 0;
  opacity: 0.22;
  filter: drop-shadow(0 0 22px rgba(240,225,190,0.60)) drop-shadow(0 0 7px rgba(240,196,112,0.45));
}

/* INTERACTIVE GLYPHS LAYER */
#glyph-layer { position: fixed; inset: 0; z-index: 3; pointer-events: none; }
.ig {
  position: absolute; pointer-events: all; cursor: none;
  transform: translate(-50%, -50%);
  transition: transform 0.3s, filter 0.3s;
}
.ig span { display: block; opacity: 0.22; transition: filter 0.4s, opacity 0.4s; }
.ig:hover span { filter: drop-shadow(0 0 12px rgba(212,168,83,0.7)); opacity: 0.7; }
.ig::after { content: ''; position: absolute; inset: -8px; border-radius: 50%; border: 1px solid rgba(212,168,83,0.0); transition: border-color 0.4s; pointer-events: none; }
.ig:hover::after { border-color: rgba(212,168,83,0.3); animation: ringPulse 1.4s infinite; }
@keyframes ringPulse { 0%,100% { transform: scale(1); opacity: 1; } 50% { transform: scale(1.3); opacity: 0; } }

/* ZOOM CARD */
/* zoom card verwijderd */

/* STAGE */
#stage { position: fixed; inset: 0; z-index: 4; }
.scene {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  opacity: 1; pointer-events: none; overflow: hidden;
  clip-path: inset(0 0 100% 0);
  transition: none;
}
.scene.active { pointer-events: all; clip-path: inset(0 0 0% 0); }
.scene.wipe-enter { animation: wipeEnter var(--wipe-dur, 0.62s) cubic-bezier(0.77,0,0.175,1) forwards; }
.scene.wipe-exit { pointer-events: none; animation: wipeExit var(--wipe-dur, 0.62s) cubic-bezier(0.77,0,0.175,1) forwards; }
.scene.wipe-enter-rev { animation: wipeEnterRev var(--wipe-dur, 0.62s) cubic-bezier(0.77,0,0.175,1) forwards; }
.scene.wipe-exit-rev { pointer-events: none; animation: wipeExitRev var(--wipe-dur, 0.62s) cubic-bezier(0.77,0,0.175,1) forwards; }
@keyframes wipeEnter { from { clip-path: inset(0 0 100% 0); } to { clip-path: inset(0 0 0% 0); } }
@keyframes wipeExit { from { clip-path: inset(0 0 0% 0); } to { clip-path: inset(100% 0 0 0); } }
@keyframes wipeEnterRev { from { clip-path: inset(100% 0 0 0); } to { clip-path: inset(0 0 0% 0); } }
@keyframes wipeExitRev { from { clip-path: inset(0 0 0% 0); } to { clip-path: inset(0 0 100% 0); } }

#overlay { position: fixed; inset: 0; z-index: 400; background: var(--black); pointer-events: none; opacity: 0; }
.scene-bg { position: absolute; inset: 0; z-index: 0; background: rgba(16,12,7,0.35); }
.scene-content { position: relative; z-index: 2; width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; padding: 6rem; }

/* UI CHROME */
#logo { position: fixed; top: 2.2rem; left: 2.8rem; z-index: 500; font-family: 'Fraunces', serif; font-size: 0.95rem; font-weight: 200; letter-spacing: 0.08em; color: var(--white); opacity: 0.5; transition: opacity 0.3s; cursor: none; }
#logo span { color: var(--gold); font-style: italic; }
#logo:hover { opacity: 1; }

/* TAALWISSELAAR */
#lang-switch {
  position: fixed; top: 2.15rem; right: 2.8rem; z-index: 500;
  display: flex; align-items: center; gap: 0.5rem;
}
.lang-btn {
  font-family: 'Cinzel', serif;
  font-size: 0.52rem; letter-spacing: 0.22em;
  background: none; border: none; cursor: none;
  color: rgba(245,237,216,0.28);
  transition: color 0.2s;
  padding: 0;
}
.lang-btn:hover { color: rgba(245,237,216,0.6); }
.lang-btn.active { color: var(--gold); }
.lang-sep {
  font-size: 0.5rem;
  color: rgba(212,168,83,0.2);
  pointer-events: none;
}

/* JUMP MENU */
#jump-menu {
  position: fixed; top: 1.6rem; left: 50%; z-index: 500;
  transform: translateX(-50%);
  display: flex; align-items: flex-end; gap: 0;
  background: rgba(16,12,7,0.5);
  border: 1px solid rgba(212,168,83,0.08);
  backdrop-filter: blur(16px);
  padding: 0.55rem 0.4rem 0.45rem;
  border-radius: 2px;
}
.jm-btn {
  display: flex; flex-direction: column; align-items: center; gap: 0.3rem;
  background: none; border: none; cursor: none;
  padding: 0 0.85rem;
  border-right: 1px solid rgba(212,168,83,0.06);
  transition: opacity 0.25s;
  opacity: 0.28;
}
.jm-btn:last-child { border-right: none; }
.jm-btn .jm-num {
  font-family: 'Fraunces', serif;
  font-size: 0.85rem; font-weight: 200;
  color: var(--white);
  letter-spacing: 0.04em;
  line-height: 1;
  transition: color 0.25s;
}
.jm-btn .jm-label {
  font-family: 'Cinzel', serif;
  font-size: 0.38rem; letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(245,237,216,0.5);
  line-height: 1;
  white-space: nowrap;
}
.jm-btn:hover { opacity: 0.55; }
.jm-btn.active {
  opacity: 1;
}
.jm-btn.active .jm-num { color: var(--gold); }
.jm-btn.active .jm-label { color: rgba(212,168,83,0.55); }

/* ===== SCENE TYPOGRAPHY ===== */
/* SCENE 0 */
.s0-inner { text-align: center; }
.s0-feather { width: 100px; height: 160px; margin: 0 auto 2.5rem; opacity: 0.7; }
.s0-name { font-family: 'Fraunces', serif; font-size: clamp(3.5rem, 8vw, 7rem); font-weight: 200; letter-spacing: -0.02em; line-height: 0.9; color: var(--white); }
.s0-name em { font-style: italic; color: var(--gold); }
.s0-sub { margin-top: 1.4rem; font-size: 0.62rem; letter-spacing: 0.25em; text-transform: uppercase; color: rgba(240,235,226,0.3); }
.s0-enter { margin-top: 2.5rem; font-size: 0.62rem; letter-spacing: 0.22em; text-transform: uppercase; color: rgba(240,235,226,0.25); cursor: none; }
.s0-enter span { animation: bounce 1.4s ease infinite; display: inline-block; }

.s0-nav-hint { margin-top: 1.2rem; display: flex; align-items: center; gap: 1.4rem; justify-content: center; font-size: 0.52rem; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(240,235,226,0.15); }

/* SCENE 1 */
.s1-inner { max-width: 860px; }
.s1-label { font-size: 0.55rem; letter-spacing: 0.28em; text-transform: uppercase; color: var(--gold); opacity: 0.65; margin-bottom: 1.8rem; display: flex; align-items: center; gap: 1rem; }
.s1-label::before { content: ''; width: 36px; height: 1px; background: var(--gold); opacity: 0.4; }
.s1-quote { font-family: 'Fraunces', serif; font-size: clamp(2.8rem, 5.5vw, 5rem); font-weight: 200; line-height: 1.05; letter-spacing: -0.02em; margin-bottom: 2.5rem; }
.s1-quote em { font-style: italic; color: var(--gold); }
.s1-body { font-family: 'DM Sans', sans-serif; font-size: 1rem; line-height: 1.85; color: rgba(240,235,226,0.55); max-width: 560px; }
.s1-sig { margin-top: 2rem; font-family: 'Fraunces', serif; font-style: italic; font-size: 1rem; color: rgba(240,235,226,0.65); }

/* SCENE 2 — 6 diensten, 3-col grid with flip cards */
.s2-inner { width: 100%; max-width: 1100px; }
.s2-headline { font-family: 'Fraunces', serif; font-size: clamp(1.6rem, 3vw, 2.8rem); font-weight: 200; letter-spacing: -0.01em; margin-bottom: 2.5rem; color: var(--white); }
.s2-headline em { font-style: italic; color: var(--gold); }
.s2-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 1px; background: rgba(212,168,83,0.07); }
.s2-item {
  background: rgba(16,12,7,0.6);
  padding: 0;
  position: relative;
  cursor: none;
  min-height: 200px;
  perspective: 900px;
  overflow: hidden;
}
.s2-front, .s2-back {
  position: absolute; inset: 0;
  padding: 2rem 1.8rem;
  backface-visibility: hidden;
  transition: transform 0.65s cubic-bezier(0.22,1,0.36,1);
  display: flex; flex-direction: column; justify-content: space-between;
}
.s2-front { transform: rotateY(0deg); }
.s2-back { transform: rotateY(180deg); background: rgba(16,12,7,0.95); border: 1px solid rgba(212,168,83,0.12); }
.s2-item:hover .s2-front { transform: rotateY(-180deg); }
.s2-item:hover .s2-back { transform: rotateY(0deg); }
.s2-num { font-size: 0.52rem; letter-spacing: 0.2em; color: rgba(212,168,83,0.35); margin-bottom: 1.2rem; }
.s2-title { font-family: 'Fraunces', serif; font-size: 1.25rem; font-weight: 200; color: var(--white); margin-bottom: 0.5rem; }
.s2-desc { font-family: 'DM Sans', sans-serif; font-size: 0.82rem; line-height: 1.7; color: rgba(240,235,226,0.55); }
.s2-back-label { font-size: 0.48rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); opacity: 0.55; margin-bottom: 1rem; }
.s2-compare { display: flex; flex-direction: column; gap: 0.8rem; flex: 1; justify-content: center; }
.s2-without { font-family: 'DM Sans', sans-serif; font-size: 0.78rem; color: rgba(240,235,226,0.28); line-height: 1.5; }
.s2-without::before { content: '✕ '; color: rgba(240,100,80,0.4); }
.s2-with { font-family: 'DM Sans', sans-serif; font-size: 0.78rem; color: rgba(240,196,112,0.75); line-height: 1.5; }
.s2-with::before { content: '✓ '; color: var(--gold-lt); }
.s2-divider { width: 24px; height: 1px; background: rgba(212,168,83,0.2); margin: 0.4rem 0; }
.s2-agents-list { display: flex; flex-direction: column; gap: 0.75rem; flex: 1; justify-content: center; }
.s2-agent-row { display: flex; align-items: flex-start; gap: 0.75rem; }
.s2-agent-letter { font-family: 'Fraunces', serif; font-size: 1.4rem; font-weight: 200; color: var(--gold); opacity: 0.5; line-height: 1; flex-shrink: 0; width: 1rem; }
.s2-agent-name { font-family: 'Cinzel', serif; font-size: 0.52rem; letter-spacing: 0.14em; color: rgba(245,237,216,0.65); margin-bottom: 0.2rem; }
.s2-agent-desc { font-family: 'DM Sans', sans-serif; font-size: 0.72rem; color: rgba(245,237,216,0.32); line-height: 1.4; }
.s2-flip-hint { font-size: 0.42rem; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(212,168,83,0.2); margin-top: 0.8rem; text-align: right; }

/* SCENE 3 — DATA MATURITY CHECK */
.s3-check { max-width: 680px; width: 100%; }
.mc-kicker { font-size: 0.55rem; letter-spacing: 0.28em; text-transform: uppercase; color: var(--gold); opacity: 0.65; margin-bottom: 1.8rem; display: flex; align-items: center; gap: 1rem; }
.mc-kicker::before { content: ''; width: 36px; height: 1px; background: var(--gold); opacity: 0.4; }
.mc-title { font-family: 'Fraunces', serif; font-size: clamp(2rem, 4vw, 3.4rem); font-weight: 200; letter-spacing: -0.01em; line-height: 1.05; margin-bottom: 0.8rem; }
.mc-title em { font-style: italic; color: var(--gold); }
.mc-sub { font-family: 'DM Sans', sans-serif; font-size: 0.88rem; color: rgba(240,235,226,0.4); margin-bottom: 2.5rem; }
/* Progress bar */
.mc-progress { display: flex; gap: 6px; margin-bottom: 2.8rem; }
.mc-dot { height: 2px; flex: 1; background: rgba(212,168,83,0.15); border-radius: 1px; transition: background 0.4s; }
.mc-dot.done { background: var(--gold); }
.mc-dot.active { background: rgba(212,168,83,0.5); }
/* Question */
.mc-question { font-family: 'Fraunces', serif; font-size: 1.4rem; font-weight: 200; margin-bottom: 1.8rem; color: var(--white); min-height: 2.2rem; transition: opacity 0.3s; }
.mc-options { display: grid; grid-template-columns: 1fr 1fr; gap: 0.6rem; }
.mc-opt {
  background: rgba(212,168,83,0.04);
  border: 1px solid rgba(212,168,83,0.12);
  padding: 0.9rem 1.2rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.82rem;
  color: rgba(240,235,226,0.6);
  cursor: none;
  text-align: left;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
  line-height: 1.4;
}
.mc-opt:hover { background: rgba(212,168,83,0.1); border-color: rgba(212,168,83,0.35); color: var(--white); }
.mc-opt.selected { background: rgba(212,168,83,0.12); border-color: var(--gold); color: var(--gold-lt); }
/* Result */
.mc-result { display: none; }
.mc-result.visible { display: block; animation: sceneIn 0.6s ease forwards; }
.mc-result-bar { height: 2px; margin-bottom: 2.2rem; transition: width 1.2s cubic-bezier(0.22,1,0.36,1); }
.mc-level { font-size: 0.52rem; letter-spacing: 0.28em; text-transform: uppercase; margin-bottom: 0.6rem; }
.mc-level-name { font-family: 'Fraunces', serif; font-size: 3.2rem; font-weight: 200; letter-spacing: -0.02em; margin-bottom: 1.2rem; }
.mc-level-desc { font-family: 'DM Sans', sans-serif; font-size: 0.95rem; line-height: 1.8; color: rgba(240,235,226,0.55); max-width: 480px; margin-bottom: 2rem; }
.mc-cta-row { display: flex; gap: 1rem; align-items: center; }
.mc-btn { font-family: 'DM Mono', monospace; font-size: 0.62rem; letter-spacing: 0.12em; text-transform: uppercase; padding: 0.8rem 2rem; background: var(--gold); color: var(--black); cursor: none; transition: background 0.2s; border: none; }
.mc-btn:hover { background: var(--gold-lt); }
.mc-reset { font-size: 0.55rem; letter-spacing: 0.12em; color: rgba(240,235,226,0.25); cursor: none; text-decoration: none; transition: color 0.2s; background: none; border: none; }
.mc-reset:hover { color: rgba(240,235,226,0.6); }

/* SCENES 4-7 agent */

/* SCENE 4 — PORTFOLIO */
.pf-inner { width: 100%; max-width: 1100px; }
.pf-label { font-size: 0.55rem; letter-spacing: 0.28em; text-transform: uppercase; color: var(--gold); opacity: 0.65; margin-bottom: 0.6rem; display: flex; align-items: center; gap: 1rem; }
.pf-label::before { content: ''; width: 36px; height: 1px; background: var(--gold); opacity: 0.4; }
.pf-headline { font-family: 'Fraunces', serif; font-size: clamp(2rem,3.5vw,3.2rem); font-weight: 200; letter-spacing: -0.01em; margin-bottom: 3rem; }
.pf-headline em { font-style: italic; color: var(--gold); }
/* Counters row */
.pf-counters { display: grid; grid-template-columns: repeat(4,1fr); gap: 0; border: 1px solid rgba(212,168,83,0.1); margin-bottom: 3rem; }
.pf-counter { padding: 1.8rem 1.5rem; border-right: 1px solid rgba(212,168,83,0.08); }
.pf-counter:last-child { border-right: none; }
.pf-num { font-family: 'Fraunces', serif; font-size: 3rem; font-weight: 200; color: var(--gold-lt); line-height: 1; margin-bottom: 0.3rem; }
.pf-num sup { font-size: 1.2rem; opacity: 0.6; }
.pf-clabel { font-size: 0.52rem; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(240,235,226,0.28); }
/* Case cards */
.pf-cases { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: rgba(212,168,83,0.07); }
.pf-case { background: rgba(16,12,7,0.6); padding: 1.8rem; transition: background 0.3s; position: relative; overflow: hidden; }
.pf-case:hover { background: rgba(212,168,83,0.04); }
.pf-tag { font-size: 0.48rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); opacity: 0.55; margin-bottom: 1rem; }
.pf-case-title { font-family: 'Fraunces', serif; font-size: 1.15rem; font-weight: 200; color: var(--white); margin-bottom: 0.5rem; }
.pf-case-desc { font-family: 'DM Sans', sans-serif; font-size: 0.8rem; line-height: 1.65; color: rgba(240,235,226,0.42); margin-bottom: 1.2rem; }
/* Mini bar chart inside case card */
.pf-chart { display: flex; align-items: flex-end; gap: 4px; height: 40px; }
.pf-bar { flex: 1; background: rgba(212,168,83,0.12); border-top: 1px solid rgba(212,168,83,0.3); transition: height 1.2s cubic-bezier(0.22,1,0.36,1); }
.pf-bar.gold { background: rgba(212,168,83,0.25); border-color: var(--gold); }

/* SCENE 9 pricing */
.s7-inner { width: 100%; max-width: 980px; }
.s7-label { font-size: 0.58rem; letter-spacing: 0.25em; text-transform: uppercase; color: var(--gold); opacity: 0.65; margin-bottom: 2.5rem; }
.s7-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: rgba(212,168,83,0.07); }
.s7-plan { background: rgba(16,12,7,0.75); padding: 2.8rem 2rem; position: relative; transition: background 0.3s; backdrop-filter: blur(4px); }
.s7-plan:hover { background: rgba(212,168,83,0.04); }
.s7-plan.featured { background: rgba(212,168,83,0.06); }
.s7-plan.featured::before { content: 'POPULAIR'; position: absolute; top: 1.2rem; right: 1.2rem; font-size: 0.48rem; letter-spacing: 0.18em; color: var(--black); background: var(--gold); padding: 0.22rem 0.55rem; }
.s7-plan-name { font-family: 'Fraunces', serif; font-size: 1.7rem; font-weight: 200; color: var(--white); margin-bottom: 0.3rem; }
.s7-price { font-family: 'Fraunces', serif; font-size: 2.8rem; font-weight: 200; color: var(--white); margin-bottom: 0.2rem; line-height: 1; }
.s7-price em { font-size: 0.95rem; font-style: normal; color: rgba(240,235,226,0.28); }
.s7-cycle { font-size: 0.58rem; letter-spacing: 0.1em; color: rgba(240,235,226,0.22); margin-bottom: 1.8rem; }
.s7-feats { list-style: none; display: flex; flex-direction: column; gap: 0.7rem; }
.s7-feats li { font-family: 'DM Sans', sans-serif; font-size: 0.88rem; color: rgba(240,235,226,0.72); display: flex; align-items: center; gap: 0.65rem; }
.s7-feats li::before { content: ''; width: 4px; height: 1px; background: var(--gold); opacity: 0.5; flex-shrink: 0; }
.s7-trial { font-size: 0.52rem; letter-spacing: 0.14em; color: rgba(212,168,83,0.45); margin-top: 1.8rem; }

/* SCENE 10 — FREELANCE PATHS */
.fl-inner { width: 100%; max-width: 1000px; }
.fl-label { font-size: 0.55rem; letter-spacing: 0.28em; text-transform: uppercase; color: var(--gold); opacity: 0.65; margin-bottom: 0.6rem; display: flex; align-items: center; gap: 1rem; }
.fl-label::before { content: ''; width: 36px; height: 1px; background: var(--gold); opacity: 0.4; }
.fl-headline { font-family: 'Fraunces', serif; font-size: clamp(1.8rem,3vw,3rem); font-weight: 200; letter-spacing: -0.01em; margin-bottom: 3rem; }
.fl-headline em { font-style: italic; color: var(--gold); }
.fl-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: rgba(212,168,83,0.07); }
.fl-path { background: rgba(16,12,7,0.6); padding: 3rem 2.8rem; position: relative; transition: background 0.3s; }
.fl-path:hover { background: rgba(212,168,83,0.04); }
.fl-path-icon { font-family: 'Fraunces', serif; font-size: 3.5rem; font-weight: 200; color: var(--gold); opacity: 0.18; margin-bottom: 1.2rem; line-height: 1; }
.fl-path-name { font-family: 'Fraunces', serif; font-size: 1.6rem; font-weight: 200; color: var(--white); margin-bottom: 0.4rem; }
.fl-path-sub { font-size: 0.55rem; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(212,168,83,0.5); margin-bottom: 1.5rem; }
.fl-path-desc { font-family: 'DM Sans', sans-serif; font-size: 0.88rem; line-height: 1.75; color: rgba(240,235,226,0.48); margin-bottom: 2rem; }
.fl-list { list-style: none; display: flex; flex-direction: column; gap: 0.55rem; margin-bottom: 2rem; }
.fl-list li { font-family: 'DM Sans', sans-serif; font-size: 0.82rem; color: rgba(240,235,226,0.55); display: flex; align-items: center; gap: 0.7rem; }
.fl-list li::before { content: ''; width: 4px; height: 1px; background: var(--gold); opacity: 0.5; flex-shrink: 0; }
.fl-path-cta { font-family: 'DM Mono', monospace; font-size: 0.58rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); opacity: 0.65; transition: opacity 0.2s; cursor: none; }
.fl-path:hover .fl-path-cta { opacity: 1; }
/* Weegschaal decoration */
.fl-scale { position: absolute; top: 2rem; right: 2rem; opacity: 0.06; }

/* SCENE 11 CTA */
.s11-inner { text-align: center; }
.s11-tag { font-size: 0.58rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold); opacity: 0.45; margin-bottom: 1.8rem; }
.s11-title { font-family: 'Fraunces', serif; font-size: clamp(3rem,6vw,5.5rem); font-weight: 200; letter-spacing: -0.02em; line-height: 0.95; margin-bottom: 1.6rem; }
.s11-title em { font-style: italic; color: var(--gold); }
.s11-sub { font-family: 'DM Sans', sans-serif; font-size: 0.95rem; line-height: 1.8; color: rgba(240,235,226,0.45); max-width: 440px; margin: 0 auto 2.5rem; }
.s11-cta { display: inline-block; font-family: 'DM Mono', monospace; font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase; padding: 1rem 2.8rem; background: var(--gold); color: var(--black); text-decoration: none; transition: background 0.2s; cursor: none; }
.s11-cta:hover { background: var(--gold-lt); }
.s11-secondary { margin-top: 1.2rem; font-family: 'DM Sans', sans-serif; font-size: 0.9rem; color: rgba(240,235,226,0.40); }
.s11-secondary a { color: var(--gold); text-decoration: none; opacity: 0.65; }
.s11-details { margin-top: 1rem; font-size: 0.52rem; letter-spacing: 0.22em; text-transform: uppercase; color: rgba(240,235,226,0.18); }

/* SCENE 9 — OVER ORNIEL */
.om-inner { max-width: 900px; width: 100%; }
.om-label { font-size: 0.55rem; letter-spacing: 0.28em; text-transform: uppercase; color: var(--gold); opacity: 0.65; margin-bottom: 0.8rem; display: flex; align-items: center; gap: 1rem; }
.om-label::before { content: ''; width: 36px; height: 1px; background: var(--gold); opacity: 0.4; }
.om-headline { font-family: 'Fraunces', serif; font-size: clamp(2.4rem, 4.5vw, 4.2rem); font-weight: 200; letter-spacing: -0.02em; line-height: 1.0; margin-bottom: 2.8rem; }
.om-headline em { font-style: italic; color: var(--gold); }
.om-stats { display: flex; align-items: center; gap: 0; margin-bottom: 2.8rem; border: 1px solid rgba(212,168,83,0.1); }
.om-stat { padding: 1.4rem 2.4rem; text-align: center; }
.om-stat-num { font-family: 'Fraunces', serif; font-size: 2.6rem; font-weight: 200; color: var(--gold-lt); line-height: 1; }
.om-stat-num span { font-size: 1.2rem; opacity: 0.6; }
.om-stat-unit { font-size: 0.48rem; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(212,168,83,0.4); margin: 0.2rem 0 0.4rem; }
.om-stat-label { font-size: 0.58rem; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(245,237,216,0.35); }
.om-stat-div { width: 1px; height: 60px; background: rgba(212,168,83,0.12); flex-shrink: 0; }
.om-body { display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; margin-bottom: 2.2rem; }
.om-body p { font-family: 'DM Sans', sans-serif; font-size: 0.9rem; line-height: 1.85; color: rgba(245,237,216,0.52); }
.om-tools { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 2rem; }
.om-tools span { font-size: 0.48rem; letter-spacing: 0.18em; text-transform: uppercase; border: 1px solid rgba(212,168,83,0.18); padding: 0.35rem 0.85rem; color: rgba(212,168,83,0.5); }
.om-sig { font-size: 0.52rem; letter-spacing: 0.22em; text-transform: uppercase; color: rgba(245,237,216,0.2); display: flex; align-items: center; gap: 1.5rem; }
.om-linkedin { color: rgba(212,168,83,0.45); text-decoration: none; border-bottom: 1px solid rgba(212,168,83,0.2); padding-bottom: 1px; transition: color 0.2s, border-color 0.2s; cursor: none; }
.om-linkedin:hover { color: var(--gold-lt); border-color: var(--gold); }

/* VERHAAL */
.vr-inner { max-width: 860px; width: 100%; }
.vr-label { font-size: 0.55rem; letter-spacing: 0.28em; text-transform: uppercase; color: var(--gold); opacity: 0.65; margin-bottom: 0.6rem; display: flex; align-items: center; gap: 1rem; }
.vr-label::before { content: ''; width: 36px; height: 1px; background: var(--gold); opacity: 0.4; }
.vr-headline { font-family: 'Fraunces', serif; font-size: clamp(2.4rem,4.5vw,4.2rem); font-weight: 200; letter-spacing: -0.02em; line-height: 1.0; margin-bottom: 3.5rem; }
.vr-headline em { font-style: italic; color: var(--gold); }
.vr-steps { display: flex; flex-direction: column; gap: 0; }
.vr-step { display: grid; grid-template-columns: 44px 2rem 1fr; gap: 0 1.4rem; align-items: start; }
.vr-scale { opacity: 0.55; flex-shrink: 0; }
.vr-step-num { font-size: 0.48rem; letter-spacing: 0.22em; color: rgba(212,168,83,0.4); padding-top: 0.3rem; }
.vr-step-title { font-family: 'Fraunces', serif; font-size: 1.5rem; font-weight: 200; color: var(--white); margin-bottom: 0.5rem; line-height: 1.1; grid-column: 3; }
.vr-step-desc { font-family: 'DM Sans', sans-serif; font-size: 0.9rem; line-height: 1.8; color: rgba(240,235,226,0.5); grid-column: 3; }
.vr-step .vr-scale { grid-row: 1 / 3; }
.vr-step .vr-step-num { grid-row: 1; grid-column: 2; }
.vr-connector { padding: 0.8rem 0 0.8rem 22px; opacity: 0.4; }

/* ANIMS */
@keyframes sceneIn { from { opacity:0; transform:translateY(24px); } to { opacity:1; transform:translateY(0); } }
.feather-line { stroke-dasharray: 400; stroke-dashoffset: 400; animation: drawLine 1.6s cubic-bezier(0.22,1,0.36,1) forwards; }
@keyframes drawLine { to { stroke-dashoffset: 0; } }
@keyframes bounce { 0%,100%{transform:translateY(0)} 50%{transform:translateY(5px)} }
@keyframes pulse { 0%,100%{opacity:0.45} 50%{opacity:0.9} }
@keyframes barbIn { to { stroke-dashoffset: 0; } }
@keyframes shaftShimmer { 0%,100% { opacity:1; filter:brightness(1); } 50% { opacity:0.85; filter:brightness(1.4); } }
@keyframes featherFadeIn { from { opacity:0; transform:translateY(12px); } to { opacity:0.9; transform:translateY(0); } }

/* TEXT READABILITY */
.scene-content * { text-shadow: 0 0 18px rgba(240,225,190,0.38); }
.scene-content h1, .scene-content h2,
.scene-content [class*="-title"], .scene-content [class*="-name"],
.scene-content [class*="-quote"], .scene-content [class*="-headline"] {
  text-shadow: 0 0 32px rgba(240,225,190,0.60), 0 0 10px rgba(240,196,112,0.40);
}
.scene-content em, .scene-content [class*="-label"],
.scene-content [class*="-plan"], .scene-content [class*="-kicker"],
.scene-content [class*="-tag"] {
  text-shadow: 0 0 22px rgba(212,168,83,0.60), 0 0 7px rgba(240,196,112,0.45);
}
.scene-content [class*="-num"], .scene-content [class*="-sub"],
.scene-content [class*="-cycle"], .scene-content [class*="-trial"],
.scene-content [class*="-sig"], .scene-content [class*="-secondary"],
.scene-content li { text-shadow: 0 0 14px rgba(240,225,190,0.32); }
/* zoom card text shadows verwijderd */
#logo, .nav-links a { text-shadow: 0 0 14px rgba(240,225,190,0.35); }

/* TEXT STREAK */
.text-exit-down { animation: textExitDown var(--wipe-dur, 0.62s) cubic-bezier(0.77,0,0.175,1) forwards; }
.text-exit-up { animation: textExitUp var(--wipe-dur, 0.62s) cubic-bezier(0.77,0,0.175,1) forwards; }
.text-enter-down { animation: textEnterDown var(--wipe-dur, 0.62s) cubic-bezier(0.22,1,0.36,1) forwards; }
.text-enter-up { animation: textEnterUp var(--wipe-dur, 0.62s) cubic-bezier(0.22,1,0.36,1) forwards; }
@keyframes textExitDown { 0% { transform: translateY(0) scaleY(1); filter: blur(0px); opacity: 1; } 35% { transform: translateY(20px) scaleY(0.96); filter: blur(4px); opacity: 0.6; } 100% { transform: translateY(55px) scaleY(0.90); filter: blur(12px); opacity: 0; } }
@keyframes textExitUp { 0% { transform: translateY(0) scaleY(1); filter: blur(0px); opacity: 1; } 35% { transform: translateY(-20px) scaleY(0.96); filter: blur(4px); opacity: 0.6; } 100% { transform: translateY(-55px) scaleY(0.90); filter: blur(12px); opacity: 0; } }
@keyframes textEnterDown { 0% { transform: translateY(-45px) scaleY(0.92); filter: blur(10px); opacity: 0; } 50% { filter: blur(3px); opacity: 0.7; } 100% { transform: translateY(0) scaleY(1); filter: blur(0px); opacity: 1; } }
@keyframes textEnterUp { 0% { transform: translateY(45px) scaleY(0.92); filter: blur(10px); opacity: 0; } 50% { filter: blur(3px); opacity: 0.7; } 100% { transform: translateY(0) scaleY(1); filter: blur(0px); opacity: 1; } }

/* =============================================
   LANG SELECTOR — Split Screen
   ============================================= */
#lang-sel {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: #0f0d0a;
  display: flex;
  flex-direction: row;
  cursor: none;
  transition: opacity 0.65s ease;
}
#lang-sel.ls-hidden {
  opacity: 0;
  pointer-events: none;
}
#lang-canvas {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
#ls-cursor {
  position: fixed;
  pointer-events: none;
  z-index: 10001;
  transform: translate(-50%, -60%);
  opacity: 0;
  transition: opacity 0.2s;
}
.ls-half {
  position: absolute;
  top: 0; bottom: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: none;
  transition: left 0.55s cubic-bezier(0.34,1.2,0.64,1),
              right 0.55s cubic-bezier(0.34,1.2,0.64,1);
}
#ls-nl {
  left: 0; right: 50%;
}
#ls-en {
  left: 50%; right: 0;
}
#ls-nl:hover ~ #ls-en,
#ls-nl:focus ~ #ls-en { left: 65%; }
#lang-sel:has(#ls-nl:hover) #ls-nl { right: 35%; }
#lang-sel:has(#ls-en:hover) #ls-en { left: 35%; }
#lang-sel:has(#ls-nl:hover) #ls-divider { left: 65%; }
#lang-sel:has(#ls-en:hover) #ls-divider { left: 35%; }

#ls-divider {
  position: absolute;
  top: 0; bottom: 0;
  left: 50%;
  width: 1px;
  background: rgba(201,169,110,0.18);
  transform: translateX(-50%);
  transition: left 0.55s cubic-bezier(0.34,1.2,0.64,1);
  pointer-events: none;
  z-index: 2;
}
.ls-eyebrow {
  font-family: 'Cinzel', serif;
  font-size: 0.5rem;
  letter-spacing: 0.32em;
  color: rgba(201,169,110,0.28);
  text-transform: uppercase;
  margin-bottom: 1.8rem;
  transition: color 0.35s;
}
.ls-half:hover .ls-eyebrow { color: rgba(201,169,110,0.5); }
.ls-word {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 200;
  font-size: clamp(2.2rem, 5vw, 4rem);
  color: #c9a96e;
  line-height: 1;
  letter-spacing: 0.02em;
  transition: letter-spacing 0.45s ease;
  white-space: nowrap;
}
.ls-half:hover .ls-word { letter-spacing: 0.06em; }
.ls-rule {
  width: 28px;
  height: 1px;
  background: rgba(201,169,110,0.22);
  margin: 1.4rem 0;
  transition: width 0.45s ease, background 0.35s;
}
.ls-half:hover .ls-rule {
  width: 52px;
  background: rgba(201,169,110,0.55);
}
.ls-hint {
  font-family: 'Cinzel', serif;
  font-size: 0.46rem;
  letter-spacing: 0.3em;
  color: rgba(201,169,110,0);
  text-transform: uppercase;
  transition: color 0.4s;
}
.ls-half:hover .ls-hint { color: rgba(201,169,110,0.38); }
#ls-quote {
  position: absolute;
  bottom: 2.2rem;
  left: 50%;
  transform: translateX(-50%);
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 200;
  font-size: 0.75rem;
  color: rgba(201,169,110,0.2);
  letter-spacing: 0.07em;
  white-space: nowrap;
  transition: color 0.4s;
  pointer-events: none;
  z-index: 3;
}
#lang-sel:has(.ls-half:hover) #ls-quote { color: rgba(201,169,110,0.45); }

/* ── MOBIEL (<=640px) — verticale split ── */
@media (max-width: 640px) {
  #lang-sel { flex-direction: column; }
  #ls-nl { left: 0; right: 0; top: 0; bottom: 50%; }
  #ls-en { left: 0; right: 0; top: 50%; bottom: 0; }
  #ls-divider {
    top: 50%; bottom: auto;
    left: 0; right: 0; width: auto; height: 1px;
    transform: translateY(-50%);
    transition: top 0.55s cubic-bezier(0.34,1.2,0.64,1);
  }
  #lang-sel:has(#ls-nl:hover) #ls-nl,
  #lang-sel:has(#ls-nl:active) #ls-nl { bottom: 35%; }
  #lang-sel:has(#ls-en:hover) #ls-en,
  #lang-sel:has(#ls-en:active) #ls-en { top: 35%; }
  #lang-sel:has(#ls-nl:hover) #ls-divider,
  #lang-sel:has(#ls-nl:active) #ls-divider { top: 65%; }
  #lang-sel:has(#ls-en:hover) #ls-divider,
  #lang-sel:has(#ls-en:active) #ls-divider { top: 35%; }
  .ls-word { font-size: clamp(2rem, 8vw, 3rem); }
  #ls-quote { font-size: 0.65rem; bottom: auto; top: 50%; margin-top: -0.4rem; }
}

/* =============================================
   SCENE PADDING CLASSES
   ============================================= */
.sc-pad-lg { padding: 4rem 5rem; }
.sc-pad-md { padding: 3.5rem 4rem; }

/* =============================================
   RESPONSIVE — TABLET (<=900px)
   ============================================= */
@media (max-width: 900px) {
  /* Nav: verberg labels, kleiner */
  #jump-menu { padding: 0.4rem 0.2rem; }
  .jm-btn { padding: 0 0.5rem; }
  .jm-btn .jm-label { display: none; }

  /* Scene padding */
  .scene-content { padding: 3rem; }
  .sc-pad-lg { padding: 3rem; }
  .sc-pad-md { padding: 2.5rem; }

  /* S1 */
  .s1-inner { max-width: 100%; }

  /* S2 diensten: 2 kolommen ook op tablet */
  .s2-grid { grid-template-columns: repeat(2,1fr); }
  .s2-inner { max-width: 100%; }

  /* Portfolio counters: 4 → 2×2 */
  .pf-counters { grid-template-columns: repeat(2,1fr); }
  .pf-counter:nth-child(2) { border-right: none; }
  .pf-counter { border-bottom: 1px solid rgba(212,168,83,0.08); }
  .pf-cases { grid-template-columns: repeat(2,1fr); }
  .pf-inner { max-width: 100%; }

  /* S5 over: stats horizontaal behouden maar kleiner */
  .om-inner { max-width: 100%; }
  .om-stat-num { font-size: 2rem; }

  /* S7 samenwerken */
  .fl-inner { max-width: 100%; }
}

/* =============================================
   RESPONSIVE — TELEFOON (<=640px)
   ============================================= */
@media (max-width: 640px) {

  /* Verberg ankh cursor op touch */
  #ankh-cur, #ankh-ring { display: none; }

  /* Nav: nóg kleiner, alleen nummers */
  #jump-menu {
    top: auto; bottom: 1.2rem;
    transform: translateX(-50%);
    padding: 0.35rem 0.15rem;
  }
  .jm-btn { padding: 0 0.4rem; gap: 0; }
  .jm-btn .jm-num { font-size: 0.38rem; }

  /* Lang bar kleiner */
  #lang-bar { top: 0.8rem; right: 0.8rem; font-size: 0.45rem; }

  /* Scene padding */
  .scene-content { padding: 5rem 1.4rem 1.8rem; }
  .sc-pad-lg, .sc-pad-md { padding: 5rem 1.4rem 1.8rem; }

  /* Scene-num */
  #scene-num { font-size: 0.38rem; }

  /* S0 intro */
  .s0-feather { width: 60px; height: 96px; margin-bottom: 1.5rem; }
  .s0-nav-hint { display: none; }

  /* S1 filosofie */
  .s1-label { margin-bottom: 1.4rem; }
  .s1-quote { font-size: clamp(2rem, 7vw, 3.5rem); }
  .s1-body { font-size: 0.88rem; max-width: 100%; }

  /* S2 diensten: 2 → 1 kolom */
  .s2-grid { grid-template-columns: 1fr; }
  .s2-headline { font-size: clamp(1.8rem, 6vw, 3rem); margin-bottom: 1.5rem; }
  .s2-item { min-height: 160px; }

  /* Flip cards: klik i.p.v. hover op touch */
  .s2-item { cursor: pointer; }
  .s2-item.flipped .s2-front { opacity: 0; transform: rotateY(180deg); }
  .s2-item.flipped .s2-back  { opacity: 1; transform: rotateY(0deg); }

  /* S3 MC check */
  .mc-options { grid-template-columns: 1fr; }
  .mc-title { font-size: clamp(1.6rem, 6vw, 2.8rem); }
  .mc-level-name { font-size: 2.2rem; }
  .mc-level-desc { font-size: 0.85rem; }
  .mc-cta-row { flex-direction: column; align-items: flex-start; gap: 0.8rem; }

  /* S4 portfolio */
  .pf-counters { grid-template-columns: repeat(2,1fr); }
  .pf-cases { grid-template-columns: 1fr; }
  .pf-headline { font-size: clamp(1.8rem, 6vw, 3rem); }
  .pf-num { font-size: 2rem; }

  /* S5 over */
  .om-stats { flex-direction: column; }
  .om-stat { padding: 1.2rem 1.5rem; width: 100%; }
  .om-stat-div { width: 100%; height: 1px; }
  .om-headline { font-size: clamp(1.5rem, 5vw, 2.8rem); }
  .om-body p { font-size: 0.88rem; }
  .om-tools { gap: 0.4rem; }
  .om-tools span { font-size: 0.48rem; padding: 0.3rem 0.7rem; }

  /* S6 aanpak */
  .vr-headline { font-size: clamp(1.8rem, 6vw, 3rem); }
  .vr-step-title { font-size: 0.85rem; }
  .vr-step-desc { font-size: 0.82rem; }
  .vr-connector { display: none; }

  /* S7 samenwerken */
  .fl-grid { grid-template-columns: 1fr; }
  .fl-path { padding: 2rem 1.4rem; }
  .fl-headline { font-size: clamp(1.8rem, 6vw, 3rem); }
  .fl-path-name { font-size: 1.2rem; }
  .fl-path-desc { font-size: 0.82rem; }
  .fl-list li { font-size: 0.82rem; }

  /* S8 afspraak */
  .s11-title { font-size: clamp(2rem, 7vw, 4rem); }
  .s11-sub { font-size: 0.85rem; max-width: 100%; }
  .s11-cta { padding: 0.85rem 1.6rem; font-size: 0.62rem; }
  .s11-secondary { font-size: 0.72rem; }
}

/* =============================================
   TOUCH: flip cards via tap (geen hover)
   ============================================= */
@media (hover: none) {
  /* Verberg desktop hover hints */
  .s2-flip-hint { display: none; }
  /* Toon tap hint */
  .s2-item::after {
    content: 'tik';
    font-family: 'Cinzel', serif;
    font-size: 0.38rem;
    letter-spacing: 0.2em;
    color: rgba(212,168,83,0.25);
    text-transform: uppercase;
    position: absolute;
    bottom: 1rem; right: 1.2rem;
  }
}

/* =============================================
   MOBILE FIXES v2 — logo, S3, S5, S6, S8
   ============================================= */

/* ── Logo & chrome ── */
@media (max-width: 640px) {
  /* Logo: centreer op mobiel */
  #logo {
    left: 50%;
    transform: translateX(-50%);
    top: 1.1rem;
    font-size: 0.82rem;
    white-space: nowrap;
  }
  /* Lang-switch: rechts bovenaan, compacter */
  #lang-switch {
    top: 1rem;
    right: 1rem;
  }
  /* Sound knop + scene nummer: iets hoger zodat ze boven nav zweven */
  #sound-btn {
    bottom: 4.2rem;
    left: 1rem;
  }
  #scene-num {
    bottom: 4.2rem;
    right: 1rem;
    font-size: 0.36rem;
  }

  /* ── S3 MC Check ── */
  .s3-check { max-width: 100%; padding: 0 0.2rem; }
  .mc-kicker { font-size: 0.48rem; margin-bottom: 1rem; }
  .mc-kicker::before { width: 20px; }
  .mc-sub { font-size: 0.82rem; margin-bottom: 1.8rem; }
  .mc-btn { font-size: 0.65rem; padding: 0.8rem 1.6rem; }
  .mc-opt { padding: 0.75rem 1rem; font-size: 0.75rem; }
  .mc-level-desc { max-width: 100%; font-size: 0.82rem; line-height: 1.65; }
  .mc-level-name { font-size: 2rem; }

  /* ── S5 Over ── */
  .om-body { grid-template-columns: 1fr; gap: 1rem; } /* BUG FIX: was 1fr 1fr */
  .om-sig {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.6rem;
    font-size: 0.75rem;
  }
  .om-stat-num { font-size: 1.8rem; }

  /* ── S6 Aanpak ── */
  /* Reorganiseer vr-step: icon verberg, stack vertikaal */
  .vr-step {
    grid-template-columns: 2rem 1fr;
    gap: 0 1rem;
  }
  .vr-step .vr-scale { display: none; }
  .vr-step .vr-step-num {
    grid-row: 1;
    grid-column: 1;
    padding-top: 0.15rem;
  }
  .vr-step-title {
    grid-row: 1;
    grid-column: 2;
    font-size: 1.1rem;
    margin-bottom: 0.4rem;
  }
  .vr-step-desc {
    grid-row: 2;
    grid-column: 2;
    font-size: 0.8rem;
    line-height: 1.7;
  }
  .vr-steps { gap: 1.4rem; }
  .vr-label { font-size: 0.48rem; }
  .vr-label::before { width: 20px; }

  /* ── S8 Afspraak ── */
  .s11-tag { font-size: 0.45rem; }
  .s11-secondary {
    font-size: 0.68rem;
    word-break: break-word;
    overflow-wrap: anywhere;
    padding: 0 0.5rem;
    line-height: 1.9;
  }
  .s11-secondary a { display: inline-block; }
  .s11-cta {
    display: inline-block;
    word-break: break-word;
    font-size: 0.58rem;
    padding: 0.8rem 1.2rem;
    max-width: 100%;
  }
  .s11-details { margin-top: 1.2rem; }
}

/* ── Extra klein (≤380px) ── */
@media (max-width: 380px) {
  .s0-name { font-size: clamp(2.5rem, 11vw, 4rem); }
  .s1-quote { font-size: clamp(1.8rem, 9vw, 3rem); }
  .om-tools span { font-size: 0.42rem; padding: 0.25rem 0.5rem; }
  .fl-path-name { font-size: 1rem; }
  .mc-level-name { font-size: 1.7rem; }
}

/* =============================================
   OVER — Principes (vervangt stats + tools)
   ============================================= */
.om-principles {
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
  margin: 2.8rem 0 2.8rem;
  max-width: 680px;
}
.om-principle {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 200;
  font-size: clamp(1.05rem, 2vw, 1.5rem);
  color: rgba(240,235,226,0.72);
  padding-left: 1.4rem;
  border-left: 1px solid rgba(201,169,110,0.3);
  line-height: 1.45;
  transition: border-color 0.3s, color 0.3s;
}
.om-principle:hover {
  border-left-color: rgba(201,169,110,0.7);
  color: rgba(240,235,226,0.92);
}
.om-location {
  font-family: 'Cinzel', serif;
  font-size: 0.48rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(201,169,110,0.35);
}

@media (max-width: 640px) {
  .om-principles { gap: 1.4rem; margin: 2rem 0 2rem; }
  .om-principle { font-size: clamp(0.95rem, 4vw, 1.2rem); padding-left: 1rem; }
  .om-location { font-size: 0.42rem; }
}
