/* ═══════════════════════════════════════════════════════════════
   style.css — martijnvlamings.nl
   Gedeelde stijlen voor alle pagina's.
   Basis: index.html. Pagina-specifieke stijlen staan onderaan,
   elk voorzien van een commentaar met de betreffende pagina.

   Subpagina's (niet index.html): voeg class="scrolled" toe aan
   <nav> zodat de navigatie altijd zichtbaar is.

   Breedte subpagina's: --max-inner (860px) wordt gebruikt voor
   content-wrappers op contact, cv.
   portfolio.html en index.html gebruiken --max (1200px).
   ═══════════════════════════════════════════════════════════════ */


/* ─── Fonts (lokaal gehost) ─────────────────────── */

/* Cormorant Garamond */
@font-face {
  font-family: 'Cormorant Garamond';
  font-style: normal; font-weight: 300; font-display: swap;
  src: url('fonts/cormorant-garamond-latin-300-normal.woff2') format('woff2');
}
@font-face {
  font-family: 'Cormorant Garamond';
  font-style: italic; font-weight: 300; font-display: swap;
  src: url('fonts/cormorant-garamond-latin-300-italic.woff2') format('woff2');
}
@font-face {
  font-family: 'Cormorant Garamond';
  font-style: normal; font-weight: 400; font-display: swap;
  src: url('fonts/cormorant-garamond-latin-400-normal.woff2') format('woff2');
}
@font-face {
  font-family: 'Cormorant Garamond';
  font-style: italic; font-weight: 400; font-display: swap;
  src: url('fonts/cormorant-garamond-latin-400-italic.woff2') format('woff2');
}

/* Jost */
@font-face {
  font-family: 'Jost';
  font-style: normal; font-weight: 300; font-display: swap;
  src: url('fonts/jost-latin-300-normal.woff2') format('woff2');
}
@font-face {
  font-family: 'Jost';
  font-style: normal; font-weight: 400; font-display: swap;
  src: url('fonts/jost-latin-400-normal.woff2') format('woff2');
}
@font-face {
  font-family: 'Jost';
  font-style: normal; font-weight: 500; font-display: swap;
  src: url('fonts/jost-latin-500-normal.woff2') format('woff2');
}
@font-face {
  font-family: 'Jost';
  font-style: normal; font-weight: 600; font-display: swap;
  src: url('fonts/jost-latin-600-normal.woff2') format('woff2');
}

/* ─── RESET & BASE ──────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

:root {
  --ink:       #1c1a17;
  --ink-light: #4a4640;
  --cream:     #f6f3ee;
  --cream-dim: #ece7dd;
  --gold:      #A07850;
  --gold-pale: #C4B09A;
  --cw-red:    #8b3a5a;
  --sa-olive:  #8a7a20;
  --serif:     'Cormorant Garamond', Georgia, serif;
  --sans:      'Jost', system-ui, sans-serif;
  --max:       1200px;
  --max-inner: 860px;
  --gap:       clamp(2rem, 5vw, 5rem);
  --nav-h:     76px;
  --scroll-bar: 3px;
}

body {
  font-family: var(--sans);
  background: var(--cream);
  color: #7B6B53;
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ─── GRAIN OVERLAY ─────────────────────────────── */
body::before {
  content: '';
  position: fixed; inset: 0; z-index: 9999;
  pointer-events: none;
  opacity: .025;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
}

/* ─── NAV ───────────────────────────────────────────────────────
   Standaard: transparant (index.html met hero-achtergrond).
   Subpagina's: voeg class="scrolled" toe aan <nav> voor een
   altijd-zichtbare, lichte navigatiebalk.
   ─────────────────────────────────────────────────────────────── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.25rem clamp(1.5rem, 5vw, 4rem);
  mix-blend-mode: normal;
  transition: background .4s, backdrop-filter .4s;
}
nav.scrolled {
  background: rgba(246,243,238,.92);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(28,26,23,.08);
}

/* ─── SCROLL INDICATOR ──────────────────────────── */
@keyframes scroll-indicator {
  to { transform: scaleX(1); }
}
@supports (animation-timeline: scroll()) {
  nav::after {
    content: '';
    position: fixed;
    top: var(--nav-h);
    left: 0;
    width: 100%;
    height: var(--scroll-bar);
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: left;
    animation: scroll-indicator linear;
    animation-duration: auto;
    animation-timeline: scroll(root block);
  }
}
.nav-logo {
  display: flex; align-items: center; gap: 12px;
  text-decoration: none;
  flex-shrink: 1; min-width: 0;
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 400;
  letter-spacing: .03em;
  color: var(--cream);
  transition: color .3s;
}
nav.scrolled .nav-logo { color: var(--ink); }
.nav-logo-mark { width: 36px; height: 36px; flex-shrink: 0; }
.nav-logo-text {
  font-family: var(--serif);
  font-size: 1.25rem;
  letter-spacing: 0.1em;
  color: var(--cream);
  line-height: 1.3;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  min-width: 0;
  transition: color .3s;
}
nav.scrolled .nav-logo-text { color: var(--ink); }
.nav-logo-text span {
  display: block;
  font-size: 0.58rem;
  letter-spacing: 0.15em;
  font-style: italic;
  color: rgba(246,243,238,.45);
  transition: color .3s;
}
nav.scrolled .nav-logo-text span { color: var(--ink-light); }
.nav-links {
  display: flex; gap: 2.5rem; list-style: none;
}
.nav-links a {
  font-family: var(--sans);
  font-size: .78rem;
  font-weight: 400;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(246,243,238,.75);
  text-decoration: none;
  transition: color .3s, opacity .3s;
}
nav.scrolled .nav-links a { color: var(--ink-light); }
.nav-links a:hover,
.nav-links a.active { color: var(--gold) !important; opacity: 1; }

.nav-burger {
  display: none;
  flex-direction: column; justify-content: center;
  gap: 5px; cursor: pointer; padding: 4px;
  width: 32px; height: 32px;
}
.nav-burger span {
  display: block; width: 24px; height: 1.5px;
  background: var(--cream);
  transition: background .3s, transform .35s cubic-bezier(.4,0,.2,1), opacity .25s ease;
  transform-origin: center;
}
nav.scrolled .nav-burger span { background: var(--ink); }

/* Animatie: 3 lijnen → kruis */
.nav-burger.is-open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-burger.is-open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-burger.is-open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ─── HERO ──────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  grid-template-columns: minmax(auto, 620px) 1fr;
  align-content: start;
  align-items: start;
  column-gap: clamp(3rem, 6vw, 8rem);
  overflow: hidden;
  padding: clamp(7rem, 12vw, 10rem) clamp(2rem, 8vw, 7rem) clamp(5rem, 8vw, 7rem);
  background: var(--ink);
}

/* Warme radiale gloed */
.hero::before {
  content: '';
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(ellipse 70% 60% at 80% 40%, rgba(122,90,58,0.18) 0%, transparent 60%),
    radial-gradient(ellipse 55% 70% at 10% 80%, rgba(200,176,154,0.08) 0%, transparent 55%),
    radial-gradient(ellipse 40% 40% at 90% 10%,  rgba(42,32,24,0.4)   0%, transparent 50%);
  pointer-events: none;
}

