/* =============================================
   HARMANN INTERIEURS — Gedeelde Stijlen
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;1,300;1,400&family=Jost:wght@300;400;500&display=swap');

/* === CSS VARIABELEN === */
:root {
  --kleur-bg-primair: #1a1a18;
  --kleur-bg-secundair: #2b2620;
  --kleur-bg-kaart: #221e1a;
  --kleur-accent: #8b6f47;
  --kleur-accent-licht: #a8895f;
  --kleur-tekst-primair: #f0ebe3;
  --kleur-tekst-secundair: #b5a898;
  --kleur-rand: #3d352c;

  --font-titel: 'Cormorant Garamond', serif;
  --font-tekst: 'Jost', sans-serif;

  --max-breedte: 1200px;
  --nav-hoogte: 80px;
  --ticker-hoogte: 22px;
  --header-hoogte: calc(var(--nav-hoogte) + var(--ticker-hoogte));
}

/* === RESET & BASIS === */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--kleur-bg-primair);
  color: var(--kleur-tekst-primair);
  font-family: var(--font-tekst);
  font-size: 17px;
  line-height: 1.7;
  font-weight: 300;
}

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

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

/* === NAVIGATIE === */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-hoogte);
  background-color: rgba(26, 26, 24, 0.96);
  display: flex;
  align-items: center;
  backdrop-filter: blur(8px);
}

/* === TICKER BALK === */
.nav-ticker {
  position: fixed;
  top: var(--nav-hoogte);
  left: 0;
  right: 0;
  z-index: 999;
  height: var(--ticker-hoogte);
  background-color: rgba(20, 18, 16, 0.92);
  border-bottom: 1px solid var(--kleur-rand);
  overflow: hidden;
  display: flex;
  align-items: center;
}

.nav-ticker__baan {
  display: flex;
  white-space: nowrap;
  animation: ticker-loop 160s linear infinite;
}

.nav-ticker__item {
  font-family: var(--font-tekst);
  font-size: 8.5px;
  font-weight: 300;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--kleur-tekst-secundair);
  padding: 0 22px;
}

.nav-ticker__item em {
  color: var(--kleur-accent);
  font-style: normal;
}

@keyframes ticker-loop {
  0%   { transform: translateX(-50%); }
  100% { transform: translateX(0%); }
}

.nav__inner {
  max-width: var(--max-breedte);
  width: 100%;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  column-gap: 52px;
}

.nav__midden {
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: center;
}

.nav__streep {
  width: 44px;
  height: 1px;
  background-color: var(--kleur-accent-licht);
  flex-shrink: 0;
  opacity: 0.6;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.nav__logo-icoon {
  color: var(--kleur-accent);
  flex-shrink: 0;
  transition: color 0.3s ease;
}

.nav__logo-tekst {
  font-family: var(--font-titel);
  font-size: 22px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--kleur-tekst-primair);
  line-height: 1;
  white-space: nowrap;
}

.nav__logo-tekst em {
  font-style: normal;
  color: var(--kleur-accent);
}

.nav__menu--links {
  display: flex;
  align-items: center;
  gap: 28px;
  justify-content: flex-end;
}

.nav__menu--rechts {
  display: flex;
  align-items: center;
  gap: 28px;
  justify-content: flex-start;
}

.nav__social-scheiding {
  width: 1px;
  height: 14px;
  background: var(--kleur-rand);
  opacity: 0.5;
}

.nav__social {
  display: flex;
  align-items: center;
  gap: 14px;
}

.nav__social-link {
  color: var(--kleur-tekst-secundair);
  display: flex;
  align-items: center;
  transition: color 0.3s ease;
}

.nav__social-link:hover {
  color: var(--kleur-accent);
}

.nav__social-label {
  font-family: var(--font-tekst);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--kleur-tekst-secundair);
  text-decoration: none;
  transition: color 0.3s ease;
  white-space: nowrap;
}

.nav__social-label:hover {
  color: var(--kleur-accent);
}

.nav__link {
  font-family: var(--font-tekst);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--kleur-tekst-secundair);
  transition: color 0.3s ease, font-size 0.3s ease, opacity 0.3s ease;
  white-space: nowrap;
}

.nav__inner:hover .nav__link {
  font-size: 11px;
  color: var(--kleur-tekst-secundair);
  opacity: 0.5;
}

.nav__inner:hover .nav__link:hover {
  font-size: 15px;
  color: var(--kleur-tekst-primair);
  opacity: 1;
}

.nav__link.actief {
  color: var(--kleur-tekst-primair);
}

.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
  position: absolute;
  right: 20px;
}

.nav__hamburger span {
  display: block;
  width: 24px;
  height: 1px;
  background-color: var(--kleur-tekst-primair);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav__hamburger.open span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.nav__hamburger.open span:nth-child(2) {
  opacity: 0;
}

.nav__hamburger.open span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

/* === HERO SECTIE === */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding-top: var(--header-hoogte);
}

.hero__achtergrond {
  position: absolute;
  inset: 0;
  background-color: var(--kleur-bg-secundair);
}

.hero__achtergrond img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(26,26,24,0.3) 0%, rgba(26,26,24,0.7) 100%);
}

.hero__inhoud {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 800px;
  padding: 0 24px;
}

.hero__label {
  font-size: 12px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--kleur-accent);
  margin-bottom: 24px;
}

.hero__titel {
  font-family: var(--font-titel);
  font-size: clamp(42px, 7vw, 80px);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: 0.02em;
  color: var(--kleur-tekst-primair);
  margin-bottom: 24px;
}

.hero__ondertitel {
  font-size: 16px;
  font-weight: 300;
  color: var(--kleur-tekst-secundair);
  max-width: 500px;
  margin: 0 auto 40px;
}

/* === HERO GESPLITST (homepagina) === */
.hero-gesplitst {
  position: relative;
  height: calc(100vh - var(--header-hoogte));
  margin-top: var(--header-hoogte);
  overflow: hidden;
}

.hero-gesplitst__achtergrond {
  position: absolute;
  inset: 0;
  background-image: url('https://placehold.co/1920x1080/2b2620/3d352c');
  background-size: cover;
  background-position: center;
  filter: blur(14px);
  transform: scale(1.08);
}

.hero-gesplitst__vlakken {
  position: relative;
  z-index: 1;
  display: flex;
  height: 100%;
}

.hero-gesplitst__vlak {
  flex: 1;
  position: relative;
  overflow: hidden;
  transition: flex 0.55s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  text-decoration: none;
  display: block;
}

/* Flex uitbreiding via JS-klassen (vervangt CSS :hover) */
.hero-gesplitst__vlakken.hover--links .hero-gesplitst__vlak:first-child  { flex: 1.18; }
.hero-gesplitst__vlakken.hover--links .hero-gesplitst__vlak:last-child   { flex: 0.82; }
.hero-gesplitst__vlakken.hover--rechts .hero-gesplitst__vlak:last-child  { flex: 1.18; }
.hero-gesplitst__vlakken.hover--rechts .hero-gesplitst__vlak:first-child { flex: 0.82; }

/* Middenstuk — geblurde strook */
.hero-gesplitst__midden {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  transform: translateX(-50%);
  width: 88px;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  text-decoration: none;
  backdrop-filter: blur(0px);
  background: transparent;
  border: 1.5px solid transparent;
  opacity: 0;
  transition: backdrop-filter 0.5s ease, background 0.5s ease,
              border-color 0.5s ease, opacity 0.45s ease;
  pointer-events: none;
}

