/* ============================================================
   PC Interieur — design system
   Apple-inspired: veel witruimte, warm-neutraal palet, rustige
   typografie, subtiele beweging.
   ============================================================ */

:root {
  --wit: #faf9f7;
  --wit-puur: #ffffff;
  --zand: #ece7df;
  --zand-diep: #d9d2c6;
  --grijs-licht: #f4f3f0;
  --grijs: #8d8a84;
  --antraciet: #2b2a28;
  --zwart: #121110;
  --brons: #a08c6f;
  --brons-donker: #85735a;
  --lijn: rgba(18, 17, 16, 0.08);

  --font: "Inter", -apple-system, BlinkMacSystemFont, "SF Pro Display",
    "Segoe UI", Helvetica, Arial, sans-serif;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --dur: 0.9s;

  --max: 1240px;
  --max-tekst: 720px;
  --pad: clamp(1.25rem, 4vw, 3rem);
  --sectie: clamp(5rem, 12vw, 10rem);
}

/* ---------- dark mode ---------- */

:root { color-scheme: light; }

:root[data-theme="dark"] {
  color-scheme: dark;
  --wit: #161411;
  --wit-puur: #201d1a;
  --zand: #262220;
  --zand-diep: #3a342c;
  --grijs-licht: #1d1b18;
  --grijs: #a49f96;
  --antraciet: #e6e2db;
  --zwart: #f4f1ec;
  --brons: #b8a284;
  --brons-donker: #c4b090;
  --lijn: rgba(244, 241, 236, 0.1);
}

:root[data-theme="dark"] .footer,
:root[data-theme="dark"] .vlak-donker { background: #0b0a09; }
:root[data-theme="dark"] .knop-donker,
:root[data-theme="dark"] .knop-primair,
:root[data-theme="dark"] .nav-cta,
:root[data-theme="dark"] .nieuwsbrief button,
:root[data-theme="dark"] .collectie-subnav a.actief { color: #161411; }
:root[data-theme="dark"] .nav-cta { color: #161411 !important; }
:root[data-theme="dark"] .knop-donker:hover { color: #161411; }
:root[data-theme="dark"] .nav.gescrold { background: rgba(22, 20, 17, 0.82); }
:root[data-theme="dark"] .mobiel-menu { background: rgba(22, 20, 17, 0.97); }
:root[data-theme="dark"] .submenu { background: rgba(32, 29, 26, 0.95); box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5); }
:root[data-theme="dark"] .knop-lijn { box-shadow: inset 0 0 0 1.5px rgba(244, 241, 236, 0.28); }
:root[data-theme="dark"] .knop-lijn:hover { box-shadow: inset 0 0 0 1.5px var(--zwart); }
:root[data-theme="dark"] .form-succes { background: #22301f; color: #a8c79f; }
:root[data-theme="dark"] .kaart-embed iframe { filter: grayscale(0.3) invert(0.9) hue-rotate(180deg); }
:root[data-theme="dark"] ::selection { background: var(--zand-diep); color: #fff; }

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--antraciet);
  background: var(--wit);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  transition: background 0.4s ease, color 0.4s ease;
}

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

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

::selection { background: var(--zand-diep); color: var(--zwart); }

/* ---------- typografie ---------- */

h1, h2, h3, h4 {
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.08;
  color: var(--zwart);
}

.display {
  font-size: clamp(2.6rem, 6.5vw, 5.2rem);
  font-weight: 650;
}

.titel-xl { font-size: clamp(2.2rem, 4.6vw, 3.6rem); }
.titel-l  { font-size: clamp(1.7rem, 3.2vw, 2.5rem); }
.titel-m  { font-size: clamp(1.25rem, 2vw, 1.55rem); letter-spacing: -0.015em; }

.eyebrow {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brons);
  margin-bottom: 1.1rem;
}

.lead {
  font-size: clamp(1.15rem, 1.8vw, 1.4rem);
  line-height: 1.55;
  color: var(--grijs);
  font-weight: 400;
  letter-spacing: -0.01em;
}

.tekst-zacht { color: var(--grijs); }

/* ---------- layout ---------- */

.wrap { max-width: var(--max); margin: 0 auto; padding-left: var(--pad); padding-right: var(--pad); }
.wrap-smal { max-width: var(--max-tekst); margin: 0 auto; padding-left: var(--pad); padding-right: var(--pad); }

.sectie { padding-top: var(--sectie); padding-bottom: var(--sectie); }
.sectie-strak { padding-top: calc(var(--sectie) * 0.6); padding-bottom: calc(var(--sectie) * 0.6); }

.centreer { text-align: center; }

/* ---------- navigatie ---------- */

.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  transition: background 0.45s var(--ease), box-shadow 0.45s var(--ease),
              backdrop-filter 0.45s var(--ease);
}

.nav-binnen {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad);
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.nav.gescrold {
  background: rgba(250, 249, 247, 0.82);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  backdrop-filter: saturate(180%) blur(20px);
  box-shadow: 0 1px 0 var(--lijn);
}

.nav.op-donker:not(.gescrold) { color: #fff; }
.nav.op-donker:not(.gescrold) .logo,
.nav.op-donker:not(.gescrold) .nav-links a { color: #fff; }
.nav.op-donker:not(.gescrold) .hamburger span { background: #fff; }

.logo {
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--zwart);
  white-space: nowrap;
}
.logo em { font-style: normal; font-weight: 300; }

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(1.1rem, 2vw, 1.9rem);
  list-style: none;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--antraciet);
  opacity: 0.85;
  transition: opacity 0.3s;
  white-space: nowrap;
}
.nav-links a:hover, .nav-links a[aria-current="page"] { opacity: 1; }

.nav-cta {
  padding: 0.55rem 1.15rem;
  border-radius: 999px;
  background: var(--zwart);
  color: #fff !important;
  opacity: 1 !important;
  transition: transform 0.3s var(--ease), background 0.3s;
}
.nav-cta:hover { background: var(--brons-donker); transform: translateY(-1px); }
.nav.op-donker:not(.gescrold) .nav-cta { background: rgba(255,255,255,0.16); -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px); }
.nav.op-donker:not(.gescrold) .nav-cta:hover { background: rgba(255,255,255,0.28); }

