/* ============================================================
   Natasja van der Jagt — "Artisanal Earth" design system
   Gebaseerd op Google Stitch export
   ============================================================ */

/* ===== Design tokens ===== */
:root {
  --surface:            #fff8f3;
  --surface-low:        #fff2e1;
  --surface-container:  #ffebcf;
  --surface-high:       #fae5c8;
  --surface-highest:    #f4e0c2;
  --surface-dark:       #3a2f1b;
  --on-surface:         #241a08;
  --on-surface-muted:   #4e4634;
  --outline:            #7f7662;
  --outline-light:      #d1c5ae;
  --primary:            #755b00;
  --primary-container:  #f2c53d;
  --secondary:          #9b4516;
  --on-secondary:       #ffffff;
  --tertiary:           #486647;
  --tertiary-container: #b2d3ae;
  --tertiary-dim:       #aecfaa;
  --inverse-on-surface: #ffeed8;

  --radius-sm:   0.125rem;
  --radius:      0.25rem;
  --radius-lg:   0.5rem;
  --radius-xl:   0.75rem;
  --radius-full: 9999px;

  --shadow-sm: 0 1px 3px rgba(0,0,0,.06), 0 1px 2px rgba(0,0,0,.04);
  --shadow:    0 4px 16px rgba(0,0,0,.08);

  --section-gap:  7.5rem;
  --container:    1280px;
  --gutter:       1.5rem;
  --margin-desk:  4rem;
  --margin-mob:   1.25rem;
}

/* ===== Reset ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--surface);
  color: var(--on-surface);
  font-family: 'Hanken Grotesk', system-ui, sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; }

h1, h2, h3, h4 {
  font-family: 'Fraunces', Georgia, serif;
  line-height: 1.2;
  font-weight: 500;
  color: var(--on-surface);
}

.material-symbols-outlined {
  font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
  vertical-align: middle;
  line-height: 1;
}

/* ===== Skip link ===== */
.skip-link {
  position: absolute; left: -9999px; top: 0;
  background: var(--on-surface); color: var(--surface);
  padding: .5rem 1rem; z-index: 9999;
}
.skip-link:focus { left: 0; }

/* ===== Container ===== */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--margin-desk);
}

/* ============================================================
   NAVIGATIE — simpel en flat, geen dropdowns
   ============================================================ */

.site-header {
  background: var(--surface);
  border-bottom: 1px solid var(--outline-light);
  position: sticky; top: 0; z-index: 200;
}

.nav-wrap {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--margin-desk);
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.nav-logo {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.375rem;
  font-weight: 600;
  color: var(--primary);
  white-space: nowrap;
  flex-shrink: 0;
}
.nav-logo:hover { opacity: .85; }

/* Desktop links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links a {
  font-family: 'Hanken Grotesk', sans-serif;
  font-size: .8125rem;
  font-weight: 600;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--on-surface-muted);
  transition: color .2s;
}
.nav-links a:hover,
.nav-links a.actief { color: var(--primary); }

.nav-links .nav-cta {
  background: var(--secondary);
  color: var(--on-secondary);
  padding: .5rem 1.5rem;
  border-radius: var(--radius-full);
  transition: background .2s;
}
.nav-links .nav-cta:hover { background: #7c3410; color: #fff; }

/* Hamburger knop */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--primary);
  padding: .25rem;
  align-items: center;
  justify-content: center;
}
.nav-toggle .material-symbols-outlined { font-size: 1.875rem; }

