@import url('https://fonts.googleapis.com/css2?family=Anton&display=swap');

/* ==========================================================================
   bySEC — main stylesheet
   Kinetic: bold Anton-display, vivid gradient, energetic. Mobile-first.
   (Kinetic-overlay onderaan dit bestand stuurt de huisstijl.)
   ========================================================================== */

/* ---------- Tokens ---------- */
:root {
  --bg: #0a0a0d;
  --bg-2: #0f0f14;
  --surface: #15151c;
  --surface-2: #1d1d27;
  --border: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.16);

  --text: #f5f5f7;
  --text-dim: rgba(245, 245, 247, 0.68);
  --text-faint: rgba(245, 245, 247, 0.4);

  --accent-1: #b02a29;
  --accent-2: #739ab9;
  --accent-3: #fbf0d8;
  --accent-deep: #6d120b;
  --accent-navy: #113047;

  --gradient: linear-gradient(135deg, #113047 0%, #b02a29 55%, #fbf0d8 100%);
  --gradient-cool: linear-gradient(135deg, #6d120b 0%, #b02a29 50%, #739ab9 100%);
  --gradient-soft: linear-gradient(135deg, rgba(176, 42, 41, 0.15), rgba(115, 154, 185, 0.15));

  --radius-sm: 0.5rem;
  --radius: 1rem;
  --radius-lg: 1.5rem;
  --radius-xl: 2rem;

  --container: 1280px;
  --gutter: clamp(1.25rem, 4vw, 2rem);

  --transition: 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  --transition-fast: 0.2s ease;

  --font-display: 'Outfit', system-ui, -apple-system, sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;

  --shadow-soft: 0 20px 60px -20px rgba(0, 0, 0, 0.6);
  --shadow-glow: 0 20px 80px -20px rgba(176, 42, 41, 0.5);
}

/* ---------- Reset ---------- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  font-size: 16px;
  min-height: 100vh;
  overflow-x: hidden;
  background-image:
    radial-gradient(1200px 600px at 80% -10%, rgba(176, 42, 41, 0.08), transparent 60%),
    radial-gradient(800px 600px at 0% 100%, rgba(115, 154, 185, 0.06), transparent 60%);
}
img,
svg,
video {
  display: block;
  max-width: 100%;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input,
textarea,
select {
  font: inherit;
  color: inherit;
}
button {
  background: none;
  border: none;
  cursor: pointer;
}
ul {
  list-style: none;
}
h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
}
::selection {
  background: var(--accent-2);
  color: #fff;
}

/* ---------- Layout helpers ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding-inline: var(--gutter);
}
.text-gradient {
  background: var(--gradient);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: gradient-shift 8s ease infinite;
}
@keyframes gradient-shift {
  0%,
  100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

/* ---------- Header ---------- */
.header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  padding: 0.75rem 0;
  transition: background var(--transition), backdrop-filter var(--transition),
    border-color var(--transition), padding var(--transition);
  border-bottom: 1px solid transparent;
}
.header.scrolled {
  background: rgba(10, 10, 13, 0.7);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom-color: var(--border);
  padding: 0.5rem 0;
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.nav__logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.5rem;
  letter-spacing: -0.04em;
  position: relative;
  transition: transform var(--transition);
}
.nav__logo span {
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.nav__logo:hover {
  transform: translateY(-1px);
}
.nav__logo img {
  display: block;
  height: 80px;
  width: auto;
  max-width: 280px;
  object-fit: contain;
}
.footer__brand .nav__logo img {
  height: 80px;
  max-width: 260px;
}

/* Hero logo image */
.hero__logo-img {
  display: block;
  width: 100%;
  max-width: 900px;
  height: auto;
  margin: 0 auto;
  object-fit: contain;
  filter: drop-shadow(0 12px 40px rgba(0, 0, 0, 0.4));
}
@media (max-width: 760px) {
  .nav__logo img { height: 56px; }
  .footer__brand .nav__logo img { height: 56px; }
  .hero__logo-img { max-width: 90%; }
}
.nav__menu {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav__link {
  position: relative;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-dim);
  transition: color var(--transition-fast);
  padding: 0.4rem 0;
}
.nav__link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 0;
  background: var(--gradient);
  transition: width var(--transition);
}
.nav__link:hover,
.nav__link.active {
  color: var(--text);
}
.nav__link:hover::after,
.nav__link.active::after {
  width: 100%;
}
.nav__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1.25rem;
  border-radius: 999px;
  background: var(--gradient);
  background-size: 200% 200%;
  font-weight: 600;
  font-size: 0.9rem;
  color: #fff;
  transition: transform var(--transition), box-shadow var(--transition),
    background-position var(--transition);
  box-shadow: 0 8px 24px -8px rgba(176, 42, 41, 0.5);
}
.nav__cta:hover {
  transform: translateY(-2px);
  background-position: 100% 50%;
  box-shadow: 0 12px 32px -8px rgba(115, 154, 185, 0.7);
}
.nav__toggle {
  display: none;
  width: 40px;
  height: 40px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  border-radius: 8px;
  position: relative;
  z-index: 110;
}
.nav__toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition-fast);
}
.nav__toggle.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav__toggle.is-open span:nth-child(2) {
  opacity: 0;
}
.nav__toggle.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.95rem 1.6rem;
  border-radius: 999px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: -0.01em;
  transition: transform var(--transition), box-shadow var(--transition),
    background-position var(--transition), border-color var(--transition);
  white-space: nowrap;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.btn--primary {
  color: #fff;
  background: var(--gradient);
  background-size: 200% 200%;
  box-shadow: 0 12px 32px -10px rgba(176, 42, 41, 0.55);
}
.btn--primary:hover {
  transform: translateY(-2px);
  background-position: 100% 50%;
  box-shadow: 0 18px 40px -10px rgba(115, 154, 185, 0.7);
}
.btn--primary svg {
  transition: transform var(--transition);
}
.btn--primary:hover svg {
  transform: translateX(3px);
}
.btn--ghost {
  background: transparent;
  border: 1px solid var(--border-strong);
  color: var(--text);
}
.btn--ghost:hover {
  border-color: var(--text);
  background: rgba(255, 255, 255, 0.04);
  transform: translateY(-2px);
}
.btn--lg {
  padding: 1.1rem 2rem;
  font-size: 1.05rem;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 8rem 0 6rem;
  overflow: hidden;
}
.hero__inner {
  text-align: center;
  position: relative;
  z-index: 2;
  max-width: 900px;
}
.hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.55;
  pointer-events: none;
  z-index: 0;
  will-change: transform;
}
.hero__orb--1 {
  width: clamp(280px, 45vw, 560px);
  aspect-ratio: 1;
  background: #b02a29;
  top: 5%;
  left: -10%;
  animation: float 22s ease-in-out infinite;
}
.hero__orb--2 {
  width: clamp(320px, 50vw, 640px);
  aspect-ratio: 1;
  background: #739ab9;
  top: 30%;
  right: -15%;
  animation: float 26s ease-in-out infinite;
  animation-delay: -6s;
}
.hero__orb--3 {
  width: clamp(240px, 40vw, 480px);
  aspect-ratio: 1;
  background: #fbf0d8;
  bottom: -10%;
  left: 25%;
  animation: float 28s ease-in-out infinite;
  animation-delay: -12s;
  opacity: 0.4;
}
@keyframes float {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  33% {
    transform: translate(40px, -30px) scale(1.1);
  }
  66% {
    transform: translate(-30px, 40px) scale(0.95);
  }
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  font-size: 0.85rem;
  color: var(--text-dim);
  margin-bottom: 2rem;
  backdrop-filter: blur(10px);
}
.hero__badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 12px #22c55e;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.4;
  }
}
.hero__title {
  font-family: var(--font-display);
  font-size: clamp(4rem, 18vw, 12rem);
  font-weight: 800;
  line-height: 0.9;
  letter-spacing: -0.05em;
  margin-bottom: 2rem;
}
.hero__title-accent {
  background: var(--gradient);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: gradient-shift 6s ease infinite;
}
.hero__subtitle {
  font-size: clamp(1.1rem, 2.2vw, 1.4rem);
  color: var(--text);
  margin-bottom: 2.5rem;
  font-weight: 400;
}
.hero__subtitle-dim {
  color: var(--text-dim);
  font-size: 0.95em;
}
.hero__actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.hero__scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-faint);
}
.hero__scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, transparent, var(--text-dim), transparent);
  position: relative;
  overflow: hidden;
}
.hero__scroll-line::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, var(--accent-1), transparent);
  animation: scroll-line 2.5s ease-in-out infinite;
}
@keyframes scroll-line {
  0% {
    transform: translateY(-100%);
  }
  100% {
    transform: translateY(100%);
  }
}