/* dropdown collectie */
.heeft-sub { position: relative; }
.submenu {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  background: rgba(255, 255, 255, 0.92);
  -webkit-backdrop-filter: saturate(180%) blur(24px);
  backdrop-filter: saturate(180%) blur(24px);
  border-radius: 18px;
  box-shadow: 0 24px 60px rgba(18, 17, 16, 0.14);
  padding: 0.9rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(150px, 1fr));
  gap: 0.15rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.35s var(--ease), transform 0.35s var(--ease), visibility 0.35s;
  list-style: none;
}
.heeft-sub:hover .submenu,
.heeft-sub:focus-within .submenu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.submenu a {
  display: block;
  padding: 0.6rem 0.9rem;
  border-radius: 10px;
  font-size: 0.9rem;
  color: var(--antraciet) !important;
  transition: background 0.25s;
}
.submenu a:hover { background: var(--grijs-licht); }

/* rechterblok: themaknop + hamburger */
.nav-rechts { display: flex; align-items: center; gap: 0.35rem; }

.thema-knop {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: none;
  border: 0;
  cursor: pointer;
  color: var(--antraciet);
  transition: background 0.3s, color 0.3s, transform 0.3s var(--ease);
}
.thema-knop:hover { background: rgba(128, 120, 108, 0.14); transform: translateY(-1px); }
.thema-knop svg { display: block; }
.thema-knop .zon { display: none; }
:root[data-theme="dark"] .thema-knop .zon { display: block; }
:root[data-theme="dark"] .thema-knop .maan { display: none; }
.nav.op-donker:not(.gescrold) .thema-knop { color: #fff; }
.menu-open .thema-knop { color: var(--antraciet) !important; position: relative; z-index: 130; }

/* hamburger + mobiel menu */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 44px;
  height: 44px;
  background: none;
  border: 0;
  cursor: pointer;
  z-index: 130;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  margin: 0 auto;
  background: var(--zwart);
  transition: transform 0.4s var(--ease), opacity 0.3s;
}
.menu-open .hamburger span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.menu-open .hamburger span:nth-child(2) { opacity: 0; }
.menu-open .hamburger span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }
.menu-open .hamburger span { background: var(--zwart) !important; }

