/* ═══════════════════════════════════════════════════════════════════════
   NUQTA — Arabische kalligrafie
   Cream paper · ink black · cinematic minimalism
   ═══════════════════════════════════════════════════════════════════════ */

/* ─────────────── Tokens ─────────────── */
:root {
  --paper:      #F7F0E5;
  --paper-soft: #EFE6D6;
  --ink:        #15120E;
  --ink-2:      #241F19;
  --text:       #3A342C;
  --muted:      #7E7160;
  --gold:       #8F6D38;
  --line:       rgba(21, 18, 14, 0.16);
  --line-soft:  rgba(21, 18, 14, 0.09);

  --paper-on-dark: #EFE7D9;
  --muted-on-dark: rgba(239, 231, 217, 0.6);
  --line-on-dark:  rgba(239, 231, 217, 0.16);

  /* Goud: donkere variant op papier (leesbaar), heldere op inkt */
  --gold-bright: #C89B5E;

  --font-serif: "Cormorant Garamond", "Times New Roman", serif;
  --font-sans:  "Manrope", "Segoe UI", sans-serif;
  --font-ar:    "Amiri", "Traditional Arabic", serif;

  --ease-out:   cubic-bezier(0.19, 1, 0.22, 1);
  --ease-inout: cubic-bezier(0.77, 0, 0.18, 1);

  --nav-h: 76px;
  --pad-x: clamp(1.25rem, 5vw, 5rem);
  --content-w: 1320px;
}

/* ─────────────── Base ─────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-h) + 12px);
}

body {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

body.is-locked { overflow: hidden; }

::selection { background: var(--ink); color: var(--paper); }

a { color: inherit; text-decoration: none; }
ul { list-style: none; }
em { font-style: italic; }
svg { display: block; }

:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 4px;
  border-radius: 1px;
}

.svg-defs { position: absolute; width: 0; height: 0; overflow: hidden; }

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 2000;
  padding: 0.7em 1.2em;
  background: var(--ink);
  color: var(--paper);
  font-size: 0.85rem;
  transform: translateY(-200%);
  transition: transform 0.2s ease;
}

.skip-link:focus-visible { transform: none; }

/* Film grain over everything — the paper feel */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 1400;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='260' height='260'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3CfeComponentTransfer%3E%3CfeFuncA type='linear' slope='0.05'/%3E%3C/feComponentTransfer%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ─────────────── Kufic mark ─────────────── */
.mk { transform-box: fill-box; transform-origin: center; }
.mk-ink { fill: currentColor; }
.mk-gap { fill: var(--mark-gap, var(--paper)); }

/* ─────────────── Type helpers ─────────────── */
.h2 {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(2.3rem, 4.2vw, 3.8rem);
  line-height: 1.06;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin-bottom: 1.6rem;
}

.section p { max-width: 58ch; }

/* ═══════════════ INTRO ═══════════════ */
.intro { display: none; }

.anim .intro {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.2rem;
  background: var(--paper);
}

.intro--exit {
  transform: translateY(-101%);
  transition: transform 0.85s var(--ease-inout);
}

.intro__stage {
  position: relative;
  width: min(40vw, 250px);
  display: grid;
  place-items: center;
}

.intro__dot {
  position: absolute;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--ink);
  transform: scale(0);
}

.intro--play .intro__dot {
  animation:
    introDotIn 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) forwards,
    introDotOut 0.35s ease 0.65s forwards;
}

.intro__mark { width: 100%; color: var(--ink); }

.intro__mark .mk { opacity: 0; transform: scale(0.4); }

.intro--play .intro__mark .mk {
  animation: cellIn 0.5s var(--ease-out) forwards;
  animation-delay: calc(0.6s + var(--i, 0) * 60ms);
}

.intro__word {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 1.7rem;
  letter-spacing: 0.05em;
  color: var(--ink);
  opacity: 0;
  transform: translateY(14px);
}

.intro--play .intro__word {
  animation: fadeUp 0.6s var(--ease-out) 1.5s forwards;
}

.intro__word-dot { color: var(--gold); }

@keyframes introDotIn  { to { transform: scale(1); } }
@keyframes introDotOut { to { transform: scale(0); opacity: 0; } }
@keyframes cellIn      { to { opacity: 1; transform: scale(1); } }
@keyframes fadeUp      { to { opacity: 1; transform: translateY(0); } }

/* ═══════════════ NAV ═══════════════ */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 900;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-h);
  padding-inline: var(--pad-x);
  transition: background 0.4s ease, backdrop-filter 0.4s ease, opacity 0.7s ease, transform 0.7s var(--ease-out);
}

.nav::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 1px;
  background: var(--line-soft);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.nav--scrolled {
  background: rgba(247, 240, 229, 0.82);
  -webkit-backdrop-filter: blur(14px) saturate(1.15);
  backdrop-filter: blur(14px) saturate(1.15);
}

.nav--scrolled::after { opacity: 1; }

.anim.has-intro .nav { opacity: 0; transform: translateY(-10px); }
.anim.intro-done .nav { opacity: 1; transform: none; }

/* Brand wordmark: n + kufic mark + qta */
.brand {
  display: inline-flex;
  align-items: baseline;
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 1.6rem;
  letter-spacing: 0.01em;
  color: var(--ink);
  line-height: 1;
}

.brand__mark {
  height: 1.32em;
  width: auto;
  margin: 0 -0.04em;
  align-self: center;
  transform: translateY(0.08em);
  color: var(--ink);
}

.nav__links {
  display: flex;
  align-items: center;
  gap: clamp(1.4rem, 2.6vw, 2.4rem);
}

.nav__links a {
  position: relative;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: rgba(21, 18, 14, 0.72);
  transition: color 0.25s ease;
  padding-block: 0.3rem;
}

.nav__links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: var(--ink);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.35s var(--ease-out);
}

.nav__links a:hover,
.nav__links a.is-active { color: var(--ink); }

.nav__links a:hover::after,
.nav__links a.is-active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav__links a.nav__cta {
  border: 1px solid var(--ink);
  padding: 0.5em 1.2em;
  color: var(--ink);
  transition: background 0.3s ease, color 0.3s ease;
}

.nav__links a.nav__cta::after { display: none; }

.nav__links a.nav__cta:hover {
  background: var(--ink);
  color: var(--paper);
}

.nav__toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 7px;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: none;
  border: 0;
  cursor: pointer;
  z-index: 960;
}

.nav__toggle span {
  display: block;
  width: 100%;
  height: 1.5px;
  background: var(--ink);
  transition: transform 0.35s var(--ease-out), opacity 0.3s;
}

/* ═══════════════ HERO ═══════════════ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: calc(var(--nav-h) + 3vh) var(--pad-x) 5rem;
  overflow: hidden;
}

.hero__watermark {
  position: absolute;
  top: 6%;
  right: -8%;
  width: min(54vw, 660px);
  color: var(--ink);
  opacity: 0.05;
  pointer-events: none;
  --mark-gap: var(--paper);
}

.hero__inner {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 900px;
}

.hero__eyebrow {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: clamp(1.2rem, 3vh, 2.2rem);
}

.hero__calligraphy { width: min(90vw, 690px); }

.callig { width: 100%; height: auto; color: var(--ink); overflow: visible; }

.callig__text {
  font-family: var(--font-ar);
  fill: currentColor;
  stroke: currentColor;
  stroke-width: 1.4;
}

.callig--hero  .callig__text { font-size: 200px; }
.callig--naam  .callig__text { font-size: 150px; stroke-width: 1.9; }
.callig--panel .callig__text { font-size: 215px; stroke-width: 2.2; }

/* The self-writing effect: outline traces the letterforms, then ink floods in.
   --dash must stay >= the longest glyph contour, otherwise the animation
   starts with a partially visible outline. */
.anim .callig__text:not(.callig__text--pen) {
  fill: transparent;
  stroke-dasharray: var(--dash, 2600);
  stroke-dashoffset: var(--dash, 2600);
}

.anim .callig.is-drawn .callig__text:not(.callig__text--pen) {
  animation: calligDraw 3.2s cubic-bezier(0.55, 0, 0.25, 1) forwards;
}

/* Pen-variant (hero): het gevulde woord wordt onthuld door maskerstreken
   die de schrijfbeweging volgen — de animatie stuurt js/main.js aan. */
.callig__text--pen { fill: currentColor; stroke: none; }
.callig--pen .nib { pointer-events: none; }

@keyframes calligDraw {
  0%   { stroke-dashoffset: var(--dash, 2600); fill: transparent; }
  55%  { fill: transparent; }
  80%  { stroke-dashoffset: 0; }
  100% { stroke-dashoffset: 0; fill: currentColor; }
}

.hero__title {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(2.7rem, 7vw, 5.8rem);
  line-height: 1.04;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-top: clamp(1rem, 3vh, 2rem);
}

.hero__title-line { display: block; overflow: hidden; padding-bottom: 0.06em; }

.hero__title-line > span {
  display: inline-block;
  will-change: transform;
}

.anim .hero__title-line > span {
  transform: translateY(115%);
  transition: transform 1.1s var(--ease-out);
}

.anim .hero--in .hero__title-line:nth-child(1) > span { transform: none; transition-delay: 0.15s; }
.anim .hero--in .hero__title-line:nth-child(2) > span { transform: none; transition-delay: 0.3s; }

.hero__punt { color: var(--gold); }

.anim .hero__punt {
  display: inline-block;
  transform: scale(0);
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) 1.35s;
}

.anim .hero--in .hero__punt { transform: scale(1); }

.hero__sub {
  max-width: 46ch;
  margin-top: 1.6rem;
  font-size: 1.02rem;
  color: var(--text);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-top: 2.4rem;
}

.hero__scroll {
  position: absolute;
  bottom: 2rem;
  left: var(--pad-x);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.7rem;
}

.hero__scroll-line {
  width: 1px;
  height: 52px;
  background: var(--line);
  position: relative;
  overflow: hidden;
}

.hero__scroll-line::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--ink);
  animation: scrollDrip 2.2s var(--ease-inout) infinite;
}

