/* ── Design tokens ─────────────────────────────────────── */
:root {
  --bg: #f4f1ea;
  --paper: #ffffff;
  --dark: #1a1a1f;
  --ink: #15151a;
  --ink-dim: #6a6868;
  --ink-faint: #a09c92;
  --line: #ddd8cc;
  --line-strong: #b8b2a3;
  --accent: #ec681b;
  --accent-soft: #fdf2eb;

  --hand: 'Caveat', cursive;
  --mono: 'JetBrains Mono', ui-monospace, monospace;
  --sans: 'Inter', system-ui, sans-serif;
}

/* ── Reset & base ──────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { font-size: 16px; scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

main {
  max-width: var(--page-width, 1200px);
  margin: 0 auto;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
ul { list-style: none; }

/* ── Placeholders ──────────────────────────────────────── */
.ph {
  border: 1px dashed var(--line-strong);
  background:
    repeating-linear-gradient(135deg,
      transparent 0 9px,
      rgba(0,0,0,0.03) 9px 10px);
  color: var(--ink-dim);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 12px;
}
.ph.dark {
  background:
    repeating-linear-gradient(135deg,
      rgba(255,255,255,0.04) 0 9px,
      rgba(255,255,255,0.08) 9px 10px),
    var(--dark);
  color: rgba(255,255,255,0.6);
  border-color: rgba(255,255,255,0.18);
}
.ph-tag {
  border: 1px solid currentColor;
  padding: 4px 8px;
  background: rgba(255,255,255,0.6);
}
.ph.dark .ph-tag { background: rgba(0,0,0,0.4); }

/* ── Utility components ────────────────────────────────── */
.pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 1px solid var(--line-strong);
  padding: 6px 12px;
  border-radius: 999px;
  font-family: var(--mono);
  font-size: 11px;
  color: var(--ink-dim);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: var(--paper);
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 22px;
  border: 1.5px solid var(--ink);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.01em;
  border-radius: 2px;
  background: transparent;
  cursor: pointer;
  transition: opacity 0.15s;
  text-decoration: none;
}
.btn:hover { opacity: 0.8; }
.btn.primary {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}
.btn.dark-btn {
  background: var(--ink);
  border-color: var(--ink);
  color: #fff;
}
.btn.ghost { border-color: var(--line-strong); color: var(--ink-dim); }
.btn.white { border-color: #fff; color: #fff; }

/* ── Solo button section ───────────────────────────────── */
.solo-btn-section {
  padding: 72px 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--bg);
  border-top: 1px solid var(--line);
}
.solo-btn-section .btn {
  font-size: 18px;
  font-weight: 700;
  padding: 22px 64px;
  min-width: 280px;
  text-align: center;
  letter-spacing: -0.01em;
}

/* ── Navigation ────────────────────────────────────────── */
header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: var(--bg);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .3s, background .3s, border-color .3s;
}
header.scrolled {
  box-shadow: 0 4px 32px rgba(21,21,26,.10);
  background: rgba(244,241,234,.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom-color: transparent;
}
header.scrolled .topbar { padding-top: 10px; padding-bottom: 10px; }
header.scrolled .topbar-logo img { height: calc(var(--logo-h, 48px) * 0.75); }

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 40px;
  max-width: var(--page-width, 1200px);
  margin: 0 auto;
  transition: padding .3s;
}
.topbar-logo img { transition: height .3s; }

.topbar-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  color: inherit;
}
.topbar-logo img { height: var(--logo-h, 48px); width: auto; }
.topbar-brand { font-size: 13px; font-weight: 700; letter-spacing: 0.02em; text-transform: uppercase; line-height: 1; }
.topbar-sub { font-family: var(--mono); font-size: 10px; color: var(--ink-dim); letter-spacing: 0.12em; margin-top: 3px; }

.topbar-right { display: flex; align-items: center; gap: 28px; }

.topbar-nav { display: flex; gap: 24px; }
.topbar-nav a {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
  text-decoration: none;
  transition: color 0.15s;
}
.topbar-nav a:hover { color: var(--accent); }
.topbar-nav a.active {
  color: var(--accent);
  text-decoration: underline;
  text-decoration-color: var(--accent);
  text-decoration-thickness: 2px;
  text-underline-offset: 6px;
}

.topbar-cta { padding: 10px 18px; font-size: 13px; }

/* Hamburger */
.menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.menu-btn span { display: block; width: 22px; height: 2px; background: var(--ink); transition: all 0.2s; }

/* Mobile menu */
.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 0;
  background: var(--bg);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.3s ease;
}
.mobile-nav.open { max-height: 400px; }
.mobile-nav a {
  display: block;
  padding: 16px 40px;
  font-size: 16px;
  font-weight: 500;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
  color: var(--ink);
}
.mobile-nav a.active { color: var(--accent); }
.mobile-nav a:hover { background: var(--paper); }
.mobile-nav .mobile-cta {
  margin: 20px 40px;
  display: inline-flex;
}