/* Zichtbaar als cursor in de middenzone is */
.hero-gesplitst__vlakken.hover--midden .hero-gesplitst__midden {
  backdrop-filter: blur(14px);
  background: rgba(26,26,24,0.28);
  border-color: rgba(139,111,71,0.6);
  opacity: 1;
  pointer-events: auto;
}

/* Subtiel zichtbaar als cursor op een vlak staat */
.hero-gesplitst__vlakken.hover--links .hero-gesplitst__midden,
.hero-gesplitst__vlakken.hover--rechts .hero-gesplitst__midden {
  backdrop-filter: blur(6px);
  background: rgba(26,26,24,0.12);
  border-color: rgba(139,111,71,0.1);
  opacity: 0.45;
}

.hero-gesplitst__midden-letters {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
}

.hero-gesplitst__midden-letters span {
  font-family: var(--font-titel);
  font-size: 13.5px;
  font-weight: 400;
  letter-spacing: 0.12em;
  color: var(--kleur-tekst-primair);
  line-height: 1;
  opacity: 0.85;
}

.hero-gesplitst__midden-pijl {
  color: var(--kleur-accent);
  font-size: 18px;
  line-height: 1;
  animation: pijl-puls 1.8s ease-in-out infinite;
}

@keyframes pijl-puls {
  0%, 100% { transform: translateY(0); opacity: 0.7; }
  50%       { transform: translateY(5px); opacity: 1; }
}

.hero-gesplitst__vlak-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.55s ease;
}

.hero-gesplitst__vlak:first-child .hero-gesplitst__vlak-bg {
  background-position: 80% center;
}

.hero-gesplitst__vlak:last-child .hero-gesplitst__vlak-bg {
  background-position: 35% center;
}

.hero-gesplitst__vlak:hover .hero-gesplitst__vlak-bg {
  transform: scale(1.015);
}

.hero-gesplitst__vlak-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,26,24,0.75) 0%, rgba(26,26,24,0.25) 60%);
  transition: background 0.4s ease;
}

.hero-gesplitst__vlak:hover .hero-gesplitst__vlak-overlay {
  background: linear-gradient(to top, rgba(26,26,24,0.6) 0%, rgba(26,26,24,0.15) 60%);
}

.hero-gesplitst__vlak-inhoud {
  position: absolute;
  bottom: 64px;
  left: 0;
  right: 0;
  text-align: center;
  padding: 0 40px;
  z-index: 1;
  transition: transform 0.4s ease;
}

.hero-gesplitst__vlak:hover .hero-gesplitst__vlak-inhoud {
  transform: translateY(-8px);
}

.hero-gesplitst__label {
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--kleur-accent-licht);
  margin-bottom: 14px;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.4s ease 0.1s, transform 0.4s ease 0.1s;
}

.hero-gesplitst__vlak:hover .hero-gesplitst__label {
  opacity: 1;
  transform: translateY(0);
}

.hero-gesplitst__titel {
  font-family: var(--font-titel);
  font-size: clamp(22px, 2.8vw, 40px);
  font-weight: 300;
  color: var(--kleur-tekst-primair);
  letter-spacing: 0.04em;
  line-height: 1.2;
  margin-bottom: 20px;
  transition: transform 0.4s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.hero-gesplitst__titel::before,
.hero-gesplitst__titel::after {
  content: '';
  width: 28px;
  height: 1px;
  background-color: var(--kleur-accent);
  flex-shrink: 0;
  transition: opacity 0.4s ease, width 0.4s ease;
}

.hero-gesplitst__vlak:hover .hero-gesplitst__titel {
  transform: scale(1.22);
}

.hero-gesplitst__vlak:hover .hero-gesplitst__titel::before,
.hero-gesplitst__vlak:hover .hero-gesplitst__titel::after {
  opacity: 0;
  width: 0;
}

.hero-gesplitst__vlak:hover .hero-gesplitst__subtitel {
  transform: scale(1.12) translateY(0);
}

.hero-gesplitst__subtitel {
  font-family: var(--font-tekst);
  font-size: 14px;
  font-weight: 300;
  font-style: italic;
  color: var(--kleur-tekst-secundair);
  line-height: 1.65;
  max-width: 380px;
  margin: 14px auto 20px;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.4s ease 0.15s, transform 0.4s ease 0.15s, font-size 0.4s ease 0.15s;
}

.hero-gesplitst__vlak:hover .hero-gesplitst__subtitel {
  opacity: 1;
  transform: translateY(0);
}

.hero-gesplitst__pijl {
  display: inline-block;
  font-size: 20px;
  color: var(--kleur-accent);
  opacity: 0;
  transform: translateX(-8px);
  transition: opacity 0.4s ease 0.05s, transform 0.4s ease 0.05s;
}

.hero-gesplitst__vlak:hover .hero-gesplitst__pijl {
  opacity: 1;
  transform: translateX(0);
}

.hero-gesplitst__scheidslijn {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 1px;
  background-color: rgba(61, 53, 44, 0.6);
  z-index: 2;
  left: 50%;
  transition: left 0.55s cubic-bezier(0.4, 0, 0.2, 1);
}

/* === PAGINA HERO (kleinere hero voor subpagina's) === */
.pagina-hero {
  padding: calc(var(--header-hoogte) + 80px) 24px 80px;
  text-align: center;
  background-color: var(--kleur-bg-secundair);
  border-bottom: 1px solid var(--kleur-rand);
}

.pagina-hero__label {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--kleur-accent);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.pagina-hero__label::before,
.pagina-hero__label::after {
  content: '';
  width: 36px;
  height: 1px;
  background-color: var(--kleur-accent);
  opacity: 0.7;
}

.pagina-hero__titel {
  font-family: var(--font-titel);
  font-size: clamp(28px, 3.8vw, 52px);
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--kleur-tekst-primair);
  margin-bottom: 24px;
}

.pagina-hero__titel--glans,
.home .sectie__titel {
  animation: titel-glans 4s ease-in-out infinite;
}

@keyframes titel-glans {
  0%, 100% {
    text-shadow: none;
    color: var(--kleur-tekst-primair);
  }
  50% {
    text-shadow: 0 0 18px rgba(240,235,227,0.35), 0 0 40px rgba(139,111,71,0.15);
    color: #fff;
  }
}

.pagina-hero__tekst {
  font-size: 16px;
  color: var(--kleur-tekst-secundair);
  max-width: 620px;
  margin: 0 auto;
  line-height: 1.85;
}

.hero-onderwerp {
  margin-top: 28px;
  display: flex;
  justify-content: center;
}

.hero-onderwerp__input {
  width: min(480px, 90vw);
  background: rgba(43, 38, 32, 0.6);
  border: 1px solid var(--kleur-rand);
  border-bottom-color: var(--kleur-accent);
  color: var(--kleur-tekst-primair);
  font-family: var(--font-tekst);
  font-size: 15px;
  padding: 14px 20px;
  outline: none;
  resize: vertical;
  line-height: 1.7;
  transition: border-color 0.3s ease, background 0.3s ease;
  text-align: center;
}

.hero-onderwerp__input::placeholder {
  color: var(--kleur-tekst-secundair);
  font-size: 14px;
}

.hero-onderwerp__input:focus {
  border-color: var(--kleur-accent);
  background: rgba(43, 38, 32, 0.9);
}

.verborgen { display: none !important; }

.contact-vrijblijvend { margin-top: 56px; }