/* ---------- Marquee ---------- */
.marquee {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: rgba(10, 10, 13, 0.4);
  backdrop-filter: blur(20px);
  z-index: 2;
}
.marquee__track {
  display: inline-flex;
  align-items: center;
  gap: 2rem;
  padding: 1rem 0;
  white-space: nowrap;
  animation: marquee 35s linear infinite;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.1rem;
  color: var(--text-dim);
}
.marquee__track span:nth-child(odd) {
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
@keyframes marquee {
  to {
    transform: translateX(-50%);
  }
}

/* ---------- Section base ---------- */
.section {
  padding: clamp(4rem, 10vw, 8rem) 0;
  position: relative;
}
.section--alt {
  background: var(--bg-2);
}
.section--narrow {
  padding: clamp(3rem, 6vw, 5rem) 0;
}
.section__head {
  max-width: 720px;
  margin-bottom: 4rem;
}
.section__eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 1rem;
  font-weight: 500;
}
.section__title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin-bottom: 1.25rem;
}
.section__lead {
  color: var(--text-dim);
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  max-width: 56ch;
}

/* ---------- Page hero (sub-pages) ---------- */
.page-hero {
  position: relative;
  padding: 10rem 0 5rem;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}
.page-hero--short {
  padding: 8rem 0 3rem;
}
.page-hero__inner {
  position: relative;
  z-index: 2;
  max-width: 800px;
}
.page-hero__title {
  font-size: clamp(2.5rem, 8vw, 5.5rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  margin: 1rem 0 1.5rem;
}
.page-hero__lead {
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  color: var(--text-dim);
  max-width: 60ch;
}
.page-hero__lead strong {
  color: var(--text);
  font-weight: 500;
}

/* ---------- Service cards (home) ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.service-card {
  position: relative;
  padding: 2rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform var(--transition), border-color var(--transition),
    box-shadow var(--transition);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  isolation: isolate;
}
.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gradient);
  opacity: 0;
  transition: opacity var(--transition);
  z-index: -1;
  border-radius: inherit;
  filter: blur(40px);
}
.service-card:hover {
  transform: translateY(-8px);
  border-color: var(--border-strong);
  box-shadow: var(--shadow-glow);
}
.service-card:hover::before {
  opacity: 0.15;
}
.service-card__visual {
  aspect-ratio: 16 / 11;
  border-radius: var(--radius);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 1.25rem;
  transition: transform var(--transition);
}
.service-card:hover .service-card__visual {
  transform: scale(1.02);
}
.service-card__visual--1 {
  background: linear-gradient(135deg, #1a0606 0%, #6d120b 50%, #b02a29 100%);
}
.service-card__visual--2 {
  background: linear-gradient(135deg, #0a1825 0%, #113047 50%, #739ab9 100%);
}
.service-card__visual--3 {
  background: linear-gradient(135deg, #1a0606 0%, #b02a29 50%, #fbf0d8 100%);
}
.service-card__visual--media {
  background: #000;
}
.service-card__visual--media img,
.service-card__visual--media video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  transition: transform var(--transition);
}
.service-card__visual--media .service-card__num {
  position: relative;
  z-index: 1;
}
.service-card:hover .service-card__visual--media img,
.service-card:hover .service-card__visual--media video {
  transform: scale(1.05);
}
.service-card__num {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: rgba(255, 255, 255, 0.85);
  background: rgba(0, 0, 0, 0.25);
  padding: 0.4rem 0.8rem;
  border-radius: 999px;
  backdrop-filter: blur(8px);
}
.service-card__title {
  font-size: 1.75rem;
  margin-bottom: 0.5rem;
}
.service-card__text {
  color: var(--text-dim);
  font-size: 0.95rem;
}
.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 1rem;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text);
}
.service-card__link svg {
  transition: transform var(--transition);
}
.service-card:hover .service-card__link svg {
  transform: translateX(6px);
}

/* ---------- About / Pillars ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.about__left .btn {
  margin-top: 2rem;
}
.about__right {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.pillar {
  padding: 1.75rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem 1.25rem;
  align-items: start;
  transition: transform var(--transition), border-color var(--transition);
}
.pillar:hover {
  transform: translateX(6px);
  border-color: var(--border-strong);
}
.pillar__num {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: transparent;
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  grid-row: span 2;
  align-self: center;
}
.pillar__title {
  font-size: 1.15rem;
  margin: 0;
}
.pillar__text {
  color: var(--text-dim);
  font-size: 0.92rem;
  grid-column: 2;
}

/* ---------- CTA ---------- */
.cta-section {
  padding: clamp(3rem, 8vw, 6rem) 0;
}
.cta-card {
  position: relative;
  border-radius: var(--radius-xl);
  padding: clamp(2.5rem, 6vw, 5rem) clamp(2rem, 5vw, 4rem);
  text-align: center;
  overflow: hidden;
  border: 1px solid var(--border);
  isolation: isolate;
}
.cta-card__bg {
  position: absolute;
  inset: -2px;
  z-index: -1;
  background: var(--gradient);
  background-size: 200% 200%;
  opacity: 0.15;
  animation: gradient-shift 10s ease infinite;
}
.cta-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(176, 42, 41, 0.25), transparent 60%);
  z-index: -1;
}
.cta-card__title {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  margin-bottom: 1rem;
}
.cta-card__text {
  color: var(--text-dim);
  font-size: 1.05rem;
  max-width: 50ch;
  margin: 0 auto 2rem;
}