.mobiel-menu {
  position: fixed;
  inset: 0;
  z-index: 120;
  background: rgba(250, 249, 247, 0.97);
  -webkit-backdrop-filter: blur(30px);
  backdrop-filter: blur(30px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--pad);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s var(--ease), visibility 0.5s;
}
.menu-open .mobiel-menu { opacity: 1; visibility: visible; }

.mobiel-menu ul { list-style: none; display: flex; flex-direction: column; gap: 0.35rem; }
.mobiel-menu a {
  font-size: clamp(1.6rem, 6vw, 2.2rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--zwart);
  display: inline-block;
  padding: 0.3rem 0;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}
.mobiel-menu .sub-item a { font-size: 1.1rem; font-weight: 500; color: var(--grijs); padding: 0.15rem 0; }
.menu-open .mobiel-menu a { opacity: 1; transform: none; }

/* ---------- hero ---------- */

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  color: #fff;
  isolation: isolate;
  overflow: hidden;
}
.hero.hero-half { min-height: 78svh; }

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
  overflow: hidden;
}
.hero-media img {
  width: 100%;
  height: 118%;
  object-fit: cover;
  will-change: transform;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(to top, rgba(12, 11, 10, 0.62) 0%, rgba(12, 11, 10, 0.18) 45%, rgba(12, 11, 10, 0.22) 100%);
}

.hero-inhoud {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad) clamp(4rem, 9vh, 7rem);
}

.hero h1 { color: #fff; max-width: 15ch; }
.hero .lead { color: rgba(255, 255, 255, 0.86); max-width: 46ch; margin-top: 1.4rem; }
.hero .eyebrow { color: rgba(255, 255, 255, 0.75); }

.hero-knoppen { display: flex; flex-wrap: wrap; gap: 0.9rem; margin-top: 2.4rem; }

.scroll-hint {
  position: absolute;
  left: 50%;
  bottom: 1.8rem;
  transform: translateX(-50%);
  width: 1.5px;
  height: 52px;
  overflow: hidden;
  opacity: 0.65;
}
.scroll-hint::after {
  content: "";
  position: absolute;
  inset: 0;
  background: #fff;
  animation: scrollhint 2.2s var(--ease) infinite;
}
@keyframes scrollhint {
  0% { transform: translateY(-100%); }
  55% { transform: translateY(0); }
  100% { transform: translateY(100%); }
}

/* ---------- knoppen ---------- */

.knop {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.95rem 1.9rem;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  cursor: pointer;
  border: 0;
  font-family: inherit;
  transition: transform 0.35s var(--ease), background 0.35s, box-shadow 0.35s, color 0.35s;
}
.knop svg { transition: transform 0.35s var(--ease); }
.knop:hover svg { transform: translateX(4px); }

.knop-primair { background: #fff; color: var(--zwart); }
.knop-primair:hover { transform: translateY(-2px); box-shadow: 0 14px 34px rgba(0, 0, 0, 0.22); }

.knop-donker { background: var(--zwart); color: #fff; }
.knop-donker:hover { background: var(--brons-donker); transform: translateY(-2px); box-shadow: 0 14px 30px rgba(18, 17, 16, 0.18); }

.knop-ghost { background: transparent; color: #fff; box-shadow: inset 0 0 0 1.5px rgba(255, 255, 255, 0.55); }
.knop-ghost:hover { background: rgba(255, 255, 255, 0.14); transform: translateY(-2px); }

.knop-lijn { background: transparent; color: var(--zwart); box-shadow: inset 0 0 0 1.5px rgba(18, 17, 16, 0.22); }
.knop-lijn:hover { box-shadow: inset 0 0 0 1.5px var(--zwart); transform: translateY(-2px); }

.tekstlink {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--brons-donker);
}
.tekstlink svg { transition: transform 0.3s var(--ease); }
.tekstlink:hover svg { transform: translateX(4px); }

/* ---------- reveal-animaties ---------- */

.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity var(--dur) var(--ease), transform var(--dur) var(--ease);
  transition-delay: var(--d, 0s);
}
.reveal.zichtbaar { opacity: 1; transform: none; }

.reveal-beeld {
  overflow: hidden;
  border-radius: 22px;
}
.reveal-beeld img {
  transform: scale(1.08);
  transition: transform 1.4s var(--ease);
}
.reveal-beeld.zichtbaar img { transform: scale(1); }

@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-beeld img { transition: none !important; transform: none !important; opacity: 1 !important; }
  .hero-media img { transform: none !important; }
  html { scroll-behavior: auto; }
}

/* ---------- storytelling rijen ---------- */

.story {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: clamp(1.5rem, 4vw, 4.5rem);
  align-items: center;
}
.story + .story { margin-top: var(--sectie); }

.story-beeld { grid-column: 1 / 8; }
.story-tekst { grid-column: 8 / 13; }
.story.omgekeerd .story-beeld { grid-column: 6 / 13; order: 2; }
.story.omgekeerd .story-tekst { grid-column: 1 / 6; order: 1; }

.story-beeld { border-radius: 22px; overflow: hidden; box-shadow: 0 30px 80px rgba(18, 17, 16, 0.12); }
.story-beeld img { aspect-ratio: 4 / 3; width: 100%; object-fit: cover; transition: transform 1.2s var(--ease); }
.story-beeld:hover img { transform: scale(1.035); }

.story-tekst h2, .story-tekst h3 { margin-bottom: 1.1rem; }
.story-tekst p { color: var(--grijs); margin-bottom: 1.6rem; }

/* ---------- kaarten & grids ---------- */

.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.2rem, 2.5vw, 2rem); }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(1.2rem, 2.5vw, 2rem); }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(1rem, 2vw, 1.6rem); }

