/* === base.css === */
/* ── BASE ───────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

/* Skip-link (accessibility) */
.skip-link {
  position: fixed;
  top: -999px;
  left: 0;
  background: #2D7DD2;
  color: #fff;
  padding: 8px 16px;
  z-index: 9999;
  font-family: 'Satoshi', sans-serif;
  font-size: 14px;
  text-decoration: none;
}
.skip-link:focus { top: 0; }

html { height: 100%; overflow-x: hidden; }

body {
  font-family: 'Satoshi', sans-serif;
  background: #080809;
  color: #fff;
  overflow-x: hidden;
}


/* === nav.css === */
/* ── NAV SMALL (landing) ─────────────────────── */
.nav-small {
  position: fixed;
  top: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
  display: inline-flex;
  align-items: center;
  gap: 2px;
  background: rgba(22, 24, 30, 0.75);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 999px;
  padding: 10px 10px 10px 18px;
  opacity: 1;
  pointer-events: auto;
  transition: opacity 0.5s cubic-bezier(0.16,1,0.3,1),
              transform 0.5s cubic-bezier(0.16,1,0.3,1);
}

.nav-small.hidden {
  opacity: 0;
  transform: translateX(-50%) scale(0.92);
  pointer-events: none;
}

.nav-small .nav-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  margin-right: 8px;
  text-decoration: none;
}

.nav-small .nav-logo svg {
  width: 20px;
  height: 20px;
  fill: #fff;
}

.nav-small a.nav-link {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: 999px;
  white-space: nowrap;
  transition: background 0.18s ease;
}

.nav-small a.nav-link:hover { background: rgba(255,255,255,0.08); }
.nav-small a.nav-link.active { background: rgba(255,255,255,0.12); }

.nav-small .has-arrow::after {
  content: ' ∨';
  font-size: 11px;
  opacity: 0.6;
}

.nav-small .nav-cta {
  display: inline-flex;
  align-items: center;
  height: 36px;
  background: #479FF8;
  color: #fff;
  text-decoration: none;
  font-size: 13.5px;
  font-weight: 500;
  padding: 8px 18px;
  border-radius: 999px;
  white-space: nowrap;
  margin-left: 6px;
  transition: background 0.18s ease, box-shadow 0.18s ease;
}

.nav-small .nav-cta:hover {
  background: #5ba8f9;
  box-shadow: 0 0 20px rgba(71,159,248,0.5);
}

/* ── NAV BIG (na scroll, boven deken) ───────── */
.nav-big {
  position: fixed;
  top: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 200;
  width: 60vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(22, 24, 30, 0.75);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 999px;
  padding: 10px 10px 10px 20px;
  opacity: 0;
  pointer-events: none;
  clip-path: inset(0 44% 0 44% round 999px);
  transition: clip-path 0.75s cubic-bezier(0.16,1,0.3,1),
              opacity 0.35s ease;
}

.nav-big.visible {
  opacity: 1;
  clip-path: inset(0 0% 0 0% round 999px);
  pointer-events: auto;
}

/* Staggered fade-in voor nav-big children */
.nav-big .nav-logo,
.nav-big .nav-links a,
.nav-big .nav-cta {
  opacity: 0;
  transition: opacity 0.3s ease;
}

.nav-big.visible .nav-logo              { opacity: 1; transition-delay: 0.35s; }
.nav-big.visible .nav-links a:nth-child(1) { opacity: 1; transition-delay: 0.42s; }
.nav-big.visible .nav-links a:nth-child(2) { opacity: 1; transition-delay: 0.49s; }
.nav-big.visible .nav-links a:nth-child(3) { opacity: 1; transition-delay: 0.56s; }
.nav-big.visible .nav-links a:nth-child(4) { opacity: 1; transition-delay: 0.63s; }
.nav-big.visible .nav-links a:nth-child(5) { opacity: 1; transition-delay: 0.70s; }
.nav-big.visible .nav-cta               { opacity: 1; transition-delay: 0.75s; }

.nav-big .nav-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  margin-right: 6px;
  text-decoration: none;
}

.nav-big .nav-logo svg {
  width: 22px;
  height: 22px;
  fill: #fff;
}

.nav-big .nav-links {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 2px;
}

.nav-big .nav-links a {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: 999px;
  white-space: nowrap;
  transition: background 0.18s ease;
}

.nav-big .nav-links a:hover { background: rgba(255,255,255,0.08); }
.nav-big .nav-links a.active { background: rgba(255,255,255,0.12); }

.nav-big .nav-links .has-arrow::after {
  content: ' ∨';
  font-size: 11px;
  opacity: 0.6;
}

.nav-big .nav-cta {
  display: inline-flex;
  align-items: center;
  height: 36px;
  background: #479FF8;
  color: #fff;
  text-decoration: none;
  font-size: 13.5px;
  font-weight: 500;
  padding: 8px 18px;
  border-radius: 999px;
  white-space: nowrap;
  margin-left: 6px;
  transition: background 0.18s ease, box-shadow 0.18s ease;
}

