/* Studio Doe Goed — design tokens & basiscomponenten */
:root {
  --bg: #f7f7f5;
  --surface: #ffffff;
  --ink: #0f0f0f;
  --muted: #5c5c5c;
  --line: rgba(15, 15, 15, 0.08);
  --violet: #6d5efc;
  --violet-soft: #e8e4ff;
  --sky: #b8e4f8;
  --yellow: #f5e08a;
  --radius-lg: 20px;
  --radius-md: 14px;
  --radius-pill: 999px;
  --shadow: 0 24px 60px rgba(15, 15, 15, 0.08);
  --shadow-sm: 0 8px 24px rgba(15, 15, 15, 0.06);
  --font-display: "Syne", system-ui, sans-serif;
  --font-body: "DM Sans", system-ui, sans-serif;
  --max: 1200px;
  --brand: #e7191f;
  --brand-soft: #ffe8e6;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.55;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

/* ——— Header ——— */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(247, 247, 245, 0.82);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 1rem 1.5rem;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1rem;
}

.logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: 0.06em;
  justify-self: start;
}

.menu-btn {
  justify-self: center;
  width: 44px;
  height: 44px;
  border: none;
  background: transparent;
  border-radius: 12px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  color: var(--ink);
  transition: background 0.2s;
}

.menu-btn:hover {
  background: rgba(15, 15, 15, 0.05);
}

.menu-btn span {
  display: block;
  width: 22px;
  height: 2px;
  background: currentColor;
  border-radius: 1px;
}

.btn-contact {
  justify-self: end;
  padding: 0.55rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 600;
  border: 1px solid var(--ink);
  border-radius: var(--radius-pill);
  background: var(--surface);
  transition: background 0.2s, color 0.2s, transform 0.2s;
}

.btn-contact:hover {
  background: var(--ink);
  color: var(--surface);
  transform: translateY(-1px);
}

/* ——— Layout shell ——— */
.page {
  max-width: var(--max);
  margin: 0 auto;
  padding: 2.5rem 1.5rem 4rem;
}

/* ——— Hero ——— */
.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}

@media (min-width: 900px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    align-items: start;
    gap: 3rem;
  }
}

.hero-copy {
  padding-top: 0.5rem;
}

.eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 1rem;
}

.hero-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  line-height: 1.02;
  letter-spacing: -0.03em;
  margin: 0 0 1.25rem;
}

.hero-title .accent {
  color: var(--violet);
  font-weight: 800;
}

.hero-deco {
  display: inline-flex;
  gap: 0.35rem;
  vertical-align: middle;
  margin-left: 0.15em;
}

.hero-deco svg {
  width: clamp(36px, 8vw, 52px);
  height: auto;
}

.hero-lead {
  max-width: 28rem;
  color: var(--muted);
  font-size: 1.05rem;
  margin: 0 0 1.75rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.5rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--surface);
  background: var(--ink);
  border: none;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.btn-ghost {
  padding: 0.85rem 1.25rem;
  font-weight: 600;
  font-size: 0.9375rem;
  border-radius: var(--radius-pill);
  border: 1px solid var(--line);
  background: var(--surface);
  transition: border-color 0.2s, background 0.2s;
}

.btn-ghost:hover {
  border-color: var(--ink);
  background: var(--surface);
}

/* Stats strip — hero side */
.stats-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem 2rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
}

.stat {
  min-width: 0;
}

.stat-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.75rem;
  color: var(--violet);
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.stat-label {
  font-size: 0.8125rem;
  color: var(--muted);
  margin-top: 0.2rem;
}

/* ——— Media column ——— */
.hero-media {
  position: relative;
}

.offer-pill {
  position: absolute;
  top: -0.5rem;
  left: -0.5rem;
  z-index: 2;
  width: 5.5rem;
  height: 5.5rem;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--yellow), #f0d060);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.8rem;
  line-height:1.2;
  box-shadow: var(--shadow-sm);
  transform: rotate(-8deg);
}

@media (min-width: 900px) {
  .offer-pill {
    left: auto;
    right: 1rem;
    top: 2rem;
  }
}

.card-photo {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--violet-soft);
  box-shadow: var(--shadow);
}

.card-photo img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.card-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem 1rem;
  padding: 1rem 1.1rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  margin-top: 1rem;
  box-shadow: var(--shadow-sm);
}