.kaart-beeld {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  display: block;
  color: #fff;
  isolation: isolate;
}
.kaart-beeld img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
  transition: transform 1.1s var(--ease);
}
.kaart-beeld::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(to top, rgba(12, 11, 10, 0.6), rgba(12, 11, 10, 0) 55%);
  transition: opacity 0.6s;
}
.kaart-beeld:hover img { transform: scale(1.06); }
.kaart-beeld .kaart-label {
  position: absolute;
  left: 1.6rem;
  right: 1.6rem;
  bottom: 1.5rem;
}
.kaart-beeld h3 { color: #fff; font-size: 1.35rem; margin-bottom: 0.25rem; }
.kaart-beeld p { font-size: 0.9rem; opacity: 0.82; }
.kaart-beeld .kaart-pijl {
  position: absolute;
  top: 1.3rem;
  right: 1.3rem;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  display: grid;
  place-items: center;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.45s var(--ease), transform 0.45s var(--ease);
}
.kaart-beeld:hover .kaart-pijl { opacity: 1; transform: none; }

.kaart-vlak {
  background: var(--wit-puur);
  border-radius: 22px;
  padding: clamp(1.8rem, 3vw, 2.6rem);
  box-shadow: 0 2px 6px rgba(18, 17, 16, 0.04), 0 18px 50px rgba(18, 17, 16, 0.06);
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
}
.kaart-vlak:hover { transform: translateY(-4px); box-shadow: 0 4px 10px rgba(18,17,16,0.05), 0 28px 70px rgba(18, 17, 16, 0.1); }
.kaart-vlak h3 { margin-bottom: 0.6rem; }
.kaart-vlak p { color: var(--grijs); font-size: 0.975rem; }

.usp-cijfer {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  color: var(--brons);
  display: block;
  margin-bottom: 1.2rem;
}

/* ---------- secties met achtergrond ---------- */

.vlak-zand { background: var(--zand); }
.vlak-licht { background: var(--grijs-licht); }
.vlak-donker { background: var(--zwart); color: rgba(255, 255, 255, 0.8); }
.vlak-donker h2, .vlak-donker h3 { color: #fff; }
.vlak-donker .lead { color: rgba(255, 255, 255, 0.65); }

/* ---------- parallax band ---------- */

.band {
  position: relative;
  min-height: 72vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  isolation: isolate;
  overflow: hidden;
}
.band .hero-media img { height: 130%; }
.band::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(12, 11, 10, 0.42);
}
.band-inhoud { max-width: 780px; padding: var(--sectie) var(--pad); }
.band h2 { color: #fff; margin-bottom: 1.2rem; }
.band p { color: rgba(255, 255, 255, 0.85); font-size: clamp(1.05rem, 1.6vw, 1.25rem); }

/* ---------- galerij ---------- */

.galerij {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: clamp(0.9rem, 1.8vw, 1.6rem);
}
.galerij figure { border-radius: 20px; overflow: hidden; position: relative; }
.galerij img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.1s var(--ease); }
.galerij figure:hover img { transform: scale(1.05); }
.g-a { grid-column: 1 / 8; aspect-ratio: 16 / 10; }
.g-b { grid-column: 8 / 13; aspect-ratio: 4 / 5; grid-row: span 2; }
.g-c { grid-column: 1 / 5; aspect-ratio: 1; }
.g-d { grid-column: 5 / 8; aspect-ratio: 3 / 4; }
.g-e { grid-column: 1 / 6; aspect-ratio: 4 / 3; }
.g-f { grid-column: 6 / 13; aspect-ratio: 16 / 9; }

/* ---------- testimonials ---------- */

.quote-blok {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}
.quote-blok blockquote {
  font-size: clamp(1.4rem, 2.6vw, 2.1rem);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.35;
  color: var(--zwart);
}
.quote-blok figcaption {
  margin-top: 1.8rem;
  font-size: 0.95rem;
  color: var(--grijs);
}
.quote-blok figcaption strong { color: var(--antraciet); font-weight: 600; display: block; }

.sterren { color: var(--brons); letter-spacing: 0.2em; font-size: 0.9rem; margin-bottom: 1.6rem; display: inline-block; }

/* ---------- stappen (interieuradvies) ---------- */

.stappen { counter-reset: stap; }
.stap {
  display: grid;
  grid-template-columns: 84px 1fr;
  gap: clamp(1.2rem, 3vw, 2.5rem);
  padding: clamp(2rem, 4vw, 3rem) 0;
  border-top: 1px solid var(--lijn);
}
.stap:last-child { border-bottom: 1px solid var(--lijn); }
.stap-nummer {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 250;
  color: var(--zand-diep);
  line-height: 1;
}
.stap h3 { margin-bottom: 0.6rem; }
.stap p { color: var(--grijs); max-width: 56ch; }

/* ---------- specificaties (collectiepagina's) ---------- */

.spec-lijst { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0; border-top: 1px solid var(--lijn); }
.spec {
  padding: 1.6rem 0;
  border-bottom: 1px solid var(--lijn);
  padding-right: 2rem;
}
.spec dt { font-size: 0.8rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--brons); margin-bottom: 0.45rem; }
.spec dd { color: var(--antraciet); font-size: 1rem; }

