/*
Theme Name: Sculptuurfundatie
Theme URI: https://sculptuurfundatie.nl
Author: Sculptuurfundatie
Author URI: https://sculptuurfundatie.nl
Description: Een minimalistisch museum-georiënteerd thema voor Sculptuurfundatie. Volledige aandacht voor de werken — rust, witruimte, Cormorant Garamond + Inter typografie, oranje accent #EA6320.
Version: 1.2.8
Requires at least: 6.0
Requires PHP: 7.4
License: GPL v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: sculptuurfundatie
*/

/* ==========================================================================
   DESIGN SYSTEM
   ========================================================================== */
:root {
  --bg: #faf8f5;
  --bg-alt: #f4f1ec;
  --bg-card: #ffffff;
  --bg-dark: #1c1917;
  --bg-darker: #0f0e0d;
  --text: #1a1a1a;
  --text-muted: #6b6b6b;
  --text-light: #a8a29e;
  --text-on-dark: #f5f3ef;
  --text-on-dark-muted: #a8a29e;
  --rule: #e7e3dc;
  --rule-dark: #2a2825;
  --accent: #EA6320;

  --font-display: 'Cormorant Garamond', 'Times New Roman', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  --container: 1280px;
  --container-narrow: 780px;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-slow: cubic-bezier(0.16, 1, 0.3, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
}
img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }

.display { font-family: var(--font-display); font-weight: 400; letter-spacing: -0.01em; line-height: 1.05; }
h1.display { font-size: clamp(3rem, 7vw, 6.5rem); }
h2.display { font-size: clamp(2.25rem, 4.5vw, 4rem); line-height: 1.08; }
h3.display { font-size: clamp(1.5rem, 2.5vw, 2.25rem); line-height: 1.15; }

.eyebrow { font-family: var(--font-body); font-size: 0.7rem; font-weight: 500; letter-spacing: 0.25em; text-transform: uppercase; color: var(--text-muted); display: inline-block; }
.eyebrow-accent { color: var(--accent); }
.lead { font-family: var(--font-display); font-size: clamp(1.25rem, 1.6vw, 1.5rem); line-height: 1.5; font-style: italic; font-weight: 400; color: var(--text-muted); }
.body-lg { font-size: 1.0625rem; line-height: 1.75; color: var(--text-muted); }
.divider { width: 36px; height: 1px; background: currentColor; opacity: 0.5; margin: 1.5rem 0; display: inline-block; }
.divider-center { margin-left: auto; margin-right: auto; display: block; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 2rem; }
.container-narrow { max-width: var(--container-narrow); margin: 0 auto; padding: 0 2rem; }


/* Hide menu checkbox at all viewport widths */
.sf-menu-cb { position: absolute !important; opacity: 0 !important; pointer-events: none !important; width: 0 !important; height: 0 !important; clip: rect(0 0 0 0); overflow: hidden; }

/* ==========================================================================
   HEADER / NAVIGATION
   ========================================================================== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.25rem 2rem;
  background: rgba(250, 248, 245, 0);
  backdrop-filter: blur(0);
  transition: background 0.4s var(--ease), backdrop-filter 0.4s var(--ease), padding 0.4s var(--ease), border-color 0.4s var(--ease);
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(250, 248, 245, 0.92);
  backdrop-filter: saturate(180%) blur(14px);
  padding: 0.85rem 2rem;
  border-bottom: 1px solid var(--rule);
}
.site-header.on-dark { color: var(--text-on-dark); }
.site-header.on-dark.scrolled { color: var(--text); }

.nav-inner { max-width: var(--container); margin: 0 auto; display: flex; align-items: center; justify-content: space-between; }
.brand { display: flex; align-items: center; gap: 0.75rem; font-family: var(--font-display); font-size: 1.4rem; font-weight: 500; letter-spacing: 0.02em; color: inherit; }
.brand-icon { height: 42px; width: auto; display: block; transition: height 0.4s var(--ease); }
.brand-text { color: inherit; font-family: var(--font-display); font-size: 1.45rem; font-weight: 500; letter-spacing: 0.01em; line-height: 1; }
.site-header.scrolled .brand-icon { height: 34px; }
.site-header.scrolled .brand-text { font-size: 1.25rem; }

.nav-list { display: flex; gap: 2.25rem; list-style: none; align-items: center; }
.nav-list a { font-size: 0.78rem; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase; color: inherit; position: relative; padding: 0.5rem 0; transition: opacity 0.2s var(--ease); }
.nav-list a::after { content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 1px; background: var(--accent); transition: width 0.4s var(--ease); }
.nav-list a:hover::after, .nav-list a.active::after, .nav-list .current-menu-item > a::after { width: 100%; }
.nav-list a:hover { opacity: 0.7; }

.nav-list a.nav-cta { padding: 1.1rem; border: 1px solid var(--accent); color: var(--accent); font-size: 0.72rem; letter-spacing: 0.22em; transition: background 0.3s var(--ease), color 0.3s var(--ease), border-color 0.3s var(--ease); margin-left: 0.5rem; display: inline-flex; align-items: center; line-height: 1; }
.nav-list a.nav-cta::after { display: none; }
.nav-list a.nav-cta:hover, .nav-list a.nav-cta:focus, .nav-list a.nav-cta:active { background: var(--accent) !important; color: #fff !important; border-color: var(--accent) !important; opacity: 1; }
.site-header.on-dark .nav-list a.nav-cta { color: var(--accent); border-color: var(--accent); }
.site-header.on-dark .nav-list a.nav-cta:hover, .site-header.on-dark .nav-list a.nav-cta:focus { background: var(--accent) !important; color: #fff !important; }

.menu-toggle { display: none; background: none; border: none; color: inherit; cursor: pointer; padding: 0.5rem; font-size: 1.2rem; }

/* ==========================================================================
   HERO
   ========================================================================== */
