/* ═══════════════════════════════════════════
   DESIGN TOKENS
   ═══════════════════════════════════════════ */
:root {
  --teal: #1b7b6f;
  --teal-dark: #155f56;
  --teal-light: #2a9d8f;
  --coral: #e85b5b;
  --coral-dark: #c94545;
  --coral-light: #f08080;
  --mustard: #e8c84a;
  --mustard-light: #f0d86a;
  --blue: #4a7ab5;
  --blue-light: #6b9fd4;
  --brown: #2d2118;
  --brown-light: #4a3828;
  --cream: #f5e6dc;
  --cream-light: #fbf4ef;
  --blush: #e8bfb1;
  --white: #ffffff;

  --font-display: "Playfair Display", Georgia, "Times New Roman", serif;
  --font-body: "Montserrat", "Segoe UI", Arial, sans-serif;

  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 4rem;
  --space-xl: 6rem;

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;

  --shadow-soft: 0 4px 20px rgba(45, 33, 24, 0.08);
  --shadow-lift: 0 12px 40px rgba(45, 33, 24, 0.15);
  --shadow-deep: 0 20px 60px rgba(45, 33, 24, 0.2);
  --shadow-glow-teal: 0 8px 30px rgba(27, 123, 111, 0.25);
  --shadow-glow-coral: 0 8px 30px rgba(232, 91, 91, 0.25);

  --transition: 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-slow: 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ═══════════════════════════════════════════
   RESET & BASE
   ═══════════════════════════════════════════ */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  font-size: 16px;
}
body {
  font-family: var(--font-body);
  color: var(--brown);
  background: var(--cream-light);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img,
video {
  max-width: 100%;
  display: block;
}
a {
  text-decoration: none;
  color: inherit;
}

/* Foto's die hun container volledig vullen */
.fill-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

/* ═══════════════════════════════════════════
   NAVBAR
   ═══════════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-sm) var(--space-md);
  background: transparent;
  transition:
    background var(--transition),
    box-shadow var(--transition);
}
.navbar.scrolled {
  background: rgba(27, 123, 111, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-soft);
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.02em;
}
.nav-logo .dot {
  color: var(--coral);
}
.nav-links {
  list-style: none;
  display: flex;
  gap: var(--space-md);
}
.nav-links a {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  position: relative;
  transition: color var(--transition);
}
.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--coral);
  transition: width var(--transition);
}
.nav-links a:hover::after {
  width: 100%;
}

/* ═══════════════════════════════════════════
   HERO HEADER
   ═══════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    135deg,
    var(--teal-dark) 0%,
    var(--teal) 35%,
    var(--teal-light) 65%,
    var(--blue) 100%
  );
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  top: -20%;
  right: -10%;
  width: 700px;
  height: 700px;
  background: radial-gradient(
    circle,
    rgba(232, 200, 74, 0.18) 0%,
    transparent 60%
  );
  pointer-events: none;
}
.hero::after {
  content: "";
  position: absolute;
  bottom: -15%;
  left: -8%;
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(232, 91, 91, 0.15) 0%,
    transparent 60%
  );
  pointer-events: none;
}

/* Hero achtergrondafbeelding */
.hero-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
  opacity: 0.25;
}

/* Hero floating decorative shapes */
.deco-circle {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}
.deco-circle--1 {
  width: 300px;
  height: 300px;
  top: 10%;
  right: -60px;
  border: 3px solid rgba(232, 200, 74, 0.2);
  animation: float-circle 8s ease-in-out infinite;
}
.deco-circle--2 {
  width: 180px;
  height: 180px;
  bottom: 20%;
  left: 5%;
  background: rgba(232, 91, 91, 0.08);
  animation: float-circle 10s ease-in-out infinite reverse;
}
.deco-circle--3 {
  width: 100px;
  height: 100px;
  top: 25%;
  left: 15%;
  border: 2px solid rgba(255, 255, 255, 0.1);
  animation: float-circle 6s ease-in-out infinite;
}
.deco-line {
  position: absolute;
  pointer-events: none;
  z-index: 0;
}
.deco-line--1 {
  width: 200px;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(232, 200, 74, 0.3),
    transparent
  );
  top: 30%;
  right: 10%;
  transform: rotate(-15deg);
}
.deco-line--2 {
  width: 150px;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(232, 91, 91, 0.3),
    transparent
  );
  bottom: 35%;
  left: 8%;
  transform: rotate(20deg);
}
@keyframes float-circle {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(5deg);
  }
}

