/* ╔══════════════════════════════════════════════════════════════════╗
   ║  KLAAS KIP — "Smokehouse" design system                            ║
   ║  Warm charcoal-espresso · roasted gold · herb green · cream.        ║
   ║  Display: Playfair Display · UI/body: Jost. Tokens uit de handoff. ║
   ╚══════════════════════════════════════════════════════════════════╝ */

:root {
  /* ---- Brand darks ---- */
  --kk-espresso: #1e1714;
  --kk-sunken:   #171210;
  --kk-raised:   #281f19;
  --kk-raised-2: #322820;
  /* ---- Light neutrals ---- */
  --kk-cream: #f4efe6;
  --kk-bone:  #e7dece;
  /* ---- Accents ---- */
  --kk-gold:       #e9b23e;
  --kk-gold-deep:  #d29a30;
  --kk-gold-soft:  #4a3a1c;
  --kk-green:        #2f6b43;
  --kk-green-bright: #3f8c58;
  --kk-green-soft:   #1e3528;
  --kk-haas: #cf4c39;

  /* ---- Hairlines on dark ---- */
  --line-subtle: rgba(244, 239, 230, 0.10);
  --line:        rgba(244, 239, 230, 0.16);
  --line-strong: rgba(244, 239, 230, 0.30);

  /* ---- Semantic ---- */
  --surface-page:   var(--kk-espresso);
  --surface-card:   var(--kk-raised);
  --surface-sunken: var(--kk-sunken);
  --surface-raised: var(--kk-raised-2);
  --surface-overlay: rgba(9, 7, 5, 0.62);

  --text-strong: var(--kk-cream);
  --text-body:   rgba(244, 239, 230, 0.80);
  --text-muted:  rgba(244, 239, 230, 0.56);
  --text-faint:  rgba(244, 239, 230, 0.40);
  --text-inverse: var(--kk-espresso);

  --accent: var(--kk-gold);
  --fresh:  var(--kk-green);
  --rating: var(--kk-gold);
  --price:  var(--kk-cream);
  --focus-ring: rgba(233, 178, 62, 0.55);

  /* ---- Type ---- */
  --font-display: "Playfair Display", "Times New Roman", Georgia, serif;
  --font-sans: "Jost", "Helvetica Neue", Arial, sans-serif;

  --text-display: clamp(2.75rem, 1.6rem + 5.5vw, 5rem);
  --text-h1: clamp(2.25rem, 1.5rem + 3.4vw, 3.5rem);
  --text-h2: clamp(1.75rem, 1.25rem + 2.2vw, 2.5rem);
  --text-h3: clamp(1.375rem, 1.05rem + 1.3vw, 1.75rem);
  --text-h4: 1.25rem;
  --text-lead: 1.1875rem;
  --text-base: 1rem;
  --text-sm: 0.875rem;
  --text-xs: 0.75rem;
  --text-2xs: 0.6875rem;

  --fw-light: 300;
  --fw-regular: 400;
  --fw-medium: 500;
  --fw-semibold: 600;
  --fw-bold: 700;
  --fw-display: 800;

  --leading-tight: 1.08;
  --leading-snug: 1.25;
  --leading-normal: 1.55;
  --tracking-wide: 0.08em;
  --tracking-wider: 0.16em;
  --tracking-widest: 0.28em;

  /* ---- Layout ---- */
  --container-max: 1240px;
  --gutter: clamp(1.25rem, 4vw, 3rem);
  --section-y: clamp(3.5rem, 7vw, 7rem);

  /* ---- Radius / effects ---- */
  --radius-sm: 4px;
  --radius-md: 6px;
  --radius-lg: 10px;
  --radius-xl: 16px;
  --shadow-sm: 0 2px 6px rgba(21, 19, 15, 0.30);
  --shadow-md: 0 8px 24px rgba(21, 19, 15, 0.40);
  --shadow-lg: 0 18px 48px rgba(21, 19, 15, 0.50);
  --scrim-bottom: linear-gradient(to top, rgba(14,13,10,0.85) 0%, rgba(14,13,10,0.30) 42%, rgba(14,13,10,0) 75%);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --dur: 220ms;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 96px; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--surface-page);
  color: var(--text-body);
  font-family: var(--font-sans);
  font-size: var(--text-base);
  font-weight: var(--fw-regular);
  line-height: var(--leading-normal);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--text-strong);
  font-weight: var(--fw-display);
  line-height: var(--leading-tight);
  letter-spacing: -0.01em;
  margin: 0 0 0.4em;
  text-wrap: balance;
}
p { margin: 0 0 1em; text-wrap: pretty; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
::selection { background: var(--kk-gold); color: var(--kk-espresso); }
:focus-visible { outline: 3px solid var(--focus-ring); outline-offset: 2px; }

/* ── Type helpers ──────────────────────────────────────────────────── */
.eyebrow {
  margin: 0 0 1rem;
  font-family: var(--font-sans);
  font-size: var(--text-xs);
  font-weight: var(--fw-medium);
  letter-spacing: var(--tracking-wider);
  text-transform: uppercase;
  color: var(--accent);
}
.display {
  font-family: var(--font-display);
  font-size: var(--text-display);
  font-weight: var(--fw-display);
  line-height: 1.02;
  letter-spacing: -0.015em;
  color: var(--text-strong);
}
.heading {
  font-family: var(--font-display);
  font-size: var(--text-h2);
  font-weight: var(--fw-display);
  line-height: var(--leading-tight);
  color: var(--text-strong);
}
.lead {
  font-size: var(--text-lead);
  line-height: var(--leading-normal);
  color: var(--text-body);
}
.section-intro { max-width: 600px; font-size: var(--text-lead); line-height: var(--leading-normal); color: var(--text-body); }

/* ── Sections / layout ─────────────────────────────────────────────── */
.section-page  { background: var(--surface-page); }
.section-sunken { background: var(--surface-sunken); }
section { padding: var(--section-y) var(--gutter); }
.wrap { max-width: var(--container-max); margin: 0 auto; }
.section-head { max-width: var(--container-max); margin: 0 auto clamp(2rem, 4vw, 3.5rem); }
.section-head--center { text-align: center; }
.section-head--center .section-intro { margin-left: auto; margin-right: auto; }
.section-head .heading { margin-top: 0; }

/* ── Buttons ───────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
  padding: 0.85em 1.5em;
  font-family: var(--font-sans);
  font-size: var(--text-sm);
  font-weight: var(--fw-semibold);
  letter-spacing: 0.01em;
  border: 1.5px solid transparent;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: background var(--dur) var(--ease-out), color var(--dur) var(--ease-out),
    border-color var(--dur) var(--ease-out), transform 0.1s ease;
}
.btn:active { transform: translateY(1px); }
.btn-gold { background: var(--kk-gold); color: var(--kk-espresso); }
.btn-gold:hover { background: var(--kk-gold-deep); }
.btn-order { background: var(--kk-green); color: var(--kk-cream); }
.btn-order:hover { background: var(--kk-green-bright); }
.btn-outline { background: transparent; color: var(--text-strong); border-color: var(--line-strong); }
.btn-outline:hover { background: var(--kk-cream); color: var(--kk-espresso); border-color: var(--kk-cream); }
.btn-ghost { background: transparent; color: var(--text-strong); }
.btn-ghost:hover { color: var(--kk-gold); }
.btn-lg { padding: 1.05em 2em; font-size: var(--text-base); }

/* Gold inline arrow-link */
.ghost-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4em;
  font-family: var(--font-sans);
  font-size: var(--text-sm);
  font-weight: var(--fw-semibold);
  letter-spacing: 0.04em;
  color: var(--accent);
  width: fit-content;
}
.ghost-link:hover { color: var(--kk-gold-deep); text-decoration: underline; text-underline-offset: 0.18em; }
.ghost-link--lg { font-size: var(--text-base); }

