/* ============================================================
   RICK ZINGSTRA — Culinaire Beleving
   Apple-geïnspireerd: scroll-animaties, 3D, parallax
   ============================================================ */

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

:root {
  --bruin-donker:      #1A0D06;
  --bruin:             #2C1A0E;
  --bruin-mid:         #5C3317;
  --terracotta:        #C4623A;
  --terracotta-mid:    #D97B52;
  --terracotta-licht:  #F0C4A8;
  --groen:             #2D5440;
  --groen-mid:         #3D6B4F;
  --groen-licht:       #6B9E7E;
  --creme:             #FAF7F2;
  --creme-donker:      #EDE4D7;
  --creme-diep:        #D9CCBA;
  --tekst:             #1A1008;
  --tekst-mid:         #5C3D22;
  --tekst-licht:       #9A7A5A;

  --font-kop:    'Playfair Display', Georgia, serif;
  --font-body:   'Inter', system-ui, -apple-system, sans-serif;

  --ease-smooth: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-out:    cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.76, 0, 0.24, 1);

  --nav-hoogte: 72px;
  --max:        1200px;
  --r:          8px;
  --r-groot:    20px;
}

/* === BASIS === */
html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  color: var(--tekst);
  background: var(--bruin-donker);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  cursor: none;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }

/* === TYPOGRAFIE === */
h1, h2, h3, h4 {
  font-family: var(--font-kop);
  line-height: 1.08;
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(3rem, 8vw, 6.5rem); font-weight: 600; }
h2 { font-size: clamp(2.2rem, 5vw, 4.5rem); font-weight: 600; }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); font-weight: 400; }
p  { line-height: 1.7; }

em { font-style: italic; }

/* === SCROLL VOORTGANGSBALK === */
#scroll-progress {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 2px;
  background: var(--terracotta);
  transform: scaleX(0);
  transform-origin: left;
  z-index: 1000;
  pointer-events: none;
}

/* === CUSTOM CURSOR === */
.cursor-ring {
  position: fixed;
  width: 44px; height: 44px;
  border: 1.5px solid rgba(196, 98, 58, 0.7);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: width 0.4s var(--ease-out),
              height 0.4s var(--ease-out),
              border-color 0.3s,
              background 0.3s;
  opacity: 0;
  will-change: left, top;
}

.cursor-dot {
  position: fixed;
  width: 5px; height: 5px;
  background: var(--terracotta);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: transform 0.1s;
  will-change: left, top;
}

.cursor-ring.is-hover {
  width: 72px; height: 72px;
  background: rgba(196, 98, 58, 0.08);
  border-color: var(--terracotta);
}

/* === UTILITIES === */
.container {
  width: 100%;
  max-width: var(--max);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 4vw, 2.5rem);
}

.sectie-pad { padding-block: clamp(5rem, 12vw, 10rem); }

/* === SCROLL REVEAL ANIMATIONS === */
[data-reveal] {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

[data-reveal="slide-left"] {
  transform: translateX(-50px);
}
[data-reveal="slide-left"].is-visible {
  transform: none;
}

[data-reveal="slide-right"] {
  transform: translateX(50px);
}
[data-reveal="slide-right"].is-visible {
  transform: none;
}

[data-reveal="scale"] {
  transform: scale(0.9);
}
[data-reveal="scale"].is-visible {
  transform: none;
}

/* === KNOPPEN === */
.knop {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  padding: 0.9em 2.2em;
  border-radius: 100px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  border: 1.5px solid transparent;
  cursor: none;
  transition: transform 0.3s var(--ease-out),
              box-shadow 0.3s var(--ease-out),
              background 0.25s,
              color 0.25s;
  position: relative;
  overflow: hidden;
}

.knop::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.1);
  opacity: 0;
  transition: opacity 0.3s;
}
.knop:hover::after { opacity: 1; }

.knop--primair {
  background: var(--terracotta);
  color: #fff;
  box-shadow: 0 4px 24px rgba(196, 98, 58, 0.35);
}
.knop--primair:hover {
  box-shadow: 0 8px 40px rgba(196, 98, 58, 0.5);
}

.knop--ghost {
  background: transparent;
  border-color: rgba(255,255,255,0.4);
  color: #fff;
}
.knop--ghost:hover {
  border-color: rgba(255,255,255,0.8);
  background: rgba(255,255,255,0.06);
}

