/* ░░░ BASIS KLEUREN ░░░ */
:root {
  --bg-main: #8E44AD;
  --bg-dark: #34283A;
  --surface: #F5F1EA;
  --surface-strong: #FFFFFF;
  --text-dark: #34283A;
  --text-light: #FFFFFF;
  --accent: #5A2A6C;
  --accent-hover: #8E44AD;
  --nav-pill: rgba(255, 255, 255, 0.12);
  --nav-pill-active: #F5F1EA;
  --shadow-soft: 0 12px 32px rgba(52, 40, 58, 0.16);
}

/* ░░░ RESET BODY EN HTML ░░░ */
html, body {
  margin: 0;
  padding: 0;
  height: 100%;
  overflow-x: hidden; /* Geen horizontale scroll */
  overflow-y: auto;   /* Wel normale verticale scroll */
}

body {
  font-family: Arial, sans-serif;
  background: var(--bg-main);
  color: var(--text-light);
}

/* Alleen het logo links krijgt Bebas Neue */
.logo {
  font-family: 'Bebas Neue', sans-serif;
  text-transform: uppercase;
  font-size: 1.8em;
  letter-spacing: 2px;
}


/* NAVIGATIEBALK */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(52, 40, 58, 0.92);
  padding: 1em 2em;
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(14px);
  box-shadow: 0 8px 24px rgba(52, 40, 58, 0.22);
}

.logo {
  font-size: 1.5em;
  color: white;
  font-weight: bold;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 1.5em;
}

.nav-links li a {
  text-decoration: none;
  color: white;
  background-color: var(--nav-pill);
  padding: 0.65em 1.1em;
  border-radius: 50px; /* Maakt het ovaal/rond */
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.2s ease, color 0.3s ease, box-shadow 0.3s ease;
}

.nav-links li a:hover {
  background-color: rgba(255, 255, 255, 0.22);
  transform: scale(1.05); /* Laat de knop iets 'groeien' bij hover */
}

.nav-links li a.active {
  background: var(--nav-pill-active);
  color: var(--text-dark);
  box-shadow: 0 8px 20px rgba(52, 40, 58, 0.18);
}


/* ░░░ HERO: layout zonder scroll en fullscreen ░░░ */
html, body {
  margin: 0;
  padding: 0;
  height: 100%;
}

.hero {
  position: relative;
  width: 100vw;
  min-height: 72vh;
  display: flex;
  align-items: center;
  justify-content: center;
}









/* 📹 Volledige video */
.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 0;
  pointer-events: none;
  border: none;
}

.bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  pointer-events: none;
  border: none;
}



/* 🔵 Overlay */
.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100%;
  background:
    linear-gradient(180deg, rgba(52, 40, 58, 0.28) 0%, rgba(52, 40, 58, 0.72) 45%, rgba(90, 42, 108, 0.86) 100%);
  z-index: 1;
}

/* ✨ Tekst gecentreerd */
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: white;
  max-width: 900px;
  padding: 2em;
}

.hero-content h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(4.2rem, 10vw, 7rem);
  margin-bottom: 0.2em;
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 0.92;
  text-shadow: 0 8px 22px rgba(0, 0, 0, 0.2);
}

.hero-kicker,
.hero-title {
  display: block;
}

.hero-kicker {
  font-size: 0.48em;
  letter-spacing: 0.22em;
  margin-bottom: 0.2em;
  opacity: 0.9;
}

.hero-title {
  font-size: 1em;
}

.hero-content p {
  font-size: 1.2em;
  margin-bottom: 1.5em;
  text-shadow: none;
}

.cta-button {
  background: linear-gradient(135deg, var(--accent) 0%, var(--bg-main) 100%);
  color: white;
  padding: 0.9em 1.6em;
  border-radius: 999px;
  text-decoration: none;
  font-weight: bold;
  margin-top: 1.2em;
  display: inline-block;
  border: none;
  box-shadow: 0 12px 28px rgba(52, 40, 58, 0.24);
  transition: transform 0.2s ease, box-shadow 0.3s ease, background-color 0.3s ease;
}

.cta-button:hover {
  background: linear-gradient(135deg, var(--accent-hover) 0%, var(--accent) 100%);
  transform: translateY(-2px);
  box-shadow: 0 16px 30px rgba(52, 40, 58, 0.28);
}

/* ░░░ UITGEBREIDE INTRODUCTIE STYLING ░░░ */
.intro-snippet {
  background: linear-gradient(135deg, rgba(245, 241, 234, 0.98) 0%, rgba(255, 255, 255, 0.92) 100%);
  max-width: 1140px;
  margin: 4.5em auto;
  padding: 3.4em;
  border-radius: 36px;
  box-shadow: 0 18px 44px rgba(52, 40, 58, 0.14);
}

.section-label {
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin: 0 0 0.4em;
  color: var(--accent);
  font-size: 1rem;
}

.section-label-light {
  color: rgba(255, 255, 255, 0.74);
}

.home-highlights,
.home-proof,
.home-process {
  max-width: 1080px;
  margin: 0 auto 3.2em;
  padding: 0 2em;
}

.home-highlights {
  margin-top: 4.2em;
}

.highlights-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.85fr;
  grid-template-rows: auto auto;
  gap: 1.1em;
}

.highlight-card {
  background: rgba(245, 241, 234, 0.92);
  color: var(--text-dark);
  border-radius: 28px;
  padding: 1.5em;
  box-shadow: 0 14px 28px rgba(52, 40, 58, 0.12);
  position: relative;
  overflow: hidden;
}