.hero { position: relative; min-height: 100vh; display: flex; align-items: flex-end; padding: 8rem 2rem 4rem; background: var(--bg-darker); color: var(--text-on-dark); overflow: hidden; }
.hero-slide { position: absolute; inset: 0; background-size: cover; background-position: center 28%; opacity: 0; transform: scale(1.06); transition: opacity 1.2s var(--ease-slow), transform 12s linear; will-change: opacity, transform; }
.hero-slide.is-active { opacity: 0.6; transform: scale(1); }
.hero::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(15,14,13,0.35) 0%, rgba(15,14,13,0.1) 30%, rgba(15,14,13,0.7) 100%); pointer-events: none; }
.hero-inner { max-width: var(--container); margin: 0 auto; position: relative; z-index: 2; width: 100%; display: grid; grid-template-columns: 1fr auto; gap: 3rem; align-items: end; }
.hero h1 { font-family: var(--font-display); font-weight: 400; font-size: clamp(3rem, 8vw, 7rem); line-height: 1; letter-spacing: -0.015em; max-width: 14ch; }
.hero h1 em { font-style: italic; font-weight: 300; color: #e0d7c5; }
.hero-eyebrow { font-family: var(--font-body); font-size: 0.75rem; letter-spacing: 0.3em; text-transform: uppercase; color: rgba(245, 243, 239, 0.7); margin-bottom: 2rem; display: block; }
.hero-meta { font-size: 0.78rem; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(245, 243, 239, 0.55); text-align: right; line-height: 1.8; }
.hero-meta strong { color: var(--text-on-dark); font-weight: 500; }
.scroll-cue { position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%); font-size: 0.65rem; letter-spacing: 0.3em; text-transform: uppercase; color: rgba(245, 243, 239, 0.6); display: flex; flex-direction: column; align-items: center; gap: 0.5rem; z-index: 2; animation: cueFloat 2.5s var(--ease) infinite; }
.scroll-cue .line { width: 1px; height: 40px; background: rgba(245, 243, 239, 0.4); }
@keyframes cueFloat { 0%, 100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(8px); } }

/* ==========================================================================
   SECTIONS
   ========================================================================== */
section { padding: clamp(4rem, 9vw, 9rem) 0; position: relative; }
.section-head { display: grid; grid-template-columns: 1fr 2fr; gap: 4rem; margin-bottom: 5rem; align-items: end; }
.section-head h2 { max-width: 14ch; }
.section-head .head-text { color: var(--text-muted); max-width: 50ch; font-size: 1.0625rem; line-height: 1.75; }

.intro { background: var(--bg); text-align: center; padding: clamp(5rem, 12vw, 11rem) 2rem; }
.intro .container-narrow > * + * { margin-top: 2rem; }
.intro h2 { font-family: var(--font-display); font-weight: 400; font-size: clamp(2rem, 4vw, 3.25rem); line-height: 1.2; letter-spacing: -0.01em; }
.intro h2 em { font-style: italic; color: var(--text-muted); font-weight: 300; }
.intro p { font-size: 1.0625rem; line-height: 1.85; color: var(--text-muted); max-width: 56ch; margin-left: auto; margin-right: auto; }

