/* Groot Creatieve Media — one-page visitekaart */
:root {
  --bg: #0c0e14;
  --bg-mid: #10131c;
  --bg-deep: #080a10;
  --bg-elevated: #161a26;
  --text: rgba(255, 255, 255, 0.93);
  --text-muted: rgba(255, 255, 255, 0.74);
  --accent: #ff9800;
  --accent-deep: #f57c00;
  --accent-glow: rgba(255, 152, 0, 0.35);
  --border: rgba(255, 255, 255, 0.09);
  --radius: 14px;
  --font-sans: "DM Sans", system-ui, sans-serif;
  --font-display: "Space Grotesk", system-ui, sans-serif;
  --header-h: 72px;
}

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

html {
  scroll-behavior: smooth;
  background-color: var(--bg-deep);
}

html.lenis,
html.lenis body {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

html.modal-open,
body.modal-open {
  overflow: hidden;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--text);
  background-color: var(--bg-deep);
  background-image: linear-gradient(
    165deg,
    #0d1528 0%,
    #0c1323 24%,
    var(--bg) 48%,
    var(--bg-mid) 72%,
    #09101e 100%
  );
  min-height: 100vh;
  min-height: 100dvh;
}

.page-atmosphere {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  /* Luxe marineblauwe basis met subtiele lichtere vlekken/glows */
  background: radial-gradient(
      ellipse 70% 50% at 18% 14%,
      rgba(142, 186, 255, 0.22) 0%,
      rgba(142, 186, 255, 0.08) 42%,
      transparent 76%
    ),
    radial-gradient(
      ellipse 62% 46% at 82% 24%,
      rgba(178, 200, 255, 0.18) 0%,
      rgba(178, 200, 255, 0.06) 46%,
      transparent 78%
    ),
    radial-gradient(
      ellipse 66% 44% at 58% 76%,
      rgba(118, 170, 255, 0.15) 0%,
      rgba(118, 170, 255, 0.05) 44%,
      transparent 70%
    ),
    radial-gradient(
      ellipse 56% 36% at 36% 56%,
      rgba(166, 192, 255, 0.11) 0%,
      rgba(166, 192, 255, 0.03) 40%,
      transparent 70%
    ),
    radial-gradient(
      ellipse 120% 90% at 50% 116%,
      rgba(255, 130, 50, 0.1) 0%,
      rgba(255, 100, 40, 0.03) 35%,
      transparent 72%
    );
}

.page-grain {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.055;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

:where(body > *:not(.page-atmosphere):not(.page-grain)) {
  position: relative;
  z-index: 2;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--accent);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

a:hover {
  color: #ffb74d;
}

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  z-index: 1000;
  padding: 0.75rem 1rem;
  background: var(--accent);
  color: #000;
  font-weight: 600;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
}

/* ——— Header (fixed = blijft bovenaan; overlay over hero zoals een “sticky” bar) ——— */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  min-height: calc(var(--header-h) + env(safe-area-inset-top, 0px));
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: env(safe-area-inset-top, 0px) clamp(1.25rem, 4vw, 3rem) 0;
  box-sizing: border-box;
  background: linear-gradient(
    180deg,
    rgba(8, 10, 16, 0.98) 0%,
    rgba(10, 12, 18, 0.9) 42%,
    rgba(12, 14, 20, 0.55) 75%,
    transparent 100%
  );
  backdrop-filter: blur(12px) saturate(1.15);
  -webkit-backdrop-filter: blur(12px) saturate(1.15);
  transition: box-shadow 0.35s ease;
}

.site-header.is-scrolled {
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.45);
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: var(--text);
}

.brand__mark {
  width: 44px;
  height: auto;
}

.brand__text {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.05rem;
  letter-spacing: -0.02em;
}

.brand__text span {
  display: block;
  font-size: 0.72rem;
  font-weight: 500;
  font-style: normal;
  color: var(--text-muted);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.nav {
  display: flex;
  gap: clamp(0.45rem, 2vw, 0.85rem);
  align-items: center;
}

.nav a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.nav a:hover {
  color: var(--text);
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
}

.nav a.is-active {
  color: var(--text);
  border-color: rgba(255, 152, 0, 0.65);
  background: rgba(255, 152, 0, 0.1);
  box-shadow: 0 0 0 1px rgba(255, 152, 0, 0.15);
}

.nav__cta {
  padding: 0.5rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 152, 0, 0.4);
  background: linear-gradient(135deg, rgba(255, 152, 0, 0.16), rgba(245, 124, 0, 0.06));
  color: var(--text) !important;
}