.knop--outline-licht {
  background: transparent;
  border-color: var(--terracotta);
  color: var(--terracotta);
}
.knop--outline-licht:hover {
  background: var(--terracotta);
  color: #fff;
  box-shadow: 0 4px 24px rgba(196, 98, 58, 0.35);
}

.knop--donker {
  background: var(--bruin-donker);
  color: var(--creme);
  border-color: var(--bruin-donker);
}
.knop--donker:hover {
  background: var(--bruin);
  box-shadow: 0 8px 32px rgba(26,13,6,0.4);
}

.knop--creme {
  background: var(--creme);
  color: var(--bruin-donker);
}
.knop--creme:hover {
  background: #fff;
  box-shadow: 0 8px 32px rgba(0,0,0,0.15);
}

/* === NAVIGATIE === */
.nav-wrapper {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  transition: background 0.4s, border-color 0.4s, backdrop-filter 0.4s;
  border-bottom: 1px solid transparent;
}

.nav-wrapper.nav--scrolled {
  background: rgba(26, 13, 6, 0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom-color: rgba(255,255,255,0.07);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-hoogte);
}

.nav__logo {
  font-family: var(--font-kop);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--creme);
  letter-spacing: -0.01em;
}

.nav__menu {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  list-style: none;
}

.nav__menu a {
  font-size: 0.875rem;
  font-weight: 400;
  color: rgba(250,247,242,0.7);
  letter-spacing: 0.01em;
  transition: color 0.2s;
}
.nav__menu a:hover { color: var(--creme); }

.nav__cta {
  background: var(--terracotta) !important;
  color: #fff !important;
  padding: 0.5em 1.4em;
  border-radius: 100px;
  font-size: 0.875rem !important;
  transition: background 0.25s !important, box-shadow 0.25s !important;
}
.nav__cta:hover {
  background: var(--terracotta-mid) !important;
  box-shadow: 0 4px 20px rgba(196, 98, 58, 0.45) !important;
}

.nav__hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px; height: 36px;
  background: none; border: none;
  cursor: none; padding: 4px;
}

.nav__hamburger span {
  display: block; width: 100%; height: 1.5px;
  background: var(--creme); border-radius: 2px;
  transition: transform 0.3s var(--ease-in-out), opacity 0.3s;
}

.nav__hamburger.is-open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav__hamburger.is-open span:nth-child(2) { opacity: 0; }
.nav__hamburger.is-open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

@media (max-width: 767px) {
  .nav__hamburger { display: flex; }
  .nav__menu {
    display: none;
    position: fixed;
    inset: 0;
    top: var(--nav-hoogte);
    background: var(--bruin-donker);
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 3rem clamp(1.25rem, 4vw, 2.5rem);
    gap: 0;
  }
  .nav__menu.is-open { display: flex; }
  .nav__menu li { width: 100%; border-bottom: 1px solid rgba(255,255,255,0.06); }
  .nav__menu a {
    display: block;
    padding: 1.2rem 0;
    font-size: 1.5rem !important;
    color: var(--creme) !important;
    font-family: var(--font-kop);
  }
  .nav__cta {
    background: transparent !important;
    color: var(--terracotta) !important;
    padding: 1.2rem 0 !important;
    border-radius: 0 !important;
  }
}

/* === HERO === */
.hero {
  position: relative;
  height: 100svh;
  min-height: 640px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: -20%;
  background:
    linear-gradient(
      170deg,
      rgba(26, 13, 6, 0.80) 0%,
      rgba(44, 26, 14, 0.50) 50%,
      rgba(45, 84, 64, 0.60) 100%
    ),
    url('../steak.jpg') center/cover no-repeat;
  transform: translateY(var(--py, 0px));
  will-change: transform;
}

.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 20% 80%, transparent 30%, rgba(10,5,2,0.5) 100%);
}

.hero__content {
  position: relative;
  z-index: 1;
  padding-top: var(--nav-hoogte);
  will-change: opacity, transform;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--terracotta-mid);
  margin-bottom: 1.5rem;
}

.hero__eyebrow::before {
  content: '';
  display: block;
  width: 32px; height: 1px;
  background: var(--terracotta-mid);
}

.hero__titel {
  color: var(--creme);
  margin-bottom: 1.5rem;
  max-width: 14ch;
}

.hero__titel em {
  color: var(--terracotta-licht);
  display: block;
}

.hero__sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(250,247,242,0.72);
  max-width: 46ch;
  margin-bottom: 2.5rem;
}