/* Decorative large initial letter / geometric accent */
.hero-accent {
  position: absolute;
  right: clamp(3rem, 15vw, 20%);
  top: 18%;
  transform: translateY(-50%);
  z-index: 0;
  pointer-events: none;
  opacity: 0;
  animation: fadeUp 1.2s ease 0.8s forwards;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-right {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-start;
  padding-top: .25rem;
}

.hero-eyebrow {
  font-family: var(--sans);
  font-size: .72rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp .8s .2s forwards;
}

.hero-title {
  font-family: var(--serif);
  font-size: clamp(2.8rem, 5.5vw, 5rem);
  font-weight: 300;
  line-height: 1.08;
  color: var(--cream);
  margin-bottom: 1.75rem;
  opacity: 0;
  animation: fadeUp .9s .4s forwards;
}
.hero-title em {
  font-style: italic;
  color: var(--gold-pale);
  white-space: nowrap;
}

.hero-sub {
  font-family: var(--serif);
  font-size: clamp(1.15rem, 1.55vw, 1.45rem);
  font-weight: 300;
  font-style: italic;
  color: rgba(246,243,238,.55);
  line-height: 1.65;
  max-width: 44ch;
  margin-bottom: 2.75rem;
  opacity: .85;
  animation: fadeUp .9s .6s forwards;
  text-align: right;
  width: max-content;
  margin-left: auto;
}
.hero-sub span { display: block; margin-top: .6em; }

/* Klantreis: probleemstelling inline */
.hero-problem {
  font-family: var(--serif);
  font-size: clamp(1.15rem, 1.6vw, 1.4rem);
  color: rgba(246,243,238,.38);
  font-style: italic;
  line-height: 1.65;
  max-width: 48ch;
  margin-bottom: 2.5rem;
  padding-left: 1.25rem;
  border-left: 1.5px solid rgba(200,168,75,.35);
  opacity: 0;
  animation: fadeUp .9s .7s forwards;
}

.hero-cta-row {
  display: flex; gap: 1.25rem; flex-wrap: wrap; align-items: center;
  opacity: 0;
  animation: fadeUp .9s .85s forwards;
}

.hero-cta {
  display: inline-flex; align-items: center; gap: .75rem;
  font-family: var(--sans);
  font-size: .8rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink);
  background: var(--gold);
  text-decoration: none;
  padding: .9rem 2rem;
  border: none;
  transition: background .3s, transform .2s;
  width: fit-content;
}
.hero-cta:hover { background: var(--gold-pale); transform: translateY(-2px); }
.hero-cta svg { transition: transform .3s; }
.hero-cta:hover svg { transform: translateX(4px); }

.hero-cta-ghost {
  display: inline-flex; align-items: center; gap: .6rem;
  font-family: var(--sans);
  font-size: .78rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(246,243,238,.5);
  text-decoration: none;
  border-bottom: 1px solid rgba(246,243,238,.2);
  padding-bottom: .15rem;
  transition: color .3s, border-color .3s;
}
.hero-cta-ghost:hover { color: var(--cream); border-color: var(--gold); }

.hero-scroll {
  position: absolute;
  bottom: 2.5rem; right: clamp(2rem, 8vw, 7rem);
  width: 52px; height: 52px;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; animation: fadeUp 1s 1.2s forwards, heroBob 2.2s ease-in-out 2.2s 2;
}
.hero-scroll-pulse {
  width: 52px; height: 52px;
  background: rgba(196,176,154,.12);
  border-radius: 50%;
  position: absolute;
  animation: heroScrollPulse 2.2s ease-in-out infinite;
}
.hero-scroll-dot {
  width: 36px; height: 36px;
  background: rgba(122,90,58,.2);
  border-radius: 50%;
  position: absolute;
  display: flex; align-items: center; justify-content: center;
}
.hero-scroll-dot::before {
  content: '';
  width: 22px; height: 22px;
  background: rgba(42,32,24,.4);
  border-radius: 50%;
  position: absolute;
}
.hero-scroll-dot svg { position: relative; z-index: 1; }
.hero-scroll::after {
  content: 'Scroll down';
  position: absolute;
  bottom: calc(100% + .6rem);
  left: 50%;
  transform: translateX(-50%) translateY(4px);
  font-family: var(--sans);
  font-size: .6rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(196,176,154,.0);
  white-space: nowrap;
  transition: opacity .3s ease, transform .3s ease, color .3s ease;
  pointer-events: none;
}
.hero-scroll:hover::after {
  color: rgba(196,176,154,.65);
  transform: translateX(-50%) translateY(0);
}
.hero-scroll--pulse .hero-scroll-dot { background: rgba(122,90,58,.4); }
.hero-scroll--pulse .hero-scroll-dot::before { background: rgba(42,32,24,.65); }
@keyframes heroBob {
  0%   { transform: translateY(0); }
  50%  { transform: translateY(7px); }
  100% { transform: translateY(0); }
}
@keyframes heroScrollPulse {
  0%   { opacity: 0; transform: scale3d(.4, .4, .4); }
  50%  { opacity: 1; }
  100% { opacity: 0; transform: scale3d(1.05, 1.05, 1.05); }
}

/* ─── SECTIONS COMMON ───────────────────────────── */
section { padding: var(--gap) clamp(1.5rem, 6vw, 5rem); }

.section-label {
  line-height: 1.3;
  font-family: var(--sans);
  font-size: .8rem; letter-spacing: .18em; opacity: .85;
  font-weight: 500;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 1rem; display: block;
}
h2 {
  font-family: var(--serif);
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  font-weight: 300; line-height: 1.15;
  margin-bottom: 1.5rem;
}
h2 em { font-style: italic; color: var(--ink-light); }

.body-text {
  font-family: var(--serif);
  font-size: clamp(1.05rem, 1.35vw, 1.2rem);
  font-weight: 300; line-height: 1.85;
  color: #988c7a;
  max-width: 48ch;
  margin-bottom: 1rem;
}

/* ─── INTRO ─────────────────────────────────────── */
.intro {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 2fr 280px;
  gap: 4rem;
  align-items: stretch;
  padding-top: clamp(4rem, 8vw, 7rem);
  padding-bottom: clamp(4rem, 8vw, 7rem);
}
.intro-text {
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.intro-text .body-text {
  max-width: none;
  width: 100%;
}
.nowrap { white-space: nowrap; }
.intro-image {
  width: 280px;
  flex-shrink: 0;
  overflow: hidden;
  border-radius: 4px;
  margin-top: 40px;
}
.intro-image img {
  width: 280px;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 4px;
  filter: grayscale(60%) sepia(20%) contrast(95%) brightness(98%);
}
.intro-quote {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 2.8vw, 2.5rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.4;
  color: #7B6B53;
  padding-left: 2rem;
  margin-top: 2.5rem;
  position: relative;
}
.intro-quote::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 2px;
  height: 100%;
  background: var(--gold);
}

/* ─── PROJECTS SECTION ───────────────────────────── */
.projects {
  background: var(--ink);
  color: var(--cream);
  padding: clamp(4rem, 8vw, 7rem) clamp(1.5rem, 6vw, 5rem);
}

.projects-inner {
  max-width: var(--max);
  margin: 0 auto;
}

.projects-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 3.5rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.projects-header h2 {
  color: var(--cream);
  margin-bottom: 0;
}

.projects-header .section-label {
  color: var(--gold-pale);
}

.projects-intro-text {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 300;
  font-style: italic;
  line-height: 1.7;
  color: rgba(246,243,238,.38);
  max-width: 38ch;
  text-align: right;
  padding-right: 1.25rem;
  border-right: 1.5px solid rgba(200,168,75,.35);
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

.project-card {
  position: relative;
  display: block;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border-radius: 4px;
  clip-path: inset(0 round 4px);
  text-decoration: none;
  color: inherit;
  background: var(--ink);
}

.project-card-img {
  position: absolute;
  inset: 0;
}

.project-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: filter .6s ease, transform .6s ease;
  filter: brightness(.6) saturate(.7);
}

.project-card-body {
  -webkit-backdrop-filter: saturate(95%);
  backdrop-filter: saturate(95%);
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  padding: 2.5rem 2rem;
  background: linear-gradient(
    to bottom,
    rgba(28,26,23,.88) 0%,
    rgba(28,26,23,.55) 55%,
    rgba(28,26,23,0) 100%
  );
  transition: background .5s ease;
}

.project-tag {
  font-size: .65rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  margin-bottom: .6rem;
  font-family: var(--sans);
  font-weight: 400;
}