/* ==========================================================================
   ARTISTS
   ========================================================================== */
.artists { background: var(--bg); }
.artist-row { display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: center; padding: 5rem 0; border-top: 1px solid var(--rule); }
.artist-row:last-of-type { border-bottom: 1px solid var(--rule); }
.artist-row.reverse .artist-image-wrap { order: 2; }
.artist-image-wrap { position: relative; aspect-ratio: 4 / 5; overflow: hidden; background: var(--bg-alt); }
.artist-image { position: absolute; inset: 0; background-size: cover; background-position: center; transition: transform 1.2s var(--ease-slow); }
.artist-row:hover .artist-image { transform: scale(1.04); }
.artist-content { padding: 0 1rem; }
.artist-number { font-family: var(--font-display); font-style: italic; font-size: 1rem; color: var(--accent); letter-spacing: 0.05em; display: block; margin-bottom: 0.5rem; }
.artist-name { font-family: var(--font-display); font-weight: 400; font-size: clamp(2rem, 3.5vw, 3rem); line-height: 1.1; letter-spacing: -0.01em; margin-bottom: 0.5rem; }
.artist-years { font-size: 0.85rem; color: var(--text-light); letter-spacing: 0.05em; margin-bottom: 1.5rem; }
.artist-bio { color: var(--text-muted); font-size: 1.0625rem; line-height: 1.75; margin-bottom: 2rem; max-width: 42ch; }

.link-arrow { display: inline-flex; align-items: center; gap: 0.7rem; font-size: 0.78rem; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase; color: var(--text); position: relative; padding-bottom: 0.4rem; border-bottom: 1px solid var(--text); transition: gap 0.3s var(--ease), color 0.3s var(--ease); }
.link-arrow:hover { gap: 1.1rem; color: var(--accent); border-color: var(--accent); }
.link-arrow svg { width: 14px; height: 14px; transition: transform 0.3s var(--ease); }
.link-arrow:hover svg { transform: translateX(2px); }

/* ==========================================================================
   COLLECTIE
   ========================================================================== */
.collectie { background: var(--bg-alt); }
.collectie-filter { display: flex; gap: 0.5rem; flex-wrap: wrap; margin-bottom: 4rem; border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule); padding: 1.25rem 0; }
.filter-btn { font-family: var(--font-body); font-size: 0.72rem; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase; background: none; border: none; padding: 0.5rem 1.25rem; color: var(--text-muted); cursor: pointer; transition: color 0.2s var(--ease); position: relative; }
.filter-btn:hover { color: var(--text); }
.filter-btn.active { color: var(--text); }
.filter-btn.active::before { content: '— '; color: var(--accent); font-family: var(--font-body); letter-spacing: 0; }

.collectie-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 3rem 2rem; }
.work { cursor: pointer; transition: transform 0.5s var(--ease); }
.work-image-wrap { position: relative; aspect-ratio: 4 / 5; overflow: hidden; background: #fff; margin-bottom: 1.25rem; }
.work-image { position: absolute; inset: 0; background-size: cover; background-position: center; transition: transform 1.2s var(--ease-slow); }
.work:hover .work-image { transform: scale(1.05); }
.work-image-wrap::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 60%, rgba(0,0,0,0.15) 100%); opacity: 0; transition: opacity 0.4s var(--ease); }
.work:hover .work-image-wrap::after { opacity: 1; }
.work-meta { padding: 0 0.25rem; }
.work-artist { font-size: 0.7rem; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 0.4rem; }
.work-title { font-family: var(--font-display); font-size: 1.5rem; font-weight: 400; font-style: italic; letter-spacing: -0.005em; line-height: 1.25; color: var(--text); }
.work-spec { font-size: 0.85rem; color: var(--text-light); margin-top: 0.4rem; letter-spacing: 0.02em; }
.work.hidden { display: none; }

/* ==========================================================================
   DIENSTEN
   ========================================================================== */