.hero__knoppen {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

/* Scroll-cue */
.hero__scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  color: rgba(250,247,242,0.4);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  z-index: 1;
}

.hero__scroll-lijn {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, rgba(250,247,242,0.4), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.15); }
}

/* === STATEMENT SECTIE (Apple-stijl grote tekst) === */
.statement {
  background:
    linear-gradient(rgba(250,247,242,0.94), rgba(250,247,242,0.94)),
    url('https://images.unsplash.com/photo-1540420773420-3366772f4999?auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
  padding-block: clamp(5rem, 14vw, 12rem);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.statement__tekst {
  font-family: var(--font-kop);
  font-size: clamp(2rem, 5.5vw, 5rem);
  font-weight: 400;
  line-height: 1.2;
  color: var(--bruin-donker);
  max-width: 16ch;
  margin-inline: auto;
  letter-spacing: -0.02em;
}

.statement__tekst strong {
  font-weight: 600;
  color: var(--terracotta);
}

.statement__tekst em {
  font-style: italic;
  color: var(--groen-mid);
}

.statement__sub {
  margin-top: 2rem;
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  color: var(--tekst-mid);
  max-width: 50ch;
  margin-inline: auto;
}

/* === PRIVATE DINING FEATURE (hoofddienst) === */
.feature {
  background: var(--bruin-donker);
  position: relative;
  overflow: hidden;
}

.feature__split {
  display: grid;
  grid-template-columns: 1fr;
  min-height: 100vh;
  align-items: center;
}

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

.feature__beeld {
  position: relative;
  height: 60vw;
  max-height: 700px;
  min-height: 360px;
  overflow: hidden;
}

@media (min-width: 900px) {
  .feature__beeld {
    height: 100%;
    max-height: none;
    min-height: 100vh;
    position: sticky;
    top: 0;
  }
}

.feature__beeld-inner {
  position: absolute;
  inset: -15%;
  background:
    linear-gradient(170deg, rgba(26,13,6,0.25) 0%, rgba(26,13,6,0.55) 100%),
    url('https://images.unsplash.com/photo-1536935338788-846bb9981813?auto=format&fit=crop&w=1200&q=80') center/cover no-repeat;
  transform: translateY(var(--py, 0px));
  will-change: transform;
}

.feature__tekst {
  padding: clamp(3rem, 6vw, 6rem) clamp(1.5rem, 5vw, 5rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.5rem;
}

.feature__label {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--terracotta-mid);
}

.feature__label::before {
  content: '';
  display: block;
  width: 28px; height: 1px;
  background: var(--terracotta-mid);
}

.feature__titel {
  color: var(--creme);
  max-width: 14ch;
}

.feature__titel em { color: var(--terracotta-licht); }

.feature__omschrijving {
  color: rgba(250,247,242,0.72);
  font-size: 1.05rem;
  max-width: 42ch;
}

.feature__punten {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 0.5rem;
}

.feature__punten li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: rgba(250,247,242,0.65);
  font-size: 0.95rem;
}

.feature__punten li::before {
  content: '—';
  color: var(--terracotta);
  flex-shrink: 0;
  margin-top: 0.1em;
}

/* === STATISTIEKEN === */
.stats {
  background:
    linear-gradient(rgba(45,84,64,0.87), rgba(45,84,64,0.87)),
    url('https://images.unsplash.com/photo-1467003909585-2f8a72700288?auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
  padding-block: clamp(4rem, 10vw, 8rem);
}

.stats__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(2rem, 5vw, 4rem);
  text-align: center;
}

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

.stat__getal {
  font-family: var(--font-kop);
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 600;
  color: var(--creme);
  line-height: 1;
  display: block;
}

.stat__plus { color: var(--terracotta-licht); }

.stat__label {
  display: block;
  margin-top: 0.5rem;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  color: rgba(250,247,242,0.6);
  text-transform: uppercase;
}

/* === BELEVING (3D kaarten) === */
.beleving {
  background: var(--creme);
  padding-block: clamp(5rem, 12vw, 10rem);
}

.sectie__kop {
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.sectie__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 1rem;
}

.sectie__eyebrow::before {
  content: '';
  display: block;
  width: 28px; height: 1px;
  background: var(--terracotta);
}

.sectie__titel { color: var(--bruin-donker); }
.sectie__sub {
  margin-top: 1rem;
  color: var(--tekst-mid);
  font-size: 1.05rem;
  max-width: 50ch;
}

.beleving__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

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

/* 3D kaart */
.beleving-kaart {
  position: relative;
  border-radius: var(--r-groot);
  padding: 2.5rem 2rem;
  overflow: hidden;
  transform: perspective(800px) rotateX(var(--rx, 0deg)) rotateY(var(--ry, 0deg));
  transition: transform 0.15s ease, box-shadow 0.4s var(--ease-out);
  will-change: transform;
  cursor: none;
}

.beleving-kaart::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--gx, 50%) var(--gy, 50%), rgba(255,255,255,0.12) 0%, transparent 60%);
  pointer-events: none;
  transition: opacity 0.3s;
  opacity: 0;
}