/* ---------- Footer ---------- */
.footer {
  border-top: 1px solid var(--border);
  background: var(--bg-2);
  padding: 4rem 0 1.5rem;
}
.footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
}
.footer__brand .nav__logo {
  display: inline-block;
  margin-bottom: 0.75rem;
}
.footer__tagline {
  color: var(--text-dim);
  font-size: 0.95rem;
}
.footer__col h4 {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text);
  margin-bottom: 1rem;
  font-family: var(--font-body);
  font-weight: 600;
}
.footer__col a {
  display: block;
  color: var(--text-dim);
  font-size: 0.95rem;
  padding: 0.3rem 0;
  transition: color var(--transition-fast), transform var(--transition-fast);
}
.footer__col a:hover {
  color: var(--text);
  transform: translateX(4px);
}
.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  font-size: 0.85rem;
  color: var(--text-faint);
}

/* ---------- Filter bar ---------- */
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2.5rem;
}
.filter-btn {
  padding: 0.55rem 1.1rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--surface);
  font-size: 0.85rem;
  color: var(--text-dim);
  font-weight: 500;
  transition: all var(--transition-fast);
}
.filter-btn:hover {
  color: var(--text);
  border-color: var(--border-strong);
}
.filter-btn:focus {
  outline: none;
}
.filter-btn:focus-visible {
  outline: 2px solid var(--accent-1);
  outline-offset: 2px;
}
.filter-btn.active {
  background: linear-gradient(135deg, #b02a29 0%, #6d120b 100%);
  color: #fff;
  border: 1px solid transparent;
  box-shadow: 0 4px 14px rgba(176, 42, 41, 0.35);
}

/* ---------- Photo gallery (masonry) ---------- */
.gallery {
  column-count: 4;
  column-gap: 1rem;
}
.gallery__item {
  position: relative;
  display: block;
  width: 100%;
  break-inside: avoid;
  margin: 0 0 1rem;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.gallery__item--tall,
.gallery__item--wide {
  /* niet meer relevant in masonry-layout */
}
.gallery__placeholder {
  display: block;
  width: 100%;
  height: auto;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
/* Gradient-placeholders (lege staat) hebben geen natuurlijke hoogte */
div.gallery__placeholder {
  aspect-ratio: 4 / 3;
  height: auto;
}
.gallery__item:hover .gallery__placeholder {
  transform: scale(1.08);
}
.gallery__caption {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  padding: 1.25rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0) 60%);
  opacity: 0;
  transition: opacity var(--transition);
  gap: 0.4rem;
}
.gallery__item:hover .gallery__caption {
  opacity: 1;
}
.gallery__cat {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: 600;
}
.gallery__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.1rem;
}
.gallery__item.is-hidden {
  display: none;
}
/* Placeholder gradient backgrounds */
.ph-1 {
  background: linear-gradient(135deg, #1a0606 0%, #6d120b 50%, #b02a29 100%);
}
.ph-2 {
  background: linear-gradient(135deg, #0a1825 0%, #113047 50%, #739ab9 100%);
}
.ph-3 {
  background: linear-gradient(135deg, #1a0606 0%, #b02a29 50%, #fbf0d8 100%);
}
.ph-4 {
  background: linear-gradient(135deg, #113047 0%, #739ab9 100%);
}
.ph-5 {
  background: linear-gradient(135deg, #113047 0%, #b02a29 50%, #fbf0d8 100%);
}
.ph-6 {
  background: linear-gradient(135deg, #6d120b 0%, #b02a29 50%, #739ab9 100%);
}
.ph-7 {
  background: linear-gradient(135deg, #2a0a08 0%, #b02a29 50%, #fbf0d8 100%);
}
.ph-8 {
  background: linear-gradient(135deg, #0a1018 0%, #113047 50%, #739ab9 100%);
}

/* ---------- Reel ---------- */
.reel {
  border-radius: var(--radius-xl);
  padding: 4px;
  background: var(--gradient);
  background-size: 200% 200%;
  animation: gradient-shift 10s ease infinite;
}
.reel__inner {
  border-radius: calc(var(--radius-xl) - 4px);
  background: var(--bg);
  overflow: hidden;
}
.reel__placeholder {
  position: relative;
  aspect-ratio: 16 / 9;
  background: linear-gradient(135deg, #0a1825 0%, #113047 50%, #b02a29 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 1rem;
}
.reel__placeholder::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(0deg, transparent 0, transparent 2px, rgba(0, 0, 0, 0.15) 3px, transparent 4px);
  pointer-events: none;
}
.reel__play {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: transform var(--transition), background var(--transition);
}
.reel__play:hover {
  transform: scale(1.08);
  background: rgba(255, 255, 255, 0.3);
}
.reel__label {
  position: absolute;
  bottom: 1.25rem;
  right: 1.5rem;
  font-family: var(--font-display);
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
}

/* ---------- Video grid ---------- */
.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.5rem;
}
.video-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform var(--transition), border-color var(--transition);
}
.video-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-strong);
}
.video-card__thumb {
  position: relative;
  aspect-ratio: 16 / 9;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.video-card__thumb video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #000;
}
.video-thumb-1 {
  background: linear-gradient(135deg, #1a0606 0%, #6d120b 50%, #b02a29 100%);
}
.video-thumb-2 {
  background: linear-gradient(135deg, #0a1825 0%, #113047 50%, #739ab9 100%);
}
.video-thumb-3 {
  background: linear-gradient(135deg, #1a0606 0%, #b02a29 50%, #fbf0d8 100%);
}
.video-thumb-4 {
  background: linear-gradient(135deg, #113047 0%, #6d120b 50%, #739ab9 100%);
}
.video-card__play {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(10px);
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: transform var(--transition), background var(--transition);
  z-index: 2;
}
.video-card:hover .video-card__play {
  transform: scale(1.1);
  background: rgba(255, 255, 255, 0.35);
}
.video-card__duration {
  position: absolute;
  bottom: 0.75rem;
  right: 0.75rem;
  background: rgba(0, 0, 0, 0.7);
  padding: 0.25rem 0.6rem;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  z-index: 2;
}
.video-card__body {
  padding: 1.5rem;
}
.video-card__cat {
  display: inline-block;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--accent-2);
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.video-card__title {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}
.video-card__text {
  color: var(--text-dim);
  font-size: 0.9rem;
}

/* ---------- DJ — EQ visualizer ---------- */
.eq {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 6px;
  height: 120px;
  padding: 1rem 0;
}
.eq__bar {
  display: block;
  width: clamp(8px, 1.5vw, 14px);
  background: var(--gradient);
  border-radius: 999px;
  animation: eq-bounce 1.4s ease-in-out infinite;
}
.eq__bar:nth-child(1) { animation-delay: -0.1s; height: 30%; }
.eq__bar:nth-child(2) { animation-delay: -0.3s; height: 70%; }
.eq__bar:nth-child(3) { animation-delay: -0.5s; height: 50%; }
.eq__bar:nth-child(4) { animation-delay: -0.2s; height: 90%; }
.eq__bar:nth-child(5) { animation-delay: -0.7s; height: 40%; }
.eq__bar:nth-child(6) { animation-delay: -0.4s; height: 80%; }
.eq__bar:nth-child(7) { animation-delay: -0.6s; height: 60%; }
.eq__bar:nth-child(8) { animation-delay: -0.1s; height: 100%; }
.eq__bar:nth-child(9) { animation-delay: -0.5s; height: 35%; }
.eq__bar:nth-child(10) { animation-delay: -0.8s; height: 75%; }
.eq__bar:nth-child(11) { animation-delay: -0.2s; height: 55%; }
.eq__bar:nth-child(12) { animation-delay: -0.6s; height: 85%; }
.eq__bar:nth-child(13) { animation-delay: -0.3s; height: 45%; }
.eq__bar:nth-child(14) { animation-delay: -0.7s; height: 95%; }
.eq__bar:nth-child(15) { animation-delay: -0.4s; height: 50%; }
.eq__bar:nth-child(16) { animation-delay: -0.1s; height: 65%; }
@keyframes eq-bounce {
  0%, 100% { transform: scaleY(0.4); }
  50% { transform: scaleY(1); }
}

/* ---------- Tag cloud ---------- */
.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.tag {
  padding: 0.6rem 1.2rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 0.95rem;
  background: var(--surface);
  transition: all var(--transition);
  cursor: default;
}
.tag:hover {
  border-color: transparent;
  background: var(--gradient);
  color: #fff;
  transform: translateY(-3px);
}

/* ---------- Use cases ---------- */
.usecase-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem;
}
.usecase {
  padding: 2rem 1.75rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: transform var(--transition), border-color var(--transition),
    background var(--transition);
}
.usecase:hover {
  transform: translateY(-6px);
  border-color: var(--border-strong);
  background: var(--surface-2);
}
.usecase__icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-sm);
  background: var(--gradient-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text);
  margin-bottom: 1.25rem;
}
.usecase h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}
.usecase p {
  color: var(--text-dim);
  font-size: 0.9rem;
}

/* ---------- Set list ---------- */
.set-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.set-item {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.5rem;
  padding: 1.5rem 1.75rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: all var(--transition);
}
.set-item:hover {
  border-color: var(--border-strong);
  background: var(--surface-2);
  transform: translateX(4px);
}
.set-item__num {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.set-item__body h4 {
  font-size: 1.05rem;
  margin-bottom: 0.25rem;
}
.set-item__body p {
  color: var(--text-dim);
  font-size: 0.88rem;
}
.set-item__badge {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  border: 1px solid var(--border-strong);
  color: var(--text-dim);
}

/* ---------- Audio empty state ---------- */
.audio-empty {
  text-align: center;
  padding: clamp(2.5rem, 6vw, 4rem) 2rem;
  background: var(--surface);
  border: 1px dashed var(--border-strong);
  border-radius: var(--radius-lg);
  max-width: 560px;
  margin: 0 auto;
}
.audio-empty__icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
  background: var(--gradient-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-2);
}
.audio-empty h3 {
  font-size: clamp(1.15rem, 2.5vw, 1.4rem);
  margin-bottom: 0.6rem;
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.audio-empty p {
  color: var(--text-dim);
  font-size: 0.95rem;
  max-width: 42ch;
  margin: 0 auto;
}

/* ---------- Audio list (DJ mixes) ---------- */
.audio-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.audio-item {
  padding: 1.5rem 1.75rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: border-color var(--transition), background var(--transition);
}
.audio-item:hover {
  border-color: var(--border-strong);
  background: var(--surface-2);
}
.audio-item__head {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.5rem;
  align-items: center;
}
.audio-item__num {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.audio-item__meta h4 {
  font-size: 1.05rem;
  margin-bottom: 0.25rem;
}
.audio-item__meta p {
  color: var(--text-dim);
  font-size: 0.88rem;
}
.audio-item audio {
  width: 100%;
  height: 44px;
  border-radius: 999px;
  background: var(--bg);
  filter: invert(0.92) hue-rotate(180deg);
}
.audio-item audio::-webkit-media-controls-panel {
  background: var(--bg);
}

/* ---------- Info / pricing layout ---------- */
.info-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: start;
}
.step-list {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.step-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.25rem;
  align-items: start;
}
.step-num {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  padding-top: 4px;
}
.step-list strong {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  display: block;
  margin-bottom: 0.25rem;
}
.step-list p {
  color: var(--text-dim);
  font-size: 0.95rem;
}

/* Pricing card */
.pricing-card {
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  background: var(--surface);
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.pricing-card::before {
  content: '';
  position: absolute;
  inset: -1px;
  background: var(--gradient);
  opacity: 0.08;
  z-index: 0;
}
.pricing-card > * {
  position: relative;
  z-index: 1;
}
.pricing-card__title {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  margin: 0.75rem 0 1rem;
}
.pricing-card p {
  color: var(--text-dim);
  margin-bottom: 1.5rem;
}
.pricing-card .btn {
  margin-top: 0.5rem;
}
.pricing-card--full {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
  padding: 3rem 2.5rem;
}
.pricing-card--full p {
  max-width: 50ch;
  margin: 0 auto 1.75rem;
}

/* ---------- Form ---------- */
.form-container {
  max-width: 880px;
}
.booking-form {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: clamp(1.75rem, 4vw, 3rem);
  position: relative;
  overflow: hidden;
}
.booking-form::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient);
  background-size: 200% 200%;
  animation: gradient-shift 6s ease infinite;
}
.hp-field {
  position: absolute;
  left: -9999px;
}
.form-section {
  border: none;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.form-section__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.15rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  color: var(--text);
}
.form-section__title span {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  padding: 0.25rem 0.5rem;
  border: 1px solid var(--border-strong);
  border-radius: 6px;
  font-weight: 700;
}
.form-help {
  font-size: 0.9rem;
  color: var(--text-dim);
  margin-top: -0.5rem;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.field {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.field--row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  align-items: end;
}
.field__half {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.field label,
.field__half label {
  font-size: 0.85rem;
  color: var(--text-dim);
  font-weight: 500;
}
.field input,
.field textarea,
.field select,
.field__half input {
  width: 100%;
  padding: 0.85rem 1rem;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast),
    background var(--transition-fast);
  font-feature-settings: 'tnum';
}
.field input::placeholder,
.field textarea::placeholder {
  color: var(--text-faint);
}
.field input:focus,
.field textarea:focus,
.field__half input:focus {
  outline: none;
  border-color: transparent;
  box-shadow: 0 0 0 2px var(--accent-1), 0 0 30px -5px rgba(176, 42, 41, 0.4);
}
.field input[type='date'],
.field__half input[type='time'] {
  color-scheme: dark;
  cursor: pointer;
}
.field textarea {
  resize: vertical;
  min-height: 120px;
}
.field__hint {
  font-size: 0.8rem;
  color: var(--text-faint);
}

/* Custom checkbox cards */
.checkbox-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}
.check-card {
  position: relative;
  cursor: pointer;
}
.check-card input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.check-card__inner {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  padding: 1.25rem;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: all var(--transition);
  height: 100%;
  position: relative;
  overflow: hidden;
}
.check-card__inner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gradient);
  opacity: 0;
  transition: opacity var(--transition);
  z-index: 0;
}
.check-card__inner > * {
  position: relative;
  z-index: 1;
}
.check-card:hover .check-card__inner {
  border-color: var(--border-strong);
  transform: translateY(-2px);
}
.check-card input:checked + .check-card__inner {
  border-color: transparent;
  box-shadow: 0 0 0 2px var(--accent-1);
}
.check-card input:checked + .check-card__inner::before {
  opacity: 0.12;
}
.check-card input:focus-visible + .check-card__inner {
  box-shadow: 0 0 0 2px var(--accent-2);
}
.check-card__num {
  font-family: var(--font-display);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: 700;
}
.check-card__title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
}
.check-card__text {
  font-size: 0.85rem;
  color: var(--text-dim);
}

/* Price note in form */
.price-note {
  display: flex;
  gap: 1rem;
  align-items: center;
  padding: 1.25rem 1.5rem;
  background: var(--gradient-soft);
  border: 1px solid rgba(176, 42, 41, 0.2);
  border-radius: var(--radius);
}
.price-note__icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(176, 42, 41, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-1);
  flex-shrink: 0;
}
.price-note p {
  font-size: 0.92rem;
  color: var(--text-dim);
  margin: 0;
}
.price-note strong {
  color: var(--text);
}

