/* ============================================================
   TO PHOTO — Dark Premium 2.0
   ============================================================ */

:root {
  --bg: #0a0a0c;
  --bg-2: #0e0e12;
  --card: #131318;
  --card-hover: #17171d;
  --line: rgba(255, 255, 255, 0.08);
  --line-strong: rgba(255, 255, 255, 0.14);
  --text: #f4f4f2;
  --muted: #9a9aa5;
  --gold: #d0a75a;
  --gold-light: #e8c886;
  --gold-dim: rgba(208, 167, 90, 0.14);
  --success: #3fbf7f;
  --danger: #df5c5c;
  --radius: 18px;
  --container: 1240px;
  --font-display: "Sora", "Inter", system-ui, sans-serif;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
::selection { background: var(--gold); color: #111; }

.container {
  width: min(calc(100% - 40px), var(--container));
  margin: 0 auto;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin: 0;
}

/* ============================================================
   HEADER / NAV
   ============================================================ */

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  transition: background 0.35s ease, border-color 0.35s ease;
  border-bottom: 1px solid transparent;
}

.site-header.scrolled {
  background: rgba(10, 10, 12, 0.82);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom-color: var(--line);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 84px;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: baseline;
  gap: 2px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.25rem;
  letter-spacing: 0.02em;
}

.brand em {
  font-style: normal;
  color: var(--gold);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 34px;
}

.site-nav a {
  position: relative;
  color: var(--muted);
  font-size: 0.95rem;
  transition: color 0.25s ease;
  padding: 6px 0;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.35s var(--ease);
}

.site-nav a:hover,
.site-nav a.active { color: var(--text); }

.site-nav a:hover::after,
.site-nav a.active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.site-nav .nav-cta {
  color: #111;
  padding: 12px 22px;
}
.site-nav .nav-cta::after { display: none; }

.nav-burger {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: 0;
  padding: 10px;
  cursor: pointer;
}

.nav-burger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

body.nav-open .nav-burger span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
body.nav-open .nav-burger span:nth-child(2) { opacity: 0; }
body.nav-open .nav-burger span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ============================================================
   KNOPPEN
   ============================================================ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 28px;
  border-radius: 999px;
  border: 1px solid transparent;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: #141414;
  font-weight: 700;
  font-size: 0.95rem;
  font-family: var(--font-body);
  cursor: pointer;
  transition: transform 0.25s var(--ease), box-shadow 0.25s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 34px rgba(208, 167, 90, 0.28);
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--line-strong);
}

.btn-ghost:hover { box-shadow: none; border-color: var(--gold); color: var(--gold-light); }

.btn-small { min-height: 42px; padding: 0 18px; font-size: 0.88rem; }

.text-link {
  color: var(--gold);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap 0.25s ease;
}
.text-link:hover { gap: 12px; }

/* ============================================================
   HERO (home)
   ============================================================ */

.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: flex-end;
  padding: 160px 0 90px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.06);
  animation: hero-zoom 12s var(--ease) forwards;
}

@keyframes hero-zoom {
  to { transform: scale(1); }
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(10, 10, 12, 0.98) 4%, rgba(10, 10, 12, 0.55) 45%, rgba(10, 10, 12, 0.35) 100%),
    linear-gradient(100deg, rgba(10, 10, 12, 0.85) 0%, transparent 60%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 42px;
  height: 1px;
  background: var(--gold);
}

.hero h1 {
  font-size: clamp(2.1rem, 4.4vw, 3.7rem);
  font-weight: 800;
  line-height: 1.08;
  margin: 20px 0 22px;
}

.hero .lead { font-size: 1.08rem; }

.lead {
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 58ch;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 36px;
}

.hero-scroll {
  position: absolute;
  bottom: 34px;
  right: 40px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  color: var(--muted);
  font-size: 0.72rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}

.hero-scroll::after {
  content: "";
  width: 1px;
  height: 54px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scroll-pulse 2.2s ease infinite;
}

@keyframes scroll-pulse {
  0%, 100% { opacity: 0.35; }
  50% { opacity: 1; }
}

/* ============================================================
   MARQUEE
   ============================================================ */

.marquee {
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 22px 0;
  background: var(--bg-2);
}

.marquee-track {
  display: flex;
  gap: 64px;
  width: max-content;
  animation: marquee 30s linear infinite;
}

.marquee span {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.22);
  white-space: nowrap;
}

.marquee span.solid {
  color: var(--gold);
  -webkit-text-stroke: 0;
}

@keyframes marquee {
  to { transform: translateX(-50%); }
}

/* ============================================================
   SECTIES
   ============================================================ */

.section { padding: 110px 0; }
.section-tight { padding: 70px 0; }

.section-alt {
  background: var(--bg-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 52px;
}

.section-head h2,
.page-hero h1 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  margin-top: 16px;
}

