/*
Theme Name: Fenne Kleijn Portfolio
Theme URI: https://fennekleijn.nl
Author: Fenne Kleijn
Description: Editoriaal portfolio thema voor Fenne Kleijn — Creative Media Design student aan het Grafisch Lyceum Utrecht. Volledig aanpasbaar via de WordPress Customizer.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: fenne-kleijn
Tags: portfolio, creative, editorial, one-column, custom-colors, custom-logo, featured-images, full-width-template, theme-options, translation-ready
*/

/* =========================================================
   CSS CUSTOM PROPERTIES
   Aanpasbaar via: Uiterlijk › Aanpassen › Kleurenpalet
   ========================================================= */
:root {
  /* — Huisstijlkleuren uit kleurenpalet foto — */
  --clr-plum:     #3D1F35;   /* Diep aubergine paars  */
  --clr-forest:   #1E3A1E;   /* Donker bosgroen       */
  --clr-navy:     #2D4160;   /* Staalblauuw           */
  --clr-sage:     #8AADB0;   /* Salie/blauwgroen      */
  --clr-blush:    #DFB4A4;   /* Warm zacht roze       */
  --clr-petal:    #F5E6E0;   /* Licht petal           */
  --clr-ice:      #EEF3F7;   /* IJsblauw licht        */
  --clr-white:    #FFFFFF;
  --clr-ink:      #111111;

  /* — Semantisch toegewezen — */
  --color-primary:      var(--clr-plum);
  --color-secondary:    var(--clr-navy);
  --color-accent:       var(--clr-blush);
  --color-accent-dark:  var(--clr-forest);
  --color-surface:      var(--clr-white);
  --color-surface-alt:  var(--clr-ice);
  --color-text:         var(--clr-ink);
  --color-text-soft:    #4A4A4A;
  --color-text-muted:   #767676;
  --color-border:       #E2E2E2;
  --color-border-soft:  #EFEFEF;

  /* — Typografie — */
  --font-serif:   'Cormorant Garamond', 'Playfair Display', Georgia, serif;
  --font-sans:    'DM Sans', 'Helvetica Neue', Arial, sans-serif;

  /* — Schaalbare font-groottes — */
  --fz-hero:   clamp(3.5rem, 9vw,  8rem);
  --fz-h1:     clamp(2.5rem, 5vw,  4.5rem);
  --fz-h2:     clamp(1.75rem, 3vw, 3rem);
  --fz-h3:     clamp(1.25rem, 2vw, 1.875rem);
  --fz-h4:     clamp(1.1rem, 1.5vw, 1.375rem);
  --fz-lg:     clamp(1.05rem, 1.5vw, 1.2rem);
  --fz-base:   clamp(0.95rem, 1.2vw, 1.05rem);
  --fz-sm:     clamp(0.8rem, 1vw,  0.9rem);
  --fz-xs:     0.75rem;

  /* — Spacing — */
  --sp-1:  0.25rem;
  --sp-2:  0.5rem;
  --sp-3:  0.75rem;
  --sp-4:  1rem;
  --sp-5:  1.25rem;
  --sp-6:  1.5rem;
  --sp-8:  2rem;
  --sp-10: 2.5rem;
  --sp-12: 3rem;
  --sp-16: 4rem;
  --sp-20: 5rem;
  --sp-24: 6rem;
  --sp-32: 8rem;

  /* — Layout — */
  --max-w:        1300px;
  --max-w-narrow: 700px;
  --gutter:       clamp(1.25rem, 4vw, 2.5rem);
  --section-y:    clamp(4rem, 8vw, 8rem);

  /* — Border radius — */
  --r-sm:   6px;
  --r-md:   12px;
  --r-lg:   20px;
  --r-xl:   36px;
  --r-pill: 9999px;

  /* — Schaduwen — */
  --shadow-card:  0 2px 16px rgba(0,0,0,0.07), 0 1px 4px rgba(0,0,0,0.05);
  --shadow-hover: 0 12px 48px rgba(61,31,53,0.15), 0 2px 8px rgba(0,0,0,0.08);
  --shadow-lg:    0 24px 80px rgba(0,0,0,0.14);

  /* — Transities — */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --dur-fast:  180ms;
  --dur-base:  320ms;
  --dur-slow:  580ms;
}