.engagement {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.8125rem;
  color: var(--muted);
}

.engagement span {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.btn-view {
  margin-left: auto;
  padding: 0.5rem 1rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--surface);
  background: var(--ink);
  border: none;
  border-radius: var(--radius-pill);
  cursor: pointer;
}

@media (max-width: 520px) {
  .btn-view {
    margin-left: 0;
    width: 100%;
  }
}

/* ——— Bento grid ——— */
.bento {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .bento {
    grid-template-columns: 1.2fr 1fr;
    grid-template-rows: auto;
    gap: 1.5rem;
  }
}

.bento-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.bento-video .media-wrap {
  position: relative;
  aspect-ratio: 16 / 11;
  background: linear-gradient(135deg, #e8e8e8 50%, var(--yellow) 50%);
}

.bento-video .media-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.play-btn {
  position: absolute;
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%);
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--surface);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s;
}

.play-btn:hover {
  transform: translate(-50%, -50%) scale(1.05);
}

.bento-body {
  padding: 1.25rem 1.35rem 1.35rem;
}

.bento-body p {
  margin: 0;
  font-size: 0.9375rem;
  color: var(--muted);
}

.proof {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  margin-top: 1.25rem;
}

.avatars {
  display: flex;
}

.avatars img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--surface);
  margin-left: -10px;
}

.avatars img:first-child {
  margin-left: 0;
}

.bubble {
  background: var(--violet-soft);
  color: var(--violet);
  font-weight: 700;
  font-size: 0.875rem;
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-pill);
}

.proof-caption {
  width: 100%;
  font-size: 0.8125rem;
  color: var(--muted);
}

/* Wide bottom image */
.bento-wide {
  grid-column: 1 / -1;
}

.bento-wide .media-wrap {
  aspect-ratio: 21 / 9;
  min-height: 200px;
  background: var(--sky);
}

.bento-wide .media-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 767px) {
  .bento-wide .media-wrap {
    aspect-ratio: 16 / 10;
  }
}

/* ——— Side social + bottom ——— */
.bottom-band {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: start;
}

@media (min-width: 768px) {
  .bottom-band {
    grid-template-columns: auto 1fr;
    gap: 3rem;
  }
}

.social-col {
  display: flex;
  flex-direction: row;
  gap: 0.65rem;
}

@media (min-width: 768px) {
  .social-col {
    flex-direction: column;
    align-items: center;
  }
}

.social-col a {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #dbeef8;
  background: color-mix(in srgb, var(--sky) 55%, white);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  transition: transform 0.2s, background 0.2s;
}

.social-col a:hover {
  transform: translateY(-2px);
  background: var(--sky);
}

.scroll-hint {
  display: none;
}

@media (min-width: 768px) {
  .scroll-hint {
    display: flex;
    justify-content: center;
    margin-top: 0.5rem;
    color: var(--muted);
    animation: bounce 2s ease-in-out infinite;
  }
}

@keyframes bounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(4px);
  }
}

.bottom-text {
  max-width: 36rem;
  margin-left: auto;
  font-size: 0.9375rem;
  color: var(--muted);
}

.bottom-text p {
  margin: 0 0 1rem;
}

.bottom-text p:last-child {
  margin-bottom: 0;
}

/* ——— Mobile nav overlay ——— */
.nav-drawer {
  position: fixed;
  inset: 0;
  z-index: 100;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.25s;
}

.nav-drawer.is-open {
  pointer-events: auto;
  opacity: 1;
}

.nav-drawer-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 15, 15, 0.35);
  backdrop-filter: blur(4px);
}

.nav-drawer-panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(320px, 88vw);
  height: 100%;
  background: var(--surface);
  padding: 5rem 1.75rem 2rem;
  transform: translateX(100%);
  transition: transform 0.28s ease;
  box-shadow: -16px 0 48px rgba(15, 15, 15, 0.12);
}

.nav-drawer.is-open .nav-drawer-panel {
  transform: translateX(0);
}

.nav-drawer nav {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.nav-drawer nav a {
  padding: 0.85rem 0;
  font-weight: 600;
  font-size: 1.05rem;
  border-bottom: 1px solid var(--line);
}

.nav-drawer-close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  width: 44px;
  height: 44px;
  border: none;
  background: var(--bg);
  border-radius: 12px;
  cursor: pointer;
  font-size: 1.5rem;
  line-height: 1;
  color: var(--ink);
}