.highlight-card h3,
.proof-copy h2,
.process-intro h2,
.process-step h3 {
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 0.5px;
}

.highlight-card h3 {
  font-size: 1.75rem;
  margin: 0 0 0.35em;
}

.highlight-card p:last-child {
  margin: 0;
  line-height: 1.7;
}

.highlight-card-feature {
  grid-row: 1 / span 2;
  background: linear-gradient(145deg, #34283A 0%, #5A2A6C 55%, #8E44AD 100%);
  color: #FFFFFF;
  padding: 1.8em;
  min-height: 280px;
}

.highlight-card-feature::after {
  content: "";
  position: absolute;
  right: -40px;
  bottom: -40px;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: rgba(245, 241, 234, 0.1);
}

.highlight-card-feature::before {
  content: "FLEUR";
  position: absolute;
  top: 0.1em;
  right: 0.25em;
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.8rem, 6vw, 4.2rem);
  line-height: 1;
  color: rgba(255, 255, 255, 0.08);
  pointer-events: none;
}

.highlight-card-feature h3 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  line-height: 0.98;
  max-width: 10ch;
}

.highlight-card-feature p:last-of-type {
  max-width: 34ch;
  color: rgba(255, 255, 255, 0.82);
}

.highlight-metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55em;
  margin-top: 1.2em;
}

.highlight-metrics span {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #FFFFFF;
  border-radius: 999px;
  padding: 0.55em 0.8em;
  font-weight: bold;
  font-size: 0.85rem;
}

.highlight-card-accent {
  background: linear-gradient(160deg, #F5F1EA 0%, #ffffff 100%);
  border: 2px solid rgba(90, 42, 108, 0.12);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.7),
    0 18px 36px rgba(52, 40, 58, 0.12);
}

.highlight-card-dark {
  background: #34283A;
  color: #FFFFFF;
  border: 1px solid rgba(245, 241, 234, 0.1);
}

.highlight-card-dark p:last-child {
  color: rgba(255, 255, 255, 0.82);
}

.home-proof {
  margin-top: 1em;
}

.proof-wrapper {
  background:
    radial-gradient(circle at top right, rgba(245, 241, 234, 0.12) 0%, transparent 28%),
    linear-gradient(135deg, rgba(52, 40, 58, 0.94) 0%, rgba(90, 42, 108, 0.92) 100%);
  border-radius: 30px;
  padding: 2em;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 1.4em;
  align-items: center;
  box-shadow: 0 16px 32px rgba(52, 40, 58, 0.16);
  position: relative;
  overflow: hidden;
}

.proof-wrapper::after {
  content: "";
  position: absolute;
  inset: auto auto -40px -40px;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: rgba(245, 241, 234, 0.07);
}

.proof-copy h2 {
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  margin: 0 0 0.25em;
  color: #FFFFFF;
}

.proof-super,
.process-super,
.intro-super {
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin: 0 0 0.3em;
  font-size: 0.82rem;
}

.proof-super {
  color: rgba(255, 255, 255, 0.62);
}

.proof-copy p:last-child {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
}

.proof-note {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8em;
  margin-top: 1em;
}

.proof-note span {
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  padding-bottom: 0.3em;
  color: rgba(255, 255, 255, 0.78);
  font-weight: bold;
}

.proof-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75em;
  align-content: center;
  position: relative;
  z-index: 1;
}

.proof-pill {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #FFFFFF;
  padding: 0.8em 0.9em;
  border-radius: 20px;
  font-weight: bold;
  backdrop-filter: blur(6px);
  min-height: 56px;
  display: flex;
  align-items: center;
  transition: transform 0.2s ease, background-color 0.2s ease;
  font-size: 0.88rem;
}

.proof-pill:hover {
  transform: translateY(-2px);
}

.proof-pill-feature {
  background: #F5F1EA;
  color: #34283A;
  box-shadow: 0 12px 24px rgba(52, 40, 58, 0.12);
}

.proof-pill-wide {
  grid-column: span 2;
}

.proof-pill-dark {
  background: rgba(52, 40, 58, 0.95);
  border-color: rgba(245, 241, 234, 0.22);
}

.process-wrapper {
  background: linear-gradient(180deg, #F5F1EA 0%, #fffaf4 100%);
  color: var(--text-dark);
  border-radius: 30px;
  padding: 2em;
  box-shadow: 0 16px 30px rgba(52, 40, 58, 0.12);
  position: relative;
  overflow: hidden;
}

.process-wrapper::before {
  content: "";
  position: absolute;
  top: -40px;
  right: -30px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: rgba(90, 42, 108, 0.08);
}

.process-intro h2 {
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  margin: 0 0 0.5em;
}

.process-super {
  color: rgba(52, 40, 58, 0.56);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.9em;
  align-items: start;
  position: relative;
  z-index: 1;
}

.process-step {
  background: #FFFFFF;
  border-radius: 22px;
  padding: 1.1em;
  border: 1px solid rgba(90, 42, 108, 0.08);
  box-shadow: 0 18px 30px rgba(52, 40, 58, 0.08);
  min-height: 165px;
  position: relative;
  overflow: hidden;
}

.step-number {
  display: inline-block;
  font-family: 'Bebas Neue', sans-serif;
  color: rgba(90, 42, 108, 0.2);
  font-size: 1.7rem;
  line-height: 1;
  margin-bottom: 0.2em;
}

.process-step h3 {
  font-size: 1.2rem;
  margin: 0 0 0.25em;
}

.process-step p {
  margin: 0;
  line-height: 1.7;
}

.process-step-tilt-left {
  border-top: 6px solid #8E44AD;
}

.process-step-tilt-right {
  border-top: 6px solid #5A2A6C;
}

.process-step-feature {
  background: linear-gradient(165deg, #34283A 0%, #5A2A6C 100%);
  color: #FFFFFF;
  border: none;
  box-shadow: 0 24px 40px rgba(52, 40, 58, 0.22);
}

.process-step-feature .step-number,
.process-step-feature h3,
.process-step-feature p {
  color: #FFFFFF;
}

.process-step-soft {
  background: rgba(255, 255, 255, 0.88);
  border-top: 6px solid rgba(90, 42, 108, 0.45);
}

.intro-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 3em;
}

.intro-text {
  flex: 1;
  min-width: 290px;
}

.intro-super {
  color: rgba(52, 40, 58, 0.55);
}

.intro-text h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.4rem, 4.8vw, 3.6rem);
  margin-bottom: 0.35em;
  color: var(--text-dark);
  line-height: 0.96;
}