/* ── Announcement marquee ──────────────────────────────────────────── */
.announce {
  background: var(--kk-green);
  color: var(--kk-cream);
  overflow: hidden;
  border-bottom: 1px solid rgba(0, 0, 0, 0.18);
}
.announce-track {
  display: inline-flex;
  align-items: center;
  gap: 1.5rem;
  padding: 9px 0;
  white-space: nowrap;
  font-size: var(--text-2xs);
  font-weight: var(--fw-medium);
  letter-spacing: var(--tracking-wider);
  text-transform: uppercase;
  animation: marquee 38s linear infinite;
}
.announce-track .sep { color: var(--kk-gold); }
.announce-track span, .announce-track .sep { flex: none; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .announce-track { animation: none; } }

/* ── Nav ───────────────────────────────────────────────────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 60;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  min-height: 78px;
  padding: 0 var(--gutter);
  background: rgba(23, 18, 16, 0.82);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line-subtle);
}
.nav-left, .nav-right { display: flex; align-items: center; gap: clamp(14px, 1.8vw, 30px); }
.nav-right { justify-content: flex-end; }
.nav-link {
  font-size: var(--text-xs);
  font-weight: var(--fw-medium);
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  color: var(--text-muted);
  white-space: nowrap;
  padding: 4px 0;
  border-bottom: 2px solid transparent;
  transition: color var(--dur) var(--ease-out);
}
.nav-link:hover { color: var(--text-strong); }
.nav-link.is-active { color: var(--kk-gold); border-bottom-color: var(--kk-gold); }
.nav-cta { font-size: var(--text-xs); padding: 0.6em 1.1em; }
.brand { justify-self: center; display: inline-flex; }
.brand-logo { display: block; height: 52px; width: auto; }
.nav-burger { display: none; flex-direction: column; gap: 5px; padding: 8px; cursor: pointer; justify-self: end; background: none; border: 0; }
.nav-burger span { width: 26px; height: 2px; background: var(--kk-cream); }
.nav-mobile { display: none; }

/* ── Hero ──────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: min(82vh, 720px);
  padding: clamp(4rem, 9vw, 6.5rem) var(--gutter);
  overflow: hidden;
  background: var(--kk-espresso);
}
.hero-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0.7; }
.hero-scrim { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(14,13,10,0.94) 0%, rgba(14,13,10,0.7) 35%, rgba(14,13,10,0.25) 100%); }
.hero-content { position: relative; width: 100%; max-width: var(--container-max); margin: 0 auto; }
.hero-inner { max-width: 600px; }
.hero h1 { font-size: var(--text-display); line-height: 1.02; margin-bottom: 0.5em; }
.hero-sub { max-width: 520px; margin: 0 0 2rem; font-size: var(--text-lead); line-height: var(--leading-normal); color: rgba(246, 241, 232, 0.82); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.85rem; }

/* ── Product cards ─────────────────────────────────────────────────── */
.prod-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; max-width: var(--container-max); margin: 0 auto; }
.prod { display: flex; flex-direction: column; }
.prod-photo {
  position: relative;
  margin: 0 0 14px;
  aspect-ratio: 1 / 1;
  background: var(--surface-card);
  border: 1px solid var(--line-subtle);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.prod-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--dur) var(--ease-out); }