/* Hero background text */
.hero-bg-text {
  position: absolute;
  font-family: var(--font-display);
  font-size: clamp(10rem, 25vw, 20rem);
  font-weight: 700;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.06);
  letter-spacing: 0.1em;
  z-index: 0;
  user-select: none;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.hero-content {
  text-align: left;
  position: relative;
  z-index: 1;
  padding-left: 10%;
  align-self: flex-start;
}
.hero-pre-label {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.35em;
  color: var(--mustard);
  margin-bottom: var(--space-sm);
}
.hero-name {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 10vw, 8rem);
  font-weight: 700;
  color: var(--cream);
  line-height: 0.95;
  letter-spacing: -0.02em;
  margin-bottom: var(--space-md);
}
.hero-name-indent {
  font-style: italic;
  font-weight: 400;
  font-size: 0.65em;
  display: block;
  padding-left: 0.8em;
}
.hero-subtitle {
  font-family: var(--font-body);
  font-size: clamp(0.9rem, 2vw, 1.2rem);
  font-weight: 300;
  color: var(--cream);
  text-transform: uppercase;
  letter-spacing: 0.35em;
}
.hero-accent-bar {
  width: 80px;
  height: 5px;
  margin-top: var(--space-md);
  background: linear-gradient(90deg, var(--coral), var(--mustard));
  border-radius: 3px;
}
.hero-scroll-hint {
  position: absolute;
  bottom: var(--space-md);
  color: rgba(245, 230, 220, 0.5);
  animation: bob 2s ease-in-out infinite;
  z-index: 1;
}
@keyframes bob {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(8px);
  }
}

/* ═══════════════════════════════════════════
   SECTION DIVIDERS (diagonal / wave)
   ═══════════════════════════════════════════ */
.section-divider {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 80px;
  z-index: 5;
}
.section-divider--hero {
  background: linear-gradient(
    to right bottom,
    transparent 49.5%,
    var(--cream) 50%
  );
}
.section-divider--award {
  background: linear-gradient(
    to right bottom,
    transparent 49.5%,
    var(--cream-light) 50%
  );
}
.section-divider--portfolio {
  background: linear-gradient(
    to left bottom,
    transparent 49.5%,
    var(--coral) 50%
  );
}

/* ═══════════════════════════════════════════
   FLOATING SECTION TITLES (layered, overlapping)
   ═══════════════════════════════════════════ */
.floating-title {
  position: relative;
  z-index: 10;
  pointer-events: none;
  line-height: 1;
}
.floating-title__top {
  display: block;
  font-family: var(--font-body);
  font-size: clamp(0.7rem, 1.5vw, 0.85rem);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.3em;
}
.floating-title__bottom {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 7vw, 5rem);
  font-weight: 700;
  line-height: 1;
  margin-top: 0.1em;
}
.trophy {
  display: inline-block;
  animation: wiggle 1.5s ease-in-out infinite;
}
@keyframes wiggle {
  0%,
  100% {
    transform: rotate(0deg);
  }
  25% {
    transform: rotate(10deg);
  }
  75% {
    transform: rotate(-10deg);
  }
}

/* Award section title — positioned left, overlapping into content */
.floating-title--award {
  padding: var(--space-xl) 0 0;
  margin-left: 6%;
  margin-bottom: 8px;
}
.floating-title--award .floating-title__top {
  color: var(--teal);
}
.floating-title--award .floating-title__bottom {
  color: var(--brown);
  -webkit-text-stroke: 0;
}
.floating-title--award .floating-title__bottom::after {
  content: "";
  display: block;
  width: 120px;
  height: 5px;
  background: linear-gradient(90deg, var(--coral), var(--mustard));
  border-radius: 3px;
  margin-top: 0.3em;
}

/* Portfolio section title — positioned right */
.floating-title--portfolio {
  text-align: right;
  margin-right: 6%;
  padding-top: var(--space-xl);
  margin-bottom: -1.5rem;
}
.floating-title--portfolio .floating-title__top {
  color: var(--teal);
}
.floating-title--portfolio .floating-title__bottom {
  color: var(--brown);
}
.floating-title--portfolio .floating-title__bottom::before {
  content: "";
  display: inline-block;
  width: 80px;
  height: 5px;
  background: linear-gradient(90deg, var(--teal), var(--blue));
  border-radius: 3px;
  vertical-align: middle;
  margin-right: 0.4em;
}

/* Contact section title — centered with light colors */
.floating-title--contact {
  text-align: left;
  margin-bottom: var(--space-md);
}
.floating-title--contact .floating-title__top {
  color: rgba(255, 255, 255, 0.7);
}
.floating-title--contact .floating-title__bottom {
  color: var(--white);
  font-size: clamp(2rem, 5vw, 3.5rem);
}