/* =========================================================
   RESET
   ========================================================= */
*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-sans);
  font-size: var(--fz-base);
  color: var(--color-text);
  background: var(--color-surface);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img,video { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul,ol { list-style: none; }
button { font-family: inherit; }

/* =========================================================
   TYPOGRAFIE
   ========================================================= */
h1,h2,h3,h4,h5,h6 {
  font-family: var(--font-serif);
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: -0.025em;
  color: var(--color-text);
}
h1 { font-size: var(--fz-h1); }
h2 { font-size: var(--fz-h2); }
h3 { font-size: var(--fz-h3); }
h4 { font-size: var(--fz-h4); }

p { line-height: 1.75; color: var(--color-text-soft); }

.eyebrow {
  font-family: var(--font-sans);
  font-size: var(--fz-xs);
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

.display {
  font-family: var(--font-serif);
  font-size: var(--fz-hero);
  font-weight: 300;
  line-height: 0.95;
  letter-spacing: -0.03em;
}

.lead {
  font-family: var(--font-serif);
  font-size: var(--fz-h4);
  font-weight: 300;
  line-height: 1.5;
  color: var(--color-text-soft);
}

/* =========================================================
   LAYOUT
   ========================================================= */
.wrap {
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.wrap--narrow {
  max-width: var(--max-w-narrow);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

/* =========================================================
   SITE HEADER & NAVIGATIE
   ========================================================= */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--sp-5) var(--gutter);
  transition:
    background var(--dur-base) var(--ease),
    box-shadow var(--dur-base) var(--ease),
    backdrop-filter var(--dur-base) var(--ease);
}

.site-header.is-scrolled {
  background: rgba(255,255,255,0.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 var(--color-border);
}

/* Logo */
.site-logo {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 400;
  letter-spacing: 0.01em;
  color: var(--color-text);
  transition: color var(--dur-fast);
}
.site-logo:hover { color: var(--color-primary); }
.site-logo strong { font-weight: 600; color: var(--color-primary); }

/* Navigatie links */
.nav-links {
  display: flex;
  align-items: center;
  gap: var(--sp-8);
}

.nav-links a {
  font-size: var(--fz-sm);
  font-weight: 500;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--color-text-soft);
  position: relative;
  transition: color var(--dur-fast);
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--color-primary);
  transition: width var(--dur-base) var(--ease);
}
.nav-links a:hover,
.nav-links a.current-menu-item { color: var(--color-primary); }
.nav-links a:hover::after,
.nav-links a.current-menu-item::after { width: 100%; }

/* CTA knop in nav */
.nav-cta {
  display: inline-flex;
  align-items: center;
  padding: var(--sp-3) var(--sp-6);
  background: var(--color-primary) !important;
  color: var(--clr-white) !important;
  border-radius: var(--r-pill);
  font-size: var(--fz-sm) !important;
  font-weight: 600 !important;
  letter-spacing: 0.06em !important;
  text-transform: uppercase !important;
  transition: background var(--dur-fast), transform var(--dur-fast) !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover {
  background: var(--color-secondary) !important;
  color: var(--clr-white) !important;
  transform: translateY(-1px);
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  background: none;
  border: none;
  padding: var(--sp-2);
  z-index: 201;
}
.nav-toggle span {
  display: block;
  width: 26px;
  height: 1.5px;
  background: var(--color-text);
  transition: all var(--dur-base) var(--ease);
  transform-origin: center;
}

@media (max-width: 820px) {
  .nav-toggle { display: flex; }
  .nav-links {
    position: fixed;
    inset: 0;
    background: var(--clr-white);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: var(--sp-8);
    transform: translateX(100%);
    transition: transform var(--dur-slow) var(--ease);
    z-index: 200;
  }
  .nav-links.is-open { transform: translateX(0); }
  .nav-links a { font-size: var(--fz-h4); }
}

/* =========================================================
   KNOPPEN
   ========================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  padding: var(--sp-4) var(--sp-8);
  font-family: var(--font-sans);
  font-size: var(--fz-sm);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  border-radius: var(--r-pill);
  transition: all var(--dur-base) var(--ease);
  white-space: nowrap;
}

.btn-primary {
  background: var(--color-primary);
  color: var(--clr-white);
}
.btn-primary:hover {
  background: var(--color-secondary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}

.btn-outline {
  background: transparent;
  color: var(--color-primary);
  border: 1.5px solid currentColor;
}
.btn-outline:hover {
  background: var(--color-primary);
  color: var(--clr-white);
  border-color: var(--color-primary);
}

.btn-ghost {
  background: transparent;
  color: var(--color-text);
  padding-inline: 0;
  border-radius: 0;
  gap: var(--sp-3);
}
.btn-ghost .arrow {
  display: inline-block;
  transition: transform var(--dur-base) var(--ease);
}
.btn-ghost:hover .arrow { transform: translateX(6px); }

.btn-lg { padding: var(--sp-5) var(--sp-12); font-size: var(--fz-base); }

/* =========================================================
   HERO — EDITORIAAL SPLIT LAYOUT
   ========================================================= */
.hero {
  min-height: 100svh;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  position: relative;
  overflow: hidden;
}

/* Lichte achtergrond rechterkant */
.hero::after {
  content: '';
  position: absolute;
  inset: 0 0 0 52%;
  background: var(--clr-ice);
  z-index: 0;
  pointer-events: none;
}

.hero__text {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: calc(var(--sp-32) + 60px) var(--gutter) var(--sp-20)
    max(var(--gutter), calc((100vw - var(--max-w)) / 2 + var(--gutter)));
}

.hero__eyebrow { margin-bottom: var(--sp-5); }

.hero__name {
  font-family: var(--font-serif);
  font-size: var(--fz-hero);
  font-weight: 300;
  line-height: 0.92;
  letter-spacing: -0.03em;
  margin-bottom: var(--sp-6);
}
.hero__name em {
  font-style: italic;
  color: var(--color-primary);
  display: block;
}

.hero__sub {
  font-size: var(--fz-lg);
  color: var(--color-text-soft);
  max-width: 420px;
  line-height: 1.6;
  margin-bottom: var(--sp-10);
}

.hero__actions { display: flex; align-items: center; gap: var(--sp-6); flex-wrap: wrap; }

.hero__scroll {
  position: absolute;
  bottom: var(--sp-8);
  left: max(var(--gutter), calc((100vw - var(--max-w)) / 2 + var(--gutter)));
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  font-size: var(--fz-xs);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}
.hero__scroll-line {
  display: block;
  width: 36px;
  height: 1px;
  background: currentColor;
}

.hero__visual {
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.hero__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.hero__visual-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(160deg, var(--clr-sage) 0%, var(--clr-navy) 60%, var(--clr-plum) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.25);
  font-family: var(--font-serif);
  font-size: 1.5rem;
  letter-spacing: 0.1em;
}

/* Decoratief label rechtsonder de hero visual */
.hero__label {
  position: absolute;
  bottom: var(--sp-6);
  right: var(--sp-6);
  background: var(--color-primary);
  color: var(--clr-white);
  padding: var(--sp-3) var(--sp-5);
  border-radius: var(--r-md);
  font-size: var(--fz-xs);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  writing-mode: horizontal-tb;
}

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 0;
  }
  .hero::after { display: none; }
  .hero__visual { height: 55vw; max-height: 420px; order: -1; }
  .hero__text { padding: var(--sp-10) var(--gutter) var(--sp-16); }
  .hero__scroll { display: none; }
}