.beleving-kaart:hover::before { opacity: 1; }

.beleving-kaart:hover {
  box-shadow: 0 30px 80px rgba(44,26,14,0.2);
}

.beleving-kaart--1 {
  background:
    linear-gradient(160deg, rgba(26,13,6,0.88) 0%, rgba(44,26,14,0.82) 100%),
    url('https://images.unsplash.com/photo-1504674900247-0877df9cc836?auto=format&fit=crop&w=800&q=80') center/cover no-repeat;
  color: var(--creme);
}
.beleving-kaart--2 {
  background:
    linear-gradient(160deg, rgba(13,31,22,0.88) 0%, rgba(45,84,64,0.82) 100%),
    url('https://images.unsplash.com/photo-1476224203421-9ac39bcb3327?auto=format&fit=crop&w=800&q=80') center/cover no-repeat;
  color: var(--creme);
}
.beleving-kaart--3 {
  background:
    linear-gradient(160deg, rgba(100,35,15,0.88) 0%, rgba(160,69,37,0.82) 100%),
    url('https://images.unsplash.com/photo-1484723091739-30a097e8f929?auto=format&fit=crop&w=800&q=80') center/cover no-repeat;
  color: var(--creme);
}

.beleving-kaart__icoon {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  display: block;
}

.beleving-kaart__titel {
  font-family: var(--font-kop);
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: inherit;
}

.beleving-kaart__tekst {
  font-size: 0.95rem;
  color: rgba(250,247,242,0.78);
  line-height: 1.7;
  max-width: 38ch;
}

/* === HOE HET WERKT === */
.proces {
  background:
    linear-gradient(rgba(26,13,6,0.91), rgba(26,13,6,0.91)),
    url('https://images.unsplash.com/photo-1495521821757-a1efb6729352?auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
  padding-block: clamp(5rem, 12vw, 10rem);
}

.proces__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: rgba(255,255,255,0.07);
  border-radius: var(--r-groot);
  overflow: hidden;
  margin-top: clamp(2.5rem, 5vw, 4rem);
}

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

.proces__stap {
  background: rgba(255,255,255,0.02);
  padding: 2.5rem 2rem;
  transition: background 0.3s;
}

.proces__stap:hover { background: rgba(255,255,255,0.04); }

.proces__nr {
  font-family: var(--font-kop);
  font-size: 4rem;
  font-weight: 600;
  color: rgba(196, 98, 58, 0.25);
  line-height: 1;
  margin-bottom: 1rem;
  display: block;
}

.proces__stap-titel {
  font-family: var(--font-kop);
  font-size: 1.3rem;
  color: var(--creme);
  margin-bottom: 0.75rem;
}

.proces__stap-tekst {
  font-size: 0.92rem;
  color: rgba(250,247,242,0.55);
  max-width: 34ch;
  line-height: 1.7;
}

/* === ZAKELIJK & PARTICULIER === */
.doelgroep {
  background: var(--creme);
  padding-block: clamp(5rem, 12vw, 10rem);
}

.doelgroep__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: clamp(2.5rem, 5vw, 4rem);
}

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

.doelgroep-kaart {
  border-radius: var(--r-groot);
  overflow: hidden;
  position: relative;
  min-height: 480px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2.5rem;
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
}

.doelgroep-kaart:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 64px rgba(26,13,6,0.25);
}

.doelgroep-kaart__bg {
  position: absolute;
  inset: 0;
  transition: transform 0.6s var(--ease-out);
}

.doelgroep-kaart:hover .doelgroep-kaart__bg {
  transform: scale(1.04);
}

.doelgroep-kaart--particulier .doelgroep-kaart__bg {
  background:
    linear-gradient(170deg, rgba(26,13,6,0.08) 0%, rgba(26,13,6,0.72) 100%),
    url('https://images.unsplash.com/photo-1606787366850-de6330128bfc?auto=format&fit=crop&w=900&q=80') center/cover no-repeat;
}