/* ---------- formulieren ---------- */

.formulier { display: grid; gap: 1.1rem; }
.form-rij { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }

.veld { display: grid; gap: 0.45rem; }
.veld label { font-size: 0.85rem; font-weight: 600; color: var(--antraciet); }
.veld input, .veld select, .veld textarea {
  font-family: inherit;
  font-size: 1rem;
  padding: 0.9rem 1.1rem;
  border-radius: 14px;
  border: 1.5px solid var(--lijn);
  background: var(--wit-puur);
  color: var(--zwart);
  transition: border-color 0.3s, box-shadow 0.3s;
  width: 100%;
}
.veld textarea { min-height: 130px; resize: vertical; }
.veld input:focus, .veld select:focus, .veld textarea:focus {
  outline: none;
  border-color: var(--brons);
  box-shadow: 0 0 0 4px rgba(160, 140, 111, 0.14);
}

.form-succes {
  display: none;
  padding: 1.1rem 1.4rem;
  border-radius: 14px;
  background: #eef4ec;
  color: #3c5a38;
  font-weight: 500;
}
.form-succes.actief { display: block; }

/* ---------- nieuwsbrief ---------- */

.nieuwsbrief {
  display: flex;
  gap: 0.7rem;
  max-width: 480px;
}
.nieuwsbrief input {
  flex: 1;
  font-family: inherit;
  font-size: 0.95rem;
  padding: 0.85rem 1.2rem;
  border-radius: 999px;
  border: 1.5px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.07);
  color: #fff;
  min-width: 0;
}
.nieuwsbrief input::placeholder { color: rgba(255, 255, 255, 0.45); }
.nieuwsbrief input:focus { outline: none; border-color: rgba(255, 255, 255, 0.55); }
.nieuwsbrief button {
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 0.85rem 1.5rem;
  border-radius: 999px;
  border: 0;
  background: #fff;
  color: var(--zwart);
  cursor: pointer;
  transition: transform 0.3s var(--ease), background 0.3s;
  white-space: nowrap;
}
.nieuwsbrief button:hover { transform: translateY(-1px); background: var(--zand); }