/* Mobile menu (verborgen tot .open) */
.nav-mobile {
  display: none;
  flex-direction: column;
  position: fixed;
  inset: 68px 0 0 0;
  background: var(--surface);
  border-top: 1px solid var(--outline-light);
  padding: 2rem var(--margin-mob);
  overflow-y: auto;
  z-index: 199;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  font-family: 'Hanken Grotesk', sans-serif;
  font-size: 1.125rem;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--on-surface-muted);
  padding: 1rem 0;
  border-bottom: 1px solid var(--outline-light);
  transition: color .2s;
}
.nav-mobile a:hover { color: var(--primary); }
.nav-mobile a:last-child { border-bottom: none; }
.nav-mobile .nav-cta {
  margin-top: 1.5rem;
  background: var(--secondary);
  color: var(--on-secondary);
  text-align: center;
  padding: 1rem;
  border-radius: var(--radius);
  border-bottom: none;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .85rem 2rem;
  font-family: 'Hanken Grotesk', sans-serif;
  font-size: .8125rem;
  font-weight: 600;
  letter-spacing: .05em;
  text-transform: uppercase;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: background .2s, transform .15s;
  text-decoration: none;
  line-height: 1.2;
}
.btn-primary {
  background: var(--secondary);
  color: var(--on-secondary);
}
.btn-primary:hover { background: #7c3410; transform: translateY(-1px); }

.btn-outline {
  background: transparent;
  border: 1.5px solid var(--secondary);
  color: var(--secondary);
}
.btn-outline:hover { background: rgba(155,69,22,.06); transform: translateY(-1px); }

.btn-groen {
  background: var(--tertiary);
  color: #fff;
}
.btn-groen:hover { background: #375036; }

/* ============================================================
   HOMEPAGE — HERO (geel)
   ============================================================ */

.hero-geel {
  background: var(--primary-container);
  padding: 5rem var(--margin-desk);
}
.hero-geel-inner {
  max-width: var(--container);
  margin: 0 auto;
}
.hero-geel-label {
  display: block;
  font-family: 'Hanken Grotesk', sans-serif;
  font-size: .8125rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 1rem;
}
.hero-geel h1 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  font-weight: 600;
  letter-spacing: -.02em;
  color: var(--on-surface);
  margin-bottom: 1.25rem;
  max-width: 16ch;
  line-height: 1.1;
}
.hero-geel-tekst {
  font-size: 1.125rem;
  line-height: 1.7;
  color: #695200;
  margin-bottom: 2rem;
  max-width: 52ch;
}
.hero-geel-knoppen { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ===== Carousel (homepage) ===== */
.carousel-sectie {
  background: var(--primary-container);
  padding: 0 var(--margin-desk) 5rem;
}
.carousel-inner {
  max-width: var(--container);
  margin: 0 auto;
  position: relative;
}
.carousel-track-wrap {
  overflow: hidden;
  border-radius: var(--radius-lg);
}
.carousel-track {
  display: flex;
  transition: transform .4s cubic-bezier(.4,0,.2,1);
}
.carousel-slide {
  min-width: 100%;
  aspect-ratio: 16/7;
  background: var(--surface-high);
  overflow: hidden;
}
.carousel-slide img {
  width: 100%; height: 100%; object-fit: cover;
}
.carousel-slide-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Fraunces', serif;
  font-size: 1.5rem;
  color: var(--on-surface-muted);
}
.carousel-btn {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,.9);
  border: none;
  width: 2.75rem; height: 2.75rem;
  border-radius: var(--radius-full);
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow);
  color: var(--on-surface);
  transition: background .2s;
  z-index: 2;
}
.carousel-btn:hover { background: #fff; }
.carousel-btn.vorig { left: -1.375rem; }
.carousel-btn.volg  { right: -1.375rem; }
.carousel-dots {
  display: flex; justify-content: center; gap: .5rem;
  margin-top: 1.25rem;
}
.carousel-dot {
  width: .5rem; height: .5rem;
  border-radius: var(--radius-full);
  border: none;
  background: rgba(117,91,0,.3);
  transition: background .2s, transform .2s;
}
.carousel-dot.actief {
  background: var(--primary);
  transform: scale(1.25);
}

/* ============================================================
   SECTIE — generiek
   ============================================================ */
.sectie {
  padding: var(--section-gap) 0;
}
.sectie-kop {
  text-align: center;
  margin-bottom: 3.5rem;
}
.sectie-kop h2 {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  margin-bottom: 1rem;
}
.sectie-streep {
  width: 6rem; height: 3px;
  background: var(--tertiary);
  margin: 0 auto;
  border: none;
}

/* ============================================================
   KAARTEN
   ============================================================ */

/* Categorie-kaart (werk/kinderen overzicht) */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
}
.cat-kaart {
  background: #fff;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border-top: 2px solid var(--tertiary);
  box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column;
  transition: transform .3s, box-shadow .3s;
  color: inherit;
}
.cat-kaart:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.cat-kaart-img {
  height: 16rem;
  overflow: hidden;
  background: var(--surface-high);
}
.cat-kaart-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.cat-kaart:hover .cat-kaart-img img { transform: scale(1.05); }
.cat-kaart-body { padding: 1.75rem; flex: 1; }
.cat-kaart-body h3 {
  font-size: 1.375rem;
  margin-bottom: .75rem;
}
.cat-kaart-body p {
  color: var(--on-surface-muted);
  font-size: .9375rem;
  margin-bottom: 1.5rem;
  line-height: 1.65;
}
.cat-kaart-body ul { margin-bottom: 1.5rem; }
.cat-kaart-body li {
  display: flex; align-items: center; gap: .5rem;
  font-size: .8125rem; font-weight: 600;
  letter-spacing: .04em;
  color: var(--on-surface-muted);
  margin-bottom: .5rem;
}
.cat-kaart-body li .material-symbols-outlined { color: var(--tertiary); font-size: 1rem; }
.cat-kaart-footer { padding: 0 1.75rem 1.75rem; }
.cat-kaart-footer .btn { width: 100%; justify-content: center; }

