/* ============================================================
   THE PRIVATE PLATE — gedeelde stijl
   Luxe Private Dining
   ============================================================ */

/* ---- Fonts ---- */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;1,400;1,500&family=Mulish:wght@300;400;500;600;700&display=swap');

/* ============================================================
   TOKENS
   ============================================================ */
:root {
  /* Brand colours */
  --green-dark: #184734;   /* hoofdkleur: koppen & accenten */
  --green-sage: #7A9471;   /* zacht accent */
  --ink:        #2B2B2B;   /* lopende tekst */
  --cream:      #F7F4EF;   /* achtergrond */
  --sand:       #E8E0D4;   /* afwisselende secties */
  --white:      #FFFFFF;

  /* Messing: het warme accent naast het groen. Alleen voor lijntjes,
     cijfers en kleine labels -- nooit voor lopende tekst of vlakken. */
  --brass:       #A4813C;   /* lijnen, cijfers, aanhalingsteken */
  --brass-text:  #7A5E28;   /* iets dieper, leesbaar voor kleine tekst */
  --brass-light: #C6A05B;   /* op de donkergroene vlakken */

  /* Derived */
  --green-dark-90: rgba(24, 71, 52, 0.90);
  --green-dark-70: rgba(24, 71, 52, 0.70);
  --green-dark-40: rgba(24, 71, 52, 0.40);
  --line:         rgba(24, 71, 52, 0.16);
  --line-strong:  rgba(24, 71, 52, 0.34);
  --line-light:   rgba(247, 244, 239, 0.30);
  --ink-soft:     rgba(43, 43, 43, 0.72);

  /* Type */
  --font-display: 'Cormorant Garamond', 'Georgia', serif;
  --font-body: 'Mulish', system-ui, -apple-system, sans-serif;

  /* Spacing */
  --gutter: clamp(1.25rem, 5vw, 5rem); /* @kind spacing */
  --section-y: clamp(5rem, 11vw, 10rem); /* @kind spacing */
  --maxw: 1240px;
  --maxw-narrow: 760px;

  /* Motion */
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1); /* @kind other */
}

/* ============================================================
   RESET / BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; }

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

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-body);
  font-weight: 400;
  font-size: clamp(1rem, 0.95rem + 0.25vw, 1.0625rem);
  line-height: 1.85;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* height:auto is nodig omdat elke <img> nu width- en height-attributen
   heeft (tegen layout shift). Zonder deze regel winnen die attributen
   van de aspect-ratio in de CSS en worden beelden veel te hoog. */
img { display: block; max-width: 100%; height: auto; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  color: var(--green-dark);
  line-height: 1.12;
  letter-spacing: 0.005em;
  margin: 0;
  text-wrap: balance;
}

p { margin: 0 0 1.2em; text-wrap: pretty; }
p:last-child { margin-bottom: 0; }

a { color: inherit; text-decoration: none; }

/* ============================================================
   TYPE SCALE
   ============================================================ */
.display {
  font-size: clamp(2.75rem, 1.6rem + 5.6vw, 5.75rem);
  font-weight: 400;
  line-height: 1.04;
  letter-spacing: -0.01em;
}
.h-xl { font-size: clamp(2.25rem, 1.5rem + 3.4vw, 4rem); font-weight: 400; }
.h-lg { font-size: clamp(1.9rem, 1.4rem + 2.2vw, 3rem); font-weight: 500; }
.h-md { font-size: clamp(1.5rem, 1.25rem + 1.1vw, 2rem); font-weight: 500; }

.lead {
  font-size: clamp(1.15rem, 1.05rem + 0.55vw, 1.45rem);
  line-height: 1.7;
  color: var(--ink-soft);
  font-weight: 400;
}

/* Small letter-spaced label */
.eyebrow {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.72rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--green-sage);
  margin: 0;
}
.eyebrow--dark { color: var(--green-dark); }
.eyebrow--light { color: rgba(247, 244, 239, 0.82); }

/* Italic serif accent */
.serif-italic { font-family: var(--font-display); font-style: italic; font-weight: 400; }

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

.section { padding-block: var(--section-y); }
.section--sand { background: var(--sand); }
.section--green { background: var(--green-dark); color: var(--cream); }
.section--green h1, .section--green h2, .section--green h3 { color: var(--cream); }