body.nav-locked {
  overflow: hidden;
}

.dg-accent {
  color: var(--brand);
}

/* Zelfde gele stijl als “Pitch me”-pill */
.btn-primary.btn-primary--pitch {
  color: var(--ink);
  background: linear-gradient(145deg, var(--yellow), #f0d060);
  box-shadow: var(--shadow-sm);
}

.btn-primary.btn-primary--pitch:hover {
  color: var(--ink);
  background: linear-gradient(145deg, #f5e08a, #e8c850);
  box-shadow: var(--shadow);
}

/* Hele hero-kop in merkrood, zoals de vorige site */
.dg-hero-copy .hero-title {
  color: var(--brand);
}

.hero-title .accent {
  color: inherit;
}

a.dg-mail {
  color: var(--brand);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

a.dg-mail:hover {
  text-decoration-thickness: 2px;
}

/* ——— Header (logo + desktopnav + acties) ——— */
.site-header .header-inner.dg-header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 1.25rem;
  grid-template-columns: unset;
  justify-items: unset;
}

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

.brand-logo img {
  height: 56px;
  width: auto;
  display: block;
}

@media (max-width: 600px) {
  .brand-logo img {
    height: 48px;
  }
}

.dg-nav-desktop {
  display: none;
}

@media (min-width: 900px) {
  .dg-nav-desktop {
    display: flex;
    align-items: center;
    gap: 1.75rem;
    flex: 1;
    justify-content: center;
  }

  .dg-nav-desktop a {
    font-weight: 500;
    font-size: 0.9375rem;
    color: var(--muted);
    transition: color 0.2s;
  }

  .dg-nav-desktop a:hover {
    color: var(--ink);
  }

  .dg-header-actions .menu-btn {
    display: none;
  }
}

.dg-header-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-left: auto;
}

/* Nav-CTA: zelfde geel als Pitch me / Zie ons werk */
.dg-header .btn-contact {
  color: var(--ink);
  border: none;
  background: linear-gradient(145deg, var(--yellow), #f0d060);
  box-shadow: var(--shadow-sm);
  text-decoration: none;
}

.dg-header .btn-contact:hover {
  color: var(--ink);
  background: linear-gradient(145deg, #f5e08a, #e8c850);
  box-shadow: var(--shadow);
  transform: translateY(-1px);
}

/* ——— Pagina & secties ——— */
.dg-page {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 1.5rem 4rem;
}

.dg-section {
  padding: 3.5rem 0;
  scroll-margin-top: 5rem;
}

.dg-section:first-of-type {
  padding-top: 2rem;
}

.dg-section-head {
  margin-bottom: 2rem;
}

.dg-section-head h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.75rem, 3.5vw, 2.35rem);
  letter-spacing: -0.03em;
  margin: 0.35rem 0 0;
  line-height: 1.1;
}

/* ——— Hero ——— */
.dg-hero {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: start;
  margin-bottom: 1rem;
}

@media (min-width: 900px) {
  .dg-hero {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
    gap: 2.5rem;
  }
}

.dg-hero-visual {
  position: relative;
}

.dg-hero-visual .dg-video-card {
  margin-top: clamp(1.25rem, 3vw, 2.25rem);
}

.dg-hero-deco svg {
  width: clamp(40px, 10vw, 56px);
  height: auto;
  vertical-align: middle;
}

.dg-offer-pill {
  width: 6.35rem;
  height: 6.35rem;
  font-size: 0.65rem;
  line-height: 1.2;
  padding: 0.2rem;
  flex-direction: column;
  gap: 0.15rem;
  animation: dg-wiggle 4s ease-in-out infinite;
}

.dg-offer-pill-line {
  display: block;
}

.dg-offer-pill-accent {
  color: var(--brand);
}

@keyframes dg-wiggle {
  0%,
  100% {
    transform: rotate(-8deg);
  }
  50% {
    transform: rotate(-14deg) scale(1.03);
  }
}

.dg-stats {
  margin-top: 2rem;
}

.dg-stats .stat-num {
  color: var(--brand);
}

.dg-engagement-bar {
  margin-top: 1rem;
}

a.btn-view {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.dg-hero-footnote {
  margin: 0.65rem 0 0;
  font-size: 0.75rem;
  color: var(--muted);
  line-height: 1.4;
  max-width: 22rem;
}

.dg-hero-copy .hero-title {
  margin-bottom: 1rem;
}

.dg-hero-headline-part2 {
  display: block;
  margin-top: 0.3em;
  color: var(--ink);
  font-weight: 800;
}

.dg-hero-lead {
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  color: var(--brand);
  max-width: 36rem;
  margin: 0;
  line-height: 1.5;
}

.dg-hero-lead strong {
  color: var(--brand);
  font-weight: 700;
}

.dg-hero-lead strong.dg-accent {
  color: var(--brand);
  font-weight: 800;
  text-decoration: underline;
  text-decoration-color: #c49709;
  text-decoration-thickness: 0.11em;
  text-underline-offset: 0.2em;
}

.dg-hero-copy .hero-actions {
  margin-top: 1.35rem;
}

.dg-video-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  background: var(--surface);
}

.dg-video-inner {
  position: relative;
  aspect-ratio: 16 / 9;
  background: var(--ink);
}

.dg-video-inner iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* ——— Speelse bento-strip ——— */
.dg-playfield {
  padding-top: 1rem;
  padding-bottom: 2rem;
}

.dg-bento-spotlight .media-wrap {
  min-height: 140px;
  isolation: isolate;
}

/* Halftone dot screen (merkrood) over spotlight image */
.dg-bento-spotlight .media-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background-image: radial-gradient(
    circle closest-side at center,
    color-mix(in srgb, var(--brand) 52%, transparent) 0%,
    color-mix(in srgb, var(--brand) 52%, transparent) 38%,
    transparent 39%
  );
  background-size: 4px 4px;
  mix-blend-mode: multiply;
}