.prod:hover .prod-photo { box-shadow: var(--shadow-md); }
.prod:hover .prod-photo img { transform: scale(1.04); }
.prod-cat { font-size: var(--text-2xs); font-weight: var(--fw-medium); letter-spacing: var(--tracking-wide); text-transform: uppercase; color: var(--text-muted); margin-bottom: 4px; }
.prod-row { display: flex; align-items: baseline; justify-content: space-between; gap: 10px; }
.prod-title { font-family: var(--font-sans); font-size: var(--text-base); font-weight: var(--fw-medium); color: var(--text-strong); letter-spacing: 0; line-height: 1.3; }
.prod-price { font-size: var(--text-base); font-weight: var(--fw-semibold); color: var(--price); white-space: nowrap; font-variant-numeric: tabular-nums; }
.prod-price.op-aanvraag { font-size: var(--text-sm); font-weight: var(--fw-medium); color: var(--text-muted); }
.prod-desc { margin: 6px 0 12px; font-size: var(--text-sm); line-height: var(--leading-snug); color: var(--text-muted); }
.prod .ghost-link { margin-top: auto; }

/* ── Grill band (full-bleed dark photo) ────────────────────────────── */
.grillband { position: relative; overflow: hidden; padding: clamp(5rem, 11vw, 9rem) var(--gutter); text-align: center; }
.grillband-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0.5; }
.grillband-scrim { position: absolute; inset: 0; background: rgba(14, 13, 10, 0.58); }
.grillband-inner { position: relative; max-width: 680px; margin: 0 auto; }
.grillband-inner .lead { color: rgba(246, 241, 232, 0.84); margin-bottom: 2rem; }