.nav__cta:hover {
  border-color: rgba(255, 186, 100, 0.65);
  box-shadow: 0 0 22px var(--accent-glow);
}

.nav__cta.is-active {
  border-color: rgba(255, 193, 120, 0.95);
  background: linear-gradient(135deg, rgba(255, 152, 0, 0.28), rgba(245, 124, 0, 0.14));
  box-shadow: 0 0 28px rgba(255, 152, 0, 0.25);
}

@media (max-width: 640px) {
  .brand__text {
    display: none;
  }

  .nav a:not(.nav__cta) {
    display: none;
  }
}

/* ——— Hero ——— */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: calc(env(safe-area-inset-top, 0px) + var(--header-h) + 2rem) 1.5rem 4rem;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 1.4s ease, transform 8s ease-out;
}

.hero__slide.is-active {
  opacity: 1;
  transform: scale(1);
}

.hero__scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: radial-gradient(
      ellipse 85% 65% at 50% 38%,
      rgba(12, 15, 24, 0.06) 0%,
      rgba(10, 12, 20, 0.48) 65%,
      rgba(8, 10, 16, 0.72) 100%
    ),
    linear-gradient(180deg, rgba(10, 12, 20, 0.2) 0%, rgba(8, 10, 18, 0.58) 100%);
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 44rem;
}

.hero__logo {
  width: min(320px, 82vw);
  margin: 0 auto 1.75rem;
  filter: drop-shadow(0 20px 50px rgba(0, 0, 0, 0.55));
}

.hero__tagline {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 3.5vw, 1.85rem);
  font-weight: 600;
  line-height: 1.2;
  margin: 0 0 0.75rem;
  letter-spacing: -0.035em;
  text-wrap: balance;
  background: linear-gradient(120deg, #ffffff 0%, rgba(255, 255, 255, 0.88) 55%, rgba(255, 200, 150, 0.95) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero__sub {
  margin: 0 auto;
  max-width: 36rem;
  color: var(--text-muted);
  font-size: 1rem;
}

.hero__scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text-muted);
  animation: float-hint 2.5s ease-in-out infinite;
}

@keyframes float-hint {
  0%,
  100% {
    opacity: 0.45;
    transform: translateX(-50%) translateY(0);
  }
  50% {
    opacity: 1;
    transform: translateX(-50%) translateY(6px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero__slide {
    transition: opacity 0.01ms;
  }

  .hero__scroll {
    animation: none;
  }
}

/* ——— Sections ——— */
.section {
  padding: clamp(3.5rem, 8vw, 6rem) clamp(1.25rem, 4vw, 3rem);
}

.section--tight-top {
  padding-top: 2rem;
}

.section__inner {
  max-width: 920px;
  margin: 0 auto;
}

.section__label {
  display: block;
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

.section h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.35rem);
  font-weight: 600;
  margin: 0 0 1.25rem;
  line-height: 1.12;
  letter-spacing: -0.04em;
}

.section p {
  margin: 0 0 1rem;
  color: var(--text-muted);
}

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

/* ——— Diensten grid ——— */
.grid {
  display: grid;
  gap: 1.25rem;
  margin-top: 2rem;
}

@media (min-width: 700px) {
  .grid--3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

.card {
  background: linear-gradient(
    160deg,
    rgba(255, 255, 255, 0.06) 0%,
    rgba(255, 255, 255, 0.02) 100%
  );
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem 1.35rem;
  transition: border-color 0.25s ease, transform 0.25s ease;
}

.card:hover {
  border-color: rgba(255, 152, 0, 0.35);
  transform: translateY(-3px);
}

.card__icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  margin-bottom: 1rem;
  background: radial-gradient(circle at 30% 25%, #ffb74d, var(--accent-deep));
  display: grid;
  place-items: center;
  box-shadow: 0 8px 28px var(--accent-glow);
}

.card__icon svg {
  width: 24px;
  height: 24px;
  stroke: #fff;
  fill: none;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  margin: 0 0 0.5rem;
  letter-spacing: -0.03em;
}

.card p {
  font-size: 0.95rem;
  margin: 0;
}

.note {
  margin-top: 2rem;
  padding: 1.25rem 1.35rem;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 152, 0, 0.2);
  background: rgba(255, 152, 0, 0.05);
  font-size: 0.98rem;
  color: var(--text-muted);
}

/* ——— Projecten ——— */
.projects-grid {
  display: grid;
  gap: 1rem;
  margin-top: 1.6rem;
}

@media (min-width: 700px) {
  .projects-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.project-card {
  position: relative;
  min-height: 225px;
  border: none;
  border-radius: 16px;
  background-size: cover;
  background-position: center;
  padding: 1.05rem;
  text-align: left;
  cursor: pointer;
  overflow: hidden;
  isolation: isolate;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.34), inset 0 0 0 1px rgba(255, 255, 255, 0.07);
  transition: transform 0.28s ease, box-shadow 0.28s ease, filter 0.28s ease;
}

.project-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  border-radius: inherit;
  background:
    radial-gradient(circle at 12% 12%, rgba(255, 210, 145, 0.46) 0%, rgba(255, 210, 145, 0) 38%),
    radial-gradient(circle at 88% 18%, rgba(122, 169, 255, 0.34) 0%, rgba(122, 169, 255, 0) 42%),
    linear-gradient(
      160deg,
      rgba(255, 255, 255, 0.06) 0%,
      rgba(255, 255, 255, 0.02) 40%,
      rgba(255, 255, 255, 0.09) 100%
    );
  opacity: 0.7;
}