/* Pagina-hero (subpagina's) */
.page-hero {
  padding: 190px 0 70px;
  background:
    radial-gradient(60% 80% at 80% 0%, rgba(208, 167, 90, 0.07), transparent 60%),
    var(--bg);
  border-bottom: 1px solid var(--line);
}

.page-hero .lead { margin-top: 18px; }

/* ============================================================
   CARDS / DIENSTEN
   ============================================================ */

.card-grid { display: grid; gap: 22px; }
.card-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
.card-grid.cols-2 { grid-template-columns: repeat(2, 1fr); }

.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px;
  transition: transform 0.3s var(--ease), border-color 0.3s ease, background 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
  border-color: rgba(208, 167, 90, 0.35);
  background: var(--card-hover);
}

.card h3 { font-size: 1.22rem; margin-bottom: 12px; }
.card p { color: var(--muted); margin: 0; }

.service-card {
  display: flex;
  flex-direction: column;
  position: relative;
}

.service-card .service-num {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--gold);
  margin-bottom: 18px;
}

.service-card ul {
  list-style: none;
  margin: 18px 0 0;
  padding: 0;
  color: var(--muted);
  font-size: 0.93rem;
}

.service-card ul li {
  padding: 7px 0 7px 24px;
  position: relative;
}

.service-card ul li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--gold);
}

/* margin-top:auto duwt de prijs naar de onderkant, zodat de scheidingslijnen
   van alle kaarten op één hoogte staan — ook als de teksten verschillen. */
.service-price {
  margin-top: auto;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: baseline;
  gap: 8px;
}

/* De tekst neemt de vrije ruimte in, zodat de prijs onderaan blijft hangen */
.service-card > p { margin-bottom: 24px; }

.service-price strong {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--gold-light);
}

.service-price span { color: var(--muted); font-size: 0.85rem; }

.badge-popular {
  position: absolute;
  top: 22px;
  right: 22px;
  background: var(--gold-dim);
  color: var(--gold-light);
  border: 1px solid rgba(208, 167, 90, 0.4);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 999px;
}

/* ============================================================
   PROJECTEN
   ============================================================ */

.project-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.project-card {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--card);
  aspect-ratio: 4 / 3;
}

.project-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease), filter 0.4s ease;
}

.project-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8, 8, 10, 0.92) 0%, rgba(8, 8, 10, 0.25) 45%, transparent 70%);
  transition: opacity 0.35s ease;
}

.project-card:hover img { transform: scale(1.06); }

.project-card .project-body {
  position: absolute;
  inset: auto 0 0 0;
  z-index: 2;
  padding: 24px;
  transform: translateY(6px);
  transition: transform 0.35s var(--ease);
}

.project-card:hover .project-body { transform: translateY(0); }

.project-tag {
  display: inline-block;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 10px;
}

.project-body h3 { font-size: 1.25rem; color: #fff; }

.project-body p {
  color: rgba(244, 244, 242, 0.75);
  font-size: 0.9rem;
  margin: 8px 0 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* filterbalk portfolio */
.filter-bar {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.filter-bar button,
.filter-bar a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  border: 1px solid var(--line-strong);
  color: var(--muted);
  border-radius: 999px;
  padding: 10px 20px;
  font: inherit;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.25s ease;
}

.filter-bar button:hover,
.filter-bar a:hover { color: var(--text); border-color: var(--gold); }

.filter-bar button.active,
.filter-bar a.active {
  background: var(--gold);
  border-color: var(--gold);
  color: #141414;
  font-weight: 700;
}

/* Aantal projecten achter de categorienaam */
.filter-bar a span {
  font-size: 0.78rem;
  opacity: 0.7;
  font-variant-numeric: tabular-nums;
}

/* ============================================================
   PROJECT DETAIL
   ============================================================ */

.project-hero {
  position: relative;
  min-height: 62vh;
  display: flex;
  align-items: flex-end;
  padding: 190px 0 60px;
  overflow: hidden;
}

.project-hero .hero-bg::after {
  background: linear-gradient(to top, rgba(10, 10, 12, 1) 2%, rgba(10, 10, 12, 0.5) 55%, rgba(10, 10, 12, 0.3) 100%);
}

.article-layout {
  display: grid;
  grid-template-columns: 1.6fr 0.9fr;
  gap: 28px;
  align-items: start;
}

.meta-list { display: grid; gap: 14px; }

.meta-list .meta-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
  font-size: 0.93rem;
}

.meta-list .meta-row:last-child { border-bottom: 0; padding-bottom: 0; }
.meta-list span { color: var(--muted); }
.meta-list strong { font-weight: 600; }

/* Kop met alleen een label, zonder titel eronder */
.section-head.compact { margin-bottom: 30px; }

/* Foto's die pas na een klik op "Meer laden" verschijnen */
.gallery-item.is-hidden { display: none; }

.load-more-wrap { display: flex; justify-content: center; margin-top: 34px; }

.load-more-wrap .btn { flex-direction: column; gap: 4px; min-height: 62px; padding: 12px 34px; }

.load-more-count {
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0.06em;
}

/* Afmetingen staan in de HTML, maar de foto moet mee kunnen schalen */
.gallery-item img { height: auto; }

/* ============================================================
   KLANTGALERIJ (privélink)
   ============================================================ */

.client-meta {
  display: flex;
  gap: 26px;
  flex-wrap: wrap;
  margin-top: 22px;
  color: var(--muted);
  font-size: 0.9rem;
}

.client-meta span { position: relative; }

.client-meta span + span::before {
  content: "";
  position: absolute;
  left: -14px;
  top: 50%;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--gold);
  transform: translateY(-50%);
}

