/* ==========================================================
   Amber Schut — The Impact House
   Minimal, calm, editorial. Mustard hero + warm beige page.
   2 fonts only: Italiana (display) + Inter (body).
   ========================================================== */

:root {
  /* colours */
  --bg: #fdf9b4;           /* cream yellow page */
  --surface: #f6ef95;      /* slightly deeper yellow (card tint) */
  --ink: #1e1810;          /* deep warm almost-black */
  --ink-soft: #4a3f2e;
  --ink-mute: #7a6b52;
  --line: rgba(30, 24, 16, 0.12);

  --feature: #c97f10;      /* amber — hero + contact bookend */
  --feature-ink: #fdf6ec;  /* warm cream on amber */
  --pink: #e8b4a0;         /* warm terracotta — subtle accent */

  /* type */
  --serif: "Italiana", "Times New Roman", serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  /* layout */
  --max: 1180px;
  --radius: 22px;
  --ease: cubic-bezier(0.2, 0.7, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.65;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img,
svg {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

/* ---------- Utilities ---------- */
.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;
}

.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1000;
  opacity: 0.18;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.17 0 0 0 0 0.14 0 0 0 0 0.08 0 0 0 0.22 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}

:focus-visible {
  outline: 2px solid var(--ink);
  outline-offset: 3px;
  border-radius: 6px;
}

/* ---------- Nav ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px clamp(20px, 5vw, 56px);
  background: color-mix(in srgb, var(--bg) 86%, transparent);
  backdrop-filter: saturate(1.2) blur(8px);
  -webkit-backdrop-filter: saturate(1.2) blur(8px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s var(--ease);
}

.nav.is-scrolled {
  border-bottom-color: var(--line);
}

.nav__brand {
  text-decoration: none;
  color: var(--ink);
}

.nav__mark-v2 {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--serif);
  font-weight: 400;
  font-size: 20px;
  letter-spacing: 0.03em;
}

.nav__mark-v2 .star {
  width: 16px;
  height: 16px;
  color: var(--feature);
  flex-shrink: 0;
}

.nav__links {
  list-style: none;
  display: flex;
  gap: clamp(14px, 3vw, 34px);
  margin: 0;
  padding: 0;
  align-items: center;
  font-size: 15px;
}

.nav__links a {
  text-decoration: none;
  color: var(--ink-soft);
  position: relative;
  padding: 6px 2px;
  transition: color 0.25s var(--ease);
}

.nav__links a::after {
  content: "";
  position: absolute;
  left: 2px;
  right: 2px;
  bottom: 2px;
  height: 1.5px;
  background: var(--ink);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s var(--ease);
}

.nav__links a:hover::after,
.nav__links a:focus-visible::after {
  transform: scaleX(1);
}

.nav__links a:hover,
.nav__links a:focus-visible {
  color: var(--ink);
}

.nav__cta {
  background: var(--ink);
  color: var(--feature-ink) !important;
  padding: 9px 18px !important;
  border-radius: 999px;
  font-weight: 500;
}

.nav__cta::after {
  display: none;
}

.nav__cta:hover {
  background: var(--pink);
  color: var(--ink) !important;
}

@media (max-width: 640px) {
  .nav__links li:not(:last-child) {
    display: none;
  }
}

/* ---------- Shared section layout ---------- */
section {
  padding: clamp(70px, 9vw, 130px) clamp(20px, 5vw, 56px);
  max-width: var(--max);
  margin: 0 auto;
}

.section__head {
  max-width: 780px;
  margin-bottom: 64px;
}

.eyebrow {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 12px;
  font-weight: 500;
  color: var(--ink-mute);
  margin-bottom: 20px;
}

.section__title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(38px, 5.5vw, 68px);
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin: 0 0 22px;
  color: var(--ink);
}

.section__title em {
  font-style: italic;
  font-weight: 400;
  color: var(--ink);
  border-bottom: 2px solid var(--feature);
  padding: 0 2px 4px;
}

.section__lede {
  font-size: clamp(17px, 1.6vw, 20px);
  color: var(--ink-soft);
  max-width: 640px;
  margin: 0;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 24px;
  border-radius: 999px;
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  border: 1.5px solid transparent;
  transition: transform 0.2s var(--ease), background 0.25s var(--ease),
    color 0.25s var(--ease), border-color 0.25s var(--ease);
  cursor: pointer;
}

.btn--primary {
  background: var(--ink);
  color: var(--feature-ink);
  border-color: var(--ink);
  font-weight: 500;
}

.btn--primary:hover {
  background: var(--pink);
  color: var(--ink);
  border-color: var(--pink);
  transform: translateY(-1px);
}

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

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

.btn--big {
  padding: 18px 32px;
  font-size: 17px;
}

/* ==========================================================
   HERO — mustard inset card with photo on the right
   ========================================================== */
.hero {
  background: var(--feature);
  border-radius: 28px;
  margin: 20px clamp(16px, 3vw, 40px) 80px;
  padding: clamp(64px, 9vw, 130px) clamp(32px, 6vw, 90px);
  padding-right: clamp(380px, 46vw, 700px);
  max-width: none;
  min-height: clamp(560px, 64vh, 720px);
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  color: var(--ink);

  /* subtle dotted accent behind the content */
  background-image: radial-gradient(
      circle,
      rgba(253, 249, 180, 0.22) 1px,
      transparent 1.4px
    ),
    linear-gradient(var(--feature), var(--feature));
  background-size: 22px 22px, 100% 100%;
}

/* Dotted spotlight — brighter dots follow the cursor */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    circle,
    rgba(253, 249, 180, 0.7) 1.3px,
    transparent 1.6px
  );
  background-size: 22px 22px;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.35s var(--ease);
  -webkit-mask-image: radial-gradient(
    220px circle at var(--mx, 50%) var(--my, 50%),
    #000 0%,
    rgba(0, 0, 0, 0.7) 35%,
    transparent 72%
  );
  mask-image: radial-gradient(
    220px circle at var(--mx, 50%) var(--my, 50%),
    #000 0%,
    rgba(0, 0, 0, 0.7) 35%,
    transparent 72%
  );
  z-index: 0;
}

.hero:hover::before {
  opacity: 1;
}

.hero > * {
  position: relative;
  z-index: 1;
}

.hero__title {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.hero__hi-v2 {
  font-family: var(--serif);
  font-size: clamp(20px, 2.8vw, 38px);
  line-height: 1;
  color: var(--feature-ink);
  font-weight: 400;
  letter-spacing: -0.005em;
  margin-bottom: -4px;
}

.hero__name {
  font-family: var(--serif);
  font-size: clamp(92px, 15vw, 210px);
  line-height: 0.9;
  letter-spacing: -0.01em;
  color: var(--feature-ink);
  font-weight: 400;
}

.accent-dot {
  color: var(--pink);
}

.hero__role-v2 {
  font-family: var(--sans);
  font-weight: 500;
  font-size: clamp(18px, 1.8vw, 24px);
  line-height: 1.35;
  color: var(--ink);
  letter-spacing: 0;
  margin-top: 22px;
}

.hero__intro-v2 {
  max-width: 460px;
  font-size: clamp(16px, 1.35vw, 18.5px);
  line-height: 1.55;
  color: var(--ink);
  font-weight: 400;
  margin: 10px 0 0;
}

/* CTAs */
.hero__ctas-v2 {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 28px;
}

/* Hero brand mark */
.hero__brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 48px;
  font-family: var(--serif);
  font-size: clamp(18px, 1.8vw, 22px);
  color: var(--ink);
  letter-spacing: 0.04em;
}