.card-cw .project-tag { color: #c4728a; }
.card-sa .project-tag { color: #c8ba45; }
.card-mv .project-tag { color: var(--gold); }

/* Schilderij meer zichtbaar: minder filter en lichtere overlay */
.card-sa .project-card-img img {
  filter: brightness(.85) saturate(.85);
}
.card-sa .project-card-body {
  background: linear-gradient(
    to bottom,
    rgba(28,26,23,.80) 0%,
    rgba(28,26,23,.25) 45%,
    rgba(28,26,23,0) 100%
  );
}
.card-sa:hover .project-card-img img {
  filter: brightness(.65) saturate(.65) blur(.5px);
}

/* Boekcover meer zichtbaar: minder donker */
.card-mv .project-card-img img {
  filter: brightness(.8) saturate(.85);
}
.card-cw:hover .project-card-img img,
.card-mv:hover .project-card-img img {
  filter: brightness(.45) saturate(.5) blur(.5px);
  transform: scale(1.06);
}

.project-title {
  font-family: var(--serif);
  font-size: clamp(1.2rem, 1.8vw, 1.65rem);
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: auto;
  color: rgba(246,243,238,.92);
  letter-spacing: .01em;
}

.project-desc {
  font-family: var(--serif);
  font-size: 1.05rem;
  line-height: 1.6;
  font-style: italic;
  letter-spacing: .01em;
  color: rgba(246,243,238,.92);
  margin-top: 1.25rem;
  max-width: 28ch;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity .4s ease, transform .4s ease;
}

.project-link {
  margin-top: 1.25rem;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--sans);
  font-size: .72rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold-pale);
  opacity: 0;
  transform: translateY(6px);
  transition: opacity .4s ease, transform .4s ease, color .2s;
}
.project-link:hover { color: #fff; }

/* Hover state project cards */
.project-card:hover .project-card-img img {
  filter: brightness(.45) saturate(.5) blur(.5px);
  transform: scale(1.03);
}
.project-card:hover .project-card-body {
  background: linear-gradient(
    to bottom,
    rgba(28,26,23,.92) 0%,
    rgba(28,26,23,.75) 45%,
    rgba(28,26,23,.45) 75%,
    rgba(28,26,23,.15) 100%
  );
}
.project-card:hover .project-desc,
.project-card:hover .project-link {
  opacity: 1;
  transform: translateY(0);
}

/* Project cards mobile */
@media (max-width: 900px) {
  .projects-grid { grid-template-columns: 1fr; }
  .project-card { aspect-ratio: 4 / 3; }
  .project-desc,
  .project-link { opacity: 1; transform: none; }
}

/* ─── BIO ───────────────────────────────────────── */
.bio {
  max-width: var(--max); margin: 0 auto;
  display: grid;
  grid-template-columns: 60fr 35fr;
  gap: clamp(3rem, 6vw, 5rem); align-items: start;
  padding-top: clamp(4rem, 8vw, 7rem);
  padding-bottom: clamp(2rem, 4vw, 3.5rem);
}
.bio-text p {
  font-family: var(--serif);
  font-size: clamp(1.05rem, 1.35vw, 1.2rem);
  font-weight: 300; line-height: 1.85;
  color: #7B6B53;
  margin-bottom: 1.25rem;
}
.bio-text p:first-of-type {
  font-size: clamp(1.1rem, 1.5vw, 1.3rem);
  color: #7B6B53;
}
.bio-text p:nth-of-type(5) {
  font-style: italic;
  color: var(--ink-light);
}
.bio-cta {
  display: inline-flex; align-items: center; gap: .75rem;
  font-family: var(--sans);
  font-size: .78rem; letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink); text-decoration: none;
  border-bottom: 1px solid var(--ink);
  padding-bottom: .2rem;
  margin-top: 1.5rem;
  transition: color .3s, border-color .3s;
}
.bio-cta:hover { color: var(--gold); border-color: var(--gold); }

.bio-cta-row {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}
.bio-cta-row .bio-cta { margin-top: 0; }

.bio-cta-ghost {
  font-family: var(--sans);
  font-size: .78rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ink-light);
  text-decoration: none;
  border-bottom: 1px solid rgba(42,32,24,.2);
  padding-bottom: .15rem;
  transition: color .3s, border-color .3s;
}
.bio-cta-ghost:visited { color: #4a4640; }
.bio-cta-ghost:hover { color: var(--ink); border-color: var(--ink); }

.bio-aside {
  align-self: start;
  max-width: 380px;
  width: 100%;
}
.bio-photo img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 5px;
  object-fit: cover;
  opacity: 0.95;
  filter: grayscale(60%) sepia(20%) contrast(95%) brightness(98%);
}

/* ─── FOOTER ────────────────────────────────────── */
footer {
  background: var(--ink);
  padding: 3rem clamp(1.5rem, 6vw, 5rem);
}
.footer-inner {
  max-width: var(--max); margin: 0 auto;
  display: flex; justify-content: flex-end; align-items: center;
  flex-wrap: wrap; gap: 1.5rem;
}
.footer-links {
  display: flex; gap: 2rem; list-style: none;
}
.footer-links a {
  font-family: var(--sans);
  font-size: .72rem; letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(246,243,238,.4);
  text-decoration: none;
  transition: color .3s;
}
.footer-links a:hover { color: var(--gold); }
.footer-bottom {
  max-width: var(--max); margin: 2rem auto 0;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(246,243,238,.07);
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: .75rem;
}
.footer-copy {
  font-family: var(--sans);
  font-size: .85rem; color: rgba(246,243,238,.25);
}
.footer-credit {
  display: inline-flex; align-items: center; gap: .4rem;
  font-family: var(--sans);
  font-size: .8rem; letter-spacing: .08em;
  color: rgba(246,243,238,.3);
  text-decoration: none;
  transition: color .3s;
}
.footer-credit:hover { color: rgba(246,243,238,.7); }

/* ─── ANIMATIONS ────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}

.reveal {
  opacity: 0; transform: translateY(24px);
  transition: opacity .8s ease, transform .8s ease;
}
.reveal.visible {
  opacity: 1; transform: translateY(0);
}

/* ─── MOBILE ────────────────────────────────────── */
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; min-height: 100svh; padding-top: calc(var(--nav-h) + 4rem); }
  .hero-right { padding-top: 0; }
  .hero-image {
    position: absolute; inset: 0; z-index: 0;
  }
  .hero-image::after {
    background: linear-gradient(to top, rgba(246,243,238,.95) 35%, rgba(246,243,238,.3) 100%);
  }
  .hero-content {
    position: relative; z-index: 2;
    justify-content: flex-end;
    padding-top: 0;
    padding-bottom: 4rem;
  }
  .hero-title { font-size: 2.4rem; color: var(--cream); }
  .hero-title em { white-space: normal; }
  .hero-cta { padding: .65rem 1.1rem; font-size: .72rem; letter-spacing: .1em; }
  .hero-cta-ghost { font-size: .7rem; letter-spacing: .1em; }
  .hero-scroll { display: none; }
  .section-intro-wrap { padding-top: 0; }
  .filter-bar { overflow-x: auto; flex-wrap: nowrap; padding-left: 1rem; padding-right: 1rem; }
  .filter-btn { font-size: .63rem; letter-spacing: .07em; padding: .5rem .6rem; white-space: nowrap; }
  .intro { grid-template-columns: 1fr; gap: 2.5rem; align-items: start; }
  .qigong-cols { grid-template-columns: 1fr !important; }
  .page-header--qigong .page-header-image { width: 280px; }
  .intro-image { width: 280px; min-height: 320px; margin: 0 auto; }
  .intro-quote { font-size: 1.5rem; }
  .projects-grid { grid-template-columns: 1fr; gap: 40px; }
  .project-card { aspect-ratio: 4/3; }
  .project-desc, .project-link { opacity: 1; transform: none; }
  .bio { grid-template-columns: 1fr; gap: 2.5rem; }
  .gallery { grid-template-columns: 1fr 1fr; }
  .bio-aside { order: 2; margin: 0 auto; }
  .nav-links { display: none; }
  .nav-burger { display: flex; }
  .nav-logo-text { color: var(--ink); }
  .nav-logo-text span { color: var(--ink-light); }
  nav { background: rgba(246,243,238,.95); -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px); }
  nav .nav-burger span { background: var(--ink); }
  .hero-accent { right: calc(-11rem - 60px); }
  .ontdek-item { width: clamp(70px, 26vw, 100px) !important; }
  .ontdek-item svg { width: 44px !important; height: 44px !important; }
  .footer-inner { flex-direction: column; align-items: center; text-align: center; }
  .footer-links { gap: .75rem 1.25rem; flex-wrap: wrap; justify-content: center; }
}

/* ─── WIDE SCREENS ─────────────────────────────── */
@media (min-width: 1400px) {
  /* Anchor circles to content column instead of right edge, so they don't drift on ultrawide */
  .hero-accent { right: auto; left: calc(clamp(2rem, 8vw, 7rem) + 560px); }
  /* Replace percentage-based ellipses with fixed sizes so they stay circular on ultrawide */
  .hero::before {
    background:
      radial-gradient(circle 700px at 1100px 55%, rgba(122,90,58,0.18) 0%, transparent 100%),
      radial-gradient(circle 500px at 140px 90%, rgba(200,176,154,0.08) 0%, transparent 100%),
      radial-gradient(circle 400px at 1200px 80px, rgba(42,32,24,0.4) 0%, transparent 100%);
  }
}