/* ═══════════════════════════════════════════
   AWARD SECTION
   ═══════════════════════════════════════════ */
.award-section {
  background: linear-gradient(
    180deg,
    var(--cream) 0%,
    var(--cream-light) 40%,
    var(--cream) 100%
  );
  padding: 0 0 var(--space-xl);
  position: relative;
  overflow: hidden;
}

/* Decorative blobs */
.deco-blob {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}
.deco-blob--award-1 {
  width: 400px;
  height: 400px;
  top: 20%;
  right: -150px;
  background: radial-gradient(
    circle,
    rgba(27, 123, 111, 0.06) 0%,
    transparent 70%
  );
}
.deco-blob--award-2 {
  width: 300px;
  height: 300px;
  bottom: 15%;
  left: -100px;
  background: radial-gradient(
    circle,
    rgba(232, 91, 91, 0.06) 0%,
    transparent 70%
  );
}

/* Highlight Block — magazine-style layout */
.highlight-block {
  display: grid;
  grid-template-columns: minmax(280px, 400px) minmax(260px, 360px);
  gap: calc(var(--space-md) + 0.75rem);
  align-items: center;
  justify-content: center;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: calc(var(--space-lg) + 0.5rem);
  position: relative;
  z-index: 1;
}
.highlight-block:last-child {
  margin-bottom: 0;
}
.highlight-block--reverse {
  direction: rtl;
}
.highlight-block--reverse > * {
  direction: ltr;
}

/* Main (big) photo */
.highlight-main {
  position: relative;
  width: min(100%, 400px);
  justify-self: center;
  aspect-ratio: 5 / 4;
  border-radius: var(--radius-xl);
  overflow: hidden;
  height: auto;
  z-index: 1;
}
.highlight-main .placeholder {
  height: 100%;
  min-height: 0;
}
/* Gradient overlay on main photo — for text readability */
.highlight-main::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 40%,
    rgba(45, 33, 24, 0.5) 100%
  );
  pointer-events: none;
  z-index: 1;
}
.highlight-number {
  position: absolute;
  top: var(--space-md);
  right: var(--space-md);
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.35);
  z-index: 2;
  opacity: 0.85;
}
/* Overlay text slapped across the bottom of the photo */
.highlight-overlay-text {
  position: absolute;
  bottom: var(--space-md);
  left: var(--space-md);
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 700;
  font-style: italic;
  color: var(--white);
  z-index: 2;
  text-shadow: 0 2px 15px rgba(0, 0, 0, 0.3);
  letter-spacing: -0.01em;
}

/* Side column: 2 small photos + text info */
.highlight-side {
  display: block;
  position: relative;
  margin-left: -15px;
  z-index: 3;
  padding-top: var(--space-xs);
}
.highlight-side-img {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: auto;
  aspect-ratio: 4 / 3;
  border: 4px solid rgba(251, 244, 239, 0.95);
  box-shadow: var(--shadow-lift);
  background: var(--cream-light);
}
.highlight-side-img:first-child {
  width: 78%;
  margin-left: auto;
  z-index: 2;
}
.highlight-side-img:nth-child(2) {
  width: 84%;
  margin-top: -8px;
  aspect-ratio: 3 / 2;
  z-index: 3;
}
.highlight-side-img .placeholder {
  height: 100%;
  min-height: 0;
}
.highlight-info {
  grid-column: 1 / -1;
  width: min(100%, 440px);
  justify-self: start;
  margin-top: 0;
  margin-bottom: -2.2rem;
  padding: var(--space-sm);
  position: relative;
  z-index: 5;
  border-radius: var(--radius-md);
  background: rgba(251, 244, 239, 0.92);
  box-shadow: var(--shadow-soft);
}
.highlight-info::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, var(--teal), var(--coral));
  border-radius: 2px;
}
.highlight-title {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--brown);
  margin-bottom: var(--space-xs);
  margin-top: var(--space-xs);
}

/* Vary image proportions per project: both horizontal, with subtle difference */
.award-section .highlight-block:nth-of-type(2) .highlight-main {
  aspect-ratio: 4 / 3;
  width: min(100%, 380px);
}
.award-section .highlight-block:nth-of-type(1) .highlight-side-img:first-child {
  aspect-ratio: 4 / 3;
}
.award-section
  .highlight-block:nth-of-type(1)
  .highlight-side-img:nth-child(2) {
  aspect-ratio: 3 / 2;
}
.award-section .highlight-block:nth-of-type(2) .highlight-side-img:first-child {
  aspect-ratio: 3 / 2;
}
.award-section
  .highlight-block:nth-of-type(2)
  .highlight-side-img:nth-child(2) {
  aspect-ratio: 4 / 3;
}