/* WhatsApp knop — groen met glow */
.whatsapp-knop {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #1db954;
  color: #fff;
  text-decoration: none;
  font-family: var(--font-tekst);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  padding: 13px 22px;
  margin-top: 52px;
  border-radius: 2px;
  transition: background 0.3s ease, box-shadow 0.3s ease;
  animation: whatsappGlow 3s ease-in-out infinite;
}

.whatsapp-knop:hover {
  background: #17a349;
  box-shadow: 0 0 20px rgba(29, 185, 84, 0.6), 0 0 40px rgba(29, 185, 84, 0.25);
}

@keyframes whatsappGlow {
  0%, 100% {
    box-shadow: 0 0 8px rgba(29, 185, 84, 0.25), 0 0 18px rgba(29, 185, 84, 0.1);
  }
  50% {
    box-shadow: 0 0 16px rgba(29, 185, 84, 0.55), 0 0 36px rgba(29, 185, 84, 0.25);
  }
}

.pagina-hero__hier {
  color: var(--kleur-tekst-primair);
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: var(--kleur-accent);
  transition: color 0.3s ease;
}

.pagina-hero__hier:hover {
  color: var(--kleur-accent);
}

/* === OVER ONS STATEMENTS === */
.over-ons-statement {
  background-color: var(--kleur-bg-secundair);
  text-align: center;
}

.statement-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin: 48px 0 56px;
  border: 1px solid var(--kleur-rand);
}

.statement-item {
  padding: 52px 40px;
  border-right: 1px solid var(--kleur-rand);
  position: relative;
  transition: background 0.4s ease;
}

.statement-item:last-child {
  border-right: none;
}

.statement-item:hover {
  background: rgba(139, 111, 71, 0.06);
}

.statement-item__nr {
  display: block;
  font-family: var(--font-titel);
  font-size: 13px;
  letter-spacing: 0.3em;
  color: var(--kleur-accent);
  margin-bottom: 20px;
  opacity: 0.8;
}

.statement-item__titel {
  font-family: var(--font-titel);
  font-size: clamp(24px, 2.4vw, 36px);
  font-weight: 300;
  color: var(--kleur-tekst-primair);
  letter-spacing: 0.03em;
  line-height: 1.2;
  margin-bottom: 18px;
  animation: titel-glans 4s ease-in-out infinite;
}

.statement-item:nth-child(2) .statement-item__titel {
  animation-delay: 1.3s;
}

.statement-item:nth-child(3) .statement-item__titel {
  animation-delay: 2.6s;
}

.statement-item__tekst {
  font-size: 15px;
  color: var(--kleur-tekst-secundair);
  line-height: 1.75;
  max-width: 260px;
  margin: 0 auto;
}

.over-ons-cta {
  font-size: 16px;
  color: var(--kleur-tekst-secundair);
  line-height: 1.8;
  max-width: 560px;
  margin: 0 auto;
}

/* === TEAM GRID === */
.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 760px;
  margin: 0 auto;
}

.team-kaart {
  border: 1px solid var(--kleur-rand);
  padding: 40px 32px;
  text-align: center;
  background-color: var(--kleur-bg-secundair);
  transition: border-color 0.3s ease;
}

.team-kaart:hover {
  border-color: var(--kleur-accent);
}

.team-kaart__naam {
  font-family: var(--font-titel);
  font-size: 28px;
  font-weight: 300;
  color: var(--kleur-tekst-primair);
  letter-spacing: 0.06em;
  margin-bottom: 14px;
}

.team-kaart__rol {
  font-size: 14px;
  font-weight: 300;
  font-style: italic;
  color: var(--kleur-tekst-secundair);
  line-height: 1.7;
}

/* === SECTIES === */
.sectie {
  padding: 100px 24px;
}

.sectie--donker {
  background-color: var(--kleur-bg-primair);
}

.sectie--middel {
  background-color: var(--kleur-bg-secundair);
}

.sectie__inner {
  max-width: var(--max-breedte);
  margin: 0 auto;
}

.sectie__hoofd {
  text-align: center;
  margin-bottom: 64px;
}

.sectie__label {
  font-size: 12px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--kleur-accent);
  margin-bottom: 16px;
}

.sectie__titel {
  font-family: var(--font-titel);
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 300;
  letter-spacing: 0.02em;
  color: var(--kleur-tekst-primair);
  margin-bottom: 16px;
}

.sectie__ondertitel {
  font-size: 16px;
  color: var(--kleur-tekst-secundair);
  max-width: 560px;
  margin: 0 auto;
}

/* === KNOPPEN === */
.knop {
  display: inline-block;
  padding: 14px 36px;
  font-family: var(--font-tekst);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
}

.knop--primair {
  background-color: var(--kleur-accent);
  color: var(--kleur-tekst-primair);
}

.knop--primair:hover {
  background-color: var(--kleur-accent-licht);
}

.knop--lijn {
  background-color: transparent;
  color: var(--kleur-tekst-primair);
  border: 1px solid var(--kleur-rand);
}

.knop--lijn:hover {
  border-color: var(--kleur-accent);
  color: var(--kleur-accent);
}

/* === SPECIALITEITEN GRID === */
.spec-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.spec-kaart {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/5;
  display: block;
  text-decoration: none;
  border: 1px solid var(--kleur-rand);
  transition: transform 0.45s ease, box-shadow 0.45s ease, opacity 0.45s ease, border-color 0.45s ease;
}

.spec-grid:hover .spec-kaart {
  opacity: 0.55;
  transform: scale(0.96);
}

.spec-grid:hover .spec-kaart:hover {
  opacity: 1;
  transform: scale(1.05);
  z-index: 2;
  box-shadow: 0 24px 60px rgba(0,0,0,0.55);
  border-color: rgba(139, 111, 71, 0.5);
}

.spec-kaart__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.5s ease;
}

.spec-kaart:hover .spec-kaart__bg {
  transform: scale(1.03);
}

.spec-kaart__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,26,24,0.9) 0%, rgba(26,26,24,0.15) 60%);
  transition: background 0.4s ease;
}

.spec-kaart:hover .spec-kaart__overlay {
  background: linear-gradient(to top, rgba(26,26,24,0.75) 0%, rgba(26,26,24,0.05) 60%);
}

.spec-kaart__inhoud {
  position: absolute;
  bottom: 28px;
  left: 0;
  right: 0;
  padding: 0 22px;
  text-align: center;
  z-index: 1;
  transition: transform 0.4s ease;
}

.spec-kaart:hover .spec-kaart__inhoud {
  transform: translateY(-6px);
}

.spec-kaart__titel {
  font-family: var(--font-titel);
  font-size: clamp(20px, 1.8vw, 28px);
  font-weight: 300;
  color: var(--kleur-tekst-primair);
  letter-spacing: 0.05em;
  line-height: 1.2;
  margin-bottom: 10px;
}

.spec-kaart__subtekst {
  font-family: var(--font-tekst);
  font-size: 13px;
  font-weight: 300;
  font-style: italic;
  color: var(--kleur-tekst-secundair);
  line-height: 1.5;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.4s ease 0.1s, transform 0.4s ease 0.1s;
}

.spec-kaart:hover .spec-kaart__subtekst {
  opacity: 1;
  transform: translateY(0);
}

/* TV-wanden: twee klikbare opties */
.spec-kaart--gesplitst {
  cursor: default;
}

.spec-kaart__opties {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 14px;
}

.spec-kaart__optie {
  display: block;
  padding: 9px 16px;
  font-family: var(--font-tekst);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--kleur-tekst-secundair);
  text-decoration: none;
  border: 1px solid rgba(61, 53, 44, 0.6);
  border-radius: 2px;
  transition: all 0.3s ease;
  text-align: center;
}