/* ── Category grid ─────────────────────────────────────────────────── */
.cat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; max-width: var(--container-max); margin: 0 auto; }
.cat { position: relative; display: block; aspect-ratio: 4 / 5; border-radius: var(--radius-lg); overflow: hidden; background: var(--surface-card); }
.cat img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--dur) var(--ease-out); }
.cat:hover img { transform: scale(1.04); }
.cat::after { content: ""; position: absolute; inset: 0; background: var(--scrim-bottom); }
.cat-label {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 1;
  padding: 1.25rem 1.4rem;
  font-family: var(--font-display); font-weight: var(--fw-bold);
  font-size: var(--text-h4); color: var(--kk-cream); text-wrap: balance;
}

/* ── Reviews ───────────────────────────────────────────────────────── */
.rating-line { display: flex; align-items: center; justify-content: center; gap: 0.6rem; margin-bottom: 0.5rem; font-size: var(--text-sm); color: var(--text-body); letter-spacing: var(--tracking-wide); }
.stars { color: var(--rating); letter-spacing: 0.12em; }
.review-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; max-width: var(--container-max); margin: 0 auto; }
.review { margin: 0; padding: 32px; background: var(--surface-card); border: 1px solid var(--line-subtle); border-radius: var(--radius-lg); }
.review .stars { display: block; margin-bottom: 1rem; font-size: var(--text-sm); }
.review p { font-family: var(--font-display); font-size: var(--text-h4); font-weight: var(--fw-medium); line-height: var(--leading-snug); color: var(--text-strong); margin: 0 0 1.25rem; }
.review cite { font-style: normal; font-size: var(--text-2xs); font-weight: var(--fw-medium); letter-spacing: var(--tracking-wider); text-transform: uppercase; color: var(--text-muted); }

/* ── USP row ───────────────────────────────────────────────────────── */
.usp-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(1.5rem, 3vw, 2.5rem); max-width: var(--container-max); margin: 0 auto; text-align: center; }
.usp-icon { width: 56px; height: 56px; margin: 0 auto 1.1rem; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 50%; color: var(--kk-gold); }
.usp-icon svg { width: 24px; height: 24px; }
.usp h3 { font-size: var(--text-h4); font-family: var(--font-display); font-weight: var(--fw-bold); margin-bottom: 0.4rem; }
.usp p { margin: 0; font-size: var(--text-sm); color: var(--text-muted); line-height: var(--leading-snug); }

/* ── FAQ accordion ─────────────────────────────────────────────────── */
.faq { max-width: 820px; margin: 0 auto; display: grid; gap: 12px; }
.faq details { background: var(--surface-card); border: 1px solid var(--line-subtle); border-radius: var(--radius-md); }
.faq summary { list-style: none; cursor: pointer; padding: 1.15rem 1.4rem; position: relative; padding-right: 3rem; font-size: var(--text-lead); font-weight: var(--fw-medium); color: var(--text-strong); }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; position: absolute; right: 1.3rem; top: 50%; transform: translateY(-50%); font-size: 1.4rem; color: var(--kk-gold); line-height: 1; }
.faq details[open] summary::after { content: "–"; }
.faq details p { margin: 0; padding: 0 1.4rem 1.3rem; font-size: var(--text-sm); line-height: var(--leading-normal); color: var(--text-muted); }