/* Thin decorative rule */
.rule {
  width: 64px; height: 1px; border: 0;
  background: var(--brass);
  margin: 0;
}
.rule--center { margin-inline: auto; }
.rule--light { background: rgba(247, 244, 239, 0.45); }

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  gap: 2rem;
  padding: clamp(0.85rem, 1.8vw, 1.35rem) var(--gutter);
  background: rgba(247, 244, 239, 0.90);
  -webkit-backdrop-filter: saturate(1.1) blur(12px);
  backdrop-filter: saturate(1.1) blur(12px);
  transition: background .5s var(--ease), box-shadow .5s var(--ease), padding .5s var(--ease);
}
/* Hairline + shadow deepen on scroll */
.nav[data-solid="true"] {
  box-shadow: 0 1px 0 var(--line), 0 14px 30px -26px rgba(24,71,52,0.5);
  padding-block: clamp(0.6rem, 1.2vw, 0.95rem);
}

.brand__logo {
  display: block; height: clamp(50px, 5.6vw, 62px); width: auto;
  transition: height .5s var(--ease);
}
.nav[data-solid="true"] .brand__logo { height: clamp(44px, 4.8vw, 52px); }

.nav__links { display: flex; align-items: center; gap: clamp(1.25rem, 2.4vw, 2.6rem); }
.nav__link {
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--green-dark);
  position: relative;
  padding-block: 0.3rem;
  transition: color .3s var(--ease);
}
.nav__link::after {
  content: ""; position: absolute; left: 0; bottom: 0;
  width: 100%; height: 1px; background: var(--green-sage);
  transform: scaleX(0); transform-origin: left; transition: transform .35s var(--ease);
}
.nav__link:hover { color: var(--green-sage); }
.nav__link:hover::after, .nav__link[aria-current="page"]::after { transform: scaleX(1); }
.nav__link[aria-current="page"] { color: var(--green-sage); }

/* Nav over dark hero */
.nav--on-dark .nav__link { color: var(--cream); }
.nav--on-dark .nav__link:hover { color: var(--white); }
.nav--on-dark .nav__link::after { background: rgba(247,244,239,0.7); }
.nav--on-dark .brand__name, .nav--on-dark .brand__tag { color: var(--cream); }
.nav--on-dark .emblem { border-color: rgba(247,244,239,0.6); color: var(--cream); }
.nav[data-solid="true"].nav--on-dark .nav__link,
.nav[data-solid="true"].nav--on-dark .brand__name,
.nav[data-solid="true"].nav--on-dark .brand__tag { color: var(--green-dark); }
.nav[data-solid="true"].nav--on-dark .nav__link:hover { color: var(--green-sage); }
.nav[data-solid="true"].nav--on-dark .nav__link::after { background: var(--green-sage); }
.nav[data-solid="true"].nav--on-dark .emblem { border-color: var(--green-dark); color: var(--green-dark); }

/* ---- Brand / emblem ---- */
.brand { display: flex; align-items: center; gap: 0.85rem; }
.emblem {
  width: 46px; height: 46px; flex: none;
  border: 1px solid var(--green-dark);
  border-radius: 50%;
  display: grid; place-items: center;
  font-family: var(--font-display);
  font-size: 1.18rem; font-weight: 500; letter-spacing: 0.02em;
  color: var(--green-dark);
  transition: color .4s var(--ease), border-color .4s var(--ease);
}
.brand__text { display: flex; flex-direction: column; line-height: 1; }
.brand__name {
  font-family: var(--font-display);
  font-size: 1.18rem; font-weight: 500; letter-spacing: 0.06em;
  color: var(--green-dark); text-transform: uppercase;
  white-space: nowrap;
}
.brand__tag {
  font-family: var(--font-body);
  font-size: 0.58rem; letter-spacing: 0.34em; text-transform: uppercase;
  color: var(--green-sage); margin-top: 0.32rem; font-weight: 600;
}