/* =========================================================
   MARQUEE BALK
   ========================================================= */
.marquee-bar {
  background: var(--clr-plum);
  padding: var(--sp-4) 0;
  overflow: hidden;
  user-select: none;
}
.marquee__inner {
  display: flex;
  width: max-content;
  animation: marquee-scroll 22s linear infinite;
}
.marquee-bar:hover .marquee__inner { animation-play-state: paused; }
.marquee__item {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: rgba(255,255,255,0.55);
  padding: 0 var(--sp-6);
  white-space: nowrap;
  flex-shrink: 0;
}
.marquee__item--hi { color: var(--clr-blush); font-style: italic; }

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

/* =========================================================
   SECTIE HEADERS (herbruikbaar)
   ========================================================= */
.section-head { margin-bottom: var(--sp-12); }
.section-head--center { text-align: center; }
.section-head h2 { margin-top: var(--sp-3); margin-bottom: var(--sp-4); }
.section-head p { max-width: 520px; font-size: var(--fz-lg); }
.section-head--center p { margin-inline: auto; }

.divider {
  width: 40px;
  height: 2px;
  background: var(--color-primary);
  margin: var(--sp-5) 0;
}
.divider--center { margin-inline: auto; }

/* =========================================================
   PORTFOLIO GRID
   ========================================================= */