/* Downloadknopje op een losse foto */
.photo-download {
  position: absolute;
  right: 10px;
  bottom: 10px;
  z-index: 3;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(10, 10, 12, 0.78);
  border: 1px solid var(--line-strong);
  color: var(--text);
  font-size: 1.1rem;
  opacity: 0;
  transition: opacity 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.gallery-item:hover .photo-download { opacity: 1; }

.photo-download:hover { background: var(--gold); color: #141414; border-color: var(--gold); }

/* op touch altijd zichtbaar */
@media (hover: none) {
  .photo-download { opacity: 1; }
}

/* Link kopiëren in het beheerpaneel */
.link-row { display: flex; gap: 10px; margin-top: 14px; flex-wrap: wrap; }
.link-row input { flex: 1; min-width: 240px; font-family: ui-monospace, monospace; font-size: 0.88rem; }

/* ============================================================
   GALERIJ + PROJECTFOTO'S (masonry + lightbox)
   ============================================================ */

.masonry-grid { columns: 3; column-gap: 18px; }

.gallery-item {
  break-inside: avoid;
  margin-bottom: 18px;
  overflow: hidden;
  border-radius: 14px;
  border: 1px solid var(--line);
  cursor: zoom-in;
  position: relative;
}

.gallery-item img {
  width: 100%;
  transition: transform 0.5s var(--ease), filter 0.4s ease;
}

.gallery-item:hover img { transform: scale(1.05); filter: brightness(1.08); }

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(5, 5, 7, 0.96);
  backdrop-filter: blur(8px);
  display: none;
  align-items: center;
  justify-content: center;
}

.lightbox.active { display: flex; }

.lightbox img {
  max-width: min(92vw, 1400px);
  max-height: 86vh;
  border-radius: 10px;
  box-shadow: 0 40px 120px rgba(0, 0, 0, 0.6);
}

.lightbox-btn {
  position: absolute;
  z-index: 2;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--line-strong);
  color: #fff;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.25s ease;
}

.lightbox-btn:hover { background: var(--gold); color: #111; border-color: var(--gold); }
.lightbox-close { top: 26px; right: 26px; }
.lightbox-prev { left: 26px; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 26px; top: 50%; transform: translateY(-50%); }

.lightbox-counter {
  position: absolute;
  bottom: 26px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--muted);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
}

/* ============================================================
   SPLIT / OVER ONS / CTA
   ============================================================ */

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.clean-list {
  list-style: none;
  margin: 24px 0 0;
  padding: 0;
  color: var(--muted);
}

.clean-list li {
  position: relative;
  padding: 10px 0 10px 30px;
  border-bottom: 1px solid var(--line);
}

.clean-list li:last-child { border-bottom: 0; }

.clean-list li::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  width: 7px;
  height: 7px;
  border-top: 2px solid var(--gold);
  border-right: 2px solid var(--gold);
}

.stat-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 48px;
}

.stat-strip > div {
  border-left: 2px solid var(--gold);
  padding-left: 20px;
}

.stat-strip strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 800;
}

.stat-strip span { color: var(--muted); font-size: 0.9rem; }