.spec-kaart__optie:hover {
  color: var(--kleur-tekst-primair);
  border-color: var(--kleur-accent);
  background: rgba(139, 111, 71, 0.18);
}

@media (max-width: 1024px) {
  .spec-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .spec-grid {
    grid-template-columns: 1fr;
  }
}

/* === GRID KAARTEN === */
.kaarten-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.kaart {
  background-color: var(--kleur-bg-kaart);
  border: 1px solid var(--kleur-rand);
  overflow: hidden;
  transition: border-color 0.3s ease;
}

.kaart:hover {
  border-color: var(--kleur-accent);
}

.kaart__afbeelding {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  opacity: 0.85;
  transition: opacity 0.3s ease;
}

.kaart:hover .kaart__afbeelding {
  opacity: 1;
}

.kaart__inhoud {
  padding: 28px;
}

.kaart__titel {
  font-family: var(--font-titel);
  font-size: 22px;
  font-weight: 400;
  margin-bottom: 10px;
  color: var(--kleur-tekst-primair);
}

.kaart__tekst {
  font-size: 15px;
  color: var(--kleur-tekst-secundair);
  line-height: 1.6;
}

.kaart__link {
  display: inline-block;
  margin-top: 20px;
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--kleur-accent);
  transition: color 0.3s ease;
}

.kaart__link:hover {
  color: var(--kleur-accent-licht);
}

/* === CTA SECTIE === */
.cta-sectie {
  background-color: var(--kleur-bg-secundair);
  border-top: 1px solid var(--kleur-rand);
  border-bottom: 1px solid var(--kleur-rand);
  padding: 100px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-sectie::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(139,111,71,0.07) 0%, transparent 70%);
  pointer-events: none;
}

.cta-sectie__inner {
  position: relative;
  z-index: 1;
  max-width: 680px;
  margin: 0 auto;
}

.cta-sectie__label {
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--kleur-accent);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.cta-sectie__label::before,
.cta-sectie__label::after {
  content: '';
  width: 32px;
  height: 1px;
  background-color: var(--kleur-accent);
  opacity: 0.5;
}

.cta-sectie__titel {
  font-family: var(--font-titel);
  font-size: clamp(32px, 5vw, 58px);
  font-weight: 300;
  color: var(--kleur-tekst-primair);
  letter-spacing: 0.02em;
  line-height: 1.2;
  margin-bottom: 24px;
  animation: titel-glans 5s ease-in-out infinite;
}

.cta-sectie__tekst {
  font-size: 16px;
  color: var(--kleur-tekst-secundair);
  line-height: 1.85;
  margin-bottom: 44px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.cta-sectie__knoppen {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* === SCHEIDINGSLIJN === */
.scheidingslijn {
  width: 60px;
  height: 1px;
  background-color: var(--kleur-accent);
  margin: 0 auto 32px;
}

/* === FOOTER === */
.footer {
  background-color: var(--kleur-bg-secundair);
  border-top: 1px solid var(--kleur-rand);
  padding: 64px 24px 32px;
}

.footer__inner {
  max-width: var(--max-breedte);
  margin: 0 auto;
}

.footer__rijen {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer__logo {
  font-family: var(--font-titel);
  font-size: 20px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.footer__logo span {
  color: var(--kleur-accent);
}

.footer__beschrijving {
  font-size: 14px;
  color: var(--kleur-tekst-secundair);
  line-height: 1.7;
  max-width: 280px;
}

.footer__koptekst {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--kleur-accent);
  margin-bottom: 20px;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__link {
  font-size: 14px;
  color: var(--kleur-tekst-secundair);
  transition: color 0.3s ease;
}

.footer__link:hover {
  color: var(--kleur-tekst-primair);
}

.footer__contact-item {
  font-size: 14px;
  color: var(--kleur-tekst-secundair);
  margin-bottom: 8px;
}

.footer__bodem {
  border-top: 1px solid var(--kleur-rand);
  padding-top: 24px;
  text-align: center;
  font-size: 13px;
  color: var(--kleur-tekst-secundair);
}

/* === FORMULIER === */
.formulier {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.formulier__rij {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.formulier__groep {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.formulier__label {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--kleur-tekst-secundair);
}

.formulier__input,
.formulier__textarea {
  background-color: var(--kleur-bg-kaart);
  border: 1px solid var(--kleur-rand);
  color: var(--kleur-tekst-primair);
  font-family: var(--font-tekst);
  font-size: 15px;
  font-weight: 300;
  padding: 14px 16px;
  border-radius: 2px;
  transition: border-color 0.3s ease;
  outline: none;
}

.formulier__input:focus,
.formulier__textarea:focus {
  border-color: var(--kleur-accent);
}

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

/* === ACCORDION (FAQ) === */
.accordion {
  border-top: 1px solid var(--kleur-rand);
}

.accordion__item {
  border-bottom: 1px solid var(--kleur-rand);
}

.accordion__knop {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  gap: 16px;
}

.accordion__vraag {
  font-family: var(--font-titel);
  font-size: 20px;
  font-weight: 400;
  color: var(--kleur-tekst-primair);
}

.accordion__icoon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  position: relative;
  color: var(--kleur-accent);
}

.accordion__icoon::before,
.accordion__icoon::after {
  content: '';
  position: absolute;
  background-color: currentColor;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.accordion__icoon::before {
  width: 14px;
  height: 1px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.accordion__icoon::after {
  width: 1px;
  height: 14px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.accordion__item.open .accordion__icoon::after {
  transform: translate(-50%, -50%) rotate(90deg);
  opacity: 0;
}

.accordion__antwoord {
  display: none;
  padding: 0 0 24px;
  font-size: 15px;
  color: var(--kleur-tekst-secundair);
  line-height: 1.7;
  max-width: 720px;
}

.accordion__item.open .accordion__antwoord {
  display: block;
}

/* === REVIEWS === */
.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.review-kaart {
  background-color: var(--kleur-bg-kaart);
  border: 1px solid var(--kleur-rand);
  padding: 32px;
}

.review-kaart__sterren {
  color: var(--kleur-accent);
  font-size: 16px;
  letter-spacing: 4px;
  margin-bottom: 20px;
}

.review-kaart__tekst {
  font-family: var(--font-titel);
  font-size: 18px;
  font-style: italic;
  color: var(--kleur-tekst-primair);
  line-height: 1.6;
  margin-bottom: 24px;
}

.review-kaart__naam {
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--kleur-accent);
}

.review-kaart__locatie {
  font-size: 13px;
  color: var(--kleur-tekst-secundair);
  margin-top: 4px;
}

/* === CONTACT PAGINA === */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact-info__item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 28px;
}

.contact-info__label {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--kleur-accent);
}

.contact-info__waarde {
  font-size: 16px;
  color: var(--kleur-tekst-primair);
}

/* === REALISATIES GRID === */
.realisaties-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.realisatie-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
}

.realisatie-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.8;
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.realisatie-item:hover img {
  opacity: 1;
  transform: scale(1.03);
}

.realisatie-item__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,26,24,0.8) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.3s ease;
  display: flex;
  align-items: flex-end;
  padding: 20px;
}

.realisatie-item:hover .realisatie-item__overlay {
  opacity: 1;
}

.realisatie-item__label {
  font-family: var(--font-titel);
  font-size: 18px;
  color: var(--kleur-tekst-primair);
}

/* === USP SECTIE === */
.usp-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.usp-item {
  text-align: center;
}

.usp-item__getal {
  font-family: var(--font-titel);
  font-size: 48px;
  font-weight: 300;
  color: var(--kleur-accent);
  line-height: 1;
  margin-bottom: 8px;
}

.usp-item__label {
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--kleur-tekst-secundair);
}

/* === TWEEKOLOMSLAYOUT === */
.twee-kolommen {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.twee-kolommen__afbeelding img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  opacity: 0.85;
}

.twee-kolommen__tekst .sectie__label {
  text-align: left;
}

.twee-kolommen__tekst .sectie__titel {
  text-align: left;
}

.twee-kolommen__tekst .scheidingslijn {
  margin: 0 0 24px;
}

.twee-kolommen__tekst p {
  color: var(--kleur-tekst-secundair);
  margin-bottom: 16px;
  font-size: 16px;
}

/* === INTRO SCHERM === */
.intro-scherm {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background-color: var(--kleur-bg-primair);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: opacity 0.9s ease;
}

.intro-scherm.verdwijnen {
  opacity: 0;
  pointer-events: none;
}

.intro-scherm.verborgen {
  display: none;
}

.intro-scherm__inhoud {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  animation: introVerschijn 1.2s ease forwards;
}

.intro-scherm__icoon {
  color: var(--kleur-accent);
}

.intro-scherm__naam {
  font-family: var(--font-titel);
  font-size: clamp(40px, 8vw, 90px);
  font-weight: 300;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--kleur-tekst-primair);
  line-height: 1.1;
}