.pf-section { padding-block: var(--section-y); }

/* Subcategorie tabs */
.pf-tabs {
  display: flex;
  border-bottom: 1.5px solid var(--color-border);
  margin-bottom: var(--sp-12);
  overflow-x: auto;
  scrollbar-width: none;
  gap: 0;
}
.pf-tabs::-webkit-scrollbar { display: none; }

.pf-tab {
  padding: var(--sp-4) var(--sp-6);
  font-family: var(--font-sans);
  font-size: var(--fz-sm);
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--color-text-muted);
  background: none;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  position: relative;
  transition: color var(--dur-fast);
}
.pf-tab::after {
  content: '';
  position: absolute;
  bottom: -1.5px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--color-primary);
  transform: scaleX(0);
  transition: transform var(--dur-base) var(--ease);
}
.pf-tab:hover { color: var(--color-primary); }
.pf-tab.active { color: var(--color-primary); font-weight: 700; }
.pf-tab.active::after { transform: scaleX(1); }

/* Grid */
.pf-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-6);
}
.pf-grid--2col { grid-template-columns: repeat(2, 1fr); }
.pf-grid--4col { grid-template-columns: repeat(4, 1fr); }

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

/* Kaart */
.pf-card {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--color-surface-alt);
  box-shadow: var(--shadow-card);
  transition: box-shadow var(--dur-base) var(--ease), transform var(--dur-base) var(--ease);
}
.pf-card:hover { box-shadow: var(--shadow-hover); transform: translateY(-4px); }

.pf-card--tall .pf-card__img { aspect-ratio: 3/4; }

.pf-card__img {
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--clr-ice);
}
.pf-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--dur-slow) var(--ease);
}
.pf-card:hover .pf-card__img img { transform: scale(1.05); }

/* Hover overlay */
.pf-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(61,31,53,0.92) 0%, transparent 55%);
  opacity: 0;
  transition: opacity var(--dur-base) var(--ease);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: var(--sp-6);
}
.pf-card:hover .pf-card__overlay { opacity: 1; }
.pf-card__overlay h3 { color: #fff; font-size: var(--fz-h4); margin-bottom: var(--sp-1); }
.pf-card__overlay p  { color: rgba(255,255,255,0.7); font-size: var(--fz-sm); margin-bottom: var(--sp-4); }

.pf-card__meta {
  padding: var(--sp-4) var(--sp-5) var(--sp-5);
}
.pf-card__cat {
  font-size: var(--fz-xs);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: var(--sp-1);
}
.pf-card__title { font-size: var(--fz-lg); color: var(--color-text); }

/* =========================================================
   TEKST + AFBEELDING BLOK
   ========================================================= */
.split-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-16);
  align-items: center;
  padding-block: var(--section-y);
}
.split-block--rev .split-block__img { order: 2; }
.split-block--rev .split-block__text { order: 1; }