/* ─── CONTACT HEADER MOBILE ─────────────────────── */
@media (max-width: 640px) {
  .page-header--contact { flex-direction: column; }
  .page-header--contact .page-header-image { width: 240px; }
}

/* ─── EXTRA SMALL SCREENS ──────────────────────── */
@media (max-width: 430px) {
  .ontdek-grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: .5rem !important;
    width: 100%;
  }
  .ontdek-item { width: auto !important; align-items: center !important; }
  .ontdek-item svg { width: 34px !important; height: 34px !important; }
  .ontdek-item span { font-size: .48rem !important; letter-spacing: .06em !important; }
}

/* ─── MOBILE MENU ───────────────────────────────── */
.mobile-menu {
  display: none;
  position: fixed; inset: 0; z-index: 200;
  background: var(--ink);
  flex-direction: column;
  justify-content: center; align-items: center;
  gap: 2.5rem;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: var(--serif);
  font-size: 2.2rem; font-weight: 300;
  color: var(--cream); text-decoration: none;
  letter-spacing: .04em;
  transition: color .3s;
}
.mobile-menu a:hover { color: var(--gold); }
.mobile-menu-close {
  position: absolute; top: 1.5rem; right: 1.75rem;
  font-size: 1.5rem; color: var(--cream);
  cursor: pointer; background: none; border: none;
  font-family: var(--serif);
}


/* ═══════════════════════════════════════════════════════════════
   SUBPAGINA'S — GEDEELDE BASISSTIJLEN
   (contact.php, cv.html, boeken.html, qigong.html, portfolio.html)
   ═══════════════════════════════════════════════════════════════ */

/* ─── TYPOGRAFIE ────────────────────────────────── */
h1 {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 4vw, 3.8rem);
  font-weight: 300; line-height: 1.1;
  margin-bottom: 1rem;
}
h1 em, h2 em { font-style: italic; color: #A07850; }
h3 {
  font-family: var(--serif);
  font-size: clamp(1.3rem, 2vw, 1.8rem);
  font-weight: 300; line-height: 1.2;
  margin-bottom: .75rem;
}
p {
  font-family: var(--serif);
  font-size: clamp(.95rem, 1.2vw, 1.08rem);
  font-weight: 300; line-height: 1.85;
  color: var(--ink-light);
}
.intro-p {
  font-family: var(--serif);
  font-size: 1.2rem; font-weight: 300;
  font-style: italic; color: #988c7a;
  max-width: 58ch; line-height: 1.75;
}
.eyebrow {
  font-family: var(--sans);
  font-size: .72rem; letter-spacing: .2em;
  text-transform: uppercase; color: var(--gold);
  display: block; margin-bottom: 1rem;
}

/* ─── PAGE HEADER (gedeeld door subpagina's) ────── */
/* Wordt overschreven door .page-werk .page-header voor werk.html */
.page-header {
  padding: 8rem clamp(1.5rem, 6vw, 5rem) 3rem;
  max-width: calc(var(--max-inner) + 8rem);
  margin: 0 auto;
  border-bottom: 1px solid rgba(28,26,23,.1);
}
.page-header--qigong,
.page-header--contact {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}
.page-header--qigong .page-header-text,
.page-header--contact .page-header-text {
  flex: 1 1 0;
  min-width: 0;
}
.page-header--qigong .page-header-image,
.page-header--contact .page-header-image {
  flex: 0 0 auto;
  width: 300px;
}

@media (max-width: 900px) {
  .page-header--qigong,
  .page-header--contact {
    flex-direction: column;
    align-items: center;
  }
  .page-header--qigong .page-header-image,
  .page-header--contact .page-header-image {
    width: 100%;
    max-width: 360px;
    text-align: center;
  }
}

/* ─── PAGE CONTENT ──────────────────────────────── */
.page-content {
  max-width: calc(var(--max-inner) + 8rem);
  margin: 0 auto;
  padding: 3rem clamp(1.5rem, 6vw, 5rem) 6rem;
}

/* ─── KNOPPEN & LINKS ───────────────────────────── */
.text-link {
  color: var(--ink); text-decoration: none;
  border-bottom: 1px solid rgba(28,26,23,.25);
  transition: color .3s, border-color .3s;
}
.text-link:hover { color: var(--gold); border-color: var(--gold); }

.btn {
  display: inline-flex; align-items: center; gap: .75rem;
  font-family: var(--sans); font-size: .8rem;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--ink); text-decoration: none;
  padding: .9rem 2rem;
  border: 1px solid var(--ink);
  transition: background .3s, color .3s;
  width: fit-content;
}
.btn:hover { background: var(--ink); color: var(--cream); }
.btn-ghost { border-color: rgba(28,26,23,.25); color: var(--ink-light); }
.btn-ghost:hover { background: var(--ink); color: var(--cream); border-color: var(--ink); }


/* ═══════════════════════════════════════════════════════════════
   PAGINA-SPECIFIEKE STIJLEN
   ═══════════════════════════════════════════════════════════════ */


/* ─── CONTACT PAGINA (contact.html) ─────────────── */

.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 5rem; align-items: start; margin-top: 1rem;
}
.contact-form { display: flex; flex-direction: column; gap: 1.25rem; }
.field { display: flex; flex-direction: column; gap: .4rem; }
.field label {
  font-family: var(--sans); font-size: .72rem;
  letter-spacing: .12em; text-transform: uppercase; color: var(--ink-light);
}
.field input, .field textarea, .field select {
  font-family: var(--serif); font-size: 1rem; font-weight: 300;
  background: #F5F0E8; border: 1px solid rgba(28,26,23,.12);
  padding: .6rem .75rem; color: var(--ink); outline: none; width: 100%;
  transition: border-color .3s;
}
.field input:focus, .field textarea:focus { border-color: var(--gold); }
.field textarea { resize: vertical; min-height: 120px; line-height: 1.7; }
.field input::placeholder, .field textarea::placeholder { color: rgba(28,26,23,.3); }
.submit-row { display: flex; align-items: center; gap: 1.5rem; margin-top: 0; }
.submit-btn {
  display: inline-flex; align-items: center; gap: .75rem;
  font-family: var(--sans); font-size: .8rem;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--ink); background: var(--gold);
  border: none; padding: .9rem 2rem; cursor: pointer;
  transition: background .3s, color .3s;
}
.submit-btn:hover { background: var(--gold-pale); color: var(--ink); }
.form-note { font-family: var(--sans); font-size: .72rem; color: var(--ink-light); }
.contact-aside {
  position: sticky; top: 8rem;
  display: flex; flex-direction: column; gap: 2rem;
}
.contact-block {
  padding: 1.5rem 2rem; border: 1px solid rgba(28,26,23,.1);
}
.contact-block-label {
  font-family: var(--sans); font-size: .65rem;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1rem; display: block;
}
.contact-item {
  display: flex; flex-direction: column; gap: .2rem;
  padding: .6rem 0; border-bottom: 1px solid rgba(28,26,23,.06);
}
.contact-item:last-child { border-bottom: none; padding-bottom: 0; }
.contact-item-key {
  font-family: var(--sans); font-size: .68rem;
  letter-spacing: .1em; text-transform: uppercase; color: var(--ink-light);
}
.contact-item-val { font-family: var(--serif); font-size: 1rem; color: var(--ink); }
.contact-item-val a {
  color: var(--ink); text-decoration: none;
  border-bottom: 1px solid rgba(28,26,23,.15);
  transition: color .3s, border-color .3s;
}
.contact-item-val a:hover { color: var(--gold); border-color: var(--gold); }
@media (max-width: 700px) {
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .contact-aside { position: static; }
}


/* ─── CV PAGINA (cv.html) ───────────────────────── */

/* Page-header met foto rechtsboven */
.page-cv .page-header {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 3rem;
  align-items: start;
}
.cv-header-photo {
  width: 190px;
  display: block;
  border-radius: 2px;
  object-fit: cover;
  object-position: center;
  opacity: 0.95;
  filter: grayscale(40%) sepia(20%) contrast(95%) brightness(98%);
  margin-top: 3.25rem;
  scale: 1.1;
  clip-path: circle(85px at 45% 35%);
}
@media (max-width: 600px) {
  .page-cv .page-header { grid-template-columns: 1fr; }
  .cv-header-photo {
    width: 190px;
    clip-path: circle(85px at 45% 35%);
    margin: 0 auto;
  }
}