.cta-banner {
  position: relative;
  border-radius: calc(var(--radius) + 8px);
  border: 1px solid rgba(208, 167, 90, 0.3);
  background:
    radial-gradient(80% 140% at 90% 10%, rgba(208, 167, 90, 0.16), transparent 55%),
    var(--card);
  padding: clamp(40px, 6vw, 80px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.cta-banner h2 { font-size: clamp(1.8rem, 3.4vw, 2.8rem); max-width: 22ch; }
.cta-banner p { color: var(--muted); margin: 14px 0 0; max-width: 48ch; }

/* ============================================================
   FORMULIEREN
   ============================================================ */

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.form-grid .full { grid-column: 1 / -1; }
.form-grid label { display: grid; gap: 8px; }
.form-grid label > span { color: var(--muted); font-size: 0.9rem; }

input, textarea, select {
  width: 100%;
  border: 1px solid var(--line-strong);
  background: var(--bg-2);
  color: var(--text);
  border-radius: 12px;
  min-height: 52px;
  padding: 14px 16px;
  font: inherit;
  outline: none;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

textarea { min-height: 150px; resize: vertical; }

input:focus, textarea:focus, select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(208, 167, 90, 0.15);
}

.checkbox-row { display: flex !important; align-items: center; gap: 10px; }
.checkbox-row input { width: auto; min-height: auto; accent-color: var(--gold); }

.contact-split {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr;
  gap: 28px;
  align-items: start;
}

.contact-info-list { display: grid; gap: 20px; margin-top: 8px; }

.contact-info-list a,
.contact-info-list p {
  display: block;
  color: var(--text);
  margin: 2px 0 0;
  font-weight: 600;
}

.contact-info-list span {
  color: var(--muted);
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

/* ============================================================
   FLASH
   ============================================================ */

.flash-wrap { padding-top: 110px; margin-bottom: -80px; position: relative; z-index: 5; }

.flash {
  padding: 15px 20px;
  border-radius: 12px;
  border: 1px solid var(--line);
  font-size: 0.95rem;
}

.flash-success { background: rgba(63, 191, 127, 0.1); border-color: rgba(63, 191, 127, 0.35); color: #c6f5db; }
.flash-error { background: rgba(223, 92, 92, 0.1); border-color: rgba(223, 92, 92, 0.35); color: #ffd3d3; }

/* ============================================================
   FOOTER
   ============================================================ */

.site-footer {
  border-top: 1px solid var(--line);
  background: var(--bg-2);
  padding: 80px 0 34px;
  margin-top: 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 0.7fr 0.9fr;
  gap: 40px;
}

.footer-brand {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 800;
  margin-bottom: 14px;
}

.footer-brand em { font-style: normal; color: var(--gold); }

.footer-grid p { color: var(--muted); max-width: 42ch; }

.footer-grid h4 {
  font-size: 0.8rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}

.footer-grid nav a,
.footer-grid .footer-contact a,
.footer-grid .footer-contact p {
  display: block;
  color: var(--muted);
  margin-bottom: 10px;
  transition: color 0.2s ease;
}

.footer-grid nav a:hover { color: var(--text); }

.footer-socials { display: flex; gap: 12px; margin-top: 22px; }

.footer-socials a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line);
  color: var(--muted);
  transition: all 0.25s ease;
}

.footer-socials svg { width: 18px; height: 18px; }

.footer-socials a:hover {
  color: #111;
  background: var(--gold);
  border-color: var(--gold);
  transform: translateY(-3px);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  border-top: 1px solid var(--line);
  padding-top: 24px;
  margin-top: 56px;
  color: var(--muted);
  font-size: 0.88rem;
}

.footer-bottom a { color: var(--muted); }
.footer-bottom a:hover { color: var(--gold); }

/* ============================================================
   HONEYPOT (spamfilter — moet onzichtbaar zijn voor mensen)
   ============================================================ */

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

/* ============================================================
   WHATSAPP-KNOP
   ============================================================ */

.whatsapp-fab {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 80;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #25d366;
  color: #0a0a0c;
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.32);
  transition: transform 0.25s var(--ease), box-shadow 0.25s ease;
}

.whatsapp-fab svg { width: 28px; height: 28px; }

.whatsapp-fab:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 16px 40px rgba(37, 211, 102, 0.45);
}

/* ============================================================
   CONCEPT-BANNER (preview voor ingelogde admin)
   ============================================================ */

.draft-banner {
  position: sticky;
  top: 84px;
  z-index: 70;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding: 14px 20px;
  border-radius: 12px;
  background: var(--gold-dim);
  border: 1px solid rgba(208, 167, 90, 0.45);
  color: var(--gold-light);
  font-size: 0.92rem;
}

.draft-banner strong { color: var(--text); }

/* ============================================================
   PROJECT-NAVIGATIE (vorige / volgende)
   ============================================================ */

.project-nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 10px;
}

.project-nav a {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px 26px;
  transition: border-color 0.25s ease, transform 0.25s var(--ease);
}

.project-nav a:hover { border-color: rgba(208, 167, 90, 0.4); transform: translateY(-3px); }
.project-nav a.next { text-align: right; }

.project-nav span {
  display: block;
  color: var(--muted);
  font-size: 0.76rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.project-nav strong { font-family: var(--font-display); font-size: 1.05rem; }

/* ============================================================
   JURIDISCHE TEKSTPAGINA
   ============================================================ */

.legal-text { max-width: 76ch; }
.legal-text h2 { font-size: 1.35rem; margin: 42px 0 14px; }
.legal-text h2:first-child { margin-top: 0; }
.legal-text p { color: var(--muted); line-height: 1.85; margin: 0 0 14px; }
.legal-text a { color: var(--gold); }
.legal-text ul { color: var(--muted); line-height: 1.9; padding-left: 20px; margin: 0 0 14px; }

.legal-updated {
  margin-top: 44px !important;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  font-size: 0.88rem;
}

.footer-links { display: flex; gap: 22px; flex-wrap: wrap; }

/* ============================================================
   COOKIEBANNER
   ============================================================ */

.cookie-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  z-index: 90;
  background: rgba(19, 19, 24, 0.97);
  backdrop-filter: blur(16px);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.55);
  padding: 22px 26px;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.45s var(--ease), transform 0.45s var(--ease);
  pointer-events: none;
}

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