@keyframes scrollDrip {
  0%   { transform: translateY(-100%); }
  55%  { transform: translateY(0); }
  100% { transform: translateY(100%); }
}

.hero__scroll-label {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ═══════════════ BUTTONS ═══════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.95rem 2.1rem;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border: 1px solid var(--ink);
  cursor: pointer;
  transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease, letter-spacing 0.3s ease;
}

.btn:hover { letter-spacing: 0.22em; }

.btn--ink { background: var(--ink); color: var(--paper); }
.btn--ink:hover { background: transparent; color: var(--ink); }

.btn--ghost { background: transparent; color: var(--ink); border-color: rgba(21, 18, 14, 0.4); }
.btn--ghost:hover { border-color: var(--ink); background: var(--ink); color: var(--paper); }

.btn--paper { background: var(--paper); color: var(--ink); border-color: var(--paper); }
.btn--paper:hover { background: transparent; color: var(--paper); }

/* ═══════════════ MARQUEE ═══════════════ */
.marquee {
  overflow: hidden;
  border-block: 1px solid var(--line-soft);
  padding-block: 1rem;
  background: var(--paper);
}

.marquee__track {
  display: flex;
  width: max-content;
  animation: marquee 60s linear infinite;
}

.marquee__seq {
  font-family: var(--font-ar);
  font-size: clamp(2rem, 3.4vw, 3rem);
  line-height: 1.5;
  white-space: nowrap;
  color: transparent;
  -webkit-text-stroke: 1px rgba(21, 18, 14, 0.5);
  padding-inline-end: 0.5em;
}

.marquee__seq i {
  font-style: normal;
  -webkit-text-stroke: 0;
  color: rgba(21, 18, 14, 0.3);
}

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

.marquee--dark {
  background: var(--ink);
  border-block-color: rgba(239, 231, 217, 0.12);
}

.marquee--dark .marquee__seq { -webkit-text-stroke: 1px rgba(239, 231, 217, 0.42); }
.marquee--dark .marquee__seq i { color: rgba(239, 231, 217, 0.3); }

.marquee__track--rev {
  animation-direction: reverse;
  animation-duration: 75s;
}

/* ═══════════════ SWASH — getekende sierlijn ═══════════════ */
.swash {
  display: block;
  width: clamp(150px, 16vw, 230px);
  margin-top: 1rem;
  color: var(--gold);
  overflow: visible;
}

.webshop__body .h2 { margin-bottom: 0; }

.swash__path {
  fill: none;
  stroke: currentColor;
  stroke-width: 2.6;
  stroke-linecap: round;
}

.anim .swash__path {
  stroke-dasharray: 340;
  stroke-dashoffset: 340;
}

.anim .swash.is-drawn .swash__path {
  animation: swashDraw 1.1s var(--ease-inout) 0.15s forwards;
}

@keyframes swashDraw { to { stroke-dashoffset: 0; } }

/* ═══════════════ SECTION SCAFFOLD ═══════════════ */
.section {
  position: relative;
  padding: clamp(5.5rem, 12vh, 9.5rem) var(--pad-x);
}

.section__head {
  display: flex;
  align-items: baseline;
  gap: 1.3rem;
  max-width: var(--content-w);
  margin: 0 auto clamp(3rem, 7vh, 5rem);
}

.section__head::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--line);
  align-self: center;
}

.section__head--center { justify-content: center; }
.section__head--center::after { display: none; }

.section__index {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--gold);
}

.section__label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--ink);
}

/* ═══════════════ OVER ═══════════════ */
.over__grid {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  gap: clamp(2.5rem, 6vw, 6.5rem);
  max-width: var(--content-w);
  margin: 0 auto;
  align-items: start;
}

.callig-panel {
  position: sticky;
  top: calc(var(--nav-h) + 40px);
  border: 1px solid var(--line);
  aspect-ratio: 1 / 1.08;
  display: grid;
  place-items: center;
  padding: 2rem;
}

.callig-panel .callig { width: 82%; }

.callig-panel__caption {
  position: absolute;
  bottom: 1.3rem;
  left: 0;
  right: 0;
  text-align: center;
  font-size: 0.9rem;
  color: var(--muted);
}

.callig-panel__caption [lang="ar"] {
  font-family: var(--font-ar);
  font-size: 1.3rem;
  color: var(--ink);
}

.callig-panel__caption em { font-family: var(--font-serif); font-size: 1.05rem; }

.over__body p { margin-bottom: 1.25rem; font-size: 1.03rem; }

.over__body p em { font-family: var(--font-serif); font-size: 1.08em; }

.over__values {
  display: flex;
  flex-wrap: wrap;
  gap: 1.1rem 2.4rem;
  margin-top: 2.4rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line-soft);
}

.over__values li {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
}

.dot-bullet {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
  flex: none;
}

/* ═══════════════ DE NAAM (dark) ═══════════════ */
.naam,
.contact,
.footer { --gold: var(--gold-bright); }

.naam {
  background: var(--ink);
  color: var(--paper-on-dark);
  text-align: center;
  overflow: hidden;
}

.naam .section__index { color: var(--gold); }
.naam .section__label { color: var(--paper-on-dark); }

.naam__ghost {
  position: absolute;
  top: 50%;
  right: -6%;
  transform: translateY(-50%);
  font-family: var(--font-ar);
  font-size: clamp(28rem, 55vw, 52rem);
  line-height: 0.9;
  color: var(--paper-on-dark);
  opacity: 0.04;
  pointer-events: none;
  user-select: none;
}

.naam__inner {
  position: relative;
  max-width: 880px;
  margin: 0 auto;
}

.naam__calligraphy { display: flex; justify-content: center; }

.callig--naam {
  width: min(80vw, 560px);
  color: var(--paper-on-dark);
}

.naam__title {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  line-height: 1.08;
  margin-top: 1.5rem;
  color: var(--paper-on-dark);
}

.naam__title em { color: var(--gold); }

.naam__text {
  max-width: 58ch;
  margin: 1.6rem auto 0;
  font-size: 1.03rem;
  color: var(--muted-on-dark);
}

.naam__line {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.9rem;
  margin-top: 3rem;
}

.naam__line-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
}

.naam__line-stroke {
  width: 150px;
  height: 1px;
  background: var(--line-on-dark);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 1.2s var(--ease-out) 0.3s;
}

.naam__line.is-in .naam__line-stroke { transform: scaleX(1); }

/* ═══════════════ DE KUNST — word gallery ═══════════════ */
.kunst { padding-bottom: 0; }

.kunst__track { display: block; }

.kpanel {
  position: relative;
  min-height: 82vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4rem 1.5rem;
  border-top: 1px solid var(--line-soft);
}

.kpanel--lead { border-top: 0; min-height: 60vh; }

.kpanel__lead-callig {
  height: clamp(80px, 15vh, 140px);
  width: auto;
  color: var(--ink);
  margin-bottom: 1.8rem;
}

.kpanel__lead-callig .callig__text { font-size: 135px; stroke-width: 1.6; }

.kpanel__lead-title {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(2.4rem, 4.6vw, 4.1rem);
  line-height: 1.08;
  color: var(--ink);
}

.kpanel__lead-sub {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.25rem;
  color: var(--muted);
  margin-top: 1.4rem;
}

.kunst__hint {
  display: none;
  align-items: center;
  gap: 0.8rem;
  margin-top: 3rem;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--muted);
}

.kunst__hint-line {
  width: 54px;
  height: 1px;
  background: var(--muted);
  position: relative;
  overflow: hidden;
}

.kunst__hint-line::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--ink);
  animation: hintSlide 2s var(--ease-inout) infinite;
}

@keyframes hintSlide {
  0%   { transform: translateX(-100%); }
  60%  { transform: translateX(0); }
  100% { transform: translateX(100%); }
}

.kpanel__index {
  position: absolute;
  top: clamp(3rem, 12vh, 6rem);
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-ar);
  font-size: 1.5rem;
  color: var(--gold);
}

.kpanel__word {
  height: min(clamp(10rem, 42vh, 24rem), 68vw);
  width: auto;
  color: var(--ink);
}

.kpanel__word .callig__text { font-size: 260px; stroke-width: 2.4; }

.anim .kpanel__word.is-drawn .callig__text { animation-duration: 2.6s; }

.kpanel__meta {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  margin-top: clamp(1rem, 3.5vh, 2.4rem);
}

.kpanel__name {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink);
}

.kpanel__poetic {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.25rem;
  color: var(--muted);
}

.kpanel__enddot {
  width: 17px;
  height: 17px;
  border-radius: 50%;
  background: var(--gold);
  margin-bottom: 2.2rem;
}

.kpanel__cta-title {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  line-height: 1.08;
  color: var(--ink);
  margin-bottom: 2.4rem;
}

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

/* Horizontal cinema mode (activated by JS + GSAP on wide screens) */
.kunst--h {
  height: 100vh;
  padding: 0;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.kunst--h .kunst__head {
  position: absolute;
  top: calc(var(--nav-h) + 1.2rem);
  left: var(--pad-x);
  right: auto;
  z-index: 5;
  margin: 0;
  width: auto;
}

.kunst--h .kunst__head::after { width: 120px; flex: none; }

.kunst--h .kunst__track {
  display: flex;
  width: max-content;
  will-change: transform;
}

.kunst--h .kpanel {
  width: min(68vw, 980px);
  height: 100vh;
  min-height: 0;
  flex: none;
  border-top: 0;
  border-left: 1px solid var(--line-soft);
  padding: 6rem 3rem;
}

.kunst--h .kpanel--lead { border-left: 0; width: min(80vw, 1120px); }

.kunst--h .kunst__hint { display: inline-flex; }

/* ═══════════════ WORKSHOPS ═══════════════ */
.workshops__intro {
  display: grid;
  grid-template-columns: minmax(0, 6fr) minmax(0, 6fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: end;
  max-width: var(--content-w);
  margin: 0 auto clamp(3rem, 7vh, 4.5rem);
}

.workshops__intro .h2 { margin-bottom: 0; }

.workshops__intro p { font-size: 1.03rem; }

.workshops__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
  max-width: var(--content-w);
  margin: 0 auto;
}

.wcard {
  position: relative;
  padding: 2.5rem 2.1rem 2.7rem;
  border: 1px solid var(--line);
  transition: background 0.4s ease, border-color 0.4s ease;
}

.wcard__num {
  position: absolute;
  top: 1.1rem;
  right: 1.5rem;
  font-family: var(--font-ar);
  font-size: 2.7rem;
  line-height: 1;
  color: rgba(21, 18, 14, 0.14);
  transition: color 0.4s ease;
}

.wcard h3 {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 1.5rem;
  line-height: 1.15;
  color: var(--ink);
  margin-bottom: 0.8rem;
  max-width: 86%;
  transition: color 0.4s ease;
}

.wcard p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text);
  transition: color 0.4s ease;
}