/* Foto-grid (galerij) */
.foto-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1rem;
}
.foto-kaart {
  aspect-ratio: 1/1;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--surface-high);
  cursor: pointer;
}
.foto-kaart img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.foto-kaart:hover img { transform: scale(1.06); }

/* ============================================================
   PAGINA-HEADER (per pagina)
   ============================================================ */
.pagina-header {
  padding: 4rem 0 3rem;
  border-bottom: 1px solid var(--outline-light);
}
.pagina-header h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: .75rem;
}
.pagina-header p {
  color: var(--on-surface-muted);
  font-size: 1.0625rem;
}
.pagina-header--groen { background: var(--tertiary-container); }

/* ============================================================
   HOME — secties onder hero
   ============================================================ */

/* Featured werk sectie */
.featured-sectie {
  padding: var(--section-gap) 0;
}
.featured-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
.featured-groot {
  grid-row: span 2;
}
.featured-kaart {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--surface-high);
  cursor: pointer;
}
.featured-kaart img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.featured-groot img { height: 500px; }
.featured-klein img { height: 235px; }
.featured-kaart:hover img { transform: scale(1.04); }
.featured-label {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(36,26,8,.7));
  padding: 2rem 1.25rem .75rem;
  color: #fff;
  font-family: 'Fraunces', serif;
  font-size: 1.125rem;
}

/* CTA-blok (contact sectie op home) */
.cta-blok {
  background: var(--surface-highest);
  border-radius: 1.5rem;
  padding: 4rem;
  position: relative;
  overflow: hidden;
}
.cta-blok-deco {
  position: absolute; top: -5rem; right: -5rem;
  width: 20rem; height: 20rem;
  background: rgba(174,207,170,.2);
  border-radius: var(--radius-full);
  pointer-events: none;
}
.cta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  position: relative; z-index: 1;
}
.cta-grid h2 { font-size: clamp(1.75rem, 3vw, 2.5rem); margin-bottom: 1.5rem; }
.cta-grid p { color: var(--on-surface-muted); line-height: 1.75; margin-bottom: 2.5rem; font-size: 1.0625rem; }

/* Contactinfo items */
.contact-item {
  display: flex; align-items: flex-start; gap: 1rem;
  margin-bottom: 1.5rem;
}
.contact-icon {
  background: #fff;
  border-radius: var(--radius-full);
  width: 2.75rem; height: 2.75rem;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--secondary);
}
.contact-label {
  font-size: .8125rem; font-weight: 600;
  letter-spacing: .05em; text-transform: uppercase;
  color: var(--secondary);
  margin-bottom: .25rem;
}
.contact-item a:hover { text-decoration: underline; }