.dg-bento-gradient {
  background: linear-gradient(135deg, var(--violet-soft) 0%, var(--brand-soft) 45%, #dbeef8 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.dg-bento-gradient::after {
  content: "";
  position: absolute;
  width: 120%;
  height: 120%;
  background: radial-gradient(circle at 30% 70%, rgba(109, 94, 252, 0.12), transparent 55%);
  pointer-events: none;
}

.dg-bento-emoji {
  font-size: 3.5rem;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 8px 20px rgba(15, 15, 15, 0.08));
}

.dg-bento-quote {
  padding: 0.9rem 1.1rem 1rem !important;
  min-height: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.dg-pullquote {
  margin: 0 0 0.6rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.02rem;
  line-height: 1.32;
  color: var(--ink);
  letter-spacing: -0.02em;
}

.dg-quote-meta {
  margin: 0;
  font-size: 0.8125rem;
  color: var(--muted);
  font-style: italic;
}

.dg-bento-side {
  border: 1px dashed rgba(231, 25, 31, 0.22);
  align-self: start;
}

.dg-bento-side-eyebrow {
  margin-bottom: 0.45rem !important;
}

.dg-bento-spotlight .media-wrap img {
  filter: grayscale(100%) contrast(1.14) brightness(1.04);
}

/* ——— Client logos ——— */
.dg-clients-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 1rem;
}

.dg-client-cell {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 1.15rem 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 88px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s, box-shadow 0.2s;
}

.dg-client-cell:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.dg-client-cell img {
  max-height: 52px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
}