.split-block__img {
  border-radius: var(--r-xl);
  overflow: hidden;
  position: relative;
}
.split-block__img img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  transition: transform var(--dur-slow) var(--ease);
}
.split-block__img:hover img { transform: scale(1.04); }

/* Decoratief accent blokje op afbeelding */
.split-block__img::before {
  content: '';
  position: absolute;
  width: 80px;
  height: 80px;
  background: var(--clr-blush);
  border-radius: var(--r-md);
  bottom: -16px;
  right: -16px;
  z-index: -1;
}

@media (max-width: 860px) {
  .split-block { grid-template-columns: 1fr; gap: var(--sp-10); }
  .split-block--rev .split-block__img { order: 0; }
  .split-block--rev .split-block__text { order: 0; }
}

/* =========================================================
   SKILLS TAGS
   ========================================================= */
.tags {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-2);
  margin-top: var(--sp-5);
}
.tag {
  padding: var(--sp-2) var(--sp-4);
  border: 1.5px solid var(--color-border);
  border-radius: var(--r-pill);
  font-size: var(--fz-xs);
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--color-text-soft);
  transition: all var(--dur-fast);
}
.tag:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
  background: var(--clr-petal);
}
.tag--filled {
  background: var(--color-primary);
  color: var(--clr-white);
  border-color: var(--color-primary);
}

/* =========================================================
   STATISTIEKEN
   ========================================================= */
.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: var(--sp-8);
  padding-block: var(--sp-12);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}
.stat__num {
  font-family: var(--font-serif);
  font-size: var(--fz-h2);
  color: var(--color-primary);
  line-height: 1;
  margin-bottom: var(--sp-2);
}
.stat__label {
  font-size: var(--fz-xs);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

/* =========================================================
   QUOTE SECTIE
   ========================================================= */
.quote-section {
  padding-block: var(--section-y);
  text-align: center;
  background: var(--clr-petal);
}
.quote-section blockquote {
  font-family: var(--font-serif);
  font-size: clamp(1.4rem, 3vw, 2.4rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.45;
  color: var(--color-primary);
  max-width: 760px;
  margin: var(--sp-4) auto var(--sp-5);
}
.quote-section cite {
  font-family: var(--font-sans);
  font-size: var(--fz-xs);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  font-style: normal;
}

/* =========================================================
   CTA BANNER
   ========================================================= */
.cta-banner {
  background: var(--color-primary);
  padding-block: var(--section-y);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before,
.cta-banner::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
  pointer-events: none;
}
.cta-banner::before { width: 500px; height: 500px; top: -200px; right: -100px; }
.cta-banner::after  { width: 300px; height: 300px; bottom: -120px; left: -80px; }

.cta-banner .eyebrow { color: rgba(255,255,255,0.5); margin-bottom: var(--sp-3); }
.cta-banner h2  { color: #fff; margin-bottom: var(--sp-4); }
.cta-banner p   { color: rgba(255,255,255,0.7); max-width: 460px; margin: 0 auto var(--sp-8); }
.cta-banner .btn-primary {
  background: var(--clr-white);
  color: var(--color-primary);
}
.cta-banner .btn-primary:hover {
  background: var(--clr-petal);
  transform: translateY(-2px);
}

/* =========================================================
   CONTACTFORMULIER
   ========================================================= */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: var(--sp-20);
  align-items: start;
  padding-block: var(--sp-12);
}

.contact-info h2  { margin-bottom: var(--sp-5); }
.contact-info > p { margin-bottom: var(--sp-8); }

.contact-details { display: flex; flex-direction: column; gap: var(--sp-5); }
.contact-detail  { display: flex; align-items: center; gap: var(--sp-4); }
.contact-detail__icon {
  width: 48px;
  height: 48px;
  border-radius: var(--r-pill);
  background: var(--clr-petal);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}
.contact-detail__info p:first-child {
  font-size: var(--fz-xs);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: 2px;
}
.contact-detail__info p:last-child { color: var(--color-text); font-weight: 500; }

.contact-form-wrap {
  background: var(--color-surface-alt);
  border-radius: var(--r-xl);
  padding: var(--sp-10) var(--sp-12);
}

.form-group { margin-bottom: var(--sp-6); }
.form-group label {
  display: block;
  font-size: var(--fz-xs);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text);
  margin-bottom: var(--sp-2);
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: var(--sp-4) var(--sp-5);
  background: var(--clr-white);
  border: 1.5px solid var(--color-border);
  border-radius: var(--r-md);
  font-family: var(--font-sans);
  font-size: var(--fz-base);
  color: var(--color-text);
  appearance: none;
  -webkit-appearance: none;
  transition: border-color var(--dur-fast), box-shadow var(--dur-fast);
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(61,31,53,0.08);
}
.form-group textarea { min-height: 150px; resize: vertical; line-height: 1.65; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-4); }
@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }
.form-group.full { grid-column: 1/-1; }