.form-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.75rem;
  margin-top: 0.5rem;
}
.form-actions__note {
  font-size: 0.82rem;
  color: var(--text-faint);
}

/* ---------- Thanks page ---------- */
.thanks {
  position: relative;
  min-height: 80vh;
  display: grid;
  place-items: center;
  padding: 8rem 0 4rem;
  overflow: hidden;
}
.thanks__inner {
  text-align: center;
  position: relative;
  z-index: 2;
  max-width: 640px;
}
.thanks__check {
  width: 96px;
  height: 96px;
  margin: 0 auto 2rem;
  border-radius: 50%;
  background: var(--gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 20px 60px -10px rgba(176, 42, 41, 0.5);
  animation: check-pop 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}
@keyframes check-pop {
  0% { transform: scale(0); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}
.thanks__title {
  font-size: clamp(2.5rem, 7vw, 4.5rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  margin-bottom: 1rem;
}
.thanks__lead {
  color: var(--text-dim);
  font-size: 1.1rem;
  margin-bottom: 2rem;
}
.thanks__actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ---------- Fade-in animation ---------- */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: calc(var(--i, 0) * 80ms);
}
.fade-in.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .about-grid,
  .info-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .footer__inner {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
  .footer__brand {
    grid-column: 1 / -1;
  }
  .gallery {
    column-count: 2;
  }
}

@media (max-width: 760px) {
  .nav__menu {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(85%, 360px);
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 6rem 2rem 2rem;
    gap: 0.5rem;
    background: #0f0f14;
    border-left: 1px solid var(--border);
    transform: translateX(100%);
    transition: transform var(--transition);
    z-index: 200;
  }
  /* Mobiel: geen backdrop-filter op header — voorkomt dat position:fixed
     menu visueel gebroken wordt op iOS Safari */
  .header.scrolled {
    background: rgba(10, 10, 13, 0.96);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
  .nav__menu.is-open {
    transform: translateX(0);
  }
  .nav__menu li {
    width: 100%;
  }
  .nav__link {
    display: block;
    padding: 0.85rem 0;
    font-size: 1.1rem;
    border-bottom: 1px solid var(--border);
    width: 100%;
  }
  .nav__cta {
    margin-top: 1rem;
    justify-content: center;
    width: 100%;
  }
  .nav__toggle {
    display: flex;
  }

  .hero {
    padding: 7rem 0 5rem;
  }
  .hero__actions {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
  }
  .hero__actions .btn {
    width: 100%;
  }
  .hero__scroll {
    display: none;
  }

  .form-row,
  .field--row {
    grid-template-columns: 1fr;
  }
  .checkbox-grid {
    grid-template-columns: 1fr;
  }
  .form-actions {
    align-items: stretch;
  }
  .form-actions .btn {
    width: 100%;
  }

  .footer__inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .footer__bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .gallery {
    column-count: 1;
  }

  .set-item {
    grid-template-columns: auto 1fr;
  }
  .set-item__badge {
    grid-column: 2;
  }
}

/* ==========================================================================
   ENHANCEMENTS
   ========================================================================== */

/* ---------- Page transitions ---------- */
body {
  opacity: 0;
  transition: opacity 0.4s ease;
}
body.is-loaded {
  opacity: 1;
}
body.is-leaving {
  opacity: 0;
  transition: opacity 0.25s ease;
}

/* ---------- Splash screen ---------- */
.splash {
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 9999;
  display: grid;
  place-items: center;
  opacity: 1;
  transition: opacity 0.6s ease;
}
.splash.is-leaving {
  opacity: 0;
  pointer-events: none;
}
.splash__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
}
.splash__orb--1 { width: 400px; height: 400px; background: #b02a29; top: 20%; left: 15%; opacity: 0.5; }
.splash__orb--2 { width: 400px; height: 400px; background: #739ab9; bottom: 20%; right: 15%; opacity: 0.5; }
.splash__logo {
  position: relative;
  width: clamp(280px, 60vw, 720px);
  height: auto;
  display: block;
  opacity: 0;
  animation: splash-in 1s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  filter: drop-shadow(0 12px 40px rgba(0, 0, 0, 0.5));
}
@keyframes splash-in {
  from { opacity: 0; transform: translateY(20px) scale(0.96); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

/* ---------- Lightbox (photo) ---------- */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(5, 5, 8, 0.95);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.lightbox.is-open {
  opacity: 1;
  pointer-events: auto;
}
.lightbox__inner {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.lightbox__img {
  max-width: 100%;
  max-height: 80vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: var(--radius);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.7);
  user-select: none;
}
.lightbox__caption {
  font-size: 0.95rem;
  color: var(--text-dim);
  letter-spacing: 0.05em;
  text-align: center;
}
.lightbox__close,
.lightbox__prev,
.lightbox__next {
  position: absolute;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  z-index: 1;
}
.lightbox__close:hover,
.lightbox__prev:hover,
.lightbox__next:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1.05);
}
.lightbox__close { top: 1.5rem; right: 1.5rem; font-size: 1.6rem; line-height: 1; }
.lightbox__prev { left: 1.5rem; top: 50%; transform: translateY(-50%); font-size: 2rem; line-height: 0.8; padding-bottom: 4px; }
.lightbox__next { right: 1.5rem; top: 50%; transform: translateY(-50%); font-size: 2rem; line-height: 0.8; padding-bottom: 4px; }
.lightbox__prev:hover { transform: translateY(-50%) scale(1.05); }
.lightbox__next:hover { transform: translateY(-50%) scale(1.05); }
.gallery__item {
  cursor: zoom-in;
}

/* ---------- WhatsApp floating button ---------- */
.whatsapp-btn {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 90;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.5);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: whatsapp-pulse 2.6s infinite;
}
.whatsapp-btn:hover {
  transform: scale(1.08);
}
.whatsapp-btn svg {
  width: 30px;
  height: 30px;
}
@keyframes whatsapp-pulse {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6), 0 8px 28px rgba(37, 211, 102, 0.5); }
  70% { box-shadow: 0 0 0 16px rgba(37, 211, 102, 0), 0 8px 28px rgba(37, 211, 102, 0.5); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0), 0 8px 28px rgba(37, 211, 102, 0.5); }
}