.doelgroep-kaart--zakelijk .doelgroep-kaart__bg {
  background:
    linear-gradient(170deg, rgba(26,13,6,0.08) 0%, rgba(26,13,6,0.72) 100%),
    url('https://images.unsplash.com/photo-1528712306091-ed0763094c98?auto=format&fit=crop&w=900&q=80') center/cover no-repeat;
}

.doelgroep-kaart__inhoud {
  position: relative;
  z-index: 1;
}

.doelgroep-kaart__label {
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--terracotta-licht);
  margin-bottom: 0.75rem;
}

.doelgroep-kaart__titel {
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: #fff;
  margin-bottom: 1rem;
}

.doelgroep-kaart__tekst {
  color: rgba(255,255,255,0.72);
  font-size: 0.95rem;
  max-width: 36ch;
  margin-bottom: 1.5rem;
}

/* === OVER RICK === */
.over {
  background: var(--creme-donker);
  padding-block: clamp(5rem, 12vw, 10rem);
}

.over__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: center;
}

@media (min-width: 768px) {
  .over__grid { grid-template-columns: 1fr 1.2fr; }
}

.over__foto {
  aspect-ratio: 3/4;
  border-radius: var(--r-groot);
  overflow: hidden;
  position: relative;
  max-height: 580px;
}

.over__foto-inner {
  position: absolute;
  inset: -20%;
  background:
    linear-gradient(170deg, rgba(26,13,6,0.08) 0%, rgba(26,13,6,0.32) 100%),
    url('https://images.unsplash.com/photo-1467003909585-2f8a72700288?auto=format&fit=crop&w=900&q=80') center top/cover no-repeat;
  transform: translateY(var(--py, 0px));
  will-change: transform;
}

.over__tekst {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.over__tekst h2 { color: var(--bruin-donker); }

.over__tekst p {
  color: var(--tekst-mid);
  font-size: 1.05rem;
  max-width: 46ch;
}

.over__quote {
  border-left: 3px solid var(--terracotta);
  padding-left: 1.25rem;
  font-family: var(--font-kop);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--bruin-mid);
  line-height: 1.5;
  max-width: 42ch;
}

/* === CTA SECTIE === */
.cta {
  background:
    linear-gradient(rgba(26,13,6,0.88), rgba(26,13,6,0.88)),
    url('https://images.unsplash.com/photo-1414235077428-338989a2e8c0?auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
  padding-block: clamp(5rem, 14vw, 12rem);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta::before {
  content: '';
  position: absolute;
  inset: -50%;
  background: radial-gradient(ellipse at 50% 50%, rgba(196, 98, 58, 0.12) 0%, transparent 60%);
  pointer-events: none;
}

.cta__inhoud { position: relative; z-index: 1; }

.cta__eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--terracotta-mid);
  margin-bottom: 1.5rem;
}

.cta__titel {
  color: var(--creme);
  max-width: 14ch;
  margin-inline: auto;
  margin-bottom: 1.5rem;
}

.cta__sub {
  color: rgba(250,247,242,0.6);
  font-size: 1.1rem;
  max-width: 48ch;
  margin-inline: auto;
  margin-bottom: 2.5rem;
}

.cta__knoppen {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

/* === FOOTER === */
.footer {
  background: var(--bruin-donker);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-block: 3rem;
}

.footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  text-align: center;
}

.footer__logo {
  font-family: var(--font-kop);
  font-size: 1.3rem;
  color: var(--creme);
  font-weight: 600;
}

.footer__nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem 2rem;
}

.footer__nav a {
  font-size: 0.85rem;
  color: rgba(250,247,242,0.45);
  transition: color 0.2s;
}
.footer__nav a:hover { color: var(--terracotta-mid); }

.footer__copy {
  font-size: 0.78rem;
  color: rgba(250,247,242,0.25);
}

/* === PAGINA HEADERS (voor subpagina's) === */
.pagina-hero {
  padding-top: calc(var(--nav-hoogte) + clamp(3rem, 8vw, 6rem));
  padding-bottom: clamp(3rem, 8vw, 6rem);
  background:
    linear-gradient(170deg, rgba(26,13,6,0.84) 0%, rgba(26,13,6,0.70) 100%),
    url('https://images.unsplash.com/photo-1547592180-85f173990554?auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
  position: relative;
  overflow: hidden;
}

.pagina-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 80% 20%, rgba(196,98,58,0.08) 0%, transparent 60%);
  pointer-events: none;
}