/* Tabs */
.cv-tabs-wrap {
  position: sticky; top: 60px; z-index: 50;
  background: rgba(246,243,238,.96);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(28,26,23,.1);
}
.cv-tabs {
  max-width: calc(var(--max-inner) + 8rem); margin: 0 auto;
  display: flex; padding: 0 clamp(1.5rem, 6vw, 5rem);
}
.cv-tab {
  font-family: var(--sans); font-size: .78rem;
  letter-spacing: .12em; text-transform: uppercase;
  padding: 1rem 0; margin-right: 3rem;
  border: none; background: none; cursor: pointer;
  color: var(--ink-light);
  border-bottom: 2px solid transparent;
  transition: color .3s, border-color .3s;
}
.cv-tab.active { color: var(--ink); border-bottom-color: var(--gold); }
.cv-tab:hover { color: var(--ink); }

/* Content area */
.cv-content {
  max-width: calc(var(--max-inner) + 8rem); margin: 0 auto;
  padding: 3rem clamp(1.5rem, 6vw, 5rem) 6rem;
}
.cv-panel { display: none; }
.cv-panel.active { display: block; }

/* Profile block */
.profile-block {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 3rem; margin-bottom: 3rem; padding-bottom: 3rem;
  border-bottom: 1px solid rgba(28,26,23,.1);
}
.profile-text p {
  font-family: var(--serif); font-size: 1rem; font-weight: 300;
  line-height: 1.85; color: var(--ink-light); margin-bottom: 1rem;
}
.profile-text p:first-child { color: var(--ink); font-size: 1.05rem; }
.skills-grid { display: flex; flex-direction: column; gap: 0; }
.skill-group-label {
  font-family: var(--sans); font-size: .68rem;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--gold); display: block;
}
.skill-pills { display: flex; flex-wrap: wrap; gap: .3rem; }
.pill {
  font-family: var(--sans); font-size: .72rem;
  padding: .15rem .65rem;
  border: 1px solid rgba(28,26,23,.15);
  color: var(--ink-light);
  white-space: nowrap;
}
.skill-acc-item { border-bottom: 1px solid rgba(28,26,23,.07); }
.skill-acc-head {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  padding: .55rem 0;
  background: none; border: none; cursor: pointer; text-align: left;
  transition: background .2s;
}
.skill-acc-head:hover { background: rgba(200,168,75,.05); }
.skill-acc-head.open .acc-chevron { transform: rotate(180deg); }
.skill-acc-body {
  max-height: 0; overflow: hidden;
  transition: max-height .35s cubic-bezier(.25,.46,.45,.94);
}
.skill-acc-body.open { max-height: 200px; }
.skill-acc-body .skill-pills { padding: .4rem 0 .75rem; }

/* Section heading */
.cv-section-title {
  font-family: var(--serif); font-size: 1.5rem; font-weight: 400;
  color: var(--ink); margin: 2.5rem 0 1rem;
  padding-bottom: .5rem;
  border-bottom: 1px solid rgba(28,26,23,.08);
  display: flex; align-items: center; gap: .75rem;
}
.cv-section-title::before {
  content: ''; display: block;
  width: 18px; height: 1.5px; background: var(--gold);
  flex-shrink: 0;
}

/* Accordion */
.acc-table { width: 100%; border-collapse: collapse; }
.acc-row-head {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr 140px 100px 16px;
  gap: 1rem; align-items: center;
  padding: .95rem 1rem .95rem 1.25rem;
  border-bottom: 1px solid rgba(28,26,23,.07);
  cursor: pointer;
  background: none; border-left: none; border-right: none; border-top: none;
  text-align: left; transition: background .2s;
}
.acc-row-head:hover { background: rgba(200,168,75,.05); }
.acc-row-head.open {
  background: rgba(200,168,75,.07);
  border-bottom-color: transparent;
}
.acc-row-head.open .acc-chevron { transform: rotate(180deg); }
.acc-function {
  font-family: var(--sans); font-size: .88rem;
  font-weight: 500; color: var(--ink);
}
.acc-org {
  font-family: var(--serif); font-size: .95rem;
  font-style: italic; color: var(--ink-light);
}
.acc-period {
  font-family: var(--sans); font-size: .75rem;
  color: var(--ink-light); letter-spacing: .04em;
}
.acc-place {
  font-family: var(--sans); font-size: .75rem;
  color: var(--ink-light);
}
.acc-chevron {
  width: 16px; height: 16px; flex-shrink: 0;
  transition: transform .3s; color: var(--gold);
  margin-left: auto;
}
.acc-body {
  max-height: 0; overflow: hidden;
  transition: max-height .45s cubic-bezier(.25,.46,.45,.94);
  background: rgba(200,168,75,.03);
  border-bottom: 1px solid rgba(28,26,23,.07);
}
.acc-body.open { max-height: 800px; }
.acc-body-inner {
  padding: 1.25rem 1.25rem 1.5rem 2rem;
  border-left: 2px solid var(--gold);
  margin: 0 1rem .5rem 1.25rem;
}
.acc-body-inner--nested {
  padding: 0;
  border-left: none;
  margin: 0;
}
.acc-body-inner--nested .acc-row-head {
  padding-left: 1rem;
  font-size: 0.9em;
  opacity: 0.9;
}
.acc-body-inner--nested .acc-body-inner {
  margin-left: 1rem;
}
#job-vroeg.acc-body.open { max-height: 6000px; }
.acc-body-inner p {
  font-family: var(--serif); font-size: .95rem;
  font-weight: 300; line-height: 1.75;
  color: var(--ink-light); margin-bottom: .75rem;
}
.acc-body-inner ul {
  margin: .5rem 0 1rem 1rem;
  display: flex; flex-direction: column; gap: .3rem;
}
.acc-body-inner li {
  font-family: var(--serif); font-size: .92rem;
  font-weight: 300; line-height: 1.6; color: var(--ink-light);
}
.acc-meta {
  display: flex; flex-wrap: wrap; gap: 1.5rem; margin-top: .75rem;
}
.acc-meta-item { display: flex; flex-direction: column; gap: .15rem; }
.acc-meta-label {
  font-family: var(--sans); font-size: .65rem;
  letter-spacing: .15em; text-transform: uppercase; color: var(--gold);
}
.acc-meta-val {
  font-family: var(--sans); font-size: .78rem; color: var(--ink-light);
}

/* Certs & edu grid */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; margin-top: 1.5rem; }
.training-block { margin-top: 1.5rem; }
.training-list { list-style: none; display: flex; flex-wrap: wrap; gap: .4rem; margin-top: .5rem; }
.training-list li {
  display: inline-flex; align-items: baseline; gap: .35rem;
  padding: .15rem .65rem;
  border: 1px solid rgba(28,26,23,.15);
  font-family: var(--sans); font-size: .72rem; color: var(--ink-light);
  white-space: nowrap;
}
.training-list .cert-year { min-width: 0; }
.cert-list { list-style: none; display: flex; flex-direction: column; gap: .6rem; max-width: 420px; }
.cert-list li {
  display: flex; justify-content: space-between; align-items: baseline;
  padding: .5rem 0; border-bottom: 1px solid rgba(28,26,23,.06); gap: 1rem;
}
.training-list .cert-name {
  font-family: var(--sans); font-size: .72rem; font-weight: 400; color: var(--ink-light);
}
.cert-name {
  font-family: var(--serif); font-size: .95rem; font-weight: 300; color: var(--ink);
}
.cert-year {
  font-family: var(--sans); font-size: .75rem; color: var(--gold); flex-shrink: 0;
}
.training-list .cert-year {
  font-size: .68rem; color: var(--ink-light); opacity: .5;
}

/* Spiritueel panel — specifieke kleuren */
.panel-spirit .cv-section-title::before { background: var(--cw-red); }
.panel-spirit .acc-row-head.open { background: rgba(139,58,90,.05); }
.panel-spirit .acc-body { background: rgba(139,58,90,.02); }
.panel-spirit .acc-body-inner { border-left-color: var(--cw-red); }
.panel-spirit .skill-group-label { color: var(--cw-red); }
.panel-spirit .cert-year { color: var(--cw-red); }
.panel-spirit .acc-chevron { color: var(--cw-red); }