.cookie-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  flex-wrap: wrap;
}

.cookie-text strong { display: block; margin-bottom: 6px; font-family: var(--font-display); }
.cookie-text p { color: var(--muted); font-size: 0.9rem; margin: 0; max-width: 68ch; line-height: 1.65; }
.cookie-text a { color: var(--gold); text-decoration: underline; }

.cookie-actions { display: flex; gap: 12px; flex-wrap: wrap; align-items: stretch; }

/* Kortere knoptekst, alleen zichtbaar op smalle schermen */
.cookie-kort { display: none; }

/* ruimte maken zodat de WhatsApp-knop niet onder de banner verdwijnt */
.cookie-banner.visible ~ .whatsapp-fab { bottom: 150px; }

/* Op een telefoon nam de melding bijna de halve pagina in beslag; daar tonen
   we een kortere tekst en staan de knoppen naast elkaar. */
@media (max-width: 720px) {
  .cookie-banner {
    left: 12px;
    right: 12px;
    bottom: 12px;
    padding: 16px 18px 18px;
    border-radius: 14px;
  }

  .cookie-inner { gap: 14px; }
  .cookie-text strong { font-size: 0.98rem; margin-bottom: 4px; }
  .cookie-text p { font-size: 0.83rem; line-height: 1.5; }
  .cookie-extra { display: none; }
  .cookie-kort { display: inline; }

  .cookie-actions { width: 100%; gap: 10px; }
  .cookie-actions .btn { flex: 1; min-height: 46px; padding: 0 12px; font-size: 0.86rem; }

  .cookie-banner.visible ~ .whatsapp-fab { bottom: 12px; right: 12px; width: 48px; height: 48px; }
}

/* ============================================================
   REVIEWS
   ============================================================ */

.review-card {
  display: flex;
  flex-direction: column;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px;
  transition: transform 0.3s var(--ease), border-color 0.3s ease;
}

.review-card:hover { transform: translateY(-5px); border-color: rgba(208, 167, 90, 0.35); }

.review-stars { color: var(--gold); letter-spacing: 3px; font-size: 0.95rem; margin-bottom: 16px; }

.review-quote {
  color: var(--text);
  font-size: 1.02rem;
  line-height: 1.75;
  margin: 0 0 22px;
  flex: 1;
}

.review-quote::before { content: "\201C"; color: var(--gold); font-size: 1.4em; line-height: 0; vertical-align: -0.25em; }
.review-quote::after { content: "\201D"; color: var(--gold); font-size: 1.4em; line-height: 0; vertical-align: -0.25em; }

.review-author {
  border-top: 1px solid var(--line);
  padding-top: 18px;
}

.review-author strong { display: block; font-family: var(--font-display); font-size: 0.98rem; }
.review-author span { color: var(--muted); font-size: 0.86rem; }

/* ============================================================
   VEELGESTELDE VRAGEN
   ============================================================ */

.faq-list { max-width: 860px; margin: 0 auto; display: grid; gap: 12px; }

.faq-item {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  transition: border-color 0.25s ease;
}

.faq-item.open { border-color: rgba(208, 167, 90, 0.4); }

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 26px;
  background: none;
  border: 0;
  color: var(--text);
  font: inherit;
  font-family: var(--font-display);
  font-size: 1.02rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
}

.faq-question:hover { color: var(--gold-light); }

.faq-question::after {
  content: "+";
  color: var(--gold);
  font-size: 1.5rem;
  line-height: 1;
  flex-shrink: 0;
  transition: transform 0.3s var(--ease);
}

.faq-item.open .faq-question::after { transform: rotate(45deg); }

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s var(--ease);
}

.faq-item.open .faq-answer { grid-template-rows: 1fr; }

.faq-answer > div { overflow: hidden; }

.faq-answer p {
  color: var(--muted);
  line-height: 1.8;
  margin: 0;
  padding: 0 26px 24px;
}

/* ============================================================
   BIJLAGE BIJ CONTACTFORMULIER
   ============================================================ */

.attach-field input[type="file"] { display: none; }

.attach-field .attach-button {
  display: flex;
  align-items: center;
  gap: 14px;
  border: 1px dashed var(--line-strong);
  border-radius: 12px;
  padding: 14px 18px;
  cursor: pointer;
  color: var(--muted);
  font-size: 0.92rem;
  transition: border-color 0.25s ease, color 0.25s ease;
}

.attach-field .attach-button:hover { border-color: var(--gold); color: var(--gold-light); }
.attach-field .attach-name { color: var(--text); font-size: 0.86rem; }