.intro-text p {
  font-size: 1.08rem;
  line-height: 1.8;
  color: #333;
}

.intro-points {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8em;
  margin-top: 1.4em;
}

.intro-points span {
  background: rgba(90, 42, 108, 0.08);
  color: var(--text-dark);
  padding: 0.75em 1em;
  border-radius: 999px;
  font-weight: bold;
  font-size: 0.95rem;
}

.intro-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.2em;
  margin-top: 1.7em;
}

.text-link {
  color: var(--accent);
  text-decoration: none;
  font-weight: bold;
}

.text-link:hover {
  text-decoration: underline;
}

.intro-image {
  flex: 1;
  display: flex;
  justify-content: center;
  min-width: 280px;
}

.intro-image-frame {
  position: relative;
  width: min(100%, 430px);
  padding: 1.1em;
  border-radius: 32px;
  background: linear-gradient(180deg, rgba(142, 68, 173, 0.2) 0%, rgba(90, 42, 108, 0.1) 100%);
}

.intro-image img {
  width: 100%;
  aspect-ratio: 4 / 5;
  height: auto;
  object-fit: cover;
  border-radius: 26px;
  border: 6px solid rgba(255, 255, 255, 0.7);
  box-shadow: 0 18px 40px rgba(52, 40, 58, 0.18);
}

.intro-floating-card {
  position: absolute;
  left: -1.2em;
  bottom: 1.6em;
  max-width: 240px;
  background: rgba(52, 40, 58, 0.94);
  color: #FFFFFF;
  border-radius: 22px;
  padding: 1em 1.1em;
  box-shadow: 0 16px 32px rgba(52, 40, 58, 0.24);
}

.floating-label {
  margin: 0 0 0.35em;
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.72);
}

.floating-title {
  margin: 0;
  line-height: 1.5;
}


.cta-button {
  display: inline-block;
  background: linear-gradient(135deg, var(--accent) 0%, var(--bg-main) 100%);
  color: white;
  padding: 0.9em 1.6em;
  border-radius: 999px;
  text-decoration: none;
  font-weight: bold;
  font-family: Arial, sans-serif;
  transition: transform 0.2s ease, box-shadow 0.3s ease, background-color 0.3s ease;
}

.cta-button:hover {
  background: linear-gradient(135deg, var(--accent-hover) 0%, var(--accent) 100%);
}

.about-section {
  background-color: #8E44AD;
  min-height: 100vh;
  padding: 6em 2em;
  color: white;
}

.about-shell {
  max-width: 1120px;
  margin: 0 auto;
}

.about-board {
  display: flex;
  flex-direction: column;
  gap: 1.2em;
}

.about-hero-layout {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 1.2em;
  align-items: stretch;
}

.about-card {
  border-radius: 30px;
  padding: 1.6em;
  box-shadow: 0 16px 30px rgba(52, 40, 58, 0.14);
}

.about-card-main {
  background: linear-gradient(145deg, #34283A 0%, #5A2A6C 100%);
  color: #FFFFFF;
}

.about-card-main h1 {
  margin: 0 0 0.3em;
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.2rem, 4.2vw, 3.8rem);
  line-height: 0.94;
  letter-spacing: 0.5px;
  max-width: 11.5ch;
}

.about-lead {
  font-size: 1.04rem;
  line-height: 1.8;
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  max-width: 40ch;
}

.about-visual-stack {
  display: grid;
  grid-template-rows: 1fr auto;
  gap: 1em;
}

.about-photo-stack {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 140px;
  gap: 1em;
  align-items: end;
}

.about-photo-card {
  background: rgba(245, 241, 234, 0.1);
  padding: 0.9em;
  border-radius: 30px;
  box-shadow: 0 16px 30px rgba(52, 40, 58, 0.16);
}

.about-photo-card-secondary {
  padding: 0.6em;
  align-self: end;
}

.about-foto {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 24px;
  display: block;
  border: 5px solid rgba(245, 241, 234, 0.72);
}

.about-foto-secondary {
  aspect-ratio: 3 / 4;
  border-width: 4px;
}

.about-card-quote {
  background: #F5F1EA;
  color: #34283A;
}

.about-card-quote p {
  margin: 0;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.6rem;
  line-height: 1;
}

.about-content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2em;
}

.about-card-light {
  background: #F5F1EA;
  color: var(--text-dark);
}