/* ── Inner-page hero ───────────────────────────────────────────────── */
.page-hero { background: var(--surface-sunken); border-bottom: 1px solid var(--line-subtle); padding: clamp(3.5rem, 7vw, 6rem) var(--gutter); }
.page-hero h1 { font-size: var(--text-h1); margin-bottom: 0.4em; }
.page-hero .lead { max-width: 640px; color: var(--text-body); }

/* ── Shop (winkel) ─────────────────────────────────────────────────── */
.cat-nav { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 1.75rem; }
.cat-chip { font-size: var(--text-xs); font-weight: var(--fw-medium); letter-spacing: var(--tracking-wide); text-transform: uppercase; color: var(--text-muted); border: 1px solid var(--line); border-radius: 999px; padding: 8px 16px; transition: all var(--dur) var(--ease-out); }
.cat-chip:hover { color: var(--kk-espresso); background: var(--kk-gold); border-color: var(--kk-gold); }
.shop-cat { scroll-margin-top: 96px; }
.shop-cat .cat-head { display: flex; align-items: baseline; justify-content: space-between; gap: 16px; margin-bottom: 28px; border-bottom: 1px solid var(--line); padding-bottom: 14px; }
.shop-cat .cat-head h2 { font-size: var(--text-h3); margin: 0; }
.cat-count { font-size: var(--text-xs); letter-spacing: var(--tracking-wide); text-transform: uppercase; color: var(--text-muted); white-space: nowrap; }

/* ── Split (over ons / zakelijk) ───────────────────────────────────── */
.split { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: clamp(2rem, 5vw, 4.5rem); max-width: var(--container-max); margin: 0 auto; }
.split-photo { margin: 0; aspect-ratio: 4 / 5; border-radius: var(--radius-lg); overflow: hidden; background: var(--surface-card); border: 1px solid var(--line-subtle); }
.split-photo img { width: 100%; height: 100%; object-fit: cover; }
.split-copy .lead { color: var(--text-body); max-width: 480px; }

/* ── Values grid ───────────────────────────────────────────────────── */
.values { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; max-width: var(--container-max); margin: 0 auto; }
.values.values-2 { grid-template-columns: repeat(2, 1fr); }
.val { border-top: 1px solid var(--line); padding-top: 1.1rem; }
.val h3 { font-family: var(--font-display); font-size: var(--text-h4); font-weight: var(--fw-bold); color: var(--text-strong); margin-bottom: 0.4rem; }
.val p { margin: 0; font-size: var(--text-sm); color: var(--text-muted); line-height: var(--leading-snug); }

/* ── Category cards (producten overzicht) ──────────────────────────── */
.cat-cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; max-width: var(--container-max); margin: 0 auto; }
.cat-card { display: flex; flex-direction: column; }
.cat-card .ph { aspect-ratio: 16 / 10; border-radius: var(--radius-lg); overflow: hidden; background: var(--surface-card); border: 1px solid var(--line-subtle); }
.cat-card .ph img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--dur) var(--ease-out); }
.cat-card:hover .ph img { transform: scale(1.03); }
.cat-card .cc-body { padding-top: 1.1rem; display: flex; flex-direction: column; gap: 0.6rem; align-items: flex-start; }
.cat-card h2 { font-size: var(--text-h3); margin: 0; }
.cat-card p { margin: 0; font-size: var(--text-sm); color: var(--text-muted); line-height: var(--leading-normal); }

/* ── Steps ─────────────────────────────────────────────────────────── */
.steps { list-style: none; display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; max-width: var(--container-max); margin: 0 auto; padding: 0; }
.steps li { border-top: 1px solid var(--line); padding-top: 1.1rem; }
.step-num { display: block; font-family: var(--font-display); font-size: var(--text-h2); font-weight: var(--fw-display); color: var(--kk-gold); line-height: 1; margin-bottom: 0.8rem; }
.step-title { font-family: var(--font-display); font-size: var(--text-h4); font-weight: var(--fw-bold); color: var(--text-strong); margin-bottom: 0.35rem; }
.step-body { margin: 0; font-size: var(--text-sm); color: var(--text-muted); line-height: var(--leading-snug); }