.project-card .project-card__label::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.6rem;
  width: 44px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, #ffcf8f 0%, #ff9800 100%);
  box-shadow: 0 0 14px rgba(255, 152, 0, 0.55);
}

.project-card::after {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(
    125deg,
    rgba(255, 214, 157, 0.75),
    rgba(255, 214, 157, 0.06) 26%,
    rgba(129, 177, 255, 0.06) 58%,
    rgba(129, 177, 255, 0.62) 100%
  );
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  padding: 1px;
  mask-composite: exclude;
  -webkit-mask-composite: xor;
  opacity: 0.85;
  transition: opacity 0.28s ease;
}

.project-card:hover {
  transform: translateY(-6px) scale(1.015);
  box-shadow: 0 26px 54px rgba(0, 0, 0, 0.5), inset 0 0 0 1px rgba(255, 255, 255, 0.11), 0 0 28px rgba(255, 152, 0, 0.24);
  filter: saturate(1.12) contrast(1.02);
}

.project-card:hover::before {
  opacity: 1;
}

.project-card:hover::after {
  opacity: 1;
}

.project-card:focus-visible {
  box-shadow: 0 0 0 2px rgba(255, 193, 120, 0.3), 0 20px 46px rgba(0, 0, 0, 0.48);
}

.project-card__scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(7, 9, 14, 0.08) 0%, rgba(7, 9, 14, 0.92) 100%);
}

.project-card__label {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 4.05rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.12rem;
  color: #fff;
  letter-spacing: -0.02em;
  z-index: 3;
  text-shadow: 0 4px 18px rgba(0, 0, 0, 0.55);
}

.project-card__subtitle {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 0.95rem;
  z-index: 3;
  font-size: 0.78rem;
  line-height: 1.28;
  letter-spacing: 0.01em;
  color: rgba(255, 255, 255, 0.9);
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.5);
}

@media (max-width: 700px) {
  .project-card {
    min-height: 210px;
  }
}

/* ——— Project modal ——— */
.project-modal {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: grid;
  place-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s ease;
}

.project-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.project-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(3, 5, 10, 0.76);
  backdrop-filter: blur(4px);
}

.project-modal__panel {
  position: relative;
  width: min(1120px, calc(100vw - 2rem));
  max-height: calc(100dvh - 2rem);
  background: #10141f;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  overflow: auto;
  display: grid;
  grid-template-columns: 1fr;
  z-index: 1;
}

@media (min-width: 880px) {
  .project-modal__panel {
    grid-template-columns: 1fr 1fr;
  }
}

.project-modal__close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(9, 12, 18, 0.9);
  color: #fff;
  border-radius: 999px;
  padding: 0.3rem 0.75rem;
  font-size: 0.82rem;
  cursor: pointer;
}

.project-modal__media-wrap {
  min-height: 320px;
  padding: 1rem;
}

.project-modal__media {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.project-modal__media-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.7rem;
}

.project-modal__media-grid .project-modal__media {
  aspect-ratio: 16 / 10;
}

.project-modal__media-grid .project-modal__media:first-child {
  grid-column: 1 / -1;
  aspect-ratio: 16 / 8.5;
}

.project-modal__body {
  padding: 1.15rem 1.2rem 1.4rem;
}