@media (hover: hover) {
  .wcard:hover { background: var(--ink); border-color: var(--ink); }
  .wcard:hover h3 { color: var(--paper-on-dark); }
  .wcard:hover p { color: var(--muted-on-dark); }
  .wcard:hover .wcard__num { color: var(--gold-bright); }
}

/* Materials */
.materials {
  display: grid;
  grid-template-columns: minmax(0, 4fr) minmax(0, 8fr);
  gap: clamp(2rem, 5vw, 4rem);
  max-width: var(--content-w);
  margin: clamp(3.5rem, 8vh, 5.5rem) auto 0;
  padding-top: clamp(2.5rem, 6vh, 4rem);
  border-top: 1px solid var(--line-soft);
}

.materials__title {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 1.7rem;
  color: var(--ink);
  margin-bottom: 0.6rem;
}

.materials__head p { font-size: 0.98rem; color: var(--muted); }

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

.materials__list li {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.9rem;
}

.materials__icon { width: 42px; height: 42px; color: var(--ink); }

.materials__name {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
}

.materials__sub {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1rem;
  color: var(--muted);
  margin-top: -0.5rem;
}

.workshops__cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.1rem;
  max-width: var(--content-w);
  margin: clamp(3.5rem, 8vh, 5rem) auto 0;
}

.workshops__cta-note { font-size: 0.88rem; color: var(--muted); }

/* ═══════════════ WEBSHOP ═══════════════ */
.webshop { background: var(--paper-soft); }

.webshop__grid {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  gap: clamp(2.5rem, 6vw, 6.5rem);
  max-width: var(--content-w);
  margin: 0 auto;
  align-items: start;
}

.webshop__body { position: sticky; top: calc(var(--nav-h) + 40px); }

.webshop__body p { font-size: 1.03rem; margin-bottom: 1.2rem; }

.webshop__soon {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink);
  margin: 0.8rem 0 1.6rem;
}

.webshop__soon-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--gold);
  animation: pulse 2.2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50%      { transform: scale(0.55); opacity: 0.6; }
}

.webshop__list li {
  position: relative;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.35rem 0 1.35rem 0;
  border-bottom: 1px solid var(--line);
  transition: padding-left 0.35s var(--ease-out);
}

.webshop__list li:first-child { border-top: 1px solid var(--line); }

.webshop__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  transform: translateY(-50%) scale(0);
  transition: transform 0.35s var(--ease-out);
}

@media (hover: hover) {
  .webshop__list li:hover { padding-left: 1.6rem; }
  .webshop__list li:hover::before { transform: translateY(-50%) scale(1); }
}

.webshop__item {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(1.45rem, 2.2vw, 2rem);
  color: var(--ink);
}

.webshop__note {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.02rem;
  color: var(--muted);
  white-space: nowrap;
}

/* ═══════════════ CONTACT (dark) ═══════════════ */
.contact {
  background: var(--ink);
  color: var(--paper-on-dark);
  text-align: center;
  padding-block: clamp(6.5rem, 15vh, 11rem);
}

.contact__inner { max-width: 780px; margin: 0 auto; }

.contact__mark {
  width: clamp(96px, 12vw, 136px);
  margin: 0 auto 2.6rem;
  color: var(--paper-on-dark);
  --mark-gap: var(--ink);
}

/* Het merk assembleert cel-voor-cel zodra het in beeld komt */
.anim .contact__mark .mk { opacity: 0; transform: scale(0.4); }

.anim .contact__mark.is-in .mk {
  animation: cellIn 0.5s var(--ease-out) forwards;
  animation-delay: calc(var(--i, 0) * 45ms);
}

.contact__title {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(2.7rem, 6vw, 5rem);
  line-height: 1.06;
  color: var(--paper-on-dark);
}

.contact__title em { color: var(--gold); }

.contact__text {
  max-width: 48ch;
  margin: 1.7rem auto 2.8rem;
  font-size: 1.03rem;
  color: var(--muted-on-dark);
}

/* ═══════════════ FOOTER (sitemap) ═══════════════ */
.footer {
  background: var(--ink);
  color: var(--paper-on-dark);
  border-top: 1px solid var(--line-on-dark);
  padding: clamp(3rem, 7vh, 4.5rem) var(--pad-x) 2rem;
}

.footer__grid {
  max-width: var(--content-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1.1fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--line-on-dark);
}

.brand--footer { font-size: 1.35rem; color: var(--paper-on-dark); }
.brand--footer .brand__mark { color: var(--paper-on-dark); --mark-gap: var(--ink); }

.footer__tagline {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--muted-on-dark);
  margin-top: 0.8rem;
}

.footer__about {
  font-size: 0.92rem;
  line-height: 1.7;
  color: var(--muted-on-dark);
  margin-top: 1.1rem;
  max-width: 30ch;
}

.footer__col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.6rem;
}

.footer__head {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--paper-on-dark);
  margin-bottom: 0.4rem;
}

.footer__col a {
  font-size: 0.92rem;
  color: var(--muted-on-dark);
  transition: color 0.25s ease;
}

.footer__col a:hover { color: var(--paper-on-dark); }

.footer__note { font-size: 0.92rem; line-height: 1.7; color: var(--muted-on-dark); }

.footer__small { font-size: 0.85rem; opacity: 0.75; margin-top: 0.5rem; }

.footer__copy {
  max-width: var(--content-w);
  margin: 0 auto;
  padding-top: 1.8rem;
  font-size: 0.8rem;
  color: rgba(239, 231, 217, 0.45);
  text-align: center;
}

.footer__copy-dot { color: var(--gold); }

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

@media (max-width: 560px) {
  .footer__grid { grid-template-columns: 1fr; gap: 2rem; }
}

/* ═══════════════ CURSOR & PROGRESS RAIL (JS-injected) ═══════════════ */
.cursor-dot,
.cursor-ring {
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 1500;
  border-radius: 50%;
  mix-blend-mode: difference;
  will-change: transform;
}

.cursor-dot {
  width: 7px;
  height: 7px;
  background: #EDE4D4;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.cursor-ring {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(237, 228, 212, 0.85);
  opacity: 0;
  transition: opacity 0.3s ease;
}

html.has-cursor,
html.has-cursor a,
html.has-cursor button { cursor: none; }

.rail {
  position: fixed;
  left: clamp(14px, 2.4vw, 34px);
  top: 50%;
  transform: translateY(-50%);
  height: 36vh;
  width: 1px;
  background: rgba(237, 228, 212, 0.3);
  mix-blend-mode: difference;
  z-index: 800;
  pointer-events: none;
}

.rail__fill {
  position: absolute;
  inset: 0;
  background: #EDE4D4;
  transform-origin: top;
  transform: scaleY(var(--p, 0));
}

.rail__dot {
  position: absolute;
  left: 50%;
  top: calc(var(--p, 0) * 100%);
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #EDE4D4;
  transform: translate(-50%, -50%);
}

@media (max-width: 1100px), (pointer: coarse) {
  .rail { display: none; }
}

/* ═══════════════ SCROLL REVEALS ═══════════════
   Bewust transform-only: content is ALTIJD zichtbaar (ook in screenshots
   en zonder JS), alleen de positie zet zich subtiel bij het scrollen. */
.anim .reveal {
  transform: translateY(16px);
  transition: transform 1s var(--ease-out) var(--rd, 0s);
}

.anim .reveal.is-in { transform: none; }

/* Compact hero op lage viewports zodat alles in één scherm past */
@media (min-width: 861px) and (max-height: 840px) {
  .hero { padding-top: calc(var(--nav-h) + 1vh); }
  .hero__eyebrow { margin-bottom: 1rem; }
  .hero__calligraphy { width: min(62vw, 500px); }
  .hero__title { font-size: clamp(2.4rem, 5.4vw, 4.5rem); }
  .hero__sub { margin-top: 1.2rem; }
  .hero__actions { margin-top: 1.8rem; }
  .hero__scroll { bottom: 1.4rem; }

  .kunst--h .kpanel { padding-block: 3rem; }
  .kpanel__index { top: clamp(1.8rem, 7vh, 3.5rem); }
}

/* ═══════════════ RESPONSIVE ═══════════════ */
@media (max-width: 1100px) {
  .over__grid,
  .webshop__grid { grid-template-columns: 1fr; }

  .callig-panel {
    position: static;
    max-width: 480px;
    margin: 0 auto;
    width: 100%;
  }

  .webshop__body { position: static; }

  .workshops__intro { grid-template-columns: 1fr; align-items: start; }
  .workshops__grid { grid-template-columns: repeat(2, 1fr); }

  .materials { grid-template-columns: 1fr; }
}