/* Contact-formulier kaart */
.form-kaart {
  background: #fff;
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  box-shadow: var(--shadow-sm);
}

/* ============================================================
   FORMULIER
   ============================================================ */
label {
  display: block;
  font-size: .8125rem; font-weight: 600;
  letter-spacing: .04em;
  color: var(--on-surface-muted);
  margin-bottom: .5rem;
}
input, select, textarea {
  width: 100%;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--outline-light);
  padding: .5rem 0;
  font-family: 'Hanken Grotesk', sans-serif;
  font-size: 1rem;
  color: var(--on-surface);
  transition: border-color .2s;
  outline: none;
  display: block;
}
input:focus, select:focus, textarea:focus {
  border-bottom-color: var(--tertiary);
}
textarea { resize: vertical; min-height: 6rem; }
.form-rij { margin-bottom: 1.5rem; }
.form-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}
.melding {
  padding: .875rem 1rem;
  border-radius: var(--radius);
  font-size: .9375rem;
  margin-bottom: 1.25rem;
}
.melding.ok  { background: #ecfdf5; color: #166534; border: 1px solid #bbf7d0; }
.melding.fout{ background: #fef2f2; color: #991b1b; border: 1px solid #fecaca; }

/* ============================================================
   OVER-PAGINA
   ============================================================ */
.over-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}
.over-tekst h2 { font-size: 2rem; margin-bottom: 1.5rem; }
.over-tekst p { margin-bottom: 1.25rem; color: var(--on-surface-muted); line-height: 1.75; font-size: 1.0625rem; }
.over-foto {
  position: relative;
}
.over-foto-shape {
  border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  background: var(--tertiary-container);
  aspect-ratio: 1/1;
  overflow: hidden;
}
.over-foto-shape img { width: 100%; height: 100%; object-fit: cover; }
.over-foto-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Fraunces', serif;
  font-size: 1.25rem;
  color: var(--tertiary);
  min-height: 300px;
}

/* ============================================================
   LIGHTBOX
   ============================================================ */
.lightbox {
  display: none;
  position: fixed; inset: 0;
  background: rgba(36,26,8,.92);
  z-index: 500;
  align-items: center; justify-content: center;
}
.lightbox.open { display: flex; }
.lightbox img {
  max-width: 90vw; max-height: 85vh;
  object-fit: contain;
  border-radius: var(--radius);
}
.lightbox-sluit {
  position: absolute; top: 1.25rem; right: 1.25rem;
  background: rgba(255,255,255,.15);
  border: none; color: #fff;
  width: 2.75rem; height: 2.75rem;
  border-radius: var(--radius-full);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.25rem;
}
.lightbox-sluit:hover { background: rgba(255,255,255,.25); }
.lightbox-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,.15);
  border: none; color: #fff;
  width: 3rem; height: 3rem;
  border-radius: var(--radius-full);
  display: flex; align-items: center; justify-content: center;
}
.lightbox-nav:hover { background: rgba(255,255,255,.25); }
.lightbox-nav.vorig { left: 1.25rem; }
.lightbox-nav.volg  { right: 1.25rem; }

/* ============================================================
   SCROLL-REVEAL
   ============================================================ */
.reveal { opacity: 0; transform: translateY(1.5rem); transition: opacity .6s, transform .6s; }
.reveal.zichtbaar { opacity: 1; transform: none; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--surface-dark);
  color: var(--inverse-on-surface);
  padding: 4rem 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-naam {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: .5rem;
}
.footer-tagline {
  font-size: .875rem;
  opacity: .7;
  line-height: 1.6;
}
.site-footer h3 {
  font-family: 'Hanken Grotesk', sans-serif;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--inverse-on-surface);
  opacity: .6;
  margin-bottom: 1rem;
}
.site-footer ul li { margin-bottom: .6rem; }
.site-footer ul li a {
  color: var(--inverse-on-surface);
  opacity: .8;
  font-size: .9rem;
  transition: opacity .2s;
}
.site-footer ul li a:hover { opacity: 1; }
.footer-copy {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 1.5rem;
  font-size: .8125rem;
  opacity: .6;
}

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