/* ---- Mobile nav toggle ---- */
.nav__toggle {
  display: none; background: none; border: 0; cursor: pointer;
  width: 38px; height: 38px; padding: 8px; color: var(--green-dark);
}
.nav__toggle span { display: block; height: 1.5px; background: currentColor; margin: 5px 0; transition: transform .35s var(--ease), opacity .25s var(--ease); }
.nav--on-dark .nav__toggle { color: var(--cream); }
.nav[data-solid="true"].nav--on-dark .nav__toggle { color: var(--green-dark); }

/* ============================================================
   TEXT LINK / BUTTON (geen webshop — alleen sobere links)
   ============================================================ */
.tlink {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-size: 0.82rem; letter-spacing: 0.18em; text-transform: uppercase;
  font-weight: 600; color: var(--green-dark);
  padding-bottom: 0.4rem;
  border-bottom: 1px solid var(--line-strong);
  transition: color .3s var(--ease), border-color .3s var(--ease), gap .3s var(--ease);
}
.tlink:hover { color: var(--green-sage); border-color: var(--green-sage); gap: 0.95rem; }
.tlink--light { color: var(--cream); border-color: var(--line-light); }
.tlink--light:hover { color: var(--white); border-color: rgba(247,244,239,0.8); }
.tlink .arrow { transition: transform .3s var(--ease); }
.tlink:hover .arrow { transform: translateX(3px); }

/* ============================================================
   IMAGE SLOTS — elegante lege staat
   ============================================================ */
image-slot {
  --slot-bg: var(--sand);
  background: var(--sand);
}
image-slot::part(empty), image-slot .placeholder { color: var(--green-sage); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--green-dark); color: var(--cream); padding-block: clamp(3.5rem, 7vw, 6rem) 2.5rem; }
.footer a { color: var(--cream); }
.footer__grid {
  display: grid; gap: clamp(2rem, 5vw, 4rem);
  grid-template-columns: 1.4fr 1fr 1fr;
  align-items: start;
}
.footer__brand .emblem { border-color: rgba(247,244,239,0.6); color: var(--cream); width: 54px; height: 54px; }
.footer__logo { display: block; height: 58px; width: auto; margin-bottom: 1.5rem; }
.footer__col h4 {
  color: var(--cream); font-size: 0.72rem; letter-spacing: 0.26em; text-transform: uppercase;
  font-family: var(--font-body); font-weight: 600; margin-bottom: 1.3rem; opacity: 0.7;
}
.footer__col ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 0.7rem; }
.footer__col a { font-size: 0.95rem; opacity: 0.88; transition: opacity .3s var(--ease); }
.footer__col a:hover { opacity: 1; }
.footer__bottom {
  margin-top: clamp(2.5rem, 5vw, 4rem); padding-top: 1.8rem;
  border-top: 1px solid var(--line-light);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 1rem;
  font-size: 0.78rem; letter-spacing: 0.04em; opacity: 0.7;
}

/* ============================================================
   ENTRANCE ANIMATION
   Visible by default; hidden start-state only when JS is active
   (so export / no-JS renders still show content).
   ============================================================ */
/* Uitgangspunt: altijd zichtbaar. Zonder JavaScript verandert hier niets. */
.reveal { opacity: 1; }