@media (max-width: 860px) {
  .nav__toggle { display: flex; }

  .nav__links {
    position: fixed;
    inset: 0;
    z-index: 940;
    flex-direction: column;
    justify-content: center;
    background: var(--paper);
    gap: 2rem;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.45s ease, visibility 0.45s ease;
  }

  .nav__links a {
    font-family: var(--font-serif);
    font-size: 2.1rem;
    font-weight: 500;
    color: var(--ink);
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.5s ease, transform 0.6s var(--ease-out);
  }

  .nav__links a::after { height: 2px; }

  .nav__links.is-open {
    opacity: 1;
    visibility: visible;
  }

  .nav__links.is-open a {
    opacity: 1;
    transform: none;
  }

  .nav__links.is-open a:nth-child(1) { transition-delay: 0.1s; }
  .nav__links.is-open a:nth-child(2) { transition-delay: 0.16s; }
  .nav__links.is-open a:nth-child(3) { transition-delay: 0.22s; }
  .nav__links.is-open a:nth-child(4) { transition-delay: 0.28s; }
  .nav__links.is-open a:nth-child(5) { transition-delay: 0.34s; }
  .nav__links.is-open a:nth-child(6) { transition-delay: 0.4s; }

  .nav__links a.nav__cta { border: 0; padding: 0; }
  .nav__links a.nav__cta:hover { background: none; color: var(--ink); }

  .nav__toggle.is-open span:nth-child(1) { transform: translateY(4.25px) rotate(45deg); }
  .nav__toggle.is-open span:nth-child(2) { transform: translateY(-4.25px) rotate(-45deg); }

  .hero__watermark { right: -30%; width: 90vw; opacity: 0.04; }

  .naam__ghost { right: -20%; }
}

@media (max-width: 640px) {
  .workshops__grid { grid-template-columns: 1fr; }
  .materials__list { grid-template-columns: 1fr; gap: 1.6rem; }

  .materials__list li {
    flex-direction: row;
    align-items: center;
    gap: 1.1rem;
    flex-wrap: wrap;
  }

  .materials__icon { width: 34px; height: 34px; }
  .materials__sub { margin-top: 0; }

  .footer {
    grid-template-columns: 1fr;
    text-align: center;
    justify-items: center;
    gap: 1.8rem;
  }

  .footer__copy { text-align: center; }

  .webshop__note { display: none; }

  .hero__actions { flex-direction: column; width: 100%; }
  .hero__actions .btn { width: 100%; }

  .kpanel { min-height: 68vh; }
  .kpanel__index { top: clamp(2rem, 8vh, 4rem); }
}

/* ═══════════════ REDUCED MOTION ═══════════════ */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  html { scroll-behavior: auto; }

  .anim .intro { display: none; }
  .anim .reveal { transform: none; }
  .anim .hero__title-line > span { transform: none; }
  .anim .hero__punt { transform: scale(1); }
  .anim .callig__text { fill: currentColor; stroke-dashoffset: 0; stroke-dasharray: none; }
  .anim .swash__path { stroke-dashoffset: 0; stroke-dasharray: none; }
  .anim [data-draw] .dia__path { stroke-dashoffset: 0; stroke-dasharray: none; }
  .anim [data-draw] .dia__label,
  .anim [data-draw] .dia__leader,
  .anim [data-draw] .dia__fade { opacity: 1; }
  .anim .contact__mark .mk { opacity: 1; transform: none; }
  .marquee__track { animation: none; }
  .hero__scroll-line::after,
  .kunst__hint-line::after { animation: none; }
  .anim.has-intro .nav { opacity: 1; transform: none; }
}

/* ═══════════════════════════════════════════════════════════════════════
   SUBPAGINA-COMPONENTEN (multi-page uitbouw)
   ═══════════════════════════════════════════════════════════════════════ */

/* ── Page hero ── */
.phero {
  position: relative;
  padding: calc(var(--nav-h) + clamp(3rem, 8vh, 5.5rem)) var(--pad-x) clamp(2.6rem, 6vh, 4.2rem);
  border-bottom: 1px solid var(--line-soft);
  overflow: hidden;
}

.phero__inner {
  position: relative;
  z-index: 2;
  max-width: var(--content-w);
  margin: 0 auto;
  padding-right: min(34vw, 460px);
}

.phero__callig {
  position: absolute;
  right: var(--pad-x);
  top: 55%;
  transform: translateY(-50%);
  height: clamp(150px, 26vh, 235px);
  width: auto;
  color: var(--ink);
  pointer-events: none;
}

.phero__callig .callig__text { font-size: 150px; stroke-width: 1.8; }

.crumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  font-size: 0.8rem;
  color: var(--muted);
  margin-bottom: 1.6rem;
}

.crumbs a { transition: color 0.2s ease; }
.crumbs a:hover { color: var(--ink); }
.crumbs span[aria-current] { color: var(--ink); }

.phero__eyebrow {
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.phero__title {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  line-height: 1.05;
  letter-spacing: -0.015em;
  color: var(--ink);
}

.phero__intro {
  max-width: 60ch;
  margin-top: 1.4rem;
  font-size: 1.06rem;
  line-height: 1.8;
}

@media (max-width: 1000px) {
  .phero__inner { padding-right: 0; }
  .phero__callig {
    position: static;
    transform: none;
    height: clamp(90px, 14vh, 130px);
    margin: 0 0 1.6rem;
  }
}

/* ── Sectie-scaffold voor subpagina's ── */
.psec { padding: clamp(3.5rem, 8vh, 6rem) var(--pad-x); }
.psec--alt { background: var(--paper-soft); }

.pwrap { max-width: var(--content-w); margin: 0 auto; }
.pwrap--narrow { max-width: 800px; }

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

@media (max-width: 900px) {
  .pwrap--split { grid-template-columns: 1fr; }
}

.h2h {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(1.7rem, 3vw, 2.2rem);
  line-height: 1.15;
  color: var(--ink);
  margin-bottom: 1.4rem;
}

.psec__lead { max-width: 60ch; margin-bottom: 2.4rem; font-size: 1.04rem; }

/* ── Prose (artikelen) ── */
.prose p { font-size: 1.05rem; line-height: 1.85; margin-bottom: 1.25rem; }

.prose h2 {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(1.6rem, 2.6vw, 2rem);
  line-height: 1.2;
  color: var(--ink);
  margin: 2.6rem 0 0.9rem;
}

.prose a {
  color: var(--ink);
  text-decoration: underline;
  text-decoration-color: var(--gold);
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
  transition: text-decoration-color 0.2s ease;
}

.prose a:hover { text-decoration-color: var(--ink); }

.prose ul { margin: 0 0 1.25rem 1.2rem; }
.prose ul li { margin-bottom: 0.6rem; line-height: 1.75; list-style: none; position: relative; padding-left: 1.1rem; }
.prose ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.68em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
}

.prose em { font-family: var(--font-serif); font-size: 1.06em; }
.prose [lang="ar"] { font-family: var(--font-ar); font-size: 1.15em; }

.article-meta {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 2.2rem;
}

/* ── Kaarten (indexen) ── */
.cardgrid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.4rem;
}

.card {
  position: relative;
  display: block;
  padding: 2.1rem 1.9rem 1.9rem;
  border: 1px solid var(--line);
  background: var(--paper);
  transition: background 0.35s ease, border-color 0.35s ease, transform 0.35s var(--ease-out);
}

.card__ar {
  position: absolute;
  top: 1rem;
  right: 1.3rem;
  font-family: var(--font-ar);
  font-size: 2.4rem;
  line-height: 1;
  color: rgba(21, 18, 14, 0.14);
  transition: color 0.35s ease;
}

.card h2, .card h3 {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 1.4rem;
  line-height: 1.2;
  color: var(--ink);
  margin-bottom: 0.7rem;
  max-width: 88%;
  transition: color 0.35s ease;
}

.card p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text);
  margin-bottom: 1.2rem;
  transition: color 0.35s ease;
}

.card__more {
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  transition: color 0.35s ease;
}

.card__more::after { content: " \2192"; }

@media (hover: hover) {
  .card:not(.card--static):hover { background: var(--ink); border-color: var(--ink); transform: translateY(-3px); }
  .card:not(.card--static):hover h2,
  .card:not(.card--static):hover h3 { color: var(--paper-on-dark); }
  .card:not(.card--static):hover p { color: var(--muted-on-dark); }
  .card:not(.card--static):hover .card__ar { color: var(--gold-bright); }
  .card:not(.card--static):hover .card__more { color: var(--gold-bright); }
}

.card--static { cursor: default; }

/* ── Stappen ── */
.steps__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.6rem, 4vw, 3rem);
  counter-reset: none;
  list-style: none;
}

.steps__num {
  display: block;
  font-family: var(--font-ar);
  font-size: 1.7rem;
  color: var(--gold);
  margin-bottom: 0.8rem;
}

.steps__list h3 {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 1.35rem;
  color: var(--ink);
  margin-bottom: 0.6rem;
}

.steps__list p { font-size: 0.97rem; line-height: 1.75; }

@media (max-width: 860px) {
  .steps__list { grid-template-columns: 1fr; }
}

/* ── Feitenlijst & vinkjes ── */
.facts { list-style: none; }

.facts li {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 1rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--line-soft);
  font-size: 0.98rem;
  line-height: 1.6;
}

.facts li > span {
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  padding-top: 0.2em;
}

.facts a { color: var(--ink); text-decoration: underline; text-decoration-color: var(--gold); text-underline-offset: 3px; }

.ticks { list-style: none; }

.ticks li {
  position: relative;
  padding: 0.5rem 0 0.5rem 1.6rem;
  font-size: 1rem;
  line-height: 1.65;
}

.ticks li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1.05em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
}

/* ── FAQ ── */
.faq details { border-bottom: 1px solid var(--line); }

.faq summary {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 1.18rem;
  color: var(--ink);
  padding: 1.05rem 2rem 1.05rem 0;
  cursor: pointer;
  list-style: none;
  position: relative;
}

.faq summary::-webkit-details-marker { display: none; }

.faq summary::after {
  content: "+";
  position: absolute;
  right: 0.3rem;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-sans);
  font-size: 1.2rem;
  color: var(--gold);
  transition: transform 0.3s var(--ease-out);
}

.faq details[open] summary::after { transform: translateY(-50%) rotate(45deg); }

.faq details p { padding: 0 0 1.2rem; font-size: 0.98rem; line-height: 1.75; max-width: 60ch; }