.intro-scherm__naam em {
  font-style: normal;
  color: var(--kleur-accent);
}

.intro-scherm__lijn {
  width: 60px;
  height: 1px;
  background-color: var(--kleur-accent);
}

.intro-scherm__hint {
  font-family: var(--font-tekst);
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--kleur-tekst-secundair);
  animation: introKnipperen 2s ease 1.5s infinite;
  opacity: 0;
}

@keyframes introVerschijn {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes introKnipperen {
  0%, 100% { opacity: 0.3; }
  50%       { opacity: 1; }
}

/* === MOBIEL MENU OVERLAY === */
.mobiel-menu {
  display: none;
  position: fixed;
  top: var(--header-hoogte);
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(26, 26, 24, 0.82);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  z-index: 998;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 36px;
}

.mobiel-menu.open {
  display: flex;
}

.mobiel-menu__link {
  font-family: var(--font-titel);
  font-size: 28px;
  font-weight: 300;
  color: var(--kleur-tekst-secundair);
  letter-spacing: 0.05em;
  transition: color 0.3s ease;
  display: flex;
  align-items: center;
  gap: 16px;
}

.mobiel-menu__link::before,
.mobiel-menu__link::after {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background-color: var(--kleur-accent);
  opacity: 0.5;
  transition: width 0.3s ease, opacity 0.3s ease;
  flex-shrink: 0;
}

.mobiel-menu__link:hover,
.mobiel-menu__link.actief {
  color: var(--kleur-tekst-primair);
}

.mobiel-menu__link:hover::before,
.mobiel-menu__link:hover::after,
.mobiel-menu__link.actief::before,
.mobiel-menu__link.actief::after {
  width: 36px;
  opacity: 1;
}

/* === RESPONSIVE === */
@media (max-width: 1024px) {
  .kaarten-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .usp-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer__rijen {
    grid-template-columns: 1fr 1fr;
  }

  .review-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .realisaties-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .nav__menu--links,
  .nav__menu--rechts {
    display: none;
  }

  .nav__hamburger {
    display: flex;
    position: absolute;
    right: 16px;
  }

  .nav__inner {
    padding: 0 16px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    position: relative;
  }

  .nav__midden {
    justify-content: flex-start;
  }

  .nav__streep {
    display: none;
  }

  .hero-gesplitst {
    height: auto;
    min-height: calc(100vh - var(--nav-hoogte));
  }

  .hero-gesplitst__vlakken {
    flex-direction: column;
  }

  .hero-gesplitst__vlak {
    flex: none !important;
    height: 50vh;
    min-height: 300px;
  }

  .hero-gesplitst__scheidslijn {
    top: 50%;
    bottom: auto;
    left: 0;
    right: 0;
    width: 100%;
    height: 1px;
  }

  .sectie {
    padding: 64px 20px;
  }

  .kaarten-grid {
    grid-template-columns: 1fr;
  }

  .twee-kolommen {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .twee-kolommen__afbeelding {
    order: -1;
  }

  .contact-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .formulier__rij {
    grid-template-columns: 1fr;
  }

  .footer__rijen {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .review-grid {
    grid-template-columns: 1fr;
  }

  .realisaties-grid {
    grid-template-columns: 1fr;
  }

  .usp-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }

  .hero__titel {
    font-size: clamp(36px, 10vw, 54px);
  }

  /* Nav hoogte kleiner op mobiel */
  :root {
    --nav-hoogte: 60px;
  }

  /* Hero gesplitst correcte hoogte */
  .hero-gesplitst {
    min-height: calc(100vh - var(--header-hoogte));
  }

  /* Verberg center strip op mobiel (geen hover) */
  .hero-gesplitst__midden {
    display: none;
  }

  /* Hero vlak — mobiele tik-interactie */
  .hero-gesplitst__label {
    opacity: 1;
    transform: translateY(0);
  }

  .hero-gesplitst__subtitel {
    opacity: 0 !important;
    transform: translateY(8px);
    font-size: 13px;
    max-width: 100%;
    transition: opacity 0.5s ease, transform 0.5s ease;
  }

  .hero-gesplitst__vlak.vlak--stap1 .hero-gesplitst__subtitel {
    opacity: 1 !important;
    transform: translateY(0);
  }

  .hero-gesplitst__pijl {
    display: none;
  }

  /* Hint tekst (tik-uitnodiging) */
  .vlak-hint {
    display: block;
    margin-top: 14px;
    font-family: var(--font-tekst);
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--kleur-accent);
    transition: opacity 0.4s ease;
    animation: pijl-puls 2s ease-in-out infinite;
  }

  .hero-gesplitst__vlak.vlak--stap1 .vlak-hint {
    color: var(--kleur-tekst-primair);
    letter-spacing: 0.14em;
    animation: none;
  }

  .hero-gesplitst__vlak-inhoud {
    bottom: 28px;
    padding: 0 20px;
  }

  .hero-gesplitst__titel {
    font-size: clamp(22px, 6vw, 32px);
    gap: 8px;
  }

  .hero-gesplitst__titel::before,
  .hero-gesplitst__titel::after {
    width: 16px;
  }

  /* Streepjes altijd zichtbaar op mobiel — hover werkt anders op touch */
  .hero-gesplitst__vlak:hover .hero-gesplitst__titel::before,
  .hero-gesplitst__vlak:hover .hero-gesplitst__titel::after {
    opacity: 1;
    width: 16px;
  }

  /* CTA sectie mobiel */
  .cta-sectie {
    padding: 72px 24px;
  }

  .cta-sectie__knoppen {
    flex-direction: column;
    align-items: center;
  }

  .cta-sectie__knoppen .knop {
    width: 100%;
    max-width: 320px;
    text-align: center;
  }

  /* Statement grid 1 kolom */
  .statement-grid {
    grid-template-columns: 1fr;
  }

  .statement-item {
    border-right: none;
    border-bottom: 1px solid var(--kleur-rand);
    padding: 40px 28px;
  }

  .statement-item:last-child {
    border-bottom: none;
  }

  /* Team grid 1 kolom */
  .team-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
  }

  .team-kaart {
    padding: 32px 24px;
  }

  /* Spec kaart subtekst altijd zichtbaar op mobiel */
  .spec-kaart__subtekst {
    opacity: 1;
    transform: translateY(0);
  }

  /* Pagina hero kleinere padding */
  .pagina-hero {
    padding: calc(var(--header-hoogte) + 40px) 20px 48px;
  }

  .pagina-hero__titel {
    font-size: clamp(24px, 7vw, 40px);
  }

  /* Sectie hoofd minder ruimte */
  .sectie__hoofd {
    margin-bottom: 40px;
  }

  .sectie__titel {
    font-size: clamp(26px, 7vw, 40px);
  }

  /* Knoppen op mobiel iets groter klikgebied */
  .knop {
    padding: 16px 32px;
  }

  /* Spec kaart opties groter op mobiel */
  .spec-kaart__optie {
    padding: 12px 16px;
    font-size: 12px;
  }

  /* USP grid 1 kolom op klein scherm */
  .usp-grid {
    grid-template-columns: 1fr;
  }
}