.diensten { background: var(--bg-dark); color: var(--text-on-dark); }
.diensten .section-head h2 { color: var(--text-on-dark); }
.diensten .section-head .head-text { color: var(--text-on-dark-muted); }
.diensten .eyebrow { color: var(--text-on-dark-muted); }
.dienst-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--rule-dark); border-top: 1px solid var(--rule-dark); border-bottom: 1px solid var(--rule-dark); }
.dienst { background: var(--bg-dark); padding: 3rem 2rem; transition: background 0.4s var(--ease); cursor: default; }
.dienst:hover { background: var(--bg-darker); }
.dienst-num { font-family: var(--font-display); font-style: italic; color: var(--accent); font-size: 0.95rem; margin-bottom: 1.25rem; display: block; }
.dienst h3 { font-family: var(--font-display); font-weight: 400; font-size: 1.65rem; line-height: 1.2; margin-bottom: 1rem; }
.dienst p { color: var(--text-on-dark-muted); font-size: 0.95rem; line-height: 1.7; }

/* ==========================================================================
   QUOTE
   ========================================================================== */
.quote-section { background: var(--bg); padding: clamp(3rem, 7vw, 6rem) 2rem; text-align: center; }
.quote { font-family: var(--font-display); font-style: italic; font-weight: 400; font-size: clamp(1.5rem, 2.6vw, 2.1rem); line-height: 1.4; letter-spacing: -0.005em; max-width: 60ch; margin: 0 auto 1.5rem; color: var(--text); position: relative; }
.quote::before { content: '"'; font-family: var(--font-display); color: var(--accent); font-size: 1em; display: block; line-height: 1; margin-bottom: 1rem; }
.quote-attribution { font-size: 0.75rem; letter-spacing: 0.25em; text-transform: uppercase; color: var(--text-muted); }

/* ==========================================================================
   OVER
   ========================================================================== */
.over { background: var(--bg); position: relative; }
.over-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 6rem; align-items: start; }
.over-image-wrap { position: sticky; top: 8rem; overflow: hidden; }
.over-image { display: block; width: 100%; height: auto; }
.over-content > * + * { margin-top: 1.5rem; }
.over-content h2 { margin-bottom: 0.5rem; }
.over-content p { font-size: 1.0625rem; line-height: 1.85; color: var(--text-muted); max-width: 50ch; }
.over-content p strong { color: var(--text); font-weight: 500; }
.over-list { list-style: none; margin-top: 2.5rem; border-top: 1px solid var(--rule); }
.over-list li { padding: 1.25rem 0; border-bottom: 1px solid var(--rule); display: grid; grid-template-columns: auto 1fr; gap: 2rem; align-items: start; }
.over-list .num { font-family: var(--font-display); font-style: italic; color: var(--accent); font-size: 0.95rem; padding-top: 0.2rem; }
.over-list h4 { font-family: var(--font-display); font-weight: 500; font-size: 1.25rem; margin-bottom: 0.4rem; }
.over-list p { font-size: 0.95rem; color: var(--text-muted); margin: 0; }

/* ==========================================================================
   GENERIC PAGE (Over Ons / Contact / etc.)
   ========================================================================== */
.page-hero { background: var(--bg-dark); color: var(--text-on-dark); padding: 11rem 2rem 5rem; text-align: center; }
.page-hero .eyebrow { color: var(--accent); }
.page-hero h1 { font-family: var(--font-display); font-weight: 400; font-size: clamp(2.5rem, 5.5vw, 4.5rem); line-height: 1.05; letter-spacing: -0.01em; margin-top: 1rem; }
.page-hero h1 em { font-style: italic; color: var(--text-on-dark-muted); font-weight: 300; }

.page-content { background: var(--bg); padding: clamp(4rem, 8vw, 7rem) 0; }
.page-content .container-narrow > * + * { margin-top: 1.25rem; }
.page-content h2, .page-content h3 { font-family: var(--font-display); font-weight: 400; line-height: 1.2; margin-top: 2.5rem; }
.page-content h2 { font-size: 2rem; }
.page-content h3 { font-size: 1.5rem; }
.page-content p { font-size: 1.0625rem; line-height: 1.85; color: var(--text-muted); }
.page-content p strong { color: var(--text); font-weight: 500; }
.page-content a { color: var(--accent); border-bottom: 1px solid var(--accent); }
.page-content ul, .page-content ol { padding-left: 1.5rem; color: var(--text-muted); line-height: 1.85; }
.page-content blockquote { border-left: 2px solid var(--accent); padding-left: 1.5rem; font-family: var(--font-display); font-style: italic; font-size: 1.5rem; line-height: 1.4; color: var(--text); margin: 2rem 0; }