.hero__brand .star {
  width: 20px;
  height: 20px;
  color: var(--feature-ink);
}

/* Scrapbook collage — big polaroid + raw snapshots fill the right side of the hero */
.hero__photos {
  position: absolute;
  top: clamp(30px, 4vw, 60px);
  right: clamp(20px, 3vw, 60px);
  bottom: clamp(30px, 4vw, 60px);
  width: clamp(380px, 48vw, 720px);
  z-index: 2;
  pointer-events: none;
}

.hero__photo-v2 {
  position: absolute;
  margin: 0;
  cursor: pointer;
  pointer-events: auto;
  transition: transform 0.4s var(--ease), z-index 0s linear 0.18s;
}

/* Snapshot 1 — raw photo, top-right, medium, tilted right */
.hero__photo--1 {
  top: 0;
  right: 0;
  width: clamp(180px, 20vw, 280px);
  z-index: 2;
  animation: pin1 0.9s cubic-bezier(0.34, 1.56, 0.64, 1) 0.35s both;
}

/* Polaroid — the hero photo, BIG, centre-left, gentle tilt left */
.hero__photo--2 {
  top: 6%;
  left: 0;
  width: clamp(280px, 32vw, 460px);
  z-index: 3;
  animation: pin2 0.9s cubic-bezier(0.34, 1.56, 0.64, 1) 0.55s both;
}

/* Snapshot 2 — raw photo, bottom-right, medium-large, tilted right */
.hero__photo--3 {
  bottom: 0;
  right: 6%;
  width: clamp(200px, 23vw, 320px);
  z-index: 4;
  animation: pin3 0.9s cubic-bezier(0.34, 1.56, 0.64, 1) 0.75s both;
}

/* Pin-onto-board entrance */
@keyframes pin1 {
  from { opacity: 0; transform: rotate(20deg) scale(0.6); }
  to   { opacity: 1; transform: rotate(7deg)  scale(1); }
}
@keyframes pin2 {
  from { opacity: 0; transform: rotate(-16deg) scale(0.7); }
  to   { opacity: 1; transform: rotate(-5deg)  scale(1); }
}
@keyframes pin3 {
  from { opacity: 0; transform: rotate(14deg) scale(0.6); }
  to   { opacity: 1; transform: rotate(6deg)  scale(1); }
}

/* Hover: straighten + lift the hovered one, bring to front */
.hero__photo-v2:hover {
  transform: rotate(0deg) scale(1.04) !important;
  z-index: 10;
  transition: transform 0.45s var(--ease), z-index 0s;
  animation-play-state: paused;
}

/* Shared frame sits inside the <figure>; the variants style the frame itself. */
.hero__photo-frame {
  width: 100%;
  transition: box-shadow 0.4s var(--ease);
}

.hero__photo-frame img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  background: var(--surface);
}

/* Polaroid variant — white card with thick bottom edge */
.hero__photo--polaroid .hero__photo-frame {
  background: #fff;
  padding: 10px 10px 42px;
  box-shadow: 0 24px 40px -20px rgba(42, 29, 4, 0.45),
    0 6px 14px -6px rgba(42, 29, 4, 0.22);
}

.hero__photo--polaroid:hover .hero__photo-frame {
  box-shadow: 0 34px 54px -18px rgba(42, 29, 4, 0.55),
    0 10px 20px -8px rgba(42, 29, 4, 0.28);
}

/* Snapshot variant — raw photo, no frame, soft drop-shadow */
.hero__photo--snapshot .hero__photo-frame {
  background: transparent;
  padding: 0;
  filter: drop-shadow(0 14px 22px rgba(42, 29, 4, 0.35))
    drop-shadow(0 3px 6px rgba(42, 29, 4, 0.18));
}

.hero__photo--snapshot:hover .hero__photo-frame {
  filter: drop-shadow(0 22px 32px rgba(42, 29, 4, 0.45))
    drop-shadow(0 6px 10px rgba(42, 29, 4, 0.24));
}

/* Paperclip — only on the polaroid */
.hero__photo-clip {
  position: absolute;
  top: -18px;
  left: 50%;
  transform: translateX(-50%) rotate(-6deg);
  width: clamp(22px, 1.8vw, 32px);
  height: auto;
  color: #8a8a8a;
  filter: drop-shadow(0 2px 3px rgba(0, 0, 0, 0.25));
  z-index: 4;
  pointer-events: none;
}

@media (max-width: 980px) {
  .hero {
    padding-right: clamp(32px, 6vw, 90px);
    padding-top: clamp(40px, 7vw, 70px);
    min-height: auto;
  }
  .hero__photos {
    position: relative;
    top: auto;
    right: auto;
    bottom: auto;
    order: -1;
    width: 100%;
    max-width: 640px;
    height: clamp(360px, 78vw, 520px);
    margin: 0 auto 16px;
    align-self: center;
  }
  .hero__photo--1 {
    top: 0;
    right: 2%;
    width: clamp(150px, 32vw, 240px);
  }
  .hero__photo--2 {
    top: 8%;
    left: 2%;
    width: clamp(240px, 50vw, 360px);
    z-index: 5;
  }
  .hero__photo--3 {
    bottom: 0;
    right: 10%;
    width: clamp(170px, 38vw, 280px);
  }
}

@media (max-width: 520px) {
  .hero__photos {
    height: clamp(320px, 84vw, 440px);
  }
  .hero__photo--1 { width: 44vw; }
  .hero__photo--2 { width: 62vw; }
  .hero__photo--3 { width: 48vw; }
}

/* ==========================================================
   CLIENTS — twee rijen scrollende logo-tegels
   ========================================================== */
.clients {
  width: 100vw;
  max-width: none;
  margin-left: calc(50% - 50vw);
  padding: 3rem 0;
  text-align: center;
  overflow: hidden;
  background: var(--bg);
}

.clients__label {
  font-family: var(--sans);
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin: 0 0 1.8rem;
}

.clients__row {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
  margin-bottom: 1rem;
}

.clients__row:last-child { margin-bottom: 0; }

@media (max-width: 760px) {
  .clients__row {
    -webkit-mask-image: none;
    mask-image: none;
  }
  .clients__tile[data-theme="a"],
  .clients__tile[data-theme="b"],
  .clients__tile[data-theme="c"],
  .clients__tile[data-theme="d"],
  .clients__tile[data-theme="e"] {
    transform: none;
  }
}

.clients__track {
  display: flex;
  align-items: center;
  gap: 1rem;
  width: max-content;
  animation: logosScroll 28s linear infinite;
  will-change: transform;
  transform: translateZ(0);
  backface-visibility: hidden;
}