/* Download knop */
.download-bar { display: flex; justify-content: flex-end; margin-bottom: 2rem; }
.download-btn {
  display: inline-flex; align-items: center; gap: .6rem;
  font-family: var(--sans); font-size: .75rem; letter-spacing: .12em;
  text-transform: uppercase; color: var(--ink);
  border: 1px solid rgba(28,26,23,.2);
  padding: .65rem 1.25rem; text-decoration: none;
  transition: background .3s, color .3s;
}
.download-btn:hover { background: var(--ink); color: var(--cream); }


/* Beschikbaarheidsblok */
.avail-block {
  margin-top: 2.5rem; padding: 1.5rem 2rem;
  border: 1px solid rgba(28,26,23,.1);
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
}
.avail-item { display: flex; flex-direction: column; gap: .25rem; }
.avail-label {
  font-family: var(--sans); font-size: .68rem;
  letter-spacing: .15em; text-transform: uppercase; color: var(--gold);
}
.avail-val { font-family: var(--serif); font-size: 1rem; color: var(--ink); }

/* CV mobiel */
@media (max-width: 700px) {
  .acc-row-head { grid-template-columns: 1fr auto; }
  .acc-org, .acc-period, .acc-place { display: none; }
  .acc-function { font-size: .85rem; }
  .profile-block { grid-template-columns: 1fr; gap: 2rem; }
  .two-col { grid-template-columns: 1fr; }
  .avail-block { grid-template-columns: 1fr 1fr; }
}


/* ─── BOEKEN PAGINA (boeken.html) ───────────────── */

.book-tag {
  font-family: var(--sans); font-size: .65rem;
  letter-spacing: .18em; text-transform: uppercase; margin-bottom: .5rem;
}
.book-title {
  font-family: var(--serif); font-size: clamp(1.3rem, 2vw, 1.7rem);
  font-weight: 300; line-height: 1.2; color: #fff; margin-bottom: .5rem;
}
.book-sub {
  font-family: var(--serif); font-size: 1.05rem;
  font-style: italic; line-height: 1.5; color: rgba(255,255,255,.5); margin-bottom: 1.25rem;
}
.book-desc {
  font-family: var(--serif); font-size: .9rem;
  font-weight: 300; line-height: 1.65; color: rgba(255,255,255,.65); margin-bottom: 1.5rem;
}
.book-for {
  font-family: var(--sans); font-size: .7rem;
  letter-spacing: .1em; text-transform: uppercase;
  color: rgba(255,255,255,.35); margin-bottom: 1.25rem;
}
.book-btn {
  display: inline-flex; align-items: center; gap: .6rem;
  font-family: var(--sans); font-size: .72rem;
  letter-spacing: .14em; text-transform: uppercase;
  color: #fff; border: 1px solid rgba(255,255,255,.25);
  padding: .65rem 1.25rem; text-decoration: none;
  transition: background .3s, border-color .3s;
}
.book-btn:hover { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.5); }
.boek-tekst .book-btn { color: var(--ink); border-color: rgba(28,26,23,.35); }
.boek-tekst .book-btn:hover { background: rgba(28,26,23,.07); border-color: rgba(28,26,23,.6); }

/* Boeken pagina — rijen layout */
.boeken-lijst {
  display: flex;
  flex-direction: column;
  gap: clamp(4rem, 8vw, 7rem);
  padding: clamp(3rem,6vw,5rem) 0;
}
.boek-rij {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}
.boek-tekst {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.boek-tekst .book-tag {
  font-family: var(--sans);
  font-size: .7rem;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.boek-tekst .book-title {
  font-family: var(--serif);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 300;
  color: var(--ink);
  line-height: 1.25;
}
.boek-tekst .book-sub {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-style: italic;
  color: var(--ink-light);
}
.boek-tekst .book-head {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-style: normal;
  font-weight: 400;
  color: var(--ink-light);
  margin-top: -30px;
}
.boek-tekst .book-desc {
  font-family: var(--sans);
  font-size: .9rem;
  line-height: 1.75;
  color: var(--ink-light);
  margin: 0;
}
.boek-tekst .book-for {
  font-family: var(--sans);
  font-size: .8rem;
  color: var(--ink-light);
  opacity: .7;
  font-style: normal;
  font-weight: 600;
  text-transform: none;
  letter-spacing: 0;
}
.boek-afbeelding {
  display: flex;
  align-items: center;
  justify-content: center;
}
.boek-afbeelding img {
  width: 150%;
  max-width: 630px;
  height: auto;
  display: block;
}
@media (max-width: 680px) {
  .boek-rij {
    grid-template-columns: 1fr;
  }
  .boek-rij-omgekeerd .boek-afbeelding {
    order: 1;
  }
}


/* ─── PORTFOLIO PAGINA (portfolio.html) ─────────── */

/* Page header — 2 kolommen, overschrijft de gedeelde .page-header */
.page-werk .page-header {
  padding: 8rem clamp(1.5rem, 6vw, 5rem) 3rem;
  max-width: var(--max); margin: 0 auto;
  border-bottom: 1px solid rgba(28,26,23,.1);
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 3rem; align-items: end;
}
.header-right { display: flex; flex-direction: column; justify-content: flex-end; gap: 1rem; }
.header-intro {
  font-family: var(--serif); font-size: 1.15rem;
  font-weight: 300; font-style: italic;
  color: #7B6B53; line-height: 1.75;
}
.header-cta {
  display: inline-flex; align-items: center; gap: .75rem;
  font-family: var(--sans); font-size: .78rem;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--ink); text-decoration: none;
  border: 1px solid var(--ink); padding: .8rem 1.75rem; width: fit-content;
  transition: background .3s, color .3s;
}
.header-cta:hover { background: var(--ink); color: var(--cream); }

/* Filterbalk */
.filter-bar {
  max-width: var(--max); margin: 0 auto;
  padding: 1.75rem clamp(1.5rem, 6vw, 5rem);
  display: flex; gap: 0; border-bottom: 1px solid rgba(28,26,23,.08);
  flex-wrap: wrap;
}
.filter-btn {
  font-family: var(--sans); font-size: .72rem;
  letter-spacing: .14em; text-transform: uppercase;
  background: none; border: none; cursor: pointer; padding: .6rem 1.25rem;
  color: var(--ink-light); border-bottom: 2px solid transparent;
  transition: color .3s, border-color .3s;
}
.filter-btn:hover { color: var(--ink); }
.filter-btn.active { color: var(--ink); border-bottom-color: var(--gold); }

/* Gallerij */
.gallery {
  max-width: var(--max); margin: 0 auto;
  padding: 2.5rem clamp(1.5rem, 6vw, 5rem) 6rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

.werk-item {
  position: relative; overflow: hidden;
  border-radius: 4px;
  clip-path: inset(0 round 4px);
  background: var(--ink);
  cursor: pointer; display: block; text-decoration: none;
  aspect-ratio: 3/4;
}
.werk-item.wide { grid-column: span 2; aspect-ratio: unset; }
.werk-item img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center; display: block;
  transition: transform .7s cubic-bezier(.25,.46,.45,.94), filter .5s;
  filter: grayscale(60%) sepia(20%) contrast(95%) brightness(82%);
}
.werk-item:hover img { transform: scale(1.04); filter: brightness(.6); }
.werk-arunachala img { object-fit: cover; object-position: top; }
.werk-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(17,17,17,.88) 0%, transparent 55%);
  opacity: 0; transition: opacity .4s;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 1.75rem;
}
.werk-item:hover .werk-overlay { opacity: 1; }