.about-card-dark {
  background: linear-gradient(145deg, #34283A 0%, #5A2A6C 100%);
  color: #FFFFFF;
}

.about-card-wide {
  grid-column: 1 / -1;
  background: linear-gradient(180deg, #F5F1EA 0%, #fffaf4 100%);
  color: var(--text-dark);
}

.about-card-wide p:last-of-type,
.about-card-light p:last-of-type,
.about-card-dark p:last-of-type {
  margin: 0;
  line-height: 1.8;
}

.about-card-dark p:last-of-type {
  color: rgba(255, 255, 255, 0.84);
}

.about-strip {
  margin-top: 1.2em;
  display: flex;
  flex-wrap: wrap;
  gap: 0.7em;
}

.about-strip span {
  background: rgba(90, 42, 108, 0.08);
  border: 1px solid rgba(90, 42, 108, 0.12);
  color: var(--text-dark);
  padding: 0.7em 0.95em;
  border-radius: 999px;
  font-weight: bold;
  font-size: 0.88rem;
}

.work-section {
  background-color: #8E44AD;
  min-height: 100vh;
  padding: 3em 2em;
  color: white;
}

.work-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.work-wrapper h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  color: white;
  margin: 0;
}

.work-wrapper p {
  font-size: 1.05rem;
  margin-bottom: 1em;
}

.work-page-intro {
  margin-bottom: 3.2em;
}

.work-page-intro p:last-child {
  max-width: 46ch;
  line-height: 1.8;
  margin: 0.7em auto 0;
}

.work-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.4em;
  margin-bottom: 0;
}

.work-card {
  background: #F5F1EA;
  color: #333;
  border-radius: 22px;
  padding: 1.1em;
  width: 290px;
  text-align: center;
  box-shadow: 0 10px 20px rgba(52,40,58,0.08);
  transition: transform 0.2s ease;
}


.work-card img {
  width: 100%;
  border-radius: 12px;
  margin-bottom: 1em;
}

.work-card h3 {
  font-size: 1.2em;
  margin-bottom: 1em;
}

.contact-section {
  position: relative;
  padding: 5.5em 2em 6.5em;
  overflow: hidden;
}

.contact-section::before,
.contact-section::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
}

.contact-section::before {
  width: 360px;
  height: 360px;
  top: 80px;
  left: -120px;
  background: rgba(245, 241, 234, 0.12);
  animation: contactFloatOne 16s ease-in-out infinite;
}

.contact-section::after {
  width: 280px;
  height: 280px;
  right: -60px;
  bottom: 70px;
  background: rgba(52, 40, 58, 0.22);
  animation: contactFloatTwo 20s ease-in-out infinite;
}

.contact-wrapper {
  position: relative;
  z-index: 1;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0;
  color: var(--text-dark);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.95fr) minmax(0, 1.1fr);
  gap: 1.6em;
  align-items: start;
}

.contact-side {
  display: grid;
  gap: 1.4em;
}

.contact-card {
  border-radius: 28px;
  padding: 2.1em;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(90, 42, 108, 0.12);
}

.contact-card-main {
  background: linear-gradient(145deg, rgba(52, 40, 58, 0.96), rgba(90, 42, 108, 0.92));
  color: var(--text-light);
}

.contact-card-main h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3.2rem, 7vw, 5.6rem);
  line-height: 0.95;
  letter-spacing: 1px;
  margin: 0.18em 0 0.2em;
}

.contact-intro {
  max-width: 28ch;
  margin: 0 0 1.8em;
  font-size: 1.05rem;
}

.contact-tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7em;
}

.contact-tag-row span {
  display: inline-flex;
  align-items: center;
  padding: 0.68em 1.1em;
  border-radius: 999px;
  background: rgba(245, 241, 234, 0.12);
  border: 1px solid rgba(245, 241, 234, 0.2);
  font-size: 0.9rem;
  letter-spacing: 0.04em;
}

.contact-side-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2em;
}

.contact-card-dark {
  background: rgba(52, 40, 58, 0.92);
  color: var(--text-light);
}

.contact-card-soft {
  background: rgba(245, 241, 234, 0.9);
  color: var(--text-dark);
}

.contact-photo-card {
  padding: 0.85em;
  overflow: hidden;
}

.contact-photo-card img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  border-radius: 20px;
  margin-bottom: 0.9em;
}

.contact-photo-note {
  margin: 0;
  padding: 0 0.2em 0.1em;
  line-height: 1.6;
}

.contact-mini-label {
  margin: 0 0 1em;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.2rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-links {
  display: grid;
  gap: 0.85em;
}

.contact-links a {
  color: inherit;
  text-decoration: none;
  font-weight: bold;
}

.contact-links a:hover {
  opacity: 0.72;
}

.contact-note {
  margin: 0;
  line-height: 1.7;
}

.contact-form-card {
  background: rgba(245, 241, 234, 0.98);
}

@keyframes contactFloatOne {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(44px, -30px, 0) scale(1.07);
  }
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
}

@keyframes contactFloatTwo {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(-40px, 30px, 0) scale(0.94);
  }
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
}

.contact-button {
  margin-top: 1.4em;
}

.contact-button:hover {
  background: linear-gradient(135deg, var(--accent-hover) 0%, var(--accent) 100%);
}
.work-section {
  background-color: #8E44AD;
  padding: 6em 2em;
  color: white;
  text-align: center;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.35em;
  text-align: left;
}

.contact-field-group {
  display: grid;
  gap: 0.7em;
}