.nav-big .nav-cta:hover {
  background: #5ba8f9;
  box-shadow: 0 0 20px rgba(71,159,248,0.5);
}

/* FORCE-OVERRIDE: nav logo and white links */
.nav-small .nav-logo,
.nav-big .nav-logo {
  width: 36px !important;
  height: 36px !important;
}

.nav-small .nav-links a,
.nav-small a.nav-link,
.nav-big .nav-links a {
  color: #fff !important;
}

/* ── HAMBURGER BUTTON ────────────────────────── */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  min-width: 36px;
  background: rgba(255,255,255,0.08);
  border: none;
  border-radius: 999px;
  cursor: pointer;
  padding: 0;
  margin-left: auto;
  flex-shrink: 0;
}
.nav-hamburger span {
  display: block;
  width: 18px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* ── MOBILE MENU DROPDOWN ─────────────────────── */
.mobile-menu {
  position: fixed;
  top: 76px;
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  width: calc(100% - 48px);
  max-width: 420px;
  z-index: 9999;
  background: rgba(18, 19, 24, 0.98);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 20px;
  padding: 8px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.18s ease, transform 0.18s ease;
}
.mobile-menu.open {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.mobile-menu a {
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  font-family: 'Satoshi', sans-serif;
  padding: 12px 16px;
  border-radius: 12px;
  transition: background 0.15s ease, color 0.15s ease;
}
.mobile-menu a:hover {
  background: rgba(255,255,255,0.07);
  color: #fff;
}

.mobile-menu .mobile-menu-cta {
  margin-top: 4px;
  background: #479FF8;
  color: #fff !important;
  padding: 13px 16px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 600;
  text-align: center;
}

/* ── RESPONSIVE: tablet + phone ─────────────────────────── */
@media (max-width: 1024px) {
  .nav-small {
    width: calc(100% - 48px);
    left: 50%;
    transform: translateX(-50%);
    justify-content: space-between;
  }
  .nav-small a.nav-link,
  .nav-small .nav-cta {
    display: none;
  }
  .nav-hamburger {
    display: flex !important;
  }
  .nav-big {
    display: none !important;
  }
}

/* ── PERFORMANCE: backdrop-filter uit op mobiel ── */
@media (max-width: 768px) {
  .nav-small {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    background: rgba(22, 24, 30, 0.96);
  }
}


/* === hero.css === */
/* ── HERO SECTION ────────────────────────────── */
.hero {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
}

.hero-spacer { display: none; }

/* Op mobiel: spacer geeft de fixed hero zijn scrollhoogte */
@media (max-width: 768px) {
  .hero-spacer {
    display: block;
    height: 100svh;
  }
}

/* Blue radial glow */
.hero::before {
  content: '';
  position: absolute;
  top: -5%;
  left: 50%;
  transform: translateX(-50%);
  width: 1400px;
  height: 900px;
  background: radial-gradient(ellipse at center,
    rgba(71, 159, 248, 0.50) 0%,
    rgba(71, 159, 248, 0.18) 50%,
    transparent 72%
  );
  pointer-events: none;
  z-index: 0;
  filter: blur(40px);
  will-change: transform;
}

/* ── HERO CONTENT ────────────────────────────── */
.hero-content {
  position: relative;
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-top: 140px;
  padding: 0 24px;
}

/* Availability badge */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(20, 22, 28, 0.85);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 999px;
  padding: 7px 16px;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.9);
  margin-bottom: 36px;
  backdrop-filter: blur(10px);
}

.badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #27AE60;
  box-shadow: 0 0 8px #27AE60;
  flex-shrink: 0;
}

/* Heading */
.hero-title {
  font-size: clamp(42px, 7vw, 82px);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -2px;
  color: #fff;
  max-width: 820px;
  margin-bottom: 22px;
}

.hero-title em {
  font-family: 'Instrument Serif', Georgia, serif;
  font-style: italic;
  font-weight: 400;
  letter-spacing: -1px;
  color: rgba(255,255,255,0.92);
}

/* Subtitle */
.hero-sub {
  font-size: 24px;
  font-weight: 400;
  color: rgba(255,255,255,0.65);
  margin-bottom: 44px;
}

/* Buttons */
.hero-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #2D7DD2, #3b99f5);
  color: #fff;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  padding: 16px 30px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  transition: box-shadow 0.2s ease, transform 0.15s ease;
}

.btn-primary:hover {
  box-shadow: 0 0 32px rgba(45,125,210,0.55);
  transform: translateY(-1px);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(26, 30, 40, 0.9);
  color: #fff;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  padding: 16px 30px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.12);
  cursor: pointer;
  backdrop-filter: blur(10px);
  transition: background 0.2s ease, border-color 0.2s ease;
}