@media (max-width: 879px) {
  .project-modal__media-grid {
    grid-template-columns: 1fr;
  }

  .project-modal__media-grid .project-modal__media:first-child {
    grid-column: auto;
    aspect-ratio: 16 / 10;
  }

  .project-modal__media-wrap {
    min-height: 220px;
    padding-bottom: 0.5rem;
  }

  .project-modal__body {
    padding-top: 0.8rem;
  }
}

.project-modal__body h3 {
  margin-top: 0;
  margin-bottom: 0.9rem;
  font-family: var(--font-display);
  font-size: 1.45rem;
  letter-spacing: -0.03em;
}

.project-modal__body p {
  margin: 0 0 1rem;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.project-modal__actions {
  display: flex;
  gap: 0.65rem;
  flex-wrap: wrap;
}

.project-modal__link,
.project-modal__cta {
  display: inline-block;
  border-radius: 999px;
  padding: 0.62rem 1rem;
  text-decoration: none;
  font-size: 0.86rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border: 1px solid transparent;
}

.project-modal__link {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.25);
}

.project-modal__cta {
  color: #0a0a0c;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-deep) 100%);
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.project-modal__cta:hover {
  color: #0a0a0c;
  transform: translateY(-1px);
  box-shadow: 0 10px 26px rgba(255, 152, 0, 0.35);
  filter: brightness(1.06);
}

.project-modal__link.is-hidden {
  display: none;
}

/* ——— Form feedback modal ——— */
.feedback-modal {
  position: fixed;
  inset: 0;
  z-index: 1300;
  display: grid;
  place-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.feedback-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.feedback-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(4, 6, 10, 0.74);
  backdrop-filter: blur(4px);
}

.feedback-modal__panel {
  position: relative;
  z-index: 1;
  width: min(560px, calc(100vw - 2rem));
  background: linear-gradient(180deg, #121826 0%, #111521 100%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  padding: 1.3rem 1.2rem 1.25rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  transform: translateY(10px) scale(0.98);
  transition: transform 0.22s ease, opacity 0.22s ease;
  opacity: 0.98;
}

.feedback-modal.is-open .feedback-modal__panel {
  transform: translateY(0) scale(1);
  opacity: 1;
}

.feedback-modal__close {
  position: absolute;
  top: 0.65rem;
  right: 0.65rem;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  background: rgba(15, 19, 30, 0.8);
  color: #fff;
  font-size: 0.8rem;
  padding: 0.3rem 0.65rem;
  cursor: pointer;
}

.feedback-modal__panel h3 {
  margin: 0 0 0.55rem;
  font-family: var(--font-display);
  letter-spacing: -0.03em;
  font-size: 1.35rem;
}

.feedback-modal__icon {
  display: inline-grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  margin-bottom: 0.7rem;
  font-size: 1.1rem;
  font-weight: 700;
  color: #0a0a0c;
  background: linear-gradient(135deg, #ffc46a 0%, var(--accent) 70%);
  box-shadow: 0 8px 26px rgba(255, 152, 0, 0.35);
  transform: scale(0.86);
  opacity: 0;
}

.feedback-modal.is-open .feedback-modal__icon {
  animation: feedback-pop 0.35s ease-out forwards;
}

@keyframes feedback-pop {
  0% {
    transform: scale(0.72);
    opacity: 0;
  }
  70% {
    transform: scale(1.08);
    opacity: 1;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.feedback-modal__panel p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.55;
}

.feedback-modal__panel.is-error h3 {
  color: #ffd3c4;
}

.feedback-modal__panel.is-error .feedback-modal__icon {
  color: #fff;
  background: linear-gradient(135deg, #ff8f75 0%, #ff6f61 100%);
}

/* ——— Contact ——— */
.contact-layout {
  display: grid;
  gap: 2.5rem;
}

@media (min-width: 800px) {
  .contact-layout {
    grid-template-columns: 1fr 1.1fr;
    align-items: start;
  }
}

.contact-card {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem 1.35rem;
}

.contact-card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0 0 1rem;
  letter-spacing: -0.03em;
}

.contact-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.contact-list li {
  margin-bottom: 0.85rem;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.contact-list strong {
  display: block;
  color: var(--text);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 0.2rem;
}

.contact-list a {
  word-break: break-word;
}

.form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form label {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.35rem;
}

.form input,
.form textarea {
  width: 100%;
  padding: 0.75rem 0.9rem;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: rgba(0, 0, 0, 0.35);
  color: var(--text);
  font-family: inherit;
  font-size: 1rem;
}

.form input::placeholder,
.form textarea::placeholder {
  color: rgba(255, 255, 255, 0.28);
}

.form textarea {
  min-height: 140px;
  resize: vertical;
}

.form button[type="submit"] {
  margin-top: 0.25rem;
  padding: 0.9rem 1.5rem;
  border: none;
  border-radius: 999px;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  cursor: pointer;
  color: #0a0a0c;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-deep) 100%);
  box-shadow: 0 12px 36px var(--accent-glow);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.form button[type="submit"]:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 44px rgba(255, 152, 0, 0.45);
}

.form button[type="submit"].is-loading {
  opacity: 0.88;
  cursor: wait;
}

.form button[type="submit"].is-success {
  color: #081018;
  background: linear-gradient(135deg, #8df1b6 0%, #4ddf93 100%);
  box-shadow: 0 14px 34px rgba(77, 223, 147, 0.35);
}

.form__hint {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin: 0;
}

.honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* ——— Footer visual (fotoblok boven footer) ——— */
.footer-visual {
  position: relative;
  min-height: min(52vh, 520px);
  overflow: hidden;
}

.footer-visual__bg {
  position: absolute;
  inset: 0;
}

.footer-visual__slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.03);
  transition: opacity 1.4s ease, transform 8s ease-out;
}

.footer-visual__slide.is-active {
  opacity: 1;
  transform: scale(1);
}

.footer-visual__scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: radial-gradient(
      ellipse 90% 70% at 50% 55%,
      rgba(12, 15, 24, 0.09) 0%,
      rgba(8, 10, 16, 0.49) 60%,
      rgba(8, 10, 16, 0.69) 100%
    ),
    linear-gradient(0deg, rgba(8, 10, 16, 0.6) 0%, rgba(8, 10, 16, 0.12) 100%);
  pointer-events: none;
}

@media (prefers-reduced-motion: reduce) {
  .footer-visual__slide {
    transition: opacity 0.01ms;
  }
}

/* ——— Footer ——— */
.site-footer {
  position: relative;
  padding: 2.5rem clamp(1.25rem, 4vw, 3rem) 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  background: linear-gradient(
    180deg,
    rgba(10, 12, 18, 0.92) 0%,
    rgba(18, 22, 34, 0.96) 40%,
    #141824 100%
  );
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.footer__grid {
  max-width: 920px;
  margin: 0 auto;
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .footer__grid {
    grid-template-columns: 1fr 1fr;
  }
}

.site-footer h3 {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin: 0 0 0.5rem;
}

.site-footer p,
.site-footer address {
  margin: 0;
  font-size: 0.88rem;
  color: var(--text-muted);
  font-style: normal;
  line-height: 1.55;
}

.footer__legal {
  max-width: 920px;
  margin: 2rem auto 0;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.56);
  text-align: center;
}

.footer__legal-links {
  margin-top: 0.6rem;
}

.footer__legal-links a {
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.footer__legal-links a:hover {
  color: #fff;
  border-bottom-color: rgba(255, 152, 0, 0.55);
}

/* ——— Cookie banner ——— */
.cookie-banner {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 1400;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.85rem;
  padding: 1rem 1rem 0.95rem;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: linear-gradient(180deg, rgba(15, 20, 32, 0.95) 0%, rgba(10, 14, 24, 0.94) 100%);
  backdrop-filter: blur(10px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.46);
  transform: translateY(12px);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.24s ease, opacity 0.24s ease;
}

.cookie-banner.is-visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.cookie-banner__title {
  margin: 0 0 0.2rem;
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: -0.02em;
}

.cookie-banner__text {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.45;
}

.cookie-banner__details {
  margin-top: 0.45rem;
  color: rgba(255, 255, 255, 0.88);
}

.cookie-banner__details summary {
  cursor: pointer;
  font-size: 0.82rem;
  color: #ffd28d;
}

.cookie-banner__details p {
  margin: 0.4rem 0 0;
  font-size: 0.82rem;
  color: var(--text-muted);
}

.cookie-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.cookie-banner__btn {
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0.55rem 0.9rem;
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
}

.cookie-banner__btn--ghost {
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.2);
}

.cookie-banner__btn--ghost:hover {
  background: rgba(255, 255, 255, 0.11);
}

.cookie-banner__btn--accent {
  color: #0a0a0c;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-deep) 100%);
}

.cookie-banner__btn--accent:hover {
  filter: brightness(1.06);
}

@media (min-width: 860px) {
  .cookie-banner {
    left: auto;
    width: min(620px, calc(100vw - 2rem));
  }
}