/* Mirror collage overlap for reverse blocks */
.highlight-block--reverse .highlight-main {
  justify-self: end;
}
.highlight-block--reverse .highlight-info {
  justify-self: end;
}
.highlight-block--reverse .highlight-side {
  margin-left: 0;
  margin-right: -15px;
}
.highlight-block--reverse .highlight-side-img:first-child {
  margin-left: 0;
}
.highlight-block--reverse .highlight-side-img:nth-child(2) {
  margin-left: auto;
}
.highlight-desc {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--brown);
  opacity: 0.75;
  line-height: 1.65;
}

/* Colorful borders — thicker, with glow on hover */
.highlight-border--teal {
  border: 5px solid var(--teal);
}
.highlight-border--coral {
  border: 5px solid var(--coral);
}
.highlight-border--mustard {
  border: 5px solid var(--mustard);
}
.highlight-border--blue {
  border: 5px solid var(--blue);
}

/* Decorative dots — more prominent */
.highlight-dots {
  position: absolute;
  width: 80px;
  height: 80px;
  z-index: 0;
  pointer-events: none;
  background-image: radial-gradient(circle, currentColor 3px, transparent 3px);
  background-size: 14px 14px;
  opacity: 0.5;
}
.highlight-dots--teal {
  color: var(--teal);
  top: -20px;
  right: 35%;
}
.highlight-dots--coral {
  color: var(--coral);
  bottom: -20px;
  left: 35%;
}

/* Hover on highlight images — enhanced */
.highlight-main,
.highlight-side-img {
  transition:
    transform var(--transition),
    box-shadow var(--transition);
  cursor: pointer;
}
.highlight-main:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: var(--shadow-deep);
}
.highlight-side-img:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lift);
}

/* ═══════════════════════════════════════════
   PLACEHOLDER (grey square)
   ═══════════════════════════════════════════ */
.placeholder {
  width: 100%;
  height: 100%;
  min-height: 200px;
  background: linear-gradient(135deg, #c8c0b8 0%, #a89e94 50%, #c8c0b8 100%);
  background-size: 200% 200%;
  animation: shimmer 3s ease-in-out infinite;
  display: flex;
  align-items: center;
  justify-content: center;
}
@keyframes shimmer {
  0%,
  100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

/* ═══════════════════════════════════════════
   PORTFOLIO COLLAGE GALLERY
   ═══════════════════════════════════════════ */
.portfolio-section {
  background: linear-gradient(
    180deg,
    var(--cream-light) 0%,
    var(--cream) 30%,
    var(--cream-light) 60%,
    var(--cream) 80%,
    var(--blush) 100%
  );
  padding: 0 0 var(--space-xl);
  position: relative;
  overflow: hidden;
}

/* Decorative elements in portfolio */
.deco-blob--port-1 {
  position: absolute;
  width: 500px;
  height: 500px;
  bottom: -100px;
  right: -200px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(74, 122, 181, 0.07) 0%,
    transparent 60%
  );
  pointer-events: none;
  z-index: 0;
}
.deco-stripe--port {
  position: absolute;
  top: 30%;
  left: -50px;
  width: 200px;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--teal), transparent);
  transform: rotate(-30deg);
  pointer-events: none;
  z-index: 0;
  opacity: 0.3;
}

/* ─── CATEGORY BLOCKS ─── */
.category {
  position: relative;
  z-index: 1;
  padding-bottom: var(--space-xl);
}
.category:last-of-type {
  padding-bottom: 0;
}

/* Category header — left or right aligned */
.category-header {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-lg) var(--space-md) var(--space-md);
  max-width: 1200px;
  margin: 0 auto;
}
.category-header--right {
  justify-content: flex-end;
  text-align: right;
}
.category-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
}
.category-title--curly {
  color: var(--teal);
}
.category-title--color {
  color: var(--coral);
}
.category-title--regular {
  color: var(--blue);
}
.category-line {
  flex: 1;
  height: 3px;
  border-radius: 2px;
  min-width: 40px;
}
.category--curly .category-line {
  background: linear-gradient(90deg, var(--teal), transparent);
}
.category--color .category-line {
  background: linear-gradient(90deg, transparent, var(--coral));
}
.category--regular .category-line {
  background: linear-gradient(90deg, var(--blue), transparent);
}
.category-sub {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--brown);
  opacity: 0.6;
  white-space: nowrap;
}

/* Category visual separator between categories */
.category + .category::before {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 10%,
    var(--blush) 50%,
    transparent 90%
  );
  margin-bottom: var(--space-sm);
}