.btn-secondary:hover {
  background: rgba(40, 46, 60, 0.95);
  border-color: rgba(255,255,255,0.22);
}

.btn-icon {
  width: 18px;
  height: 18px;
  opacity: 0.9;
}

/* ── SCROLL ARROW ──────────────────────────── */
.scroll-down {
  position: fixed;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  opacity: 1;
  pointer-events: none;
  transition: opacity 0.12s linear;
  font-size: 0;
}

.scroll-down svg {
  display: none;
}

.scroll-down svg:first-child { animation: none; }
.scroll-down svg:last-child { animation: none; }

.scroll-down::before {
  content: "⌄";
  display: block;
  font-size: 42px;
  line-height: 1;
  font-weight: 700;
  color: rgba(255,255,255,1);
  text-shadow: 0 0 6px rgba(255,255,255,0.32);
  animation: arrowJump 0.9s ease-in-out infinite;
}

@keyframes arrowJump {
  0%, 100% { transform: translateY(0); opacity: 1; }
  45%      { transform: translateY(8px); opacity: 1; }
  70%      { transform: translateY(2px); opacity: 0.95; }
}

/* ── MOBILE ──────────────────────────────────── */
@media (max-width: 768px) {
  .hero-content {
    margin-top: 100px;
    padding: 0 20px;
  }
  .hero-title {
    font-size: clamp(36px, 9vw, 56px);
    letter-spacing: -1.5px;
  }
  .hero-sub {
    font-size: 16px;
    margin-bottom: 32px;
  }
  .hero-buttons {
    flex-direction: column;
    align-items: center;
    width: 100%;
  }
  .btn-primary,
  .btn-secondary {
    width: 100%;
    justify-content: center;
    font-size: 14px;
    padding: 14px 20px;
  }

  /* Performance: backdrop-filter uit op mobiel */
  .badge {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    background: rgba(20, 22, 28, 0.96);
  }
  .btn-secondary {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    background: rgba(26, 30, 40, 0.96);
  }
}


/* === blanket.css === */
/* ── SECTION TAGLINE (blanket) ─────────────────── */
.section-tagline {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  z-index: 10;
  background: rgba(8,8,9,0.65);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-radius: 24px 24px 0 0;
  box-shadow: none;
  transform: translateY(calc(100vh + 24px));
  will-change: transform;
}

/* ── PERFORMANCE: backdrop-filter uit op mobiel ── */
@media (max-width: 768px) {
  .section-tagline {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    background: rgba(8,8,9,0.96);
  }
}

.blanket-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 140px 0 0;
  width: 100%;
  will-change: transform;
}

.section-tagline.open { transform: translateY(0); }

.tagline-inner {
  max-width: 900px;
  width: 100%;
  padding: 0 24px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 100px;
}

.tagline-heading {
  font-family: 'Instrument Serif', Georgia, serif;
  font-size: clamp(48px, 8vw, 96px);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -2px;
  color: #fff;
  font-style: normal;
}

.tagline-heading em { font-style: normal; }

/* ── LOGO BAR ────────────────────────────────── */
.logo-bar {
  width: 60vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  margin-top: 220px;
}

.logo-bar-label {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.5px;
  color: rgba(255,255,255,0.35);
  text-align: center;
}

.marquee-wrapper {
  width: 60vw;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 6%, black 94%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 6%, black 94%, transparent 100%);
}