/* ============================================================
   ANIMATIES
   ============================================================ */

.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal.visible { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero-bg { animation: none; transform: none; }
  .marquee-track { animation: none; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 1024px) {
  .card-grid.cols-3, .project-grid { grid-template-columns: repeat(2, 1fr); }
  .masonry-grid { columns: 2; }
  .article-layout, .contact-split { grid-template-columns: 1fr; }
  .split { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 720px) {
  .nav-burger { display: flex; }

  /* Het menu is een kind van de header, dus met z-index 90 legde het zich
     over het logo en het kruisje heen — daardoor was het menu niet meer te
     sluiten. Deze twee moeten er dus bovenuit steken. */
  .nav-wrap .brand,
  .nav-burger {
    position: relative;
    z-index: 95;
  }

  .site-nav {
    position: fixed;
    inset: 0;
    z-index: 90;
    flex-direction: column;
    justify-content: center;
    align-items: stretch;
    gap: 2px;
    padding: 96px 28px 40px;
    background: var(--bg);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.28s ease;
  }

  body.nav-open .site-nav { opacity: 1; pointer-events: auto; }
  body.nav-open { overflow: hidden; }

  /* Het blur-effect op de header maakt daarvan een ankerpunt voor vastgezette
     elementen, waardoor het menu in de balk geperst werd. Zolang het menu open
     staat zetten we het uit — de overlay dekt de pagina toch al af. */
  body.nav-open .site-header {
    background: var(--bg);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-bottom-color: transparent;
  }

  .site-nav a {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text);
    padding: 17px 4px;
    border-bottom: 1px solid var(--line);
  }

  .site-nav a:last-of-type { border-bottom: 0; }

  /* De onderstreping van desktop slaat hier nergens op */
  .site-nav a::after { display: none; }

  .site-nav a.active { color: var(--gold-light); }

  .site-nav .nav-cta {
    margin-top: 26px;
    justify-content: center;
    min-height: 56px;
    font-size: 1rem;
    color: #141414;
    border-bottom: 0;
    padding: 0 24px;
  }

  .hero { min-height: 82vh; padding-top: 120px; }
  .hero h1 { font-size: clamp(1.9rem, 8vw, 2.5rem); }
  .hero-scroll { display: none; }
  .page-hero { padding-top: 150px; }
  .section { padding: 70px 0; }
  .section-head { flex-direction: column; align-items: flex-start; gap: 16px; margin-bottom: 34px; }
  .card-grid.cols-3, .card-grid.cols-2, .project-grid { grid-template-columns: 1fr; }
  .masonry-grid { columns: 1; }
  .form-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 34px; }
  .stat-strip { grid-template-columns: 1fr; gap: 18px; }
  .lightbox-prev { left: 12px; }
  .lightbox-next { right: 12px; }
}

/* ============================================================
   PRIJSCALCULATOR (/offerte)
   ============================================================ */

.calc-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 26px;
  align-items: start;
}

.calc-main { display: grid; gap: 22px; }
.calc-main .card:hover { transform: none; }

.calc-step {
  display: inline-block;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

/* --- Dienstkeuze --- */

.calc-services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(215px, 1fr));
  gap: 14px;
  margin-top: 20px;
}

.calc-service { cursor: pointer; }
.calc-service input { position: absolute; opacity: 0; pointer-events: none; }

.calc-service-body {
  display: grid;
  gap: 6px;
  height: 100%;
  border: 1px solid var(--line-strong);
  border-radius: 14px;
  background: var(--bg-2);
  padding: 18px;
  transition: border-color 0.25s ease, background 0.25s ease;
}

.calc-service-body strong { font-family: var(--font-display); font-size: 1.02rem; }
.calc-service-body em { color: var(--muted); font-size: 0.85rem; font-style: normal; line-height: 1.55; }

.calc-service-price {
  color: var(--gold);
  font-weight: 600;
  font-size: 0.9rem;
  margin-top: auto;
  padding-top: 6px;
}

.calc-service:hover .calc-service-body { border-color: rgba(208, 167, 90, 0.4); }

.calc-service input:checked + .calc-service-body {
  border-color: var(--gold);
  background: var(--gold-dim);
}

.calc-service input:focus-visible + .calc-service-body {
  outline: 2px solid var(--gold-light);
  outline-offset: 2px;
}

/* --- Schuifregelaars --- */

.calc-fields { display: grid; gap: 26px; margin-top: 22px; }
.calc-range { display: grid; gap: 10px; }
.calc-range > span { font-size: 0.95rem; }
.calc-range > span strong { color: var(--gold); }
.calc-range em { color: var(--muted); font-size: 0.82rem; font-style: normal; line-height: 1.55; }

.calc-range input[type="range"] {
  min-height: auto;
  padding: 0;
  border: 0;
  background: transparent;
  accent-color: var(--gold);
  cursor: pointer;
}

/* --- Extra's --- */