.faq details a { color: var(--ink); text-decoration: underline; text-decoration-color: var(--gold); text-underline-offset: 3px; }

/* ── Gerelateerd ── */
.related { display: flex; flex-direction: column; align-items: flex-start; gap: 0.4rem; margin-top: 2.2rem; }

.related a {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  color: var(--ink);
  padding: 0.45rem 0;
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s ease, color 0.25s ease;
}

.related a::after { content: " \2192"; color: var(--gold); }
.related a:hover { border-bottom-color: var(--ink); }

/* ── Blog ── */
.postlist { display: flex; flex-direction: column; }

.post {
  display: block;
  padding: 2.2rem 0;
  border-bottom: 1px solid var(--line);
  transition: padding-left 0.3s var(--ease-out);
}

.postlist .post:first-child { border-top: 1px solid var(--line); }

.post__date {
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

.post h2 {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  color: var(--ink);
  margin: 0.5rem 0 0.6rem;
}

.post p { max-width: 64ch; font-size: 1rem; line-height: 1.75; margin-bottom: 0.9rem; }

@media (hover: hover) {
  .post:hover { padding-left: 1.2rem; }
}

/* ── CTA-band ── */
.cta-band {
  background: var(--ink);
  color: var(--paper-on-dark);
  text-align: center;
  padding: clamp(4rem, 10vh, 6.5rem) var(--pad-x);
  --gold: var(--gold-bright);
}

.cta-band__mark {
  width: clamp(72px, 9vw, 100px);
  margin: 0 auto 2rem;
  color: var(--paper-on-dark);
  --mark-gap: var(--ink);
}

.cta-band__title {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(2rem, 4.4vw, 3.2rem);
  line-height: 1.1;
}

.cta-band__title em { color: var(--gold-bright); }

.cta-band__text {
  max-width: 52ch;
  margin: 1.2rem auto 2.2rem;
  font-size: 1.02rem;
  line-height: 1.8;
  color: var(--muted-on-dark);
}

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

.btn--ghost-dark {
  background: transparent;
  color: var(--paper-on-dark);
  border-color: rgba(239, 231, 217, 0.45);
}

.btn--ghost-dark:hover { background: var(--paper); color: var(--ink); border-color: var(--paper); }

/* ── Contact & diversen ── */
.contact-note { color: var(--muted); font-size: 0.96rem; line-height: 1.7; margin-top: 1.2rem; }

/* ── 404 ── */
.nf { min-height: 55vh; display: grid; place-items: center; text-align: center; }

.nf__inner { display: flex; flex-direction: column; align-items: center; }

.nf__dot { width: 14px; height: 14px; border-radius: 50%; background: var(--gold); margin-bottom: 1.6rem; }

.nf__ar {
  font-family: var(--font-ar);
  font-size: clamp(4rem, 10vw, 7rem);
  line-height: 1.1;
  color: rgba(21, 18, 14, 0.1);
  margin-bottom: 0.6rem;
}

.nf__title {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(1.9rem, 4vw, 3rem);
  color: var(--ink);
  margin-bottom: 0.9rem;
}

.nf__text { max-width: 42ch; margin-bottom: 2.2rem; }

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

/* ── Oefenhoek: schrijf zelf met een virtuele rietpen ── */
.oefen__lead { max-width: 58ch; margin-bottom: 1.8rem; font-size: 1.03rem; }

.oefen__pad {
  position: relative;
  border: 1px solid var(--line);
  background: #FBF6EC;
}

.oefen__canvas {
  display: block;
  width: 100%;
  height: auto;
  touch-action: none;
  cursor: crosshair;
}

.oefen__hint {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  color: var(--muted);
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.oefen__tools {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.4rem;
}

/* ── Micro-interacties ── */
.phero__callig { transition: transform 0.6s var(--ease-out); will-change: transform; }

@media (max-width: 1000px) {
  .phero__callig { transition: none; }
}

.faq details[open] p { animation: fadeUp 0.35s var(--ease-out); }

/* ── Oefenhoek v2: penkeuze, voorbeeld & nib-cursor ── */
.oefen__tools { align-items: center; }

.oefen__pens {
  display: inline-flex;
  gap: 0.55rem;
  margin-right: 0.4rem;
}

.oefen__pen {
  width: 47px;
  height: 47px;
  border: 1px solid var(--line);
  background: transparent;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: border-color 0.25s ease, background 0.25s ease, transform 0.2s ease;
}

.oefen__pen span {
  display: block;
  width: var(--s, 14px);
  height: 5px;
  border-radius: 2px;
  background: var(--ink);
  transform: rotate(-40deg);
  pointer-events: none;
}

.oefen__pen:hover { border-color: var(--ink); }

.oefen__pen.is-actief {
  border-color: var(--ink);
  background: rgba(21, 18, 14, 0.06);
}

.oefen__canvas {
  cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30'%3E%3Cline x1='7' y1='23' x2='23' y2='9' stroke='%2315120E' stroke-width='5' stroke-linecap='round'/%3E%3C/svg%3E") 15 15, crosshair;
}

html.has-cursor .oefen__canvas {
  cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30'%3E%3Cline x1='7' y1='23' x2='23' y2='9' stroke='%2315120E' stroke-width='5' stroke-linecap='round'/%3E%3C/svg%3E") 15 15, crosshair;
}

/* ═══════════════ VIEW TRANSITIONS — cinematische paginawissel ═══════════════ */
@view-transition { navigation: auto; }

.nav { view-transition-name: site-nav; }

@media (prefers-reduced-motion: no-preference) {
  ::view-transition-old(root) { animation: vtUit 0.22s ease both; }
  ::view-transition-new(root) { animation: vtIn 0.34s var(--ease-out) both; }
}

@keyframes vtUit { to { opacity: 0; } }
@keyframes vtIn { from { opacity: 0; transform: translateY(12px); } }

@media (prefers-reduced-motion: reduce) {
  ::view-transition-group(*),
  ::view-transition-old(*),
  ::view-transition-new(*) { animation: none !important; }
}

/* ═══════════════ EDITORIALE DETAILS ═══════════════ */
/* Drop cap: gouden beginkapitaal in artikelen */
.prose .article-meta + p::first-letter,
.prose > p:first-child::first-letter {
  float: left;
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 3.6em;
  line-height: 0.78;
  padding: 0.06em 0.12em 0 0;
  color: var(--gold);
}

/* Marquee pauzeert onder de muis */
.marquee:hover .marquee__track { animation-play-state: paused; }

/* ═══════════════ DIAGRAMMEN — lijnkunst die zichzelf tekent ═══════════════ */
.diagram { margin: 2.8rem 0; }

.diagram svg {
  width: 100%;
  height: auto;
  overflow: visible;
}

.dia__path {
  fill: none;
  stroke: var(--ink);
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.dia__path--goud { stroke: var(--gold); stroke-width: 3; }
.dia__path--dik { stroke-width: 7; }
.dia__fade {
  fill: none;
  stroke: rgba(21, 18, 14, 0.28);
  stroke-width: 1.5;
  stroke-dasharray: 4 7;
}

.dia__label {
  font-family: var(--font-sans);
  font-size: 14.5px;
  fill: var(--muted);
}

.dia__leader { stroke: var(--line); stroke-width: 1; fill: none; }

.anim [data-draw] .dia__path {
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
}

.anim [data-draw].is-drawn .dia__path {
  animation: diaDraw 1s var(--ease-inout) forwards;
  animation-delay: calc(var(--di, 0) * 170ms);
}

@keyframes diaDraw { to { stroke-dashoffset: 0; } }

.anim [data-draw] .dia__label,
.anim [data-draw] .dia__leader,
.anim [data-draw] .dia__fade { opacity: 0; }

.anim [data-draw].is-drawn .dia__label,
.anim [data-draw].is-drawn .dia__leader,
.anim [data-draw].is-drawn .dia__fade {
  animation: diaFade 0.7s ease forwards;
  animation-delay: calc(1.15s + var(--di, 0) * 110ms);
}

@keyframes diaFade { to { opacity: 1; } }

.diagram figcaption {
  margin-top: 0.9rem;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.02rem;
  color: var(--muted);
}

/* ── Lijnkunst overal: sierlijnen & mini-iconen ── */
.dia__path--fijn { stroke-width: 1.6; }

.sierlijn {
  width: min(340px, 62%);
  margin: clamp(2.5rem, 6vh, 4rem) auto;
}

.sierlijn svg { width: 100%; height: auto; overflow: visible; }

.steps__icoon {
  width: 48px;
  height: 48px;
  margin-bottom: 0.9rem;
  overflow: visible;
  color: var(--ink);
}

.card__icoon {
  width: 42px;
  height: 42px;
  margin-bottom: 1rem;
  overflow: visible;
  color: var(--ink);
}

.materials__icon { overflow: visible; }

/* ═══════════════ WEBSHOP ═══════════════ */
.nav__rechts { display: flex; align-items: center; gap: 0.4rem; }

.nav__mand {
  position: relative;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: var(--ink);
}

/* mand-icoon pas tonen zodra er iets in zit (JS zet .is-leeg) */
.nav__mand.is-leeg { display: none; }

.nav__mand svg { width: 21px; height: 21px; }

.nav__mand-tel {
  position: absolute;
  top: 3px;
  right: 1px;
  min-width: 17px;
  height: 17px;
  padding: 0 4px;
  display: grid;
  place-items: center;
  background: var(--gold);
  color: #fff;
  font-size: 0.66rem;
  font-weight: 600;
  border-radius: 99px;
}

.shop__balk {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 2.2rem;
}

.shop__filters { display: flex; flex-wrap: wrap; gap: 0.55rem; }

.chip {
  padding: 0.5em 1.1em;
  border: 1px solid var(--line);
  background: transparent;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--text);
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.chip:hover { border-color: var(--ink); }
.chip.is-actief { background: var(--ink); color: var(--paper); border-color: var(--ink); }

.shop__notitie {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

.shop__notitie--blok { margin-bottom: 1.4rem; text-transform: none; letter-spacing: 0; font-weight: 400; font-size: 0.92rem; line-height: 1.6; display: flex; align-items: flex-start; }
.shop__notitie--blok .webshop__soon-dot { margin-top: 0.4em; flex: none; }

.shop__laden { color: var(--muted); font-style: italic; }

.shopgrid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 1.6rem;
}

.prodkaart {
  border: 1px solid var(--line);
  background: var(--paper);
  display: flex;
  flex-direction: column;
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s ease;
}

@media (hover: hover) {
  .prodkaart:hover { transform: translateY(-4px); box-shadow: 0 18px 40px -20px rgba(21, 18, 14, 0.25); }
}

.prodkaart__beeld {
  display: block;
  width: 100%;
  border: 0;
  padding: 0;
  background: #FBF6EC;
  cursor: pointer;
}

.prodkaart__beeld img { width: 100%; height: auto; display: block; }

.prodkaart__info { padding: 1.3rem 1.4rem 1.5rem; display: flex; flex-direction: column; flex: 1; }

.prodkaart__cat {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}

.prodkaart__naam { margin: 0.35rem 0 0.45rem; }

.prodkaart__naam button {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--ink);
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
  text-align: left;
  line-height: 1.2;
}

.prodkaart__omschrijving { font-size: 0.92rem; line-height: 1.6; color: var(--text); flex: 1; }

.prodkaart__voet {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1.1rem;
}

.prijs { font-family: var(--font-serif); font-size: 1.3rem; font-weight: 600; color: var(--ink); }

.knopklein { min-height: 42px; padding: 0.6rem 1.2rem; font-size: 0.72rem; }

/* detailpaneel */
.shopdetail { position: fixed; inset: 0; z-index: 1000; }

.shopdetail__achter {
  position: absolute;
  inset: 0;
  background: rgba(21, 18, 14, 0.45);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.shopdetail__paneel {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(480px, 94vw);
  background: var(--paper);
  border-left: 1px solid var(--line);
  transform: translateX(102%);
  transition: transform 0.4s var(--ease-out);
  overflow-y: auto;
  padding: 3.4rem 2rem 2.4rem;
}

/* ═══════════ Webshop: binnenkort geopend ═══════════ */

.soon__kader { text-align: center; max-width: 660px; margin: 0 auto; }

.soon__mark { width: 62px; height: 62px; color: var(--ink); margin-bottom: 20px; }

.soon__kicker {
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.soon__titel {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(2.3rem, 5.4vw, 3.8rem);
  line-height: 1.06;
  color: var(--ink);
  margin-bottom: 18px;
}

.soon__punt { color: var(--gold); }

.soon__tekst { max-width: 54ch; margin: 0 auto; }

.soon__iconen {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: clamp(20px, 6vw, 70px);
  margin: 46px auto 6px;
}

.soon__icoon { display: grid; justify-items: center; gap: 0; margin: 0; }

.soon__icoon svg { width: clamp(86px, 12vw, 118px); height: auto; }

/* figcaption is HTML, geen svg-tekst — kleur dus via color */
.soon__icoon .dia__label {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.02rem;
  color: var(--muted);
}

.soon__form { max-width: 580px; margin: 28px auto 0; text-align: center; }

.soon__form-kop {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: var(--ink);
  margin-bottom: 14px;
}

.soon__rij { display: flex; justify-content: center; flex-wrap: wrap; gap: 10px; }

.soon__rij .veld { flex: 1 1 240px; max-width: 330px; }

.soon__web {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.soon__ps { text-align: center; color: var(--muted); margin-top: 30px; font-size: 0.95rem; }

.soon__ps a { color: var(--gold); text-decoration-color: rgba(143, 109, 56, 0.4); }

.visueel-verborgen {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

.shopdetail.is-open .shopdetail__achter { opacity: 1; }
.shopdetail.is-open .shopdetail__paneel { transform: none; }

.shopdetail__sluit {
  position: absolute;
  top: 0.9rem;
  right: 1.1rem;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  background: var(--paper);
  font-size: 1.3rem;
  color: var(--ink);
  cursor: pointer;
  z-index: 2;
}

.shopdetail__beeld { width: 100%; height: auto; background: #FBF6EC; border: 1px solid var(--line-soft); margin-bottom: 1.2rem; }

.shopdetail__naam { font-family: var(--font-serif); font-weight: 600; font-size: 1.7rem; color: var(--ink); margin: 0.2rem 0 0.4rem; }

.shopdetail__prijs { display: block; margin-bottom: 1rem; }

.shopdetail__inhoud p { font-size: 0.97rem; line-height: 1.7; margin-bottom: 0.9rem; }

.shopdetail__details { color: var(--text); }

.shopdetail__voorraad { font-size: 0.78rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); }

.shopdetail__acties { display: flex; align-items: center; gap: 1rem; margin-top: 1.4rem; }

.stapper {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line);
}

.stapper button {
  width: 40px;
  height: 46px;
  border: 0;
  background: none;
  font-size: 1.15rem;
  color: var(--ink);
  cursor: pointer;
}

.stapper span { min-width: 34px; text-align: center; font-weight: 600; }

/* winkelmand */
.mand__grid { align-items: start; }

.mandregel {
  display: grid;
  grid-template-columns: 72px 1fr auto auto auto;
  gap: 1rem;
  align-items: center;
  padding: 1rem 0;
  border-bottom: 1px solid var(--line);
}

.mandregel img { width: 72px; height: 72px; object-fit: cover; background: #FBF6EC; border: 1px solid var(--line-soft); }

.mandregel__info { display: flex; flex-direction: column; gap: 0.15rem; }
.mandregel__info strong { font-family: var(--font-serif); font-size: 1.12rem; color: var(--ink); }
.mandregel__stuk { font-size: 0.85rem; color: var(--muted); }

.mandregel__weg {
  width: 34px;
  height: 34px;
  border: 1px solid var(--line);
  background: none;
  color: var(--muted);
  cursor: pointer;
  transition: color 0.2s, border-color 0.2s;
}

.mandregel__weg:hover { color: #8C2F2F; border-color: #8C2F2F; }

.mand__leeg { font-family: var(--font-serif); font-style: italic; font-size: 1.25rem; color: var(--muted); margin-bottom: 1.4rem; }

.mand__kader { border: 1px solid var(--line); padding: 2rem 1.8rem; background: var(--paper); }

.mand__totaalregel {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  border-top: 1px solid var(--line);
  padding-top: 1rem;
  margin: 1.2rem 0;
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.mand__totaalregel strong { font-family: var(--font-serif); font-size: 1.6rem; }

.mand__bestelknop { width: 100%; }

.mand__melding { margin-top: 0.9rem; font-size: 0.92rem; color: var(--gold); min-height: 1.4em; }

/* formuliervelden */
.lbl {
  display: block;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.4rem;
}

.veld {
  display: block;
  width: 100%;
  padding: 0.8em 1em;
  margin-bottom: 1.1rem;
  border: 1px solid var(--line);
  background: #FBF6EC;
  font-family: var(--font-sans);
  font-size: 0.96rem;
  color: var(--ink);
  resize: vertical;
}

.veld:focus { outline: 2px solid var(--gold); outline-offset: 0; }

.veld--klein { width: auto; margin-bottom: 0; padding: 0.4em 0.6em; }

/* ═══════════════ BEHEER ═══════════════ */
.beheer__login { display: grid; place-items: center; min-height: 46vh; }

.beheer__kader {
  border: 1px solid var(--line);
  background: var(--paper);
  padding: 2.4rem 2.2rem;
  max-width: 420px;
  width: 100%;
  text-align: center;
}

.beheer__kader--links { max-width: none; text-align: left; margin-top: 1.6rem; }

.beheer__kader--breed { grid-column: 1 / -1; }

.beheer__subkop { font-family: var(--font-serif); font-size: 1.15rem; color: var(--ink); margin: 1.8rem 0 0.4rem; }

.beheer__zacht { color: var(--muted); font-size: 0.92rem; }

/* aan/uit-schakelaar (webshop open) */
.schakel { display: flex; align-items: flex-start; gap: 0.9rem; cursor: pointer; margin-top: 0.4rem; }

.schakel input { position: absolute; opacity: 0; pointer-events: none; }

.schakel__knop {
  flex: 0 0 46px;
  height: 26px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--paper-soft);
  position: relative;
  transition: background 0.25s ease, border-color 0.25s ease;
  margin-top: 2px;
}

.schakel__knop::after {
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--muted);
  transition: transform 0.25s var(--ease-out), background 0.25s ease;
}

.schakel input:checked + .schakel__knop { background: var(--ink); border-color: var(--ink); }

.schakel input:checked + .schakel__knop::after { transform: translateX(20px); background: var(--gold-bright, #C89B5E); }

.schakel input:focus-visible + .schakel__knop { outline: 2px solid var(--gold); outline-offset: 2px; }

.schakel__tekst { font-size: 0.95rem; color: var(--text); }

/* wachtlijst in het beheer */
.wachtlijst__acties { margin: 0.6rem 0 0.4rem; }

.wachtlijst__lijst { list-style: none; margin: 0.4rem 0 0; padding: 0; max-height: 260px; overflow-y: auto; }

.wachtlijst__lijst li {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.45rem 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.92rem;
}

.wachtlijst__lijst li span { flex: 1; overflow-wrap: anywhere; }

.wachtlijst__lijst li em { color: var(--muted); font-style: normal; font-size: 0.85rem; }

.wachtlijst__weg {
  border: 0;
  background: none;
  color: var(--muted);
  font-size: 1.05rem;
  cursor: pointer;
  padding: 0 0.3rem;
}

.wachtlijst__weg:hover { color: #8C2F2F; }

.beheer__mark { width: 74px; margin: 0 auto 1.2rem; color: var(--ink); }

.beheer__sub { color: var(--muted); margin-bottom: 1.4rem; font-size: 0.95rem; }

.beheer__kader form { text-align: left; }

.beheer__kop { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1rem; margin-bottom: 2rem; }

.tabbalk { display: flex; flex-wrap: wrap; gap: 0.5rem; }

.tab {
  padding: 0.55em 1.2em;
  border: 1px solid var(--line);
  background: none;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  cursor: pointer;
  color: var(--text);
}

.tab.is-actief { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.tab--uit { border-color: transparent; color: var(--muted); }
.tab--uit:hover { color: #8C2F2F; }

.beheer__balk { display: flex; align-items: center; gap: 1rem; margin: 1.2rem 0; flex-wrap: wrap; }
.beheer__telling { color: var(--muted); font-size: 0.9rem; }

.btabel-wrap { overflow-x: auto; border: 1px solid var(--line); }

.btabel { width: 100%; border-collapse: collapse; font-size: 0.92rem; background: var(--paper); }

.btabel th {
  text-align: left;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 0.8rem 0.9rem;
  border-bottom: 1px solid var(--line);
}

.btabel td { padding: 0.8rem 0.9rem; border-bottom: 1px solid var(--line-soft); vertical-align: middle; }

.btabel__thumb { width: 44px; height: 44px; object-fit: cover; background: #FBF6EC; display: block; }

.rij-verborgen td { opacity: 0.45; }

.btabel__acties { white-space: nowrap; }

.knoplink {
  border: 0;
  background: none;
  color: var(--gold);
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 3px;
  padding: 0.2em 0.3em;
}

.knoplink--rood { color: #8C2F2F; }

.beheer__kolommen { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }

@media (max-width: 860px) {
  .beheer__kolommen { grid-template-columns: 1fr; }
  .mandregel { grid-template-columns: 56px 1fr auto; grid-auto-rows: auto; }
  .mandregel__som { grid-column: 2; }
}

.beheer__vink { display: flex; align-items: center; gap: 0.6rem; text-transform: none; letter-spacing: 0.04em; font-size: 0.9rem; margin-top: 1rem; }
.beheer__vink input { width: 18px; height: 18px; accent-color: var(--gold); }

.beheer__foto { display: flex; flex-direction: column; gap: 0.6rem; }
.beheer__foto img { width: 120px; height: 120px; object-fit: cover; border: 1px solid var(--line); background: #FBF6EC; }

/* ── Webshop v2: usps, zoeken, uitverkocht, korting, volgen, dashboard ── */
.usps {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.8rem;
  margin-bottom: 1.8rem;
  padding-bottom: 1.2rem;
  border-bottom: 1px solid var(--line-soft);
}

.usps li {
  position: relative;
  padding-left: 1.15rem;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--text);
}

.usps li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
}

.usps__demo { color: var(--muted); }

.shop__zoeken { display: flex; gap: 0.6rem; }

.veld--zoek { width: auto; margin-bottom: 0; min-width: 150px; }

.prodkaart__beeld { position: relative; }

.prodkaart__uitlabel,
.prodkaart__laatste {
  position: absolute;
  top: 0.8rem;
  left: 0.8rem;
  padding: 0.3em 0.8em;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.prodkaart__uitlabel { background: var(--ink); color: var(--paper); }
.prodkaart__laatste { background: var(--gold); color: #fff; }

.prodkaart--uit img { opacity: 0.45; filter: grayscale(0.4); }

.shopdetail__verwant { margin-top: 2rem; border-top: 1px solid var(--line-soft); padding-top: 1.2rem; }

.shopdetail__verwant h3 {
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.8rem;
}

.verwant {
  display: grid;
  grid-template-columns: 48px 1fr auto;
  gap: 0.9rem;
  align-items: center;
  width: 100%;
  padding: 0.55rem 0.4rem;
  border: 0;
  background: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-sans);
  transition: background 0.2s ease;
}

.verwant:hover { background: rgba(21, 18, 14, 0.04); }
.verwant img { width: 48px; height: 48px; object-fit: cover; background: #FBF6EC; }
.verwant span { font-size: 0.92rem; color: var(--ink); }
.verwant strong { font-family: var(--font-serif); color: var(--ink); }

/* gratis-verzendbalk */
.gratis { margin-bottom: 1.2rem; }

.gratis__tekst { font-size: 0.92rem; color: var(--text); margin-bottom: 0.5rem; }
.gratis__tekst--klaar { color: var(--gold); font-weight: 600; }

.gratis__spoor {
  height: 5px;
  background: rgba(21, 18, 14, 0.1);
  overflow: hidden;
}

.gratis__spoor span {
  display: block;
  height: 100%;
  background: var(--gold);
  transition: width 0.4s var(--ease-out);
}

/* checkoutvelden */
.mand__fieldset { border: 0; margin: 0 0 1.4rem; padding: 0; }
.mand__fieldset legend { margin-bottom: 0.9rem; color: var(--ink); }

.mand__adresrij { display: grid; grid-template-columns: 130px 1fr; gap: 1rem; }

.veldfout {
  font-size: 0.82rem;
  color: #8C2F2F;
  margin: -0.7rem 0 0.9rem;
  min-height: 1em;
}

.veld[aria-invalid="true"] { border-color: #8C2F2F; }

.mand__coderij { display: grid; grid-template-columns: 1fr auto; gap: 0.6rem; }
.mand__coderij .veld { margin-bottom: 0; }
.mand__code { margin: 1.4rem 0; }

.mand__totalen { margin-top: 1rem; }

.mand__rij {
  display: flex;
  justify-content: space-between;
  font-size: 0.92rem;
  padding: 0.35rem 0;
  color: var(--text);
}

/* bestelling volgen */
.volg { border: 1px solid var(--line); background: var(--paper); padding: 2rem 1.8rem; }

.volg__sub { color: var(--muted); font-size: 0.9rem; margin-bottom: 1.4rem; }

.tijdlijn { list-style: none; display: flex; margin: 1.6rem 0 2rem; }

.tijdlijn__stap { flex: 1; position: relative; text-align: center; }

.tijdlijn__stap::before {
  content: "";
  position: absolute;
  top: 8px;
  left: -50%;
  width: 100%;
  height: 2px;
  background: rgba(21, 18, 14, 0.12);
}

.tijdlijn__stap:first-child::before { display: none; }

.tijdlijn__stap.is-klaar::before { background: var(--gold); }

.tijdlijn__punt {
  position: relative;
  display: inline-block;
  width: 16px;
  height: 16px;
  transform: rotate(45deg);
  background: rgba(21, 18, 14, 0.12);
  margin-bottom: 0.6rem;
}

.tijdlijn__stap.is-klaar .tijdlijn__punt { background: var(--gold); }

.tijdlijn__naam { display: block; font-size: 0.78rem; font-weight: 600; letter-spacing: 0.08em; color: var(--muted); }
.tijdlijn__stap.is-klaar .tijdlijn__naam { color: var(--ink); }

.volg__items p { display: flex; justify-content: space-between; gap: 1rem; font-size: 0.94rem; padding: 0.3rem 0; }
.volg__rij { border-top: 1px solid var(--line-soft); }
.volg__rij--totaal { font-weight: 600; font-size: 1.05rem; }
.volg__geannuleerd { color: #8C2F2F; }

/* beheer-dashboard */
.dash { display: grid; grid-template-columns: repeat(auto-fit, minmax(170px, 1fr)); gap: 1rem; }

.dash__tegel {
  border: 1px solid var(--line);
  background: var(--paper);
  padding: 1.4rem 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.dash__tegel strong { font-family: var(--font-serif); font-size: 1.9rem; color: var(--ink); }
.dash__tegel span { font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); }
.dash__tegel--let strong { color: #8C2F2F; }

.voorraad-laag { color: #8C2F2F; font-weight: 600; }

.beheer__coderij { display: grid; grid-template-columns: 1fr 140px auto; gap: 1rem; align-items: end; }
.beheer__coderij .veld { margin-bottom: 0; }

.beheer__kolommen--boven { align-items: start; }

@media (max-width: 700px) {
  .shop__zoeken { width: 100%; }
  .veld--zoek { flex: 1; min-width: 0; }
  .beheer__coderij { grid-template-columns: 1fr; }
  .mand__adresrij { grid-template-columns: 1fr; }
}

/* ── Webshop v3: bezorgkeuze, autofill, toast, aanrader, bekeken ── */
.bezorgkeuze { display: grid; grid-template-columns: 1fr 1fr; gap: 0.7rem; }

.bezorgoptie {
  display: block;
  border: 1px solid var(--line);
  padding: 0.9rem 1rem;
  cursor: pointer;
  transition: border-color 0.25s ease, background 0.25s ease;
}

.bezorgoptie:has(input:checked) { border-color: var(--ink); background: rgba(21, 18, 14, 0.05); }

.bezorgoptie input { position: absolute; opacity: 0; }

.bezorgoptie span { display: flex; flex-direction: column; gap: 0.1rem; }
.bezorgoptie strong { font-size: 0.92rem; color: var(--ink); }
.bezorgoptie small { font-size: 0.78rem; color: var(--muted); }

.mand__adresrij--drie { display: grid; grid-template-columns: 120px 110px 1fr; gap: 1rem; }

.adres-status { font-size: 0.85rem; color: var(--gold); min-height: 1.2em; margin: -0.4rem 0 0.9rem; }

.mand__rij--btw { font-size: 0.8rem; color: var(--muted); padding-top: 0; }

.toast {
  position: fixed;
  left: 50%;
  bottom: 1.6rem;
  transform: translate(-50%, 140%);
  background: var(--ink);
  color: var(--paper-on-dark);
  padding: 0.85rem 1.4rem;
  font-size: 0.9rem;
  z-index: 1600;
  transition: transform 0.4s var(--ease-out);
  box-shadow: 0 12px 32px -12px rgba(21, 18, 14, 0.5);
}

.toast a { color: var(--gold-bright); font-weight: 600; }

.toast.is-zichtbaar { transform: translate(-50%, 0); }

.prodkaart__aanrader {
  position: absolute;
  top: 0.8rem;
  right: 0.8rem;
  padding: 0.3em 0.8em;
  background: var(--paper);
  border: 1px solid var(--gold);
  color: var(--gold);
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.bekeken { margin-top: 3rem; border-top: 1px solid var(--line-soft); padding-top: 1.6rem; }

.bekeken__kop {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.8rem;
}

.bekeken__rij { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 0.4rem 1.4rem; }

.veld--voorraad { width: 74px; display: inline-block; }
.veld--let { border-color: #8C2F2F; color: #8C2F2F; font-weight: 600; }
.btabel__voorraadcel { white-space: nowrap; }
.ster { color: var(--gold); }
.bezorg-afhalen { color: var(--gold); font-weight: 600; }

@media (max-width: 700px) {
  .bezorgkeuze { grid-template-columns: 1fr; }
  .mand__adresrij--drie { grid-template-columns: 1fr 1fr; }
}

/* ═══════════════ FOTO'S — beeld in artikelen ═══════════════
   <figure class="foto"> met een zoom-link rond de afbeelding. Varianten:
   --zij (zweeft rechts naast de tekst), --staand (smallere zwever voor
   staande beelden), --klein (gecentreerd, voor kleine bronbeelden).
   De link opent zonder JS gewoon de afbeelding; met JS de lichtbak. */
.foto { margin: 2.6rem 0; }

.foto__zoom {
  position: relative;
  display: block;
  overflow: hidden;
  background: var(--paper-soft);
  cursor: zoom-in;
}

.foto img {
  display: block;
  width: 100%;
  height: auto;
}

/* Beeld zet zich bij binnenkomst: transform-only, net als .reveal */
.anim .foto.reveal img,
.anim .beeld-in img {
  transform: scale(1.06);
  transition: transform 1.8s var(--ease-out) var(--rd, 0s);
}

.anim .foto.reveal.is-in img,
.anim .beeld-in.is-in img { transform: none; }

/* Vergrootglas-knopje rechtsonder, zichtbaar bij hover/focus */
.foto__zoom::after {
  content: "";
  position: absolute;
  right: 12px;
  bottom: 12px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(247, 240, 229, 0.92) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2315120E' stroke-width='1.6' stroke-linecap='round'%3E%3Ccircle cx='10.5' cy='10.5' r='6'/%3E%3Cpath d='M15 15l5 5M10.5 8v5M8 10.5h5'/%3E%3C/svg%3E") center / 17px no-repeat;
  opacity: 0;
  transform: scale(0.85);
  transition: opacity 0.3s ease, transform 0.3s var(--ease-out);
}

.foto__zoom:hover::after,
.foto__zoom:focus-visible::after { opacity: 1; transform: none; }

.foto figcaption {
  margin-top: 0.85rem;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.02rem;
  line-height: 1.55;
  color: var(--muted);
}

.foto__bron {
  display: block;
  margin-top: 0.35rem;
  font-family: var(--font-sans);
  font-style: normal;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  opacity: 0.75;
}

.foto--klein { max-width: 460px; margin-inline: auto; }

@media (min-width: 761px) {
  .foto--zij {
    float: right;
    width: 42%;
    margin: 0.5rem 0 1.6rem 2.4rem;
  }
  .foto--staand { width: 36%; }
}

/* Zwevende beelden mogen naast koppen doorlopen, maar niet in
   diagrammen, brede beelden of de gerelateerde links */
.prose .diagram,
.prose .foto:not(.foto--zij),
.prose .foto-duo,
.prose .related { clear: both; }

.foto-duo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.3rem;
  margin: 2.6rem 0;
  align-items: start;
}

.prose .foto-duo .foto { margin: 0; }

@media (max-width: 600px) {
  .foto-duo { grid-template-columns: 1fr; gap: 2rem; }
}

/* ── Lichtbak ── */
.lichtbak {
  position: fixed;
  inset: 0;
  z-index: 1450; /* boven nav en korrel, onder de sitecursor */
  display: grid;
  place-items: center;
  padding: clamp(3.5rem, 6vw, 4.5rem) clamp(1rem, 4vw, 3rem) clamp(1.2rem, 3vw, 2rem);
  background: rgba(21, 18, 14, 0.95);
  color: var(--paper-on-dark);
  cursor: zoom-out;
  opacity: 0;
  transition: opacity 0.25s ease;
}

.lichtbak[hidden] { display: none; }
.lichtbak.is-open { opacity: 1; }

.lichtbak__fig {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  max-width: 100%;
  max-height: 100%;
}

.lichtbak__img {
  display: block;
  width: auto;
  height: auto;
  max-width: min(1400px, 100%);
  max-height: calc(100vh - 11rem);
  max-height: calc(100dvh - 11rem);
  object-fit: contain;
  cursor: default;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
  transform: scale(0.97);
  transition: transform 0.4s var(--ease-out);
}

.lichtbak.is-open .lichtbak__img { transform: none; }

.lichtbak__cap {
  max-width: 68ch;
  text-align: center;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.05rem;
  line-height: 1.5;
  color: var(--muted-on-dark);
}

.lichtbak__bron {
  display: block;
  margin-top: 0.3rem;
  font-family: var(--font-sans);
  font-style: normal;
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.lichtbak__sluit {
  position: absolute;
  top: clamp(0.8rem, 2vw, 1.4rem);
  right: clamp(0.8rem, 2vw, 1.4rem);
  width: 46px;
  height: 46px;
  border: 1px solid var(--line-on-dark);
  border-radius: 50%;
  background: transparent;
  color: var(--paper-on-dark);
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}

.lichtbak__sluit::before,
.lichtbak__sluit::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 18px;
  height: 1.5px;
  background: currentColor;
  transform: translate(-50%, -50%) rotate(45deg);
}

.lichtbak__sluit::after { transform: translate(-50%, -50%) rotate(-45deg); }
.lichtbak__sluit:hover { background: var(--paper); color: var(--ink); }

/* ── Fotoband (home & workshops) ── */
.fotoband {
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr;
  gap: clamp(0.8rem, 1.6vw, 1.4rem);
  max-width: var(--content-w);
  margin: 0 auto clamp(3rem, 7vh, 5rem);
  align-items: start;
}

.fotoband--los { margin: clamp(2.8rem, 6vh, 4rem) auto 0; }

.fotoband__item { margin: 0; }
.fotoband__item:nth-child(2) { margin-top: clamp(1.5rem, 4vw, 3.5rem); }

.fotoband__beeld {
  display: block;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--paper-soft);
}

.fotoband__beeld img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.fotoband figcaption {
  margin-top: 0.7rem;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1rem;
  color: var(--muted);
}

@media (max-width: 760px) {
  .fotoband { grid-template-columns: 1fr 1fr; }
  .fotoband__item:first-child { grid-column: 1 / -1; }
  .fotoband__item:nth-child(2) { margin-top: 0; }
}

/* ═══════════════ MEESTERWERKEN (home) ═══════════════ */
.meesters {
  --gold: var(--gold-bright);
  background: var(--ink);
  color: var(--paper-on-dark);
  overflow: hidden;
}

.meesters .section__index { color: var(--gold); }
.meesters .section__label { color: var(--paper-on-dark); }
.meesters .section__head::after { background: var(--line-on-dark); }

.meesters__intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.5rem, 5vw, 5rem);
  align-items: end;
  max-width: var(--content-w);
  margin: 0 auto clamp(2.8rem, 6vh, 4.5rem);
}

.meesters .h2 { color: var(--paper-on-dark); margin-bottom: 0; }
.meesters .h2 em { color: var(--gold-bright); }
.meesters__intro p { font-size: 1.04rem; color: var(--muted-on-dark); }

.meesters__rij {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(1rem, 2vw, 1.8rem);
  max-width: var(--content-w);
  margin: 0 auto;
}

.meester a { display: block; }

.meester__lijst {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 4 / 5;
  padding: clamp(0.9rem, 1.8vw, 1.5rem);
  background: var(--ink-2);
  border: 1px solid var(--line-on-dark);
  transition: border-color 0.4s ease;
}

.meester__lijst img {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.45);
  transition: transform 0.7s var(--ease-out);
}

.meester a:hover .meester__lijst { border-color: rgba(200, 155, 94, 0.55); }
.meester a:hover .meester__lijst img { transform: translateY(-4px) scale(1.015); }

.meester__naam {
  display: block;
  margin-top: 1.1rem;
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.2;
  color: var(--paper-on-dark);
}

.meester__jaren {
  display: block;
  margin-top: 0.25rem;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}

.meester__werk {
  display: block;
  margin-top: 0.45rem;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1rem;
  line-height: 1.45;
  color: var(--muted-on-dark);
}

.meesters__cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 1.6rem;
  max-width: var(--content-w);
  margin: clamp(2.8rem, 6vh, 4rem) auto 0;
}

.meesters__bron {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted-on-dark);
}

@media (max-width: 1000px) {
  .meesters__rij { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 760px) {
  .meesters__intro { grid-template-columns: 1fr; }
}

/* ── Meesters-artikel ── */
@media (max-width: 600px) {
  .diagram--keten .dia__label { font-size: 21px; }
}

.meester-meta {
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin: -0.4rem 0 1.1rem;
}

@media (prefers-reduced-motion: reduce) {
  .anim .foto.reveal img,
  .anim .beeld-in img { transform: none; }

  /* De diagramregels staan ná het algemene reduced-motion-blok hierboven
     en wonnen daardoor: lijnkunst bleef onzichtbaar bij "animaties uit".
     Hier (als laatste) de eindstand afdwingen. */
  .anim [data-draw] .dia__path,
  .anim [data-draw].is-drawn .dia__path {
    stroke-dasharray: none;
    stroke-dashoffset: 0;
    animation: none;
  }
  .anim [data-draw] .dia__label,
  .anim [data-draw] .dia__leader,
  .anim [data-draw] .dia__fade,
  .anim [data-draw].is-drawn .dia__label,
  .anim [data-draw].is-drawn .dia__leader,
  .anim [data-draw].is-drawn .dia__fade { opacity: 1; animation: none; }
}