.marquee-track {
  display: flex;
  align-items: center;
  gap: 80px;
  width: max-content;
  animation: marquee 14s linear infinite;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.logo-name {
  font-size: 40px !important;
  font-weight: 700 !important;
  letter-spacing: 1px;
  color: #ffffff !important;
  text-transform: uppercase;
  font-family: 'Satoshi', sans-serif;
  transition: color 0.3s ease;
}

.logo-name:hover { color: #fff; }

.logo-name--branded {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-transform: none;
  font-weight: 600;
  letter-spacing: 0;
}

.logo-sep {
  color: rgba(255,255,255,0.20);
  font-size: 20px;
}

/* ── Logo bar afbeeldingen ─────────────────── */
.logo-img {
  height: 100px;
  width: auto;
  max-width: 320px;
  opacity: 1;
  filter: brightness(0) invert(1);
  object-fit: contain;
  transition: opacity 0.3s ease;
  flex-shrink: 0;
}
.logo-img:hover { opacity: 1; }

/* ── MOBILE ──────────────────────────────────── */
@media (max-width: 768px) {
  /* Blanket-animatie bestaat niet op mobiel: gewoon normale document flow */
  .section-tagline {
    position: relative;
    height: auto;
    overflow: visible;
    transform: none;
    will-change: auto;
    border-radius: 0;
    background: rgba(8, 8, 9, 1.0);
  }
  .blanket-content {
    padding: 60px 0 0;
    will-change: auto;
  }
  .logo-bar {
    margin-top: 40px;
  }
  .tagline-heading {
    font-size: clamp(42px, 11vw, 64px);
    letter-spacing: -1px;
  }
  .tagline-inner {
    gap: 60px;
    padding: 0 20px;
  }
  .logo-bar,
  .marquee-wrapper {
    width: 100%;
  }
  .logo-name {
    font-size: 28px !important;
  }
  .logo-img {
    height: 60px;
  }
  /* Trager = minder compositing werk per seconde op mobiel */
  .marquee-track {
    animation-duration: 30s;
  }
}

/* === logo-bar.css === */
/* ── LOGO BAR (eigen bestand) ────────────────── */
/* De logo-bar styles staan in blanket.css omdat ze onderdeel zijn van
   de blanket-sectie. Dit bestand is gereserveerd voor eventuele
   uitbreiding van de logo-bar component. */


/* === reviews.css === */
/* -- REVIEWS ------------------------------------------- */
.reviews-section {
  width: 100%;
  padding: 120px 0;
  margin-top: 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

.reviews-row {
  width: 60vw;
  overflow: hidden;
  margin: 0 auto;
}

.reviews-track {
  display: flex;
  justify-content: center;
  gap: 24px;
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.review-card {
  background: #0c0c0d;
  border: 1px solid rgba(255,255,255,0.14);
  border-top-color: rgba(255,255,255,0.26);
  border-bottom-color: rgba(0,0,0,0.6);
  border-radius: 20px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 44px 36px;
  display: flex;
  flex-direction: column;
  gap: 28px;
  min-height: 420px;
  flex: 0 0 calc((60vw - 24px) / 2);
  width: calc((60vw - 24px) / 2);
  box-sizing: border-box;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.08),
    0 4px 0 rgba(0,0,0,0.55),
    0 8px 32px rgba(0,0,0,0.45);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.review-card:hover {
  transform: translateY(-2px);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.10),
    0 6px 0 rgba(0,0,0,0.55),
    0 12px 40px rgba(0,0,0,0.5);
}

.review-stars {
  color: #FFD700;
  font-size: 18px;
  letter-spacing: 2px;
}

.review-quote {
  font-family: 'Satoshi', sans-serif;
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255,255,255,0.75);
  font-weight: 400;
}

.review-author {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 14px;
  margin-top: auto;
}

.review-name {
  font-family: 'Satoshi', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  display: block;
}

.review-role {
  font-family: 'Satoshi', sans-serif;
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  display: block;
}

.review-photo {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

/* -- ARROWS -------------------------------------------- */
.reviews-viewport {
  display: flex;
  align-items: center;
  gap: 24px;
}

.review-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.06);
  color: #fff;
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, border-color 0.2s ease;
  line-height: 1;
}

.review-btn:hover {
  background: rgba(255,255,255,0.14);
  border-color: rgba(255,255,255,0.4);
}

.review-btn:disabled {
  opacity: 0.25;
  cursor: default;
}

/* FORCE-OVERRIDE: reviews colors and anny zoom */
.review-stars {
  color: #2D7DD2 !important;
  text-shadow: 0 0 10px rgba(45,125,210,0.65) !important;
}

.review-quote,
.review-role {
  color: #fff !important;
}

.review-author-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.review-photo--zoom {
  object-position: center 20%;
}

/* ── MOBILE ──────────────────────────────────── */
@media (max-width: 768px) {
  .reviews-section {
    padding: 60px 24px;
    margin-top: 60px;
    box-sizing: border-box;
  }
  .reviews-viewport {
    flex-direction: column;
    gap: 16px;
    width: 100%;
    padding: 0;
    box-sizing: border-box;
  }
  .reviews-row {
    width: 100%;
    overflow: visible;
  }
  .reviews-track {
    flex-direction: column;
    transform: none !important;
    transition: none;
    gap: 16px;
  }
  .review-card {
    width: 100% !important;
    flex: none !important;
    min-height: unset;
    padding: 28px 24px;
    box-sizing: border-box;
    /* Geen backdrop-filter op mobiel — meest GPU-intensieve property */
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    background: #0c0c0d;
  }
  .review-btn {
    display: none;
  }
}


/* === diensten.css === */
/* ── DIENSTEN SECTIE ─────────────────────────── */
.diensten-section {
  width: 60vw;
  margin-top: 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 64px;
}

.diensten-heading {
  font-family: 'Satoshi', sans-serif;
  font-size: clamp(32px, 4.5vw, 58px);
  font-weight: 700;
  color: #fff;
  text-align: center;
  line-height: 1.1;
  letter-spacing: -1.5px;
}

.diensten-heading em {
  font-family: 'Instrument Serif', Georgia, serif;
  font-style: italic;
  font-weight: 400;
  color: #fff;
}

.diensten-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  width: 100%;
}