/* Logo’s: subtiel tevoorschijn bij scroll (parent krijgt .in via JS) */
.dg-clients-stagger .dg-client-cell {
  opacity: 0;
  transform: translateY(12px);
  transition:
    opacity 0.55s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.dg-clients-stagger.in .dg-client-cell {
  opacity: 1;
  transform: translateY(0);
}

.dg-clients-stagger.in .dg-client-cell:nth-child(1) {
  transition-delay: 0s;
}
.dg-clients-stagger.in .dg-client-cell:nth-child(2) {
  transition-delay: 0.04s;
}
.dg-clients-stagger.in .dg-client-cell:nth-child(3) {
  transition-delay: 0.08s;
}
.dg-clients-stagger.in .dg-client-cell:nth-child(4) {
  transition-delay: 0.12s;
}
.dg-clients-stagger.in .dg-client-cell:nth-child(5) {
  transition-delay: 0.16s;
}
.dg-clients-stagger.in .dg-client-cell:nth-child(6) {
  transition-delay: 0.2s;
}
.dg-clients-stagger.in .dg-client-cell:nth-child(7) {
  transition-delay: 0.24s;
}
.dg-clients-stagger.in .dg-client-cell:nth-child(8) {
  transition-delay: 0.28s;
}
.dg-clients-stagger.in .dg-client-cell:nth-child(9) {
  transition-delay: 0.32s;
}
.dg-clients-stagger.in .dg-client-cell:nth-child(10) {
  transition-delay: 0.36s;
}
.dg-clients-stagger.in .dg-client-cell:nth-child(11) {
  transition-delay: 0.4s;
}
.dg-clients-stagger.in .dg-client-cell:nth-child(12) {
  transition-delay: 0.44s;
}
.dg-clients-stagger.in .dg-client-cell:nth-child(13) {
  transition-delay: 0.48s;
}
.dg-clients-stagger.in .dg-client-cell:nth-child(14) {
  transition-delay: 0.52s;
}
.dg-clients-stagger.in .dg-client-cell:nth-child(15) {
  transition-delay: 0.56s;
}
.dg-clients-stagger.in .dg-client-cell:nth-child(16) {
  transition-delay: 0.6s;
}

@media (prefers-reduced-motion: reduce) {
  .dg-clients-stagger .dg-client-cell {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .dg-about-arrow-svg {
    animation: none;
  }
}

/* ——— Diensten ——— */
.dg-services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

@media (min-width: 768px) {
  .dg-services-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }
}

.dg-service-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.5rem 1.65rem;
  box-shadow: var(--shadow-sm);
}

.dg-service-kicker {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 1.1rem;
}

.dg-service-kicker .dg-service-icon {
  margin-bottom: 0;
  flex-shrink: 0;
}

.dg-service-kicker .dg-service-label {
  display: block;
  margin: 0;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.98rem;
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: var(--brand);
}

.dg-service-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--brand-soft);
  color: var(--brand);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.1rem;
}

.dg-service-card h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.2rem;
  margin: 0 0 0.35rem;
  letter-spacing: -0.02em;
}

.dg-service-card:has(.dg-service-kicker) h3 {
  margin-bottom: 1rem;
}

.dg-service-card .dg-service-sub {
  color: var(--muted);
  font-size: 0.95rem;
  margin: 0 0 1.25rem;
}

.dg-service-card h4 {
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--ink);
  margin: 0 0 0.65rem;
}

.dg-service-card ul {
  margin: 0;
  padding-left: 1.15rem;
  color: var(--muted);
  font-size: 0.9375rem;
  line-height: 1.55;
}

.dg-service-card li {
  margin-bottom: 0.45rem;
}

.dg-service-card li:last-child {
  margin-bottom: 0;
}

/* ——— Werk / cases ——— */
.dg-work-section {
  position: relative;
}

.dg-work-section::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  width: min(900px, 100%);
  height: 180px;
  background: radial-gradient(ellipse at center top, rgba(109, 94, 252, 0.08), transparent 70%);
  pointer-events: none;
}

.dg-section-head--work {
  position: relative;
  z-index: 1;
}

.dg-section-lead {
  margin: 0.75rem 0 0;
  max-width: 34rem;
  font-size: 1.05rem;
  color: var(--muted);
  line-height: 1.5;
}

.dg-work-layout {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.dg-work-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

@media (min-width: 700px) {
  .dg-work-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.dg-case-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
  display: flex;
  flex-direction: column;
}

.dg-case-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.dg-case--feature {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

@media (min-width: 900px) {
  .dg-case--feature {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    align-items: stretch;
    min-height: 0;
  }

  .dg-case--feature .dg-case-media {
    aspect-ratio: auto;
    min-height: 280px;
  }

  .dg-case--feature .dg-case-media img {
    min-height: 100%;
  }

  .dg-case--feature .dg-case-body {
    padding: 1.75rem 1.75rem 1.85rem;
    justify-content: center;
  }
}

.dg-case-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 3;
  background: var(--yellow);
  color: var(--ink);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.75rem;
  padding: 0.4rem 0.65rem;
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-sm);
  transform: rotate(4deg);
}

.dg-case-media {
  aspect-ratio: 16 / 10;
  background: linear-gradient(145deg, var(--violet-soft), var(--brand-soft));
  overflow: hidden;
  position: relative;
  isolation: isolate;
}

