/* ==========================================================================
   Weddingplanner — editorial ledger
   Klassiek zakelijk, strikt zwart/wit. Grote seriefletter voor alles wat
   spreekt, gespatieerde schreefloze voor alles wat werkt, haarlijnen als enige
   decoratie. Fotografie strikt monochroom.
   ========================================================================== */

:root {
  /* Warm papier met twee klassieke accenten: bordeaux en oud messing. */
  --ink: #17120f;
  --ink-2: #342c25;
  --ink-3: #564b41;
  --muted: #7b6f63;
  --faint: #a89b8c;
  --rule: #ded4c4;
  --rule-2: #efe8db;
  --paper: #ffffff;
  --paper-2: #f8f4ed;
  --paper-3: #f0e9dd;
  --on-dark: #f6f1e8;

  --wine: #6e2436;
  --wine-2: #8b3a4b;
  --brass: #9a763c;
  --brass-2: #c9a86a;
  --accent: var(--wine);        /* draagt de knoppen en actieve staten */
  --accent-ink: #ffffff;        /* leesbare tekst óp het accent */
  --accent-soft: var(--brass);  /* nummers, kleine markeringen */

  --serif: 'Cormorant Garamond', 'Iowan Old Style', Georgia, 'Times New Roman', serif;
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;

  --wrap: 1280px;
  --pad: clamp(20px, 5vw, 64px);
  --gap: clamp(72px, 11vh, 168px);
  --ease: cubic-bezier(.22, .61, .36, 1);
  --ease-out: cubic-bezier(.16, 1, .3, 1);
}

/* Donkere secties draaien de rollen om; alle componenten erven mee. */
.invert {
  --ink: #fdfaf5;
  --ink-2: #ece5da;
  --ink-3: #cdc3b5;
  --muted: #9e9285;
  --faint: #7e7365;
  --rule: #382b2c;
  --rule-2: #241c1d;
  --paper: #17100f;
  --paper-2: #1d1514;
  --paper-3: #241b1a;
  /* Bordeaux verdwijnt op donker — daar draagt messing het accent. */
  --accent: #c9a86a;
  --accent-ink: #17100f;
  --accent-soft: #c9a86a;
  background: var(--paper);
  color: var(--ink);
}

*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--paper-2);
  color: var(--ink-2);
  font-family: var(--sans);
  font-size: 15.5px;
  line-height: 1.75;
  font-weight: 400;
  letter-spacing: .002em;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; }
::selection { background: var(--wine); color: #fff; }

/* Fijne papierkorrel over de hele pagina — geeft het zwart-wit diepte. */
body::after {
  content: '';
  position: fixed; inset: 0; z-index: 90; pointer-events: none;
  opacity: .5; mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)' opacity='.22'/%3E%3C/svg%3E");
}

.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: var(--pad); }
.wrap--narrow { max-width: 940px; }

/* --- Typografie ----------------------------------------------------------- */
h1, h2, h3, h4 { font-family: var(--serif); font-weight: 300; margin: 0; color: var(--ink); }

.display {
  font-size: clamp(42px, 7.2vw, 104px);
  line-height: .98;
  letter-spacing: -.018em;
}
.display em { font-style: italic; font-weight: 300; }

h2, .h2 {
  font-size: clamp(32px, 4.6vw, 66px);
  line-height: 1.04;
  letter-spacing: -.014em;
}
h3 { font-size: clamp(21px, 2vw, 27px); line-height: 1.24; letter-spacing: -.006em; }

p { margin: 0 0 1.15em; }
p:last-child { margin-bottom: 0; }

.kicker {
  font-family: var(--sans);
  font-size: 10px; font-weight: 500;
  letter-spacing: .34em; text-transform: uppercase;
  color: var(--accent-soft);
  display: flex; align-items: center; flex-wrap: wrap; gap: 8px 14px;
  margin: 0 0 26px;
}
.kicker::after { content: ''; flex: 1; height: 1px; background: var(--accent-soft); opacity: .5; max-width: 90px; }
.kicker--plain::after { display: none; }

.lede {
  font-family: var(--serif);
  font-size: clamp(20px, 2.1vw, 27px);
  line-height: 1.45; font-weight: 300; letter-spacing: -.004em;
  color: var(--ink-2);
  max-width: 30ch;
}
.body-copy { max-width: 62ch; color: var(--ink-3); }
.muted { color: var(--muted); }

/* Initiaal voor de eerste alinea van een essay-blok. */
.dropcap::first-letter {
  font-family: var(--serif); font-weight: 300;
  float: left; font-size: 4.1em; line-height: .8;
  padding: .04em .06em 0 0; color: var(--wine);
}

