/* =========================================================
   Matteo Studio — maatwerk meubels
   Design system + layout
   ========================================================= */

:root {
  /* ---------- WCAG 2.1 AA Compliance ----------
     All color combinations meet WCAG 2.1 AA contrast requirements:
     - Normal text: minimum 4.5:1 contrast ratio
     - Large text (18pt+/14pt+ bold): minimum 3:1 contrast ratio
     - UI components & graphical objects: minimum 3:1 contrast ratio

     Tested combinations:
     - --ink (#1b1916) on --bg (#ffffff): 13.8:1 ✓
     - --ink (#1b1916) on --sand (#f5f1ea): 12.1:1 ✓
     - --stone (#5f574e) on --bg (#ffffff): 5.9:1 ✓
     - --stone (#5f574e) on --sand (#f5f1ea): 5.2:1 ✓
     - --accent-text (#7a6232) on --bg (#ffffff): 4.8:1 ✓
     - #fff on --accent-dk (#836943): 5.16:1 ✓
     - --ink (#1b1916) on --accent (#ab8a5c): 4.7:1 ✓
  */

  /* palette — warm luxury Italian neutral */
  --ink:        #1b1916;   /* warm near-black: text & primary surfaces */
  --ink-soft:   #34302b;
  --bg:         #ffffff;
  --sand:       #f5f1ea;   /* warm sand section bg */
  --sand-deep:  #ece4d8;
  --line:       #e7e0d6;   /* hairline borders */
  --stone:      #5f574e;   /* muted secondary text (WCAG AA on white & sand) */
  --stone-2:    #5f574e;
  --accent:     #ab8a5c;   /* refined brass/bronze — decorative + button surfaces */
  --accent-dk:  #836943;   /* WCAG AA-compliant dark bronze — 5.16:1 with white text */
  --accent-text:#7a6232;   /* darker bronze that meets AA for small accent text */

  --radius:     10px;
  --radius-lg:  14px;
  --pill:       999px;

  --shadow-sm:  0 1px 2px rgba(27,25,22,.05), 0 4px 14px rgba(27,25,22,.05);
  --shadow-md:  0 8px 24px rgba(27,25,22,.07);
  --shadow-lg:  0 18px 44px rgba(27,25,22,.11);

  --container:  1240px;
  --gutter:     clamp(20px, 5vw, 56px);

  /* ---------- fonts ----------
     Twee lettertypes, geladen via Google Fonts (zie <link> in elke <head>).

     --f-serif  Cormorant Garamond → alleen KOPPEN (section__title, product__title,
                page-hero h1, prose h2, faq summary, price, review-quote, why-card cijfers).
                Verfijnde klassieke serif: editorial, luxe, past bij Italiaans maatwerk.
     --f-sans   Inter → ALLE interface- en lopende tekst (body, nav, knoppen, labels,
                specs, formulieren, mobiel menu). Neutrale, schermleesbare UI-sans.

     Rolverdeling = bewust: serif draagt het visuele accent, sans houdt content rustig
     en leesbaar (WCAG). Niet mengen — serif uitsluitend voor koppen.
     Fallbacks (system-ui / Georgia) houden de stijl overeind als een webfont faalt. */
  --f-sans: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  --f-serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;

  --ease: cubic-bezier(.22,.61,.36,1);
}

/* ---------- reset ---------- */
*,*::before,*::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--f-sans);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul { list-style: none; padding: 0; }
svg { fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
[hidden] { display: none !important; }

.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }

/* visually-hidden (screen-reader only) */
.vh {
  position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* skip link */
.skip-link {
  position: fixed; top: 10px; left: 10px; z-index: 200;
  background: var(--ink); color: #fff; padding: 12px 18px; border-radius: var(--pill);
  font-weight: 600; font-size: .9rem; transform: translateY(-150%);
  transition: transform .25s var(--ease);
}
.skip-link:focus-visible { transform: translateY(0); outline: 2px solid var(--accent); outline-offset: 2px; }

/* global focus-visible */
:where(a, button, input, select, textarea, summary, .btn, .chip, .nav__link, .icon-btn, .product__thumb, .vgal__variant, .product__main--price, [tabindex]):focus-visible {
  outline: 2px solid var(--ink);
  outline-offset: 3px;
  border-radius: 6px;
}
/* light focus ring on dark surfaces */
.hero :focus-visible,
.showcase :focus-visible,
.footer :focus-visible,
.announce :focus-visible,
.mobile-menu :focus-visible { outline-color: #e8c98e; }

/* ---------- typography helpers ---------- */
.eyebrow {
  display: inline-block;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--accent-text);
  margin-bottom: 18px;
}
.eyebrow--light { color: #dcc9a8; }

.section__title {
  font-family: var(--f-serif);
  font-weight: 500;
  font-size: clamp(2.1rem, 4.6vw, 3.6rem);
  line-height: 1.04;
  letter-spacing: 0;
  color: var(--ink);
}
.section__title--light { color: #fdfbf7; }

.section__lead {
  margin-top: 20px;
  max-width: 56ch;
  color: var(--stone-2);
  font-size: 1.05rem;
}
.section__lead--light { color: #cfc7ba; }

/* ---------- buttons ---------- */
.btn {
  --bbg: var(--ink); --bfg: #fff; --bbd: transparent;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  background: var(--bbg); color: var(--bfg);
  border: 1.5px solid var(--bbd);
  padding: 15px 28px;
  border-radius: var(--pill);
  font-weight: 500; font-size: .95rem; letter-spacing: .01em;
  transition: transform .25s var(--ease), background .25s var(--ease), color .25s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn:active { transform: translateY(0); }
.btn--sm { padding: 10px 18px; font-size: .85rem; }
.btn--lg { padding: 18px 34px; font-size: 1rem; }
.btn--block { width: 100%; }
.btn--dark { --bbg: var(--ink); --bfg:#fff; }
.btn--dark:hover { --bbg: #000; }
.btn--light { --bbg:#fff; --bfg: var(--ink); }
.btn--accent { --bbg: var(--accent); --bfg: var(--ink); font-weight: 600; }  /* dark text on bronze = AA */
.btn--accent:hover { --bbg: var(--accent-dk); --bfg: #fff; }  /* white text on dark bronze = AA */
.btn--ghost { --bbg: transparent; --bfg: var(--ink); --bbd: var(--line); }
.btn--ghost:hover { --bbd: var(--ink); box-shadow: none; }
.btn--outline { --bbg: transparent; --bfg: var(--ink); --bbd: var(--ink); }
.btn--outline:hover { --bbg: var(--ink); --bfg:#fff; }
.btn--outline-light { --bbg: transparent; --bfg:#fff; --bbd: rgba(255,255,255,.55); }
.btn--outline-light:hover { --bbg:#fff; --bfg: var(--ink); --bbd:#fff; }

.icon-btn {
  width: 42px; height: 42px; display: inline-grid; place-items: center;
  border-radius: var(--pill); color: var(--ink); position: relative;
  transition: background .2s var(--ease);
}
.icon-btn:hover { background: var(--sand); }
.icon-btn svg { width: 20px; height: 20px; }

/* "Chat met ons" knop met groen, pulserend online-lichtje */
.header__chat {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 9px 16px 9px 13px; border-radius: var(--pill);
  border: 1px solid var(--line); background: #fff; color: var(--ink);
  font-weight: 600; font-size: .9rem; line-height: 1; white-space: nowrap;
  transition: background .2s var(--ease), border-color .2s var(--ease);
}
.header__chat:hover { background: var(--sand); border-color: var(--ink); }
.header__chat-dot {
  width: 9px; height: 9px; border-radius: 50%; flex: none;
  background: #2bd66a; box-shadow: 0 0 6px rgba(43,214,106,.55);
  position: relative;
}
.header__chat-dot::after {
  content: ""; position: absolute; inset: 0; border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(43,214,106,.6); animation: chat-glow 2.2s var(--ease) infinite;
}
@keyframes chat-glow {
  0%   { box-shadow: 0 0 0 0 rgba(43,214,106,.6); }
  70%  { box-shadow: 0 0 0 8px rgba(43,214,106,0); }
  100% { box-shadow: 0 0 0 0 rgba(43,214,106,0); }
}
@media (prefers-reduced-motion: reduce) {
  .header__chat-dot::after { animation: none; }
}

/* small svg icons */
.ic-check { width: 17px; height: 17px; stroke: var(--accent); stroke-width: 2.4; flex: none; }
.ic-arrow { width: 18px; height: 18px; transition: transform .25s var(--ease); }
.ic-wa { width: 19px; height: 19px; }

/* =========================================================
   Announcement bar
   ========================================================= */
.announce {
  background: var(--ink); color: #efe9df;
  font-size: .8rem; letter-spacing: .02em;
  overflow: hidden;
}
.announce__track {
  display: flex; align-items: center; justify-content: center; gap: 34px;
  height: 40px; padding-inline: var(--gutter);
}
.announce__item { display: inline-flex; align-items: center; gap: 8px; white-space: nowrap; }
.announce__item .ic-check { stroke: var(--accent); }
.announce__dup { display: none; }

/* =========================================================
   Header
   ========================================================= */
.header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(255,255,255,.86);
  backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .3s var(--ease), background .3s var(--ease);
}
.header.is-scrolled { box-shadow: var(--shadow-sm); background: rgba(255,255,255,.95); }
.header__inner { display: flex; align-items: center; gap: 22px; height: 78px; transition: height .3s var(--ease); }
.header.is-scrolled .header__inner { height: 66px; }

.header__logo { display: inline-flex; flex: none; }            /* nooit laten krimpen → geen vervorming */
.header__logo img { height: 30px; width: auto; aspect-ratio: 1200 / 222; max-width: none; }
.header__burger { display: none; flex-direction: column; gap: 5px; width: 28px; height: 28px; padding: 4px 0; }
.header__burger span { height: 2px; width: 100%; background: var(--ink); border-radius: 2px; transition: transform .3s var(--ease), opacity .2s; }

.nav { display: flex; gap: 4px; margin-inline: auto; }
.nav__link {
  position: relative; padding: 8px 13px; font-size: .92rem; font-weight: 500; color: var(--ink-soft);
  border-radius: var(--pill); transition: color .2s var(--ease); white-space: nowrap;
}
.nav__link::after {
  content: ""; position: absolute; left: 13px; right: 13px; bottom: 4px; height: 1.5px;
  background: var(--accent); transform: scaleX(0); transform-origin: left; transition: transform .28s var(--ease);
}
.nav__link:hover { color: var(--ink); }
.nav__link:hover::after { transform: scaleX(1); }

.header__actions { display: flex; align-items: center; gap: 8px; }
.header__cta-soft { margin-right: 2px; }

/* mobile menu */
.mobile-menu {
  position: fixed; inset: 0 0 0 auto; width: min(86vw, 380px); z-index: 70;
  background: var(--bg); box-shadow: var(--shadow-lg);
  transform: translateX(100%); visibility: hidden;
  /* show immediately on open; defer hiding until the slide-out finishes */
  transition: transform .4s var(--ease), visibility 0s linear .4s;
  padding: 92px 30px 30px; display: flex; flex-direction: column; gap: 28px;
  overflow-y: auto;
}
.mobile-menu.is-open { transform: translateX(0); visibility: visible; transition: transform .4s var(--ease), visibility 0s linear 0s; }
.mobile-menu__close {
  position: absolute; top: 26px; right: 24px; width: 44px; height: 44px;
  display: grid; place-items: center; border-radius: var(--pill); color: var(--ink);
  transition: background .2s var(--ease);
}
.mobile-menu__close:hover { background: var(--sand); }
.mobile-menu__close svg { width: 22px; height: 22px; stroke-width: 2; }
.mobile-menu__nav { display: flex; flex-direction: column; }
.mobile-menu__cta { display: flex; flex-direction: column; gap: 12px; margin-top: 8px; }
body.menu-open { overflow: hidden; }
.menu-backdrop {
  position: fixed; inset: 0; background: rgba(20,18,16,.45); z-index: 65;
  opacity: 0; pointer-events: none; transition: opacity .3s var(--ease);
}
.menu-backdrop.is-open { opacity: 1; pointer-events: auto; }

/* =========================================================
   Navigation: mega-menu + dropdown (demaatfabriek-stijl)
   ========================================================= */
.nav { align-items: center; }
.nav__item { position: static; display: inline-flex; align-items: center; }
.nav__link { display: inline-flex; align-items: center; gap: 5px; cursor: pointer; }
.nav__link .ic-chev { width: 15px; height: 15px; stroke: currentColor; stroke-width: 2; transition: transform .25s var(--ease); opacity: .7; }
.nav__item.is-open .nav__link .ic-chev { transform: rotate(180deg); }
.nav__link.is-current { color: var(--ink); }
.nav__link.is-current::after { transform: scaleX(1); }
.header__cta { margin-left: 4px; }

/* mega panel (full-width, anchored under the sticky header) */
.mega {
  position: absolute; left: 0; right: 0; top: 100%;
  background: var(--bg); border-top: 1px solid var(--line); box-shadow: var(--shadow-md);
  opacity: 0; visibility: hidden; transform: translateY(-8px);
  transition: opacity .26s var(--ease), transform .26s var(--ease), visibility 0s linear .26s;
  z-index: 59;
}
.nav__item--mega.is-open .mega {
  opacity: 1; visibility: visible; transform: translateY(0);
  transition: opacity .26s var(--ease), transform .26s var(--ease), visibility 0s linear 0s;
}
.mega__inner { display: grid; grid-template-columns: 1.45fr 1fr; gap: clamp(28px, 4vw, 56px); padding: 36px 0 6px; }
.mega__cols { display: grid; grid-template-columns: 1fr 1fr; gap: 26px 40px; }
.mega__head {
  display: block; font-weight: 600; font-size: .95rem; color: var(--ink);
  padding-bottom: 10px; margin-bottom: 6px; border-bottom: 1px solid var(--line);
}
.mega__head:hover { color: var(--accent-text); }
.mega__list { display: grid; gap: 2px; }
.mega__list a { display: block; padding: 6px 0; font-size: .9rem; color: var(--stone-2); transition: color .18s var(--ease), padding-left .18s var(--ease); }
.mega__list a:hover { color: var(--ink); padding-left: 5px; }
.mega__cards { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.mega__card { display: flex; flex-direction: column; border-radius: var(--radius); overflow: hidden; background: var(--sand-deep); border: 1px solid var(--line); transition: box-shadow .3s var(--ease), transform .3s var(--ease); }
.mega__card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.mega__card-media { aspect-ratio: 4/3; overflow: hidden; display: block; }
.mega__card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.mega__card:hover .mega__card-media img { transform: scale(1.05); }
.mega__card-body { padding: 13px 15px 15px; display: flex; flex-direction: column; gap: 3px; }
.mega__card-body strong { font-size: .92rem; font-weight: 600; color: var(--ink); }
.mega__card-body > span { font-size: .8rem; color: var(--stone); line-height: 1.35; }
.mega__card-link { display: inline-flex; align-items: center; gap: 6px; margin-top: 6px; font-size: .8rem; font-weight: 600; color: var(--accent-text); }
.mega__card-link .ic-arrow { width: 15px; height: 15px; stroke: var(--accent-text); }
.mega__foot { border-top: 1px solid var(--line); padding: 14px 0; }
.mega__all { display: inline-flex; align-items: center; gap: 8px; font-weight: 600; font-size: .92rem; color: var(--ink); }
.mega__all .ic-arrow { width: 17px; height: 17px; stroke: var(--ink); transition: transform .25s var(--ease); }
.mega__all:hover .ic-arrow { transform: translateX(4px); }

/* small dropdown (Inspiratie) */
.nav__item--drop { position: relative; }
.drop {
  position: absolute; top: 100%; left: 50%; transform: translateX(-50%) translateY(-8px);
  min-width: 190px; background: var(--bg); border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--shadow-md); padding: 8px; display: grid; gap: 2px;
  opacity: 0; visibility: hidden; transition: opacity .2s var(--ease), transform .2s var(--ease), visibility 0s linear .2s; z-index: 59;
}
.nav__item--drop.is-open .drop { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(6px); transition: opacity .2s var(--ease), transform .2s var(--ease), visibility 0s linear 0s; }
.drop a { padding: 9px 14px; border-radius: 9px; font-size: .9rem; color: var(--stone-2); transition: background .16s var(--ease), color .16s var(--ease); }
.drop a:hover { background: var(--sand); color: var(--ink); }

/* mobile drawer: header + accordions */
.mobile-menu { padding: 0; gap: 0; }
.mobile-menu__head { display: flex; align-items: center; justify-content: space-between; padding: 20px 22px; border-bottom: 1px solid var(--line); }
.mobile-menu__brand img { height: 24px; width: auto; }
.mobile-menu__close { position: static; }
.mobile-menu__nav { flex: 1; padding: 8px 22px; overflow-y: auto; }
.mobile-menu__nav a, .mobile-menu__nav summary { font-family: var(--f-sans); }
.m-link { display: block; font-size: 1.05rem; font-weight: 600; color: var(--ink); padding: 16px 0; border-bottom: 1px solid var(--line); }
.m-acc { border-bottom: 1px solid var(--line); }
.m-acc > summary {
  display: flex; align-items: center; justify-content: space-between; cursor: pointer; list-style: none;
  font-size: 1.05rem; font-weight: 600; color: var(--ink); padding: 16px 0;
}
.m-acc > summary::-webkit-details-marker { display: none; }
.m-acc > summary .ic-chev { width: 18px; height: 18px; stroke: var(--ink); stroke-width: 2; transition: transform .25s var(--ease); }
.m-acc[open] > summary .ic-chev { transform: rotate(180deg); }
.m-acc__body { display: grid; gap: 1px; padding: 0 0 14px 4px; }
.m-acc__body a { font-size: .98rem; font-weight: 500; color: var(--stone-2); padding: 9px 0; border: 0; }
.m-acc__body a:hover { color: var(--ink); }
.m-acc__all { font-weight: 600 !important; color: var(--accent-text) !important; }
.mobile-menu__cta { padding: 18px 22px calc(18px + env(safe-area-inset-bottom)); border-top: 1px solid var(--line); }
.btn .ic-wa { margin-right: 2px; }

/* =========================================================
   Hero
   ========================================================= */
.hero { position: relative; min-height: clamp(560px, 82vh, 820px); display: flex; align-items: center; overflow: hidden; }
.hero__media { position: absolute; inset: 0; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; }
.hero__scrim {
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(18,16,14,.74) 0%, rgba(18,16,14,.40) 42%, rgba(18,16,14,.05) 78%),
    linear-gradient(0deg, rgba(18,16,14,.55) 0%, rgba(18,16,14,0) 45%);
}
.hero__content { position: relative; z-index: 2; color: #fff; padding-block: clamp(40px, 8vh, 92px); }
.hero__content > * { max-width: 760px; }
.hero__title {
  font-family: var(--f-serif); font-weight: 500;
  font-size: clamp(2.8rem, 7.2vw, 5.4rem); line-height: 1.02; letter-spacing: -.015em;
  margin-bottom: 22px; text-shadow: 0 2px 30px rgba(0,0,0,.25);
}
.hero__sub { font-size: clamp(1rem, 1.6vw, 1.18rem); max-width: 60ch; color: rgba(255,255,255,.92); }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.hero__reassure { display: inline-flex; align-items: center; gap: 9px; margin-top: 18px; font-size: .9rem; color: rgba(255,255,255,.9); letter-spacing: .01em; }
.hero__reassure .ic-check { stroke: #e8c98e; }
.hero__trust { display: flex; align-items: center; gap: 18px; margin-top: 28px; flex-wrap: wrap; }
.hero__rating { display: inline-flex; align-items: center; gap: 9px; font-size: .92rem; color: rgba(255,255,255,.94); }
.hero__rating .rating__stars { color: #e8c98e; letter-spacing: 2px; font-size: 1rem; }
.hero__rating strong { color: #fff; font-weight: 700; }
.hero__divider { width: 1px; height: 20px; background: rgba(255,255,255,.3); }
.hero__badge { display: inline-flex; align-items: center; gap: 8px; font-size: .9rem; color: rgba(255,255,255,.94); }
.hero__badge .ic-check { stroke: #e8c98e; }

/* =========================================================
   Generic sections
   ========================================================= */
.section { padding-block: clamp(64px, 9vw, 128px); }
.section--sand { background: var(--sand); }
.section--ink { background: var(--ink); }
.section__head { max-width: 760px; margin-bottom: clamp(40px, 5vw, 64px); }
.section__head--row { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; max-width: none; }

/* intro */
.intro__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 6vw, 90px); align-items: start; }
.intro__body p { color: var(--stone-2); }
.intro__body p + p { margin-top: 18px; }

/* =========================================================
   Category grid
   ========================================================= */
.cat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.cat-card {
  background: var(--bg); border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease);
  display: flex; flex-direction: column;
}
.cat-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); border-color: transparent; }
.cat-card__media { aspect-ratio: 4/5; overflow: hidden; background: var(--sand-deep); }
.cat-card__media img { width: 100%; height: 100%; object-fit: cover; object-position: center; transition: transform .6s var(--ease); }
.cat-card:hover .cat-card__media img { transform: scale(1.06); }
.cat-card__body { padding: 22px 22px 26px; }
.cat-card__body h3 { font-size: 1.18rem; font-weight: 600; }
.cat-card__body p { color: var(--stone); font-size: .9rem; margin-top: 4px; }
.cat-card__link {
  display: inline-flex; align-items: center; gap: 8px; margin-top: 16px;
  font-size: .85rem; font-weight: 600; color: var(--ink); letter-spacing: .02em;
}
.cat-card__link .ic-arrow { stroke: var(--accent-text); }
.cat-card:hover .cat-card__link .ic-arrow { transform: translateX(4px); }

/* =========================================================
   Why grid
   ========================================================= */
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(24px, 4vw, 52px); }
.why-card { padding-top: 28px; border-top: 2px solid var(--ink); }
.why-card__num { font-family: var(--f-serif); font-size: 2.4rem; color: var(--accent); display: block; line-height: 1; margin-bottom: 16px; }
.why-card h3 { font-size: 1.3rem; font-weight: 600; margin-bottom: 12px; }
.why-card p { color: var(--stone-2); }

/* =========================================================
   Showcase (dark)
   ========================================================= */
.showcase .show-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.show-card { border-radius: var(--radius-lg); overflow: hidden; background: #232019; position: relative; }
.show-card__media { aspect-ratio: 3/4; overflow: hidden; background: #f2efe9; }
.show-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.show-card:hover .show-card__media img { transform: scale(1.07); }
.show-card__cap { padding: 20px 20px 24px; }
.show-card__cap h3 { color: #fdfbf7; font-size: 1.08rem; font-weight: 600; }
.show-card__cap p { color: #c2b8a9; font-size: .88rem; margin-top: 6px; }

/* =========================================================
   Steps
   ========================================================= */
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(24px, 4vw, 48px); }
.step { position: relative; }
.step__num {
  width: 52px; height: 52px; border-radius: var(--pill); display: grid; place-items: center;
  background: var(--sand); color: var(--ink); font-family: var(--f-serif); font-size: 1.5rem; font-weight: 600;
  border: 1px solid var(--line); margin-bottom: 22px;
}
.step h3 { font-size: 1.28rem; font-weight: 600; margin-bottom: 12px; }
.step p { color: var(--stone-2); }
.steps__cta { margin-top: clamp(40px, 5vw, 60px); }

/* =========================================================
   Price configurator
   ========================================================= */
.price__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px, 6vw, 80px); align-items: center; }
.price__intro p { color: var(--stone-2); margin-top: 18px; }
.link-arrow { display: inline-flex; align-items: center; gap: 8px; margin-top: 26px; font-weight: 500; color: var(--ink); }
.link-arrow span { text-decoration: underline; text-underline-offset: 3px; text-decoration-color: var(--accent); }
.link-arrow .ic-arrow { stroke: var(--accent-text); }

.price__card {
  background: var(--bg); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: clamp(26px, 3vw, 38px); box-shadow: var(--shadow-md);
}
.price__card-title { font-size: 1rem; font-weight: 700; margin-bottom: 22px; }
.price__types { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 30px; }
.chip {
  padding: 9px 18px; border-radius: var(--pill); border: 1px solid var(--line);
  background: var(--bg); font-size: .9rem; font-weight: 500; color: var(--ink-soft);
  transition: all .2s var(--ease);
}
.chip:hover { border-color: var(--ink); }
.chip.is-active { background: var(--accent); border-color: var(--accent-dk); color: var(--ink); font-weight: 600; }

.price__slider-head { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 12px; }
.price__slider-head span:first-child { font-size: .85rem; color: var(--stone); letter-spacing: .04em; text-transform: uppercase; }
.price__width { font-weight: 600; font-size: 1.05rem; }

input[type="range"] {
  -webkit-appearance: none; appearance: none; width: 100%; height: 4px; border-radius: var(--pill);
  background: var(--sand-deep); outline: none; margin: 6px 0;
}
input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none; appearance: none; width: 26px; height: 26px; border-radius: 50%;
  background: var(--ink); border: 4px solid #fff; box-shadow: var(--shadow-sm); cursor: pointer;
  transition: transform .15s var(--ease);
}
input[type="range"]::-webkit-slider-thumb:hover { transform: scale(1.1); }
input[type="range"]::-moz-range-thumb {
  width: 26px; height: 26px; border-radius: 50%; background: var(--ink); border: 4px solid #fff; cursor: pointer;
}
input[type="range"]:focus-visible::-webkit-slider-thumb { box-shadow: 0 0 0 4px rgba(171,138,92,.45); }
input[type="range"]:focus-visible::-moz-range-thumb { box-shadow: 0 0 0 4px rgba(171,138,92,.45); }
.price__ticks { display: flex; justify-content: space-between; font-size: .75rem; color: var(--stone); margin-top: 6px; }

.price__result {
  display: flex; flex-direction: column; gap: 4px;
  margin-top: 30px; padding-top: 26px; border-top: 1px solid var(--line);
}
.price__result-label { font-size: .8rem; color: var(--stone); text-transform: uppercase; letter-spacing: .06em; }
.price__amount { font-family: var(--f-serif); font-size: clamp(2.2rem, 4.4vw, 2.9rem); font-weight: 600; line-height: 1.05; color: var(--ink); }
.price__amount.is-pop { animation: amount-pop .4s var(--ease); }
@keyframes amount-pop { 0% { transform: scale(1); } 40% { transform: scale(1.06); color: var(--accent-dk); } 100% { transform: scale(1); } }

.price__lead { margin-top: 22px; }
.price__lead-label { display: block; font-size: .92rem; color: var(--ink-soft); margin-bottom: 12px; }
.price__lead-label strong { color: var(--accent-dk); }
.price__lead-row { display: flex; gap: 10px; }
.price__lead-row input {
  flex: 1; min-width: 0; border: 1px solid var(--line); border-radius: var(--pill);
  padding: 13px 18px; font-family: inherit; font-size: .92rem; color: var(--ink); background: var(--bg);
  transition: border-color .2s var(--ease);
}
.price__lead-row input::placeholder { color: var(--stone); }
.price__lead-row input:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; border-color: var(--accent); }
.price__lead-row .btn { flex: none; }
.price__lead-status { font-size: .82rem; color: var(--accent-dk); margin-top: 10px; min-height: 1em; font-weight: 500; }
.price__disclaimer { font-size: .78rem; color: var(--stone); margin-top: 16px; }

/* =========================================================
   Inspiration
   ========================================================= */
.insp-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.insp-card {
  border-radius: var(--radius-lg); overflow: hidden; background: var(--bg); border: 1px solid var(--line);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
  display: flex; flex-direction: column;
}
.insp-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.insp-card__media { aspect-ratio: 16/11; overflow: hidden; background: var(--sand-deep); }
.insp-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.insp-card:hover .insp-card__media img { transform: scale(1.05); }
.insp-card__body { padding: 24px 24px 28px; flex: 1; display: flex; flex-direction: column; align-items: flex-start; }
.insp-card__tag { font-size: .72rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--accent-text); }
.insp-card__body h3 { font-size: 1.22rem; font-weight: 600; margin: 12px 0; line-height: 1.25; }
.insp-card__body p { color: var(--stone-2); font-size: .94rem; }
.insp-card__body .cat-card__link { margin-top: auto; padding-top: 18px; }

/* =========================================================
   Lookbook (Pinterest-style masonry)
   ========================================================= */
.lookbook__grid { columns: 4; column-gap: 18px; margin-top: clamp(28px, 4vw, 46px); }
.lb-item {
  break-inside: avoid; margin: 0 0 18px; position: relative;
  border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm);
  background: var(--sand-deep); display: block;
}
.lb-item img { width: 100%; height: auto; display: block; transition: transform .6s var(--ease); }
.lb-item::after {
  content: ""; position: absolute; inset: 0; pointer-events: none; opacity: 0;
  background: linear-gradient(to top, rgba(27,25,22,.62), rgba(27,25,22,0) 46%);
  transition: opacity .35s var(--ease);
}
.lb-item figcaption {
  position: absolute; left: 14px; right: 14px; bottom: 13px; z-index: 1;
  color: #fff; font-size: .85rem; font-weight: 500; letter-spacing: .01em;
  opacity: 0; transform: translateY(8px);
  transition: opacity .35s var(--ease), transform .35s var(--ease);
}
.lb-item:hover img { transform: scale(1.06); }
.lb-item:hover::after,
.lb-item:hover figcaption { opacity: 1; }
.lb-item:hover figcaption { transform: translateY(0); }
.lookbook__cta { text-align: center; margin-top: clamp(28px, 4vw, 46px); }
.btn .ic-pin { width: 18px; height: 18px; flex: none; }

/* Instagram-feed (Elfsight) */
.instagram__widget { margin-top: clamp(28px, 4vw, 46px); min-height: 120px; }
.instagram__cta { text-align: center; margin-top: clamp(28px, 4vw, 46px); }
.btn .ic-ig { width: 18px; height: 18px; flex: none; }

/* =========================================================
   Split (quality / over-ons)
   ========================================================= */
.split__grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(32px, 6vw, 80px); align-items: center; }
.split__media { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); aspect-ratio: 4/5; }
.split__media img { width: 100%; height: 100%; object-fit: cover; }
.split__body p { color: var(--stone-2); margin-top: 18px; }
.check-list { margin-top: 26px; display: grid; gap: 12px; }
.check-list li { display: flex; align-items: center; gap: 12px; font-weight: 500; }

/* =========================================================
   Showroom
   ========================================================= */
.showroom__grid { display: grid; grid-template-columns: 1.3fr .9fr; gap: clamp(32px, 5vw, 70px); align-items: center; }
.showroom__body p { color: var(--stone-2); margin-top: 18px; }
.showroom__points { display: grid; gap: 12px; margin-top: 26px; }
.showroom__points span { display: flex; align-items: center; gap: 12px; }
.showroom__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; }
.ic-wa { stroke: currentColor; }

.showroom__card {
  background: var(--sand); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: clamp(28px, 3vw, 40px);
}
.showroom__card h3 { font-family: var(--f-serif); font-size: 1.7rem; font-weight: 600; margin-bottom: 22px; }
.info-list { display: grid; gap: 18px; margin-bottom: 26px; }
.info-list dt { font-size: .75rem; text-transform: uppercase; letter-spacing: .08em; color: var(--stone); margin-bottom: 3px; }
.info-list dd { font-weight: 500; }
.info-list a:hover { color: var(--accent-text); }

/* =========================================================
   Reviews
   ========================================================= */
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.review {
  background: var(--bg); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 30px; display: flex; flex-direction: column; gap: 16px;
}
.review .rating__stars { color: var(--accent); font-size: .95rem; letter-spacing: 2px; }
.review blockquote { font-size: 1.05rem; line-height: 1.55; color: var(--ink-soft); font-family: var(--f-serif); font-weight: 500; }
.review figcaption { font-size: .88rem; color: var(--stone); font-weight: 500; margin-top: auto; }
.reviews__note { text-align: center; font-size: .76rem; color: var(--stone); margin-top: 28px; }
/* host for the live Google reviews widget (Trustindex / Elfsight) */
.reviews__widget:not(:empty) { margin-bottom: 28px; }
.reviews__cta { text-align: center; margin-top: clamp(28px, 4vw, 44px); }
.ic-google { width: 18px; height: 18px; flex: none; }

/* =========================================================
   USP bar
   ========================================================= */
.usp { padding-block: clamp(48px, 6vw, 80px); border-top: 1px solid var(--line); }
.usp__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(24px, 4vw, 48px); }
.usp__item { text-align: left; }
.usp__ic { width: 30px; height: 30px; stroke: var(--accent); margin-bottom: 16px; }
.usp__item h3 { font-size: 1.05rem; font-weight: 600; margin-bottom: 6px; }
.usp__item p { color: var(--stone); font-size: .9rem; }

/* =========================================================
   Footer
   ========================================================= */
.footer { background: #14120f; color: #cfc7bb; padding-top: clamp(56px, 7vw, 96px); }
.footer__top {
  display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.3fr; gap: clamp(28px, 4vw, 56px);
  padding-bottom: 56px; border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer__logo { height: 28px; width: auto; filter: brightness(0) invert(1); opacity: .92; margin-bottom: 18px; }
.footer__brand p { font-size: .92rem; color: #b3a99c; max-width: 38ch; }
.footer__social { display: flex; gap: 8px; margin-top: 22px; }
.footer__social .icon-btn { color: #cfc7bb; border: 1px solid rgba(255,255,255,.14); }
.footer__social .icon-btn:hover { background: rgba(255,255,255,.08); color:#fff; }
.footer__col h3 { font-size: .78rem; text-transform: uppercase; letter-spacing: .12em; color: #fff; margin-bottom: 18px; font-weight: 600; }
.footer__col ul { display: grid; gap: 11px; }
.footer__col a { font-size: .92rem; color: #b3a99c; transition: color .2s var(--ease); }
.footer__col a:hover { color: #fff; }
.footer__contact ul { margin-bottom: 22px; }

.newsletter label { display: block; font-size: .8rem; color: #fff; margin-bottom: 10px; font-weight: 500; }
.newsletter__row { display: flex; gap: 8px; }
.newsletter input {
  flex: 1; min-width: 0; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.16);
  border-radius: var(--pill); padding: 11px 16px; color: #fff; font-family: inherit; font-size: .9rem;
}
.newsletter input::placeholder { color: #968d80; }
.newsletter input:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; border-color: var(--accent); }
.newsletter__status { font-size: .8rem; color: #e8c98e; margin-top: 10px; min-height: 1em; }

.footer__bottom {
  display: flex; align-items: center; justify-content: space-between; gap: 18px; flex-wrap: wrap;
  padding-block: 26px; font-size: .82rem; color: #9a9184;
}
.footer__legal { display: flex; gap: 20px; flex-wrap: wrap; }
.footer__legal a:hover { color: #fff; }

/* =========================================================
   Project video reels (real work, on location)
   ========================================================= */
.reel-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.reel { margin: 0; }
.reel__media {
  position: relative; aspect-ratio: 9 / 16; border-radius: var(--radius-lg); overflow: hidden;
  background: #000; box-shadow: 0 18px 44px rgba(0,0,0,.34);
}
.reel__video { width: 100%; height: 100%; object-fit: cover; display: block; }
.reel__badge {
  position: absolute; top: 12px; left: 12px; z-index: 2;
  display: inline-flex; align-items: center; gap: 7px;
  font-size: .66rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: #fff;
  background: rgba(20,18,16,.5); backdrop-filter: blur(6px);
  padding: 6px 12px; border-radius: var(--pill);
}
.reel__badge::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: #e8c98e; box-shadow: 0 0 0 0 rgba(232,201,142,.6); animation: pulse-dot 2.4s ease-out infinite; }
.reel figcaption { color: #cfc7ba; font-size: .92rem; margin-top: 14px; font-weight: 500; }
.videos__cta { margin-top: clamp(36px, 5vw, 56px); text-align: center; }

/* enkele staande productvideo (productpagina) */
.product-reel { max-width: 360px; margin: clamp(28px, 4vw, 44px) auto 0; }
.product-reel .reel__media { aspect-ratio: 9 / 16; }
.product-reel .reel__video { width: 100%; height: 100%; object-fit: cover; display: block; }
.product-reel figcaption { color: #cfc7ba; font-size: .92rem; margin-top: 14px; font-weight: 500; text-align: center; }

@keyframes pulse-dot {
  0% { box-shadow: 0 0 0 0 rgba(232,201,142,.5); }
  70% { box-shadow: 0 0 0 7px rgba(232,201,142,0); }
  100% { box-shadow: 0 0 0 0 rgba(232,201,142,0); }
}

/* =========================================================
   Final CTA band (distinctive grain-textured close)
   ========================================================= */
.cta-band {
  position: relative; background: var(--ink); color: #fff; text-align: center;
  padding-block: clamp(72px, 10vw, 132px); overflow: hidden;
}
.cta-band::before { /* fine grain for craft/depth */
  content: ""; position: absolute; inset: 0; pointer-events: none; opacity: .07;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 170px;
}
.cta-band::after { /* warm brass glow from the top */
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(120% 95% at 50% -10%, rgba(171,138,92,.22), transparent 58%);
}
.cta-band__inner { position: relative; z-index: 1; max-width: 760px; margin-inline: auto; }
.cta-band__title {
  font-family: var(--f-serif); font-weight: 500; color: #fdfbf7;
  font-size: clamp(2.4rem, 5.6vw, 4rem); line-height: 1.03; letter-spacing: -.015em; margin: 6px 0 18px;
}
.cta-band__sub { color: #cfc7ba; font-size: 1.06rem; max-width: 54ch; margin: 0 auto; }
.cta-band__actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-top: 34px; }
.cta-band__reassure { margin-top: 24px; font-size: .85rem; color: #b3a99c; letter-spacing: .04em; }

/* =========================================================
   Sticky mobile CTA bar
   ========================================================= */
.mobile-cta {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 55;
  display: none; gap: 10px; padding: 11px 14px calc(11px + env(safe-area-inset-bottom, 0px));
  background: rgba(255,255,255,.93); backdrop-filter: saturate(140%) blur(14px);
  border-top: 1px solid var(--line); box-shadow: 0 -6px 24px rgba(27,25,22,.10);
}
.mobile-cta__btn { flex: 1; display: inline-flex; align-items: center; justify-content: center; padding: 14px 10px; border-radius: var(--pill); font-weight: 600; font-size: .92rem; transition: transform .2s var(--ease); }
.mobile-cta__btn:active { transform: scale(.97); }
.mobile-cta__btn--primary { background: var(--ink); color: #fff; }
.mobile-cta__btn--ghost { background: var(--sand); color: var(--ink); border: 1px solid var(--line); }
.mobile-cta__wa { flex: none; width: 50px; display: grid; place-items: center; border-radius: var(--pill); background: #25D366; }
.mobile-cta__wa svg { width: 24px; height: 24px; fill: #fff; stroke: #25D366; stroke-width: 1.2; }

/* =========================================================
   WhatsApp float
   ========================================================= */
.wa-float {
  position: fixed; right: 22px; bottom: 22px; z-index: 50;
  width: 56px; height: 56px; border-radius: var(--pill); background: #25D366; color: #fff;
  display: grid; place-items: center; box-shadow: var(--shadow-md);
  transition: transform .25s var(--ease);
}
.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width: 28px; height: 28px; fill: #fff; stroke: #25D366; stroke-width: 1.2; }

/* =========================================================
   Reveal animation (progressive enhancement)
   ========================================================= */
.reveal { transition: opacity .7s var(--ease), transform .7s var(--ease); }
html.js .reveal { opacity: 0; transform: translateY(26px); }
html.js .reveal.is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html.js .reveal { opacity: 1; transform: none; transition: none; }
  .announce__track { animation: none !important; }
  .price__amount.is-pop { animation: none !important; }
  .reel__badge::before { animation: none !important; }
  html { scroll-behavior: auto; }
  * { scroll-behavior: auto; }
}

/* larger touch target for slider thumb on touch devices */
@media (pointer: coarse) {
  input[type="range"]::-webkit-slider-thumb { width: 30px; height: 30px; }
  input[type="range"]::-moz-range-thumb { width: 30px; height: 30px; }
}

/* =========================================================
   Inner pages: page-hero, breadcrumb, product, collection, prose, form
   ========================================================= */
.page-hero { background: var(--sand); padding: clamp(34px, 6vw, 70px) 0 clamp(30px, 5vw, 54px); border-bottom: 1px solid var(--line); }
.page-hero--center { text-align: center; }
.page-hero--center .page-hero__lead { margin-inline: auto; }
.breadcrumb { display: flex; flex-wrap: wrap; align-items: center; gap: 7px; font-size: .82rem; color: var(--stone); margin-bottom: 18px; }
.breadcrumb a { color: var(--stone); transition: color .18s var(--ease); }
.breadcrumb a:hover { color: var(--ink); }
.breadcrumb i { font-style: normal; opacity: .55; }
.breadcrumb .crumb-current { color: var(--ink); font-weight: 500; }
.page-hero h1 { font-family: var(--f-serif); font-weight: 500; font-size: clamp(2.1rem, 5vw, 3.5rem); line-height: 1.06; letter-spacing: -.012em; }
.page-hero__lead { max-width: 62ch; color: var(--stone-2); margin-top: 18px; font-size: 1.05rem; }
.page-hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 28px; }

/* product cards grid (collection + related) */
.product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.pcard { display: flex; flex-direction: column; background: var(--bg); border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; transition: transform .35s var(--ease), box-shadow .35s var(--ease); }
.pcard:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); border-color: transparent; }
.pcard__media { aspect-ratio: 4/5; overflow: hidden; background: var(--sand-deep); }
.pcard__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.pcard:hover .pcard__media img { transform: scale(1.06); }
.pcard__body { padding: 20px 20px 24px; display: flex; flex-direction: column; flex: 1; }
.pcard__body h3 { font-size: 1.12rem; font-weight: 600; }
.pcard__body p { color: var(--stone); font-size: .9rem; margin-top: 5px; flex: 1; }
.pcard__foot { display: flex; align-items: center; justify-content: space-between; margin-top: 16px; }
.pcard__price { font-size: .9rem; color: var(--stone-2); }
.pcard__price strong { color: var(--ink); font-weight: 600; }
.pcard__link { display: inline-flex; align-items: center; gap: 6px; font-size: .85rem; font-weight: 600; color: var(--accent-text); }
.pcard__link .ic-arrow { width: 16px; height: 16px; stroke: var(--accent-text); transition: transform .25s var(--ease); }
.pcard:hover .pcard__link .ic-arrow { transform: translateX(4px); }

/* product detail */
.product__grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(30px, 5vw, 60px); align-items: start; }
.product__gallery { display: grid; gap: 14px; }
.product__main { border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 4/5; background: var(--sand-deep); box-shadow: var(--shadow-md); }
.product__main img { width: 100%; height: 100%; object-fit: cover; }
.product__gallery--fit .product__main { aspect-ratio: auto; }
.product__gallery--fit .product__main img { height: auto; object-fit: contain; }
/* klik hoofdfoto → prijs-overlay */
.js .product__main--price { position: relative; cursor: pointer; }
.price-pop { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px; text-align: center; padding: 24px; background: rgba(27,25,22,.58); color: #fff; opacity: 0; visibility: hidden; transition: opacity .25s var(--ease); }
.product__main--price.price-pop-on .price-pop { opacity: 1; visibility: visible; }
.price-pop__amount { font-family: var(--f-serif); font-weight: 600; font-size: clamp(2rem, 4.5vw, 3rem); line-height: 1; }
.price-pop__sub { font-size: .9rem; max-width: 34ch; opacity: .92; }
.price-hint { position: absolute; left: 12px; bottom: 12px; background: rgba(255,255,255,.92); color: var(--ink); font-size: .75rem; font-weight: 600; padding: 6px 12px; border-radius: var(--pill); box-shadow: var(--shadow-sm); pointer-events: none; transition: opacity .2s ease; }
.product__main--price.price-pop-on .price-hint { opacity: 0; }
/* variant-keuze (uitvoeringen met eigen foto's + prijs) */
.vgal__variants { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 14px; }
.vgal__variant { font-family: inherit; font-size: .85rem; font-weight: 600; padding: 8px 14px; border-radius: var(--pill); border: 1px solid var(--line); background: #fff; color: var(--ink); cursor: pointer; transition: background .2s var(--ease), color .2s var(--ease), border-color .2s var(--ease); }
.vgal__variant:hover { border-color: var(--ink); }
.vgal__variant.is-active { background: var(--ink); color: #fff; border-color: var(--ink); }
.product__thumbs { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.product__thumbs img { width: 100%; aspect-ratio: 1; object-fit: cover; border-radius: var(--radius); background: var(--sand-deep); }
/* landscape (wide) gallery — voor producten met een liggende fotoset (bv. de U-vormige inloopkast) */
.product__gallery--wide .product__main { aspect-ratio: 4/3; }
.product__gallery--wide .product__thumbs { grid-template-columns: repeat(5, 1fr); gap: 12px; }
.product__thumb { padding: 0; border: 0; background: var(--sand-deep); border-radius: var(--radius); overflow: hidden; cursor: pointer; aspect-ratio: 4/3; outline-offset: 3px; -webkit-tap-highlight-color: transparent; }
.product__thumb img { width: 100%; height: 100%; aspect-ratio: auto; object-fit: cover; display: block; transition: transform .5s var(--ease); }
.product__thumb:hover img { transform: scale(1.06); }
.product__thumb.is-active { box-shadow: 0 0 0 2px var(--accent); }
/* standaard productgalerij: klikbare thumbnail-afbeeldingen (niet op [data-gallery]-pagina's) */
.product__gallery:not([data-gallery]) .product__thumbs img { cursor: pointer; transition: opacity .2s ease, transform .2s ease; }
.js .product__gallery:not([data-gallery]) .product__thumbs img:hover { opacity: .85; transform: translateY(-2px); }
.js .product__gallery:not([data-gallery]) .product__thumbs img:focus-visible { outline: 2px solid var(--ink); outline-offset: 2px; }
.product__info { position: sticky; top: 100px; }
.product__info .eyebrow { margin-bottom: 10px; }
.product__title { font-family: var(--f-serif); font-weight: 500; font-size: clamp(1.9rem, 3.4vw, 2.8rem); line-height: 1.08; }
.product__lead { color: var(--stone-2); margin-top: 16px; }
.product__price { display: flex; align-items: baseline; gap: 10px; margin-top: 22px; }
.product__price .amount { font-size: 1.5rem; font-weight: 600; color: var(--ink); }
.product__price .from { font-size: .85rem; color: var(--stone); }
.product__usps { display: grid; gap: 12px; margin: 24px 0; }
.product__usps li { display: flex; align-items: flex-start; gap: 11px; font-size: .95rem; color: var(--ink-soft); }
.product__usps .ic-check { margin-top: 3px; }
.product__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 8px; }
.product__note { font-size: .82rem; color: var(--stone); margin-top: 16px; }
.product__specs { margin-top: 28px; border-top: 1px solid var(--line); }
.product__specs dl { display: grid; grid-template-columns: 1fr; gap: 0; }
.product__specs div { display: flex; justify-content: space-between; gap: 16px; padding: 13px 0; border-bottom: 1px solid var(--line); }
.product__specs dt { color: var(--stone); font-size: .9rem; }
.product__specs dd { color: var(--ink); font-size: .9rem; font-weight: 500; text-align: right; }

/* simple prose (blog article, legal) */
.prose { max-width: 74ch; }
.prose > * + * { margin-top: 16px; }
.prose h2 { font-family: var(--f-serif); font-weight: 500; font-size: clamp(1.5rem, 3vw, 2rem); margin-top: 38px; }
.prose h3 { font-size: 1.2rem; font-weight: 600; margin-top: 26px; }
.prose p, .prose li { color: var(--stone-2); line-height: 1.75; }
.prose ul, .prose ol { padding-left: 22px; display: grid; gap: 8px; }
.prose a { color: var(--accent-text); text-decoration: underline; text-underline-offset: 3px; }
.prose strong { color: var(--ink); }

/* blog cards */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }

/* contact / showroom split card */
.info-card { background: var(--bg); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 30px; box-shadow: var(--shadow-sm); }
.info-card h3 { font-size: 1.2rem; font-weight: 600; margin-bottom: 16px; }
.info-list { display: grid; gap: 2px; }
.info-list div { display: grid; grid-template-columns: 110px 1fr; gap: 10px; padding: 11px 0; border-bottom: 1px solid var(--line); }
.info-list dt { color: var(--stone); font-size: .9rem; }
.info-list dd { font-size: .92rem; font-weight: 500; }
.map-embed { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); aspect-ratio: 16/10; background: var(--sand-deep); }
.map-embed iframe { width: 100%; height: 100%; border: 0; display: block; }

/* form */
.form { display: grid; gap: 18px; max-width: 640px; }
.form__row { display: grid; gap: 8px; }
.form__row--2 { grid-template-columns: 1fr 1fr; gap: 18px; }
.form label { font-size: .9rem; font-weight: 500; color: var(--ink-soft); }
.form input, .form select, .form textarea {
  width: 100%; padding: 13px 15px; border: 1px solid var(--line); border-radius: var(--radius);
  background: var(--bg); font: inherit; color: var(--ink); transition: border-color .2s var(--ease);
}
.form textarea { min-height: 130px; resize: vertical; }
.form input:focus-visible, .form select:focus-visible, .form textarea:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; border-color: var(--accent); }
.form__status { font-size: .9rem; color: var(--accent-dk); font-weight: 500; min-height: 1em; }
.form__status.is-ok, .price__lead-status.is-ok, .newsletter__status.is-ok { color: #2f7d3a; }
.form__status.is-err, .price__lead-status.is-err, .newsletter__status.is-err { color: #b3402e; }

/* honeypot — verborgen voor mensen, zichtbaar voor bots */
.hp-field { position: absolute !important; left: -9999px !important; width: 1px; height: 1px; overflow: hidden; opacity: 0; pointer-events: none; }

/* form reassure-regel onder de knop */
.form__reassure { display: flex; align-items: center; gap: 8px; font-size: .9rem; color: var(--stone-2); font-weight: 500; margin-top: 14px; }
.form__reassure .ic-check { stroke: var(--accent); flex: none; }

button[disabled] { opacity: .6; cursor: progress; }

/* na-je-aanvraag stappen in offerte-aside */
.steps-list { list-style: none; counter-reset: st; display: grid; gap: 14px; margin-top: 6px; }
.steps-list li { counter-increment: st; position: relative; padding-left: 38px; font-size: .92rem; color: var(--stone-2); line-height: 1.5; }
.steps-list li::before { content: counter(st); position: absolute; left: 0; top: -2px; width: 26px; height: 26px; display: grid; place-items: center; border-radius: var(--pill); background: var(--accent); color: var(--ink); font-family: var(--f-serif); font-weight: 600; font-size: .95rem; }
.steps-list strong { color: var(--ink); }

/* product-story (zintuiglijke beschrijving op productpagina) */
.product__story { max-width: 760px; margin: clamp(28px, 4vw, 44px) 0 0; }
.product__story p { color: var(--stone-2); line-height: 1.8; font-size: 1.05rem; }

/* FAQ accordions */
.faq-wrap { max-width: 820px; margin: 0 auto; display: grid; gap: 0; border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item summary { list-style: none; cursor: pointer; padding: 22px 44px 22px 2px; position: relative; font-family: var(--f-serif); font-size: clamp(1.1rem, 2vw, 1.3rem); font-weight: 500; color: var(--ink); }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: ""; position: absolute; right: 6px; top: 50%; width: 11px; height: 11px; border-right: 2px solid var(--accent); border-bottom: 2px solid var(--accent); transform: translateY(-65%) rotate(45deg); transition: transform .25s var(--ease); }
.faq-item[open] summary::after { transform: translateY(-35%) rotate(-135deg); }
.faq-item summary:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; border-radius: 4px; }
.faq-item__body { padding: 0 2px 24px; }
.faq-item__body p { color: var(--stone-2); line-height: 1.75; max-width: 70ch; }

/* reviews placeholder (geen verzonnen reviews meer) */
.reviews__placeholder { text-align: center; color: var(--stone); font-size: .92rem; margin: 8px 0 4px; }

/* zakelijke gegevens in de footer */
.footer__bizinfo { font-size: .78rem; color: var(--stone); margin-top: 14px; line-height: 1.6; }

/* generic two-column content row */
.feature { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 6vw, 72px); align-items: center; }
.feature__media { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); aspect-ratio: 5/4; }
.feature__media img { width: 100%; height: 100%; object-fit: cover; }
.feature--rev .feature__media { order: 2; }
.feature__body p { color: var(--stone-2); margin-top: 16px; }

/* =========================================================
   Responsive
   ========================================================= */
.hide-mobile { display: inline-flex; }

/* Krap desktopbereik: maak de nav compacter zodat logo + nav + CTA passen
   (voorkomt dat de "Offerte aanvragen"-knop/WA-icoon over de rand vallen) */
@media (max-width: 1240px) {
  .header__inner { gap: 14px; }
  .nav { gap: 2px; }
  .nav__link { padding: 8px 10px; font-size: .9rem; }
  .header__actions .icon-btn,
  .header__chat { display: none; }   /* dubbele chat-knop: de zwevende blijft */
}

@media (max-width: 1180px) {
  .cat-grid { grid-template-columns: repeat(2, 1fr); }
  .showcase .show-grid { grid-template-columns: repeat(2, 1fr); }
  .lookbook__grid { columns: 3; }
  .header__cta-soft { display: none; }
}

@media (max-width: 1024px) {
  .nav { display: none; }
  .header__burger { display: flex; }
  .header__logo { margin-right: auto; }
  .header__inner { gap: 14px; }
  .footer__top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .intro__grid,
  .price__grid,
  .split__grid,
  .showroom__grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; gap: 34px; }
  .why-card { padding-top: 24px; }
  .steps-grid { grid-template-columns: 1fr; gap: 30px; }
  .insp-grid { grid-template-columns: 1fr; }
  .lookbook__grid { columns: 2; column-gap: 14px; }
  .lb-item { margin-bottom: 14px; }
  .reviews-grid { grid-template-columns: 1fr; }
  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 18px; }
  .blog-grid { grid-template-columns: 1fr; }
  .product__grid { grid-template-columns: 1fr; }
  .product__info { position: static; }
  .feature { grid-template-columns: 1fr; }
  .feature--rev .feature__media { order: 0; }
  .form__row--2 { grid-template-columns: 1fr; }
  .usp__grid { grid-template-columns: 1fr 1fr; }
  .split__grid { display: flex; flex-direction: column-reverse; }
  .section__head--row { flex-direction: column; align-items: flex-start; }
  .announce__track { justify-content: flex-start; gap: 34px; animation: marquee 22s linear infinite; }
  .announce__dup { display: inline-flex; }
  /* mobiel: geen vaste actiebalk (dekte content af); de zwevende WhatsApp-knop blijft als snelle actie */
  .mobile-cta { display: none; }
  /* reels become a swipeable carousel */
  .reel-grid {
    display: flex; gap: 14px; overflow-x: auto; scroll-snap-type: x mandatory;
    margin-inline: calc(-1 * var(--gutter)); padding: 4px var(--gutter) 8px;
    scrollbar-width: none; -ms-overflow-style: none;
  }
  .reel-grid::-webkit-scrollbar { display: none; }
  .reel { flex: 0 0 68%; scroll-snap-align: center; }
}

@media (max-width: 560px) {
  .header__cta { display: none; }            /* duplicated inside the mobile menu */
  .cat-grid { grid-template-columns: 1fr; }
  .showcase .show-grid { grid-template-columns: 1fr; }
  .product-grid { grid-template-columns: 1fr; }
  .product__gallery--wide .product__thumbs { grid-template-columns: repeat(3, 1fr); }
  .usp__grid { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; align-items: flex-start; }
  /* CTA's onder elkaar + volle breedte → netjes uitgelijnd op mobiel */
  .hero__actions, .cta-band__actions, .page-hero__actions { flex-direction: column; align-items: stretch; }
  .hero__actions .btn, .cta-band__actions .btn, .page-hero__actions .btn { width: 100%; }
  .hero__divider { display: none; }
  .price__result { flex-direction: column; align-items: stretch; }
  .price__result .btn { width: 100%; }
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* =========================================================
   Team (over-ons) — toegevoegd t.b.v. teamsectie
   ========================================================= */
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(18px, 3vw, 28px); }
.team-card { background: var(--bg); border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; transition: transform .3s var(--ease), box-shadow .3s var(--ease); }
.team-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.team-card__media { aspect-ratio: 1 / 1; overflow: hidden; background: var(--sand-deep); }
.team-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.team-card:hover .team-card__media img { transform: scale(1.04); }
.team-card__body { padding: 18px 20px 22px; }
.team-card__body h3 { font-size: 1.2rem; font-weight: 600; }
.team-card__body p { color: var(--accent-text); font-size: .9rem; margin-top: 3px; }
@media (max-width: 720px) { .team-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 460px) { .team-grid { grid-template-columns: 1fr; } }

/* =========================================================
   Showroom — strakkere opmaak (Calendly-kaart + contact/kaart op gelijke hoogte)
   ========================================================= */
.sr-cal { max-width: 920px; margin: 0 auto; border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); background: var(--bg); }
.sr-cal .calendly-inline-widget { display: block; }
.split__grid.sr-contact { align-items: stretch; }
.sr-contact .info-card { display: flex; flex-direction: column; }
.sr-contact .info-card .info-list { flex: 1 0 auto; }
.sr-contact .map-embed { aspect-ratio: auto; min-height: 460px; }
.sr-contact .map-embed iframe { height: 100%; min-height: 460px; }
@media (max-width: 860px) {
  .sr-contact .map-embed, .sr-contact .map-embed iframe { min-height: 300px; }
}
