/* =========================================================================
   De Amsterdamsche Cateraar - Kant & Klare Maaltijden
   High-end huisstijl: Libre Baskerville + Inter, ink & goud uit het logo.
   ========================================================================= */

@import url('fonts.css');

/* ---- Design tokens ---- */
:root {
  --ink: #1b1713;            /* diep warm zwart (logo) */
  --ink-2: #3c352d;
  --gold: #DDA733;           /* goud uit het logo */
  --gold-deep: #A87C1E;
  --gold-soft: #f3e3bd;

  --bg: #faf7f1;             /* warm gebroken wit */
  --surface: #ffffff;
  --surface-2: #f4efe4;
  --cream: #f6efdb;
  --muted: #7d7568;
  --line: #e6dfd0;
  --hairline: #d9cfba;

  --ok: #3d7a52;
  --danger: #b03a2e;
  --teal: #2F6F6B;

  --shadow-sm: 0 1px 2px rgba(27,23,19,.05), 0 2px 10px rgba(27,23,19,.05);
  --shadow: 0 10px 32px rgba(27,23,19,.12);
  --shadow-lg: 0 26px 70px rgba(27,23,19,.20);

  --radius: 12px;
  --radius-lg: 20px;
  --maxw: 1180px;

  --display: 'Libre Baskerville', 'Baskerville', Georgia, serif;
  --sans: 'Inter', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  --ease: cubic-bezier(.22,.61,.36,1);
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body { margin: 0; font-family: var(--sans); color: var(--ink); background: var(--bg); line-height: 1.65; font-size: 16px; -webkit-font-smoothing: antialiased; overflow-x: clip; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
h1, h2, h3, h4 { font-family: var(--display); font-weight: 400; line-height: 1.18; margin: 0 0 .45em; letter-spacing: .002em; }
h1 { font-size: clamp(2.1rem, 4.6vw, 3.4rem); }
h2 { font-size: clamp(1.7rem, 3.2vw, 2.4rem); }
h3 { font-size: 1.28rem; }
p { margin: 0 0 1rem; }
.serif-italic { font-family: var(--display); font-style: italic; }

/* ---- Layout ---- */
.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.section { padding: 84px 0; position: relative; }
.section--tight { padding: 44px 0; }
.center { text-align: center; }
.muted { color: var(--muted); }
.eyebrow { font-family: var(--sans); font-weight: 600; letter-spacing: .22em; text-transform: uppercase; font-size: .7rem; color: var(--gold-deep); margin: 0 0 1rem; display: inline-flex; align-items: center; gap: 12px; }
.eyebrow::before, .eyebrow.lined::after { content: ""; width: 28px; height: 1px; background: var(--gold); }
.eyebrow.bare::before { display: none; }
.grid { display: grid; gap: 22px; }
.hide { display: none !important; }
.stack > * + * { margin-top: 14px; }
.flex { display: flex; gap: 12px; align-items: center; }
.flex-between { display: flex; gap: 12px; align-items: center; justify-content: space-between; }
.wrap { flex-wrap: wrap; }

/* ---- Buttons: hoog contrast, ink -> goud ---- */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: .55em; border: 1px solid transparent; border-radius: 999px; padding: 14px 28px; font-weight: 600; font-size: .92rem; letter-spacing: .02em; line-height: 1; white-space: nowrap; transition: transform .18s var(--ease), box-shadow .22s var(--ease), background .22s, color .22s, border-color .22s; }
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn--primary { background: var(--ink); color: #fff; box-shadow: 0 8px 22px rgba(27,23,19,.22); }
.btn--primary:hover { background: var(--gold); color: var(--ink); box-shadow: 0 10px 28px rgba(221,167,51,.4); }
.btn--gold { background: var(--gold); color: var(--ink); box-shadow: 0 8px 22px rgba(221,167,51,.35); }
.btn--gold:hover { background: var(--ink); color: #fff; }
.btn--ghost { background: transparent; border-color: var(--ink); color: var(--ink); }
.btn--ghost:hover { background: var(--ink); color: #fff; }
.btn--light { background: #fff; border-color: var(--line); color: var(--ink); box-shadow: var(--shadow-sm); }
.btn--light:hover { border-color: var(--gold); }
.btn--block { width: 100%; }
.btn--sm { padding: 10px 18px; font-size: .82rem; }
.btn--lg { padding: 17px 34px; font-size: .98rem; }
.btn[disabled] { opacity: .4; cursor: not-allowed; transform: none; box-shadow: none; }
.btn .arr { display: inline-flex; transition: transform .22s var(--ease); }
.btn:hover .arr { transform: translateX(4px); }

/* ---- Logo (officiële beeldmerken) ---- */
.brand { display: inline-flex; align-items: center; }
.brand img { display: block; }
.site-header .brand img { height: 46px; width: auto; }
.site-footer .brand img { height: 62px; width: auto; }

/* ---- Header ---- */
.site-header { position: sticky; top: 0; z-index: 50; background: rgba(250,247,241,.88); backdrop-filter: blur(14px); border-bottom: 1px solid transparent; transition: border-color .3s, box-shadow .3s; }
.site-header.scrolled { border-bottom-color: var(--line); box-shadow: 0 6px 24px rgba(27,23,19,.06); }
.site-header__inner { display: flex; align-items: center; justify-content: space-between; height: 78px; }
.nav { display: flex; align-items: center; gap: 6px; }
.nav a { padding: 9px 15px; font-weight: 500; font-size: .9rem; color: var(--ink-2); position: relative; letter-spacing: .01em; transition: color .2s; }
.nav a::after { content: ""; position: absolute; left: 50%; bottom: 3px; width: 0; height: 1.5px; background: var(--gold); transition: width .28s var(--ease), left .28s var(--ease); }
.nav a:hover::after, .nav a.active::after { width: 46%; left: 27%; }
.nav a.active, .nav a:hover { color: var(--ink); }
.header-actions { display: flex; align-items: center; gap: 10px; }
.cart-btn { position: relative; background: #fff; border: 1px solid var(--line); border-radius: 999px; width: 46px; height: 46px; display: grid; place-items: center; box-shadow: var(--shadow-sm); transition: border-color .2s, transform .2s; }
.cart-btn:hover { border-color: var(--gold); transform: translateY(-1px); }
.cart-count { position: absolute; top: -6px; right: -6px; background: var(--gold); color: var(--ink); font-size: .66rem; font-weight: 700; min-width: 19px; height: 19px; border-radius: 999px; display: grid; place-items: center; padding: 0 5px; animation: pop .3s var(--ease); }
@keyframes pop { 0% { transform: scale(0); } 70% { transform: scale(1.25); } 100% { transform: scale(1); } }
.menu-toggle { display: none; background: none; border: 1px solid var(--line); border-radius: 10px; width: 46px; height: 46px; }

/* ---- Topbanners ---- */
.demo-banner { background: #262019; color: rgba(255,255,255,.75); text-align: center; font-size: .74rem; letter-spacing: .06em; padding: 7px 16px; }
.demo-banner strong { color: var(--gold); font-weight: 600; }
.demo-banner a { color: rgba(255,255,255,.9); text-decoration: underline; text-underline-offset: 2px; }

.launch-bar { background: var(--ink); color: #f5efe2; position: relative; overflow: hidden; border-bottom: 1px solid rgba(221,167,51,.35); }
.launch-bar__inner { display: flex; align-items: center; justify-content: center; gap: 22px; flex-wrap: wrap; padding: 11px 16px; font-size: .8rem; letter-spacing: .04em; position: relative; z-index: 1; }
.launch-bar .lb-title { display: inline-flex; align-items: center; gap: 8px; color: var(--gold); font-weight: 600; text-transform: uppercase; letter-spacing: .18em; font-size: .7rem; }
.launch-bar .tier { display: inline-flex; align-items: baseline; gap: 5px; font-family: var(--display); font-size: .95rem; }
.launch-bar .tier b { color: var(--gold); font-weight: 400; }
.launch-bar .tier .sep { color: rgba(255,255,255,.35); margin: 0 2px; }
.launch-bar a.lb-link { color: #fff; border-bottom: 1px solid var(--gold); padding-bottom: 1px; font-weight: 500; transition: color .2s; }
.launch-bar a.lb-link:hover { color: var(--gold); }
.launch-bar::after { content: ""; position: absolute; top: 0; left: -60%; width: 34%; height: 100%; background: linear-gradient(100deg, transparent, rgba(221,167,51,.14), transparent); animation: sweep 7s linear infinite; }
@keyframes sweep { to { left: 135%; } }

/* ---- Ticker (doorlopende lijn) ---- */
.ticker { border-top: 1px solid var(--hairline); border-bottom: 1px solid var(--hairline); background: var(--surface); overflow: hidden; padding: 13px 0; }
.ticker__track { display: flex; gap: 0; width: max-content; animation: ticker 36s linear infinite; }
.ticker:hover .ticker__track { animation-play-state: paused; }
.ticker__item { display: inline-flex; align-items: center; gap: 26px; padding: 0 26px; font-family: var(--sans); font-size: .72rem; font-weight: 600; letter-spacing: .22em; text-transform: uppercase; color: var(--ink-2); white-space: nowrap; }
.ticker__item svg { color: var(--gold); flex: none; }
@keyframes ticker { to { transform: translateX(-50%); } }

/* =========================================================================
   HERO
   ========================================================================= */
.hero { position: relative; padding: 74px 0 64px; overflow: hidden; }
.hero__grid { display: grid; grid-template-columns: 1.04fr .96fr; gap: 56px; align-items: center; }
.hero h1 { margin-bottom: .5em; }
.hero__lead { font-size: 1.08rem; color: var(--ink-2); max-width: 44ch; line-height: 1.75; }
.hero__cta { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 30px; }
.hero__points { display: flex; gap: 26px; flex-wrap: wrap; margin-top: 36px; padding-top: 26px; border-top: 1px solid var(--line); }
.hero__point { display: flex; align-items: center; gap: 10px; font-size: .86rem; font-weight: 500; color: var(--ink-2); }
.hero__point svg { color: var(--gold-deep); flex: none; }
.hero__art { position: relative; }
.hero__art-main { position: relative; aspect-ratio: 5/6; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); will-change: transform; }
.hero__art-main img { width: 100%; height: 100%; object-fit: cover; }
.hero__art-main::after { content: ""; position: absolute; inset: 0; border-radius: var(--radius-lg); box-shadow: inset 0 0 0 1px rgba(255,255,255,.25); pointer-events: none; }
.hero__price-chip { position: absolute; bottom: -20px; left: -20px; background: var(--ink); color: #fff; border-radius: 16px; padding: 16px 22px; box-shadow: var(--shadow-lg); display: flex; align-items: center; gap: 13px; animation: float 5s ease-in-out infinite; }
.hero__price-chip .big { font-family: var(--display); font-size: 1.7rem; color: var(--gold); line-height: 1; }
.hero__price-chip small { font-size: .74rem; line-height: 1.35; color: rgba(255,255,255,.75); }
.hero__float-chip { position: absolute; top: 26px; right: -16px; background: #fff; color: var(--ink); border: 1px solid var(--gold); border-radius: 999px; padding: 10px 18px; font-size: .78rem; font-weight: 600; letter-spacing: .04em; box-shadow: var(--shadow); display: inline-flex; align-items: center; gap: 8px; animation: float 6s ease-in-out .6s infinite; }
.hero__float-chip svg { color: var(--gold-deep); }
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-9px); } }
.hero__kader { position: absolute; top: 26px; left: -26px; right: 26px; bottom: -26px; border: 1px solid var(--gold); border-radius: var(--radius-lg); z-index: -1; opacity: .55; }

/* ---- Reveal-on-scroll ---- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .75s var(--ease), transform .75s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: .1s; }
.reveal[data-delay="2"] { transition-delay: .2s; }
.reveal[data-delay="3"] { transition-delay: .3s; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; } .launch-bar::after, .hero__price-chip, .hero__float-chip, .ticker__track { animation: none !important; } }

/* ---- USP-balk ---- */
.usps { display: grid; grid-template-columns: repeat(3, 1fr) auto; gap: 26px; align-items: center; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 26px 30px; box-shadow: var(--shadow-sm); }
.usp { display: flex; gap: 14px; align-items: flex-start; }
.usp__icon { flex: none; width: 44px; height: 44px; border-radius: 12px; background: var(--cream); color: var(--gold-deep); display: grid; place-items: center; }
.usp strong { display: block; font-family: var(--display); font-size: 1rem; }
.usp span { font-size: .82rem; color: var(--muted); }

/* ---- Steps ---- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; background: #fff; box-shadow: var(--shadow-sm); }
.step { padding: 34px 28px; position: relative; border-right: 1px solid var(--line); transition: background .25s; }
.step:last-child { border-right: none; }
.step:hover { background: var(--cream); }
.step__num { font-family: var(--display); font-size: .8rem; color: var(--gold-deep); letter-spacing: .2em; margin-bottom: 14px; }
.step h3 { font-size: 1.08rem; margin: 0 0 8px; }
.step p { font-size: .87rem; color: var(--muted); margin: 0; }

/* =========================================================================
   MENU
   ========================================================================= */
.cat-head { display: flex; align-items: baseline; gap: 16px; margin: 8px 0 26px; }
.cat-head h2 { margin: 0; }
.cat-head .rule { flex: 1; height: 1px; background: var(--hairline); }
.cat-head span.count { color: var(--muted); font-size: .8rem; letter-spacing: .1em; text-transform: uppercase; }
.menu-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; align-items: start; }
.dish { --theme: var(--gold); background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; display: flex; flex-direction: column; box-shadow: var(--shadow-sm); transition: transform .22s var(--ease), box-shadow .28s, border-color .22s; }
.dish:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: var(--gold-soft); }
.dish__media { position: relative; aspect-ratio: 4/4.4; overflow: hidden; background: var(--surface-2); }
.dish__media img { width: 100%; height: 100%; object-fit: cover; object-position: center 62%; transition: transform .7s var(--ease); }
.dish:hover .dish__media img { transform: scale(1.045); }
.dish__ph { width: 100%; height: 100%; display: grid; place-items: center; color: rgba(0,0,0,.3); font-family: var(--display); font-size: 1rem; padding: 20px; text-align: center; }
.dish__tag { position: absolute; top: 14px; left: 14px; background: rgba(255,255,255,.95); backdrop-filter: blur(5px); border-radius: 999px; padding: 6px 13px; font-size: .62rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--ink); display: inline-flex; align-items: center; gap: 7px; }
.dish__tag::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--theme); }
.dish__body { padding: 22px 24px 24px; display: flex; flex-direction: column; }
.dish__title { font-family: var(--display); font-size: 1.18rem; line-height: 1.3; margin-bottom: 7px; }
.dish__desc { font-size: .87rem; color: var(--muted); margin-bottom: 16px; }
.dish__foot { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.dish__price { font-family: var(--display); font-size: 1.35rem; }

/* Uitklap: ingrediënten / voedingswaarden / allergenen */
.dish__more { border: none; background: none; color: var(--gold-deep); font-weight: 600; font-size: .78rem; letter-spacing: .06em; padding: 14px 0 0; display: flex; align-items: center; gap: 7px; text-transform: uppercase; }
.dish__more svg { transition: transform .28s var(--ease); }
.dish__more[aria-expanded="true"] svg { transform: rotate(180deg); }
.dish__detail { display: none; }
.dish__detail.open { display: block; animation: detailIn .32s var(--ease); }
@keyframes detailIn { from { opacity: 0; transform: translateY(-6px); } to { opacity: 1; transform: none; } }
.dish__detail-inner { padding-top: 16px; margin-top: 8px; border-top: 1px solid var(--line); font-size: .84rem; }
.dish__detail h4 { font-family: var(--sans); font-size: .66rem; text-transform: uppercase; letter-spacing: .18em; color: var(--gold-deep); margin: 14px 0 6px; }
.dish__detail h4:first-child { margin-top: 0; }
.nutri { display: grid; grid-template-columns: repeat(5, 1fr); gap: 6px; text-align: center; }
.nutri div { background: var(--bg); border: 1px solid var(--line); border-radius: 9px; padding: 9px 4px; }
.nutri b { display: block; font-family: var(--display); font-weight: 400; font-size: .98rem; }
.nutri span { font-size: .62rem; color: var(--muted); letter-spacing: .04em; }
.allergens { display: flex; flex-wrap: wrap; gap: 6px; }
.allergen { border: 1px solid var(--hairline); color: var(--ink-2); border-radius: 999px; padding: 3px 11px; font-size: .7rem; font-weight: 500; }

/* =========================================================================
   Staffel-actie: verfijnd en uniform
   ========================================================================= */
.actie-wrap { background: var(--ink); border-radius: var(--radius-lg); padding: clamp(36px, 5vw, 64px); position: relative; overflow: hidden; }
.actie-wrap::before { content: ""; position: absolute; inset: 14px; border: 1px solid rgba(221,167,51,.28); border-radius: calc(var(--radius-lg) - 8px); pointer-events: none; }
.actie-wrap .eyebrow { color: var(--gold); }
.actie-wrap .eyebrow::before, .actie-wrap .eyebrow.lined::after { background: var(--gold); opacity: .6; }
.actie-wrap h2 { color: #f7f2e6; }
.actie-wrap .lead { color: rgba(247,242,230,.65); }
.staffel { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 40px; position: relative; z-index: 1; }
.staffel-card { background: rgba(255,255,255,.035); border: 1px solid rgba(221,167,51,.3); border-radius: 16px; padding: 36px 28px 32px; text-align: center; transition: transform .24s var(--ease), background .3s, border-color .3s; }
.staffel-card:hover { transform: translateY(-5px); background: rgba(255,255,255,.07); border-color: var(--gold); }
.staffel-label { font-size: .64rem; font-weight: 600; letter-spacing: .26em; text-transform: uppercase; color: var(--gold); margin-bottom: 20px; }
.staffel-num { font-family: var(--display); font-size: 2.9rem; line-height: 1; color: #f7f2e6; display: flex; align-items: center; justify-content: center; gap: 16px; }
.staffel-num svg { color: var(--gold); }
.staffel-sub { color: rgba(247,242,230,.55); font-size: .86rem; margin-top: 16px; }
.staffel-free { margin-top: 8px; font-family: var(--display); font-style: italic; font-size: 1rem; color: var(--gold); }
.staffel-note { text-align: center; color: rgba(247,242,230,.45); font-size: .8rem; margin: 30px 0 0; position: relative; z-index: 1; }
.staffel-note b { color: rgba(247,242,230,.8); font-weight: 600; }

/* ---- Feature-secties ---- */
.feature { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.feature__img { position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); aspect-ratio: 5/4; }
.feature__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.feature__img:hover img { transform: scale(1.04); }
.feature__img .kader { position: absolute; inset: 14px; border: 1px solid rgba(255,255,255,.45); border-radius: calc(var(--radius-lg) - 8px); pointer-events: none; }
.feature--rev .feature__img { order: 2; }
.ticklist { list-style: none; padding: 0; margin: 20px 0 0; }
.ticklist li { display: flex; gap: 14px; align-items: flex-start; padding: 10px 0; border-bottom: 1px solid var(--line); font-size: .94rem; }
.ticklist li:last-child { border-bottom: none; }
.ticklist .tick { flex: none; width: 26px; height: 26px; border-radius: 50%; border: 1px solid var(--gold); color: var(--gold-deep); display: grid; place-items: center; margin-top: 1px; }
.ticklist .tick svg { width: 13px; height: 13px; }

/* ---- CTA band ---- */
.band { position: relative; border-radius: var(--radius-lg); overflow: hidden; padding: clamp(46px, 6vw, 84px) 40px; text-align: center; color: #fff; }
.band__bg { position: absolute; inset: 0; }
.band__bg img { width: 100%; height: 100%; object-fit: cover; }
.band__bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(rgba(23,19,15,.72), rgba(23,19,15,.78)); }
.band__content { position: relative; z-index: 1; max-width: 620px; margin: 0 auto; }
.band h2 { color: #fff; }
.band p { color: rgba(255,255,255,.78); }

/* ---- Cards ---- */
.card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; box-shadow: var(--shadow-sm); }
.card--pad-lg { padding: 34px; }

/* ---- Cart drawer ---- */
.drawer-backdrop { position: fixed; inset: 0; background: rgba(27,23,19,.45); z-index: 90; opacity: 0; visibility: hidden; transition: opacity .25s; }
.drawer-backdrop.open { opacity: 1; visibility: visible; }
.drawer { position: fixed; top: 0; right: 0; height: 100%; width: min(430px, 100%); background: var(--bg); z-index: 100; box-shadow: var(--shadow-lg); transform: translateX(100%); transition: transform .32s var(--ease); display: flex; flex-direction: column; }
.drawer.open { transform: translateX(0); }
.drawer__head { display: flex; align-items: center; justify-content: space-between; padding: 22px 24px; border-bottom: 1px solid var(--line); }
.drawer__head h3 { margin: 0; font-size: 1.15rem; }
.drawer__body { flex: 1; overflow-y: auto; padding: 18px 24px; }
.drawer__foot { border-top: 1px solid var(--line); padding: 20px 24px; background: #fff; }
.icon-btn { background: none; border: none; font-size: 1.4rem; line-height: 1; color: var(--muted); width: 38px; height: 38px; border-radius: 8px; }
.icon-btn:hover { background: var(--surface-2); color: var(--ink); }
.cart-line { display: grid; grid-template-columns: 56px 1fr auto; gap: 13px; align-items: center; padding: 13px 0; border-bottom: 1px solid var(--line); }
.cart-line__img { width: 56px; height: 56px; border-radius: 10px; object-fit: cover; object-position: center 62%; background: var(--surface-2); }
.cart-line__name { font-weight: 600; font-size: .88rem; line-height: 1.3; }
.cart-line__meta { font-size: .8rem; color: var(--muted); }
.cart-empty { text-align: center; color: var(--muted); padding: 46px 0; }
.cart-empty svg { color: var(--hairline); margin: 0 auto 14px; }
.cart-bonus { background: var(--cream); border: 1px solid var(--gold-soft); border-radius: 11px; padding: 12px 15px; font-size: .83rem; margin-bottom: 12px; display: flex; gap: 10px; align-items: flex-start; }
.cart-bonus svg { color: var(--gold-deep); flex: none; margin-top: 2px; }
.cart-bonus b { color: var(--gold-deep); }
.progress { height: 5px; background: rgba(27,23,19,.08); border-radius: 999px; overflow: hidden; margin-top: 8px; }
.progress > i { display: block; height: 100%; background: var(--gold); border-radius: 999px; transition: width .5s var(--ease); }

/* ---- Forms ---- */
.field { margin-bottom: 16px; }
.field label { display: block; font-weight: 600; font-size: .84rem; margin-bottom: 6px; }
.field .hint { font-weight: 400; color: var(--muted); font-size: .78rem; }
.input, .select, textarea.input { width: 100%; padding: 12px 15px; border: 1px solid var(--line); border-radius: 10px; background: #fff; font-family: inherit; font-size: .93rem; color: var(--ink); }
.input:focus, .select:focus, textarea.input:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(221,167,51,.16); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

/* ---- Auth ---- */
.auth-options { display: grid; gap: 10px; }
.auth-btn { display: flex; align-items: center; justify-content: center; gap: 10px; padding: 13px 16px; border: 1px solid var(--line); border-radius: 11px; background: #fff; font-weight: 600; font-size: .92rem; box-shadow: var(--shadow-sm); transition: border-color .2s, transform .15s; }
.auth-btn:hover { border-color: var(--gold); transform: translateY(-1px); }
.auth-divider { display: flex; align-items: center; gap: 12px; color: var(--muted); font-size: .78rem; letter-spacing: .04em; margin: 8px 0; }
.auth-divider::before, .auth-divider::after { content: ""; flex: 1; height: 1px; background: var(--line); }

/* ---- Slot picker ---- */
.slots { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 12px; }
.slot { border: 1px solid var(--line); border-radius: 13px; padding: 17px; background: #fff; cursor: pointer; transition: border .2s, background .2s, transform .18s; }
.slot:hover { border-color: var(--gold); transform: translateY(-2px); }
.slot.selected { border-color: var(--gold-deep); background: var(--cream); box-shadow: 0 0 0 3px rgba(221,167,51,.18); }
.slot.disabled { opacity: .42; cursor: not-allowed; background: var(--surface-2); transform: none; }
.slot__day { font-family: var(--display); font-size: 1.12rem; text-transform: capitalize; }
.slot__date { font-size: .84rem; color: var(--muted); }
.slot__time { font-size: .78rem; color: var(--gold-deep); font-weight: 600; margin-top: 5px; letter-spacing: .03em; }
.slot__note { font-size: .72rem; color: var(--muted); margin-top: 4px; }

/* ---- Pills ---- */
.pill { display: inline-flex; align-items: center; gap: 6px; padding: 4px 12px; border-radius: 999px; font-size: .72rem; font-weight: 600; letter-spacing: .03em; }
.pill--ok { background: #e9f2ec; color: var(--ok); }
.pill--info { background: #e7efee; color: var(--teal); }
.pill--muted { background: var(--surface-2); color: var(--muted); }
.pill--gold { background: var(--cream); color: var(--gold-deep); }

/* ---- Tables ---- */
.table-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; }
table.data { width: 100%; border-collapse: collapse; font-size: .9rem; }
table.data th, table.data td { text-align: left; padding: 13px 16px; border-bottom: 1px solid var(--line); }
table.data th { background: var(--surface-2); font-weight: 600; font-size: .72rem; text-transform: uppercase; letter-spacing: .1em; color: var(--muted); white-space: nowrap; }
table.data tr:last-child td { border-bottom: none; }
table.data tbody tr:hover { background: var(--bg); }
table.data tfoot th { background: #fff; border-top: 2px solid var(--ink); font-size: .85rem; color: var(--ink); }
.num { text-align: right; font-variant-numeric: tabular-nums; }

/* ---- Stat tiles ---- */
.stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 16px; }
.stat { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 22px 24px; box-shadow: var(--shadow-sm); }
.stat__label { font-size: .74rem; color: var(--muted); font-weight: 600; letter-spacing: .1em; text-transform: uppercase; }
.stat__value { font-family: var(--display); font-size: 1.9rem; line-height: 1.2; margin-top: 6px; }
.stat__sub { font-size: .8rem; color: var(--muted); margin-top: 2px; }
.stat--accent { background: var(--ink); color: #fff; border-color: var(--ink); }
.stat--accent .stat__label, .stat--accent .stat__sub { color: rgba(255,255,255,.6); }
.stat--accent .stat__value { color: var(--gold); }
.stat--gold { background: var(--cream); border-color: var(--gold-soft); }
.stat--gold .stat__value { color: var(--gold-deep); }

/* ---- Charts ---- */
.chart { display: flex; align-items: flex-end; gap: 8px; height: 220px; padding: 10px 4px 0; overflow-x: auto; }
.bar { flex: 1 0 26px; min-width: 26px; display: flex; flex-direction: column; align-items: center; gap: 6px; height: 100%; justify-content: flex-end; }
.bar__fill { width: 100%; max-width: 38px; background: linear-gradient(180deg, var(--gold), var(--gold-deep)); border-radius: 6px 6px 0 0; transition: height .8s var(--ease); }
.bar__fill:hover { filter: brightness(1.1); }
.bar__val { font-size: .72rem; font-weight: 700; font-variant-numeric: tabular-nums; }
.bar__lbl { font-size: .64rem; color: var(--muted); white-space: nowrap; }
.hbar { display: grid; grid-template-columns: 180px 1fr 40px; gap: 10px; align-items: center; padding: 6px 0; }
.hbar__track { background: var(--surface-2); border-radius: 999px; height: 16px; overflow: hidden; }
.hbar__fill { height: 100%; border-radius: 999px; transition: width .8s var(--ease); }

/* ---- Tabs ---- */
.tabs { display: flex; gap: 4px; border-bottom: 1px solid var(--line); margin-bottom: 26px; flex-wrap: wrap; }
.tab { padding: 12px 18px; border: none; background: none; font-weight: 600; font-size: .8rem; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); border-bottom: 2px solid transparent; margin-bottom: -1px; transition: color .2s; }
.tab.active { color: var(--ink); border-bottom-color: var(--gold); }
.tab:hover { color: var(--ink); }

/* ---- Toast ---- */
.toast-wrap { position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%); z-index: 200; display: flex; flex-direction: column; gap: 10px; align-items: center; }
.toast { background: var(--ink); color: #fff; padding: 13px 24px; border-radius: 999px; font-size: .88rem; font-weight: 500; letter-spacing: .02em; box-shadow: var(--shadow-lg); animation: toastIn .28s var(--ease); border: 1px solid rgba(221,167,51,.4); }
@keyframes toastIn { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: none; } }

/* ---- Order summary ---- */
.summary-line { display: flex; justify-content: space-between; padding: 7px 0; font-size: .92rem; }
.summary-line.disc { color: var(--ok); }
.summary-total { display: flex; justify-content: space-between; padding: 15px 0 0; margin-top: 8px; border-top: 1px solid var(--ink); font-family: var(--display); font-size: 1.3rem; }

.order-card { border: 1px solid var(--line); border-radius: var(--radius); background: #fff; padding: 22px 24px; box-shadow: var(--shadow-sm); transition: box-shadow .2s, border-color .2s; }
.order-card:hover { box-shadow: var(--shadow); border-color: var(--gold-soft); }
.order-card + .order-card { margin-top: 14px; }
.order-card__head { display: flex; justify-content: space-between; align-items: flex-start; gap: 12px; flex-wrap: wrap; }
.order-card__items { color: var(--muted); font-size: .88rem; margin: 10px 0 14px; }

/* ---- Route ---- */
.route-item { display: flex; gap: 15px; padding: 17px; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; box-shadow: var(--shadow-sm); align-items: flex-start; cursor: pointer; transition: box-shadow .2s; }
.route-item:hover { box-shadow: var(--shadow); }
.route-item + .route-item { margin-top: 12px; }
.route-num { flex: none; width: 32px; height: 32px; border-radius: 50%; background: var(--ink); color: var(--gold); display: grid; place-items: center; font-weight: 700; font-size: .85rem; transition: background .2s; }
.route-item.done { opacity: .55; }
.route-item.done .route-num { background: var(--ok); color: #fff; }
.route-addr { font-weight: 600; }
.route-meta { font-size: .84rem; color: var(--muted); }

.empty { text-align: center; padding: 56px 20px; color: var(--muted); }

/* =========================================================================
   FOOTER
   ========================================================================= */
.site-footer { background: var(--ink); color: rgba(247,242,230,.75); padding: 68px 0 30px; margin-top: 80px; border-top: 3px solid var(--gold); }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.15fr; gap: 36px; margin-bottom: 44px; }
.site-footer h4 { font-family: var(--sans); font-size: .68rem; text-transform: uppercase; letter-spacing: .24em; color: var(--gold); margin: 0 0 18px; }
.footer-links { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 12px; }
.footer-links a { color: rgba(247,242,230,.68); font-size: .9rem; display: inline-flex; align-items: center; gap: 9px; width: fit-content; transition: color .2s, gap .2s; }
.footer-links a::before { content: "›"; color: var(--gold); transition: transform .2s; }
.footer-links a:hover { color: #fff; gap: 12px; }
.footer-contact { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 13px; }
.footer-contact li { display: flex; align-items: flex-start; gap: 11px; font-size: .9rem; color: rgba(247,242,230,.68); }
.footer-contact svg { color: var(--gold); flex: none; margin-top: 3px; }
.footer-contact a:hover { color: #fff; }
.footer-brand-text { margin-top: 20px; max-width: 34ch; color: rgba(247,242,230,.55); font-size: .9rem; line-height: 1.7; }
.footer-bottom { border-top: 1px solid rgba(247,242,230,.14); padding-top: 24px; font-size: .78rem; color: rgba(247,242,230,.45); display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; align-items: center; }
.footer-bottom a { color: rgba(247,242,230,.45); }
.footer-bottom a:hover { color: #fff; }

/* ---- Page hero ---- */
.page-hero { padding: 52px 0 10px; }
.page-hero h1 { font-size: clamp(1.9rem, 4vw, 2.8rem); }

/* =========================================================================
   Responsive
   ========================================================================= */
@media (max-width: 960px) {
  .hero__grid { grid-template-columns: 1fr; gap: 40px; }
  .hero__art { order: -1; max-width: 380px; margin: 0 auto; }
  .steps { grid-template-columns: 1fr 1fr; }
  .step:nth-child(2) { border-right: none; }
  .step:nth-child(1), .step:nth-child(2) { border-bottom: 1px solid var(--line); }
  .menu-grid { grid-template-columns: repeat(2, 1fr); }
  .staffel { grid-template-columns: 1fr; }
  .usps { grid-template-columns: 1fr; gap: 18px; }
  .feature { grid-template-columns: 1fr; gap: 28px; }
  .feature--rev .feature__img { order: 0; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
}
@media (max-width: 680px) {
  .nav { display: none; }
  .menu-toggle { display: grid; place-items: center; }
  .nav.mobile-open { display: flex; position: absolute; top: 78px; left: 0; right: 0; flex-direction: column; align-items: stretch; background: var(--bg); border-bottom: 1px solid var(--line); padding: 12px; gap: 4px; box-shadow: var(--shadow); }
  .nav.mobile-open a { padding: 13px 15px; }
  .hide-mobile { display: none; }
  .menu-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .step { border-right: none; border-bottom: 1px solid var(--line); }
  .step:last-child { border-bottom: none; }
  .field-row { grid-template-columns: 1fr; }
  .section { padding: 56px 0; }
  .card--pad-lg { padding: 24px; }
  .footer-grid { grid-template-columns: 1fr; }
  .launch-bar__inner { font-size: .72rem; gap: 12px; }
  .site-header .brand img { height: 38px; }
}

/* =========================================================================
   Gratis-maaltijdkiezer (staffelbonus)
   ========================================================================= */
.bonus-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
.bonus-pick { position: relative; display: flex; flex-direction: column; align-items: stretch; gap: 0; padding: 0; border: 1.5px solid var(--line); border-radius: 12px; background: #fff; overflow: hidden; text-align: left; transition: border-color .2s, transform .16s, box-shadow .2s; }
.bonus-pick:hover:not(:disabled) { border-color: var(--gold); transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.bonus-pick img { width: 100%; aspect-ratio: 4/3; object-fit: cover; object-position: center 62%; }
.bonus-pick .bp-name { font-size: .72rem; font-weight: 600; padding: 8px 10px 10px; line-height: 1.3; color: var(--ink); }
.bonus-pick .bp-add { position: absolute; top: 8px; right: 8px; width: 26px; height: 26px; border-radius: 50%; background: rgba(255,255,255,.94); border: 1px solid var(--line); display: grid; place-items: center; font-size: 1rem; color: var(--gold-deep); }
.bonus-pick.picked { border-color: var(--gold-deep); background: var(--cream); box-shadow: 0 0 0 3px rgba(221,167,51,.18); }
.bonus-pick .bp-count { position: absolute; top: 8px; left: 8px; background: var(--ink); color: var(--gold); font-size: .72rem; font-weight: 700; padding: 3px 9px; border-radius: 999px; }
.bonus-pick .bp-min { position: absolute; top: 8px; right: 8px; width: 26px; height: 26px; border-radius: 50%; background: #fff; border: 1px solid var(--gold-deep); display: grid; place-items: center; font-size: 1rem; color: var(--ink); cursor: pointer; }
.bonus-pick .bp-min:hover { background: var(--ink); color: #fff; }
.bonus-pick.maxed { opacity: .45; cursor: not-allowed; }
@media (max-width: 680px) { .bonus-grid { grid-template-columns: repeat(2, 1fr); } }

/* =========================================================================
   Betaalmethoden
   ========================================================================= */
.pay-options { display: grid; gap: 10px; }
.pay-option { display: grid; grid-template-columns: 64px 1fr 28px; align-items: center; gap: 14px; padding: 14px 16px; border: 1.5px solid var(--line); border-radius: 12px; background: #fff; text-align: left; transition: border-color .2s, box-shadow .2s, transform .15s; }
.pay-option:hover { border-color: var(--gold); transform: translateY(-1px); }
.pay-option.selected { border-color: var(--gold-deep); background: var(--cream); box-shadow: 0 0 0 3px rgba(221,167,51,.16); }
.pay-option small { font-size: .78rem; }
.pay-icon { display: inline-flex; align-items: center; justify-content: center; gap: 2px; }
.pay-badge { display: inline-block; color: #fff; font-weight: 800; font-size: .72rem; letter-spacing: .02em; padding: 6px 10px; border-radius: 7px; font-style: italic; }
.pay-check { color: var(--ok); }

/* =========================================================================
   Bezorgroute-kaart
   ========================================================================= */
.route-map { height: 380px; border-radius: var(--radius); border: 1px solid var(--line); overflow: hidden; margin-bottom: 18px; box-shadow: var(--shadow-sm); }
.route-marker { background: var(--ink); color: var(--gold); border: 2px solid var(--gold); border-radius: 50%; display: grid; place-items: center; font: 700 12px/1 'Inter', sans-serif; width: 30px; height: 30px; box-shadow: 0 3px 10px rgba(27,23,19,.35); }
.route-marker.depot { background: var(--gold); color: var(--ink); border-color: var(--ink); }
.leaflet-popup-content { font-family: 'Inter', sans-serif; font-size: .82rem; }
.route-dist { font-size: .76rem; color: var(--gold-deep); font-weight: 600; white-space: nowrap; }

/* =========================================================================
   Stijlgids
   ========================================================================= */
.sg-num { font-family: var(--sans); font-size: .7rem; font-weight: 700; letter-spacing: .2em; color: var(--gold-deep); vertical-align: super; margin-right: 6px; }
.sg-cap { font-size: .68rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--muted); margin: 0 0 8px; }
.swatches { display: grid; grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 12px; }
.swatch { text-align: left; background: #fff; border: 1px solid var(--line); border-radius: 12px; padding: 10px; display: flex; flex-direction: column; gap: 2px; cursor: pointer; transition: transform .18s var(--ease), box-shadow .2s, border-color .2s; }
.swatch:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: var(--gold); }
.swatch:active { transform: scale(.98); }
.swatch__chip { display: block; height: 72px; border-radius: 8px; margin-bottom: 8px; transition: height .25s var(--ease); }
.swatch:hover .swatch__chip { height: 84px; }
.swatch__name { font-weight: 600; font-size: .8rem; }
.swatch__hex { font-size: .72rem; color: var(--gold-deep); font-variant-numeric: tabular-nums; }
.swatch__note { font-size: .7rem; color: var(--muted); }
.swatch--mini { width: 110px; }
.swatch--mini:hover .swatch__chip { height: 52px; }
.spec { padding: 22px 14px; border-bottom: 1px solid var(--line); border-radius: 8px; transition: background .25s, padding-left .25s var(--ease); }
.spec:last-child { border-bottom: none; }
.spec:hover, .spec:focus { background: var(--cream); padding-left: 22px; outline: none; }
.spec__label { display: block; font-size: .68rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--gold-deep); margin-bottom: 10px; }
.icon-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(104px, 1fr)); gap: 10px; }
.icon-cell { display: flex; flex-direction: column; align-items: center; gap: 8px; padding: 18px 8px 14px; background: #fff; border: 1px solid var(--line); border-radius: 12px; cursor: pointer; transition: transform .18s var(--ease), border-color .2s, color .2s; color: var(--ink-2); }
.icon-cell:hover { transform: translateY(-3px); border-color: var(--gold); color: var(--gold-deep); }
.icon-cell:hover .icon-cell__glyph svg { transform: scale(1.2) rotate(-4deg); }
.icon-cell__glyph svg { transition: transform .25s var(--ease); }
.icon-cell__name { font-size: .68rem; color: var(--muted); }
@media (max-width: 680px) { .swatches { grid-template-columns: repeat(2, 1fr); } #compGrid { grid-template-columns: 1fr !important; } }

/* =========================================================================
   Voorstel-pagina
   ========================================================================= */
.vs-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; align-items: start; }
.vs-head { display: flex; align-items: center; justify-content: space-between; gap: 10px; flex-wrap: wrap; margin-bottom: 14px; padding-bottom: 14px; border-bottom: 1px solid var(--line); }
.vs-title { font-family: var(--display); font-size: 1.2rem; }
.vs-price { font-family: var(--display); font-size: 2rem; color: var(--gold-deep); }
.werk-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.werk-item { background: rgba(255,255,255,.04); border: 1px solid rgba(221,167,51,.25); border-radius: 12px; padding: 16px 18px; display: flex; flex-direction: column; gap: 3px; transition: transform .2s var(--ease), border-color .25s, background .25s; }
.werk-item:hover { transform: translateY(-3px); border-color: var(--gold); background: rgba(255,255,255,.08); }
.werk-item strong { color: #f7f2e6; font-size: .92rem; }
.werk-item span:last-child { color: rgba(247,242,230,.55); font-size: .8rem; line-height: 1.5; }
.werk-freq { font-size: .62rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); }

.flow { display: grid; grid-template-columns: 1fr auto 1fr auto 1fr; gap: 14px; align-items: stretch; }
.flow-node { background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 22px 20px; display: flex; flex-direction: column; gap: 4px; box-shadow: var(--shadow-sm); transition: transform .2s var(--ease), box-shadow .25s; }
.flow-node:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.flow-node strong { font-family: var(--display); font-size: 1.02rem; line-height: 1.35; }
.flow-cap { font-size: .64rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--gold-deep); }
.flow-sub { font-size: .78rem; color: var(--muted); }
.flow-node--gold { border-color: var(--gold); background: var(--cream); }
.flow-node--ink { background: var(--ink); border-color: var(--ink); }
.flow-node--ink strong { color: var(--gold); }
.flow-node--ink .flow-cap { color: rgba(247,242,230,.55); }
.flow-node--ink .flow-sub { color: rgba(247,242,230,.6); }
.flow-arrow { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 4px; color: var(--gold-deep); font-size: .64rem; text-align: center; letter-spacing: .06em; text-transform: uppercase; font-weight: 600; }
.flow-arrow svg { animation: flowPulse 2.2s ease-in-out infinite; }
@keyframes flowPulse { 0%,100% { transform: translateX(0); opacity: .6; } 50% { transform: translateX(5px); opacity: 1; } }

.calc-range { flex: 1; appearance: none; height: 6px; border-radius: 999px; background: var(--surface-2); outline: none; }
.calc-range::-webkit-slider-thumb { appearance: none; width: 26px; height: 26px; border-radius: 50%; background: var(--ink); border: 3px solid var(--gold); cursor: pointer; transition: transform .15s var(--ease); }
.calc-range::-webkit-slider-thumb:hover { transform: scale(1.15); }
.calc-range::-moz-range-thumb { width: 26px; height: 26px; border-radius: 50%; background: var(--ink); border: 3px solid var(--gold); cursor: pointer; }
.calc-meals { font-family: var(--display); font-size: 1.9rem; min-width: 64px; text-align: right; font-variant-numeric: tabular-nums; }
.calc-phase { display: inline-flex; gap: 4px; background: var(--surface-2); border-radius: 999px; padding: 4px; }
.calc-phase button { border: none; background: none; padding: 7px 16px; border-radius: 999px; font-weight: 600; font-size: .78rem; color: var(--muted); transition: background .2s, color .2s; }
.calc-phase button.active { background: var(--ink); color: var(--gold); }

@media (max-width: 960px) {
  .vs-cols { grid-template-columns: 1fr; }
  .werk-grid { grid-template-columns: 1fr 1fr; }
  .flow { grid-template-columns: 1fr; }
  .flow-arrow { transform: rotate(90deg); padding: 6px 0; }
}
@media (max-width: 680px) { .werk-grid { grid-template-columns: 1fr; } }

/* =========================================================================
   Proefpakket (instapoptie)
   ========================================================================= */
.proef-card { position: relative; background: var(--cream); border: 1.5px solid var(--gold); border-radius: 16px; padding: 30px 30px 26px; margin: 34px 0 22px; box-shadow: 0 12px 36px rgba(221,167,51,.18); }
.proef-badge { position: absolute; top: -13px; left: 26px; background: var(--gold); color: var(--ink); font-size: .64rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; padding: 6px 14px; border-radius: 999px; }
.proef-inner { display: flex; justify-content: space-between; align-items: center; gap: 24px; flex-wrap: wrap; }
.proef-title { font-family: var(--display); font-size: 1.5rem; color: var(--ink); margin: 0 0 4px; }
.proef-line { color: var(--ink-2); font-size: .92rem; margin: 0 0 8px; max-width: 44ch; }
.proef-free { display: inline-block; font-size: .74rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--ok); }
.proef-cta { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.proef-price { text-align: right; }
.proef-price span { display: block; font-size: .74rem; color: var(--muted); letter-spacing: .06em; text-transform: uppercase; }
.proef-price strong { font-family: var(--display); font-size: 2rem; color: var(--ink); }
.actie-wrap .proef-card { background: var(--cream); }
@media (max-width: 680px) { .proef-inner { flex-direction: column; align-items: flex-start; } .proef-cta { width: 100%; justify-content: space-between; } }

/* ---- Consentbanner ---- */
.consent-bar { position: fixed; left: 50%; bottom: 16px; transform: translateX(-50%); z-index: 400; width: min(680px, calc(100% - 24px)); background: var(--ink); color: rgba(247,242,230,.85); border: 1px solid rgba(221,167,51,.4); border-radius: 14px; padding: 14px 18px; display: flex; align-items: center; justify-content: space-between; gap: 14px; font-size: .82rem; box-shadow: var(--shadow-lg); flex-wrap: wrap; animation: toastIn .35s var(--ease); }
.consent-bar a { color: var(--gold); }
.consent-actions { display: flex; gap: 8px; }
.consent-bar .btn--ghost { border-color: rgba(247,242,230,.4); color: rgba(247,242,230,.85); }
.consent-bar .btn--ghost:hover { background: rgba(255,255,255,.1); color: #fff; }

/* =========================================================================
   Landingspagina (/lancering.html) - mobiel-first, zonder navigatie
   ========================================================================= */
.lp { max-width: 560px; margin: 0 auto; padding: 0 20px; }
.lp-hero { text-align: center; padding: 34px 0 26px; }
.lp-hero .brand img { height: 54px; margin: 0 auto 22px; }
.lp-hero h1 { font-size: clamp(1.9rem, 6vw, 2.6rem); margin-bottom: 10px; }
.lp-hero .lp-sub { color: var(--ink-2); font-size: 1rem; max-width: 40ch; margin: 0 auto 18px; }
.lp-price { display: inline-flex; align-items: baseline; gap: 10px; background: var(--cream); border: 1px solid var(--gold); border-radius: 999px; padding: 10px 22px; margin-bottom: 18px; }
.lp-price strong { font-family: var(--display); font-size: 1.6rem; }
.lp-price span { font-size: .8rem; color: var(--muted); }
.lp-section { padding: 30px 0; border-top: 1px solid var(--line); }
.lp-section h2 { font-size: 1.4rem; text-align: center; margin-bottom: 18px; }
.lp-steps { display: grid; gap: 10px; }
.lp-step { display: flex; gap: 14px; align-items: flex-start; background: #fff; border: 1px solid var(--line); border-radius: 12px; padding: 14px 16px; }
.lp-step b { font-family: var(--display); color: var(--gold-deep); font-size: 1.1rem; min-width: 26px; }
.lp-menu { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.lp-dish { background: #fff; border: 1px solid var(--line); border-radius: 12px; overflow: hidden; }
.lp-dish img { aspect-ratio: 4/3; object-fit: cover; object-position: center 62%; width: 100%; }
.lp-dish span { display: block; padding: 9px 11px; font-size: .74rem; font-weight: 600; line-height: 1.3; }
.lp-cta-block { position: sticky; bottom: 0; background: linear-gradient(transparent, var(--bg) 30%); padding: 18px 0 16px; text-align: center; z-index: 50; }
.lp-foot { text-align: center; color: var(--muted); font-size: .72rem; padding: 20px 0 90px; }
@media (max-width: 960px) { .actie-wrap .werk-grid[style*="repeat(5"] { grid-template-columns: 1fr 1fr !important; } }
@media (max-width: 680px) { .actie-wrap .werk-grid[style*="repeat(5"] { grid-template-columns: 1fr !important; } }

/* =========================================================================
   Contentkalender (beheer > Contentkalender)
   ========================================================================= */
.cp-hero { background: var(--ink); color: rgba(247,242,230,.9); border-radius: var(--radius-lg); padding: 30px 32px; margin-bottom: 24px; }
.cp-hero h3 { color: #fff; margin-bottom: 8px; }
.cp-hero p { color: rgba(247,242,230,.7); font-size: .92rem; max-width: 68ch; margin: 0; }
.cp-hero .eyebrow { color: var(--gold); }
.cp-hero .eyebrow::before { background: var(--gold); }

.cp-strat { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; margin-bottom: 26px; }
.cp-strat__item { background: #fff; padding: 18px 20px; }
.cp-strat__item b { display: block; font-family: var(--display); font-size: .98rem; margin-bottom: 6px; }
.cp-strat__item span { font-size: .84rem; color: var(--ink-2); line-height: 1.6; }

.cp-bar { display: flex; align-items: center; justify-content: space-between; gap: 14px; flex-wrap: wrap; margin-bottom: 18px; }
.cp-seg { display: inline-flex; background: var(--surface-2); border: 1px solid var(--line); border-radius: 999px; padding: 4px; gap: 2px; }
.cp-seg button { border: none; background: none; border-radius: 999px; padding: 8px 18px; font-size: .78rem; font-weight: 600; letter-spacing: .04em; color: var(--muted); }
.cp-seg button.active { background: var(--ink); color: var(--gold); }

.cp-legend { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 20px; }
.cp-leg { display: inline-flex; align-items: center; gap: 7px; background: #fff; border: 1px solid var(--line); border-radius: 999px; padding: 6px 13px 6px 9px; font-size: .76rem; font-weight: 600; }
.cp-leg i { width: 9px; height: 9px; border-radius: 3px; display: block; }
.cp-leg span { color: var(--muted); font-weight: 500; }

.cp-cal { border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; background: #fff; margin-bottom: 30px; box-shadow: var(--shadow-sm); }
.cp-cal__head { display: grid; grid-template-columns: repeat(7, minmax(0, 1fr)); background: var(--surface-2); border-bottom: 1px solid var(--line); }
.cp-cal__head div { padding: 10px 12px; font-size: .68rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); }
.cp-cal__grid { display: grid; grid-template-columns: repeat(7, minmax(0, 1fr)); }
.cp-cell { min-width: 0; min-height: 108px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 8px 8px 10px; display: flex; flex-direction: column; gap: 4px; }
.cp-cell:nth-child(7n) { border-right: none; }
.cp-cell--out { background: #fbf9f4; }
.cp-cell--out .cp-cell__n { color: var(--hairline); }
.cp-cell--wknd { background: #fcfaf5; }
.cp-cell__n { font-family: var(--display); font-size: .92rem; color: var(--ink-2); margin-bottom: 2px; }
.cp-cell--out .cp-chip { display: none; }
.cp-chip { display: block; width: 100%; text-align: left; border: none; border-radius: 5px; padding: 4px 7px; font-size: .68rem; font-weight: 600; line-height: 1.3; color: #fff; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; transition: transform .15s var(--ease); }
.cp-chip:hover { transform: translateX(2px); }
.cp-chip--done { opacity: .4; text-decoration: line-through; }

.cp-week { margin-bottom: 30px; }
.cp-week__head { display: flex; align-items: baseline; gap: 14px; flex-wrap: wrap; padding-bottom: 10px; margin-bottom: 14px; border-bottom: 2px solid var(--gold); }
.cp-week__head h3 { margin: 0; font-size: 1.35rem; }
.cp-week__head em { font-style: normal; font-size: .72rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--gold-deep); }
.cp-week__doel { font-size: .88rem; color: var(--ink-2); margin: 0 0 16px; max-width: 76ch; }

.cp-item { display: grid; grid-template-columns: 92px 1fr; gap: 16px; background: #fff; border: 1px solid var(--line); border-left: 3px solid var(--muted); border-radius: var(--radius); padding: 16px 18px; margin-bottom: 8px; transition: box-shadow .2s var(--ease), border-color .2s; }
.cp-item:hover { box-shadow: var(--shadow-sm); }
.cp-item--done { opacity: .5; }
.cp-item--flash { animation: cpFlash 1.4s var(--ease); }
@keyframes cpFlash { 0%, 40% { background: var(--cream); } 100% { background: #fff; } }
.cp-when { text-align: right; border-right: 1px solid var(--line); padding-right: 16px; }
.cp-when b { display: block; font-family: var(--display); font-size: 1.02rem; line-height: 1.2; }
.cp-when span { display: block; font-size: .74rem; color: var(--muted); text-transform: capitalize; }
.cp-when time { display: block; font-size: .8rem; font-weight: 700; color: var(--gold-deep); margin-top: 4px; }
.cp-body h4 { font-family: var(--display); font-weight: 400; font-size: 1.06rem; margin: 0 0 8px; display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.cp-tags { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 10px; }
.cp-tag { font-size: .66rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; padding: 3px 9px; border-radius: 999px; color: #fff; }
.cp-tag--line { background: none; border: 1px solid var(--line); color: var(--muted); }
.cp-line { font-size: .86rem; line-height: 1.6; margin: 0 0 6px; color: var(--ink-2); }
.cp-line b { color: var(--ink); font-weight: 700; }
.cp-line--why { color: var(--muted); font-size: .82rem; border-left: 2px solid var(--gold-soft); padding-left: 12px; margin-top: 10px; }
.cp-check { appearance: none; width: 19px; height: 19px; border: 1.5px solid var(--hairline); border-radius: 5px; background: #fff; display: grid; place-items: center; flex: none; transition: .15s; }
.cp-check:checked { background: var(--ink); border-color: var(--ink); }
.cp-check:checked::after { content: ""; width: 5px; height: 9px; border: solid var(--gold); border-width: 0 2px 2px 0; transform: rotate(45deg) translate(-1px, -1px); }

.cp-export { background: var(--cream); border: 1px solid var(--gold-soft); border-radius: var(--radius); padding: 22px 24px; display: flex; align-items: center; justify-content: space-between; gap: 18px; flex-wrap: wrap; margin-bottom: 26px; }
.cp-export h4 { font-family: var(--display); font-weight: 400; margin: 0 0 4px; font-size: 1.1rem; }
.cp-export p { margin: 0; font-size: .84rem; color: var(--ink-2); max-width: 56ch; }
.cp-export__btns { display: flex; gap: 8px; flex-wrap: wrap; align-items: center; }

@media (max-width: 900px) {
  .cp-cal { display: none; }
  .cp-item { grid-template-columns: 1fr; gap: 10px; }
  .cp-when { text-align: left; border-right: none; border-bottom: 1px solid var(--line); padding: 0 0 8px; display: flex; align-items: baseline; gap: 8px; }
  .cp-when time { margin: 0; }
  .cp-hero { padding: 24px 22px; }
}

/* Shotlist binnen de contentkalender */
.cp-viewnav { display: flex; gap: 6px; margin-bottom: 22px; flex-wrap: wrap; }
.cp-viewnav button { border: 1px solid var(--line); background: #fff; border-radius: 999px; padding: 9px 20px; font-size: .82rem; font-weight: 600; color: var(--muted); transition: .18s var(--ease); }
.cp-viewnav button:hover { border-color: var(--hairline); color: var(--ink); }
.cp-viewnav button.active { background: var(--ink); border-color: var(--ink); color: var(--gold); }
.cp-tips { margin: 0; padding-left: 20px; display: grid; gap: 8px; }
.cp-tips li { font-size: .87rem; color: var(--ink-2); line-height: 1.6; }
.cp-tips li::marker { color: var(--gold); }
.cp-shot { border-left-color: var(--gold); }
.cp-shot .cp-when b { font-size: 1.5rem; color: var(--gold-deep); }
.cp-voorlijst { display: flex; align-items: center; gap: 6px; flex-wrap: wrap; margin-top: 10px; font-size: .74rem; }
.cp-voor { display: inline-flex; align-items: baseline; gap: 5px; background: var(--surface-2); border-radius: 999px; padding: 3px 10px; font-weight: 600; color: var(--ink-2); }
.cp-voor em { font-style: normal; color: var(--muted); font-weight: 500; }
.cp-ruw { border: 1px solid var(--line); border-radius: var(--radius); background: #fff; padding: 14px 18px; margin-bottom: 28px; }
.cp-ruw summary { font-size: .85rem; font-weight: 600; cursor: pointer; color: var(--gold-deep); }
.cp-ruw p { font-size: .8rem; margin: 10px 0; }
.cp-ruw__txt { width: 100%; font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: .74rem; line-height: 1.55; border: 1px solid var(--line); border-radius: 8px; padding: 12px; background: var(--surface-2); color: var(--ink-2); resize: vertical; }
.cp-export--kolom { flex-direction: column; align-items: stretch; gap: 10px; }
.cp-export--kolom .cp-export__btns { justify-content: flex-start; align-items: center; gap: 12px; }
.cp-uitleg { font-size: .82rem; color: var(--ink-2); margin: 0; max-width: 72ch; line-height: 1.6; }

/* Wachtlijst (bestellen.html zolang de shop dicht is) */
.wl-lijst { list-style: none; margin: 0; padding: 0; display: grid; gap: 12px; }
.wl-lijst li { position: relative; padding-left: 18px; font-size: .88rem; line-height: 1.6; color: var(--ink-2); }
.wl-lijst li::before { content: ""; position: absolute; left: 0; top: .62em; width: 6px; height: 6px; border-radius: 2px; background: var(--gold); transform: rotate(45deg); }
.wl-fout { background: #fbecea; border: 1px solid #e7c3bd; color: var(--danger); border-radius: 10px; padding: 10px 14px; font-size: .84rem; margin: 0 0 14px; }
@media (max-width: 820px) { #checkout { grid-template-columns: 1fr !important; } }

/* Leespagina (privacy, voorwaarden) */
.prose { max-width: 72ch; }
.prose h2 { font-size: 1.3rem; margin: 34px 0 10px; }
.prose p, .prose li { color: var(--ink-2); font-size: .94rem; line-height: 1.75; }
.prose ul { padding-left: 20px; }
.prose li { margin-bottom: 6px; }
.prose li::marker { color: var(--gold); }
.prose a { text-decoration: underline; text-underline-offset: 2px; }
.prose table.data { margin: 14px 0 6px; }