/* Uniforme ‘look’ voor alle portfolio-beelden (duidelijk zichtbaar + overlay) */
.dg-work-layout .dg-case-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.72) contrast(0.9) brightness(0.94) sepia(0.12);
  transition: transform 0.45s ease, filter 0.45s ease;
}

.dg-work-layout .dg-case-media::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    165deg,
    rgba(247, 247, 245, 0.35) 0%,
    rgba(109, 94, 252, 0.07) 45%,
    rgba(231, 25, 31, 0.06) 100%
  );
  mix-blend-mode: multiply;
}

/* Vijf tegels in het grid: halftone (merkrood) + bestaande kleurverloop; foto’s blijven in kleur */
.dg-work-grid .dg-case-media img {
  filter: none;
}

.dg-work-grid .dg-case-media::after {
  background-image:
    radial-gradient(
      circle closest-side at center,
      color-mix(in srgb, var(--brand) 45%, transparent) 0%,
      color-mix(in srgb, var(--brand) 45%, transparent) 38%,
      transparent 39%
    ),
    linear-gradient(
      165deg,
      rgba(247, 247, 245, 0.35) 0%,
      rgba(109, 94, 252, 0.07) 45%,
      rgba(231, 25, 31, 0.06) 100%
    );
  background-size: 4px 4px, 100% 100%;
  background-repeat: repeat, no-repeat;
  background-position: 0 0, 0 0;
}

.dg-work-grid .dg-case-card:hover .dg-case-media img {
  transform: scale(1.03);
  filter: brightness(1.06);
}

.dg-case-card:hover .dg-case-media img {
  transform: scale(1.03);
  filter: saturate(0.85) contrast(0.93) brightness(0.98) sepia(0.06);
}

.dg-case-media a {
  display: block;
  height: 100%;
}

.dg-case-body {
  padding: 1.25rem 1.35rem 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.dg-case-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 0.65rem;
}

.dg-tag {
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.25rem 0.55rem;
  border-radius: var(--radius-pill);
  background: var(--bg);
  color: var(--muted);
  border: 1px solid var(--line);
}

.dg-tag--accent {
  background: var(--brand-soft);
  color: var(--brand);
  border-color: transparent;
}

.dg-case-body h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  line-height: 1.25;
  margin: 0 0 0.55rem;
  letter-spacing: -0.02em;
}

.dg-case--feature .dg-case-body h3 {
  font-size: clamp(1.2rem, 2.2vw, 1.45rem);
}

.dg-case-body .title-accent {
  color: var(--brand);
}

.dg-case-lead {
  font-size: 1rem !important;
  color: var(--ink) !important;
  font-weight: 500;
}

.dg-case-awards {
  margin-top: 1rem;
  margin-bottom: 0.65rem;
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--muted);
}

.dg-case-body p {
  margin: 0 0 0.65rem;
  font-size: 0.9375rem;
  color: var(--muted);
  line-height: 1.55;
}

.dg-case-body p:last-of-type {
  margin-bottom: 0.85rem;
}

.dg-case-cta {
  margin-top: auto;
  padding-top: 0.5rem;
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--violet);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  transition: color 0.2s, gap 0.2s;
}

.dg-case-cta:hover {
  color: var(--brand);
  gap: 0.45rem;
}

.dg-case-cta--muted {
  color: var(--muted);
  cursor: default;
  pointer-events: none;
}

.dg-case-cta--muted:hover {
  gap: 0.25rem;
  color: var(--muted);
}

/* ——— Over ——— */
.dg-about {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 900px) {
  .dg-about {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    gap: 3rem;
  }
}

.dg-about-text h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  margin: 0 0 1.25rem;
  letter-spacing: -0.03em;
}

.dg-about-text p {
  margin: 0 0 1rem;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.6;
}

.dg-about-text p:last-child {
  margin-bottom: 0;
}

.dg-about-text strong {
  color: var(--ink);
}

.dg-about-text .dg-brand-name {
  color: var(--brand);
}

.dg-about-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: min(280px, 88vw);
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 900px) {
  .dg-about-visual {
    margin-left: auto;
    margin-right: 0;
  }
}

.dg-about-kicker {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: clamp(0.75rem, 1.55vw, 0.84rem);
  letter-spacing: 0.06em;
  color: var(--muted);
  text-align: center;
  line-height: 1.35;
}