.pagina-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--terracotta-mid);
  margin-bottom: 1rem;
}

.pagina-hero__eyebrow::before {
  content: '';
  display: block;
  width: 28px; height: 1px;
  background: var(--terracotta-mid);
}

.pagina-hero h1 { color: var(--creme); }

.pagina-hero p {
  margin-top: 1.25rem;
  font-size: 1.1rem;
  color: rgba(250,247,242,0.65);
  max-width: 50ch;
}

/* Inhoud sectie op subpagina's */
.pagina-inhoud {
  background: var(--creme);
  padding-block: clamp(4rem, 10vw, 8rem);
}

.pagina-inhoud--donker {
  background: var(--bruin-donker);
}

/* === CONTACTPAGINA === */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2.5rem, 6vw, 5rem);
}

@media (min-width: 768px) {
  .contact-grid { grid-template-columns: 1fr 1.4fr; }
}

.contact-info h3 {
  font-size: 1.4rem;
  color: var(--bruin-donker);
  margin-bottom: 1rem;
}

.contact-detail {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1rem;
}

.contact-detail strong {
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--tekst-licht);
  min-width: 72px;
  padding-top: 0.1em;
}

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

.form-groep {
  display: flex;
  flex-direction: column;
  gap: 0.35em;
}

.form-groep label {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--tekst-mid);
  letter-spacing: 0.02em;
}

.form-groep input,
.form-groep select,
.form-groep textarea {
  padding: 0.85em 1.1em;
  border: 1.5px solid var(--creme-diep);
  border-radius: var(--r);
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--tekst);
  background: #fff;
  transition: border-color 0.25s, box-shadow 0.25s;
  cursor: none;
}

.form-groep input:focus,
.form-groep select:focus,
.form-groep textarea:focus {
  outline: none;
  border-color: var(--terracotta);
  box-shadow: 0 0 0 3px rgba(196,98,58,0.12);
}

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

/* === MEDIA QUERIES === */
@media (max-width: 480px) {
  .hero__knoppen { flex-direction: column; align-items: flex-start; }
}

/* Feature quote */
.feature__quote {
  font-family: var(--font-kop);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--terracotta-mid);
  border-left: 3px solid var(--terracotta);
  padding-left: 1.25rem;
  line-height: 1.6;
  max-width: 44ch;
  margin-top: 0.25rem;
}

/* === MANIFEST SECTIE === */
.manifest {
  background: var(--creme-donker);
  padding-block: clamp(4rem, 10vw, 8rem);
}

.manifest__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  margin-top: clamp(2.5rem, 5vw, 4rem);
  border-top: 1px solid var(--creme-diep);
}

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

.manifest__item {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 2.5rem 2rem 2.5rem 0;
  border-bottom: 1px solid var(--creme-diep);
}

@media (min-width: 640px) {
  .manifest__item {
    border-bottom: none;
    padding: 2.5rem 2.5rem 0 0;
    border-right: 1px solid var(--creme-diep);
  }
  .manifest__item:last-child { border-right: none; padding-right: 0; }
}

.manifest__nr {
  font-family: var(--font-kop);
  font-size: 1.6rem;
  font-style: italic;
  color: var(--terracotta);
  line-height: 1;
}

.manifest__titel {
  font-family: var(--font-kop);
  font-size: 1.2rem;
  color: var(--bruin-donker);
}

.manifest__tekst {
  font-size: 0.95rem;
  color: var(--tekst-mid);
  line-height: 1.75;
  max-width: 30ch;
}

/* === SECTIE SUB LICHT (op creme achtergrond) === */
.sectie__sub--donker {
  color: var(--tekst-mid);
}

/* === FOOTER NIEUW === */
.footer__merk {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.footer__tagline {
  font-size: 0.83rem;
  color: rgba(250,247,242,0.32);
  font-style: italic;
}

.footer__meta {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  text-align: center;
}

.footer__meta p {
  font-size: 0.78rem;
  color: rgba(250,247,242,0.28);
}

@media (min-width: 768px) {
  .footer__inner {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    text-align: left;
  }
  .footer__meta { text-align: right; }
  .footer__nav { justify-content: center; }
}

/* Reduceer beweging voor toegankelijkheid */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
  [data-reveal] { opacity: 1; transform: none; }
  body { cursor: auto; }
  .cursor-ring, .cursor-dot { display: none; }
}