@media (prefers-reduced-motion: no-preference) {
  /* Transform-only entrance: opacity stays 1 at all times, so content is
     NEVER hidden — even where time-based effects freeze (backgrounded
     iframes, capture/export). A frozen transform just leaves the element
     gently offset, still fully legible. Adding .is-in settles it home. */
  .has-js .reveal { transition: transform 1s var(--ease); }
  .has-js .reveal:not(.is-in) { transform: translateY(14px); }
  .has-js .reveal[data-delay="1"] { transition-delay: .12s; }
  .has-js .reveal[data-delay="2"] { transition-delay: .24s; }
  .has-js .reveal[data-delay="3"] { transition-delay: .36s; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 860px) {
  /* Zonder JS: de header staat gewoon in de flow en het menu is een
     nette lijst eronder. Niets wordt afgedekt, alles is bereikbaar. */
  html:not(.has-js) .nav { position: static; }

  .nav { flex-wrap: wrap; }
  .nav__links { flex-direction: column; align-items: stretch; gap: 0; width: 100%; }

  /* Met JS: hamburger + uitschuivend paneel (zoals in OUD). */
  .has-js .nav__toggle { display: block; }
  /* Logo en hamburger blijven boven het uitgeschoven paneel staan,
     anders dekt het paneel de sluitknop af. */
  .has-js .nav > .brand,
  .has-js .nav__toggle { position: relative; z-index: 2; }
  .has-js .nav__links {
    z-index: 1;
    position: fixed; inset: 0 0 auto 0; width: auto;
    background: var(--cream);
    padding: 6.5rem var(--gutter) 2.5rem;
    transform: translateY(-102%); visibility: hidden;
    transition: transform .5s var(--ease), visibility 0s linear .5s;
    box-shadow: 0 20px 40px -20px rgba(24,71,52,0.3);
  }
  .has-js .nav__links[data-open="true"] {
    transform: translateY(0); visibility: visible;
    transition: transform .5s var(--ease), visibility 0s;
  }
  .nav__link { color: var(--green-dark) !important; font-size: 1rem; padding-block: 1rem; width: 100%; border-bottom: 1px solid var(--line); }
  .nav__link::after { display: none; }
  .footer__grid { grid-template-columns: 1fr; }
}

/* ============================================================
   INNER-PAGE COMPONENTS (Concept / Ervaring / Over / Contact)
   ============================================================ */

/* Page header */
.pagehead { padding-block: clamp(10.5rem, 17vh, 13rem) clamp(2.5rem, 5vw, 4.5rem); text-align: center; }
.pagehead .eyebrow { margin-bottom: 1.3rem; }
.pagehead__title { margin-bottom: 1.4rem; }
.pagehead .rule { margin: 1.5rem auto 2rem; }
.pagehead .lead { max-width: 58ch; margin-inline: auto; }
.pagehead--green { background: var(--green-dark); }
.pagehead--green .lead { color: rgba(247,244,239,0.86); }

/* Generic split (image + prose), reused across inner pages */
.media-split { display: grid; grid-template-columns: 0.82fr 1.18fr; gap: clamp(2.5rem, 6vw, 6rem); align-items: center; }
.media-split--reverse { grid-template-columns: 1.18fr 0.82fr; }
.media-split--reverse .media-split__img { order: 2; }
.media-split__img { position: relative; }
.media-split__img img { width: 100%; height: auto; display: block; }
.media-split__body .eyebrow { margin-bottom: 1.3rem; }
.media-split__body .rule { margin-block: 1.6rem 1.8rem; }
.media-split__body p { margin-bottom: 1.3em; }
.media-split__body .tlink { margin-top: 1rem; }

/* Process steps */
.steps { display: grid; gap: clamp(2rem, 4vw, 3.2rem) clamp(1.6rem, 3vw, 2.6rem); grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); list-style: none; margin: 0; padding: 0; counter-reset: step; }
.step { position: relative; }
.step__num { font-family: var(--font-display); font-size: 1.7rem; font-weight: 500; color: var(--green-sage); line-height: 1; }
.section--green .step__num { color: var(--green-sage); }
.step h3 { font-size: 1.35rem; margin: 0.7rem 0 0.6rem; }
.step__rule { width: 34px; height: 1px; background: var(--line-strong); border: 0; margin: 0.4rem 0 1rem; }
.section--green .step__rule { background: rgba(247,244,239,0.4); }
.step p { font-size: 0.96rem; color: var(--ink-soft); margin: 0; }
.section--green .step p { color: rgba(247,244,239,0.8); }

/* Timeline (avondverloop) */
.timeline { list-style: none; margin: 0; padding: 0; max-width: 760px; }
.timeline__item { display: grid; grid-template-columns: 130px 1fr; gap: clamp(1.2rem, 3vw, 2.6rem); padding: clamp(1.6rem, 3vw, 2.2rem) 0; border-top: 1px solid var(--line); }
.timeline__item:last-child { border-bottom: 1px solid var(--line); }
.timeline__phase { font-family: var(--font-body); font-weight: 600; font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--green-sage); padding-top: 0.45rem; }
.timeline__body h3 { font-size: 1.4rem; margin: 0 0 0.5rem; }
.timeline__body p { margin: 0; color: var(--ink-soft); }