@media (max-width: 880px) {
  .contact-layout { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: var(--sp-8); }
}

/* =========================================================
   ABOUT PAGINA
   ========================================================= */
.about-layout {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: var(--sp-24);
  align-items: start;
  padding-block: var(--section-y);
}
.about-img {
  position: sticky;
  top: 100px;
  border-radius: var(--r-xl);
  overflow: hidden;
}
.about-img img { width: 100%; aspect-ratio: 3/4; object-fit: cover; }
.about-img-placeholder {
  width: 100%;
  aspect-ratio: 3/4;
  background: linear-gradient(160deg, var(--clr-sage) 0%, var(--clr-navy) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.3);
  font-family: var(--font-serif);
  font-size: 1.5rem;
}
.about-content .lead { margin-bottom: var(--sp-8); }

@media (max-width: 880px) {
  .about-layout { grid-template-columns: 1fr; gap: var(--sp-10); }
  .about-img { position: static; max-width: 380px; }
}

/* =========================================================
   PAGINA HERO (generiek)
   ========================================================= */
.page-hero {
  padding-top: calc(60px + var(--section-y));
  padding-bottom: var(--sp-10);
  padding-inline: var(--gutter);
  max-width: var(--max-w);
  margin-inline: auto;
}
.page-hero h1 { margin-top: var(--sp-3); }

/* =========================================================
   SINGLE PROJECT
   ========================================================= */
.project-header {
  padding-top: calc(60px + var(--sp-16));
  padding-bottom: var(--sp-8);
}
.project-hero-img {
  width: 100%;
  max-height: 70vh;
  overflow: hidden;
}
.project-hero-img img {
  width: 100%;
  height: 70vh;
  object-fit: cover;
}
.project-body {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: var(--sp-16);
  padding-block: var(--sp-16);
  align-items: start;
}
.project-sidebar-card {
  background: var(--color-surface-alt);
  border-radius: var(--r-xl);
  padding: var(--sp-8);
  position: sticky;
  top: 100px;
}
.project-meta-row {
  padding-block: var(--sp-4);
  border-bottom: 1px solid var(--color-border-soft);
}
.project-meta-row:last-of-type { border-bottom: none; }
.project-meta-row .eyebrow { margin-bottom: var(--sp-1); font-size: 0.65rem; }
.project-meta-row p { font-weight: 600; color: var(--color-text); font-size: var(--fz-sm); }
.project-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-block: var(--sp-10);
  border-top: 1px solid var(--color-border);
  gap: var(--sp-4);
}
.project-nav__item { display: flex; align-items: center; gap: var(--sp-3); }
.project-nav__label { font-size: var(--fz-xs); letter-spacing: 0.1em; text-transform: uppercase; color: var(--color-text-muted); }
.project-nav__title { font-weight: 600; font-size: var(--fz-sm); color: var(--color-text); }