.contact-form label {
  font-weight: bold;
  font-size: 0.98em;
  color: var(--text-dark);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.95em 1.1em;
  border-radius: 18px;
  border: 1px solid rgba(90, 42, 108, 0.18);
  font-size: 1em;
  background: rgba(255, 255, 255, 0.86);
  color: var(--text-dark);
  box-sizing: border-box;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--accent);
  outline: none;
  box-shadow: 0 0 8px rgba(90, 42, 108, 0.25);
}

.contact-form button {
  align-self: flex-start;
  margin-top: 0.4em;
}

.contact-form button:hover {
  background-color: var(--bg-dark);
}

.service-options {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85em;
}

.checkbox-wrapper {
  display: flex;
  align-items: center;
  gap: 0.72em;
  padding: 0.82em 1em;
  border-radius: 16px;
  border: 1px solid rgba(90, 42, 108, 0.16);
  background: rgba(255, 255, 255, 0.72);
  cursor: pointer;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.checkbox-wrapper:hover {
  transform: translateY(-2px);
  border-color: rgba(90, 42, 108, 0.3);
  box-shadow: 0 8px 18px rgba(52, 40, 58, 0.08);
}

.checkbox-wrapper input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--accent);
  cursor: pointer;
  margin: 0;
  flex-shrink: 0;
}

.checkbox-wrapper span {
  font-size: 0.95em;
  color: var(--text-dark);
  cursor: pointer;
}

.work-wrapper {
  max-width: 1200px;
  margin: 0 auto;
}

.work-category {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  margin: 0.1em 0 0;
  color: #FFFFFF;
}

.work-block {
  margin-bottom: 4.4em;
}

.work-block:last-of-type {
  margin-bottom: 0;
}

.work-block-head {
  margin-bottom: 1.3em;
}

.work-block-action {
  display: flex;
  justify-content: center;
  margin-top: 1.5em;
}

.work-block-action .cta-button {
  background: rgba(52, 40, 58, 0.9);
  color: var(--text-light);
  padding: 0.9em 1.55em;
  border: 1px solid rgba(245, 241, 234, 0.16);
  box-shadow: 0 14px 30px rgba(24, 16, 28, 0.24);
  position: relative;
}

.work-block-action .cta-button::after {
  content: "→";
  display: inline-block;
  margin-left: 0.5em;
  transition: transform 0.2s ease;
}

.work-block-action .cta-button:hover {
  background: rgba(90, 42, 108, 0.98);
  color: var(--text-light);
  border-color: rgba(245, 241, 234, 0.24);
}

.work-block-action .cta-button:hover::after {
  transform: translateX(3px);
}

.work-detail-intro {
  max-width: 760px;
}

.work-back-button {
  margin-top: 1.5em;
}


.work-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.2em;
  margin-bottom: 0;
}

.work-card {
  background: #F5F1EA;
  color: #333;
  border-radius: 22px;
  padding: 1.1em;
  width: 290px;
  text-align: center;
  box-shadow: 0 10px 20px rgba(52,40,58,0.08);
  transition: transform 0.2s ease;
}

.work-card:hover {
  transform: translateY(-5px);
}

.work-card h3 {
  margin-bottom: 0.5em;
  font-size: 1.2em;
}

.work-card p {
  margin-bottom: 1em;
  font-size: 0.95em;
}

.work-grid-wide .work-card {
  width: min(100%, 340px);
}

.cta-button {
  background-color: var(--accent);
  color: white;
  padding: 0.6em 1.2em;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  font-family: Arial, sans-serif;
  transition: background-color 0.3s ease;
}

.cta-button:hover {
  background-color: var(--bg-dark);
}

.short-wrapper {
  position: relative;
  width: 100%;
  padding-top: 177.77%; /* 9:16 verhouding → VERTICAAL */
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 0;
}


.short-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.video-wrapper {
  position: relative;
  width: 100%;
  padding-top: 56.25%; /* 16:9 verhouding */
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 0;
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* ░░░ KLANTEN (CLIENTS) ░░░ */
.clients-section {
  background-color: var(--bg-main);
  padding: 6em 2em;
  color: white;
  text-align: center;
}

.clients-wrapper {
  max-width: 1200px;
  margin: 0 auto;
}

.clients-wrapper h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2em;
  color: white;
  margin: 0 0 0.3em;
  letter-spacing: 1px;
}

.clients-wrapper p {
  font-size: 1.1em;
  opacity: 0.95;
  margin-bottom: 2em;
}

/* Grid met kaarten */
.clients-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5em;
  align-items: stretch;
}

/* Kaarten (voor nu met klantnamen; straks ook geschikt voor logo's) */
.client-card {
  background: white;
  color: var(--text-dark);
  border-radius: 24px;
  width: 100%;
  max-width: 280px;  /* iets groter gemaakt */
  aspect-ratio: 1 / 1; /* perfect vierkant */
  padding: 1.8em;      /* wat ruimere binnenkant */
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 15px rgba(0,0,0,0.1);
  transition: transform 0.15s ease, box-shadow 0.2s ease;
}

.client-card:hover,
.client-card:focus {
  transform: translateY(-4px);
  box-shadow: 0 12px 22px rgba(0,0,0,0.12);
  outline: none;
}

/* Alvast klaar voor logo's (later): */
.client-card img {
  max-width: 80%;
  max-height: 60px;
  object-fit: contain;
  display: block;
}

/* Responsive breekpunten */
@media (max-width: 1100px) {
  .clients-grid { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 900px) {
  .clients-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 650px) {
  .clients-grid { grid-template-columns: repeat(2, 1fr); }
  .client-card { min-height: 96px; padding: 1.2em; }
}
@media (max-width: 420px) {
  .clients-grid { grid-template-columns: 1fr; }
}

/* ░░░ KLANTEN: 3 BREDE KAARTEN MET RUIMTE ░░░ */
.clients-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* ⬅️ 4 naast elkaar */
  gap: 30px;
}