/* Dish gallery */
.dishes { display: grid; gap: clamp(1.4rem, 2.6vw, 2.4rem) clamp(1.2rem, 2.4vw, 2rem); grid-template-columns: repeat(auto-fill, minmax(270px, 1fr)); }
.dish figure { margin: 0; }
.dish img { width: 100%; aspect-ratio: 1 / 1; object-fit: contain; display: block; }
.dish figcaption { padding: 1.1rem 0 0; }
.dish__course { font-size: 0.66rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--green-sage); font-weight: 600; }
.dish__name { font-family: var(--font-display); font-size: 1.3rem; color: var(--green-dark); margin-top: 0.35rem; line-height: 1.2; }
.dish__desc { font-size: 0.92rem; color: var(--ink-soft); margin-top: 0.4rem; }

/* Feature image band */
.feature { position: relative; min-height: clamp(340px, 52vh, 560px); display: grid; place-items: center; text-align: center; overflow: hidden; background: var(--green-dark); }
.feature img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.feature__scrim { position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(24,71,52,0.74), rgba(24,71,52,0.86)); }
.feature__inner { position: relative; z-index: 2; padding: 3rem var(--gutter); max-width: 760px; }
.feature__inner h2 { color: var(--cream); }
.feature__inner .quote__mark { font-family: var(--font-display); font-size: 4.5rem; line-height: 0; color: var(--green-sage); display: block; }
.feature__inner .quote__text { font-family: var(--font-display); font-style: italic; font-weight: 400; font-size: clamp(1.5rem, 1.2rem + 1.7vw, 2.4rem); line-height: 1.34; color: var(--cream); margin: 0; }

/* Contact */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2.5rem, 6vw, 6rem); align-items: center; }
.contact-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 2rem; }
.contact-list__label { font-size: 0.7rem; letter-spacing: 0.24em; text-transform: uppercase; color: var(--green-sage); font-weight: 600; margin-bottom: 0.5rem; }
.contact-list__value { font-family: var(--font-display); font-size: clamp(1.5rem, 1.2rem + 1vw, 2rem); color: var(--green-dark); line-height: 1.2; }
.contact-list a.contact-list__value { transition: color .3s var(--ease); }
.contact-list a.contact-list__value:hover { color: var(--green-sage); }
.contact__img img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; display: block; }

@media (max-width: 860px) {
  .media-split, .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .media-split--reverse .media-split__img { order: 0; }
  .timeline__item { grid-template-columns: 1fr; gap: 0.4rem; }
  .timeline__phase { padding-top: 0; }
}

/* ============================================================
   TOEGANKELIJKHEID
   ============================================================ */
.skip {
  position: absolute; left: var(--gutter); top: 0;
  transform: translateY(-140%);
  z-index: 200;
  background: var(--green-dark); color: var(--cream);
  padding: 0.85rem 1.4rem;
  font-size: 0.78rem; letter-spacing: 0.18em; text-transform: uppercase; font-weight: 600;
  transition: transform .25s var(--ease);
}
.skip:focus { transform: translateY(0.6rem); }

:focus-visible {
  outline: 2px solid var(--green-sage);
  outline-offset: 3px;
}
.section--green :focus-visible,
.footer :focus-visible,
.hero__panel :focus-visible,
.feature :focus-visible { outline-color: rgba(247, 244, 239, 0.85); }

/* ============================================================
   KNOP — zelfde typografie als .tlink, maar gevuld.
   Alleen gebruikt waar een echte knop nodig is (het formulier).
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.6rem;
  font-family: var(--font-body);
  font-size: 0.82rem; letter-spacing: 0.18em; text-transform: uppercase; font-weight: 600;
  color: var(--cream); background: var(--green-dark);
  border: 1px solid var(--green-dark); border-radius: 0;
  padding: 1.05rem 2.1rem;
  cursor: pointer;
  transition: background .3s var(--ease), border-color .3s var(--ease), color .3s var(--ease);
}
.btn:hover { background: var(--green-sage); border-color: var(--green-sage); }

/* ============================================================
   HOMEPAGE — split-hero en secties
   (stond eerder als <style> in index.html; ongewijzigd overgenomen)
   ============================================================ */