/* ── Footer ────────────────────────────────────────────── */
.footer {
  background: var(--dark);
  color: #fff;
  padding: 48px 40px 32px;
  max-width: var(--page-width, 1200px);
  margin: 0 auto;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto auto auto;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.footer h4 {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin: 0 0 16px;
  font-weight: 500;
}
.footer ul li, .footer ul a {
  color: #fff;
  text-decoration: none;
  font-size: 15px;
  line-height: 2.1;
}
.footer ul a:hover { color: var(--accent); }
.footer-tagline { max-width: 320px; color: rgba(255,255,255,0.7); font-size: 14px; line-height: 1.6; }
.footer-fine {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding-top: 24px;
  color: rgba(255,255,255,0.45);
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  flex-wrap: wrap;
  gap: 6px 20px;
}
.footer-fine a { color: rgba(255,255,255,0.45); }
.footer-fine a:hover { color: #fff; }
.footer-logo { height: 48px; margin-bottom: 20px; }
.footer-social-col { text-align: right; }
.footer-socials { display: flex; flex-direction: column; align-items: flex-end; gap: 2px; }
.footer-social-link {
  color: #fff;
  text-decoration: none;
  font-size: 15px;
  line-height: 2.1;
  transition: color .15s;
}
.footer-social-link:hover { color: var(--accent); }

/* ── Containers ────────────────────────────────────────── */
.container { max-width: var(--page-width, 1200px); margin: 0 auto; padding: 0 40px; }

/* ── Section: Hero ─────────────────────────────────────── */
.hero { padding: 60px 40px 0; }

/* ── Hero foto-slider ──────────────────────────────────── */
.hero-photo-slider { position: relative; overflow: hidden; border-radius: 2px; }
.hero-photo-track {
  display: flex;
  transition: transform .45s cubic-bezier(.4,0,.2,1);
  will-change: transform;
}
.hero-photo-slide { flex: 0 0 100%; min-width: 0; }
.hero-photo-slide .hero-photo,
.hero-photo-slide .ph.hero-photo { width: 100%; display: block; object-fit: cover; }

.hero-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,.85); border: none;
  width: 40px; height: 40px; border-radius: 50%;
  font-size: 17px; cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: background .15s; z-index: 10; padding: 0;
  backdrop-filter: blur(4px);
}
.hero-arrow:hover { background: var(--accent); color: #fff; }
.hero-arrow-prev { left: 12px; }
.hero-arrow-next { right: 12px; }

.hero-dots {
  position: absolute; bottom: 14px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 7px; z-index: 10;
}
.hero-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: rgba(255,255,255,.55); border: none; cursor: pointer; padding: 0;
  transition: background .2s, transform .2s;
}
.hero-dot.active { background: #fff; transform: scale(1.35); }
.hero-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
  font-family: var(--mono);
  font-size: 11px;
  color: var(--ink-dim);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: end;
}
.hero h1 {
  font-size: clamp(56px, 7vw, 104px);
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 0.92;
  margin: 0 0 32px;
}
.hero-highlight {
  background: var(--accent);
  color: #fff;
  padding: 0 14px;
  display: inline-block;
  transform: rotate(-1.5deg);
  margin: 0 4px;
}
.hero-underline {
  text-decoration: underline;
  text-decoration-color: var(--accent);
  text-decoration-thickness: 6px;
  text-underline-offset: 10px;
}
.hero-body {
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink-dim);
  max-width: 520px;
  margin: 0 0 32px;
}
.hero-ctas { display: flex; gap: 14px; align-items: center; flex-wrap: wrap; }

.hero-photo-wrap { position: relative; }
.hero-photo { height: 580px; border-radius: 2px; }
.hero-ticket {
  position: absolute;
  bottom: -24px;
  left: -24px;
  background: var(--accent);
  color: #fff;
  padding: 16px 20px;
  max-width: 240px;
  transform: rotate(-2deg);
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}
.hero-ticket-label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.hero-ticket-text {
  font-family: var(--hand);
  font-size: 24px;
  font-weight: 700;
  line-height: 1.1;
  margin-top: 4px;
}

/* ── Section: Trust strip ──────────────────────────────── */
.trust-strip {
  margin-top: 100px;
  background: var(--paper);
  padding: 20px 40px;
  display: flex;
  align-items: center;
  gap: 32px;
  overflow: hidden;
}
.trust-label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ink-dim);
  white-space: nowrap;
  flex-shrink: 0;
}
.trust-logos {
  flex: 1;
  min-width: 0;
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}
.trust-logos-inner {
  display: inline-flex;
  align-items: center;
  gap: 52px;
  width: max-content;
  animation: trust-scroll 28s linear infinite;
}
.trust-logos-inner:hover { animation-play-state: paused; }
.trust-logos-inner span {
  font-family: var(--sans);
  font-size: 18px;
  font-weight: 700;
  color: var(--ink-dim);
  letter-spacing: -0.01em;
  white-space: nowrap;
  opacity: 0.6;
  flex-shrink: 0;
}
@keyframes trust-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── Section: Differentiators ──────────────────────────── */
.why-section { padding: 100px 40px 60px; position: relative; }
.why-intro {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 60px;
  margin-bottom: 56px;
  align-items: end;
}
.why-h2 {
  font-size: clamp(40px, 4.5vw, 64px);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 0.95;
  margin: 20px 0 0;
}
.why-h2 .highlight {
  background: var(--accent);
  color: #fff;
  padding: 0 10px;
  transform: rotate(-1deg);
  display: inline-block;
}
.why-body { font-size: 17px; line-height: 1.6; color: var(--ink-dim); padding-top: 40px; }