.client-card {
  background: white;
  color: var(--text-dark);
  border-radius: 24px;
  width: 240px;        /* ✔ kleiner formaat */
  height: 240px;       /* ✔ vierkant */
  padding: 1.8em;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 15px rgba(0,0,0,0.1);
  transition: transform 0.15s ease, box-shadow 0.2s ease;
}

.client-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 22px rgba(0,0,0,0.12);
}

.client-card img {
  max-width: 85%;
  max-height: 85%;
  object-fit: contain;
  display: block;
}

/* Responsive: mooi op tablet en mobiel */
@media (max-width: 900px) {
  .client-card {
    width: 200px;
    height: 200px;
  }
}

@media (max-width: 600px) {
  .client-card {
    width: 100%;
    max-width: 280px;
    height: auto;
    aspect-ratio: 1 / 1;
  }
}

/* ░░░ KLANTEN BLOK ░░░ */
.clients-section {
  background-color: var(--bg-main);
  padding: 6em 2em;
  color: white;
  text-align: center;
}

.clients-wrapper {
  max-width: 1200px;
  margin: 0 auto;
}

.clients-wrapper h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3em;
  color: white;
  margin-bottom: 0.3em;
}

.clients-wrapper p {
  font-size: 1.1em;
  opacity: 0.95;
  margin-bottom: 2em;
}

/* GRID */
.clients-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2em;
}

/* WITTE VIERKANTEN */
.client-card {
  background: var(--surface);
  color: var(--text-dark);
  border-radius: 24px; /* ronde hoeken */
  width: 240px;
  height: 240px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 15px rgba(0,0,0,0.1);
  transition: transform 0.15s ease, box-shadow 0.2s ease;
}

.client-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 22px rgba(0,0,0,0.12);
}

/* LOGO'S BINNENIN */
.client-card img {
  width: 85%;
  height: auto;
  object-fit: contain;
  border-radius: 12px; /* afgeronde hoeken voor het logo zelf */
  display: block;
  transition: transform 0.2s ease;
}

.client-card:hover img {
  transform: scale(1.05); /* subtiel pop-effect */
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .client-card {
    width: 200px;
    height: 200px;
  }
}

@media (max-width: 600px) {
  .client-card {
    width: 100%;
    max-width: 280px;
    aspect-ratio: 1 / 1;
  }
}

.client-card img {
  width: 100%;          /* logo mag de volle breedte van het vierkant gebruiken */
  height: 100%;         /* vult ook de hoogte */
  object-fit: contain;  /* houdt de verhoudingen van het logo */
  border-radius: 16px;  /* zachte hoekjes */
  display: block;
  transform: scale(1.1); /* maakt het logo direct iets groter binnen het vlak */
  transition: transform 0.2s ease;
}

.client-card:hover img {
  transform: scale(1.18); /* bij hover ietsje groter */
}

/* ░░░ KAART MET LOGO + NAAM (strak & gecentreerd) ░░░ */
.client-card {
  background: var(--surface);
  color: var(--text-dark);
  border-radius: 24px;
  width: 240px;
  height: 300px;               /* iets langer dan vierkant */
  padding: 14px 14px 16px;
  box-shadow: 0 8px 15px rgba(0,0,0,0.1);
  transition: transform 0.15s ease, box-shadow 0.2s ease;

  /* Lay-out: logo boven (flex-ruimte), naam onder (auto) */
  display: grid;
  grid-template-rows: 1fr auto;
  align-items: center;
  justify-items: center;
  row-gap: 12px;
}

.client-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 22px rgba(0,0,0,0.12);
}

/* Vast ‘logo-gebied’ zodat alle kaarten gelijk ogen */
.client-card .logo-area {
  width: 100%;
  height: 70%;                 /* ruimte voor het logo */
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Logo zelf: afgeronde hoeken, groter, niet vervormen */
.client-card img {
  max-width: 85%;
  max-height: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 14px;         /* ✅ afgeronde hoeken logo */
  display: block;
  transition: transform 0.2s ease;
}

.client-card:hover img {
  transform: scale(1.05);
}

/* Klantnaam: duidelijk, gecentreerd, consistent */
.client-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.5em;            /* ✅ groter en leesbaar */
  line-height: 1;
  text-align: center;
  letter-spacing: 0.5px;
  color: var(--text-dark);
  margin: 0;                   /* geen rare extra ruimte */
}

/* Responsiveness */
@media (max-width: 900px) {
  .client-card { width: 210px; height: 270px; }
  .client-name { font-size: 1.4em; }
}
@media (max-width: 600px) {
  .client-card { width: 100%; max-width: 280px; height: 320px; }
  .client-name { font-size: 1.6em; }
}

.project-section {
  position: relative;
  padding: 100px 20px;
  background: linear-gradient(180deg, #8E44AD 0%, #5A2A6C 100%);
  overflow: hidden;
}

.project-section::before,
.project-section::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
}

.project-section::before {
  width: 340px;
  height: 340px;
  top: 70px;
  left: -110px;
  background: rgba(245, 241, 234, 0.12);
}

.project-section::after {
  width: 240px;
  height: 240px;
  right: -60px;
  bottom: 80px;
  background: rgba(52, 40, 58, 0.18);
}