/* Boeken: gouden achtergrond, afbeelding 50% groter */
.werk-item[data-cat="boeken"] { background: #e8d49a; }
.werk-item[data-cat="boeken"] img { transform: scale(1.5); filter: brightness(1); object-fit: contain; }
.werk-item[data-cat="boeken"]:hover img { transform: scale(1.55); filter: brightness(.75); }

/* Carvings: passend zonder uitsnijden */
.werk-item[data-cat="carvings"] { background: var(--cream); box-shadow: 0 0 0 1px rgba(28,26,23,.12); }
.werk-item[data-cat="carvings"] img { object-fit: cover; filter: grayscale(60%) sepia(20%) contrast(95%) brightness(98%); transform: scale(1); }
.werk-item[data-cat="carvings"]:hover img { transform: scale(1.03); filter: brightness(.75); }

/* Beelden: zelfde behandeling als carvings */
.werk-item[data-cat="beelden"] { background: var(--cream); box-shadow: 0 0 0 1px rgba(28,26,23,.12); }
.werk-item[data-cat="beelden"] img { object-fit: cover; object-position: center top; filter: grayscale(60%) sepia(20%) contrast(95%) brightness(98%); transform: scale(1); }
.werk-item[data-cat="beelden"]:hover img { transform: scale(1.03); filter: brightness(.75); }

/* Inzichtkaarten: lichtbruine achtergrond, iets uitgezoomd */
.werk-item[data-cat="kaarten"] { background: var(--cream); }
.werk-item[data-cat="kaarten"] img { object-fit: contain; filter: brightness(1); transform: scale(.82); }
.werk-item[data-cat="kaarten"]:hover img { transform: scale(.86); filter: brightness(.75); }

.werk-title {
  font-family: var(--serif); font-size: clamp(1.1rem, 1.6vw, 1.4rem);
  font-weight: 300; color: #fff; margin-bottom: .35rem; line-height: 1.25;
}
.werk-meta {
  font-family: var(--sans); font-size: .7rem; letter-spacing: .1em;
  text-transform: uppercase; color: rgba(255,255,255,.5); margin-bottom: 1rem;
}
.werk-link {
  display: inline-flex; align-items: center; gap: .5rem;
  font-family: var(--sans); font-size: .7rem;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--gold-pale); transition: color .2s;
}
.werk-link:hover { color: #fff; }
.werk-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  background: #111;
}

/* Atelier strip */
.atelier {
  background: var(--ink);
  padding: clamp(3.5rem, 7vw, 6rem) clamp(1.5rem, 6vw, 5rem);
  margin-top: 0;
}
.atelier-inner {
  max-width: var(--max); margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center;
}
.atelier h2 {
  font-family: var(--serif); font-size: clamp(1.8rem, 2.8vw, 2.6rem);
  font-weight: 300; color: #fff; line-height: 1.15; margin-bottom: 1.25rem;
}
.atelier h2 em { font-style: italic; color: rgba(246,243,238,.5); }
.atelier p {
  font-family: var(--serif); font-size: 1.1rem; font-weight: 300;
  line-height: 1.85; color: rgba(246,243,238,.55); margin-bottom: 1rem;
}
.atelier p:last-of-type { margin-bottom: 1.75rem; }
.atelier-btn {
  display: inline-flex; align-items: center; gap: .75rem;
  font-family: var(--sans); font-size: .78rem;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--cream); text-decoration: none;
  border: 1px solid rgba(246,243,238,.25); padding: .85rem 1.75rem;
  transition: background .3s, border-color .3s;
}
.atelier-btn:hover { background: rgba(246,243,238,.08); border-color: rgba(246,243,238,.5); }
.atelier-quote {
  font-family: var(--serif); font-size: clamp(1.4rem, 2.2vw, 2rem);
  font-weight: 300; font-style: italic; line-height: 1.5;
  color: rgba(246,243,238,.35);
  border-left: 2px solid var(--gold);
  padding-left: 2rem;
}

/* Opdracht strip */
.opdracht {
  max-width: var(--max); margin: 0 auto;
  padding: clamp(3rem, 6vw, 5rem) clamp(1.5rem, 6vw, 5rem);
  display: grid; grid-template-columns: 2fr 1fr; gap: 4rem; align-items: center;
  border-top: 1px solid rgba(28,26,23,.08);
}
.opdracht h2 {
  font-family: var(--serif); font-size: clamp(1.6rem, 2.5vw, 2.4rem);
  font-weight: 300; line-height: 1.15; margin-bottom: 1rem;
}
.opdracht h2 em { font-style: italic; color: var(--ink-light); }
.opdracht p {
  font-family: var(--serif); font-size: 1.1rem; font-weight: 300;
  line-height: 1.85; color: #7B6B53; margin-bottom: 1rem;
}
.opdracht p:last-of-type { margin-bottom: 0; }
.opdracht-ctas { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 1.75rem; }
.btn-primary {
  display: inline-flex; align-items: center; gap: .75rem;
  font-family: var(--sans); font-size: .78rem;
  letter-spacing: .14em; text-transform: uppercase;
  color: #7B6B53; text-decoration: none;
  border: 1px solid var(--ink); padding: .85rem 1.75rem;
  transition: background .3s, color .3s;
}
.btn-primary:hover { background: var(--ink); color: var(--cream); }
.btn-secondary {
  display: inline-flex; align-items: center; gap: .75rem;
  font-family: var(--sans); font-size: .78rem;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--ink-light); text-decoration: none;
  border: 1px solid rgba(28,26,23,.2); padding: .85rem 1.75rem;
  transition: background .3s, color .3s, border-color .3s;
}
.btn-secondary:hover { background: var(--ink); color: var(--cream); border-color: var(--ink); }
.opdracht-badge {
  text-align: center;
  /* slagschaduw: hangt aan de muur */
  filter: drop-shadow(0 4px 6px rgba(28,26,23,.15)) drop-shadow(0 12px 28px rgba(28,26,23,.18));
}
.opdracht-badge-inner {
  display: inline-flex; flex-direction: column; align-items: center;
  gap: .75rem;
  background: var(--cream-dim);
  /* lijst: dunne goudlijn → crème marge (passepartout) → iets dikkere goudlijn als frame */
  box-shadow:
    0 0 0 1px var(--gold),
    0 0 0 10px var(--cream-dim),
    0 0 0 12px var(--gold-pale),
    0 0 0 18px var(--gold);
  margin: 18px;
  padding: 2.25rem 2rem;
}
.badge-label {
  font-family: var(--sans); font-size: .65rem;
  letter-spacing: .2em; text-transform: uppercase; color: var(--gold);
}
.badge-text {
  font-family: var(--serif); font-size: 1.05rem;
  font-style: italic; color: var(--ink-light); text-align: center; line-height: 1.5;
}

/* Werk responsief */
@media (max-width: 900px) {
  .page-werk .page-header { grid-template-columns: 1fr; gap: 1.5rem; }
  .gallery { grid-template-columns: 1fr 1fr; }
  .werk-item.wide { grid-column: span 2; }
  .atelier-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .opdracht { grid-template-columns: 1fr; gap: 2rem; }
  .opdracht-badge { display: none; }
}
@media (max-width: 600px) {
  .gallery { grid-template-columns: 1fr; }
  .werk-item.wide { grid-column: span 1; }
}

.spinner {
  width: 16px;
  height: 16px;
  border: 2px solid rgba(28, 26, 23, 0.1);
  border-top-color: var(--ink);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  will-change: transform;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* ─── PRINT / PDF EXPORT ────────────────────────── */
@media print {
  @page { margin: 12mm 15mm; }

  /* Verberg alles wat niet in de PDF hoort */
  nav, footer, .download-bar, .cv-tabs-wrap,
  .mobile-menu { display: none !important; }

  /* Toon beide tabpanels onder elkaar */
  .cv-panel { display: block !important; }

  /* Paginabreuk vóór Werkervaring en Opleidingen */
  #sectie-werkervaring,
  #sectie-opleidingen { page-break-before: always; }

  /* Paginabreuk vóór Provincie Gelderland (job-6) */
  [data-target="job-6"] { page-break-before: always; }

  /* Scheidingslijn + paginabreuk vóór het spirituele deel */
  #panel-spirit {
    margin-top: 0;
    padding-top: 1.5rem;
    border-top: 2px solid #c8a84b;
    page-break-before: always;
  }

  /* Slottekst spirituele sectie: compact + geen lege pagina erna */
  #panel-spirit p:last-of-type {
    font-size: .8rem;
    line-height: 1.5;
    margin-top: 1rem;
    padding-top: 1rem;
    page-break-after: avoid;
  }

  /* Foto: clip-path vervangen door border-radius (clip-path veroorzaakt lege pagina in sommige browsers) */
  .cv-header-photo {
    clip-path: none !important;
    border-radius: 50%;
    width: 130px;
    height: 130px;
    object-fit: cover;
    object-position: 45% 35%;
  }

  /* Skills compacter in print zodat alle 6 categorieën op pagina 1 passen */
  .skills-grid { gap: .3rem; }
  .skill-acc-head { padding: .3rem 0; }
  .skill-acc-body .skill-pills { padding: .25rem 0 .4rem; }
  .pill { padding: .1rem .5rem; font-size: .68rem; }

  /* Accordion-bodies altijd volledig zichtbaar */
  .acc-body,
  .skill-acc-body {
    max-height: none !important;
    overflow: visible !important;
    transition: none !important;
  }

  /* Voorkom paginabreuk midden in een accordion-item */
  .acc-body-inner { page-break-inside: avoid; }

  /* Verwijder interactieve stijlen */
  .acc-row-head, .skill-acc-head { cursor: default; }
  .acc-chevron { display: none; }

  /* Zorg dat de pagina volledig breed wordt gebruikt */
  body { background: white !important; }
  .page-cv { max-width: 100% !important; padding: 0 !important; }
}