.clients__track--reverse {
  animation-name: logosScrollReverse;
  animation-duration: 32s;
}

.clients__tile {
  width: 120px;
  height: 120px;
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 22px;
  flex-shrink: 0;
  transition: transform 0.3s var(--ease);
  box-shadow: 3px 4px 12px rgba(30,24,16,0.18), 0 1px 3px rgba(30,24,16,0.12);
}

.clients__tile:hover { transform: scale(1.08) rotate(0deg) !important; }

.clients__tile[data-theme="a"] { background: var(--feature); transform: rotate(-2.5deg); }
.clients__tile[data-theme="b"] { background: #ffffff; transform: rotate(1.8deg); }
.clients__tile[data-theme="c"] { background: var(--pink); transform: rotate(-1.2deg); }
.clients__tile[data-theme="d"] { background: var(--feature); transform: rotate(2.2deg); }
.clients__tile[data-theme="e"] { background: var(--pink); transform: rotate(-1.8deg); }

.clients__tile img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.clients__tile[data-theme="a"] img,
.clients__tile[data-theme="d"] img { filter: brightness(0) invert(1) opacity(0.9); }

.clients__tile[data-theme="b"] img,
.clients__tile[data-theme="c"] img,
.clients__tile[data-theme="e"] img { filter: brightness(0) opacity(0.7); }

@keyframes logosScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-25%); }
}

@keyframes logosScrollReverse {
  from { transform: translateX(-25%); }
  to   { transform: translateX(0); }
}

/* ==========================================================
   SERVICES — editorial numbered rows
   ========================================================== */

/* Twee-koloms layout: foto's links, diensten rechts */
.services__layout {
  display: grid;
  grid-template-columns: clamp(200px, 28vw, 360px) 1fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: start;
}

/* Foto-kolom — sticky zodat ze meeschuiven terwijl je scrollt */
.services__photos {
  position: sticky;
  top: 100px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.services__photo {
  margin: 0;
  overflow: hidden;
  border-radius: 16px;
}

.services__photo img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

.services__photo:hover img {
  transform: scale(1.03);
}

/* Grote foto — licht gekanteld */
.services__photo--large {
  transform: rotate(-1.5deg);
  aspect-ratio: 3 / 4;
}

.services__photo--large img {
  aspect-ratio: 3 / 4;
}

/* Kleine foto — andere kant op gekanteld, iets smaller */
.services__photo--small {
  width: 72%;
  align-self: flex-end;
  transform: rotate(2deg);
  aspect-ratio: 3 / 4;
}

.services__photo--small img {
  aspect-ratio: 3 / 4;
}

@media (max-width: 860px) {
  .services__layout {
    grid-template-columns: 1fr;
  }
  .services__photos {
    position: static;
    flex-direction: row;
    align-items: flex-start;
  }
  .services__photo--large {
    flex: 1;
  }
  .services__photo--small {
    width: auto;
    flex: 0 0 42%;
    margin-top: 40px;
  }
}

.services__grid {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 980px;
}

.service {
  background: transparent;
  border: none;
  border-top: 1px solid var(--line);
  border-radius: 0;
  padding: 30px 0;
  display: grid;
  grid-template-columns: 60px 1.1fr 1.4fr;
  gap: 16px 48px;
  align-items: start;
  color: var(--ink);
  transition: padding-left 0.35s var(--ease), background 0.35s var(--ease);
}

.service:hover {
  padding-left: 4px;
  background: color-mix(in srgb, var(--ink) 5%, transparent);
  border-radius: 8px;
}

.services__grid > :last-child {
  border-bottom: 1px solid var(--line);
}

.service__num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 32px;
  color: var(--ink-mute);
  line-height: 1;
  grid-column: 1;
  align-self: start;
  margin-top: 6px;
}

.service h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(24px, 2.4vw, 30px);
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin: 0;
  grid-column: 2;
}

.service p {
  color: var(--ink-soft);
  margin: 6px 0 0;
  font-size: 16px;
  line-height: 1.55;
  grid-column: 3;
  grid-row: 1;
}

.service ul {
  list-style: none;
  padding: 0;
  margin: 12px 0 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 14.5px;
  color: var(--ink);
  grid-column: 3;
  grid-row: 2;
}

.service ul li {
  position: relative;
  padding-left: 20px;
}

.service ul li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--feature);
  transition: transform 0.25s var(--ease), letter-spacing 0.25s var(--ease);
}

.service:hover ul li::before {
  transform: translateX(4px);
  letter-spacing: 0.06em;
}

@media (max-width: 860px) {
  .service {
    grid-template-columns: 48px 1fr;
    gap: 10px 18px;
  }
  .service p,
  .service ul {
    grid-column: 2;
    grid-row: auto;
  }
  .service__num {
    font-size: 24px;
    margin-top: 8px;
  }
}

/* ==========================================================
   MARQUEE — scrolling mustard band
   ========================================================== */
.marquee {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  background: var(--feature);
  color: var(--feature-ink);
  padding: 18px 0;
  overflow: hidden;
  position: relative;
}

.marquee__track {
  display: flex;
  gap: 36px;
  white-space: nowrap;
  width: max-content;
  animation: marqueeScroll 40s linear infinite;
  font-family: var(--serif);
  font-size: clamp(20px, 2.2vw, 28px);
  font-weight: 400;
  letter-spacing: 0.02em;
  align-items: center;
  will-change: transform;
  transform: translateZ(0);
  backface-visibility: hidden;
}

.marquee__track span {
  flex-shrink: 0;
}

.marquee__sep {
  opacity: 0.55;
  font-size: 20px;
}

@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@keyframes marqueeScrollReverse {
  from { transform: translateX(-50%); }
  to { transform: translateX(0); }
}

.marquee--reverse {
  margin-top: 2rem;
}

.marquee--reverse .marquee__track {
  animation-name: marqueeScrollReverse;
}

/* ==========================================================
   ABOUT — text + photo (photo replaces "in het kort" card)
   ========================================================== */
.about {
  display: grid;
  grid-template-columns: 1.4fr 0.9fr;
  gap: clamp(30px, 5vw, 70px);
  align-items: start;
}

.about__text p {
  font-size: 17.5px;
  color: var(--ink-soft);
  max-width: 560px;
}

.about__values {
  list-style: none;
  padding: 0;
  margin: 32px 0 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px 20px;
  max-width: 520px;
}

.about__values li {
  display: flex;
  gap: 10px;
  align-items: baseline;
  font-family: var(--sans);
  font-weight: 500;
  font-size: 16px;
  color: var(--ink);
}

.about__values li span {
  color: var(--pink);
  font-size: 14px;
  transform: translateY(-1px);
}

/* Second photo in the about section */
.about__photo {
  margin: 0;
  justify-self: end;
  position: sticky;
  top: 100px;
  width: clamp(280px, 34vw, 420px);
}

.about__arrow {
  position: absolute;
  top: 60px;
  left: -110px;
  width: 140px;
  height: auto;
  opacity: 0.7;
  pointer-events: none;
}