.calc-extras { display: grid; gap: 10px; margin-top: 20px; }

.calc-extra {
  display: flex;
  align-items: center;
  gap: 14px;
  border: 1px solid var(--line-strong);
  border-radius: 14px;
  background: var(--bg-2);
  padding: 15px 18px;
  cursor: pointer;
  transition: border-color 0.25s ease, background 0.25s ease;
}

.calc-extra:hover { border-color: rgba(208, 167, 90, 0.4); }
.calc-extra:has(input:checked) { border-color: var(--gold); background: var(--gold-dim); }

.calc-extra input[type="checkbox"] {
  width: 20px;
  height: 20px;
  min-height: auto;
  flex: none;
  padding: 0;
  accent-color: var(--gold);
  cursor: pointer;
}

.calc-extra > span { display: grid; gap: 3px; flex: 1; }
.calc-extra strong { font-weight: 600; font-size: 0.96rem; }
.calc-extra em { color: var(--muted); font-size: 0.82rem; font-style: normal; line-height: 1.5; }
.calc-extra b { color: var(--gold); white-space: nowrap; font-size: 0.92rem; }

/* --- Samenvatting --- */

.calc-summary { position: sticky; top: 100px; }
.calc-summary-card:hover { transform: none; }

.calc-lines {
  display: grid;
  gap: 10px;
  margin-top: 20px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.calc-line {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  font-size: 0.87rem;
  color: var(--muted);
}

.calc-line span:last-child { color: var(--text); white-space: nowrap; }

.calc-total { display: grid; gap: 8px; padding: 16px 0; }

.calc-total-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  color: var(--muted);
}

.calc-total-final {
  font-family: var(--font-display);
  font-size: 1.45rem;
  color: var(--text);
  padding-top: 12px;
  margin-top: 4px;
  border-top: 1px solid var(--line);
}

.calc-total-final span:last-child { color: var(--gold); }

.calc-submit { width: 100%; justify-content: center; margin-top: 6px; }

.calc-disclaimer {
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.6;
  margin: 16px 0 0;
}

@media (max-width: 1040px) {
  .calc-layout { grid-template-columns: 1fr; }
  .calc-summary { position: static; }
}

@media (max-width: 700px) {
  .calc-services { grid-template-columns: 1fr; }
  .calc-extra { flex-wrap: wrap; }
  .calc-extra b { width: 100%; text-align: right; }
}

/* Bevestiging na het versturen van een offerte */

.calc-done { max-width: 720px; margin: 0 auto; }
.calc-done:hover { transform: none; }
.calc-done h2 { margin: 6px 0 14px; }
.calc-done > p { color: var(--muted); line-height: 1.75; }

.calc-done-total {
  display: flex;
  align-items: baseline;
  gap: 14px;
  flex-wrap: wrap;
  border: 1px solid var(--line-strong);
  background: var(--bg-2);
  border-radius: 14px;
  padding: 18px 22px;
  margin: 22px 0;
}

.calc-done-total span { color: var(--muted); font-size: 0.92rem; }

.calc-done-total strong {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--gold);
  margin-left: auto;
}

.calc-done-total em { color: var(--muted); font-size: 0.8rem; font-style: normal; }

.calc-done-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.calc-done .calc-disclaimer { margin-top: 20px; }

@media (max-width: 600px) {
  .calc-done-total strong { margin-left: 0; }
  .calc-done-actions .btn { width: 100%; }
}

/* ============================================================
   ONDERHOUDSMODUS
   ============================================================ */

.maintenance-body {
  min-height: 100vh;
  display: flex;
  background:
    radial-gradient(1100px 620px at 50% -10%, rgba(208, 167, 90, 0.13), transparent 65%),
    var(--bg);
}

.maintenance {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
}

.maintenance-inner {
  width: min(100%, 620px);
  text-align: center;
}

.maintenance-inner .eyebrow::before { display: none; }

.maintenance-inner h1 {
  font-size: clamp(1.9rem, 5vw, 2.9rem);
  font-weight: 800;
  margin: 18px 0 20px;
}

.maintenance-inner > p {
  color: var(--muted);
  line-height: 1.85;
  margin: 0 auto;
  max-width: 48ch;
}

.maintenance-contact {
  display: flex;
  justify-content: center;
  gap: 10px 26px;
  flex-wrap: wrap;
  margin-top: 30px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
}

.maintenance-contact a {
  color: var(--gold);
  font-size: 0.92rem;
  font-weight: 500;
}

.maintenance-contact a:hover { color: var(--gold-light); }

.maintenance-login { margin-top: 34px; }

/* Balk voor de ingelogde beheerder, zodat niemand vergeet dat de site dicht staat */

.maintenance-bar {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 200;
  background: var(--gold);
  color: #141414;
  font-size: 0.86rem;
  font-weight: 600;
  text-align: center;
  padding: 10px 20px;
}