.dienst-card {
  background: #0c0c0d;
  border: 1px solid rgba(255,255,255,0.14);
  border-top-color: rgba(255,255,255,0.26);
  border-bottom-color: rgba(0,0,0,0.6);
  outline: none;
  outline-offset: 0;
  border-radius: 20px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 44px 36px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
  margin: 0;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.08),
    0 4px 0 rgba(0,0,0,0.55),
    0 8px 32px rgba(0,0,0,0.45);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.dienst-card:hover {
  transform: translateY(-2px);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.10),
    0 6px 0 rgba(0,0,0,0.55),
    0 12px 40px rgba(0,0,0,0.5);
}

.dienst-icon {
  width: 56px;
  height: 56px;
  color: rgba(255,255,255,0.6);
}

.dienst-icon svg { width: 100%; height: 100%; }

.dienst-icon-lottie { width: 80px; height: 80px; display: block; }

.dienst-icon-fallback {
  width: 100%;
  height: 100%;
  object-fit: contain;
  animation: dienstIconBob 1.8s ease-in-out infinite;
}

@keyframes dienstIconBob {
  0% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-3px) scale(1.03); }
  100% { transform: translateY(0) scale(1); }
}

.dienst-icon-3d { width: 100%; height: 100%; object-fit: contain; }

.dienst-title {
  font-family: 'Satoshi', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.3px;
}

.dienst-desc {
  font-family: 'Satoshi', sans-serif;
  font-size: 14px;
  line-height: 1.75;
  color: rgba(255,255,255,0.5);
  font-weight: 400;
}

.dienst-lees-meer {
  font-family: 'Satoshi', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #7ec8e3;
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.18s ease;
}

.dienst-lees-meer:hover { color: #aee0f0; }

.diensten-meer-btn {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  font-family: 'Satoshi', sans-serif;
  font-size: 14px;
  font-weight: 600;
  padding: 12px 28px;
  border-radius: 999px;
  transition: background 0.18s ease, border-color 0.18s ease, color 0.18s ease;
}

.diensten-meer-btn:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(255,255,255,0.4);
  color: #fff;
}


/* -- CAMERA SVG ANIMATION -- */
.dienst-icon-svg-anim {
  width: 80px;
  height: 80px;
  animation: camFloat 2.4s ease-in-out infinite;
}

.cam-lens {
  animation: camPulse 2.4s ease-in-out infinite;
  transform-origin: 40px 43px;
}

.cam-flash {
  animation: flashBlink 2.4s ease-in-out infinite;
}

@keyframes camFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

@keyframes camPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

@keyframes flashBlink {
  0%, 45%, 55%, 100% { opacity: 1; }
  50% { opacity: 0.1; }
}

/* ── MOBILE ──────────────────────────────────── */
@media (max-width: 768px) {
  .diensten-section {
    width: 100%;
    padding: 0 24px;
    box-sizing: border-box;
    margin-top: 60px;
  }
  .diensten-grid {
    grid-template-columns: 1fr;
  }
  .diensten-heading {
    font-size: clamp(28px, 7vw, 44px);
  }
}


/* === showcase.css === */
/* ── SHOWCASE ────────────────────────────────── */
.showcase-section {
  width: 100%;
  margin-top: 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 56px;
}

.showcase-heading {
  font-family: 'Satoshi', sans-serif;
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 700;
  color: #fff;
  text-align: center;
  line-height: 1.1;
  letter-spacing: -1.2px;
}

.showcase-heading em {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  color: #fff;
  font-weight: 400;
}

/* Clip-wrapper */
.showcase-clip {
  width: 100%;
  overflow: hidden;
  padding: 160px 0;
  margin: -160px 0;
}

.showcase-stage {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transform: skewY(3deg);
}

.showcase-row {
  display: flex;
  gap: 20px;
  align-items: center;
  width: max-content;
  will-change: transform;
}

.row-1 { animation: scrollLeft  60s linear infinite; }
.row-2 { animation: scrollRight 72s linear infinite; }
/* sc-wide = 16:9 kaart voor F3 thumbnails (360 × 203 = exact 16:9) */
.sc-wide { width: 360px; height: 203px; }
.row-2 .showcase-card { height: 203px; }
.row-3 { animation: scrollLeft  56s linear infinite; }
.row-3 .sc-collage { height: 220px; }