.about__arrow-path,
.about__arrow-head {
  transition: stroke-dashoffset 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.about__arrow-head {
  transition-delay: 0.9s;
}

.about__arrow.will-draw .about__arrow-path,
.about__arrow.will-draw .about__arrow-head {
  stroke-dashoffset: var(--path-len, 400);
}

.about__arrow.is-drawn .about__arrow-path,
.about__arrow.is-drawn .about__arrow-head {
  stroke-dashoffset: 0;
}

/* ── Over-mij photo grid ── */
.about-photos {
  display: flex;
  justify-content: center;
  gap: 2rem;
  padding: 3rem var(--pad, 24px);
  max-width: var(--max);
  margin: 0 auto;
  flex-wrap: wrap;
}

.about-photos__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.about-photos__item--a { transform: rotate(-2.5deg); }
.about-photos__item--b { transform: rotate(1.5deg) translateY(16px); }
.about-photos__item--c { transform: rotate(-1.2deg); }

.about-photos__frame {
  background: #fff;
  padding: 10px 10px 34px;
  box-shadow: 0 14px 32px -8px rgba(42,29,4,0.32), 0 4px 10px -4px rgba(42,29,4,0.18);
  width: 220px;
}

.about-photos__frame img {
  display: block;
  width: 100%;
  height: 280px;
  object-fit: cover;
  background: var(--feature);
}

.about-photos__item figcaption {
  font-family: var(--serif);
  font-size: 14px;
  opacity: 0.55;
  text-align: center;
}

/* Alle frames naast elkaar, geen wrap */
.about-photos {
  flex-wrap: nowrap;
  overflow-x: auto;
}

/* Zwevende animatie op alle drie */
.about-photos__item--a { animation: float-a 4s ease-in-out infinite; }
.about-photos__item--b { animation: float-b 4.5s ease-in-out infinite; animation-delay: 0.6s; }
.about-photos__item--c { animation: float-c 4s ease-in-out infinite; animation-delay: 1.2s; }

@keyframes float-a {
  0%, 100% { transform: rotate(-2.5deg) translateY(0px); }
  50%       { transform: rotate(-1.5deg) translateY(-8px); }
}
@keyframes float-b {
  0%, 100% { transform: rotate(1.5deg) translateY(16px); }
  50%       { transform: rotate(2.5deg) translateY(8px); }
}
@keyframes float-c {
  0%, 100% { transform: rotate(-1.2deg) translateY(0px); }
  50%       { transform: rotate(-2.2deg) translateY(-8px); }
}

/* Young Creators liggend */
.about-photos__item--c .about-photos__frame {
  width: 320px;
}
.about-photos__item--c .about-photos__frame img {
  height: 200px;
}

@media (max-width: 600px) {
  .about-photos {
    gap: 1.25rem;
    flex-wrap: wrap;
    overflow-x: visible;
    justify-content: center;
  }
  .about-photos__item--a,
  .about-photos__item--b,
  .about-photos__item--c {
    animation: none;
    transform: none;
  }
  .about-photos__frame { width: 140px; }
  .about-photos__frame img { height: 180px; }
  .about-photos__item--c .about-photos__frame { width: 300px; }
  .about-photos__item--c .about-photos__frame img { height: 160px; }
}

.about__photo--page {
  position: relative;
  justify-self: center;
  width: clamp(260px, 70vw, 400px);
  margin: 0 auto 48px;
}

.about__photo--page .about__arrow {
  top: -50px;
  left: 10px;
  transform: rotate(15deg);
  width: 64px;
}

.about__fact {
  position: absolute;
  background: #fffde7;
  padding: 10px 13px 10px;
  font-family: var(--sans);
  font-size: 12.5px;
  font-style: italic;
  color: var(--ink);
  line-height: 1.45;
  box-shadow: 2px 5px 14px rgba(42, 29, 4, 0.18);
  z-index: 2;
}

.about__fact::before {
  content: "";
  position: absolute;
  top: -7px;
  left: 50%;
  transform: translateX(-50%);
  width: 38px;
  height: 13px;
  background: rgba(244, 186, 196, 0.75);
  border-radius: 2px;
}

.about__fact--1 {
  top: 18px;
  left: -30px;
  transform: rotate(-5deg);
  max-width: 140px;
}

.about__fact--2 {
  bottom: 50px;
  right: -24px;
  transform: rotate(4deg);
  max-width: 155px;
}

.about__photo-frame {
  background: #fff;
  padding: 12px 12px 42px;
  box-shadow: 0 24px 40px -20px rgba(42, 29, 4, 0.32),
    0 6px 12px -6px rgba(42, 29, 4, 0.18);
  width: clamp(220px, 26vw, 340px);
  transform: rotate(-2deg);
  transition: transform 0.4s var(--ease);
}

.about__photo:hover .about__photo-frame {
  transform: rotate(-1deg) translateY(-3px);
}

.about__photo-frame img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 4;
  object-fit: cover;
}

@media (max-width: 860px) {
  .about {
    grid-template-columns: 1fr;
  }
  .about__photo {
    justify-self: center;
    position: static;
  }
  .about__values {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================
   EXPERIENCE — timeline
   ========================================================== */
.timeline {
  list-style: none;
  padding: 0;
  margin: 0 0 34px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.timeline__item {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 30px;
  padding: 26px 0;
  border-top: 1px solid var(--line);
  transition: background 0.25s var(--ease);
}

.timeline__item:last-child {
  border-bottom: 1px solid var(--line);
}

.timeline__item:hover {
  background: color-mix(in srgb, var(--surface) 40%, transparent);
}

.timeline__year {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-mute);
  padding-top: 4px;
}

.timeline__item h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(20px, 2vw, 26px);
  letter-spacing: -0.015em;
  margin: 0 0 8px;
  color: var(--ink);
}

.timeline__item p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 16px;
  max-width: 640px;
}

@media (max-width: 620px) {
  .timeline__item {
    grid-template-columns: 1fr;
    gap: 6px;
  }
}

/* ==========================================================
   REVIEWS — single testimonial
   ========================================================== */
.reviews {
  text-align: center;
  padding-top: clamp(90px, 10vw, 140px);
  padding-bottom: clamp(90px, 10vw, 140px);
}

.review {
  margin: 20px auto 0;
  max-width: 820px;
  position: relative;
}

.review__quote {
  font-family: var(--serif);
  font-size: clamp(22px, 2.8vw, 34px);
  line-height: 1.35;
  color: var(--ink);
  margin: 0 0 28px;
  font-style: normal;
}

.review__mark {
  font-family: var(--serif);
  font-size: 1.8em;
  line-height: 0;
  vertical-align: -0.2em;
  color: var(--pink);
  margin-right: 0.08em;
}

.review__meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-size: 14px;
  color: var(--ink-soft);
}

.review__meta strong {
  font-weight: 600;
  color: var(--ink);
  font-size: 15px;
}

.review__meta span {
  font-size: 13px;
  color: var(--ink-mute);
}

/* ==========================================================
   WORK — placeholder case grid
   ========================================================== */
.work__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.case {
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-decoration: none;
  color: inherit;
}