.stickers {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.sticker {
  padding: 24px 22px;
  min-height: 240px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 14px;
  border: 2px solid var(--ink);
  position: relative;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}
.sticker:nth-child(even) { transform: translateY(24px); }
.sticker.paper { background: var(--paper); color: var(--ink); }
.sticker.orange { background: var(--accent); color: #fff; border-color: var(--accent); }
.sticker.charcoal { background: var(--dark); color: #fff; }
.sticker-num { font-family: var(--mono); font-size: 11px; letter-spacing: 0.15em; opacity: 0.7; }
.sticker h3 { font-size: 28px; font-weight: 800; letter-spacing: -0.02em; margin-bottom: 8px; line-height: 1.05; }
.sticker p { font-size: 13px; line-height: 1.5; opacity: 0.85; }

/* ── Section: Cases ────────────────────────────────────── */
.cases-section {
  padding: 80px 40px;
  background: var(--paper);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 40px;
}
.cases-h2 { font-size: clamp(36px, 4vw, 56px); font-weight: 800; letter-spacing: -0.035em; line-height: 1; margin: 20px 0 0; }
.all-cases-link { font-family: var(--mono); font-size: 12px; color: var(--ink-dim); text-transform: uppercase; letter-spacing: 0.12em; }
.all-cases-link:hover { color: var(--accent); }

.cases-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 320px 280px;
  gap: 16px;
}
.case-item { position: relative; overflow: hidden; cursor: pointer; }
.case-item.large { grid-row: 1 / 3; }
.case-ph { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease, filter .4s ease; }
.case-item img { object-fit: cover; transition: transform .5s ease, filter .4s ease; }
.case-item:hover .case-ph,
.case-item:hover img { transform: scale(1.04); filter: blur(3px); }

.case-img-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: rgba(255,255,255, var(--case-overlay, 0.12));
  transition: background .4s ease;
}
.case-item:hover .case-img-overlay {
  background: rgba(236,104,27, 0.22);
}

.case-overlay {
  position: absolute;
  left: 24px;
  bottom: 24px;
  right: 24px;
  z-index: 2;
}
.case-overlay.sm { left: 16px; bottom: 16px; right: 16px; }
.case-label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  color: var(--accent);
  margin-bottom: 8px;
}
.case-label.sm { font-size: 10px; letter-spacing: 0.1em; margin-bottom: 4px; }
.case-title {
  font-size: 32px;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1;
  background: var(--paper);
  padding: 8px 12px;
  display: inline-block;
}
.case-title.sm { font-size: 18px; font-weight: 700; letter-spacing: -0.01em; line-height: 1.1; padding: 4px 8px; }
.case-meta { display: flex; flex-wrap: wrap; gap: 4px; margin-top: 8px; }
.case-tag {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 3px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  white-space: nowrap;
}

.case-hover-text {
  position: absolute;
  top: 20px;
  left: 20px;
  right: 20px;
  z-index: 3;
  color: #fff;
  font-size: 20px;
  line-height: 1.3;
  letter-spacing: -0.01em;
  opacity: 0;
  transform: translateY(-6px);
  transition: opacity .32s ease, transform .32s ease;
  pointer-events: none;
  text-shadow: 0 2px 8px rgba(0,0,0,0.45);
}
.case-item:hover .case-hover-text {
  opacity: 1;
  transform: translateY(0);
}

/* ── Section: Process ──────────────────────────────────── */
.process-section { padding: 100px 40px 60px; }
.process-h2 { font-size: clamp(36px, 4.5vw, 64px); font-weight: 800; letter-spacing: -0.035em; margin: 0 0 16px; line-height: 1; }
.process-h2 span { color: var(--accent); }
.process-intro { font-size: 17px; color: var(--ink-dim); max-width: 620px; margin: 0 0 56px; line-height: 1.6; }

.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.process-card {
  border: 2px solid var(--ink);
  padding: 24px 22px;
  min-height: 240px;
  position: relative;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}