/* ── CTA band ──────────────────────────────────────────────────────── */
.cta-band { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1.25rem; margin-top: clamp(2.5rem, 5vw, 4.5rem); padding: clamp(1.75rem, 3vw, 2.75rem) clamp(1.75rem, 4vw, 3.5rem); background: var(--surface-card); border: 1px solid var(--line-subtle); border-radius: var(--radius-lg); }
.cta-band-text { margin: 0; font-family: var(--font-display); font-size: var(--text-h3); font-weight: var(--fw-bold); color: var(--text-strong); }

/* ── Info / contact ────────────────────────────────────────────────── */
.info { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2.5rem, 6vw, 5rem); max-width: var(--container-max); margin: 0 auto; }
.info .heading { font-size: var(--text-h3); margin-bottom: 1.2rem; }
.hours { list-style: none; margin: 0; padding: 0; }
.hours li { display: flex; justify-content: space-between; gap: 16px; padding: 13px 0; border-bottom: 1px solid var(--line-subtle); font-size: var(--text-base); }
.hours li span:first-child { color: var(--text-strong); }
.hours li span:last-child { color: var(--text-muted); font-variant-numeric: tabular-nums; }
.contact { font-style: normal; margin-bottom: 1.4rem; }
.contact p { margin: 0 0 1.1rem; font-size: var(--text-base); line-height: var(--leading-snug); color: var(--text-body); }
.contact-label { display: block; font-size: var(--text-2xs); font-weight: var(--fw-medium); letter-spacing: var(--tracking-wider); text-transform: uppercase; color: var(--kk-gold); margin-bottom: 5px; }
.contact a { color: var(--text-strong); }
.contact a:hover { color: var(--kk-gold); }

/* ── Contact form ──────────────────────────────────────────────────── */
.cform { display: grid; gap: 16px; max-width: 520px; }
.cform label { display: block; font-size: var(--text-2xs); font-weight: var(--fw-medium); letter-spacing: var(--tracking-wider); text-transform: uppercase; color: var(--kk-gold); margin-bottom: 6px; }
.cform input, .cform textarea { width: 100%; font-family: var(--font-sans); font-size: var(--text-sm); color: var(--text-strong); background: var(--surface-card); border: 1px solid var(--line); border-radius: var(--radius-md); padding: 0.8rem 0.9rem; }
.cform input::placeholder, .cform textarea::placeholder { color: var(--text-faint); }
.cform input:focus, .cform textarea:focus { outline: none; border-color: var(--kk-gold); }
.cform textarea { min-height: 120px; resize: vertical; }
.cform button { justify-self: start; }

/* ── Footer ────────────────────────────────────────────────────────── */
.footer { background: var(--surface-sunken); border-top: 1px solid var(--line-subtle); padding: clamp(3.5rem, 6vw, 5.5rem) var(--gutter) 2rem; }
.footer-cols { display: grid; grid-template-columns: 1.4fr 1fr 1.2fr; gap: clamp(2rem, 5vw, 4rem); max-width: var(--container-max); margin: 0 auto; }
.footer-logo { height: 88px; width: auto; margin-bottom: 1.2rem; }
.footer-brand p { font-size: var(--text-sm); color: var(--text-muted); max-width: 320px; line-height: var(--leading-normal); }
.footer-social { display: flex; gap: 10px; margin-top: 1.2rem; }
.footer-social a { width: 38px; height: 38px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 50%; color: var(--text-strong); transition: all var(--dur) var(--ease-out); }
.footer-social a:hover { background: var(--kk-gold); color: var(--kk-espresso); border-color: var(--kk-gold); }
.footer-social svg { width: 18px; height: 18px; }
.footer-col h4 { font-family: var(--font-sans); font-size: var(--text-2xs); font-weight: var(--fw-semibold); letter-spacing: var(--tracking-wider); text-transform: uppercase; color: var(--kk-gold); margin-bottom: 1rem; }
.footer-col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.6rem; }
.footer-col a { font-size: var(--text-sm); color: var(--text-muted); }
.footer-col a:hover { color: var(--text-strong); }
.footer-contact { display: grid; gap: 0.8rem; margin-top: 0.4rem; font-size: var(--text-sm); color: var(--text-muted); }
.footer-contact a { color: var(--text-muted); }
.footer-contact a:hover { color: var(--kk-gold); }
.footer-bottom { max-width: var(--container-max); margin: 2.5rem auto 0; padding-top: 1.5rem; border-top: 1px solid var(--line-subtle); display: flex; flex-wrap: wrap; gap: 0.5rem 1.5rem; justify-content: space-between; align-items: center; font-size: var(--text-xs); color: var(--text-faint); }
.footer-credit .heart { color: var(--kk-haas); }
.footer-credit a { color: var(--text-muted); }
.footer-credit a:hover { color: var(--kk-gold); text-decoration: underline; text-underline-offset: 0.18em; }