/* ─── COLLAGE GRID (used for Curly Cuts + Regular Cuts) ─── */
/* Moodboard-stijl layout met overlappende foto's */
.collage-grid {
  position: relative;
  width: 100%;
  min-height: 750px;
  padding: var(--space-lg) 0;
}

/* Tile base — with more depth */
.collage-item {
  position: absolute;
  border-radius: 0;
  overflow: hidden;
  cursor: pointer;
  transition:
    transform var(--transition),
    box-shadow var(--transition);
  box-shadow: var(--shadow-soft);
}
.collage-item .placeholder {
  min-height: 100%;
}
.collage-item:hover {
  transform: translateY(-6px) scale(1.02) !important;
  box-shadow: var(--shadow-deep);
  z-index: 100 !important;
}

/* ─── CURLY CUTS MOODBOARD LAYOUT (6 foto's) ─── */
.category--curly .collage-item:nth-child(1) {
  top: 8%;
  left: 6%;
  width: 26%;
  height: 323px;
  z-index: 3;
}
.category--curly .collage-item:nth-child(2) {
  top: 5%;
  right: 8%;
  width: 22%;
  height: 289px;
  z-index: 5;
}
.category--curly .collage-item:nth-child(3) {
  top: 38%;
  left: 42%;
  width: 19%;
  height: 272px;
  z-index: 4;
}
.category--curly .collage-item:nth-child(4) {
  bottom: 8%;
  left: 50%;
  width: 21%;
  height: 289px;
  z-index: 2;
}
.category--curly .collage-item:nth-child(5) {
  bottom: 5%;
  left: 38%;
  width: 22%;
  height: 238px;
  z-index: 6;
}
.category--curly .collage-item:nth-child(6) {
  bottom: 12%;
  right: 6%;
  width: 19%;
  height: 255px;
  z-index: 3;
}

/* ─── REGULAR CUTS MOODBOARD LAYOUT ─── */
.category--regular .collage-item:nth-child(1) {
  top: 8%;
  left: 8%;
  width: 20%;
  height: 272px;
  z-index: 4;
}
.category--regular .collage-item:nth-child(2) {
  top: 5%;
  left: 38%;
  width: 22%;
  height: 323px;
  z-index: 3;
}
.category--regular .collage-item:nth-child(3) {
  top: 12%;
  right: 6%;
  width: 18%;
  height: 221px;
  z-index: 6;
}
.category--regular .collage-item:nth-child(4) {
  top: 48%;
  left: 6%;
  width: 16%;
  height: 204px;
  z-index: 2;
}
.category--regular .collage-item:nth-child(5) {
  top: 50%;
  left: 30%;
  width: 26%;
  height: 238px;
  z-index: 5;
}
.category--regular .collage-item:nth-child(6) {
  top: 42%;
  right: 8%;
  width: 19%;
  height: 255px;
  z-index: 3;
}
.category--regular .collage-item:nth-child(7) {
  bottom: 5%;
  left: 12%;
  width: 21%;
  height: 187px;
  z-index: 4;
}
.category--regular .collage-item:nth-child(8) {
  bottom: 8%;
  right: 12%;
  width: 18%;
  height: 170px;
  z-index: 2;
}

/* Highlight frames */
.collage-item--highlight-teal {
  border: 5px solid var(--teal);
  box-shadow: var(--shadow-glow-teal);
}
.collage-item--highlight-coral {
  border: 5px solid var(--coral);
  box-shadow: var(--shadow-glow-coral);
}
.collage-item--highlight-mustard {
  border: 5px solid var(--mustard);
  box-shadow: 0 8px 30px rgba(232, 200, 74, 0.25);
}
.collage-item--highlight-blue {
  border: 5px solid var(--blue);
  box-shadow: 0 8px 30px rgba(74, 122, 181, 0.25);
}

/* Highlighted collage items get a gradient overlay */
[class*="collage-item--highlight"]::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 50%,
    rgba(45, 33, 24, 0.35) 100%
  );
  pointer-events: none;
  z-index: 1;
}