/* ==========================================================================
   CONTACT / FOOTER
   ========================================================================== */
.contact { background: var(--bg-dark); color: var(--text-on-dark); padding: clamp(5rem, 10vw, 9rem) 2rem 4rem; }
.contact-inner { max-width: var(--container); margin: 0 auto; }
.contact-head { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: end; margin-bottom: 5rem; padding-bottom: 4rem; border-bottom: 1px solid var(--rule-dark); }
.contact-head h2 { font-family: var(--font-display); font-weight: 400; font-size: clamp(2.25rem, 5vw, 4rem); line-height: 1.05; letter-spacing: -0.01em; }
.contact-head h2 em { font-style: italic; color: var(--text-on-dark-muted); font-weight: 300; }
.contact-head p { color: var(--text-on-dark-muted); font-size: 1.0625rem; line-height: 1.75; max-width: 42ch; }
.footer-logo { height: 96px; width: auto; margin-bottom: 2rem; display: block; }
.contact-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 3rem; }
.contact-block .label { font-size: 0.7rem; font-weight: 500; letter-spacing: 0.25em; text-transform: uppercase; color: var(--text-on-dark-muted); margin-bottom: 1rem; display: block; }
.contact-block .value { font-family: var(--font-display); font-size: 1.5rem; font-weight: 400; line-height: 1.4; color: var(--text-on-dark); display: block; transition: color 0.3s var(--ease); }
.contact-block a.value:hover { color: var(--accent); }
.contact-block .sub { color: var(--text-on-dark-muted); font-size: 0.95rem; margin-top: 0.4rem; line-height: 1.6; }
.footer-bottom { margin-top: 6rem; padding-top: 2rem; border-top: 1px solid var(--rule-dark); display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; font-size: 0.78rem; letter-spacing: 0.1em; color: var(--text-on-dark-muted); }
.footer-bottom a { transition: color 0.3s var(--ease); }
.footer-bottom a:hover { color: var(--accent); }

/* ==========================================================================
   LIGHTBOX
   ========================================================================== */
.lightbox { position: fixed; inset: 0; background: rgba(15, 14, 13, 0.96); z-index: 200; display: none; opacity: 0; transition: opacity 0.4s var(--ease); }
.lightbox.active { display: flex; opacity: 1; }
.lightbox-inner { width: 100%; height: 100%; display: grid; grid-template-columns: 1.6fr 1fr; align-items: center; padding: 4rem 5rem; gap: 4rem; }
.lb-image-wrap { height: 100%; display: flex; align-items: center; justify-content: center; }
.lb-image { max-height: 80vh; max-width: 100%; background-size: contain; background-position: center; background-repeat: no-repeat; width: 100%; height: 80vh; }
.lb-meta { color: var(--text-on-dark); }
.lb-meta .eyebrow { color: var(--accent); }
.lb-meta h3 { font-family: var(--font-display); font-style: italic; font-weight: 400; font-size: clamp(2rem, 3vw, 2.75rem); line-height: 1.1; margin: 1rem 0 1.5rem; }
.lb-meta dl { border-top: 1px solid var(--rule-dark); padding-top: 1.5rem; }
.lb-meta dl > div { display: grid; grid-template-columns: 11rem 1fr; padding: 0.75rem 0; border-bottom: 1px solid var(--rule-dark); align-items: baseline; }
.lb-meta dt { font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--text-on-dark-muted); }
.lb-meta dd { font-size: 0.95rem; color: var(--text-on-dark); }
.lb-close { position: absolute; top: 2rem; right: 2rem; background: none; border: 1px solid var(--rule-dark); width: 48px; height: 48px; color: var(--text-on-dark); cursor: pointer; font-family: var(--font-body); font-size: 1.1rem; border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: all 0.3s var(--ease); }
.lb-close:hover { background: var(--bg-dark); border-color: var(--accent); color: var(--accent); }

/* ==========================================================================
   ANIMATIONS
   ========================================================================== */