/* ── Back to top ───────────────────────────────────────────────────── */
.to-top { position: fixed; right: 22px; bottom: 22px; z-index: 70; width: 46px; height: 46px; display: grid; place-items: center; border-radius: 50%; background: var(--kk-gold); color: var(--kk-espresso); opacity: 0; visibility: hidden; transform: translateY(8px); box-shadow: var(--shadow-md); transition: all var(--dur) var(--ease-out); }
.to-top.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }
.to-top svg { width: 20px; height: 20px; }

/* ── Scroll reveal ─────────────────────────────────────────────────── */
html.js .reveal { opacity: 0; transform: translateY(16px); transition: opacity var(--dur) var(--ease-out), transform 0.42s var(--ease-out); }
html.js .reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { html.js .reveal { opacity: 1; transform: none; transition: none; } }

/* ── Responsive ────────────────────────────────────────────────────── */
@media (max-width: 1000px) {
  .prod-grid, .cat-grid, .usp-row { grid-template-columns: repeat(2, 1fr); }
  .review-grid { grid-template-columns: 1fr; }
  .footer-cols { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 860px) {
  .hero { min-height: 0; }
  .split, .info { grid-template-columns: 1fr; }
  .split-photo { order: -1; aspect-ratio: 16 / 10; }
  .steps, .values, .values-2, .cat-cards { grid-template-columns: 1fr; }
  .footer-cols { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
  .nav { grid-template-columns: 1fr auto; }
  .nav-left, .nav-right { display: none; }
  .brand { justify-self: start; }
  .brand-logo { height: 46px; }
  .nav-burger { display: flex; }
  .nav-mobile { grid-column: 1 / -1; display: grid; max-height: 0; overflow: hidden; transition: max-height var(--dur) var(--ease-out); }
  .nav-toggle:checked ~ .nav-mobile { max-height: 460px; padding-bottom: 1rem; }
  .nav-mobile a { padding: 0.95rem 0.25rem; font-size: var(--text-sm); letter-spacing: var(--tracking-wide); text-transform: uppercase; color: var(--text-strong); border-bottom: 1px solid var(--line-subtle); }
  .nav-mobile .btn { margin-top: 1rem; }
  .hero-scrim { background: linear-gradient(180deg, rgba(14,13,10,0.55) 0%, rgba(14,13,10,0.88) 100%); }
}
@media (max-width: 560px) {
  .prod-grid, .cat-grid, .usp-row { grid-template-columns: 1fr; }
  .cta-band { flex-direction: column; align-items: flex-start; }
}

/* ── Prijs-eenheid (P0) ────────────────────────────────────────────── */
.prod-unit { font-size: var(--text-2xs); font-weight: var(--fw-regular); color: var(--text-muted); letter-spacing: 0.02em; white-space: nowrap; }

/* ── Section head als rij (favorieten) ─────────────────────────────── */
.section-head--row { display: flex; align-items: flex-end; justify-content: space-between; gap: 1.5rem; flex-wrap: wrap; }
.reviews-cta { text-align: center; margin-top: clamp(1.5rem, 3vw, 2.5rem); }

/* ── Live open-status ──────────────────────────────────────────────── */
.open-status { display: inline-flex; align-items: center; gap: 0.5em; font-size: var(--text-sm); color: var(--text-muted); letter-spacing: 0.01em; }
.open-status .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--text-faint); flex: none; }
.open-status .dot.on { background: var(--kk-green-bright); box-shadow: 0 0 0 3px rgba(63, 140, 88, 0.25); }
.open-status .dot.off { background: var(--kk-haas); }
.hero-open { margin: 0 0 1.25rem; color: var(--kk-cream); }