/* Highlight tags — color-coded per category */
.collage-tag {
  position: absolute;
  top: var(--space-sm);
  left: var(--space-sm);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  padding: 5px 14px;
  border-radius: 20px;
  z-index: 3;
}
.collage-tag--teal {
  background: linear-gradient(135deg, var(--teal), var(--teal-dark));
  box-shadow: 0 4px 12px rgba(27, 123, 111, 0.35);
}
.collage-tag--coral {
  background: linear-gradient(135deg, var(--coral), var(--coral-dark));
  box-shadow: 0 4px 12px rgba(232, 91, 91, 0.35);
}
.collage-tag--mustard {
  background: linear-gradient(135deg, var(--mustard), #d4b43a);
  color: var(--brown);
  box-shadow: 0 4px 12px rgba(232, 200, 74, 0.35);
}
.collage-tag--blue {
  background: linear-gradient(135deg, var(--blue), #3a6599);
  box-shadow: 0 4px 12px rgba(74, 122, 181, 0.35);
}

/* ─── COLOR GRID (special layout with title cards) ─── */
/* Moodboard-stijl layout voor color sectie */
.color-grid {
  position: relative;
  width: 100%;
  min-height: 700px;
  padding: var(--space-lg) 0;
}
.color-card {
  position: absolute;
  border-radius: 0;
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow-soft);
  transition:
    transform var(--transition),
    box-shadow var(--transition);
  cursor: pointer;
}
.color-card:hover {
  transform: translateY(-6px) scale(1.02) !important;
  box-shadow: var(--shadow-deep);
  z-index: 100 !important;
}

/* ─── COLOR MOODBOARD LAYOUT (5 foto's) ─── */
.color-card:nth-child(1) {
  top: 10%;
  left: 6%;
  width: 28%;
  z-index: 3;
}
.color-card:nth-child(2) {
  top: 8%;
  left: 38%;
  width: 26%;
  z-index: 5;
}
.color-card:nth-child(3) {
  top: 12%;
  right: 8%;
  width: 24%;
  z-index: 2;
}
.color-card:nth-child(4) {
  /* bottom: 10%; */
  left: 10%;
  width: 26%;
  z-index: 4;
}
.color-card:nth-child(5) {
  bottom: 8%;
  right: 10%;
  width: 30%;
  z-index: 6;
}

.color-card__img {
  width: 100%;
  aspect-ratio: 3 / 4;
  overflow: hidden;
}
.color-card__img .placeholder {
  min-height: 100%;
}
.color-card__info {
  padding: var(--space-sm) var(--space-sm) var(--space-md);
}
.color-card__title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--brown);
  margin-bottom: 4px;
}
.color-card__desc {
  font-family: var(--font-body);
  font-size: 0.8rem;
  color: var(--brown);
  opacity: 0.6;
  line-height: 1.5;
}

/* Highlighted color cards */
.color-card--highlight {
  border: 4px solid var(--coral);
  box-shadow: var(--shadow-glow-coral);
}
.color-card--highlight .color-card__img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 60%,
    rgba(232, 91, 91, 0.15) 100%
  );
  pointer-events: none;
}
.color-card--highlight .collage-tag {
  top: var(--space-sm);
  left: var(--space-sm);
}

/* Video overlay */
.collage-item--video {
  border: 3px solid var(--brown);
}
.play-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    135deg,
    rgba(45, 33, 24, 0.1) 0%,
    rgba(45, 33, 24, 0.25) 100%
  );
  transition: background var(--transition);
}
.collage-item--video:hover .play-overlay {
  background: linear-gradient(
    135deg,
    rgba(45, 33, 24, 0.2) 0%,
    rgba(45, 33, 24, 0.4) 100%
  );
}
.play-icon {
  width: 64px;
  height: 64px;
  transition: transform var(--transition);
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}
.collage-item--video:hover .play-icon {
  transform: scale(1.15);
}

/* ═══════════════════════════════════════════
   CONTACT / FOOTER
   ═══════════════════════════════════════════ */
.contact-section {
  background: linear-gradient(
    135deg,
    var(--coral) 0%,
    var(--coral-dark) 40%,
    #b5424a 70%,
    var(--brown) 100%
  );
  padding: var(--space-xl) 0 var(--space-md);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
/* Decorative circles in footer */
.contact-section::before {
  content: "";
  position: absolute;
  top: -80px;
  right: -60px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.08);
  pointer-events: none;
}
.contact-section::after {
  content: "";
  position: absolute;
  bottom: -50px;
  left: -40px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: rgba(232, 200, 74, 0.06);
  pointer-events: none;
}
.contact-tagline {
  text-align: center;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: var(--space-lg);
}
.contact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
}
.contact-card {
  text-align: center;
  padding: var(--space-md);
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-lg);
  transition:
    background var(--transition),
    border-color var(--transition),
    transform var(--transition);
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(8px);
}
.contact-card:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-4px);
}
.contact-icon {
  width: 32px;
  height: 32px;
  margin: 0 auto var(--space-xs);
  color: var(--white);
}
.contact-label {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 4px;
  color: rgba(255, 255, 255, 0.7);
}
.contact-value {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--white);
  transition: color var(--transition);
}
.contact-card:hover .contact-value {
  color: var(--mustard);
}
.footer-bottom {
  text-align: center;
  padding-top: var(--space-md);
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
}