/* ---------- footer ---------- */

.footer {
  background: var(--zwart);
  color: rgba(255, 255, 255, 0.66);
  padding: var(--sectie) 0 3rem;
  font-size: 0.95rem;
}
.footer h4 {
  color: #fff;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 1.3rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.4fr;
  gap: clamp(2rem, 4vw, 4rem);
  padding-bottom: 4rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.footer ul { list-style: none; display: grid; gap: 0.55rem; }
.footer a { transition: color 0.3s; }
.footer a:hover { color: #fff; }
.footer .logo { color: #fff; margin-bottom: 1.2rem; display: inline-block; }
.footer-nb p { margin: 0 0 1.2rem; max-width: 40ch; }
.footer-onder {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding-top: 2.2rem;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.4);
}
.socials { display: flex; gap: 0.7rem; }
.socials a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.08);
  transition: background 0.3s, transform 0.3s var(--ease);
}
.socials a:hover { background: rgba(255, 255, 255, 0.18); transform: translateY(-2px); }

/* ---------- contact ---------- */

.contact-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: clamp(2rem, 5vw, 5rem); align-items: start; }

.info-kaart {
  background: var(--wit-puur);
  border-radius: 22px;
  padding: clamp(1.8rem, 3vw, 2.4rem);
  box-shadow: 0 2px 6px rgba(18, 17, 16, 0.04), 0 18px 50px rgba(18, 17, 16, 0.06);
}
.info-kaart + .info-kaart { margin-top: 1.4rem; }
.info-kaart h3 { font-size: 1.05rem; margin-bottom: 1rem; }

.tijden { width: 100%; border-collapse: collapse; }
.tijden td { padding: 0.55rem 0; border-bottom: 1px solid var(--lijn); font-size: 0.975rem; }
.tijden tr:last-child td { border-bottom: 0; }
.tijden td:last-child { text-align: right; color: var(--grijs); }
.tijden .vandaag td { font-weight: 600; color: var(--zwart); }

.kaart-embed {
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(18, 17, 16, 0.12);
  aspect-ratio: 16 / 9;
}
.kaart-embed iframe { width: 100%; height: 100%; border: 0; display: block; filter: grayscale(0.35) contrast(1.02); }

/* ---------- merkenbalk ---------- */

.merken {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(1.5rem, 4vw, 3.5rem);
}
.merken span {
  font-size: clamp(1rem, 1.6vw, 1.25rem);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--zand-diep);
  transition: color 0.4s;
}
.merken span:hover { color: var(--brons-donker); }

/* ---------- breadcrumb-achtige subnav collectie ---------- */

.collectie-subnav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
}
.collectie-subnav a {
  font-size: 0.875rem;
  font-weight: 500;
  padding: 0.5rem 1.05rem;
  border-radius: 999px;
  background: var(--wit-puur);
  box-shadow: inset 0 0 0 1px var(--lijn);
  transition: background 0.3s, color 0.3s, box-shadow 0.3s;
}
.collectie-subnav a:hover { box-shadow: inset 0 0 0 1px var(--zand-diep); }
.collectie-subnav a.actief { background: var(--zwart); color: #fff; box-shadow: none; }

/* ---------- responsive ---------- */

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

@media (max-width: 860px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }

  .story, .story.omgekeerd { grid-template-columns: 1fr; }
  .story-beeld, .story-tekst,
  .story.omgekeerd .story-beeld, .story.omgekeerd .story-tekst { grid-column: 1 / -1; order: initial; }
  .story + .story { margin-top: calc(var(--sectie) * 0.7); }

  .grid-3, .grid-2 { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .form-rij { grid-template-columns: 1fr; }
  .spec-lijst { grid-template-columns: 1fr; }

  .galerij { grid-template-columns: 1fr 1fr; }
  .g-a, .g-b, .g-c, .g-d, .g-e, .g-f { grid-column: span 1; grid-row: auto; aspect-ratio: 4 / 3; }
  .g-a, .g-f { grid-column: span 2; }

  .stap { grid-template-columns: 56px 1fr; }
}

@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
  .hero-knoppen .knop { width: 100%; justify-content: center; }
  .nieuwsbrief { flex-direction: column; }
}