/* ---------- Stats / counters ---------- */
.stats__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 2rem;
  text-align: center;
}
.stat {
  padding: 1.5rem 1rem;
}
.stat__num {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 5rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  background: var(--gradient);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: gradient-shift 8s ease infinite;
  display: inline-block;
}
.stat__plus {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-left: 4px;
}
.stat__label {
  display: block;
  margin-top: 0.6rem;
  font-size: 0.95rem;
  color: var(--text-dim);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
}

/* ---------- Testimonials carousel ---------- */
.carousel {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--surface);
  border: 1px solid var(--border);
  padding: clamp(2rem, 5vw, 3.5rem) clamp(1.5rem, 4vw, 3rem);
}
.carousel::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gradient);
  opacity: 0.06;
  pointer-events: none;
  z-index: 0;
}
.carousel__track {
  display: flex;
  width: 100%;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  position: relative;
  z-index: 1;
}
.carousel__slide {
  flex: 0 0 100%;
  padding: 0 0.5rem;
}
.testimonial {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.5vw, 1.65rem);
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: -0.01em;
  color: var(--text);
  text-align: center;
  margin: 0;
  position: relative;
  padding: 0 1.5rem;
}
.testimonial::before {
  content: '"';
  position: absolute;
  top: -2.5rem;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-display);
  font-size: 5rem;
  line-height: 1;
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  opacity: 0.5;
  font-weight: 800;
}
.testimonial footer {
  margin-top: 1.5rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text-dim);
  font-style: normal;
  font-weight: 500;
}
.testimonial cite {
  font-style: normal;
}
.carousel__nav {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 2rem;
  position: relative;
  z-index: 1;
}
.carousel__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border-strong);
  transition: width 0.3s ease, background 0.3s ease;
  cursor: pointer;
}
.carousel__dot.is-active {
  width: 28px;
  border-radius: 999px;
  background: var(--gradient);
}