/* 1. Hero */
.home-hero {
  background: var(--primary-container);
  padding: 5rem var(--margin-desk);
}
.home-hero-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 6fr 5fr;
  gap: 4rem;
  align-items: center;
}
.home-hero-tekst h1 {
  font-family: 'Fraunces', serif;
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 600;
  letter-spacing: -.02em;
  line-height: 1.15;
  color: var(--on-surface);
  margin-bottom: 1.25rem;
}
.home-hero-tekst p {
  font-size: 1rem;
  color: #695200;
  line-height: 1.7;
  margin-bottom: 2rem;
  max-width: 48ch;
}
.home-hero-knoppen { display: flex; gap: 1rem; flex-wrap: wrap; }

.btn-outline-dark {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .85rem 2rem;
  font-family: 'Hanken Grotesk', sans-serif;
  font-size: .8125rem; font-weight: 600; letter-spacing: .05em; text-transform: uppercase;
  border-radius: var(--radius);
  background: transparent;
  border: 1.5px solid var(--on-surface);
  color: var(--on-surface);
  text-decoration: none;
  transition: background .2s;
}
.btn-outline-dark:hover { background: rgba(36,26,8,.08); }

.home-hero-shape {
  border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  background: var(--surface-high);
  aspect-ratio: 1/1;
  overflow: visible;
  display: flex; align-items: center; justify-content: center;
  position: relative;
  z-index: 1;
}
.home-hero-shape img { width: 125%; height: 125%; margin: -12.5%; object-fit: cover; }
.home-hero-placeholder {
  font-family: 'Fraunces', serif;
  font-size: 1.125rem;
  color: var(--primary);
  opacity: .6;
}

/* 2. Artist bio */
.home-bio { padding: var(--section-gap) 0; }
.home-bio-grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 5rem;
  align-items: center;
}
.home-bio-foto-inner {
  aspect-ratio: 3/4;
  background: var(--surface-highest);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.home-bio-placeholder {
  font-family: 'Fraunces', serif;
  color: var(--on-surface-muted);
  opacity: .5;
}
.home-bio-label {
  display: block;
  font-size: .75rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase;
  color: var(--secondary);
  margin-bottom: .75rem;
}
.home-bio-tekst h2 { font-size: 2rem; margin-bottom: 1.25rem; }
.home-bio-tekst p { color: var(--on-surface-muted); line-height: 1.75; margin-bottom: 1rem; }
.home-bio-link {
  display: inline-block;
  margin-top: .5rem;
  font-size: .8125rem; font-weight: 600; letter-spacing: .04em;
  color: var(--secondary);
  transition: color .2s;
}
.home-bio-link:hover { color: #7c3410; text-decoration: underline; }

/* 3. Twee pijlers */
.home-pijlers { padding: var(--section-gap) 0; background: var(--surface); }
.home-pijlers-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}
.home-pijler { }
.home-pijler-img {
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--surface-high);
  margin-bottom: 1.5rem;
}
.home-pijler-img img { width: 100%; height: 100%; object-fit: cover; }
.home-pijler h3 { font-size: 1.5rem; margin-bottom: .75rem; }
.home-pijler p { color: var(--on-surface-muted); line-height: 1.7; margin-bottom: 1.25rem; font-size: .9375rem; }
.home-pijler ul { margin-bottom: 1.5rem; }
.home-pijler li {
  display: flex; align-items: center; gap: .5rem;
  font-size: .875rem; color: var(--on-surface-muted);
  margin-bottom: .5rem;
}
.home-pijler li .material-symbols-outlined { color: var(--tertiary); font-size: 1rem; }