.dg-about-arrow {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0.05rem 0 0.35rem;
  color: var(--brand);
}

.dg-about-arrow-svg {
  overflow: visible;
  display: block;
}

@media (prefers-reduced-motion: no-preference) {
  .dg-about-arrow-svg {
    animation: dg-about-arrow-nudge 2.8s ease-in-out infinite;
    transform-origin: 50% 55%;
  }
}

@keyframes dg-about-arrow-nudge {
  0%,
  100% {
    transform: translateY(0);
    opacity: 1;
  }
  50% {
    transform: translateY(4px);
    opacity: 0.92;
  }
}

.dg-about-photo {
  position: relative;
  isolation: isolate;
  width: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  background: linear-gradient(145deg, var(--violet-soft), var(--brand-soft));
}

.dg-about-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  mix-blend-mode: multiply;
  border-radius: inherit;
  background-image:
    radial-gradient(
      circle closest-side at center,
      color-mix(in srgb, var(--brand) 45%, transparent) 0%,
      color-mix(in srgb, var(--brand) 45%, transparent) 38%,
      transparent 39%
    ),
    linear-gradient(
      165deg,
      rgba(247, 247, 245, 0.35) 0%,
      rgba(109, 94, 252, 0.07) 45%,
      rgba(231, 25, 31, 0.06) 100%
    );
  background-size: 4px 4px, 100% 100%;
  background-repeat: repeat, no-repeat;
}

.dg-about-photo img {
  position: relative;
  z-index: 0;
  width: 100%;
  display: block;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  filter: none;
}

/* ——— Contact ——— */
.dg-contact-block h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  margin: 0 0 1rem;
  letter-spacing: -0.03em;
}

.dg-contact-block > p {
  margin: 0;
  max-width: 36rem;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.6;
}

/* ——— Footer ——— */
.dg-footer {
  border-top: 1px solid var(--line);
  padding: 2rem 1.5rem;
  margin-top: 1rem;
  text-align: center;
  font-size: 0.875rem;
  color: var(--muted);
}

.dg-footer-inner {
  max-width: var(--max);
  margin: 0 auto;
}

/* ——— Onderste contactband ——— */
.dg-bottom-band {
  max-width: var(--max);
  margin: 0 auto;
  padding: 2.5rem 0 1rem;
  border-top: 1px solid var(--line);
}

.dg-bottom-band .social-col a {
  width: auto;
  height: auto;
  min-height: 44px;
  padding: 0.5rem 1rem;
  border-radius: var(--radius-pill);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 600;
  white-space: nowrap;
}

.dg-bottom-band .social-col a.dg-soc-mail {
  width: 44px;
  height: 44px;
  min-width: 44px;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.dg-mail-icon-svg {
  display: block;
  flex-shrink: 0;
}

a.dg-mail-inline-icon {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  vertical-align: -0.2em;
}

a.dg-mail-inline-icon:hover .dg-mail-icon-svg {
  opacity: 0.88;
}

/* ——— Reveal (JS) ——— */
.dg-reveal {
  opacity: 0;
  transform: translateY(14px);
}

.dg-reveal.in {
  opacity: 1;
  transform: none;
  transition: opacity 0.65s ease, transform 0.65s ease;
}

/* ——— Landingspagina: podcastworkshop bibliotheken ——— */
.dg-page.dg-offer-page {
  max-width: min(46rem, 100%);
  margin-left: auto;
  margin-right: auto;
}

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

.dg-offer-page .dg-offer-hero {
  padding-top: 1.5rem;
  max-width: 40rem;
}

.dg-offer-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2rem, 5.5vw, 3.25rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--brand);
  margin: 0 0 0.5rem;
}

.dg-offer-title-line {
  color: var(--ink);
}

.dg-offer-kicker {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.15rem, 2.5vw, 1.45rem);
  color: var(--violet);
  margin: 0 0 1.25rem;
  letter-spacing: -0.02em;
}

.dg-offer-lead {
  font-size: 1.08rem;
  line-height: 1.6;
  color: var(--muted);
  margin: 0 0 1.75rem;
  max-width: 38rem;
}

.dg-offer-cta {
  text-decoration: none;
  display: inline-flex;
}