@keyframes scrollLeft {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@keyframes scrollRight {
  0%   { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}

.showcase-card {
  flex-shrink: 0;
  border-radius: 22px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(30,40,65,0.9) 0%, rgba(15,20,35,0.95) 100%);
  border: none;
  display: flex;
  align-items: flex-end;
  padding: 14px 16px;
  height: 176px;
  width: 320px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
}

/* Achtergrond portfolio kaarten: cover zodat ze de kaart altijd vullen */
.showcase-card[style*="url("] {
  background-color: #060b1a;
  background-origin: border-box !important;
  background-position: center center !important;
  background-repeat: no-repeat !important;
  background-size: cover !important;
}

.showcase-card.sc-wide[style*="url("] {
  background-size: cover !important;
  background-origin: border-box !important;
  background-position: center center !important;
  background-color: #060b1a;
}

/* Grafisch werk (posters, screenshots, stories) — inzoomen zodat hele kaart gevuld is */
.showcase-card.sc-square[style*="url("],
.showcase-card.sc-poster[style*="url("],
.showcase-card.sc-story[style*="url("] {
  background-size: cover !important;
  background-origin: border-box !important;
  background-position: center center !important;
  background-color: #060b1a;
}

.showcase-card.sc-tall[style*="url("] {
  background-size: cover !important;
  background-position: center center !important;
}

.showcase-card.sc-cover[style*="url("] {
  background-size: cover !important;
  background-position: center center !important;
}

.showcase-card[style*="url("]::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.08) 0%, rgba(0,0,0,0.62) 100%);
  pointer-events: none;
}

.showcase-card[style*="url("] .sc-label {
  position: relative;
  z-index: 1;
}

.sc-wide   { width: 360px; }
.sc-square { width: 203px; }   /* 1:1 — square F3 posters                */
.sc-poster { width: 160px; }   /* tall portrait F3 posters (6:7 / 8:11)  */
.sc-story  { width: 114px; }   /* 9:16 social stories                    */
.sc-photo  { width: 160px; }   /* 9:16 behind-the-scenes photos (cover)  */
.sc-tall   { width: 140px; height: 176px; }
.row-3 .showcase-card { height: 220px; }

/* Collage kaart: meerdere portretfoto's naast elkaar in één vak */
.sc-collage {
  width: 300px;
  height: 220px;
  padding: 0;
  gap: 4px;
  background: #060b1a;
  align-items: stretch;
  overflow: hidden;
}

.sc-collage img {
  flex: 1 1 0;
  min-width: 0;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
}
.sc-blue  { background: linear-gradient(135deg, rgba(30,80,180,0.85) 0%, rgba(15,40,110,0.95) 100%); }
.sc-light { background: linear-gradient(135deg, rgba(180,210,255,0.15) 0%, rgba(100,160,240,0.08) 100%); }

.sc-label {
  font-family: 'Satoshi', sans-serif;
  font-size: 11px;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  background: rgba(0,0,0,0.45);
  padding: 4px 8px;
  border-radius: 6px;
}

/* Rapport kaarten */
.sc-report {
  width: 280px;
  height: 200px;
  background: rgba(15,20,35,0.85);
  border: none;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  padding: 20px;
  gap: 8px;
}

.sc-report-title {
  font-family: 'Satoshi', sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: rgba(255,255,255,0.9);
  line-height: 1.3;
}

.sc-report-body {
  font-family: 'Satoshi', sans-serif;
  font-size: 11px;
  color: rgba(255,255,255,0.55);
  line-height: 1.5;
  flex: 1;
}

.sc-report-body.sc-score {
  font-size: 26px;
  font-weight: 700;
  color: #fff;
}

.sc-report-body.sc-score span {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  display: block;
  font-weight: 400;
}

.sc-logo-tag {
  font-family: 'Satoshi', sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.3);
  text-transform: uppercase;
  align-self: flex-end;
}

/* Video kaarten — portret formaat */
.sc-video {
  width: 160px;
  height: 260px;
  background: linear-gradient(160deg, rgba(30,35,50,0.9) 0%, rgba(10,12,20,0.95) 100%);
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding: 14px;
}

.sc-vid-dark { background: linear-gradient(160deg, rgba(15,18,28,0.95) 0%, rgba(5,7,12,1) 100%); }
.sc-vid-mid  { background: linear-gradient(160deg, rgba(25,30,48,0.9) 0%, rgba(12,15,28,0.95) 100%); }