/* ── Floating WhatsApp-knop (P2) ───────────────────────────────────── */
.wa-fab {
  position: fixed; right: 20px; bottom: 20px; z-index: 75;
  display: inline-flex; align-items: center; gap: 0.55em;
  padding: 0.85em 1.2em; border-radius: 999px;
  background: var(--kk-green); color: var(--kk-cream);
  font-family: var(--font-sans); font-size: var(--text-sm); font-weight: var(--fw-semibold);
  box-shadow: var(--shadow-lg); transition: background var(--dur) var(--ease-out), transform 0.12s ease;
}
.wa-fab:hover { background: var(--kk-green-bright); }
.wa-fab:active { transform: translateY(1px); }
.wa-fab svg { width: 22px; height: 22px; }
.to-top { bottom: 84px; }

/* ── Seizoensblok ──────────────────────────────────────────────────── */
.seasonal { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1.5rem 2.5rem; max-width: var(--container-max); margin: 0 auto; padding: clamp(2rem, 4vw, 3.5rem); border: 1px solid var(--kk-gold-soft); border-radius: var(--radius-lg); background: linear-gradient(0deg, rgba(233,178,62,0.06), rgba(233,178,62,0.06)); }
.seasonal .lead { color: var(--text-body); max-width: 540px; }
.seasonal-deadline { margin: 0.6rem 0 0; font-size: var(--text-sm); font-weight: var(--fw-semibold); letter-spacing: 0.04em; color: var(--kk-gold); }

/* ── Legal / prose ─────────────────────────────────────────────────── */
.legal { max-width: var(--container-text); }
.legal h2 { font-size: var(--text-h3); margin: 2rem 0 0.5rem; }
.legal p { color: var(--text-body); line-height: var(--leading-normal); }

/* ── Mobiel: FAB compacter, hero-open kleiner ──────────────────────── */
@media (max-width: 560px) {
  .wa-fab { padding: 0.8em; }
  .wa-fab span { display: none; }
  .wa-fab svg { width: 24px; height: 24px; }
  .to-top { bottom: 78px; right: 18px; }
  .wa-fab { right: 18px; bottom: 18px; }
  .seasonal { flex-direction: column; align-items: flex-start; }
}

/* ── 3D loading badge (laad-overlay) ───────────────────────────────── */
.loader {
  position: fixed; inset: 0; z-index: 9999;
  display: grid; place-items: center;
  background: var(--kk-espresso);
  opacity: 1; visibility: visible;
  transition: opacity 0.55s var(--ease-out), visibility 0.55s;
}
.loader.is-hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.loader-stage { perspective: 800px; }
.loader-coin {
  width: 120px; height: 120px; border-radius: 50%; overflow: hidden;
  border: 2px solid var(--kk-gold);
  box-shadow: 0 18px 55px rgba(0, 0, 0, 0.55), 0 0 0 8px rgba(233, 178, 62, 0.10);
  transform-style: preserve-3d; will-change: transform;
  animation: coinSpin 1.9s cubic-bezier(0.55, 0.1, 0.45, 0.9) infinite;
}
.loader-coin img { width: 100%; height: 100%; object-fit: cover; display: block; }
@keyframes coinSpin { from { transform: rotateY(0deg); } to { transform: rotateY(360deg); } }
@media (prefers-reduced-motion: reduce) {
  .loader-coin { animation: none; }
  .loader { transition: none; }
}