.dg-offer-quote {
  margin: 2.5rem 0 3rem;
  padding: 1.5rem 1.65rem;
  background: var(--surface);
  border: 1px dashed rgba(231, 25, 31, 0.22);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.dg-offer-quote blockquote {
  margin: 0;
}

.dg-offer-quote blockquote p {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  line-height: 1.4;
  color: var(--ink);
}

.dg-offer-quote figcaption {
  margin-top: 1rem;
  font-size: 0.9rem;
  color: var(--muted);
  font-style: italic;
}

.dg-offer-h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.5rem, 3vw, 2rem);
  letter-spacing: -0.03em;
  margin: 0 0 0.35rem;
  line-height: 1.15;
  color: var(--ink);
}

.dg-offer-dek {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--brand);
  margin: 0 0 1.25rem;
}

.dg-offer-prose p {
  margin: 0 0 1rem;
  font-size: 1.02rem;
  line-height: 1.65;
  color: var(--muted);
  max-width: 40rem;
}

.dg-offer-prose p:last-child {
  margin-bottom: 0;
}

.dg-offer-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 768px) {
  .dg-offer-steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

.dg-offer-step {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.35rem 1.4rem 1.45rem;
  box-shadow: var(--shadow-sm);
  position: relative;
  transition: transform 0.2s, box-shadow 0.2s;
}

.dg-offer-step:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.dg-offer-step-num {
  display: block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2rem;
  line-height: 1;
  color: var(--violet);
  margin-bottom: 0.5rem;
  letter-spacing: -0.04em;
  opacity: 0.9;
}

.dg-offer-step h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  margin: 0 0 0.5rem;
  letter-spacing: -0.02em;
}

.dg-offer-step p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--muted);
}

.dg-offer-list {
  margin: 0;
  padding: 0;
  list-style: none;
  max-width: 38rem;
}

.dg-offer-list li {
  position: relative;
  padding-left: 1.65rem;
  margin-bottom: 0.75rem;
  font-size: 1.02rem;
  line-height: 1.5;
  color: var(--muted);
}

.dg-offer-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45rem;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: var(--brand);
  box-shadow: 0 0 0 3px var(--brand-soft);
}

.dg-offer-about {
  padding-top: 2rem;
}

.dg-offer-about-grid {
  display: grid;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 900px) {
  .dg-offer-about-grid {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.85fr);
    gap: 2.5rem;
  }
}

.dg-offer-about-copy p {
  margin: 0 0 1rem;
  font-size: 1.02rem;
  line-height: 1.65;
  color: var(--muted);
}

.dg-offer-tagline {
  margin-top: 1.25rem !important;
  margin-bottom: 0 !important;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--ink);
}

.dg-offer-tagline a {
  color: var(--brand);
  text-decoration: none;
}

.dg-offer-tagline a:hover {
  text-decoration: underline;
}

.dg-offer-about-photo {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  max-width: 420px;
  margin: 0 auto;
}

.dg-offer-about-photo img {
  width: 100%;
  display: block;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.dg-offer-form-section {
  padding-bottom: 1rem;
  scroll-margin-top: 5rem;
}

.dg-offer-form-intro,
.dg-offer-form-note {
  max-width: 36rem;
  font-size: 1.02rem;
  line-height: 1.6;
  color: var(--muted);
  margin: 0 0 1rem;
}

.dg-offer-form-sub {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.2rem;
  margin: 1.5rem 0 0.35rem;
  letter-spacing: -0.02em;
}

.dg-offer-form-note {
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

.dg-offer-form {
  max-width: 28rem;
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
}

.dg-form-row {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.dg-form-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--ink);
}

.dg-form-input {
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 0.65rem 0.85rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface);
  color: var(--ink);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.dg-form-input:focus {
  outline: none;
  border-color: rgba(231, 25, 31, 0.45);
  box-shadow: 0 0 0 3px var(--brand-soft);
}

.dg-form-textarea {
  min-height: 6rem;
  resize: vertical;
}

.dg-form-submit {
  margin-top: 0.25rem;
  align-self: flex-start;
  cursor: pointer;
  border: none;
}

.dg-form-hint {
  margin: 0;
  font-size: 0.8125rem;
  color: var(--muted);
  line-height: 1.45;
  max-width: 28rem;
}

.dg-footer a {
  color: var(--muted);
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

.dg-footer a:hover {
  color: var(--brand);
}