/* ─── ZEN STONES ──────────────────────────────────────────────────────────── */
/* height:0 full-width anchor placed just before <footer> */
.zen-anchor { position: relative; height: 0; overflow: visible; }

.zen-stone {
  position: absolute;
  border-radius: 50%;
  cursor: grab;
  -webkit-user-select: none;
  user-select: none;
  transition: filter 0.2s ease, transform 0.2s ease;
  box-shadow:
    0 4px 10px rgba(42,32,24,0.22),
    0 1px 3px rgba(42,32,24,0.14),
    inset 0 0 0 1px rgba(42,32,24,0.10),
    inset 0 1px 3px rgba(196,176,154,0.35);
  z-index: 10;
}
.zen-stone:hover {
  filter: brightness(1.18);
  transform: translateY(-2px);
}
.zen-stone.zen-dragging {
  cursor: grabbing;
  transition: none;
  transform: none;
  filter: brightness(1.28);
  z-index: 999;
}
@media (max-width: 768px) {
  .zen-stone { display: none !important; }
}

/* ─── GEDEELD: FOTO MET FILTER (qigong.html, contact.php) ───────────────────── */
.photo-filtered {
  display: block;
  width: 100%;
  max-width: 320px;
  height: auto;
  margin-top: 55px;
  border-radius: 4px;
  opacity: 0.95;
  filter: grayscale(60%) sepia(20%) contrast(95%) brightness(98%);
}
.page-header-image figure,
.intro-image figure { margin: 0; }
.page-header-image figcaption,
.intro-image figcaption {
  font-family: var(--sans);
  font-weight: 300;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  color: var(--ink-light);
  margin-top: 8px;
  text-align: right;
}

/* ─── GEDEELD: NOTICE BOX (boeken.html, qigong.html) ────────────────────────── */
.notice-wrap {
  max-width: 860px;
  margin: 0 auto;
  padding: 2rem 2rem 1rem;
}
.notice-box {
  background: #FBF0CC;
  border-left: 3px solid #C8960A;
  padding: 1.1rem 1.4rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.notice-box p {
  font-family: var(--serif);
  font-size: 1.1rem;
  color: #7B6B53;
  margin: 0;
  line-height: 1.6;
}
.notice-box a {
  color: #C8960A;
  text-decoration: underline;
}
.notice-label {
  font-family: var(--sans);
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #C8960A;
  font-weight: 500;
  margin-bottom: 0.35rem;
}

/* ─── GEDEELD: YIN-YANG ICON (boeken.html, qigong.html) ─────────────────────── */
.yin-yang-icon {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: linear-gradient(to right, #C8960A 50%, #F0D080 50%);
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
  margin-top: 0.2rem;
}
.yin-yang-icon::before {
  content: '';
  position: absolute;
  width: 11px; height: 11px;
  border-radius: 50%;
  background: #F0D080;
  top: 0; left: 5.5px;
}
.yin-yang-icon::after {
  content: '';
  position: absolute;
  width: 11px; height: 11px;
  border-radius: 50%;
  background: #C8960A;
  bottom: 0; left: 5.5px;
}

/* ─── GEDEELD: FOOTER SVG ────────────────────────────────────────────────────── */
.footer-credit svg { flex-shrink: 0; }

/* ─── INDEX.HTML ─────────────────────────────────────────────────────────────── */
.section-intro-wrap {
  background: var(--cream);
  padding: clamp(5rem,10vw,8rem) clamp(1.5rem,6vw,5rem);
}
.section-bio-wrap {
  background: var(--cream);
  padding-left: clamp(1.5rem,6vw,5rem);
  padding-right: clamp(1.5rem,6vw,5rem);
}
.intro-quote.reveal  { transition-delay: .15s; }
.intro-image.reveal  { transition-delay: .3s; }
.bio-aside.reveal    { transition-delay: .2s; }
.card-cw .project-card-img             { background: #b5a898; }
.card-cw .project-card-img img         { object-fit: contain; padding: 12%; transform: scale(1); }
.card-mv .project-card-img             { background: #7A5A3A; }
.card-mv .project-card-img img         { object-fit: contain; transform: scale(1); }

/* ─── BOEKEN.HTML ─────────────────────────────────────────────────────────────  */
.boeken-content { padding-top: 0.5rem; margin-top: -30px; }
img.carving-flowers { object-position: center 85%; }
.book-tag--ching  { color: #C8960A; }
.book-tag--qigong { color: #E53935; }
.book-tag--bio    { color: #43A047; }
.boeken-lijst .boek-rij:nth-child(2).reveal { transition-delay: .1s; }
.boeken-lijst .boek-rij:nth-child(3).reveal { transition-delay: .2s; }
.boeken-lijst .boek-rij:nth-child(4).reveal { transition-delay: .3s; }

/* ─── QIGONG.HTML ────────────────────────────────────────────────────────────── */
.qigong-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  margin-bottom: clamp(3rem, 6vw, 5rem);
}
.qigong-col-left  { display: flex; flex-direction: column; }
.qigong-col-left .intro-quote { margin-top: auto; margin-bottom: auto; }
.qigong-col-right h2 span { white-space: nowrap; }
.qigong-lessen-block { margin-top: auto; padding-top: 1.5rem; }
.qigong-col-right.reveal { transition-delay: .1s; }
.qigong-video-section {
  margin-top: clamp(3rem, 6vw, 5rem);
  padding-top: clamp(3rem, 6vw, 5rem);
  border-top: 1px solid var(--rule, #e0d8cc);
}
.qigong-video-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}
.qigong-video-figure { margin: 0; }
.vimeo-wrap { padding: 133.33% 0 0 0; position: relative; filter: grayscale(60%) sepia(20%) contrast(95%) brightness(98%); }
.vimeo-iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }
.qigong-video-figure video {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: 4px;
  opacity: 0.95;
  filter: grayscale(60%) sepia(20%) contrast(95%) brightness(98%);
}
.qigong-video-figure figcaption {
  font-family: var(--sans);
  font-weight: 300;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  color: var(--ink-light);
  margin-top: 8px;
  text-align: right;
}
.qigong-video-right { padding-top: 10.5rem; }
.qigong-video-right.reveal { transition-delay: .1s; }
@media (max-width: 680px) {
  .qigong-video-cols                   { grid-template-columns: 1fr; }
  .qigong-video-right                  { padding-top: 0; }
  .qigong-video-figure                 { text-align: center; }
  .qigong-video-figure video           { max-width: 100%; margin: 0 auto; }
  .qigong-video-figure figcaption      { text-align: center; }
}

/* ─── CV.HTML ────────────────────────────────────────────────────────────────── */
.spirit-intro-text {
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 300;
  line-height: 1.85;
  color: var(--ink-light);
  max-width: 60ch;
}
.spirit-intro-block {
  margin-bottom: 2.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(28,26,23,.1);
}
.spirit-certs-row {
  display: flex;
  gap: 1.5rem;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}
.panel-spirit .avail-label { color: var(--cw-red); }
.two-col .skill-group-label { display: block; margin-bottom: .75rem; }
.two-col .skill-pills       { gap: .4rem; }
.spirit-closing-text {
  font-family: var(--serif);
  font-size: .95rem;
  font-style: italic;
  color: var(--ink-light);
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(28,26,23,.08);
  max-width: 56ch;
  line-height: 1.8;
}
.avail-val a {
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid rgba(28,26,23,.2);
}

/* ─── CONTACT.PHP ────────────────────────────────────────────────────────────── */
.form-error {
  background: #fff3cd;
  border: 1px solid #ffc107;
  color: #856404;
  padding: .85rem 1.25rem;
  margin: 0 clamp(1.5rem,6vw,5rem) 1.5rem;
  border-radius: 4px;
  font-family: var(--sans);
  font-size: .85rem;
}
.honeypot { display: none; }
.h-captcha { margin-bottom: 1.25rem; }
.contact-aside.reveal { transition-delay: .15s; }