.case__thumb {
  aspect-ratio: 4/5;
  border-radius: var(--radius);
  position: relative;
  overflow: hidden;
  transition: transform 0.5s var(--ease);
  display: flex;
  align-items: flex-start;
  padding: 20px;
}

.case:hover .case__thumb {
  transform: translateY(-4px);
}

.case:hover .case__type {
  transform: translateY(-4px);
}

.case__thumb--blue {
  background: var(--ink);
}

.case__thumb--peach {
  background: var(--feature);
}

.case__thumb--cream {
  background: var(--surface);
}

.case__thumb--pink {
  background: var(--pink);
}

.case__thumb--blue .case__label {
  background: var(--feature-ink);
}

.case__label {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink);
  background: rgba(255, 253, 248, 0.92);
  padding: 5px 12px;
  border-radius: 999px;
  z-index: 2;
}

.case__type {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 18px;
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(42px, 5.6vw, 76px);
  line-height: 0.9;
  letter-spacing: -0.035em;
  color: var(--feature-ink);
  transition: transform 0.5s var(--ease);
  pointer-events: none;
  margin: 0;
}

.case__thumb--peach .case__type,
.case__thumb--pink .case__type {
  color: var(--ink);
}

.case__type em {
  font-style: normal;
  color: var(--pink);
}

.case__thumb--pink .case__type em {
  color: var(--feature-ink);
}

.case h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 22px;
  margin: 8px 0 0;
  letter-spacing: -0.015em;
  color: var(--ink);
}

.case__role {
  margin: 0;
  font-size: 14px;
  color: var(--ink-mute);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.case__result {
  margin: 0;
  font-family: var(--serif);
  font-style: italic;
  color: var(--ink-soft);
  transition: color 0.25s var(--ease);
}

.case:hover .case__result {
  color: var(--ink);
}

/* Post-it photo on case card */
.case__postit {
  position: absolute;
  top: 48px;
  right: 10px;
  width: 52%;
  margin: 0;
  z-index: 2;
  transform: rotate(5deg);
  transition: transform 0.45s var(--ease);
  pointer-events: none;
}

.case:hover .case__postit {
  transform: rotate(2deg) scale(1.04);
}

.case__postit-frame {
  background: #fff;
  padding: 7px 7px 26px;
  box-shadow: 0 12px 28px -8px rgba(42, 29, 4, 0.42),
    0 4px 8px -4px rgba(42, 29, 4, 0.2);
}

.case__postit-frame img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

/* Spotlight dot hover effect on Vilna card */
.case--spotlight .case__thumb {
  background-image: radial-gradient(
    circle,
    rgba(253, 249, 180, 0.18) 1px,
    transparent 1.4px
  );
  background-size: 20px 20px;
}

.case--spotlight .case__thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    circle,
    rgba(253, 249, 180, 0.7) 1.3px,
    transparent 1.6px
  );
  background-size: 20px 20px;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.35s var(--ease);
  -webkit-mask-image: radial-gradient(
    160px circle at var(--cx, 50%) var(--cy, 50%),
    #000 0%,
    rgba(0, 0, 0, 0.6) 40%,
    transparent 70%
  );
  mask-image: radial-gradient(
    160px circle at var(--cx, 50%) var(--cy, 50%),
    #000 0%,
    rgba(0, 0, 0, 0.6) 40%,
    transparent 70%
  );
  z-index: 1;
}

.case--spotlight .case__thumb:hover::after {
  opacity: 1;
}

@media (max-width: 860px) {
  .work__grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 540px) {
  .work__grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================
   CONTACT — mustard bookend
   ========================================================== */
.contact {
  text-align: center;
  position: relative;
  padding-top: clamp(100px, 12vw, 160px);
  padding-bottom: clamp(100px, 12vw, 160px);
}

.contact::before {
  content: "";
  position: absolute;
  inset: clamp(30px, 5vw, 60px) 0;
  background: var(--feature);
  border-radius: calc(var(--radius) * 2);
  z-index: -1;
}

.contact__scribble {
  display: inline-block;
  font-family: var(--sans);
  font-weight: 500;
  color: var(--ink);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  margin-bottom: 12px;
}

.contact__title {
  color: var(--ink);
  max-width: 780px;
  margin: 0 auto 22px;
}

.contact__title em {
  color: var(--ink);
  border-bottom-color: var(--ink);
}

.contact__lede {
  font-size: 18px;
  color: var(--ink);
  margin: 0 auto 34px;
  max-width: 540px;
  opacity: 0.88;
}

.contact__actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Spotlight op contactblok */
.contact--spotlight::after {
  content: "";
  position: absolute;
  inset: clamp(30px, 5vw, 60px) 0;
  border-radius: calc(var(--radius) * 2);
  background-image: radial-gradient(
    circle,
    rgba(253, 249, 180, 0.85) 1.3px,
    transparent 1.6px
  );
  background-size: 22px 22px;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.35s var(--ease);
  -webkit-mask-image: radial-gradient(
    220px circle at var(--qx, 50%) var(--qy, 50%),
    #000 0%,
    rgba(0, 0, 0, 0.7) 35%,
    transparent 72%
  );
  mask-image: radial-gradient(
    220px circle at var(--qx, 50%) var(--qy, 50%),
    #000 0%,
    rgba(0, 0, 0, 0.7) 35%,
    transparent 72%
  );
  z-index: 0;
}

.contact--spotlight:hover::after {
  opacity: 1;
}

.contact--spotlight > * {
  position: relative;
  z-index: 1;
}

/* ==========================================================
   STATEMENT — typographic tagline with inline photos
   ========================================================== */
.statement {
  padding: 5rem var(--pad);
  overflow: hidden;
}

.statement__inner {
  max-width: var(--max);
  margin: 0 auto;
}

.statement__line {
  display: flex;
  align-items: center;
  gap: 0.25em;
  flex-wrap: wrap;
  margin: 0 0 0.08em;
  line-height: 1;
}

.statement__word {
  font-family: var(--serif);
  font-size: clamp(4.5rem, 16vw, 13rem);
  color: var(--ink);
  line-height: 1;
  white-space: nowrap;
}

.statement__line--left  { justify-content: flex-start; }
.statement__line--right { justify-content: flex-end; }

.statement__line--spotlight {
  position: relative;
}

.statement__line--spotlight::after {
  content: "";
  position: absolute;
  inset: -0.25em -0.4em;
  border-radius: var(--radius);
  background-image: radial-gradient(
    circle,
    rgba(42, 29, 4, 0.22) 1.3px,
    transparent 1.6px
  );
  background-size: 22px 22px;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.35s var(--ease);
  -webkit-mask-image: radial-gradient(
    220px circle at var(--tx, 50%) var(--ty, 50%),
    #000 0%,
    rgba(0, 0, 0, 0.7) 35%,
    transparent 72%
  );
  mask-image: radial-gradient(
    220px circle at var(--tx, 50%) var(--ty, 50%),
    #000 0%,
    rgba(0, 0, 0, 0.7) 35%,
    transparent 72%
  );
  z-index: 0;
}

.statement__line--spotlight:hover::after { opacity: 1; }
.statement__line--spotlight > * { position: relative; z-index: 1; }

.statement__photo {
  display: inline-flex;
  flex-shrink: 0;
  background: #fff;
  padding: 8px 8px 28px;
  box-shadow: 0 12px 32px -8px rgba(42, 29, 4, 0.28), 0 3px 8px -3px rgba(42, 29, 4, 0.14);
  transition: transform 0.4s var(--ease);
  vertical-align: middle;
}

.statement__photo img {
  height: clamp(4.5rem, 16vw, 13rem);
  width: auto;
  object-fit: cover;
  display: block;
}

.statement__photo--1:hover,
.statement__photo--1.reveal.is-visible:hover {
  transform: rotate(-2deg) translateY(-4px) !important;
}

.statement__photo--2:hover,
.statement__photo--2.reveal.is-visible:hover {
  transform: rotate(1deg) translateY(-4px) !important;
}

.statement__word.reveal,
.statement__photo.reveal {
  opacity: 0;
  transform: scale(0.3) rotate(var(--rot, 0deg));
  transition: opacity 0.7s var(--ease), transform 0.8s var(--ease);
  transition-delay: calc(var(--i, 0) * 0.1s);
}

.statement__word.reveal.is-visible,
.statement__photo.reveal.is-visible {
  opacity: 1;
  transform: scale(1) rotate(var(--rot, 0deg));
}

.statement__photo--1 { --rot: -5deg; }
.statement__photo--2 { --rot: 4deg; }

/* ==========================================================
   FOOTER
   ========================================================== */
.footer {
  max-width: var(--max);
  margin: 0 auto;
  padding: 36px clamp(20px, 5vw, 56px) 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  border-top: 1px solid var(--line);
  font-size: 13.5px;
  color: var(--ink-mute);
}

.footer__mark-v2 {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--serif);
  font-size: 18px;
  color: var(--ink);
  margin-right: 14px;
}