/* Responsive WhatsApp btn smaller on mobile */
@media (max-width: 760px) {
  .whatsapp-btn {
    width: 52px;
    height: 52px;
    bottom: 1rem;
    right: 1rem;
  }
  .whatsapp-btn svg {
    width: 26px;
    height: 26px;
  }
  .lightbox__close,
  .lightbox__prev,
  .lightbox__next {
    width: 40px;
    height: 40px;
  }
  .lightbox__close { top: 1rem; right: 1rem; }
  .lightbox__prev { left: 0.5rem; }
  .lightbox__next { right: 0.5rem; }
}

/* ==========================================================================
   Over Mij page — about-grid (photo + text side-by-side)
   ========================================================================== */
.section--about {
  overflow: hidden;
  padding-top: clamp(7rem, 14vh, 10rem);
}

.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
  margin-top: 1rem;
}

.about-photo {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  box-shadow: var(--shadow-soft);
  isolation: isolate;
}

.about-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--transition);
}

.about-photo:hover img {
  transform: scale(1.03);
}

/* Soft accent glow behind photo */
.about-photo__glow {
  position: absolute;
  inset: -20%;
  background: radial-gradient(circle at 30% 30%, rgba(176, 42, 41, 0.35), transparent 60%);
  z-index: -1;
  filter: blur(40px);
  pointer-events: none;
}

.about-text {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.about-text__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0.5rem 0 1rem;
}

.about-text p {
  color: var(--text-dim);
  font-size: 1.05rem;
  line-height: 1.75;
}

.about-text strong {
  color: var(--text);
  font-weight: 600;
}

.about-text__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

@media (max-width: 860px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .about-photo {
    aspect-ratio: 4 / 4.5;
    max-width: 500px;
    margin: 0 auto;
  }
}

/* ==========================================================================
   Extra page — bySarah hero + coming soon
   ========================================================================== */
.bysarah-hero {
  position: relative;
  padding: clamp(5rem, 10vh, 8rem) 0 clamp(4rem, 8vh, 6rem);
  background:
    radial-gradient(1200px 700px at 50% -10%, rgba(251, 240, 216, 0.16), transparent 70%),
    linear-gradient(180deg, rgba(251, 240, 216, 0.08), transparent 80%);
  overflow: hidden;
}

/* Full-viewport variant — used on Extra page where this is the only section */
.bysarah-hero--full {
  min-height: calc(100vh - 100px);
  display: flex;
  align-items: center;
}

.bysarah-hero__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

/* Cream backdrop card so the dark bySarah logo pops */
.bysarah-logo {
  position: relative;
  background: linear-gradient(135deg, #fbf0d8 0%, #ead7a8 100%);
  border-radius: var(--radius-lg);
  padding: clamp(1.75rem, 4vw, 2.75rem) clamp(2rem, 5vw, 3.5rem);
  margin-bottom: clamp(2rem, 5vh, 3rem);
  box-shadow:
    0 30px 80px -20px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(255, 255, 255, 0.08),
    0 0 60px rgba(251, 240, 216, 0.15);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.bysarah-logo::before {
  content: "";
  position: absolute;
  inset: -2px;
  background: var(--gradient);
  border-radius: calc(var(--radius-lg) + 2px);
  z-index: -1;
  opacity: 0.4;
  filter: blur(8px);
}

.bysarah-logo img {
  max-width: 320px;
  height: auto;
  display: block;
}

/* Soft orbs (lighter than usual for this section) */
.hero__orb--soft {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  opacity: 0.3;
}
.hero__orb--soft-1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(115, 154, 185, 0.5), transparent 60%);
  top: -100px;
  left: -100px;
}
.hero__orb--soft-2 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(176, 42, 41, 0.4), transparent 60%);
  bottom: -150px;
  right: -150px;
}