.sc-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 32px;
  height: 32px;
  border: 2px solid rgba(255,255,255,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sc-play::after {
  content: '';
  width: 0;
  height: 0;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  border-left: 11px solid rgba(255,255,255,0.5);
  margin-left: 3px;
}

.sc-vid-label {
  font-family: 'Satoshi', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  text-align: center;
  line-height: 1.3;
  position: relative;
  z-index: 1;
}

/* ── MOBILE ──────────────────────────────────── */
@media (max-width: 768px) {
  .showcase-section {
    margin-top: 60px;
    gap: 32px;
  }
  .showcase-heading {
    font-size: clamp(24px, 6vw, 36px);
    padding: 0 20px;
  }
  .showcase-clip {
    padding: 80px 0;
    margin: -80px 0;
  }
  /* Geen skew op mobiel — scheelt enorm veel GPU compositing */
  .showcase-stage {
    transform: none;
  }
  /* Geen will-change op mobiel — minder GPU lagen */
  .showcase-row {
    will-change: auto;
  }
  /* Derde rij verbergen op mobiel — 1 animatie minder */
  .row-3 {
    display: none;
  }
  /* Isoleer het paint-gebied van de showcase */
  .showcase-clip {
    contain: layout style;
  }
  .showcase-card {
    height: 140px;
    width: 240px;
  }
  .sc-wide   { width: 300px; height: 170px; }
  .sc-square { width: 170px; }
  .sc-poster { width: 120px; }
  .sc-story  { width: 95px; }
  .sc-photo  { width: 120px; }
  .sc-tall   { width: 110px; height: 140px; }
  .sc-collage { width: 220px; height: 170px; }
  .sc-cover { height: 170px !important; }
  .row-2 .showcase-card { height: 170px; }
  /* sc-wide afbeeldingen: cover zodat ze goed vullen op mobiel */
  .sc-wide[style*="url("] {
    background-size: cover !important;
    background-position: center center !important;
  }
  .row-3 .sc-collage { height: 170px; }
}


/* === onboarding.css === */
/* ── ONBOARDING SECTIE ───────────────────────── */
.onboarding-section {
  width: 60vw;
  margin-top: 180px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.onboarding-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
}

.onboarding-badge {
  font-family: 'Satoshi', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #2D7DD2;
  background: none;
  border: none;
  padding: 0;
  margin-bottom: 16px;
}

.onboarding-heading {
  font-family: 'Satoshi', sans-serif;
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  color: #fff;
  letter-spacing: -1.2px;
  line-height: 1.1;
  text-align: center;
}

.onboarding-heading em {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-weight: 400;
  color: #fff;
}

.onboarding-sub {
  font-family: 'Satoshi', sans-serif;
  font-size: 17px;
  font-weight: 400;
  color: rgba(255,255,255,0.55);
  text-align: center;
  margin-top: 8px;
}

.onboarding-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  width: 100%;
  padding: 12px;
}

.onboarding-step {
  flex: 1;
  background: #0c0c0d;
  border: 1px solid rgba(255,255,255,0.14);
  border-top-color: rgba(255,255,255,0.26);
  border-bottom-color: rgba(0,0,0,0.6);
  outline: none;
  outline-offset: 0;
  border-radius: 20px;
  padding: 44px 32px 40px;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.08),
    0 4px 0 rgba(0,0,0,0.55),
    0 8px 32px rgba(0,0,0,0.45);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.step-icon {
  width: 96px;
  height: 96px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.85);
  margin-bottom: 8px;
}

.step-icon svg {
  width: 100%;
  height: 100%;
  stroke-width: 1.8;
}

.step-number {
  font-family: 'Satoshi', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #2D7DD2;
  text-align: center;
}

.step-title {
  font-family: 'Satoshi', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.3px;
}

.step-desc {
  font-family: 'Satoshi', sans-serif;
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255,255,255,0.5);
}

/* ── MOBILE ──────────────────────────────────── */
@media (max-width: 768px) {
  .onboarding-section {
    width: 100%;
    padding: 0 24px;
    box-sizing: border-box;
    margin-top: 80px;
  }
  .onboarding-steps {
    grid-template-columns: 1fr;
    padding: 12px 0;
  }
  .onboarding-heading {
    font-size: clamp(26px, 7vw, 42px);
  }
}


/* === cta.css === */
/* ── CTA SECTIE ──────────────────────────────── */
.cta-section {
  width: 60vw;
  margin-top: 160px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  text-align: center;
  position: relative;
}

/* Lichtflits (template 4 stijl) achter de CTA */
.cta-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 1000px;
  height: 500px;
  background: radial-gradient(ellipse at center,
    rgba(255, 255, 255, 0.55) 0%,
    rgba(180, 225, 255, 0.30) 30%,
    rgba(126, 200, 227, 0.12) 55%,
    transparent 72%
  );
  pointer-events: none;
  filter: blur(60px);
  z-index: 0;
}

.cta-label {
  position: relative;
  z-index: 1;
  font-family: 'Satoshi', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #2D7DD2;
}

.cta-heading {
  position: relative;
  z-index: 1;
  font-family: 'Satoshi', sans-serif;
  font-size: clamp(32px, 5.5vw, 68px);
  font-weight: 700;
  color: #fff;
  line-height: 1.08;
  letter-spacing: -2px;
  max-width: 800px;
}

.cta-heading em {
  font-family: 'Instrument Serif', Georgia, serif;
  font-style: italic;
  font-weight: 400;
  color: #fff;
}

.cta-sub {
  position: relative;
  z-index: 1;
  font-family: 'Satoshi', sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.6;
  color: rgba(255,255,255,0.55);
  max-width: 560px;
}