.process-card:nth-child(even) { transform: translateY(24px); }
.process-card.accent { background: var(--accent); color: #fff; border-color: var(--accent); }
.process-card.accent .process-num { color: #fff; }
.process-num {
  font-size: clamp(48px, 5vw, 64px);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 0.9;
  margin-bottom: 16px;
  color: var(--accent);
}
.process-card h3 { font-size: 22px; font-weight: 800; margin-bottom: 10px; letter-spacing: -0.01em; }
.process-card p { font-size: 13px; line-height: 1.55; opacity: 0.85; }

/* ── Section: Stats ────────────────────────────────────── */
.stats-bar {
  background: var(--dark);
  color: #fff;
  padding: 60px 40px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stat-item { padding: 0 24px; border-right: 1px solid rgba(255,255,255,0.15); }
.stat-item:last-child { border-right: none; }
.stat-num { font-size: clamp(56px, 6vw, 88px); font-weight: 900; letter-spacing: -0.04em; line-height: 0.9; color: var(--accent); }
.stat-label { margin-top: 12px; font-family: var(--mono); font-size: 11px; color: rgba(255,255,255,0.6); text-transform: uppercase; letter-spacing: 0.12em; }

/* ── Section: Quote ────────────────────────────────────── */
.quote-section {
  padding: 100px 40px;
  background: var(--accent-soft);
}
.quote-grid { display: grid; grid-template-columns: 1fr 2fr; gap: 60px; align-items: center; }
.quote-portrait { width: 100%; aspect-ratio: 1; object-fit: cover; border-radius: 50%; }
.quote-mark { font-family: var(--hand); font-size: 140px; font-weight: 700; color: var(--accent); line-height: 0.5; margin-bottom: 0; }
blockquote { margin: 0; font-size: clamp(20px, 2.5vw, 32px); font-weight: 500; letter-spacing: -0.02em; line-height: 1.3; max-width: 720px; }
blockquote span { color: var(--ink-dim); }
.quote-attr { margin-top: 28px; font-family: var(--mono); font-size: 12px; color: var(--ink-dim); text-transform: uppercase; letter-spacing: 0.12em; }

/* ── Section: CTA ──────────────────────────────────────── */
.cta-block {
  background: var(--accent);
  color: #fff;
  padding: 100px 40px;
  position: relative;
  overflow: hidden;
}
.cta-label { font-family: var(--mono); font-size: 12px; letter-spacing: 0.2em; margin-bottom: 24px; opacity: 0.8; }
.cta-h2 { font-size: clamp(56px, 7vw, 108px); font-weight: 900; letter-spacing: -0.05em; margin: 0 0 32px; line-height: 0.9; }
.cta-body { font-size: 18px; line-height: 1.55; max-width: 560px; margin: 0 0 40px; color: rgba(255,255,255,0.85); }
.cta-btns { display: flex; gap: 16px; align-items: center; flex-wrap: wrap; }
.cta-ghost {
  position: absolute;
  right: -40px;
  bottom: -80px;
  font-size: 480px;
  font-weight: 900;
  letter-spacing: -0.06em;
  line-height: 1;
  color: rgba(255,255,255,0.08);
  pointer-events: none;
  user-select: none;
}

/* CTA compact (sub-pages) */
.cta-block.cta-compact { padding: 60px 40px; }
.cta-block.cta-compact .cta-h2 { font-size: clamp(44px, 5vw, 72px); margin-bottom: 20px; }
.cta-block.cta-compact .cta-body { font-size: 17px; margin-bottom: 28px; }
.cta-block.cta-compact .cta-label { margin-bottom: 12px; }
.cta-block.cta-compact .cta-ghost { font-size: 360px; bottom: -55px; }

/* ── Diensten page ─────────────────────────────────────── */
/* Custom standalone pages */
.custom-page-body {
  max-width: 800px;
  margin: 0 auto 120px;
  padding: 40px 40px;
  font-size: 16px;
  line-height: 1.75;
  color: var(--ink);
}
.custom-page-body h1, .custom-page-body h2, .custom-page-body h3 {
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 2em 0 0.6em;
  line-height: 1.2;
}
.custom-page-body h2 { font-size: 1.5em; }
.custom-page-body h3 { font-size: 1.2em; }
.custom-page-body p  { margin: 0 0 1em; }
.custom-page-body ul, .custom-page-body ol { padding-left: 1.5em; margin: 0 0 1em; }
.custom-page-body li { margin-bottom: 0.4em; }
.custom-page-body a  { color: var(--accent); text-underline-offset: 3px; }
.custom-page-body strong { font-weight: 700; }

.page-header {
  padding: 80px 40px 60px;
  border-bottom: 1px solid var(--line);
}
.page-h1 { font-size: clamp(44px, 6vw, 88px); font-weight: 800; letter-spacing: -0.045em; line-height: 0.95; margin: 24px 0 32px; max-width: 1100px; }
.page-h1 span { color: var(--accent); }
.page-intro { font-size: 18px; line-height: 1.6; color: var(--ink-dim); max-width: 720px; }

.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); background: var(--paper); }
.service-card {
  padding: 0 0 36px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  min-height: 460px;
  position: relative;
}
.service-card:nth-child(3n) { border-right: none; }
.service-card:nth-child(4), .service-card:nth-child(5), .service-card:nth-child(6) { border-bottom: none; }
.service-photo-wrap {
  position: relative;
  overflow: hidden;
  margin-bottom: 24px;
}
.service-photo-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--accent);
  opacity: 0;
  transition: opacity .35s ease;
  pointer-events: none;
}
.service-card:hover .service-photo-wrap::after { opacity: 0.38; }
.service-photo { width: 100%; aspect-ratio: 16/9; object-fit: cover; display: block; transition: transform .45s ease; }
.service-card:hover .service-photo { transform: scale(1.06); }
.service-body { padding: 0 32px; }
.service-num { font-family: var(--mono); font-size: 12px; color: var(--accent); margin-bottom: 10px; letter-spacing: 0.1em; }
.service-body h3 { font-size: 28px; font-weight: 800; letter-spacing: -0.02em; margin-bottom: 10px; }
.service-body p { color: var(--ink-dim); font-size: 14px; line-height: 1.6; margin-bottom: 16px; }
.service-tags { font-family: var(--mono); font-size: 11px; color: var(--ink-faint); text-transform: uppercase; letter-spacing: 0.08em; }

.dark-cta-strip {
  padding: 48px 40px 32px;
  background: var(--dark);
  color: #fff;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
  align-items: center;
}
.dark-cta-label { font-family: var(--mono); font-size: 11px; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 0.12em; margin-bottom: 12px; }
.dark-cta-h2 { font-size: clamp(28px, 3.5vw, 48px); font-weight: 800; letter-spacing: -0.03em; line-height: 1.1; max-width: 720px; }