/* Coming soon */
.soon {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.soon__title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.03em;
  margin: 0.5rem 0;
}

.soon__lead {
  font-size: clamp(1.05rem, 1.5vw, 1.2rem);
  color: var(--text-dim);
  max-width: 540px;
  line-height: 1.7;
  margin-top: 0.5rem;
}

/* Animated pulsing dots */
.soon__dots {
  display: flex;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

.soon__dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent-1);
  opacity: 0.4;
  animation: soonPulse 1.4s ease-in-out infinite;
}

.soon__dots span:nth-child(2) { animation-delay: 0.2s; }
.soon__dots span:nth-child(3) { animation-delay: 0.4s; }

@keyframes soonPulse {
  0%, 100% { opacity: 0.3; transform: scale(0.85); }
  50%      { opacity: 1;   transform: scale(1.15); }
}

/* CTA at bottom of extra page */
.soon__footer {
  text-align: center;
  margin-top: clamp(3rem, 6vh, 4rem);
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

.soon__footer p {
  color: var(--text-dim);
  margin-bottom: 1.25rem;
  font-size: 1.05rem;
}

@media (max-width: 600px) {
  .bysarah-logo img { max-width: 240px; }
}

/* ==========================================================================
   Coming Soon — Branding grid (4 dynamic cards)
   ========================================================================== */
.branding-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-top: 2.5rem;
}

.brand-card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem 1.5rem 1.75rem;
  overflow: hidden;
  transition: transform 0.4s var(--transition), border-color 0.3s, box-shadow 0.3s;
  cursor: default;
  isolation: isolate;
  min-height: 200px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.brand-card:hover {
  transform: translateY(-8px);
  border-color: var(--accent-1);
  box-shadow: 0 30px 50px -25px rgba(176, 42, 41, 0.55);
}

.brand-card__num {
  position: absolute;
  top: 1rem;
  right: 1.25rem;
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--accent-1);
  opacity: 0.7;
}

.brand-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(176, 42, 41, 0.2), rgba(115, 154, 185, 0.2));
  color: var(--accent-3);
  margin-bottom: 1.25rem;
  transition: transform 0.5s var(--transition);
}

.brand-card:hover .brand-card__icon {
  transform: rotate(-6deg) scale(1.1);
}

.brand-card__title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.3;
  color: var(--text);
}

.brand-card__glow {
  position: absolute;
  inset: -50%;
  background: radial-gradient(circle at 50% 100%, rgba(176, 42, 41, 0.25), transparent 65%);
  opacity: 0;
  z-index: -1;
  transition: opacity 0.4s;
  pointer-events: none;
}

.brand-card:hover .brand-card__glow {
  opacity: 1;
}

/* Stagger the entrance via the --i variable already set inline */
.brand-card.fade-in {
  transition-delay: calc(var(--i, 0) * 100ms);
}

@media (max-width: 900px) {
  .branding-grid { grid-template-columns: 1fr 1fr; gap: 1rem; }
}
@media (max-width: 500px) {
  .branding-grid { grid-template-columns: 1fr; }
}

/* ==========================================================================
   Privacy / Legal pages
   ========================================================================== */
.legal {
  max-width: 760px;
  margin: 0 auto;
  font-size: 1.02rem;
  line-height: 1.75;
  color: var(--text-dim);
}

.legal__updated {
  font-size: 0.85rem;
  color: var(--text-faint);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 2.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
}

.legal__h2 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.01em;
  margin: 2.5rem 0 0.75rem;
}

.legal__h2:first-of-type {
  margin-top: 0;
}

.legal p {
  margin-bottom: 1rem;
}

.legal strong {
  color: var(--text);
  font-weight: 600;
}

.legal a {
  color: var(--accent-2);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  transition: color var(--transition-fast);
}

.legal a:hover {
  color: var(--accent-1);
}

.legal__list {
  padding-left: 1.5rem;
  margin: 0.5rem 0 1.25rem;
}

.legal__list li {
  margin-bottom: 0.5rem;
}

.legal__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

/* ==========================================================================
   404 — Page not found
   ========================================================================== */
.error404 {
  position: relative;
  min-height: calc(100vh - 100px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 0;
  overflow: hidden;
}

.error404__inner {
  position: relative;
  z-index: 1;
  text-align: center;
}

.error404__code {
  font-family: var(--font-display);
  font-size: clamp(7rem, 22vw, 16rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.04em;
  margin-bottom: 0.5rem;
}

.error404__title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
}

.error404__lead {
  font-size: 1.1rem;
  color: var(--text-dim);
  max-width: 540px;
  margin: 0 auto 2rem;
  line-height: 1.7;
}

.error404__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

/* ==========================================================================
   Samenwerking met Sarah Jehaes — Hero, Moodboard, CTA
   ========================================================================== */

/* ----- Hero ----- */
.collab-hero {
  position: relative;
  padding: clamp(7rem, 16vh, 10rem) 0 clamp(4rem, 8vh, 6rem);
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}

.collab-hero__inner {
  position: relative;
  z-index: 1;
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
}

.collab-hero__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.5rem, 7vw, 5rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
}

.collab-x {
  display: inline-block;
  color: var(--accent-1);
  font-weight: 300;
  font-size: 0.9em;
  vertical-align: middle;
  margin: 0 0.05em;
  animation: collabSpin 8s linear infinite;
}

@keyframes collabSpin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

.collab-hero__lead {
  font-size: clamp(1.05rem, 1.6vw, 1.2rem);
  color: var(--text-dim);
  line-height: 1.7;
  max-width: 620px;
  margin: 0 auto 2.5rem;
}

.collab-hero__lead strong {
  color: var(--text);
}

/* ----- Sarah quote ----- */
.sarah-quote {
  position: relative;
  max-width: 540px;
  margin: 0 auto 2.5rem;
  padding: 1.5rem 2rem;
  background: var(--surface);
  border-left: 3px solid var(--accent-1);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  text-align: left;
  font-style: italic;
}

.sarah-quote p {
  font-family: 'Georgia', serif;
  font-size: 1.1rem;
  line-height: 1.5;
  color: var(--text);
  margin: 0 0 0.5rem;
}

.sarah-quote cite {
  display: block;
  font-style: normal;
  font-size: 0.85rem;
  color: var(--accent-1);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 600;
}

.collab-hero__actions {
  display: flex;
  justify-content: center;
}

/* ----- Tags --- */
.tag-cloud--collab {
  justify-content: center;
}

/* ==========================================================================
   Moodboard — Sarah's project cards (polaroid pinboard with real images)
   ========================================================================== */
.moodboard {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.75rem;
  margin-top: 3rem;
  padding: 1.5rem 0.5rem;
}