.hero {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  min-height: 100svh;
  overflow: hidden;
}
.hero__panel { background: var(--green-dark); display: flex; align-items: center; }
.hero__panel-inner {
  max-width: 560px; margin-left: auto;
  padding: clamp(9.5rem, 15vh, 11rem) clamp(1.75rem, 4vw, 4.5rem) clamp(3rem, 6vh, 5rem);
}
.hero .eyebrow { margin-bottom: 1.5rem; }
.hero__title { color: var(--cream); margin-bottom: 1.6rem; font-size: clamp(2.4rem, 1.5rem + 2.6vw, 4rem); line-height: 1.06; }
.hero__title em { font-style: italic; font-weight: 400; }
.hero__lead { color: rgba(247,244,239,0.86); max-width: 46ch; margin-bottom: 2.4rem; }
.hero__image { position: relative; background: var(--sand); }
.hero__image img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero__image::after {
  content:""; position:absolute; inset:0; pointer-events:none;
  box-shadow: inset 26px 0 44px -30px rgba(24,71,52,0.6);
}

/* Meerdere tekstlinks naast elkaar */
.actions { display: flex; flex-wrap: wrap; align-items: center; gap: clamp(1.4rem, 3vw, 2.4rem); }

/* Split sections */
.split { display: grid; grid-template-columns: 0.82fr 1.18fr; gap: clamp(2.5rem, 6vw, 6rem); align-items: center; }
.split--reverse { grid-template-columns: 1.18fr 0.82fr; }
.split--reverse .split__media { order: 2; }

/* Tekstsectie in twee kolommen: kop links, verhaal rechts. Zelfde ritme
   als de split met beeld, maar zonder foto. Gebruikt op de homepage. */
.split--text { grid-template-columns: 0.85fr 1.15fr; align-items: start; }
.split--text .split__head h2 { margin-top: 1.2rem; }
.split--text .split__head .rule { margin-top: 1.7rem; }
.split--text .split__body p:last-of-type { margin-bottom: 0; }
.split__media { position: relative; }
.split__media img { width: 100%; height: auto; display: block; }
.split__media .caption,
.split__media .badge,
.over__media .badge {
  position: absolute; left: 1.4rem; bottom: 1.4rem;
  font-size: 0.64rem; letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--cream); background: var(--green-dark-90);
  padding: 0.5rem 0.9rem; -webkit-backdrop-filter: blur(2px); backdrop-filter: blur(2px);
}
.split__body .eyebrow { margin-bottom: 1.4rem; }
.split__body .rule { margin-block: 1.8rem 2rem; }
.split__body p { margin-bottom: 1.4em; }
.split__body .tlink { margin-top: 1rem; }

/* Intro */
.intro { text-align: center; }
.intro .rule { margin: 1.8rem auto 2.2rem; }
.intro__title { margin-bottom: 1.6rem; }

/* Quote */
.quote { text-align: center; }
.quote__mark { font-family: var(--font-display); font-size: 5rem; line-height: 0; color: var(--green-sage); display: block; height: 2.2rem; }
.quote__text {
  font-family: var(--font-display); font-style: italic; font-weight: 400;
  font-size: clamp(1.7rem, 1.2rem + 2.4vw, 3rem); line-height: 1.32;
  color: var(--cream); margin: 2rem auto 2.4rem; max-width: 880px;
}
.quote__by { font-size: 0.74rem; letter-spacing: 0.26em; text-transform: uppercase; color: rgba(247,244,239,0.72); font-weight: 600; }

/* Over teaser */
.over { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(2.5rem, 6vw, 6rem); align-items: center; }
.over__media { position: relative; }
.over__media img { width: 100%; height: auto; display: block; border-radius: 4px; }

@media (max-width: 860px) {
  .hero { grid-template-columns: 1fr; min-height: 0; }
  /* Op mobiel de hero-foto in zijn eigen verhouding tonen in plaats van
     hem naar 4/3 bij te snijden. Werkt voor elke foto die je hier zet. */
  .hero { padding-top: calc(clamp(50px, 5.6vw, 62px) + 2 * clamp(0.85rem, 1.8vw, 1.35rem)); }
  .hero__image { order: -1; }
  .hero__image img { position: static; height: auto; }
  .hero__panel-inner { max-width: none; margin: 0; padding: clamp(4.5rem,15vw,6rem) var(--gutter) clamp(3rem,9vw,4rem); }
  .split, .over { grid-template-columns: 1fr; gap: 2.5rem; }
  .split--reverse .split__media { order: 0; }
}