/* 4. CTA */
.home-cta {
  background: var(--surface-high);
  padding: 5rem var(--margin-desk);
  text-align: center;
}
.home-cta h2 { font-size: clamp(1.5rem, 3vw, 2rem); margin-bottom: 1rem; }
.home-cta p { color: var(--on-surface-muted); max-width: 52ch; margin: 0 auto 2rem; line-height: 1.7; }
.btn-secondary-dark {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: 1rem 2.5rem;
  background: var(--secondary);
  color: #fff;
  font-family: 'Hanken Grotesk', sans-serif;
  font-size: .875rem; font-weight: 600; letter-spacing: .04em;
  border-radius: var(--radius);
  text-decoration: none;
  transition: background .2s;
}
.btn-secondary-dark:hover { background: #7c3410; }

/* 5. Infinite scroll fotostrip */
.fotostrip {
  overflow: hidden;
  background: var(--surface-dark);
  padding: 1.5rem 0;
}
.fotostrip-track {
  display: flex;
  gap: 1rem;
  width: max-content;
  animation: fotostrip-scroll 30s linear infinite;
}
/* hover-vertraging wordt afgehandeld via JS */

@keyframes fotostrip-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.fotostrip-item {
  width: 280px;
  height: 200px;
  flex-shrink: 0;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--surface-highest);
}
.fotostrip-item img { width: 100%; height: 100%; object-fit: cover; }
.fotostrip-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Fraunces', serif;
  color: var(--on-surface-muted);
  font-size: 1rem;
  opacity: .5;
}

/* Responsive homepage */
@media (max-width: 768px) {
  .home-hero { padding: 3rem var(--margin-mob); }
  .home-hero-inner { grid-template-columns: 1fr; gap: 2rem; }
  .home-hero-beeld { display: none; }
  .home-bio-grid { grid-template-columns: 1fr; gap: 2rem; }
  .home-bio-foto { display: none; }
  .home-pijlers-grid { grid-template-columns: 1fr; }
  .home-cta { padding: 3rem var(--margin-mob); }
  .fotostrip-item { width: 200px; height: 150px; }
}

/* ============================================================
   PORTFOLIO PAGINA — afwisselende rijen (Stitch design)
   ============================================================ */

/* Filter tabs */
.portfolio-tabs {
  border-bottom: 1px solid var(--outline-light);
  background: var(--surface);
  position: sticky; top: 68px; z-index: 10;
}
.tabs-balk {
  display: flex;
  gap: 0;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.tabs-balk::-webkit-scrollbar { display: none; }
.tab-knop {
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  padding: .875rem 1.25rem;
  font-family: 'Hanken Grotesk', sans-serif;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--on-surface-muted);
  white-space: nowrap;
  cursor: pointer;
  transition: color .2s, border-color .2s;
}
.tab-knop:hover { color: var(--primary); }
.tab-knop.actief {
  color: var(--primary);
  border-bottom-color: var(--primary);
}

/* Grid structuur */
.portfolio-grid { display: flex; flex-direction: column; gap: 1.25rem; }

.portfolio-rij {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 1.25rem;
  align-items: stretch;
}
/* Oneven rij: groot beeld links (3fr links) */
.portfolio-rij:nth-child(odd)  { grid-template-columns: 3fr 2fr; }
/* Even rij: groot beeld rechts (2fr links, 3fr rechts) */
.portfolio-rij:nth-child(even) { grid-template-columns: 2fr 3fr; }

/* Basis cel */
.portfolio-cel {
  background: var(--surface-high);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* Beeld-blok */
.pf-beeld {
  overflow: hidden;
  background: var(--surface-highest);
  display: block;
  width: 100%;
}
.pf-beeld img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .4s;
}
.portfolio-cel:hover .pf-beeld img { transform: scale(1.03); }

.pf-beeld-placeholder {
  display: flex; align-items: center; justify-content: center;
  font-family: 'Fraunces', serif;
  font-size: 1.25rem;
  color: var(--on-surface-muted);
  opacity: .5;
  height: 100%;
}

/* Tekst-blok */
.pf-tekst {
  padding: 1.75rem 2rem 2rem;
  background: var(--surface-high);
}