.cta-btn {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #2D7DD2;
  color: #fff;
  text-decoration: none;
  font-family: 'Satoshi', sans-serif;
  font-size: 15px;
  font-weight: 500;
  padding: 16px 36px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  transition: box-shadow 0.2s ease, transform 0.15s ease, background 0.2s ease;
}

.cta-btn:hover {
  background: #3a8de0;
  box-shadow: 0 0 40px rgba(45,125,210,0.55);
  transform: translateY(-1px);
}

/* ── MOBILE ────────────────────────────────── */
@media (max-width: 768px) {
  .cta-section {
    width: 100%;
    padding: 0 24px;
    box-sizing: border-box;
    margin-top: 80px;
    margin-bottom: 80px;
  }
  /* filter:blur is de zwaarste CSS-property op mobiel — weghalen */
  .cta-section::before {
    display: none;
  }
}


/* === footer.css === */
/* ── FOOTER ──────────────────────────────────── */
.site-footer {
  width: 60vw;
  margin: 100px auto 48px;
  background: rgba(22, 24, 30, 0.75);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 24px;
  overflow: hidden;
}

/* ── PERFORMANCE: backdrop-filter uit op mobiel ── */
@media (max-width: 768px) {
  .site-footer {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    background: rgba(22, 24, 30, 0.97);
  }
}

/* Footer brand kolom (logo + tagline + adres) */
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.footer-top {
  width: 100%;
  padding: 40px 40px 36px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 32px;
}

.footer-logo {
  display: block;
  text-decoration: none;
  margin-bottom: 16px;
}

.footer-logo svg {
  width: 22px;
  height: 22px;
  fill: #2D7DD2;
}

.footer-logo span,
.footer-logo-name {
  font-family: 'Satoshi', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.3px;
}

.footer-tagline {
  font-family: 'Satoshi', sans-serif;
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255,255,255,0.4);
  white-space: nowrap;
  margin-bottom: 12px;
}

.footer-address {
  font-family: 'Satoshi', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: rgba(255,255,255,0.75);
}

.footer-col-title {
  font-family: 'Satoshi', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #2D7DD2;
  margin-bottom: 20px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* Directe <a> tags (zonder ul/li) */
.footer-col {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.footer-col a,
.footer-col span,
.footer-col ul li a {
  font-family: 'Satoshi', sans-serif;
  font-size: 15px;
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  line-height: 1;
  padding: 8px 0;
  transition: color 0.18s ease;
}

.footer-col a:hover,
.footer-col ul li a:hover { color: rgba(255,255,255,0.9); }

.footer-bottom {
  width: 100%;
  padding: 24px 48px;
  border-top: 1px solid rgba(255,255,255,0.07);
  display: flex;
  justify-content: center;
  align-items: center;
}

.footer-copy {
  font-family: 'Satoshi', sans-serif;
  font-size: 13px;
  color: rgba(255,255,255,0.25);
  text-align: center;
}

.footer-legal-link {
  font-family: 'Satoshi', sans-serif;
  font-size: 13px;
  color: rgba(255,255,255,0.25);
  text-decoration: none;
  transition: color 0.18s ease;
  white-space: nowrap;
}

.footer-legal-link:last-child { text-align: right; }

.footer-legal-link:hover { color: rgba(255,255,255,0.7); }

/* wordmark logo */
.footer-wordmark {
  height: auto;
  width: 180px;
  display: block;
}

/* city text under tagline */
.footer-city {
  font-family: 'Satoshi', sans-serif;
  font-size: 13px;
  color: rgba(255,255,255,0.35);
  margin-top: 4px;
}


/* -- SOCIAL ICONS -- */
.footer-socials {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}

.footer-social-link {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.footer-social-link:hover {
  background: rgba(255,255,255,0.14);
  color: #fff;
  border-color: rgba(255,255,255,0.35);
}

.footer-social-link svg {
  width: 16px;
  height: 16px;
}

/* ── MOBILE ────────────────────────────────── */
@media (max-width: 768px) {
  .site-footer {
    width: calc(100% - 48px);
    margin: 0 auto 32px;
    border-radius: 20px;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 32px 28px;
  }

  .footer-tagline {
    white-space: normal;
  }

  .footer-bottom {
    padding: 20px 28px;
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
}


/* === reveal.css === */
/* ── REVEAL ON SCROLL ────────────────────────── */
.reveal-item {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.16,1,0.3,1),
              transform 0.8s cubic-bezier(0.16,1,0.3,1);
}

.reveal-item.in-view {
  opacity: 1;
  transform: translateY(0);
}

.reveal-item:nth-child(2) { transition-delay: 0.15s; }
.reveal-item:nth-child(3) { transition-delay: 0.30s; }
.reveal-item:nth-child(4) { transition-delay: 0.45s; }