.footer__mark-v2 .star {
  width: 16px;
  height: 16px;
  color: var(--feature);
}

.footer__meta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* ==========================================================
   ANIMATIONS
   ========================================================== */

/* Custom cursor — View knop over cases */
.cursor-view {
  position: fixed;
  top: 0;
  left: 0;
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--feature-ink);
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  z-index: 9999;
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.4);
  transition: opacity 0.25s var(--ease), transform 0.25s var(--ease);
  will-change: transform;
}

.cursor-view.is-visible {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.work .case { cursor: none; }

/* Hero load-in (staggered fade-up on page load) */
.hero > * {
  animation: heroFadeUp 0.9s var(--ease) both;
  animation-delay: calc(var(--i, 0) * 100ms);
}
.hero__title { --i: 0; }
.hero__intro-v2 { --i: 1; }
.hero__ctas-v2 { --i: 2; }
.hero__brand { --i: 3; }

@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}

/* (Individual photo animations defined alongside the pinboard layout.) */

/* Scroll reveal (triggered by IntersectionObserver in script.js) */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Respect motion preferences */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
  .marquee__track {
    animation: none;
  }
  .hero__photo-v2 {
    animation: none;
    opacity: 1;
  }
}

/* ==========================================================
   MOBILE PERFORMANCE — disable heavy compositing on touch devices
   ========================================================== */
@media (max-width: 760px) {
  .grain {
    display: none;
  }
  .clients__track,
  .clients__track--reverse {
    animation: none !important;
    will-change: auto;
    transform: none;
  }
  .marquee__track {
    animation: none !important;
    will-change: auto;
    transform: none;
  }
}

/* ==========================================================
   CASE DETAIL — editorial case study template
   ========================================================== */
.case-page {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(24px, 4vw, 48px) clamp(20px, 5vw, 56px)
    clamp(60px, 8vw, 100px);
}

.case-hero__back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: var(--ink-soft);
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: clamp(40px, 6vw, 72px);
  transition: color 0.25s var(--ease);
}

.case-hero__back:hover {
  color: var(--ink);
}

.case-hero__eyebrow {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 12px;
  font-weight: 500;
  color: var(--ink-mute);
  margin-bottom: 22px;
}

.case-hero__title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(52px, 9vw, 140px);
  line-height: 0.95;
  letter-spacing: -0.035em;
  margin: 0 0 28px;
  color: var(--ink);
  max-width: 14ch;
}

.case-hero__title em {
  font-style: italic;
  color: var(--ink);
}

.case-hero__title .accent-dot {
  color: var(--pink);
}

.case-hero__lede {
  font-size: clamp(18px, 1.8vw, 22px);
  color: var(--ink-soft);
  max-width: 620px;
  line-height: 1.5;
  margin: 0 0 clamp(40px, 5vw, 64px);
}

/* Meta strip — facts row */
.case-meta {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  padding: 28px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin-bottom: clamp(60px, 8vw, 100px);
}

.case-meta__item {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.case-meta__label {
  font-size: 11.5px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--ink-mute);
  font-weight: 500;
}

.case-meta__value {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 15px;
  color: var(--ink);
}

/* Editorial cover block — big typography */
.case-cover {
  border-radius: 28px;
  padding: clamp(60px, 10vw, 130px) clamp(28px, 6vw, 80px);
  margin-bottom: clamp(70px, 9vw, 120px);
  position: relative;
  overflow: hidden;
  min-height: clamp(340px, 48vw, 560px);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background-image: radial-gradient(
      circle,
      rgba(253, 249, 180, 0.18) 1px,
      transparent 1.4px
    );
  background-size: 22px 22px;
}

.case-cover--mustard {
  background-color: var(--feature);
  color: var(--feature-ink);
  transition: background-color 0.4s var(--ease);
}

.case-cover--ink {
  background-color: var(--ink);
  color: var(--feature-ink);
  background-image: radial-gradient(
      circle,
      rgba(253, 249, 180, 0.12) 1px,
      transparent 1.4px
    );
}

.case-cover--pink {
  background-color: var(--pink);
  color: var(--ink);
  background-image: radial-gradient(
      circle,
      rgba(42, 29, 4, 0.12) 1px,
      transparent 1.4px
    );
}

.case-cover--beige {
  background-color: var(--bg);
  color: var(--ink);
  background-image: radial-gradient(
      circle,
      rgba(42, 29, 4, 0.1) 1px,
      transparent 1.4px
    );
  transition: background-color 0.4s var(--ease);
}

.case-cover--beige:hover {
  background-color: #ffffff;
}

.case-cover__tag {
  position: absolute;
  top: clamp(24px, 3vw, 40px);
  left: clamp(24px, 3vw, 40px);
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 500;
}

.case-cover__type {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(72px, 14vw, 220px);
  line-height: 0.88;
  letter-spacing: -0.04em;
  margin: 0;
}

.case-cover__type em {
  font-style: italic;
}

.case-cover--mustard .case-cover__type .accent-dot {
  color: var(--pink);
}

.case-cover__note {
  position: absolute;
  right: clamp(24px, 3vw, 40px);
  bottom: clamp(24px, 3vw, 40px);
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(14px, 1.2vw, 17px);
  max-width: 280px;
  text-align: right;
  opacity: 0.88;
}