/* ============================================================
   PAGINA-ONDERDELEN die eerder per pagina inline stonden
   ============================================================ */

/* Concept — 'aan alles is gedacht' */
.included { list-style: none; margin: 0; padding: 0; display: grid; gap: clamp(1.6rem, 3vw, 2.4rem); grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }
.included li { padding-top: 1.4rem; border-top: 1px solid var(--line); }
.included h3 { font-size: 1.25rem; margin: 0 0 0.5rem; }
.included p { margin: 0; color: var(--ink-soft); font-size: 0.96rem; }

/* Over — de filosofie */
.values { list-style: none; margin: 0; padding: 0; display: grid; gap: clamp(2rem, 4vw, 3rem); grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); }
.values li { text-align: center; }
.values__mark { width: 40px; height: 40px; margin: 0 auto 1.2rem; border: 1px solid var(--green-sage); border-radius: 50%; display: grid; place-items: center; }
.values__mark span { width: 7px; height: 7px; border-radius: 50%; background: var(--green-sage); }
.values h3 { font-size: 1.3rem; margin: 0 0 0.6rem; }
.values p { margin: 0; color: var(--ink-soft); font-size: 0.96rem; }

/* Ervaring — tijdlijn met meelopende intro */
.timeline-wrap { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(2.5rem, 6vw, 5rem); align-items: start; }
.timeline-intro { position: sticky; top: 120px; }

/* Gedeelde afsluitsectie */
.cta { text-align: center; }
.cta .lead { max-width: 50ch; margin-inline: auto; }
.cta .tlink { margin-top: 2rem; }
.cta .actions { justify-content: center; margin-top: 2rem; }

/* Contact — werkgebied en notitie */
.area { text-align: center; max-width: 640px; margin-inline: auto; }
.area .rule { margin: 1.5rem auto 1.8rem; }
.contact__note { margin-top: 2.4rem; padding-top: 1.8rem; border-top: 1px solid var(--line); max-width: 42ch; }
.contact__note p { color: var(--ink-soft); font-size: 0.96rem; margin: 0; }

@media (max-width: 860px) {
  .timeline-wrap { grid-template-columns: 1fr; gap: 2.5rem; }
  .timeline-intro { position: static; }
}

/* ============================================================
   FEITEN — definitielijst met praktische informatie
   ============================================================ */
.facts { margin: clamp(2rem, 4vw, 3rem) 0 0; border-top: 1px solid var(--line); }
.facts > div {
  display: grid; grid-template-columns: 1fr; gap: 0.3rem 2rem;
  padding-block: 1.35rem; border-bottom: 1px solid var(--line);
}
.facts dt {
  font-family: var(--font-body);
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--green-sage); padding-top: 0.4rem;
}
.facts dd { margin: 0; color: var(--ink-soft); max-width: 60ch; }
.section--green .facts,
.section--green .facts > div { border-color: var(--line-light); }
.section--green .facts dd { color: rgba(247,244,239,0.82); }
@media (min-width: 720px) {
  .facts > div { grid-template-columns: 15rem 1fr; gap: 0 2.5rem; }
}

/* Kolom met beperkte leesbreedte binnen een .wrap */
.hold { max-width: 860px; }

/* ============================================================
   FORMULIER (aanvraag) — sober, in de stijl van de site
   ============================================================ */
.form { display: grid; gap: 1.35rem; margin-top: clamp(2rem, 4vw, 2.75rem); }
.form__row { display: grid; gap: 1.35rem; }
@media (min-width: 620px) { .form__row--2 { grid-template-columns: 1fr 1fr; } }