.project-wrapper {
  position: relative;
  z-index: 1;
  max-width: 980px;
  margin: 0 auto;
  background: var(--surface);
  border-radius: 30px;
  padding: 3em;
  box-shadow: var(--shadow-soft);
}

.project-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(240px, 0.85fr);
  gap: 2em;
  align-items: center;
  margin-bottom: 2em;
}

.project-copy {
  text-align: left;
}

.project-section h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3rem, 6vw, 4.7rem);
  line-height: 0.95;
  margin: 0.12em 0 0.22em;
  color: var(--text-dark);
}

.project-visual-card {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 260px;
  padding: 1.8em;
  border-radius: 26px;
  background: linear-gradient(145deg, rgba(90, 42, 108, 0.12), rgba(255, 255, 255, 0.9));
  border: 1px solid rgba(90, 42, 108, 0.12);
}

.project-logo {
  max-width: 100%;
  max-height: 170px;
  margin: 0;
}

.project-section p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--text-dark);
}

.project-copy p {
  margin: 0 0 1.25em;
}

.project-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75em;
}

.project-tags span {
  display: inline-flex;
  align-items: center;
  padding: 0.7em 1.05em;
  border-radius: 999px;
  background: rgba(90, 42, 108, 0.08);
  border: 1px solid rgba(90, 42, 108, 0.14);
  color: var(--text-dark);
  font-size: 0.92rem;
}

.project-meta-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2em;
  margin-bottom: 2em;
}

.project-meta-card {
  padding: 1.4em 1.5em;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(90, 42, 108, 0.1);
}

.project-meta-card p {
  margin: 0;
}

.project-meta-label {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.55em !important;
}

.project-meta-card-photo {
  padding: 0.6em;
  overflow: hidden;
}

.project-meta-card-photo img {
  width: 100%;
  height: 100%;
  min-height: 180px;
  object-fit: cover;
  border-radius: 18px;
  display: block;
}

.back-button {
  display: inline-block;
  padding: 12px 24px;
  background: var(--accent);
  color: white;
  text-decoration: none;
  border-radius: 30px;
  transition: 0.2s ease;
}

.back-button:hover {
  background: var(--bg-dark);
}

/* ░░░ POLISH OVERRIDES ░░░ */
.intro-snippet,
.about-wrapper,
.contact-wrapper {
  box-shadow: var(--shadow-soft);
}

.intro-snippet {
  margin: 5em auto;
  padding: 3.5em;
}

.intro-text p,
.about-wrapper p,
.contact-wrapper p,
.clients-wrapper p,
.work-wrapper p {
  line-height: 1.7;
}

.clients-wrapper h1,
.work-wrapper h1,
.about-wrapper h1,
.contact-wrapper h1,
.project-section h1 {
  letter-spacing: 1px;
}

.work-card,
.client-card {
  box-shadow: var(--shadow-soft);
}

.work-card {
  border: 1px solid rgba(36, 50, 77, 0.06);
}

.client-card {
  background: var(--surface);
}

@media (max-width: 800px) {
  .project-intro,
  .project-meta-grid {
    grid-template-columns: 1fr;
  }

  .project-copy {
    text-align: center;
  }

  .project-tags {
    justify-content: center;
  }

  .project-visual-card {
    min-height: 220px;
  }

  .navbar {
    flex-direction: column;
    gap: 1em;
    padding: 1em 1.2em;
  }

  .nav-links {
    flex-wrap: wrap;
    justify-content: center;
    padding: 0;
    margin: 0;
  }

  .hero {
    min-height: 64vh;
  }

  .hero-content {
    padding: 1.5em 1em;
  }

  .intro-snippet,
  .about-wrapper,
  .project-wrapper {
    padding: 2.2em 1.5em;
  }

  .contact-section {
    padding: 4.5em 1.2em 5.5em;
  }

  .contact-layout,
  .contact-side-grid {
    grid-template-columns: 1fr;
  }

  .project-meta-grid,
  .about-photo-stack {
    grid-template-columns: 1fr;
  }

  .contact-card {
    padding: 1.6em;
  }

  .contact-card-main h1 {
    font-size: clamp(2.8rem, 16vw, 4.2rem);
  }

  .home-highlights,
  .home-proof,
  .home-process {
    padding: 0 1.2em;
  }

  .home-highlights {
    margin-top: 4em;
  }

  .highlights-grid,
  .process-grid,
  .proof-wrapper {
    grid-template-columns: 1fr;
  }

  .highlight-card-accent,
  .highlight-card-dark,
  .proof-pill-feature,
  .proof-pill-dark,
  .process-step-tilt-left,
  .process-step-tilt-right,
  .process-step-feature {
    transform: none;
  }

  .proof-list {
    grid-template-columns: 1fr;
  }

  .proof-pill-wide {
    grid-column: auto;
  }

  .highlight-card-feature {
    min-height: auto;
  }

  .highlight-card-feature::before,
  .proof-wrapper::after,
  .process-wrapper::before {
    display: none;
  }

  .step-number {
    font-size: 3rem;
  }

  .intro-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .intro-image-frame {
    width: 100%;
  }

  .intro-floating-card {
    position: static;
    margin-top: 1em;
    max-width: none;
  }

  .about-hero-layout,
  .about-content-grid {
    grid-template-columns: 1fr;
  }

  .about-card-wide {
    grid-column: auto;
  }
}