/* === MENU TOOLTIP (mobiel) === */
.menu-tooltip {
  position: fixed;
  top: calc(var(--nav-hoogte) + var(--ticker-hoogte) + 6px);
  right: 8px;
  background: rgba(43, 38, 32, 0.97);
  color: var(--kleur-tekst-primair);
  font-family: var(--font-tekst);
  font-size: 12px;
  letter-spacing: 0.08em;
  padding: 8px 14px;
  border: 1px solid var(--kleur-accent);
  border-radius: 2px;
  z-index: 1100;
  pointer-events: none;
  opacity: 1;
  transition: opacity 0.5s ease;
}

.menu-tooltip::before {
  content: '';
  position: absolute;
  top: -5px;
  right: 10px;
  width: 8px;
  height: 8px;
  background: rgba(43, 38, 32, 0.97);
  border-left: 1px solid var(--kleur-accent);
  border-top: 1px solid var(--kleur-accent);
  transform: rotate(45deg);
}

.menu-tooltip.verdwijnen {
  opacity: 0;
}

/* === SOCIAL MEDIA PAGINA === */
.social-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.social-kaart {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 40px 32px;
  background-color: var(--kleur-bg-kaart);
  border: 1px solid var(--kleur-rand);
  text-decoration: none;
  color: var(--kleur-tekst-primair);
  transition: border-color 0.3s ease, transform 0.3s ease;
}

.social-kaart:hover {
  border-color: var(--kleur-accent);
  transform: translateY(-4px);
}

.social-kaart__icoon {
  width: 40px;
  height: 40px;
  color: var(--kleur-accent);
  margin-bottom: 28px;
}

.social-kaart__icoon svg {
  width: 100%;
  height: 100%;
}

.social-kaart__platform {
  font-family: var(--font-tekst);
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--kleur-accent);
  margin-bottom: 8px;
}

.social-kaart__naam {
  font-family: var(--font-titel);
  font-size: 22px;
  font-weight: 400;
  color: var(--kleur-tekst-primair);
  margin-bottom: 16px;
}

.social-kaart__tekst {
  font-family: var(--font-tekst);
  font-size: 15px;
  color: var(--kleur-tekst-secundair);
  line-height: 1.7;
  margin-bottom: 28px;
  flex: 1;
}

.social-kaart__knop {
  font-family: var(--font-tekst);
  font-size: 13px;
  letter-spacing: 0.12em;
  color: var(--kleur-accent);
  transition: letter-spacing 0.3s ease;
}

.social-kaart:hover .social-kaart__knop {
  letter-spacing: 0.2em;
}

.social-cta-knoppen {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.knop--omlijnd {
  display: inline-block;
  padding: 14px 32px;
  font-family: var(--font-tekst);
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid var(--kleur-accent);
  color: var(--kleur-accent);
  background: transparent;
  border-radius: 2px;
  transition: background-color 0.3s ease, color 0.3s ease;
  cursor: pointer;
}

.knop--omlijnd:hover {
  background-color: var(--kleur-accent);
  color: var(--kleur-tekst-primair);
}

@media (max-width: 900px) {
  .social-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .social-kaart {
    padding: 32px 24px;
  }
}

/* ============================
   MEUBEL CONFIGURATOR
   ============================ */

.configurator {
  padding: 80px 0 120px;
  background: var(--kleur-bg-primair);
}

.configurator__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.configurator__preview {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.configurator__foto-kader {
  background: var(--kleur-bg-secundair);
  border: 1px solid var(--kleur-rand);
  border-radius: 2px;
  overflow: hidden;
}

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

.configurator__foto-label {
  text-align: center;
  color: var(--kleur-tekst-secundair);
  font-size: 11px;
  padding: 10px;
  font-family: var(--font-tekst);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  background: var(--kleur-bg-secundair);
}

.configurator__preview-kader {
  background: var(--kleur-bg-secundair);
  border: 1px solid var(--kleur-rand);
  padding: 0;
  border-radius: 2px;
  overflow: hidden;
}

.configurator__preview-kader svg {
  width: 100%;
  height: auto;
  display: block;
  vertical-align: bottom;
}

.configurator__preview-label {
  text-align: center;
  color: var(--kleur-tekst-secundair);
  font-size: 11px;
  margin-top: 12px;
  font-family: var(--font-tekst);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.configurator__afmetingen {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 14px;
  flex-wrap: wrap;
}

.afmeting-badge {
  font-family: var(--font-tekst);
  font-size: 12px;
  color: var(--kleur-tekst-secundair);
  background: var(--kleur-bg-secundair);
  border: 1px solid var(--kleur-rand);
  padding: 4px 12px;
  border-radius: 2px;
  letter-spacing: 0.04em;
}

.afmeting-badge span {
  color: var(--kleur-accent);
}

.configurator__stappen {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.stap {
  background: var(--kleur-bg-secundair);
  border: 1px solid var(--kleur-rand);
  border-radius: 2px;
  overflow: hidden;
  transition: border-color 0.3s ease;
}

.stap.voltooid {
  border-color: var(--kleur-accent);
}

.stap__header {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 22px;
}

.stap__nummer {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--kleur-rand);
  color: var(--kleur-tekst-secundair);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-titel);
  font-size: 13px;
  flex-shrink: 0;
  transition: background 0.3s ease, color 0.3s ease;
}

.stap.voltooid .stap__nummer {
  background: var(--kleur-accent);
  color: var(--kleur-tekst-primair);
}

.stap__titel {
  font-family: var(--font-titel);
  font-size: 19px;
  color: var(--kleur-tekst-primair);
  font-weight: 400;
  margin: 0;
  flex: 1;
}

.stap__waarde {
  font-family: var(--font-tekst);
  font-size: 13px;
  color: var(--kleur-accent);
  letter-spacing: 0.03em;
}

.stap__inhoud {
  padding: 0 22px 20px;
}

.lengte-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
}

.lengte-meta__label {
  color: var(--kleur-tekst-secundair);
  font-family: var(--font-tekst);
  font-size: 13px;
}

.tooltip-wrapper {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.tooltip-ster {
  color: var(--kleur-accent);
  font-size: 14px;
  cursor: help;
  line-height: 1;
}

.tooltip-box {
  display: none;
  position: absolute;
  bottom: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--kleur-bg-secundair);
  border: 1px solid var(--kleur-accent);
  color: var(--kleur-tekst-primair);
  font-family: var(--font-tekst);
  font-size: 13px;
  line-height: 1.7;
  padding: 14px 16px;
  width: 270px;
  border-radius: 2px;
  z-index: 200;
  pointer-events: all;
}

.tooltip-box a {
  color: var(--kleur-accent);
}

.tooltip-box a:hover {
  text-decoration: underline;
}

.tooltip-box::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 6px solid transparent;
  border-top-color: var(--kleur-accent);
}