/* --- Knoppen -------------------------------------------------------------- */
.btn {
  --btn-bg: var(--accent); --btn-fg: var(--accent-ink); --btn-bd: var(--accent);
  position: relative; overflow: hidden;
  display: inline-flex; align-items: center; justify-content: center; gap: 12px;
  font-family: var(--sans); font-size: 10.5px; font-weight: 600;
  letter-spacing: .24em; text-transform: uppercase;
  padding: 18px 34px; border: 1px solid var(--btn-bd);
  background: var(--btn-bg); color: var(--btn-fg);
  text-decoration: none; cursor: pointer; flex: 0 0 auto; white-space: nowrap;
  transition: color .45s var(--ease), border-color .45s var(--ease);
}
/* De vulling schuift van onder naar boven weg i.p.v. hard om te klappen. */
.btn::before {
  content: ''; position: absolute; inset: 0; background: var(--btn-fg);
  transform: scaleY(0); transform-origin: bottom; z-index: 0;
  transition: transform .45s var(--ease-out);
}
.btn > * , .btn { position: relative; }
.btn span, .btn svg { position: relative; z-index: 1; }
.btn svg { transition: transform .45s var(--ease-out); }
.btn:hover svg { transform: translateX(5px); }
.btn:hover::before { transform: scaleY(1); }
.btn:hover { color: var(--btn-bg); }
.btn--ghost { --btn-bg: transparent; --btn-fg: var(--ink); --btn-bd: var(--ink); }
.btn--ghost::before { background: var(--accent); }
.btn--ghost:hover { color: var(--accent-ink); border-color: var(--accent); }
.btn--ghost:hover { color: var(--paper); }
.btn--light { --btn-bg: #fff; --btn-fg: #17120f; --btn-bd: #fff; }
.btn--light::before { background: var(--wine); }
.btn--light:hover { color: #fff; }
.btn--outline-light { --btn-bg: transparent; --btn-fg: #fff; --btn-bd: rgba(255,255,255,.55); }
.btn--outline-light::before { background: #fff; }
.btn--outline-light:hover { color: #17120f; border-color: #fff; }
.btn--small { padding: 12px 22px; font-size: 9.5px; letter-spacing: .2em; }
.btn[disabled] { opacity: .34; pointer-events: none; }

.link {
  text-decoration: none; position: relative; padding-bottom: 3px;
  background-image: linear-gradient(currentColor, currentColor);
  background-size: 0% 1px; background-position: 0 100%; background-repeat: no-repeat;
  transition: background-size .45s var(--ease-out);
  border-bottom: 1px solid var(--rule);
}
.link:hover { background-size: 100% 1px; color: var(--wine); }

/* --- Wapen / monogram ----------------------------------------------------- */
.crest { display: block; color: currentColor; }

/* --- Header --------------------------------------------------------------- */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 80;
  color: #fff;
  transition: background .5s var(--ease), color .5s var(--ease), border-color .5s var(--ease), padding .5s var(--ease);
  border-bottom: 1px solid rgba(255,255,255,.16);
}
.site-header__inner { display: flex; align-items: center; justify-content: space-between; gap: 28px; height: 88px; }
.site-header.is-stuck {
  background: rgba(255,255,255,.97);
  backdrop-filter: saturate(160%) blur(10px);
  color: var(--ink); border-bottom-color: var(--rule);
}
.site-header.is-stuck .site-header__inner { height: 72px; }
/* Bij een open mobiel menu is de balk altijd wit — anders valt het wit-op-wit weg. */
.site-header.is-open { background: var(--paper); color: var(--ink); border-bottom-color: var(--rule); }
.site-header.is-open .nav .btn { --btn-bg: var(--wine); --btn-fg: #fff; --btn-bd: var(--wine); }
/* Op subpagina's staat de balk vanaf de eerste pixel op wit. */
.site-header--solid { position: sticky; color: var(--ink); background: rgba(255,255,255,.97); border-bottom-color: var(--rule); backdrop-filter: saturate(160%) blur(10px); }

.wordmark { display: flex; align-items: center; gap: 14px; text-decoration: none; color: inherit; position: relative; z-index: 2; }
.wordmark__crest { width: 30px; height: 30px; flex: none; }
.wordmark__text { display: flex; flex-direction: column; line-height: 1; }
.wordmark__name { font-family: var(--serif); font-size: 24px; letter-spacing: .06em; }
.wordmark__sub { font-size: 8.5px; letter-spacing: .38em; text-transform: uppercase; opacity: .68; margin-top: 6px; }

.nav { display: flex; align-items: center; gap: 30px; }
.nav a:not(.btn) {
  position: relative; display: inline-flex; align-items: baseline; gap: 7px;
  font-size: 10.5px; letter-spacing: .22em; text-transform: uppercase;
  text-decoration: none; color: inherit; opacity: .82;
  padding-bottom: 6px;
  transition: opacity .3s var(--ease), color .3s var(--ease);
}
.nav a:not(.btn) i {
  font-style: normal; font-family: var(--serif); font-size: 11px;
  letter-spacing: .06em; color: var(--accent-soft); opacity: .85;
  transition: transform .4s var(--ease-out);
}
/* Onderstreping groeit vanaf links; actieve sectie houdt hem vast. */
.nav a:not(.btn)::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: 0; height: 1px;
  background: currentColor; transform: scaleX(0); transform-origin: left;
  transition: transform .45s var(--ease-out), background-color .3s var(--ease);
}
.nav a:not(.btn):hover { opacity: 1; }
.nav a:not(.btn):hover::after { transform: scaleX(1); }
.nav a:not(.btn):hover i { transform: translateY(-2px); }
.nav a.is-current { opacity: 1; }
.nav a.is-current::after { transform: scaleX(1); background: var(--wine); }
.site-header:not(.is-stuck):not(.site-header--solid) .nav a.is-current::after { background: var(--brass-2); }
.nav__foot { display: none; }

/* Leesvoortgang als haarlijn bovenaan de balk. */
.site-header__progress { position: absolute; top: 0; left: 0; right: 0; height: 2px; background: transparent; }
.site-header__progress i { display: block; height: 100%; width: 0; background: linear-gradient(90deg, var(--wine), var(--brass-2)); transition: width .12s linear; }
/* Geen currentColor hier: dat lost op tegen de eigen tekstkleur en maakt het label onzichtbaar. */
.nav .btn { margin-left: 4px; }
.site-header:not(.is-stuck):not(.site-header--solid) .nav .btn {
  --btn-bg: transparent; --btn-fg: #fff; --btn-bd: rgba(255,255,255,.55);
}
.site-header:not(.is-stuck):not(.site-header--solid) .nav .btn::before { background: #fff; }
.site-header:not(.is-stuck):not(.site-header--solid) .nav .btn:hover { color: #17120f; }

.nav-toggle { display: none; background: none; border: 1px solid currentColor; padding: 11px 13px; cursor: pointer; color: inherit; }
.nav-toggle span { display: block; width: 18px; height: 1px; background: currentColor; }
.nav-toggle span + span { margin-top: 5px; }

/* --- Hero ----------------------------------------------------------------- */
.hero { position: relative; min-height: 100svh; display: flex; align-items: flex-end; overflow: hidden; background: #17100f; }
.hero__media { position: absolute; inset: 0; }
/* Zonder JS staat het beeld er gewoon; de inzoom start pas als het script draait.
   --hero-shift wordt tijdens het scrollen gezet (parallax) en telt hier mee. */
.hero__media img {
  width: 100%; height: 100%; object-fit: cover;
  filter: saturate(.92) contrast(1.04) brightness(.8);
  transform: translateY(var(--hero-shift, 0px));
  transition: transform 2.4s var(--ease-out), opacity 1.6s var(--ease);
  will-change: transform;
}
.js-reveal .hero__media img { transform: translateY(var(--hero-shift, 0px)) scale(1.08); opacity: 0; }
.js-reveal .hero.is-ready .hero__media img { transform: translateY(var(--hero-shift, 0px)) scale(1.02); opacity: 1; }
/* Na de intro geen overgang meer, anders loopt de parallax achter. */
.hero.is-settled .hero__media img { transition: opacity 1.6s var(--ease); }
.hero__scrim {
  position: absolute; inset: 0;
  background:
    linear-gradient(to top, rgba(23,16,15,.82) 0%, rgba(23,16,15,.3) 46%, rgba(23,16,15,.46) 100%);
}
.hero__frame { position: absolute; inset: clamp(14px, 2vw, 26px); border: 1px solid rgba(255,255,255,.22); pointer-events: none; }
.hero__inner { position: relative; z-index: 2; width: 100%; color: #fff; padding: clamp(112px, 15vh, 148px) 0 clamp(40px, 6vh, 72px); }
.hero .kicker { color: rgba(255,255,255,.72); }
.hero .kicker::after { background: rgba(255,255,255,.4); }
.hero__grid { display: grid; grid-template-columns: minmax(0, 1.6fr) minmax(0, .85fr); gap: clamp(28px, 5vw, 80px); align-items: end; }
.hero h1 { color: #fff; }
.hero__lede { font-family: var(--serif); font-size: clamp(18px, 1.7vw, 23px); line-height: 1.5; font-weight: 300; color: rgba(255,255,255,.9); max-width: 34ch; margin-top: 24px; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.hero__meta { border-top: 1px solid rgba(255,255,255,.28); padding-top: 22px; display: grid; gap: 16px; margin: 0; }
.hero__meta div { display: grid; gap: 4px; }
.hero__meta dt { font-size: 9.5px; letter-spacing: .28em; text-transform: uppercase; color: rgba(255,255,255,.55); }
.hero__meta dd { margin: 0; font-family: var(--serif); font-size: 19px; color: #fff; }
.hero__cue { position: absolute; left: 50%; bottom: 26px; z-index: 3; width: 1px; height: 56px; background: rgba(255,255,255,.35); overflow: hidden; }
.hero__cue i { position: absolute; inset: 0; background: #fff; transform: translateY(-100%); animation: cue 2.6s var(--ease) infinite; }
@keyframes cue { 0% { transform: translateY(-100%); } 60% { transform: translateY(100%); } 100% { transform: translateY(100%); } }

/* --- Loper ---------------------------------------------------------------- */
.marquee { border-block: 1px solid var(--rule); background: var(--paper); overflow: hidden; }
.marquee__track { display: flex; width: max-content; animation: ticker 46s linear infinite; }
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__row { display: flex; align-items: center; padding: 24px 0; }
.marquee span { font-size: 10px; letter-spacing: .28em; text-transform: uppercase; color: var(--muted); padding: 0 34px; white-space: nowrap; display: inline-flex; align-items: center; gap: 34px; }
.marquee span::after { content: '◆'; font-size: 7px; color: var(--accent-soft); letter-spacing: 0; }
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* --- Secties -------------------------------------------------------------- */
.section { padding: var(--gap) 0; position: relative; }
.section--rule { border-top: 1px solid var(--rule); }
.section--tint { background: var(--paper-3); }

.section__head { position: relative; display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, .8fr); gap: clamp(24px, 5vw, 80px); align-items: end; margin-bottom: clamp(44px, 6vw, 88px); padding-bottom: 34px; }
.section__head::after { content: ''; position: absolute; left: 0; right: 0; bottom: 0; height: 1px; background: var(--rule); }
.section__head::before { content: ''; position: absolute; left: 0; bottom: 0; height: 1px; width: 0; background: var(--wine); z-index: 1; transition: width 1.2s var(--ease-out) .2s; }
.js-reveal .section__head.is-in::before, body:not(.js-reveal) .section__head::before { width: 120px; }
.section__head--single { grid-template-columns: 1fr; max-width: 900px; }
.section__head h2 { max-width: 16ch; }

/* Romeins nummer in de kantlijn, meeschuivend. */
.rail { position: absolute; left: max(16px, calc((100vw - var(--wrap)) / 2 + 16px)); top: var(--gap); font-family: var(--serif); font-size: 13px; letter-spacing: .3em; color: var(--faint); writing-mode: vertical-rl; }
@media (max-width: 1420px) { .rail { display: none; } }

/* --- Figuren -------------------------------------------------------------- */
figure { margin: 0; }
.figure { position: relative; overflow: hidden; background: var(--paper-3); }
.figure img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.95) contrast(1.02); transform: scale(1.05); transition: transform 1.4s var(--ease-out); }
.figure.is-in img { transform: scale(1); }
.figure--tall { aspect-ratio: 3 / 4; }
.figure--wide { aspect-ratio: 16 / 9; }
.figure--square { aspect-ratio: 1 / 1; }
.figcaption { margin-top: 14px; font-size: 10px; letter-spacing: .22em; text-transform: uppercase; color: var(--faint); }

/* --- Diensten ------------------------------------------------------------- */
.services { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: clamp(28px, 3vw, 46px) clamp(24px, 2.6vw, 40px); }
.service { display: flex; flex-direction: column; transition: transform .5s var(--ease-out); }
.service:hover { transform: translateY(-6px); }
.service__media { position: relative; overflow: hidden; aspect-ratio: 4 / 3; background: var(--paper-3); margin-bottom: 26px; }
.service__media img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.95) contrast(1.02); transition: transform 1.2s var(--ease-out); }
.service:hover .service__media img { transform: scale(1.06); }
.service__index {
  position: absolute; left: 0; bottom: 0; z-index: 2;
  background: var(--paper); color: var(--wine);
  font-family: var(--serif); font-size: 15px; letter-spacing: .2em; padding: 9px 16px 7px;
  transition: background .45s var(--ease), color .45s var(--ease), padding .45s var(--ease-out);
}
.service:hover .service__index { background: var(--wine); color: #fff; padding-right: 22px; }
.service h3 { margin-bottom: 8px; }
.service__tagline { font-size: 10px; letter-spacing: .22em; text-transform: uppercase; color: var(--muted); }
.service__desc { margin-top: 16px; color: var(--ink-3); font-size: 15px; }
.service__foot { margin-top: auto; padding-top: 22px; display: flex; align-items: center; justify-content: space-between; gap: 16px; border-top: 1px solid var(--rule); transition: border-color .45s var(--ease); }
.service:hover .service__foot { border-color: var(--wine); }
.service__price { font-family: var(--serif); font-size: 22px; color: var(--wine); }

/* --- Werkwijze (essay + beeld) -------------------------------------------- */
.method { display: grid; grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr); gap: clamp(32px, 6vw, 96px); align-items: start; }
.method__media { position: sticky; top: 120px; }
.steps { display: grid; }
.step { position: relative; display: grid; grid-template-columns: 78px 1fr; gap: clamp(16px, 2vw, 34px); padding: 34px 0; border-top: 1px solid var(--rule); }
.step::before { content: ''; position: absolute; top: -1px; left: 0; right: 0; height: 1px; background: var(--wine); transform: scaleX(0); transform-origin: left; transition: transform .7s var(--ease-out); }
.step:hover::before { transform: scaleX(1); }
.step:hover .step__no { color: var(--wine); }
.step__no { transition: color .4s var(--ease); }
.step:last-child { border-bottom: 1px solid var(--rule); }
.step__no { font-family: var(--serif); font-size: 30px; line-height: 1; color: var(--accent-soft); }
.step h3 { margin-bottom: 10px; }
.step p { color: var(--ink-3); font-size: 15px; max-width: 52ch; }

/* --- Statement-band ------------------------------------------------------- */
.statement { position: relative; min-height: 78svh; display: grid; place-items: center; overflow: hidden; background: #17100f; text-align: center; }
.statement__media { position: absolute; inset: 0; }
.statement__media img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.9) contrast(1.03) brightness(.66); animation: kenburns 26s ease-in-out infinite alternate; }
@keyframes kenburns { from { transform: scale(1); } to { transform: scale(1.09); } }
.statement__media::after { content: ''; position: absolute; inset: 0; background: linear-gradient(rgba(23,16,15,.36), rgba(23,16,15,.52)); }
.statement__inner { position: relative; z-index: 2; color: #fff; padding: clamp(60px, 10vh, 130px) var(--pad); max-width: 1000px; }
.statement blockquote { margin: 0; font-family: var(--serif); font-weight: 300; font-style: italic; font-size: clamp(28px, 4.4vw, 60px); line-height: 1.16; letter-spacing: -.012em; }
.statement figcaption { margin-top: 32px; font-size: 10px; letter-spacing: .3em; text-transform: uppercase; color: rgba(255,255,255,.8); }

/* --- Uitgangspunten ------------------------------------------------------- */
.principles { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: clamp(28px, 4vw, 64px); }
.principle { border-top: 1px solid var(--wine); padding-top: 26px; }
.principle__no { font-family: var(--serif); font-size: 13px; letter-spacing: .24em; color: var(--accent-soft); }
.principle blockquote { margin: 14px 0 0; font-family: var(--serif); font-style: italic; font-weight: 300; font-size: clamp(20px, 1.9vw, 25px); line-height: 1.35; color: var(--ink); }
.principle figcaption { margin-top: 16px; font-size: 10px; letter-spacing: .22em; text-transform: uppercase; color: var(--muted); }

/* --- Formulieren ---------------------------------------------------------- */
.field { display: block; margin-bottom: 24px; }
.field > span, .field-label {
  display: block; font-size: 9.5px; letter-spacing: .26em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 10px;
}
.field input, .field select, .field textarea {
  width: 100%; font-family: var(--sans); font-size: 15px; color: var(--ink);
  background: transparent; border: 0; border-bottom: 1px solid var(--rule);
  padding: 11px 0; border-radius: 0;
  transition: border-color .4s var(--ease);
}
.field textarea { min-height: 104px; resize: vertical; line-height: 1.65; }
.field input:focus, .field select:focus, .field textarea:focus { outline: 0; border-bottom-color: var(--ink); }
.field input::placeholder, .field textarea::placeholder { color: var(--faint); }
.field select {
  appearance: none; color: var(--ink);
  background-image: linear-gradient(45deg, transparent 50%, currentColor 50%), linear-gradient(135deg, currentColor 50%, transparent 50%);
  background-position: right 8px center, right 3px center; background-size: 5px 5px, 5px 5px; background-repeat: no-repeat;
  padding-right: 24px;
}
.invert .field select option { color: #111; }
.field-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 0 30px; }
.field-hint { font-size: 12px; color: var(--faint); margin-top: 8px; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form-note { font-size: 12.5px; color: var(--muted); margin-top: 20px; max-width: 60ch; }
.alert { border: 1px solid var(--ink); padding: 16px 20px; font-size: 14px; margin-bottom: 24px; color: var(--ink); }
.alert--soft { border-color: var(--rule); background: var(--paper-2); color: var(--ink-3); }

/* --- Panelen -------------------------------------------------------------- */
.panel { border: 1px solid var(--rule); background: var(--paper); padding: clamp(24px, 3vw, 40px); transition: border-color .4s var(--ease), box-shadow .4s var(--ease); }
.panel:focus-within { border-color: var(--wine); box-shadow: 0 18px 40px rgba(110,36,54,.07); }
.panel--flush { padding: 0; border: 0; background: transparent; }
.panel__title { font-size: 9.5px; letter-spacing: .28em; text-transform: uppercase; color: var(--muted); margin-bottom: 22px; display: flex; align-items: center; gap: 12px; }
.panel__title::after { content: ''; flex: 1; height: 1px; background: var(--rule); }

/* --- Agenda --------------------------------------------------------------- */
.booking { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: clamp(28px, 4vw, 64px); align-items: start; }
.cal__head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; }
.cal__month { font-family: var(--serif); font-size: 24px; letter-spacing: .01em; }
.cal__nav { display: flex; gap: 8px; }
.cal__nav button {
  width: 36px; height: 36px; border: 1px solid var(--rule); background: transparent; cursor: pointer;
  font-size: 15px; line-height: 1; color: var(--ink);
  transition: background .3s var(--ease), color .3s var(--ease), border-color .3s var(--ease);
}
.cal__nav button:hover:not([disabled]) { background: var(--accent); color: var(--accent-ink); border-color: var(--accent); }
.cal__nav button[disabled] { opacity: .28; cursor: default; }

.cal__grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 3px; }
.cal__dow { font-size: 9px; letter-spacing: .18em; text-transform: uppercase; color: var(--faint); text-align: center; padding-bottom: 10px; }
.cal__day {
  aspect-ratio: 1 / 1; border: 1px solid transparent; background: var(--paper-2); cursor: pointer;
  font-family: var(--serif); font-size: 17px; color: var(--ink); position: relative;
  display: flex; align-items: center; justify-content: center;
  transition: background .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease);
}
.cal__day::after { content: ''; position: absolute; bottom: 7px; width: 3px; height: 3px; background: var(--accent); border-radius: 50%; opacity: 0; }
.cal__day.is-open::after { opacity: .85; }
.cal__day:hover:not([disabled]) { border-color: var(--accent); background: var(--paper); }
.cal__day[disabled] { color: var(--faint); background: transparent; cursor: default; }
.cal__day[disabled]::before { content: ''; position: absolute; inset: 0; background: repeating-linear-gradient(-45deg, transparent, transparent 5px, var(--rule-2) 5px, var(--rule-2) 6px); }
.cal__day.is-selected { background: var(--accent); color: var(--accent-ink); border-color: var(--accent); animation: pop .32s var(--ease-out); }
@keyframes pop { 0% { transform: scale(.9); } 60% { transform: scale(1.04); } 100% { transform: scale(1); } }
.cal__day.is-selected::after { background: var(--accent-ink); opacity: 1; }
.cal__empty { aspect-ratio: 1 / 1; }
.cal__legend { display: flex; gap: 22px; margin-top: 18px; font-size: 10.5px; color: var(--muted); letter-spacing: .04em; }
.cal__legend span { display: flex; align-items: center; gap: 8px; }
.dot { width: 4px; height: 4px; background: var(--accent); border-radius: 50%; display: inline-block; }
.hatch { width: 12px; height: 12px; background: repeating-linear-gradient(-45deg, transparent, transparent 3px, var(--rule) 3px, var(--rule) 4px); }

.slots { display: grid; grid-template-columns: repeat(auto-fill, minmax(88px, 1fr)); gap: 8px; }
.slot {
  border: 1px solid var(--rule); background: transparent; padding: 13px 6px; cursor: pointer;
  font-family: var(--serif); font-size: 17px; font-variant-numeric: tabular-nums; color: var(--ink);
  transition: background .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease);
}
.slot:hover { border-color: var(--accent); }
.slot.is-selected { background: var(--accent); color: var(--accent-ink); border-color: var(--accent); animation: pop .32s var(--ease-out); }
.slots-empty { font-size: 14px; color: var(--muted); padding: 6px 0; }

.summary-line { display: flex; justify-content: space-between; align-items: baseline; gap: 16px; padding: 12px 0; border-bottom: 1px solid var(--rule-2); }
.summary-line dt { color: var(--muted); font-size: 9.5px; letter-spacing: .2em; text-transform: uppercase; }
.summary-line dd { margin: 0; font-family: var(--serif); font-size: 18px; text-align: right; color: var(--ink); }

/* --- AI-planner (donkere band) -------------------------------------------- */
.planner { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: clamp(32px, 5vw, 88px); align-items: start; }
.planner__list { list-style: none; padding: 0; margin: 30px 0 0; }
.planner__list li { display: flex; gap: 18px; padding: 15px 0; border-bottom: 1px solid var(--rule); font-size: 14.5px; color: var(--ink-3); }
.planner__list b { font-family: var(--serif); font-weight: 400; font-size: 14px; color: var(--ink); min-width: 28px; }

.progress { border: 1px solid var(--rule); padding: 34px; text-align: center; }
.progress__label { font-size: 10px; letter-spacing: .26em; text-transform: uppercase; color: var(--muted); }
.progress__bar { height: 1px; background: var(--rule); margin: 22px 0 14px; position: relative; overflow: hidden; }
.progress__bar i { position: absolute; inset: 0 auto 0 0; background: var(--accent); width: 0; transition: width .5s var(--ease); }
.progress__hint { font-size: 12.5px; color: var(--faint); }

/* Het resultaat verschijnt als een wit vel papier — ook op de donkere band. */
.sheet { background: #fff; color: var(--ink-2); padding: clamp(26px, 3.4vw, 52px); box-shadow: 0 30px 70px rgba(0,0,0,.28); }
.sheet, .sheet * { --ink: #17120f; --ink-2: #342c25; --ink-3: #564b41; --muted: #7b6f63; --faint: #a89b8c; --rule: #ded4c4; --rule-2: #efe8db; --paper: #fff; --paper-2: #f8f4ed; --accent: var(--wine); --accent-ink: #fff; --accent-soft: var(--brass); }

/* --- Planweergave --------------------------------------------------------- */
.plan__title { font-family: var(--serif); font-weight: 300; font-size: clamp(28px, 3.4vw, 44px); line-height: 1.1; letter-spacing: -.014em; color: var(--ink); }
.plan__summary { margin-top: 16px; color: var(--ink-3); max-width: 66ch; }
.plan section { margin-top: 48px; }
.plan h3 {
  font-family: var(--sans); font-size: 10px; font-weight: 600; letter-spacing: .28em;
  text-transform: uppercase; color: var(--muted);
  padding-bottom: 12px; border-bottom: 1px solid var(--ink); margin-bottom: 24px;
}
.plan__tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }
.plan__tag { border: 1px solid var(--rule); padding: 7px 13px; font-size: 10px; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-3); }

.budget__total { display: flex; align-items: baseline; justify-content: space-between; gap: 16px; padding-bottom: 18px; border-bottom: 1px solid var(--rule); }
.budget__total span { font-size: 10px; letter-spacing: .24em; text-transform: uppercase; color: var(--muted); }
.budget__total b { font-family: var(--serif); font-size: 34px; font-weight: 300; color: var(--wine); }
.budget__row { display: grid; grid-template-columns: 1fr auto; gap: 6px 20px; padding: 15px 0; border-bottom: 1px solid var(--rule-2); }
.budget__cat { font-size: 15px; color: var(--ink-2); }
.budget__amt { font-family: var(--serif); font-size: 19px; font-variant-numeric: tabular-nums; white-space: nowrap; color: var(--ink); }
.budget__note { grid-column: 1 / -1; font-size: 13px; color: var(--muted); }
.budget__meter { grid-column: 1 / -1; height: 2px; background: var(--rule-2); }
.budget__meter i { display: block; height: 100%; background: var(--wine); }

.timeline__item { display: grid; grid-template-columns: 200px 1fr; gap: 26px; padding: 22px 0; border-bottom: 1px solid var(--rule-2); }
.timeline__when { font-family: var(--serif); font-size: 20px; color: var(--ink); }
.timeline__focus { font-size: 15px; margin-bottom: 8px; color: var(--ink-2); }
.timeline__tasks { margin: 0; padding-left: 18px; color: var(--ink-3); font-size: 14.5px; }
.timeline__tasks li { margin-bottom: 5px; }

.schedule__row { display: grid; grid-template-columns: 96px 1fr; gap: 22px; padding: 14px 0; border-bottom: 1px solid var(--rule-2); }
.schedule__time { font-family: var(--serif); font-size: 19px; font-variant-numeric: tabular-nums; color: var(--ink); }
.schedule__item { font-size: 15px; color: var(--ink-2); }
.schedule__note { font-size: 13px; color: var(--muted); margin-top: 3px; }

.vendors { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 1px; }
.vendor { background: var(--paper); padding: 22px; box-shadow: 0 0 0 1px var(--rule-2); }
.vendor h4 { font-family: var(--sans); font-size: 10px; font-weight: 600; letter-spacing: .22em; text-transform: uppercase; margin: 0 0 10px; color: var(--ink); }
.vendor p { font-size: 14px; color: var(--ink-3); }
.vendor__meta { margin-top: 12px; font-family: var(--serif); font-size: 17px; color: var(--ink); }
.vendor__book { font-size: 12px; color: var(--muted); }

.risk { padding: 17px 0; border-bottom: 1px solid var(--rule-2); }
.risk b { display: block; font-weight: 500; font-size: 15px; margin-bottom: 4px; color: var(--ink); }
.risk span { font-size: 14px; color: var(--ink-3); }

.next-steps { counter-reset: ns; list-style: none; padding: 0; margin: 0; }
.next-steps li { counter-increment: ns; position: relative; padding: 15px 0 15px 46px; border-bottom: 1px solid var(--rule-2); font-size: 15px; color: var(--ink-2); }
.next-steps li::before { content: counter(ns, decimal-leading-zero); position: absolute; left: 0; top: 15px; font-family: var(--serif); font-size: 15px; color: var(--brass); }

.plan__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 44px; padding-top: 30px; border-top: 1px solid var(--ink); }

/* --- Chat ----------------------------------------------------------------- */
.chat { margin-top: 52px; border-top: 1px solid var(--rule); padding-top: 34px; }
.chat__log { display: grid; gap: 16px; margin-bottom: 24px; }
.chat__msg { padding: 18px 22px; border: 1px solid var(--rule); font-size: 15px; white-space: pre-wrap; line-height: 1.7; }
.chat__msg--user { background: var(--wine); color: #fff; border-color: var(--wine); margin-left: clamp(0px, 14%, 140px); }
.chat__msg--assistant { background: var(--paper); color: var(--ink-2); margin-right: clamp(0px, 14%, 140px); }
.chat__form { display: flex; gap: 14px; align-items: flex-end; }
.chat__form .field { flex: 1; margin: 0; }

/* --- Veelgestelde vragen -------------------------------------------------- */
.faq { border-top: 1px solid var(--rule); }
.faq details { border-bottom: 1px solid var(--rule); }
.faq summary {
  cursor: pointer; list-style: none; padding: 26px 0;
  font-family: var(--serif); font-size: clamp(20px, 2vw, 26px); font-weight: 300; color: var(--ink);
  display: grid; grid-template-columns: 56px 1fr 30px; align-items: center; gap: 10px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary i { font-style: normal; font-size: 12px; letter-spacing: .2em; color: var(--accent-soft); font-family: var(--serif); }
.faq summary::after { content: '+'; justify-self: end; font-size: 20px; color: var(--muted); font-family: var(--sans); font-weight: 300; }
.faq details[open] summary::after { content: '–'; color: var(--wine); }
.faq details[open] summary { color: var(--wine); }
.faq summary:hover { color: var(--wine); }
.faq summary { transition: color .3s var(--ease); }
.faq details > div { padding: 0 30px 28px 56px; color: var(--ink-3); max-width: 78ch; }

/* --- Contact -------------------------------------------------------------- */
.contact { display: grid; grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr); gap: clamp(32px, 5vw, 80px); align-items: start; }
.contact__list { list-style: none; padding: 0; margin: 32px 0 0; }
.contact__list li { padding: 18px 0; border-bottom: 1px solid var(--rule); }
.contact__list dt { font-size: 9.5px; letter-spacing: .26em; text-transform: uppercase; color: var(--faint); }
.contact__list dd { margin: 7px 0 0; font-family: var(--serif); font-size: 20px; color: var(--ink); }

/* --- Footer --------------------------------------------------------------- */
.site-footer { background: #17100f; color: rgba(246,241,232,.72); padding: clamp(56px, 8vw, 96px) 0 40px; }
.site-footer__top { display: grid; grid-template-columns: minmax(0, 1.2fr) repeat(2, minmax(0, .6fr)); gap: 40px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,.16); }
.site-footer h4 { font-family: var(--sans); font-size: 9.5px; font-weight: 600; letter-spacing: .28em; text-transform: uppercase; color: var(--brass-2); margin-bottom: 18px; }
.site-footer__mark { display: flex; align-items: center; gap: 16px; color: var(--brass-2); }
.site-footer__mark .wordmark__name { font-size: 26px; }
.site-footer__claim { font-family: var(--serif); font-size: 21px; line-height: 1.4; color: rgba(253,250,245,.9); margin-top: 24px; max-width: 30ch; }
.site-footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 12px; font-size: 13.5px; }
.site-footer a { text-decoration: none; color: rgba(246,241,232,.78); transition: color .3s var(--ease); }
.site-footer a:hover { color: var(--brass-2); }
.site-footer__bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 16px; padding-top: 26px; font-size: 11.5px; color: rgba(246,241,232,.45); }

/* --- Beheer --------------------------------------------------------------- */
.admin-shell { max-width: 1300px; margin-inline: auto; padding: 40px clamp(16px, 4vw, 44px) 90px; }
.admin-login { max-width: 400px; margin: 12vh auto; }
.stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 1px; margin-bottom: 38px; }
.stat { background: var(--paper); padding: 26px; box-shadow: 0 0 0 1px var(--rule); }
.stat b { display: block; font-family: var(--serif); font-weight: 300; font-size: 40px; line-height: 1; color: var(--wine); }
.stat span { font-size: 9.5px; letter-spacing: .24em; text-transform: uppercase; color: var(--muted); }
.tabs { display: flex; gap: 30px; border-bottom: 1px solid var(--rule); margin-bottom: 30px; flex-wrap: wrap; }
.tabs button { background: none; border: 0; border-bottom: 1px solid transparent; padding: 14px 0; cursor: pointer; font-family: var(--sans); font-size: 10px; letter-spacing: .24em; text-transform: uppercase; color: var(--muted); }
.tabs button.is-active { color: var(--ink); border-color: var(--ink); }
.table { width: 100%; border-collapse: collapse; font-size: 14px; }
.table th { text-align: left; font-size: 9.5px; letter-spacing: .2em; text-transform: uppercase; color: var(--muted); font-weight: 500; padding: 12px 14px 12px 0; border-bottom: 1px solid var(--ink); white-space: nowrap; }
.table td { padding: 14px 14px 14px 0; border-bottom: 1px solid var(--rule-2); vertical-align: top; }
.table tr:hover td { background: var(--paper-2); }
.tag { display: inline-block; border: 1px solid var(--rule); padding: 4px 10px; font-size: 9.5px; letter-spacing: .16em; text-transform: uppercase; }
.tag--bevestigd { background: var(--wine); color: #fff; border-color: var(--wine); }
.tag--geannuleerd { color: var(--faint); text-decoration: line-through; }
.row-actions { display: flex; gap: 6px; flex-wrap: wrap; }
.row-actions button { border: 1px solid var(--rule); background: transparent; cursor: pointer; font-size: 9.5px; letter-spacing: .14em; text-transform: uppercase; padding: 7px 11px; color: var(--ink); transition: background .25s var(--ease), color .25s var(--ease); }
.row-actions button:hover { background: var(--wine); color: #fff; border-color: var(--wine); }
.table-scroll { overflow-x: auto; }

/* --- Hulpklassen ---------------------------------------------------------- */
.hidden { display: none !important; }
.spinner { display: inline-block; width: 11px; height: 11px; border: 1px solid currentColor; border-top-color: transparent; border-radius: 50%; animation: spin .8s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

/* Zonder JS blijft alles zichtbaar; verbergen gebeurt pas ná body.js-reveal. */
.rise { transition: opacity 1s var(--ease-out), transform 1s var(--ease-out); }
.js-reveal .rise { opacity: 0; transform: translateY(22px); }
.js-reveal .rise.is-in { opacity: 1; transform: none; }
.js-reveal .rise-d1.is-in { transition-delay: .09s; }
.js-reveal .rise-d2.is-in { transition-delay: .18s; }
.js-reveal .rise-d3.is-in { transition-delay: .27s; }

.js-reveal .figure, .js-reveal .service__media { clip-path: inset(0 0 100% 0); transition: clip-path 1.2s var(--ease-out); }
.js-reveal .figure.is-in, .js-reveal .service__media.is-in { clip-path: inset(0 0 0 0); }

/* --- Responsief ----------------------------------------------------------- */
@media (max-height: 880px) and (min-width: 1000px) {
  .display { font-size: clamp(40px, 5.6vw, 82px); }
  .hero__lede { font-size: 19px; margin-top: 20px; }
  .hero__actions { margin-top: 26px; }
}
@media (max-width: 1000px) {
  .hero__grid, .section__head, .method, .booking, .planner, .contact { grid-template-columns: 1fr; }
  .method__media { position: static; }
  .site-footer__top { grid-template-columns: 1fr 1fr; }
  .timeline__item { grid-template-columns: 1fr; gap: 8px; }
}
@media (max-width: 860px) {
  .nav {
    position: fixed; inset: 0 0 auto; top: 0; padding: 108px var(--pad) 40px;
    background: var(--paper); color: var(--ink); flex-direction: column; align-items: stretch; gap: 0;
    display: none; height: 100svh; overflow-y: auto;
  }
  .nav.is-open { display: flex; }
  .nav a:not(.btn) {
    padding: 20px 0; border-bottom: 1px solid var(--rule-2);
    font-family: var(--serif); font-size: 27px; letter-spacing: 0; text-transform: none;
    opacity: 0; transform: translateY(12px); transition: opacity .5s var(--ease-out), transform .5s var(--ease-out);
  }
  .nav a:not(.btn) i { font-size: 12px; color: var(--accent-soft); min-width: 26px; }
  .nav.is-open a:not(.btn) { opacity: 1; transform: none; }
  .nav.is-open a:nth-child(1) { transition-delay: .06s; }
  .nav.is-open a:nth-child(2) { transition-delay: .12s; }
  .nav.is-open a:nth-child(3) { transition-delay: .18s; }
  .nav.is-open a:nth-child(4) { transition-delay: .24s; }
  .nav.is-open a:nth-child(5) { transition-delay: .30s; }
  .nav a:not(.btn)::after { display: none; }
  .nav__foot { display: block; margin-top: auto; padding-top: 28px; font-size: 11px; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); }
  .nav .btn { margin: 22px 0 0; --btn-bg: var(--ink); --btn-fg: #fff; --btn-bd: var(--ink); }
  .site-header:not(.is-stuck):not(.site-header--solid) .nav .btn { --btn-bg: var(--ink); --btn-fg: #fff; --btn-bd: var(--ink); }
  .nav-toggle { display: block; position: relative; z-index: 2; }
  .hero__inner { padding-top: 132px; }
  .faq summary { grid-template-columns: 34px 1fr 24px; }
  .faq details > div { padding-left: 34px; padding-right: 0; }
}
@media (max-width: 560px) {
  .chat__msg--user, .chat__msg--assistant { margin: 0; }
  .chat__form { flex-direction: column; align-items: stretch; }
  .schedule__row { grid-template-columns: 74px 1fr; gap: 14px; }
  .step { grid-template-columns: 48px 1fr; }
  .site-footer__top { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; scroll-behavior: auto !important; }
  .marquee__track { animation: none; }
  .statement__media img { animation: none; }
  .js-reveal .rise { opacity: 1; transform: none; }
  .js-reveal .figure, .js-reveal .service__media { clip-path: none; }
  .hero__media img { opacity: 1; transform: none; }
}

/* --- Afdrukken ------------------------------------------------------------ */
@media print {
  body::after, .site-header, .site-footer, .chat, .plan__actions, .nav-toggle, .marquee, .hero__cue { display: none !important; }
  body { font-size: 11pt; color: #000; }
  .section { padding: 0; }
  .sheet { box-shadow: none; padding: 0; }
  .plan section { break-inside: avoid; }
}