/* Reveals: ALWAYS visible. JS adds .in for animation but visibility never depends on JS. */
.reveal { opacity: 1; transform: none; transition: opacity 1s var(--ease-slow), transform 1s var(--ease-slow); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* Hero: CSS-only fade-in via @keyframes. No JS dependency. */
.hero h1, .hero-eyebrow, .hero-meta { opacity: 0; animation: sfFadeUp 1.4s var(--ease-slow) forwards; }
.hero-eyebrow { animation-delay: 0.3s; }
.hero h1 { animation-delay: 0.5s; }
.hero-meta { animation-delay: 0.7s; }
.scroll-cue { opacity: 0; animation: sfFadeIn 1s var(--ease-slow) 1s forwards; }
@keyframes sfFadeUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
@keyframes sfFadeIn { from { opacity: 0; } to { opacity: 1; } }
/* First hero slide visible by default WHEN JS IS NOT ACTIVE. With JS, .is-active controls visibility for all slides. */
html:not(.sf-js) .hero-slide-1 { opacity: 0.6; transform: scale(1); }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

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

@media (max-width: 860px) {
  body { font-size: 15.5px; }
  .container, .container-narrow { padding: 0 1.25rem; }
  .site-header { padding: 1rem 1.25rem; }
  .site-header.scrolled { padding: 0.7rem 1.25rem; }
  .brand-text { font-size: 1.15rem; }
  .brand-icon { height: 36px; }
  .site-header.scrolled .brand-icon { height: 30px; }
  .site-header.scrolled .brand-text { font-size: 1.05rem; }
  /* Verstop de checkbox */
  .sf-menu-cb { position: absolute; opacity: 0; pointer-events: none; width: 0; height: 0; }

  /* Hamburger label = clickable button */
  .menu-toggle {
    display: flex !important;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 200;
    color: inherit;
    cursor: pointer;
    width: 48px;
    height: 48px;
    padding: 0;
    -webkit-tap-highlight-color: transparent;
    background: none;
    border: none;
  }
  .sf-burger { position: relative; display: block; width: 24px; height: 2px; background: currentColor; transition: background 0.2s; }
  .sf-burger::before, .sf-burger::after { content: ''; position: absolute; left: 0; width: 24px; height: 2px; background: currentColor; transition: transform 0.3s var(--ease); }
  .sf-burger::before { top: -8px; }
  .sf-burger::after  { top: 8px; }

  /* Nav list — dropdown panel ONDER de header, items gestapeld */
  .nav-list {
    display: none !important;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: var(--bg-dark);
    color: var(--text-on-dark);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    z-index: 150;
    margin: 0;
    padding: 0.5rem 0;
    list-style: none;
    box-shadow: 0 12px 24px rgba(0,0,0,0.25);
    border-top: 1px solid var(--rule-dark);
  }
  .nav-list li { width: 100%; list-style: none; }
  .sf-menu-cb:checked ~ .nav-inner .nav-list,
  .nav-list.open {
    display: flex !important;
    animation: sfMenuFadeIn 0.3s var(--ease) forwards;
  }
  /* X-icoon als checkbox aan staat */
  .sf-menu-cb:checked ~ .nav-inner .sf-burger { background: transparent; }
  .sf-menu-cb:checked ~ .nav-inner .sf-burger::before { transform: translateY(8px) rotate(45deg); }
  .sf-menu-cb:checked ~ .nav-inner .sf-burger::after  { transform: translateY(-8px) rotate(-45deg); }
  @keyframes sfMenuFadeIn { from { opacity: 0; } to { opacity: 1; } }
  .nav-list li { list-style: none; }
  .nav-list a {
    display: block;
    width: 100%;
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 400;
    letter-spacing: 0.01em;
    text-transform: none;
    color: var(--text-on-dark) !important;
    padding: 0.85rem 1.5rem;
    line-height: 1.2;
    text-align: center;
    border-bottom: 1px solid var(--rule-dark);
  }
  .nav-list li:last-child a { border-bottom: none; }
  .nav-list a::after { display: none; }
  .nav-list a.nav-cta {
    margin: 0 !important;
    font-family: var(--font-body) !important;
    font-size: 0.78rem !important;
    text-transform: uppercase !important;
    letter-spacing: 0.22em !important;
    padding: 1.1rem 1.5rem !important;
    border: none !important;
    border-bottom: 1px solid var(--rule-dark) !important;
    color: var(--accent) !important;
    background: rgba(234, 99, 32, 0.08);
  }
  /* Header above the overlay menu */
  .site-header { z-index: 105; }
  .artist-row { grid-template-columns: 1fr; gap: 2.5rem; padding: 3rem 0; }
  .artist-row.reverse .artist-image-wrap { order: 0; }
  .over-grid { grid-template-columns: 1fr; gap: 3rem; }
  .over-image-wrap { position: relative; top: 0; }
  .lightbox-inner { grid-template-columns: 1fr; padding: 3rem 1.5rem; gap: 1.5rem; align-items: start; overflow-y: auto; }
  .lb-image { height: 50vh; }
}

@media (max-width: 720px) {
  .hero { padding: 6rem 1.25rem 3rem; min-height: 92vh; }
  .hero-inner { grid-template-columns: 1fr; gap: 1.5rem; }
  .hero h1 { font-size: clamp(2.5rem, 11vw, 4rem); }
  .hero h1 br { display: none; }
  .hero-meta { text-align: left; font-size: 0.7rem; line-height: 1.7; }
  .hero-eyebrow { margin-bottom: 1.25rem; font-size: 0.65rem; }
  .scroll-cue { display: none; }
  .intro { padding: 4rem 1.25rem; }
  .intro h2 { font-size: clamp(1.75rem, 6vw, 2.5rem); }
  section { padding: 4rem 0; }
  .section-head { grid-template-columns: 1fr; gap: 1.5rem; margin-bottom: 3rem; }
  .section-head .head-text { font-size: 1rem; }
  .collectie-filter { gap: 0.25rem; padding: 0.75rem 0; }
  .filter-btn { padding: 0.4rem 0.85rem; font-size: 0.65rem; letter-spacing: 0.15em; }
  .quote-section { padding: 4rem 1.25rem; }
  .quote { font-size: clamp(1.3rem, 5.5vw, 1.8rem); max-width: 26ch; }
  .dienst { padding: 2rem 1.25rem; }
  .dienst h3 { font-size: 1.4rem; }
  .contact { padding: 4rem 1.25rem 3rem; }
  .footer-logo { height: 72px; margin-bottom: 1.25rem; }
  .contact-block .value { font-size: 1.25rem; }
  .contact-head { grid-template-columns: 1fr; gap: 2rem; padding-bottom: 3rem; margin-bottom: 3rem; }
  .contact-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { margin-top: 3rem; flex-direction: column; align-items: flex-start; gap: 0.75rem; }
  .artist-row { padding: 2.5rem 0; gap: 2rem; }
  .artist-content { padding: 0; }
  .artist-name { font-size: clamp(1.65rem, 6vw, 2.25rem); }
  .over-list li { grid-template-columns: auto 1fr; gap: 1rem; padding: 1rem 0; }
  .over-list h4 { font-size: 1.1rem; }
  .lightbox-inner { padding: 4.5rem 1.25rem 2rem; gap: 1rem; }
  .lb-image { height: 45vh; }
  .lb-meta dl > div { grid-template-columns: 1fr; padding: 0.6rem 0; gap: 0.15rem; }
  .lb-meta dt { font-size: 0.62rem !important; }
  .lb-meta dt { font-size: 0.65rem; }
  .lb-meta dd { font-size: 0.9rem; }
  .lb-close { top: 1rem; right: 1rem; width: 40px; height: 40px; }
}

@media (max-width: 380px) {
  .brand-text { font-size: 1rem; }
  .brand-icon { height: 32px; }
  .hero h1 { font-size: clamp(2.2rem, 12vw, 3rem); }
  .hero { padding-top: 5rem; }
  .filter-btn { font-size: 0.62rem; padding: 0.35rem 0.7rem; }
  .work-title { font-size: 1.25rem; }
}

/* ==========================================================================
   WORDPRESS DEFAULTS
   ========================================================================== */
.alignwide { max-width: 1100px; margin-left: auto; margin-right: auto; }
.alignfull { width: 100vw; margin-left: calc(50% - 50vw); }
.aligncenter { display: block; margin-left: auto; margin-right: auto; }
.alignleft { float: left; margin-right: 1.5rem; }
.alignright { float: right; margin-left: 1.5rem; }
.wp-block-image figcaption { color: var(--text-light); font-size: 0.85rem; margin-top: 0.5rem; text-align: center; }
.screen-reader-text { position: absolute; left: -9999px; }


/* === Niet-homepagina's: header is altijd zichtbaar (geen JS nodig) === */
body:not(.home) .site-header {
  background: rgba(250, 248, 245, 0.92);
  backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--rule);
  color: var(--text);
}
body:not(.home) .site-header .nav-list a.nav-cta { color: var(--accent); border-color: var(--accent); }