/* ░░░ FOOTER ░░░ */
.site-footer {
  background: linear-gradient(180deg, #34283A 0%, #5A2A6C 100%);
  color: var(--text-light);
  padding: 3.5em 2em 1.5em;
  margin-top: 0;
}

.footer-top {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 2.5em;
  align-items: start;
}

.footer-brand h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.2rem;
  margin: 0.15em 0 0.35em;
  letter-spacing: 0.5px;
}

.footer-eyebrow,
.footer-heading {
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin: 0 0 0.5em;
  color: #F5F1EA;
  opacity: 0.92;
}

.footer-text {
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.7;
  margin: 0;
}

.footer-socials {
  display: flex;
  gap: 0.85em;
  margin-top: 1.4em;
}

.social-link {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  color: #FFFFFF;
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.social-link:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.18);
}

.social-link svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.footer-links-group {
  display: flex;
  flex-direction: column;
  gap: 0.45em;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.7em;
}

.footer-links a,
.footer-links span {
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
  font-size: 0.98rem;
}

.footer-links a:hover {
  color: #FFFFFF;
}

.footer-cta {
  background: rgba(245, 241, 234, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  padding: 1.35em;
}

.footer-button {
  margin-top: 1.2em;
}

.footer-bottom {
  max-width: 1200px;
  margin: 2.4em auto 0;
  padding-top: 1.2em;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  justify-content: space-between;
  gap: 1em;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.92rem;
}

@media (max-width: 950px) {
  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .site-footer {
    padding: 3em 1.2em 1.4em;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 2em;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

@media (max-width: 800px) {
  .work-grid,
  .work-grid-wide {
    justify-content: center;
  }
}

/* ░░░ CLIENTS POLISH ░░░ */
.clients-page-intro {
  max-width: 620px;
  margin: 0 auto 2.4em;
}

.clients-page-intro p:last-child {
  margin: 0.5em auto 0;
  line-height: 1.75;
}

.clients-mini-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.7em;
  margin-top: 1.1em;
}

.clients-mini-strip span {
  background: rgba(245, 241, 234, 0.12);
  border: 1px solid rgba(245, 241, 234, 0.18);
  color: #FFFFFF;
  padding: 0.5em 0.8em;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: bold;
}

.clients-section {
  position: relative;
  overflow: hidden;
}

.clients-section::before {
  content: "";
  position: absolute;
  top: -80px;
  right: -80px;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: rgba(245, 241, 234, 0.08);
}

.clients-section::after {
  content: "";
  position: absolute;
  left: -70px;
  bottom: -70px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: rgba(52, 40, 58, 0.12);
}

.clients-wrapper {
  position: relative;
  z-index: 1;
}

.clients-grid {
  justify-content: center;
  gap: 1.6em;
}

.client-card {
  background: linear-gradient(180deg, #F5F1EA 0%, #fffaf4 100%);
  border: 1px solid rgba(90, 42, 108, 0.08);
  box-shadow: 0 16px 28px rgba(52, 40, 58, 0.12);
  position: relative;
}

.client-card:hover {
  transform: translateY(-4px) scale(1.01);
}

.client-card::after {
  content: "View project";
  position: absolute;
  bottom: 12px;
  right: 14px;
  font-size: 0.72rem;
  font-weight: bold;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  color: rgba(52, 40, 58, 0.45);
}

.client-card img {
  max-width: 82%;
}

.client-name {
  margin-top: 0.15em;
  font-size: 1.35rem;
  letter-spacing: 0.4px;
}

/* ░░░ FINAL POLISH ░░░ */
html {
  scroll-behavior: smooth;
}

.cta-button {
  letter-spacing: 0.02em;
  box-shadow: 0 12px 28px rgba(52, 40, 58, 0.2);
}

.cta-button:hover {
  transform: translateY(-2px);
}

.cta-button:active {
  transform: translateY(0);
}

.section-label {
  letter-spacing: 1.8px;
  opacity: 0.95;
}

.text-link {
  text-underline-offset: 0.22em;
  transition: color 0.2s ease, opacity 0.2s ease, text-decoration-color 0.2s ease;
}

.text-link:hover {
  color: var(--bg-dark);
}

.highlight-card,
.proof-wrapper,
.process-wrapper,
.about-card,
.contact-card,
.project-wrapper,
.project-meta-card,
.client-card,
.work-card,
.footer-cta {
  border-color: rgba(90, 42, 108, 0.12);
}

.highlight-card,
.process-step,
.about-card,
.contact-card,
.project-meta-card,
.work-card,
.client-card {
  transition: transform 0.2s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.highlight-card:hover,
.process-step:hover,
.about-card:hover,
.project-meta-card:hover,
.work-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 34px rgba(52, 40, 58, 0.12);
  border-color: rgba(90, 42, 108, 0.18);
}

.work-page-intro,
.clients-page-intro,
.contact-simple-intro,
.process-intro {
  text-wrap: balance;
}

.work-page-intro,
.clients-page-intro {
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.about-lead,
.contact-intro,
.project-copy p,
.project-meta-card p,
.footer-text {
  line-height: 1.75;
}

.proof-pill,
.highlight-metrics span,
.intro-points span,
.about-strip span,
.project-tags span,
.clients-mini-strip span,
.contact-tag-row span,
.checkbox-wrapper {
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.18);
}

.footer-links a,
.footer-links span {
  transition: color 0.2s ease, transform 0.2s ease, opacity 0.2s ease;
}

.footer-links a:hover {
  transform: translateX(2px);
}

.footer-cta {
  box-shadow: 0 12px 28px rgba(20, 14, 24, 0.16);
  backdrop-filter: blur(8px);
}

.social-link {
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.client-card::after {
  letter-spacing: 0.7px;
}