/* Narrative sections — 2-column editorial */
.case-block {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: start;
  margin-bottom: clamp(48px, 5vw, 72px);
  max-width: 1040px;
}

.case-landing {
  display: grid;
  grid-template-columns: 1fr 1.7fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
  margin-bottom: clamp(48px, 5vw, 72px);
  margin-top: -16px;
  max-width: 1040px;
}

.case-landing__text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.case-landing__title {
  line-height: 1.05;
}

.case-landing__title em {
  font-size: 1.18em;
  display: inline-block;
  transform: rotate(-2deg);
  transform-origin: left center;
}

.case-landing__dot {
  color: var(--feature);
  font-style: normal;
}

.case-landing__preview {
  perspective: 1400px;
  position: relative;
}

.case-landing__sticker {
  position: absolute;
  top: 60px;
  right: -30px;
  background: var(--feature);
  padding: 12px 16px 14px;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.4;
  color: var(--feature-ink);
  box-shadow: 2px 5px 14px rgba(42,29,4,0.22);
  transform: rotate(5deg);
  z-index: 10;
  max-width: 145px;
}

.case-landing__sticker::before {
  content: "";
  position: absolute;
  top: -7px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 16px;
  background: rgba(244,186,196,0.75);
  border-radius: 2px;
}

.case-landing__sticker em {
  font-style: italic;
  color: inherit;
  opacity: 0.85;
}

.case-preview {
  border-radius: var(--radius);
  overflow: hidden;
  background: #1a1a1a;
  box-shadow:
    0 40px 80px -20px rgba(42, 29, 4, 0.30),
    0 8px 20px -6px rgba(42, 29, 4, 0.16),
    inset 0 0 0 1px rgba(255, 255, 255, 0.08);
  transform: rotateY(-12deg) rotateX(4deg) scale(0.97);
  transition: transform 0.7s var(--ease), box-shadow 0.7s var(--ease);
}

.case-landing__preview:hover .case-preview {
  transform: rotateY(0deg) rotateX(0deg) scale(1);
  box-shadow:
    0 60px 100px -24px rgba(42, 29, 4, 0.22),
    0 8px 20px -6px rgba(42, 29, 4, 0.10);
}

.case-landing__mobile-img {
  display: none;
}

@media (max-width: 760px) {
  .case-landing {
    grid-template-columns: 1fr;
  }
  .case-preview {
    transform: none;
  }
  .case-landing__preview {
    display: none;
  }
  .case-landing__mobile-img {
    display: block;
    margin-top: 24px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 16px 40px -8px rgba(42,29,4,0.28);
  }
  .case-landing__mobile-img img {
    display: block;
    width: 100%;
    height: 260px;
    object-fit: cover;
    object-position: top;
  }
}

.case-preview__bar {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.10);
  backdrop-filter: blur(16px) saturate(1.4);
  -webkit-backdrop-filter: blur(16px) saturate(1.4);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  padding: 10px 14px;
}

.case-preview__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  flex-shrink: 0;
}
.case-preview__dot:nth-child(1) { background: #ff6057; }
.case-preview__dot:nth-child(2) { background: #febc2e; }
.case-preview__dot:nth-child(3) { background: #28c840; }

.case-preview__url {
  flex: 1;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.55);
  text-align: center;
  font-family: var(--sans);
}

.case-preview__open {
  font-size: 12px;
  color: var(--ink-soft);
  text-decoration: none;
  font-family: var(--sans);
  font-weight: 500;
  white-space: nowrap;
  transition: color 0.2s;
}
.case-preview__open:hover { color: var(--ink); }

.case-preview__scroll {
  height: 380px;
  overflow: hidden;
  cursor: default;
}

.case-preview__img {
  display: block;
  width: 100%;
  height: auto;
  animation: previewScroll 18s ease-in-out infinite alternate;
  will-change: transform;
}

.case-preview__scroll:hover .case-preview__img {
  animation-play-state: paused;
}

@keyframes previewScroll {
  0%   { transform: translateY(0); }
  8%   { transform: translateY(0); }
  92%  { transform: translateY(-2800px); }
  100% { transform: translateY(-2800px); }
}

.case-preview__static {
  display: none;
}

@media (max-width: 760px) {
  .case-preview__scroll {
    display: none;
  }
  .case-preview__static {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 2px;
  }
}

.case-block__eyebrow {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--ink-mute);
  font-weight: 500;
  padding-top: 12px;
  border-top: 1px solid var(--line);
}

.case-block__body {
  max-width: 680px;
}

.case-block__title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(28px, 3.6vw, 46px);
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin: 0 0 24px;
  color: var(--ink);
}

.case-block__title em {
  font-style: italic;
  border-bottom: 2px solid var(--feature);
  padding: 0 2px 4px;
}

.case-block__body p {
  font-size: 17.5px;
  line-height: 1.65;
  color: var(--ink-soft);
  margin: 0 0 18px;
}

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

/* Numbered approach steps */
.case-steps {
  list-style: none;
  padding: 0;
  margin: 8px 0 0;
  display: flex;
  flex-direction: column;
}

.case-steps li {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 18px;
  padding: 24px 0;
  border-top: 1px solid var(--line);
  align-items: baseline;
}

.case-steps li:last-child {
  border-bottom: 1px solid var(--line);
}

.case-steps__num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 26px;
  color: var(--ink-mute);
  line-height: 1;
}

.case-steps__title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(20px, 2vw, 26px);
  letter-spacing: -0.015em;
  margin: 0 0 6px;
  color: var(--ink);
}

.case-steps__desc {
  font-size: 15.5px;
  color: var(--ink-soft);
  margin: 0;
  line-height: 1.55;
}

/* Ad visuals strip */
.case-visuals {
  margin-bottom: clamp(70px, 9vw, 120px);
  max-width: 1200px;
}

.case-visuals .case-block__eyebrow {
  display: block;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--ink-mute);
  font-weight: 500;
  padding-top: 12px;
  border-top: 1px solid var(--line);
  margin-bottom: clamp(40px, 6vw, 70px);
  width: 200px;
}

.case-visuals__title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(48px, 8vw, 100px);
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin: 16px 0 0;
  transform: rotate(-2.5deg);
  display: inline-block;
  transform-origin: left center;
}

.case-visuals__title em {
  color: var(--feature);
  font-style: normal;
}

.case-visuals__carousel {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
}

.case-visuals__arrow {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid var(--ink);
  background: var(--bg);
  color: var(--ink);
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s var(--ease), color 0.2s var(--ease);
  z-index: 2;
}

.case-visuals__arrow:hover {
  background: var(--feature);
  border-color: var(--feature);
  color: #fff;
}

.case-visuals__strip {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  padding: 40px 0 50px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  flex: 1;
}
.case-visuals__strip::-webkit-scrollbar { display: none; }

.case-visual {
  flex: 0 0 240px;
  border-radius: 4px;
  padding: 12px 12px 32px;
  background: #fff;
  box-shadow: 0 24px 48px -12px rgba(42,29,4,0.28), 2px 2px 0 rgba(42,29,4,0.06);
  transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease);
  will-change: transform;
  backface-visibility: hidden;
  cursor: pointer;
  scroll-snap-align: start;
  position: relative;
}