.maintenance-bar a {
  text-decoration: underline;
  margin-left: 8px;
}

/* De site-header staat vast bovenaan, dus die schuift onder de balk door */
body.has-maintenance-bar { padding-top: 40px; }
body.has-maintenance-bar .site-header { top: 40px; }

/* Beoordelingssamenvatting naast de kop boven de reviews */

.review-score {
  display: flex;
  align-items: baseline;
  gap: 10px;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 0.9rem;
}

.review-score strong {
  font-family: var(--font-display);
  font-size: 1.7rem;
  color: var(--text);
}

.review-score .review-stars { color: var(--gold); letter-spacing: 2px; }

/* ============================================================
   AGENDA
   ============================================================ */

.agenda-list { display: grid; gap: 16px; }

.agenda-item {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 30px;
  transition: border-color 0.3s ease, background 0.3s ease;
}

.agenda-item:hover { border-color: rgba(208, 167, 90, 0.35); background: var(--card-hover); }

.agenda-datum {
  flex: none;
  width: 76px;
  text-align: center;
  border: 1px solid var(--line-strong);
  border-radius: 14px;
  padding: 12px 6px;
  background: var(--bg-2);
}

.agenda-datum strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.7rem;
  line-height: 1;
  color: var(--gold);
}

.agenda-datum span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.agenda-body { flex: 1; min-width: 0; }
.agenda-body h3 { font-size: 1.2rem; }

.agenda-meta {
  display: flex;
  gap: 8px 20px;
  flex-wrap: wrap;
  margin: 8px 0 12px;
  color: var(--muted);
  font-size: 0.88rem;
}

.agenda-meta span::before { content: "· "; color: var(--gold); }
.agenda-meta span:first-child::before { content: none; }

.agenda-body p { color: var(--muted); line-height: 1.75; margin: 0 0 12px; }

@media (max-width: 600px) {
  .agenda-item { flex-direction: column; gap: 16px; padding: 22px; }
  .agenda-datum { width: auto; display: flex; align-items: baseline; gap: 10px; padding: 8px 14px; }
  .agenda-datum strong { font-size: 1.3rem; }
}

/* ============================================================
   FAVORIETEN & REVIEW IN DE KLANTGALERIJ
   ============================================================ */

.photo-favoriet {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 3;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 50%;
  background: rgba(10, 10, 12, 0.55);
  backdrop-filter: blur(6px);
  cursor: pointer;
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.25s ease, transform 0.25s ease, background 0.25s ease;
}

.gallery-item:hover .photo-favoriet,
.gallery-item.is-favoriet .photo-favoriet {
  opacity: 1;
  transform: scale(1);
}

.photo-favoriet svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: #fff;
  stroke-width: 1.6;
  transition: fill 0.2s ease, stroke 0.2s ease;
}

.gallery-item.is-favoriet .photo-favoriet { background: rgba(208, 167, 90, 0.92); }
.gallery-item.is-favoriet .photo-favoriet svg { fill: #141414; stroke: #141414; }

.gallery-item.is-favoriet { outline: 2px solid var(--gold); outline-offset: -2px; border-radius: 4px; }

.favoriet-teller {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 22px;
  height: 22px;
  padding: 0 7px;
  border-radius: 999px;
  background: var(--gold);
  color: #141414;
  font-size: 0.78rem;
  font-weight: 700;
}

.review-portal { max-width: 720px; margin: 0 auto; }
.review-portal:hover { transform: none; }
.review-portal h2 { margin: 10px 0 12px; }
.review-portal > p { color: var(--muted); line-height: 1.75; }

/* Sterren kiezen: van rechts naar links opgebouwd, zodat hover werkt */
.sterren-keuze {
  display: inline-flex;
  flex-direction: row-reverse;
  justify-content: flex-end;
  gap: 4px;
}

.sterren-keuze input { position: absolute; opacity: 0; width: 0; height: 0; }

.sterren-keuze label {
  font-size: 1.9rem;
  line-height: 1;
  color: var(--line-strong);
  cursor: pointer;
  transition: color 0.15s ease;
}

.sterren-keuze input:checked ~ label,
.sterren-keuze label:hover,
.sterren-keuze label:hover ~ label { color: var(--gold); }

.sterren-keuze input:focus-visible + label { outline: 2px solid var(--gold-light); outline-offset: 3px; }

/* ============================================================
   TAALKNOP
   ============================================================ */

.taal-knop {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px 6px 8px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  transition: border-color 0.25s ease, color 0.25s ease, background 0.25s ease;
}

.taal-knop::after { display: none; }

.taal-knop svg {
  width: 22px;
  height: 15px;
  border-radius: 3px;
  flex: none;
  display: block;
}

.taal-knop:hover {
  color: var(--text);
  border-color: var(--gold);
  background: rgba(255, 255, 255, 0.04);
}

@media (max-width: 1024px) {
  .taal-knop { align-self: flex-start; }
}