/* ═══════════════════════════════════════════
   SCROLL ANIMATIONS
   ═══════════════════════════════════════════ */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.7s ease-out,
    transform 0.7s ease-out;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ═══════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════ */
@media (max-width: 1024px) {
  .highlight-block {
    grid-template-columns: minmax(220px, 320px) minmax(220px, 300px);
    gap: var(--space-md);
    max-width: 760px;
  }
  .highlight-side {
    margin-left: -10px;
  }
  .highlight-block--reverse .highlight-side {
    margin-right: -10px;
  }
  /* Moodboard blijft op tablet, maar met kleinere min-height */
  .collage-grid {
    min-height: 600px;
  }
  /* Aangepaste posities voor Curly Cuts op tablet */
  .category--curly .collage-item:nth-child(1) {
    top: 10%;
    left: 8%;
    width: 30%;
    height: 255px;
  }
  .category--curly .collage-item:nth-child(2) {
    top: 8%;
    right: 10%;
    width: 28%;
    height: 238px;
  }
  .category--curly .collage-item:nth-child(3) {
    top: 42%;
    left: 48%;
    width: 22%;
    height: 213px;
  }
  .category--curly .collage-item:nth-child(4) {
    bottom: 12%;
    left: 10%;
    width: 26%;
    height: 238px;
  }
  .category--curly .collage-item:nth-child(5) {
    bottom: 10%;
    left: 45%;
    width: 24%;
    height: 204px;
  }
  .category--curly .collage-item:nth-child(6) {
    bottom: 15%;
    right: 8%;
    width: 22%;
    height: 221px;
  }
  /* Aangepaste posities voor Regular Cuts op tablet */
  .category--regular .collage-item:nth-child(1) {
    top: 12%;
    left: 10%;
    width: 26%;
    height: 221px;
  }
  .category--regular .collage-item:nth-child(2) {
    top: 8%;
    left: 45%;
    width: 28%;
    height: 255px;
  }
  .category--regular .collage-item:nth-child(3) {
    top: 15%;
    right: 8%;
    width: 22%;
    height: 204px;
  }
  .category--regular .collage-item:nth-child(4) {
    top: 50%;
    left: 8%;
    width: 21%;
    height: 187px;
  }
  .category--regular .collage-item:nth-child(5) {
    top: 48%;
    left: 38%;
    width: 28%;
    height: 221px;
  }
  .category--regular .collage-item:nth-child(6) {
    top: 45%;
    right: 10%;
    width: 24%;
    height: 238px;
  }
  .category--regular .collage-item:nth-child(7) {
    bottom: 10%;
    left: 15%;
    width: 24%;
    height: 170px;
  }
  .category--regular .collage-item:nth-child(8) {
    bottom: 12%;
    right: 15%;
    width: 22%;
    height: 153px;
  }
  /* Color grid op tablet */
  .color-grid {
    min-height: 600px;
  }
  .color-card:nth-child(1) {
    top: 5%;
    left: 5%;
    width: 30%;
    z-index: 2;
  }
  .color-card:nth-child(2) {
    top: 8%;
    right: 8%;
    width: 32%;
    z-index: 3;
  }
  .color-card:nth-child(3) {
    top: 35%;
    left: 35%;
    width: 28%;
    z-index: 5;
  }
  .color-card:nth-child(4) {
    /* bottom: 12%; */
    left: 8%;
    width: 30%;
    z-index: 4;
  }
  .color-card:nth-child(5) {
    bottom: 8%;
    right: 10%;
    width: 32%;
    z-index: 1;
  }
  .contact-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .hero-bg-text {
    font-size: clamp(6rem, 18vw, 14rem);
  }
}
@media (max-width: 768px) {
  .nav-links {
    gap: var(--space-sm);
  }
  .nav-links a {
    font-size: 0.75rem;
  }
  .hero-content {
    padding-left: 6%;
  }
  .floating-title--award,
  .floating-title--portfolio {
    margin-left: var(--space-md);
    margin-right: var(--space-md);
  }
  .floating-title__bottom {
    font-size: clamp(2rem, 8vw, 3.5rem);
  }
  .highlight-block,
  .highlight-block--reverse {
    grid-template-columns: 1fr;
    direction: ltr;
    gap: var(--space-md);
  }
  .highlight-block--reverse > * {
    direction: ltr;
  }
  .highlight-side,
  .highlight-block--reverse .highlight-side {
    margin-left: 0;
    margin-right: 0;
    padding-top: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-sm);
  }
  .highlight-side-img,
  .highlight-side-img:first-child,
  .highlight-side-img:nth-child(2),
  .highlight-block--reverse .highlight-side-img:first-child,
  .highlight-block--reverse .highlight-side-img:nth-child(2) {
    width: 100%;
    margin: 0;
    height: auto;
    aspect-ratio: 4 / 3;
  }
  .highlight-side-img .placeholder {
    height: 100%;
    min-height: 0;
  }
  .highlight-info {
    grid-column: 1 / -1;
    width: 100%;
    margin-top: 0;
    margin-bottom: var(--space-xs);
    justify-self: center;
  }
  .highlight-main,
  .highlight-block--reverse .highlight-main {
    justify-self: center;
    width: min(100%, 460px);
    aspect-ratio: 4 / 3;
  }
  .category-header {
    flex-wrap: wrap;
    gap: var(--space-xs);
  }
  .category-title {
    font-size: clamp(1.6rem, 5vw, 2.4rem);
  }
  .category-sub {
    white-space: normal;
  }
  /* Moodboard op mobiel met betere zichtbaarheid */
  .collage-grid {
    min-height: 550px;
  }
  /* Aangepaste posities voor Curly Cuts op mobiel - minder overlap */
  .category--curly .collage-item:nth-child(1) {
    top: 5%;
    left: 3%;
    width: 37%;
    height: 187px;
    z-index: 3;
  }
  .category--curly .collage-item:nth-child(2) {
    top: -5%;
    right: 15%;
    width: 35%;
    height: 170px;
    z-index: 2;
  }
  .category--curly .collage-item:nth-child(3) {
    top: 45%;
    left: 5%;
    width: 34%;
    height: 162px;
    z-index: 1;
  }
  .category--curly .collage-item:nth-child(4) {
    top: 30%;
    left: 45%;
    width: 38%;
    height: 179px;
    z-index: 5;
  }
  .category--curly .collage-item:nth-child(5) {
    bottom: -5%;
    left: 20%;
    width: 35%;
    height: 162px;
    z-index: 5;
  }
  .category--curly .collage-item:nth-child(6) {
    bottom: 5%;
    right: 6%;
    width: 34%;
    height: 153px;
    z-index: 2;
  }
  /* Aangepaste posities voor Regular Cuts op mobiel - minder overlap */
  .category--regular .collage-item:nth-child(1) {
    top: 0%;
    left: 6%;
    width: 35%;
    height: 170px;
    z-index: 2;
  }
  .category--regular .collage-item:nth-child(2) {
    top: 3%;
    right: 5%;
    width: 37%;
    height: 187px;
    z-index: 3;
  }
  .category--regular .collage-item:nth-child(3) {
    top: 32%;
    left: 6%;
    width: 32%;
    height: 153px;
    z-index: 4;
  }
  .category--regular .collage-item:nth-child(4) {
    top: 38%;
    left: 50%;
    width: 38%;
    height: 170px;
    z-index: 1;
  }
  .category--regular .collage-item:nth-child(5) {
    top: 58%;
    left: 15%;
    width: 34%;
    height: 162px;
    z-index: 5;
  }
  .category--regular .collage-item:nth-child(6) {
    top: 70%;
    right: 6%;
    width: 35%;
    height: 170px;
    z-index: 2;
  }
  .category--regular .collage-item:nth-child(7) {
    top: 85%;
    left: 4%;
    width: 37%;
    height: 145px;
    z-index: 3;
  }
  .category--regular .collage-item:nth-child(8) {
    top: 100%;
    right: 20%;
    width: 34%;
    height: 136px;
    z-index: 4;
  }
  /* Color grid op mobiel - betere spreiding */
  .color-grid {
    min-height: 600px;
  }
  .color-card:nth-child(1) {
    top: 5%;
    left: 3%;
    width: 45%;
    z-index: 3;
  }
  .color-card:nth-child(2) {
    top: -2%;
    left: 50%;
    width: 48%;
    z-index: 2;
  }
  .color-card:nth-child(3) {
    top: 57%;
    left: 5%;
    width: 42%;
    z-index: 4;
  }
  .color-card:nth-child(4) {
    top: 52%;
    left: 50%;
    width: 46%;
    z-index: 1;
  }
  .color-card:nth-child(5) {
    top: 100%;
    left: 4%;
    width: 44%;
    z-index: 5;
  }
  .contact-grid {
    grid-template-columns: 1fr;
    max-width: 360px;
    margin: 0 auto var(--space-lg);
  }
  .section-divider {
    height: 50px;
  }
  .deco-circle--1,
  .deco-circle--2,
  .deco-circle--3,
  .deco-line--1,
  .deco-line--2 {
    display: none;
  }
}