.mb-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 12px 12px 0;
  border-radius: 4px;
  background: linear-gradient(180deg, #fbf0d8 0%, #f5e7c4 100%);
  color: #1a1a1f;
  text-decoration: none;
  overflow: visible;
  isolation: isolate;
  transform: rotate(var(--rot, 0deg));
  transition: transform 0.5s var(--transition),
              box-shadow 0.4s var(--transition);
  box-shadow:
    0 1px 2px rgba(0, 0, 0, 0.3),
    0 18px 35px -15px rgba(0, 0, 0, 0.55),
    inset 0 0 0 1px rgba(255, 255, 255, 0.4);
}

.mb-card.fade-in {
  transition-delay: calc(var(--i, 0) * 80ms);
}

.mb-card:hover {
  transform: rotate(0deg) translateY(-10px) scale(1.04);
  box-shadow:
    0 1px 3px rgba(0, 0, 0, 0.35),
    0 40px 70px -20px rgba(176, 42, 41, 0.55),
    inset 0 0 0 1px rgba(255, 255, 255, 0.5);
  z-index: 5;
}

/* The little gold "pin" at the top center */
.mb-card__pin {
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #fef4a8 0%, #d4a82a 60%, #8a6a18 100%);
  box-shadow:
    0 3px 4px rgba(0, 0, 0, 0.5),
    inset 0 -2px 2px rgba(0, 0, 0, 0.3),
    inset 0 2px 2px rgba(255, 255, 255, 0.5);
  z-index: 3;
}

/* Photo area */
.mb-card__photo {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 2px;
  background: #1a1a1f;
}

.mb-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--transition), filter 0.4s;
  filter: saturate(0.95);
}

.mb-card:hover .mb-card__photo img {
  transform: scale(1.06);
  filter: saturate(1.1);
}

.mb-card__num {
  position: absolute;
  top: 10px;
  right: 10px;
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 2px;
  color: #fbf0d8;
  background: rgba(0, 0, 0, 0.55);
  padding: 4px 8px;
  border-radius: 3px;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 2;
}

/* Caption strip (polaroid bottom) */
.mb-card__caption {
  padding: 14px 8px 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.5rem;
}

.mb-card__text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
  flex: 1;
}

.mb-card__cat {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent-1);
}

.mb-card__title {
  font-family: var(--font-display);
  font-size: clamp(0.95rem, 1.15vw, 1.1rem);
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.2;
  color: #1a1a1f;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.mb-card__arrow {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(176, 42, 41, 0.1);
  color: var(--accent-deep);
  border: 1px solid rgba(176, 42, 41, 0.25);
  transition: background 0.3s, color 0.3s, transform 0.4s, border-color 0.3s;
}

.mb-card:hover .mb-card__arrow {
  background: var(--accent-1);
  border-color: var(--accent-1);
  color: var(--accent-3);
  transform: translate(2px, -2px) scale(1.1);
}

/* Span variants — visual rhythm */
.mb-card--wide { grid-column: span 2; }
.mb-card--tall { grid-row: span 2; }
.mb-card--tall .mb-card__photo { aspect-ratio: 3 / 5; }

/* Tablet */
@media (max-width: 1100px) {
  .moodboard { grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
  .mb-card--wide { grid-column: span 2; }
  .mb-card--tall { grid-row: span 1; }
  .mb-card--tall .mb-card__photo { aspect-ratio: 4 / 3; }
}

/* Mobile */
@media (max-width: 720px) {
  .moodboard { grid-template-columns: 1fr 1fr; gap: 1rem; padding: 1rem 0; }
  .mb-card { transform: rotate(0deg); }
  .mb-card--wide { grid-column: span 2; }
  .mb-card__title { white-space: normal; }
}

@media (max-width: 460px) {
  .moodboard { grid-template-columns: 1fr; }
  .mb-card--wide { grid-column: span 1; }
}

/* ==========================================================================
   Bottom CTA
   ========================================================================== */
.collab-cta {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  padding: clamp(2rem, 6vh, 4rem) 1rem;
}

.collab-cta__title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 1rem 0 2rem;
}

.btn--lg {
  padding: 1.1rem 2rem;
  font-size: 1.05rem;
}

/* ---------- Reduce motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .fade-in {
    opacity: 1;
    transform: none;
  }
}

/* ==========================================================================
   KINETIC — huisstijl-overlay
   Staat bewust onderaan: overschrijft de basisstijl zonder structuur of
   tekst te raken. Aanpassen van de hele look gebeurt hier.
   ========================================================================== */
:root {
  --accent-1: #d8362f;                 /* feller rood */
  --accent-navy: #2a5f8c;              /* helderder navy */
  --gradient: linear-gradient(115deg, #2a5f8c 0%, #d8362f 52%, #fbf0d8 100%);
  --gradient-cool: linear-gradient(115deg, #d8362f 0%, #2a5f8c 100%);
  --gradient-soft: linear-gradient(135deg, rgba(216, 54, 47, 0.16), rgba(42, 95, 140, 0.16));
  --font-display: 'Anton', 'Outfit', system-ui, -apple-system, sans-serif;
  --shadow-glow: 0 22px 80px -18px rgba(216, 54, 47, 0.6);
}

/* Anton kent maar één gewicht: synthetische bold uitzetten + bg opfrissen */
body {
  font-synthesis: none;
  background-image:
    radial-gradient(1200px 600px at 80% -10%, rgba(216, 54, 47, 0.12), transparent 60%),
    radial-gradient(800px 600px at 0% 100%, rgba(42, 95, 140, 0.10), transparent 60%);
}

/* Anton heeft lucht nodig — negatieve tracking neutraliseren */
h1, h2, h3, h4 { letter-spacing: 0; }
.hero__title, .page-hero__title, .thanks__title, .error404__code, .error404__title,
.collab-hero__title, .soon__title, .about-text__title, .stat__num, .stat__plus {
  letter-spacing: 0;
}

/* Kinetic punch: de grote titels in kapitaal */
.section__title, .page-hero__title, .thanks__title, .error404__title,
.collab-hero__title, .soon__title, .about-text__title, .service-card__title,
.pricing-card__title, .cta-card__title {
  text-transform: uppercase;
}

/* Eyebrows in fel rood */
.section__eyebrow { color: var(--accent-1); font-weight: 600; }

/* Knoplabels blijven strak in Inter (Anton is te zwaar voor knoppen) */
.btn { font-family: var(--font-body); font-weight: 700; letter-spacing: 0.01em; }

/* Marquee groter en in kapitaal — de typische kinetic-band */
.marquee__track {
  font-size: clamp(1.2rem, 2.4vw, 1.75rem);
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

/* Citaten niet in Anton */
.testimonial, .testimonial::before { font-family: var(--font-body); }

/* Fellere orbs voor meer energie */
.hero__orb--1 { background: #d8362f; }
.hero__orb--2 { background: #2a5f8c; }
.splash__orb--1 { background: #d8362f; }
.splash__orb--2 { background: #2a5f8c; }