/* ── Producten page ────────────────────────────────────── */
.cat-nav {
  position: sticky;
  top: 77px;
  background: var(--bg);
  border-bottom: 1px solid var(--line);
  padding: 14px 40px;
  display: flex;
  gap: 4px;
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  z-index: 50;
  flex-wrap: wrap;
}
.cat-nav a {
  padding: 8px 14px;
  border: 1px solid var(--line-strong);
  color: var(--ink-dim);
  text-decoration: none;
  transition: all 0.15s;
}
.cat-nav a:hover { border-color: var(--accent); color: var(--accent); }
.cat-nav a.active { border-color: var(--accent); background: var(--accent); color: #fff; }
.cat-nav-hint { margin-left: auto; align-self: center; color: var(--ink-faint); font-size: 11px; }

.cat-block { padding: 80px 40px; border-top: 1px solid var(--line); }
.cat-block:nth-child(even) { background: var(--paper); }
.cat-block-header { display: grid; grid-template-columns: 1fr 2fr; gap: 48px; margin-bottom: 40px; align-items: end; }
.cat-num { font-family: var(--mono); font-size: 11px; color: var(--accent); text-transform: uppercase; letter-spacing: 0.15em; margin-bottom: 16px; }
.cat-sub { font-size: 17px; line-height: 1.6; color: var(--ink-dim); margin: 0 0 20px; }

.cat-photo { width: 100%; aspect-ratio: 16/9; object-fit: cover; margin-bottom: 24px; border: none; }

.products-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.product-card { background: var(--paper); border: 1px solid var(--line); display: flex; flex-direction: column; }
.product-photo { width: 100%; aspect-ratio: 4/3; object-fit: cover; border: none; border-bottom: 1px solid var(--line); }
.product-idx { font-family: var(--mono); font-size: 10px; color: var(--ink-faint); letter-spacing: 0.1em; }
.product-tag { font-family: var(--mono); font-size: 10px; color: var(--accent); text-transform: uppercase; letter-spacing: 0.1em; }
.product-name { font-size: 16px; font-weight: 700; letter-spacing: -0.01em; line-height: 1.2; }
.product-spec { font-size: 13px; color: var(--ink-dim); line-height: 1.4; }

.info-strip {
  padding: 80px 40px;
  background: var(--dark);
  color: #fff;
}
.info-item { padding-right: 24px; border-right: 1px solid rgba(255,255,255,0.15); }
.info-item:last-child { border-right: none; }
.info-item h3 { font-size: 22px; font-weight: 800; letter-spacing: -0.01em; margin-bottom: 10px; }
.info-item p { font-size: 14px; line-height: 1.5; color: rgba(255,255,255,0.7); }

/* ── Over ons page ─────────────────────────────────────── */
.about-header { padding: 80px 40px; display: grid; grid-template-columns: 5fr 7fr; gap: 60px; border-bottom: 1px solid var(--line); align-items: start; }
.about-h1 { font-size: clamp(44px, 5.5vw, 80px); font-weight: 800; letter-spacing: -0.045em; line-height: 0.95; margin: 24px 0 0; }
.about-intro-text { padding-top: 50px; }
.about-h1 span, .page-h1-main span { color: var(--accent); }
.page-h1-main { font-size: clamp(44px, 5.5vw, 80px); font-weight: 800; letter-spacing: -0.045em; line-height: 0.95; margin: 24px 0 0; }

.team-section { padding: 80px 40px; }
.team-h2 { font-size: clamp(36px, 4vw, 56px); font-weight: 800; letter-spacing: -0.035em; }
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.team-photo { width: 100%; aspect-ratio: 3/4; object-fit: cover; display: block; }
.team-name { font-size: 16px; font-weight: 700; }
.team-role { font-family: var(--mono); font-size: 11px; color: var(--ink-dim); margin-top: 4px; letter-spacing: 0.05em; text-transform: uppercase; }

/* ── Team contacts (contact page) ─────────────────────── */
.team-contacts-section { padding: 80px 40px; border-bottom: 1px solid var(--line); }
.team-contacts-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 32px; }
.team-contact-card { display: flex; flex-direction: column; gap: 14px; }
.team-contact-photo-link {
  position: relative; display: block; overflow: hidden;
  aspect-ratio: 3/4; border-radius: 2px;
  text-decoration: none;
}
.team-contact-photo {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .4s ease;
  display: block;
}
.ph.team-contact-photo { aspect-ratio: 3/4; }
.team-contact-overlay {
  position: absolute; inset: 0;
  background: rgba(21,21,26,.55);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity .25s;
}
.team-contact-overlay span {
  color: #fff; font-size: 14px; font-weight: 600;
  letter-spacing: .04em;
}
.team-contact-photo-link:hover .team-contact-photo { transform: scale(1.04); }
.team-contact-photo-link:hover .team-contact-overlay { opacity: 1; }
.team-contact-info { display: flex; flex-direction: column; gap: 4px; }
.team-contact-name {
  font-size: 17px; font-weight: 700; color: var(--ink);
  text-decoration: none;
}
.team-contact-name:hover { color: var(--accent); }
.team-contact-role { font-family: var(--mono); font-size: 11px; color: var(--ink-dim); text-transform: uppercase; letter-spacing: .05em; }
.team-contact-email {
  font-size: 13px; color: var(--accent); text-decoration: none;
  word-break: break-all; margin-top: 2px;
}
.team-contact-email:hover { text-decoration: underline; }