.lengte-kiezer {
  display: flex;
  align-items: center;
  gap: 10px;
}

.lengte-kiezer__knop {
  width: 38px;
  height: 38px;
  background: var(--kleur-bg-primair);
  color: var(--kleur-tekst-primair);
  border: 1px solid var(--kleur-rand);
  border-radius: 2px;
  font-size: 22px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, border-color 0.2s ease;
  flex-shrink: 0;
  font-weight: 300;
  line-height: 1;
  font-family: var(--font-tekst);
}

.lengte-kiezer__knop:hover:not(:disabled) {
  background: var(--kleur-accent);
  border-color: var(--kleur-accent);
}

.lengte-kiezer__knop:disabled {
  opacity: 0.25;
  cursor: not-allowed;
}

.lengte-kiezer__invoer-wrapper {
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--kleur-bg-primair);
  border: 1px solid var(--kleur-rand);
  border-radius: 2px;
  padding: 0 14px;
  flex: 1;
  max-width: 150px;
  transition: border-color 0.2s ease;
}

.lengte-kiezer__invoer-wrapper:focus-within {
  border-color: var(--kleur-accent);
}

.lengte-kiezer__invoer {
  background: transparent;
  border: none;
  color: var(--kleur-tekst-primair);
  font-family: var(--font-tekst);
  font-size: 20px;
  font-weight: 300;
  width: 72px;
  text-align: center;
  outline: none;
  padding: 8px 0;
}

.lengte-kiezer__eenheid {
  color: var(--kleur-tekst-secundair);
  font-family: var(--font-tekst);
  font-size: 15px;
}

.lengte-melding {
  display: none;
  margin-top: 14px;
  background: rgba(139, 111, 71, 0.1);
  border: 1px solid var(--kleur-accent);
  border-radius: 2px;
  padding: 12px 16px;
  color: var(--kleur-tekst-primair);
  font-family: var(--font-tekst);
  font-size: 13px;
  line-height: 1.65;
}

.lengte-melding.zichtbaar {
  display: block;
}

.opties-rij {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.optie-knop {
  padding: 9px 20px;
  background: var(--kleur-bg-primair);
  border: 1px solid var(--kleur-rand);
  border-radius: 2px;
  color: var(--kleur-tekst-secundair);
  font-family: var(--font-tekst);
  font-size: 14px;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.optie-knop:hover {
  border-color: var(--kleur-accent);
  color: var(--kleur-tekst-primair);
}

.optie-knop.geselecteerd {
  background: var(--kleur-accent);
  border-color: var(--kleur-accent);
  color: var(--kleur-tekst-primair);
}

.stap__placeholder {
  color: var(--kleur-tekst-secundair);
  font-family: var(--font-tekst);
  font-size: 14px;
  font-style: italic;
  line-height: 1.6;
}

.grepen-submenu {
  display: none;
  margin-top: 14px;
  padding: 16px;
  background: var(--kleur-bg-primair);
  border: 1px solid var(--kleur-rand);
  border-radius: 2px;
}

.grepen-submenu.zichtbaar {
  display: block;
}

.tipon-info {
  display: none;
  margin-top: 14px;
  padding: 14px 16px;
  background: rgba(139, 111, 71, 0.07);
  border-left: 2px solid var(--kleur-accent);
  color: var(--kleur-tekst-secundair);
  font-family: var(--font-tekst);
  font-size: 13px;
  line-height: 1.7;
}

.tipon-info.zichtbaar {
  display: block;
}

.tipon-info strong {
  color: var(--kleur-tekst-primair);
}

.configurator__samenvatting {
  background: var(--kleur-bg-secundair);
  border: 1px solid var(--kleur-rand);
  border-radius: 2px;
  padding: 26px;
  margin-top: 8px;
}

.samenvatting__titel {
  font-family: var(--font-titel);
  font-size: 24px;
  color: var(--kleur-tekst-primair);
  font-weight: 400;
  margin: 0 0 18px;
  letter-spacing: 0.04em;
}

.samenvatting__rijen {
  border: 1px solid var(--kleur-rand);
  border-radius: 2px;
  overflow: hidden;
  margin-bottom: 20px;
}

.samenvatting__rij {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-tekst);
  font-size: 14px;
  padding: 10px 16px;
  border-bottom: 1px solid var(--kleur-rand);
}

.samenvatting__rij:last-child {
  border-bottom: none;
}

.samenvatting__sleutel {
  color: var(--kleur-tekst-secundair);
}

.samenvatting__waarde {
  color: var(--kleur-tekst-primair);
}

.samenvatting__waarde--ontbreekt {
  color: var(--kleur-rand);
  font-style: italic;
}

.samenvatting__check {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 18px;
}

.samenvatting__check input[type="checkbox"] {
  width: 17px;
  height: 17px;
  accent-color: var(--kleur-accent);
  cursor: pointer;
  flex-shrink: 0;
  margin-top: 2px;
}

.samenvatting__check label {
  color: var(--kleur-tekst-secundair);
  font-family: var(--font-tekst);
  font-size: 14px;
  line-height: 1.5;
  cursor: pointer;
}

.bestel-knop {
  width: 100%;
  padding: 16px 20px;
  background: var(--kleur-rand);
  color: var(--kleur-tekst-secundair);
  border: 1px solid var(--kleur-rand);
  border-radius: 2px;
  font-family: var(--font-titel);
  font-size: 17px;
  letter-spacing: 0.08em;
  cursor: not-allowed;
  transition: all 0.3s ease;
}

.bestel-knop.actief {
  background: var(--kleur-accent);
  border-color: var(--kleur-accent);
  color: var(--kleur-tekst-primair);
  cursor: pointer;
}

.bestel-knop.actief:hover {
  background: var(--kleur-accent-licht);
  border-color: var(--kleur-accent-licht);
}

/* ============================
   BESTEL PAGINA
   ============================ */

.bestel-sectie {
  padding: 80px 0 120px;
}

.bestel-sectie__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.bestel-overzicht {
  position: sticky;
  top: calc(var(--header-hoogte) + 28px);
}

.bestel-overzicht__svg-kader {
  background: var(--kleur-bg-secundair);
  border: 1px solid var(--kleur-rand);
  padding: 28px 20px;
  border-radius: 2px;
  margin-bottom: 20px;
}

.bestel-overzicht__titel {
  font-family: var(--font-tekst);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--kleur-tekst-secundair);
  text-align: center;
  margin-top: 12px;
}

.bestel-config-lijst {
  background: var(--kleur-bg-secundair);
  border: 1px solid var(--kleur-rand);
  border-radius: 2px;
  overflow: hidden;
}

.bestel-config-lijst__kop {
  padding: 14px 18px;
  border-bottom: 1px solid var(--kleur-rand);
  font-family: var(--font-titel);
  font-size: 17px;
  color: var(--kleur-tekst-primair);
  font-weight: 400;
  letter-spacing: 0.05em;
}