.pf-label {
  display: flex; align-items: center; gap: .6rem;
  font-family: 'Hanken Grotesk', sans-serif;
  font-size: .6875rem; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--primary);
  margin-bottom: .75rem;
}
.pf-label-streep {
  display: inline-block;
  width: 1.5rem; height: 2px;
  background: var(--primary); flex-shrink: 0;
}
.pf-tekst h2 { font-size: 1.625rem; margin-bottom: .75rem; }
.pf-tekst p {
  color: var(--on-surface-muted); font-size: .9375rem;
  line-height: 1.7; margin-bottom: 1.25rem;
}
.pf-link {
  font-family: 'Hanken Grotesk', sans-serif;
  font-size: .8125rem; font-weight: 600;
  letter-spacing: .05em; text-transform: uppercase;
  color: var(--secondary); transition: color .2s;
}
.pf-link:hover { color: #7c3410; text-decoration: underline; }

/* VERSPRINGEFFECT: groot = tall beeld, klein = compact beeld */
.cel-groot .pf-beeld { height: 520px; }
.cel-tekst .pf-beeld { height: 220px; }

/* cel-groot vult zijn beschikbare hoogte */
.cel-groot { height: 100%; }
.cel-groot .pf-beeld { flex: 1; height: auto; min-height: 480px; }

/* Responsive */
@media (max-width: 768px) {
  .portfolio-rij,
  .portfolio-rij:nth-child(odd),
  .portfolio-rij:nth-child(even) { grid-template-columns: 1fr; }
  .cel-groot .pf-beeld { min-height: 260px; }
  .cel-tekst .pf-beeld { height: 220px; }
}

/* ============================================================
   ADMIN
   ============================================================ */
.admin-wrap { max-width: 900px; margin: 3rem auto; padding: 0 2rem; }
.admin-kaart {
  background: #fff; border: 1px solid var(--outline-light);
  border-radius: var(--radius-lg); padding: 2rem; margin-bottom: 2rem;
  box-shadow: var(--shadow-sm);
}
.admin-kaart h2 { font-size: 1.375rem; margin-bottom: 1.25rem; }
.admin-label {
  display: block; font-size: .8125rem; font-weight: 600;
  letter-spacing: .04em; color: var(--on-surface-muted); margin-bottom: .4rem;
}
.admin-input {
  width: 100%; border: 1px solid var(--outline-light);
  border-radius: var(--radius); padding: .65rem .85rem;
  font-family: inherit; font-size: 1rem; margin-bottom: 1rem;
  background: var(--surface); outline: none;
}
.admin-input:focus { border-color: var(--primary); }
.admin-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(120px, 1fr)); gap: 1rem; }
.admin-foto { position: relative; }
.admin-foto img { width: 100%; aspect-ratio: 1/1; object-fit: cover; border-radius: var(--radius); }
.admin-foto-del {
  position: absolute; top: .25rem; right: .25rem;
  background: rgba(186,26,26,.85); color: #fff;
  border: none; border-radius: var(--radius-full);
  width: 1.75rem; height: 1.75rem;
  display: flex; align-items: center; justify-content: center;
  font-size: .75rem;
}

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

@media (max-width: 1024px) {
  :root { --margin-desk: 2rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  /* Nav */
  .nav-links { display: none; }
  .nav-toggle { display: flex; }

  /* Grids */
  .cta-grid,
  .over-grid,
  .featured-grid { grid-template-columns: 1fr; gap: 2rem; }
  .featured-groot { grid-row: auto; }
  .featured-groot img { height: 280px; }
  .featured-klein img { height: 200px; }
  .form-grid-2 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }

  /* Carousel knoppen iets kleiner */
  .carousel-btn { width: 2.25rem; height: 2.25rem; }
  .carousel-btn.vorig { left: -.5rem; }
  .carousel-btn.volg  { right: -.5rem; }

  /* Secties */
  :root { --section-gap: 4rem; }
  .hero-geel, .carousel-sectie { padding-left: var(--margin-mob); padding-right: var(--margin-mob); }
  .container { padding: 0 var(--margin-mob); }
  .cta-blok { padding: 2rem var(--margin-mob); }
}

@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .cat-grid { grid-template-columns: 1fr; }
  .hero-geel-knoppen { flex-direction: column; }
}