/* ── Contact page ──────────────────────────────────────── */
.contact-hero { padding: 80px 40px; display: grid; grid-template-columns: 5fr 7fr; gap: 60px; border-bottom: 1px solid var(--line); align-items: start; }
.contact-h1 { font-size: clamp(44px, 5.5vw, 80px); font-weight: 800; letter-spacing: -0.045em; line-height: 0.95; margin: 24px 0 0; }
.contact-h1 span { color: var(--accent); }
.contact-intro { font-size: 18px; line-height: 1.6; color: var(--ink-dim); padding-top: 50px; }

.channels-section { padding: 60px 40px 0; }
.channels-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.channel-card {
  padding: 28px 28px 24px;
  background: var(--paper);
  color: var(--ink);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 180px;
}
.channel-card.featured { background: var(--accent); color: #fff; border: none; }
.channel-card.dark     { background: var(--dark);   color: #fff; border: none; }
.channel-top { display: flex; justify-content: space-between; align-items: center; }
.channel-icon { font-size: 28px; line-height: 1; opacity: 0.45; }
.channel-card.featured .channel-icon { opacity: 1; }
.channel-label { font-family: var(--mono); font-size: 11px; text-transform: uppercase; letter-spacing: 0.12em; opacity: 0.7; }
.channel-value { font-size: 24px; font-weight: 700; letter-spacing: -0.01em; margin-top: 8px; }
.channel-meta { font-size: 13px; line-height: 1.5; opacity: 0.65; }
.channel-card.featured .channel-meta { opacity: 0.9; }

.form-section { padding: 60px 40px; display: grid; grid-template-columns: 7fr 5fr; gap: 32px; align-items: start; }

.briefing-form {
  padding: 32px;
  background: var(--paper);
  border: 2px solid var(--ink);
}
.form-header-label { font-family: var(--mono); font-size: 11px; letter-spacing: 0.15em; color: var(--ink-dim); text-transform: uppercase; margin-bottom: 6px; }
.form-title { font-size: 22px; font-weight: 700; letter-spacing: -0.01em; margin-bottom: 24px; }
.form-fields-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.form-field { display: flex; flex-direction: column; }
.form-field-wide { grid-column: 1 / -1; }
.field-label { font-family: var(--mono); font-size: 11px; color: var(--ink-dim); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 8px; }
.form-field input, .form-field select, .form-field textarea {
  border: 1px solid var(--line-strong);
  background: var(--bg);
  padding: 14px 16px;
  font-size: 14px;
  color: var(--ink);
  font-family: var(--sans);
  width: 100%;
  outline: none;
  transition: border-color 0.15s;
  border-radius: 0;
  appearance: none;
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus { border-color: var(--accent); }
.form-field textarea { resize: vertical; min-height: 120px; }
.upload-area {
  border: 1.5px dashed var(--line-strong);
  background: var(--bg);
  padding: 18px 16px;
  font-size: 13px;
  color: var(--ink-dim);
  text-align: center;
  cursor: pointer;
  transition: border-color 0.15s;
}
.upload-area:hover { border-color: var(--accent); }
.form-footer { display: flex; justify-content: space-between; align-items: center; margin-top: 28px; gap: 12px; flex-wrap: wrap; }
.form-footnote { font-size: 13px; color: var(--ink-dim); }
.form-footnote strong { color: var(--accent); }
.form-success { display: none; padding: 20px; background: var(--accent-soft); border: 1px solid var(--accent); font-size: 15px; color: var(--accent); font-weight: 600; text-align: center; margin-top: 20px; }

.sidebar-cards { display: flex; flex-direction: column; gap: 16px; }
.sidebar-card { padding: 24px; }
.sidebar-card.dark-card { background: var(--dark); color: #fff; }
.sidebar-card.accent-card { background: var(--accent-soft); border: 1px solid var(--accent); }
.sidebar-card.paper-card { background: var(--paper); border: 1px solid var(--line); }
.sidebar-label { font-family: var(--mono); font-size: 11px; text-transform: uppercase; letter-spacing: 0.15em; margin-bottom: 10px; }
.sidebar-card.dark-card .sidebar-label { color: var(--accent); }
.sidebar-card.accent-card .sidebar-label { color: var(--accent); }
.sidebar-card.paper-card .sidebar-label { color: var(--ink-dim); }
.sidebar-title { font-size: 22px; font-weight: 700; letter-spacing: -0.01em; margin-bottom: 6px; }
.sidebar-body { font-size: 14px; line-height: 1.55; margin-bottom: 16px; }
.sidebar-card.dark-card .sidebar-body { color: rgba(255,255,255,0.7); }
.sidebar-card.paper-card .sidebar-body { color: var(--ink-dim); }
.dispatch-number { font-size: 22px; font-weight: 700; color: var(--accent); }
.sidebar-address { font-size: 16px; line-height: 1.6; }
.sidebar-hours { margin-top: 12px; font-family: var(--mono); font-size: 11px; color: var(--ink-dim); text-transform: uppercase; letter-spacing: 0.1em; }

.dept-section { padding: 40px 40px 80px; }
.dept-header { display: flex; align-items: baseline; justify-content: space-between; margin-bottom: 24px; }
.dept-h2 { font-size: clamp(24px, 3vw, 40px); font-weight: 800; letter-spacing: -0.025em; }
.dept-note { font-family: var(--mono); font-size: 11px; color: var(--ink-dim); text-transform: uppercase; letter-spacing: 0.12em; }
.dept-table { background: var(--paper); border: 1px solid var(--line); }
.dept-row {
  display: grid;
  grid-template-columns: 3fr 2fr 3fr 2fr;
  gap: 16px;
  padding: 20px 24px;
  border-bottom: 1px solid var(--line);
  align-items: center;
}
.dept-row:last-child { border-bottom: none; }
.dept-role { font-size: 15px; font-weight: 600; }
.dept-dept { font-family: var(--mono); font-size: 12px; color: var(--ink-dim); text-transform: uppercase; letter-spacing: 0.08em; }
.dept-email { font-size: 14px; color: var(--accent); font-weight: 500; }
.dept-email a { color: var(--accent); }
.dept-email a:hover { text-decoration: underline; }
.dept-phone { font-size: 14px; color: var(--ink-dim); text-align: right; }

.social-strip {
  padding: 40px 40px;
  background: var(--paper);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.social-label { font-family: var(--mono); font-size: 11px; color: var(--ink-dim); text-transform: uppercase; letter-spacing: 0.12em; margin-bottom: 4px; }
.social-title { font-size: 20px; font-weight: 700; }
.social-btns { display: flex; gap: 12px; flex-wrap: wrap; }
.social-btn {
  padding: 12px 18px;
  border: 1.5px solid var(--ink);
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  text-decoration: none;
  transition: all 0.15s;
}
.social-btn:hover { background: var(--ink); color: #fff; }

.map-section { position: relative; height: 360px; }
#leaflet-map { z-index: 0; }
.map-overlay {
  position: absolute;
  left: 40px;
  top: 40px;
  background: var(--accent);
  color: #fff;
  padding: 20px 24px;
  max-width: 280px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
  z-index: 1000;
}
.map-overlay-label { font-family: var(--mono); font-size: 10px; letter-spacing: 0.15em; margin-bottom: 8px; text-transform: uppercase; }
.map-overlay address { font-size: 18px; font-weight: 700; line-height: 1.3; font-style: normal; }
.map-overlay-note { font-size: 13px; margin-top: 10px; opacity: 0.9; }
.map-link-btn {
  position: absolute;
  right: 40px;
  bottom: 40px;
  background: var(--paper);
  padding: 14px 18px;
  font-size: 13px;
  font-weight: 600;
  border: 1.5px solid var(--ink);
  text-decoration: none;
  color: var(--ink);
  z-index: 1000;
}
.map-link-btn:hover { background: var(--ink); color: #fff; }

/* ── Responsive ────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-grid, .why-intro, .quote-grid,
  .about-header, .contact-hero, .dark-cta-strip, .form-section,
  .cat-block-header { grid-template-columns: 1fr; }

  .stickers { grid-template-columns: repeat(2, 1fr); }
  .cases-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .case-item.large { grid-row: auto; grid-column: 1 / -1; height: 340px; }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .process-card:nth-child(even) { transform: none; }
  .stats-bar { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item:nth-child(3) { border-right: 1px solid rgba(255,255,255,0.15); border-top: 1px solid rgba(255,255,255,0.15); }
  .stat-item:nth-child(4) { border-top: 1px solid rgba(255,255,255,0.15); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .service-card:nth-child(3n) { border-right: 1px solid var(--line); }
  .service-card:nth-child(2n) { border-right: none; }
  .service-card:nth-child(3), .service-card:nth-child(4) { border-bottom: 1px solid var(--line); }
  .service-card:nth-child(5), .service-card:nth-child(6) { border-bottom: none; }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .info-item:nth-child(2) { border-right: none; }
  .channels-grid { grid-template-columns: repeat(2, 1fr); }
  .dept-row { grid-template-columns: 1fr 1fr; }
  .dept-phone { text-align: left; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-fine { flex-direction: column; text-align: center; gap: 8px; }
  .hero-photo { height: 420px; }
  .cta-ghost { font-size: 240px; bottom: -40px; }
  .map-section { height: 280px; }
}

@media (max-width: 768px) {
  .topbar { padding: 14px 20px; }
  .topbar-nav, .topbar-cta { display: none; }
  .menu-btn { display: flex; }
  .mobile-nav { display: flex; }

  .hero { padding: 40px 20px 0; }
  .hero-meta { display: none; }
  .hero-grid { grid-template-columns: 1fr; gap: 32px; }
  .hero h1 { font-size: clamp(40px, 10vw, 64px); margin-bottom: 20px; }
  .hero-photo { height: 320px; }
  .hero-ticket { bottom: -16px; left: -8px; }

  .trust-strip { padding: 16px 20px; gap: 16px; }
  .trust-logos-inner { gap: 32px; }
  .trust-logos-inner span { font-size: 14px; }

  .why-section, .cases-section, .process-section,
  .page-header, .team-section, .dept-section,
  .channels-section, .form-section { padding-left: 20px; padding-right: 20px; }

  .why-intro, .about-header { grid-template-columns: 1fr; }
  .stickers { grid-template-columns: 1fr; }
  .cases-grid { grid-template-columns: 1fr; grid-template-rows: auto; }
  .case-item.large { height: 280px; }
  .process-grid { grid-template-columns: 1fr; }
  .stats-bar { padding: 40px 20px; grid-template-columns: 1fr 1fr; }
  .stat-item { padding: 0 12px; }
  .quote-grid { grid-template-columns: 1fr; }
  .quote-portrait { max-width: 200px; border-radius: 50%; }
  .cta-block, .cta-block.cta-compact, .info-strip { padding: 60px 20px; }
  .dark-cta-strip { padding: 40px 20px; }
  .cta-ghost { display: none; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .service-card { border-right: none !important; }
  .products-grid { grid-template-columns: 1fr 1fr; }
  .info-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.15); padding-right: 0; padding-bottom: 24px; margin-bottom: 8px; }
  .info-item:last-child { border-bottom: none; }
  .channels-grid { grid-template-columns: 1fr; }
  .form-section { grid-template-columns: 1fr; }
  .form-fields-grid { grid-template-columns: 1fr; }
  .form-field-wide { grid-column: 1; }
  .dept-row { grid-template-columns: 1fr; gap: 4px; padding: 16px 20px; }
  .dept-phone { text-align: left; }
  .footer { padding: 48px 20px 24px; }
  .footer-grid { grid-template-columns: 1fr; }
  .cat-nav { padding: 10px 20px; top: 65px; }
  .cat-block { padding: 60px 20px; }
  .cat-block-header { grid-template-columns: 1fr; }
  .contact-hero { padding: 60px 20px; }
  .contact-intro { padding-top: 0; }
  .social-strip { padding: 32px 20px; }
  .map-overlay { left: 20px; top: 20px; }
  .map-link-btn { right: 20px; bottom: 20px; }
  .dark-cta-strip { grid-template-columns: 1fr; }
  .about-header { padding: 60px 20px; }
  .page-header { padding: 60px 20px; }
}

/* ── Easter egg — Party mode ───────────────────────────── */
.party-trigger {
  background: none; border: none; padding: 2px 6px;
  font-size: 13px; cursor: pointer; opacity: 0.07;
  transition: opacity .4s; line-height: 1;
}
.party-trigger:hover { opacity: 0.45; }

/* ── Lightbox ───────────────────────────────────────────── */
.service-photo-wrap { cursor: zoom-in; }
.lightbox-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9000;
  background: rgba(0,0,0,0);
  align-items: center;
  justify-content: center;
  padding: 24px;
  transition: background .28s ease;
}
.lightbox-overlay.open { background: rgba(0,0,0,.88); }
.lightbox-inner {
  position: relative;
  max-width: min(92vw, 1200px);
  max-height: 90vh;
  display: flex;
}
.lightbox-img {
  max-width: 100%;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 3px;
  box-shadow: 0 32px 96px rgba(0,0,0,.7);
  transform: scale(0.93);
  opacity: 0;
  transition: transform .28s ease, opacity .28s ease;
  display: block;
  cursor: zoom-out;
}
.lightbox-overlay.open .lightbox-img { transform: scale(1); opacity: 1; }
.lightbox-close {
  position: absolute;
  top: -16px;
  right: -16px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #fff;
  color: var(--ink);
  border: none;
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 12px rgba(0,0,0,.3);
  transition: background .15s, transform .15s;
  z-index: 1;
}
.lightbox-close:hover { background: var(--accent); color: #fff; transform: scale(1.1); }

@keyframes party-hue    { to { filter: hue-rotate(360deg); } }
@keyframes party-glow   { 0%,100% { box-shadow: 0 0 0px transparent; } 50% { box-shadow: 0 0 18px rgba(236,104,27,.55); } }
@keyframes party-sway   { 0%,100% { transform: rotate(-1.5deg); } 50% { transform: rotate(1.5deg); } }
@keyframes party-wiggle { 0%,100% { transform: rotate(-2deg) scale(1.03); } 50% { transform: rotate(2deg) scale(0.98); } }
@keyframes party-toast  { 0% { opacity:0; transform:translateX(-50%) translateY(-20px) scale(.8); } 60% { opacity:1; transform:translateX(-50%) translateY(4px) scale(1.05); } 100% { opacity:1; transform:translateX(-50%) translateY(0) scale(1); } }
@keyframes party-exit   { to { opacity:0; transform:translateX(-50%) translateY(-16px) scale(.8); } }

/* subtle orange glow on accent elements */
body.party-mode .btn.primary,
body.party-mode .cta-block,
body.party-mode .sticker.orange,
body.party-mode .process-card.accent,
body.party-mode .why-h2 .highlight { animation: party-glow 2s ease-in-out infinite; }

/* logo gentle wiggle */
body.party-mode .topbar-logo { animation: party-wiggle 1.4s ease-in-out infinite; transform-origin: center bottom; }

/* photos sway slowly */
body.party-mode img,
body.party-mode .hero-photo,
body.party-mode .case-ph,
body.party-mode .service-photo,
body.party-mode .quote-portrait { animation: party-sway 2.4s ease-in-out infinite; transform-origin: center bottom; }

body.party-mode img:nth-child(2n),
body.party-mode .case-item:nth-child(2n) img  { animation-delay: .4s; }
body.party-mode img:nth-child(3n),
body.party-mode .case-item:nth-child(3n) img  { animation-delay: .8s; }
body.party-mode img:nth-child(4n),
body.party-mode .case-item:nth-child(4n) img  { animation-delay: 1.2s; }

#party-canvas { position:fixed; inset:0; pointer-events:none; z-index:9998; }
#party-toast  {
  position:fixed; top:28px; left:50%; transform:translateX(-50%);
  background:#1a1a1f; color:#fff; padding:14px 32px;
  border-radius:40px; font-size:17px; font-weight:700; letter-spacing:-.01em;
  z-index:9999; pointer-events:none; white-space:nowrap;
  animation: party-toast .45s cubic-bezier(.34,1.56,.64,1) forwards;
}
#party-toast.exit { animation: party-exit .35s ease-in forwards; }