.case-visual img {
  display: block;
  width: 100%;
  height: 380px;
  object-fit: cover;
  border-radius: 2px;
}

/* Alternating post-it colors */
.case-visual--1 { background: #fff; }
.case-visual--2 { background: var(--feature); }
.case-visual--3 { background: #fff; }
.case-visual--4 { background: var(--feature); }
.case-visual--5 { background: #fff; }

/* Staggered rotations */
.case-visual--1 { transform: rotate(-3deg) translateY(8px); }
.case-visual--2 { transform: rotate(2deg)  translateY(-4px); }
.case-visual--3 { transform: rotate(-2deg) translateY(10px); }
.case-visual--4 { transform: rotate(3deg)  translateY(-6px); }
.case-visual--5 { transform: rotate(-1deg) translateY(4px); }

/* Hover */
.case-visuals__strip:hover .case-visual { opacity: 0.6; }
.case-visual:hover {
  opacity: 1 !important;
  transform: rotate(0deg) translateY(-12px) scale(1.03) !important;
  box-shadow: 0 40px 64px -16px rgba(42,29,4,0.38);
}

@media (max-width: 760px) {
  .case-visual--1,
  .case-visual--2,
  .case-visual--3,
  .case-visual--4,
  .case-visual--5 {
    transform: none;
  }
  .case-visual {
    will-change: auto;
    transition: none;
  }
  .case-visual:hover {
    transform: none !important;
  }
  .case-preview__img {
    animation: none;
    will-change: auto;
  }
}

/* Stats row */
.case-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  padding: clamp(50px, 7vw, 90px) clamp(24px, 5vw, 60px);
  background: var(--surface);
  border-radius: 28px;
  margin-bottom: clamp(70px, 9vw, 120px);
}

.case-stat {
  padding: 20px 14px;
  text-align: center;
  border-right: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
}

.case-stat:last-child {
  border-right: none;
}

.case-stat__number {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(52px, 7vw, 104px);
  color: var(--ink);
  line-height: 1;
  letter-spacing: -0.025em;
}

.case-stat__number em {
  font-style: italic;
  color: var(--pink);
}

.case-stat__label {
  font-size: 13px;
  color: var(--ink-soft);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 500;
  max-width: 180px;
}

/* Pull quote */
.case-quote {
  max-width: 920px;
  margin: 0 auto clamp(80px, 10vw, 130px);
  text-align: center;
  padding: 0 clamp(0px, 3vw, 40px);
}

.case-quote__mark {
  font-family: var(--serif);
  font-size: 60px;
  color: var(--pink);
  line-height: 0.5;
  display: block;
  margin-bottom: 16px;
}

.case-quote__text {
  font-family: var(--serif);
  font-weight: 400;
  font-style: italic;
  font-size: clamp(24px, 3.4vw, 40px);
  line-height: 1.3;
  color: var(--ink);
  margin: 0 0 32px;
  letter-spacing: -0.015em;
}

.case-quote__meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: center;
}

.case-quote__meta strong {
  color: var(--ink);
  font-weight: 600;
  font-size: 15.5px;
}

.case-quote__meta span {
  font-size: 12.5px;
  color: var(--ink-mute);
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

/* Post-it photo op case cover */
.case-cover__postit {
  position: absolute;
  top: clamp(20px, 4vw, 50px);
  right: clamp(20px, 5vw, 60px);
  width: clamp(200px, 28vw, 360px);
  margin: 0;
  z-index: 2;
  transform: rotate(4deg);
  transition: transform 0.45s var(--ease);
  pointer-events: none;
}

.case-cover--spotlight:hover .case-cover__postit {
  transform: rotate(1.5deg) scale(1.03);
}

.case-cover__postit-frame {
  background: #fff;
  padding: 9px 9px 32px;
  box-shadow: 0 18px 36px -10px rgba(42, 29, 4, 0.38),
    0 5px 12px -5px rgba(42, 29, 4, 0.2);
}

.case-cover__postit-frame img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

/* Spotlight dot hover op case cover */
.case-cover--spotlight::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    circle,
    rgba(253, 249, 180, 0.85) 1.3px,
    transparent 1.6px
  );
  background-size: 22px 22px;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.35s var(--ease);
  -webkit-mask-image: radial-gradient(
    220px circle at var(--sx, 50%) var(--sy, 50%),
    #000 0%,
    rgba(0, 0, 0, 0.7) 35%,
    transparent 72%
  );
  mask-image: radial-gradient(
    220px circle at var(--sx, 50%) var(--sy, 50%),
    #000 0%,
    rgba(0, 0, 0, 0.7) 35%,
    transparent 72%
  );
  z-index: 0;
}

.case-cover--spotlight:hover::before {
  opacity: 1;
}

/* Event / narrative photo block */
.case-photo-block {
  margin: 0 0 clamp(70px, 9vw, 120px);
  max-width: 1040px;
}

.case-photo-block__frame {
  border-radius: 20px;
  overflow: hidden;
}

.case-photo-block__frame img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  aspect-ratio: 4 / 3;
}

.case-photo-block__caption {
  margin-top: 14px;
  font-size: 13.5px;
  color: var(--ink-mute);
  font-style: italic;
}

/* Next case link */
.case-next {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: clamp(40px, 6vw, 70px) 0;
  margin-bottom: clamp(60px, 8vw, 100px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.case-next__label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--ink-mute);
  font-weight: 500;
  display: block;
  margin-bottom: 6px;
}

.case-next__link {
  text-decoration: none;
  color: var(--ink);
  transition: transform 0.3s var(--ease);
  display: inline-block;
}

.case-next__link:hover {
  transform: translateX(4px);
}

.case-next__title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(36px, 5.5vw, 72px);
  margin: 0;
  letter-spacing: -0.025em;
  line-height: 1;
}

.case-next__title em {
  font-style: italic;
}

.case-next__title .arrow {
  font-style: normal;
  color: var(--pink);
  display: inline-block;
  margin-left: 6px;
  transition: transform 0.3s var(--ease);
}

.case-next__link:hover .arrow {
  transform: translateX(6px);
}

@media (max-width: 860px) {
  .case-meta {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  .case-block {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .case-block__eyebrow {
    padding-top: 0;
    border-top: none;
  }
  .case-stats {
    grid-template-columns: 1fr;
    padding: 30px 20px;
  }
  .case-stat {
    border-right: none;
    border-bottom: 1px solid var(--line);
    padding: 28px 14px;
  }
  .case-stat:last-child {
    border-bottom: none;
  }
  .case-cover {
    min-height: auto;
  }
  .case-cover__note {
    position: static;
    margin-top: 20px;
    text-align: left;
  }
  .case-cover__postit {
    width: clamp(120px, 36vw, 180px);
    top: 16px;
    right: 16px;
    transform: rotate(3deg);
  }
}

@media (max-width: 540px) {
  .case-meta {
    grid-template-columns: 1fr 1fr;
  }
  .case-steps li {
    grid-template-columns: 40px 1fr;
    gap: 12px;
  }
}