.field { display: grid; gap: 0.5rem; }
.field label {
  font-family: var(--font-body);
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--green-dark);
}
.field label .req { color: var(--green-sage); }
.field input, .field select, .field textarea {
  font-family: var(--font-body); font-size: 1rem; line-height: 1.6;
  color: var(--ink); background: var(--white);
  border: 1px solid var(--line-strong); border-radius: 0;
  padding: 0.85rem 1rem; width: 100%;
  transition: border-color .3s var(--ease);
  -webkit-appearance: none; appearance: none;
}
.field select {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='none' stroke='%23184734' stroke-width='1.4' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 1rem center; padding-right: 2.6rem;
}
.field textarea { min-height: 8.5rem; resize: vertical; }
.field input:hover, .field select:hover, .field textarea:hover { border-color: var(--green-sage); }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--green-dark); }
.field__hint { font-size: 0.8rem; color: var(--ink-soft); }
.form__note { font-size: 0.85rem; color: var(--ink-soft); max-width: 56ch; margin: 0; }
.form__note a { text-decoration: underline; text-underline-offset: 3px; }
.hp { position: absolute; left: -9999px; opacity: 0; height: 0; width: 0; }

/* ============================================================
   ALGEMENE VOORWAARDEN
   ============================================================ */
.legal { max-width: 68ch; }
.legal > p { margin-bottom: 1.1rem; }
.legal .art { padding-top: 2.4rem; margin-top: 2.4rem; border-top: 1px solid var(--line); }
.legal .art:first-of-type { border-top: 0; margin-top: 0; padding-top: 0; }
.legal .art__n {
  display: block; font-family: var(--font-body);
  font-size: 0.68rem; font-weight: 600; letter-spacing: 0.26em; text-transform: uppercase;
  color: var(--green-sage); margin-bottom: 0.7rem;
}
.legal h2 { font-size: clamp(1.3rem, 1.1rem + 0.9vw, 1.65rem); margin-bottom: 0.9rem; }
.legal ol, .legal ul { margin: 0 0 1.1rem; padding-left: 1.4rem; }
.legal li { margin-bottom: 0.55rem; }
.legal .note {
  background: var(--sand); border-left: 3px solid var(--green-sage);
  padding: 1.1rem 1.35rem; margin: 1.4rem 0; font-size: 0.95rem;
}
.legal .note p:last-child { margin-bottom: 0; }
.legal .meta-line {
  font-size: 0.86rem; color: var(--ink-soft);
  border-top: 1px solid var(--line); margin-top: 3rem; padding-top: 1.2rem;
}

/* ============================================================
   KLEINE AANVULLINGEN
   ============================================================ */
.footer__bottom a { text-decoration: underline; text-underline-offset: 3px; }

/* ============================================================
   MESSING-ACCENT
   Eén warme kleur naast het groen, spaarzaam toegepast: de dunne
   streepjes, de gangnummers, het aanhalingsteken en de kleine
   labels boven een gerecht. Koppen en lopende tekst blijven groen
   en inkt, zodat de site rustig blijft.
   ============================================================ */

/* Gangnummers en stapnummers */
.step__num { color: var(--brass); }
.section--green .step__num { color: var(--brass-light); }

/* Het grote aanhalingsteken bij de quotes */
.quote__mark { color: var(--brass-light); }
.feature__inner .quote__mark { color: var(--brass-light); }

/* Kleine labels boven een gerecht en bij de tijdlijn */
.dish__course { color: var(--brass-text); }
.timeline__phase { color: var(--brass-text); }

/* De cirkels bij de filosofie op de over-pagina */
.values__mark { border-color: var(--brass); }
.values__mark span { background: var(--brass); }

/* Artikelnummers in de voorwaarden */
.legal .art__n { color: var(--brass-text); }

/* Sterretje bij verplichte velden */
.field label .req { color: var(--brass); }

/* De verzendknop krijgt een messing rand bij hover */
.btn:hover { background: var(--brass-text); border-color: var(--brass-text); }

/* Tekstlinks: het pijltje warm, de lijn eronder messing bij hover */
.tlink:hover { color: var(--brass-text); border-color: var(--brass); }
.tlink--light:hover { color: var(--white); border-color: var(--brass-light); }

/* Actieve pagina in het menu */
.nav__link[aria-current="page"] { color: var(--brass-text); }
.nav__link[aria-current="page"]::after { background: var(--brass); }

/* Het streepje binnen een stap blijft ingetogen groen, als tegenwicht */
.step__rule { background: var(--line-strong); }
.section--green .step__rule { background: rgba(247, 244, 239, 0.4); }