.bestel-formulier {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.bestel-formulier__titel {
  font-family: var(--font-titel);
  font-size: 28px;
  color: var(--kleur-tekst-primair);
  font-weight: 400;
  letter-spacing: 0.04em;
  margin-bottom: -4px;
}

.bestel-formulier__subtitel {
  color: var(--kleur-tekst-secundair);
  font-family: var(--font-tekst);
  font-size: 14px;
  margin-top: -14px;
}

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

.form-veld {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.form-veld--vol {
  grid-column: 1 / -1;
}

.form-label {
  font-family: var(--font-tekst);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--kleur-tekst-secundair);
}

.form-input {
  background: var(--kleur-bg-secundair);
  border: 1px solid var(--kleur-rand);
  border-radius: 2px;
  padding: 11px 15px;
  color: var(--kleur-tekst-primair);
  font-family: var(--font-tekst);
  font-size: 15px;
  font-weight: 300;
  outline: none;
  transition: border-color 0.2s ease;
  width: 100%;
}

.form-input:focus {
  border-color: var(--kleur-accent);
}

.form-input[type="date"] {
  color-scheme: dark;
}

.montage-optie {
  padding: 18px 20px;
  background: var(--kleur-bg-secundair);
  border: 1px solid var(--kleur-rand);
  border-radius: 2px;
  opacity: 0.45;
  position: relative;
}

.montage-optie__label {
  font-family: var(--font-titel);
  font-size: 17px;
  color: var(--kleur-tekst-primair);
  margin-bottom: 4px;
  font-weight: 400;
}

.montage-optie__tekst {
  font-family: var(--font-tekst);
  font-size: 13px;
  color: var(--kleur-tekst-secundair);
}

.montage-optie__binnenkort {
  position: absolute;
  top: 12px;
  right: 12px;
  font-family: var(--font-tekst);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--kleur-accent);
  background: rgba(139,111,71,0.12);
  padding: 3px 8px;
  border-radius: 2px;
}

.bestel-verzend-knop {
  width: 100%;
  padding: 17px 20px;
  background: var(--kleur-accent);
  color: var(--kleur-tekst-primair);
  border: none;
  border-radius: 2px;
  font-family: var(--font-titel);
  font-size: 18px;
  letter-spacing: 0.06em;
  cursor: pointer;
  transition: background 0.3s ease;
}

.bestel-verzend-knop:hover {
  background: var(--kleur-accent-licht);
}

.bestel-bevestiging {
  display: none;
  padding: 28px;
  background: rgba(139,111,71,0.1);
  border: 1px solid var(--kleur-accent);
  border-radius: 2px;
  text-align: center;
}

.bestel-bevestiging.zichtbaar {
  display: block;
}

.bestel-bevestiging__titel {
  font-family: var(--font-titel);
  font-size: 26px;
  color: var(--kleur-tekst-primair);
  font-weight: 400;
  margin-bottom: 10px;
}

.bestel-bevestiging__tekst {
  font-family: var(--font-tekst);
  font-size: 14px;
  color: var(--kleur-tekst-secundair);
  line-height: 1.7;
}

.geen-config {
  grid-column: 1 / -1;
  text-align: center;
  padding: 80px 20px;
  color: var(--kleur-tekst-secundair);
  font-family: var(--font-tekst);
}

.geen-config a {
  color: var(--kleur-accent);
  text-decoration: underline;
}

/* ── Accordion vaste maten ── */
.afm-cat {
  border: 1px solid var(--kleur-rand);
  border-radius: 2px;
  margin-bottom: 6px;
  overflow: hidden;
}

.afm-cat__header {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 16px;
  background: var(--kleur-bg-primair);
  border: none;
  color: var(--kleur-tekst-secundair);
  font-family: var(--font-tekst);
  font-size: 14px;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
  text-align: left;
}

.afm-cat__header:hover,
.afm-cat__header.actief {
  background: var(--kleur-bg-secundair);
  color: var(--kleur-tekst-primair);
}

.afm-cat__header.actief {
  border-bottom: 1px solid var(--kleur-rand);
  color: var(--kleur-accent);
}

.afm-pijl {
  font-size: 12px;
  transition: transform 0.2s ease;
  flex-shrink: 0;
}

.afm-cat__body {
  display: none;
  padding: 12px;
  background: var(--kleur-bg-primair);
}

.afm-bh-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
}

.afm-bh-knop {
  padding: 8px 4px;
  background: var(--kleur-bg-secundair);
  border: 1px solid var(--kleur-rand);
  border-radius: 2px;
  color: var(--kleur-tekst-secundair);
  font-family: var(--font-tekst);
  font-size: 11px;
  cursor: pointer;
  text-align: center;
  line-height: 1.4;
  transition: all 0.2s ease;
}

.afm-bh-knop:hover {
  border-color: var(--kleur-accent);
  color: var(--kleur-tekst-primair);
}

.afm-bh-knop.geselecteerd {
  background: var(--kleur-accent);
  border-color: var(--kleur-accent);
  color: var(--kleur-tekst-primair);
}

.afm-eigen-link {
  width: 100%;
  margin-top: 12px;
  padding: 10px;
  background: none;
  border: none;
  color: var(--kleur-accent);
  font-family: var(--font-tekst);
  font-size: 13px;
  cursor: pointer;
  text-align: left;
  letter-spacing: 0.03em;
  transition: opacity 0.2s ease;
}

.afm-eigen-link:hover { opacity: 0.7; }

/* ── Eigen maten invoer ── */
.eigen-maten-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 12px;
  margin-bottom: 14px;
}

.eigen-maat-veld { display: flex; flex-direction: column; gap: 6px; }

.eigen-invoer-wrapper {
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--kleur-bg-primair);
  border: 1px solid var(--kleur-rand);
  border-radius: 2px;
  padding: 0 12px;
  transition: border-color 0.2s ease;
}

.eigen-invoer-wrapper:focus-within { border-color: var(--kleur-accent); }

.eigen-invoer-wrapper input {
  background: transparent;
  border: none;
  color: var(--kleur-tekst-primair);
  font-family: var(--font-tekst);
  font-size: 16px;
  font-weight: 300;
  width: 100%;
  padding: 9px 0;
  outline: none;
}

.eigen-invoer-wrapper input::-webkit-inner-spin-button,
.eigen-invoer-wrapper input::-webkit-outer-spin-button { -webkit-appearance: none; }

.eigen-invoer-wrapper span {
  color: var(--kleur-tekst-secundair);
  font-family: var(--font-tekst);
  font-size: 13px;
  flex-shrink: 0;
}

.eigen-toepassen-knop {
  width: 100%;
  padding: 11px;
  background: var(--kleur-bg-secundair);
  border: 1px solid var(--kleur-rand);
  border-radius: 2px;
  color: var(--kleur-tekst-secundair);
  font-family: var(--font-tekst);
  font-size: 14px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.eigen-toepassen-knop:hover {
  background: var(--kleur-accent);
  border-color: var(--kleur-accent);
  color: var(--kleur-tekst-primair);
}

@media (max-width: 900px) {
  .afm-bh-grid { grid-template-columns: repeat(2, 1fr); }
  .eigen-maten-grid { grid-template-columns: 1fr; }
}

@media (max-width: 900px) {
  .configurator__inner,
  .bestel-sectie__inner {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 0 20px;
  }

  .configurator__preview,
  .bestel-overzicht {
    position: static;
  }

  .lengte-kiezer__invoer-wrapper {
    max-width: 130px;
  }

  .form-rij {
    grid-template-columns: 1fr;
  }
}