@media (max-width: 860px) {
  .project-body { grid-template-columns: 1fr; }
  .project-sidebar-card { position: static; }
}

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer {
  background: var(--clr-plum);
  color: rgba(255,255,255,0.65);
  padding: var(--sp-16) var(--gutter) var(--sp-8);
}
.footer-grid {
  max-width: var(--max-w);
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: var(--sp-12);
  padding-bottom: var(--sp-10);
  border-bottom: 1px solid rgba(255,255,255,0.1);
  margin-bottom: var(--sp-8);
}
.footer-brand .site-logo { color: var(--clr-white); display: block; margin-bottom: var(--sp-4); }
.footer-brand p { font-size: var(--fz-sm); max-width: 260px; }

.footer-col h5 {
  font-family: var(--font-sans);
  font-size: var(--fz-xs);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
  margin-bottom: var(--sp-5);
}
.footer-col ul { display: flex; flex-direction: column; gap: var(--sp-3); }
.footer-col a {
  color: rgba(255,255,255,0.55);
  font-size: var(--fz-sm);
  transition: color var(--dur-fast);
}
.footer-col a:hover { color: var(--clr-blush); }

.footer-bottom {
  max-width: var(--max-w);
  margin-inline: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: var(--fz-xs);
  flex-wrap: wrap;
  gap: var(--sp-4);
  color: rgba(255,255,255,0.35);
}

.social-row { display: flex; gap: var(--sp-5); }
.social-row a {
  color: rgba(255,255,255,0.35);
  font-size: var(--fz-sm);
  font-weight: 500;
  transition: color var(--dur-fast);
}
.social-row a:hover { color: var(--clr-blush); }

@media (max-width: 720px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1/-1; }
}

/* =========================================================
   SCROLL REVEAL
   ========================================================= */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity var(--dur-slow) var(--ease),
    transform var(--dur-slow) var(--ease);
}
[data-reveal].revealed { opacity: 1; transform: none; }
[data-delay="1"] { transition-delay: 80ms; }
[data-delay="2"] { transition-delay: 160ms; }
[data-delay="3"] { transition-delay: 240ms; }
[data-delay="4"] { transition-delay: 320ms; }
[data-delay="5"] { transition-delay: 400ms; }

/* =========================================================
   HULPKLASSEN
   ========================================================= */
.text-center { text-align: center; }
.mt-8 { margin-top: var(--sp-8); }
.mt-12 { margin-top: var(--sp-12); }
.mb-0 { margin-bottom: 0; }
.color-accent { color: var(--color-accent); }
.color-primary { color: var(--color-primary); }
.bg-soft { background: var(--color-surface-alt); }
.bg-petal { background: var(--clr-petal); }
.bg-plum  { background: var(--clr-plum); }
.bg-navy  { background: var(--clr-navy); }
.sr-only {
  position:absolute; width:1px; height:1px;
  padding:0; margin:-1px; overflow:hidden;
  clip:rect(0,0,0,0); white-space:nowrap; border:0;
}

/* =========================================================
   WORDPRESS CORE KLASSEN
   ========================================================= */
.wp-block-image img { border-radius: var(--r-md); }
.alignnone, .alignleft, .alignright { margin: 0; }
.aligncenter { display: block; margin-inline: auto; }
.wp-caption { max-width: 100%; }

.entry-content h2 { margin-top: var(--sp-10); margin-bottom: var(--sp-4); }
.entry-content h3 { margin-top: var(--sp-8); margin-bottom: var(--sp-3); }
.entry-content p  { margin-bottom: var(--sp-5); }
.entry-content ul,
.entry-content ol { padding-left: 1.5rem; margin-bottom: var(--sp-5); }
.entry-content li { margin-bottom: var(--sp-2); }
