/* =============================================================
   Barrel & Bridge — theme.css
   Volledig CSS-systeem gebaseerd op Home/Home.html
   ============================================================= */

/* ---------------------------------------------------------------
   CSS CUSTOM PROPERTIES (design tokens)
--------------------------------------------------------------- */
:root {
  --midnight:    #1B2A4A;
  --ink:         #243357;
  --night:       #0E1626;
  --kool:        #1A1A18;
  --goud:        #C8A96E;
  --goud-soft:   #D8BC83;
  --cognac:      #8B5E3C;
  --whisky:      #C4894F;
  --perkament:   #F5F0E8;
  --perkament-2: #ECE4D5;
  --linnen:      #D6CFC4;
  --linnen-2:    #C8C0B1;
  --serif: "Cormorant Garamond", "Times New Roman", serif;
  --sans:  "Jost", "Helvetica Neue", Arial, sans-serif;
}

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

html, body {
  margin: 0;
  padding: 0;
  background: var(--perkament);
  color: var(--kool);
}

body {
  font-family: var(--sans);
  font-weight: 300;
  font-size: 15px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
}

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 400;
  color: var(--midnight);
  margin: 0;
}

p  { margin: 0; }
a  { color: inherit; text-decoration: none; }
ul { list-style: none; padding: 0; margin: 0; }

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
  color: inherit;
}

/* WordPress block theme resets */
.wp-site-blocks { padding: 0 !important; }
.wp-block-group:not([class*="alignfull"]) { max-width: none; }
.entry-content { margin: 0; }

/* ---------------------------------------------------------------
   UTILITIES
--------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 56px;
}

.rule {
  display: inline-block;
  width: 36px;
  height: 1px;
  background: var(--goud);
  vertical-align: middle;
  flex-shrink: 0;
}

.label {
  font-family: var(--sans);
  font-size: 10.5px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--midnight);
}

.label-goud  { color: var(--goud); }
.label-light { color: var(--perkament); }

/* ---------------------------------------------------------------
   BUTTONS
--------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--sans);
  font-size: 12.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 400;
  padding: 16px 28px;
  border: 1px solid currentColor;
  background: transparent;
  color: var(--midnight);
  transition: all 0.35s ease;
  cursor: pointer;
}

.btn .arrow { transition: transform 0.35s ease; }
.btn:hover .arrow { transform: translateX(4px); }

.btn-primary {
  background: var(--midnight);
  color: var(--perkament);
  border-color: var(--midnight);
}
.btn-primary:hover { background: var(--ink); border-color: var(--ink); }

.btn-gold {
  background: var(--goud);
  color: var(--midnight);
  border-color: var(--goud);
}
.btn-gold:hover { background: var(--goud-soft); border-color: var(--goud-soft); }

.btn-ghost-light { color: var(--perkament); border-color: rgba(245,240,232,0.45); }
.btn-ghost-light:hover { background: var(--perkament); color: var(--midnight); border-color: var(--perkament); }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 12.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--midnight);
  border-bottom: 1px solid currentColor;
  padding-bottom: 4px;
  transition: gap 0.3s, color 0.3s;
}
.link-arrow:hover { color: var(--goud); gap: 18px; }

/* ---------------------------------------------------------------
   PLACEHOLDER IMAGES
--------------------------------------------------------------- */
.ph {
  position: relative;
  background: linear-gradient(135deg, var(--linnen) 0%, var(--linnen-2) 100%);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ph::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(45deg, transparent 0 22px, rgba(27,42,74,0.04) 22px 23px);
  pointer-events: none;
}
.ph-dark {
  background: linear-gradient(140deg, var(--midnight) 0%, #0f1830 100%);
  color: var(--perkament);
}
.ph-dark::before {
  background-image: repeating-linear-gradient(45deg, transparent 0 22px, rgba(245,240,232,0.04) 22px 23px);
}
.ph-cognac {
  background: linear-gradient(140deg, var(--cognac) 0%, #6b4527 100%);
  color: var(--perkament);
}
.ph-content {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  color: rgba(27,42,74,0.5);
  z-index: 1;
  text-align: center;
}
.ph-dark .ph-content,
.ph-cognac .ph-content { color: rgba(245,240,232,0.7); }
.ph-content .ph-tag {
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

/* ---------------------------------------------------------------
   USP BAR
--------------------------------------------------------------- */
.site-head {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
}
.usp-bar {
  height: 46px;
  overflow: hidden;
  background: transparent;
  border-bottom: 1px solid rgba(200,169,110,0.14);
  transition: height 0.45s cubic-bezier(.4,0,.2,1), opacity 0.35s ease, border-color 0.35s ease;
}
.usp-bar-row {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: none;
  margin: 0 auto;
  padding: 13px 48px;
  gap: 42px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 15px;
  letter-spacing: 0;
  text-transform: none;
  color: rgba(245,240,232,0.6);
}
.usp-bar-item {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  white-space: nowrap;
  color: inherit;
}
.usp-bar-item .dot { color: var(--goud); font-size: 7px; }
.site-head.scrolled .usp-bar { height: 0; opacity: 0; border-color: transparent; }

/* ---------------------------------------------------------------
   NAVIGATION
--------------------------------------------------------------- */
.nav {
  position: relative;
  z-index: 50;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background 0.5s ease, padding 0.5s ease, box-shadow 0.5s ease, border-color 0.5s ease;
}
.site-head.scrolled .nav {
  background: rgba(14,22,38,0.94);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  box-shadow: 0 1px 0 rgba(200,169,110,0.12);
}
.nav-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 4px 56px;
  gap: 40px;
}
.nav-left, .nav-right {
  display: flex;
  gap: 32px;
  align-items: center;
}
.nav-right { justify-content: flex-end; }

.nav-link {
  font-size: 12.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 400;
  color: rgba(245,240,232,0.85);
  position: relative;
  padding: 6px 0;
  transition: color 0.2s;
  white-space: nowrap;
}
.nav-link::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  height: 1px;
  width: 0;
  background: var(--goud);
  transition: width 0.35s ease, left 0.35s ease;
}
.nav-link:hover::after { width: 100%; left: 0; }
.nav-link:hover { color: var(--goud); opacity: 1 !important; }

.brand-mark {
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}
.brand-mark img {
  height: 84px;
  width: auto;
  display: block;
  filter: brightness(0) invert(1);
  transition: opacity 0.3s;
}
.brand-mark:hover img { opacity: 0.85; }
.brand-mark .bm-text {
  font-family: var(--serif);
  font-size: 27px;
  letter-spacing: 0.05em;
  color: var(--perkament);
  font-weight: 400;
  white-space: nowrap;
  line-height: 1;
  transition: opacity 0.3s;
}
.brand-mark .bm-text b { font-weight: 500; }
.brand-mark .bm-text .amp { color: var(--goud); }
.brand-mark:hover .bm-text { opacity: 0.85; }

.nav-cta {
  background: var(--cognac);
  border: 1px solid var(--cognac);
  color: var(--perkament) !important;
  padding: 11px 22px !important;
  letter-spacing: 0.18em;
  transition: background 0.3s, color 0.3s, border-color 0.3s, transform 0.3s;
}
.nav-cta::after { display: none; }
.nav-cta:hover {
  background: var(--goud);
  color: var(--midnight) !important;
  border-color: var(--goud);
  opacity: 1 !important;
  transform: translateY(-1px);
}

/* ---------------------------------------------------------------
   SECTION SCAFFOLD
--------------------------------------------------------------- */
.section       { padding: 130px 0; position: relative; }
.section-tight { padding: 90px 0; }
.section-dark  { background: var(--midnight); color: var(--perkament); }
.section-cream { background: var(--perkament-2); }

.section-head {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 40px;
  margin-bottom: 70px;
}
.section-head h2 {
  font-family: var(--serif);
  font-size: clamp(40px, 4.4vw, 64px);
  line-height: 1.05;
  font-weight: 400;
  letter-spacing: -0.01em;
  max-width: 740px;
  text-wrap: balance;
  color: var(--midnight);
}
.section-head h2 em       { font-style: italic; color: var(--cognac); }
.section-dark .section-head h2     { color: var(--perkament); }
.section-dark .section-head h2 em  { color: var(--goud); }

.section-eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 10.5px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--goud);
  font-weight: 500;
  margin-bottom: 22px;
  font-family: var(--sans);
}
.section-eyebrow .rule { background: var(--goud); }

.section-intro {
  font-size: 15.5px;
  line-height: 1.7;
  color: rgba(26,26,24,0.7);
  max-width: 380px;
}
.section-dark .section-intro { color: rgba(245,240,232,0.7); }

/* ---------------------------------------------------------------
   HERO
--------------------------------------------------------------- */
.hero {
  position: relative;
  min-height: 100vh;
  background: radial-gradient(120% 90% at 72% 35%, #22335a 0%, var(--night, #0E1626) 62%);
  color: var(--perkament);
  overflow: hidden;
  display: flex;
  align-items: center;
}
.hero::after {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(40% 50% at 70% 42%, rgba(200,169,110,0.18), transparent 70%);
  pointer-events: none;
}
.hero-bg-word {
  position: absolute;
  right: -2%; top: 8%;
  font-family: var(--serif);
  font-style: italic;
  font-size: 30vw;
  line-height: 0.8;
  color: rgba(200,169,110,0.04);
  letter-spacing: -0.03em;
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
}
.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.03fr 0.97fr;
  gap: 60px;
  align-items: center;
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 48px;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--goud);
  margin-bottom: 30px;
}
.hero-eyebrow .rule { width: 34px; height: 1px; background: var(--goud); display: inline-block; }

.hero h1 {
  font-family: var(--serif);
  font-weight: 400;
  color: var(--perkament);
  font-size: clamp(50px, 6.6vw, 104px);
  line-height: 0.96;
  letter-spacing: -0.02em;
  margin-bottom: 30px;
  text-wrap: balance;
}
.hero h1 em { font-style: italic; color: var(--goud); font-weight: 400; }

.hero-sub {
  max-width: 430px;
  font-size: 16.5px;
  line-height: 1.8;
  color: rgba(245,240,232,0.72);
  margin-bottom: 40px;
  font-weight: 300;
}
.hero-cta-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 54px;
}
.hero-trust {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  font-size: 12px;
  letter-spacing: 0.04em;
  color: rgba(245,240,232,0.6);
}
.hero-trust span { display: inline-flex; align-items: center; gap: 9px; }
.hero-trust .d { width: 5px; height: 5px; border-radius: 50%; background: var(--goud); }

.hero-visual { position: relative; }
.hero-frame {
  position: relative;
  display: block;
  aspect-ratio: 4 / 4.4;
  border: 1px solid rgba(200,169,110,0.4);
  padding: 14px;
  background: rgba(255,255,255,0.015);
  overflow: hidden;
}
.hero-frame img { width: 100%; height: 100%; object-fit: cover; filter: saturate(1.05); transition: transform 1.2s cubic-bezier(.2,.7,.2,1); }
.hero-frame:hover img { transform: scale(1.05); }
.hero-frame-corner {
  position: absolute; top: 18px; right: 18px;
  writing-mode: vertical-rl;
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
  font-size: 10px; letter-spacing: 0.3em;
  color: rgba(245,240,232,0.45); text-transform: uppercase;
}
.hero-tag {
  position: absolute;
  left: -18px; bottom: 42px;
  background: var(--night, #0E1626);
  border: 1px solid rgba(200,169,110,0.35);
  padding: 16px 20px;
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
  font-size: 11px;
  letter-spacing: 0.04em;
  color: var(--goud);
  line-height: 1.8;
}
.hero-tag b { color: var(--perkament); font-weight: 400; display: block; font-size: 12.5px; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 4px; }
.hero-tag-cta {
  display: flex; align-items: center; gap: 8px;
  margin-top: 13px; padding-top: 13px;
  border-top: 1px solid rgba(200,169,110,0.28);
  font-family: var(--sans);
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--goud); transition: color 0.3s;
}
.hero-tag-cta svg { transition: transform 0.3s; }
.hero-tag-cta:hover { color: var(--perkament); }
.hero-tag-cta:hover svg { transform: translateX(4px); }
.story-img { width: 100%; height: 100%; object-fit: cover; display: block; }
.scrollcue {
  position: absolute;
  bottom: 34px; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
  font-size: 10px; letter-spacing: 0.3em;
  color: rgba(245,240,232,0.5); text-transform: uppercase;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
}
.scrollcue .line { width: 1px; height: 40px; background: linear-gradient(var(--goud), transparent); animation: cue 2.2s infinite; }
@keyframes cue {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(139,94,60,0.18); }
  50%       { box-shadow: 0 0 0 8px rgba(139,94,60,0); }
}

/* ---------------------------------------------------------------
   CATEGORIES
--------------------------------------------------------------- */
.cat-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 18px;
  height: 720px;
}
.cat-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.cat-card .ph { position: absolute; inset: 0; }
.cat-card .cat-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(27,42,74,0.18) 0%, rgba(27,42,74,0.75) 100%);
  transition: background 0.5s;
}
.cat-card:hover .cat-overlay {
  background: linear-gradient(180deg, rgba(27,42,74,0.05) 0%, rgba(27,42,74,0.85) 100%);
}
.cat-card-content {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 38px;
  color: var(--perkament);
  z-index: 2;
}
.cat-card .cat-num {
  position: absolute;
  top: 32px; left: 38px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 14px;
  color: var(--goud);
  letter-spacing: 0.05em;
}
.cat-card h3 {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: 38px;
  color: var(--perkament);
  line-height: 1;
  margin-bottom: 14px;
  transition: transform 0.5s ease;
}
.cat-card:hover h3 { transform: translateY(-4px); }
.cat-card-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(245,240,232,0.25);
  padding-top: 18px;
  margin-top: 18px;
}
.cat-card-meta .lbl {
  font-size: 10.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.7);
  font-family: var(--sans);
}
.cat-card-meta .arrow {
  width: 32px; height: 32px;
  border: 1px solid rgba(245,240,232,0.4);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s, color 0.3s, border-color 0.3s;
}
.cat-card:hover .cat-card-meta .arrow {
  background: var(--goud);
  border-color: var(--goud);
  color: var(--midnight);
}
.cat-large { grid-row: 1 / span 2; }
.cat-wide  { grid-column: 2 / span 2; }

/* ---------------------------------------------------------------
   USP ICONS GRID
--------------------------------------------------------------- */
.usp-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(27,42,74,0.12);
  border-bottom: 1px solid rgba(27,42,74,0.12);
}
.usp-item {
  padding: 56px 36px;
  border-right: 1px solid rgba(27,42,74,0.08);
  text-align: left;
  position: relative;
  transition: background 0.4s ease;
}
.usp-item:last-child { border-right: none; }
.usp-item:hover { background: rgba(200,169,110,0.05); }
.usp-icon {
  width: 56px; height: 56px;
  margin-bottom: 28px;
  color: var(--goud);
}
.usp-item h3 {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 12px;
  color: var(--midnight);
}
.usp-item h3 em { font-style: italic; }
.usp-item p { font-size: 14px; color: rgba(26,26,24,0.7); line-height: 1.7; }
.usp-item .usp-idx {
  position: absolute;
  top: 36px; right: 36px;
  font-family: var(--serif);
  font-style: italic;
  color: var(--cognac);
  font-size: 13px;
  letter-spacing: 0.05em;
}

/* ---------------------------------------------------------------
   PRODUCT CAROUSEL
--------------------------------------------------------------- */
.carousel-wrap { position: relative; }
.carousel-track {
  display: flex;
  gap: 28px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding-bottom: 12px;
  scroll-behavior: smooth;
}
.carousel-track::-webkit-scrollbar { display: none; }

.product-card {
  flex: 0 0 calc((100% - 56px) / 3);
  min-width: 320px;
  scroll-snap-align: start;
  cursor: pointer;
  position: relative;
  transition: transform 0.4s ease;
}
.product-card:hover { transform: translateY(-6px); }
.product-img {
  position: relative;
  aspect-ratio: 4/5;
  background: var(--perkament-2);
  overflow: hidden;
  margin-bottom: 22px;
}
.section-dark .product-img { background: #0f1830; }
.product-img .ph { position: absolute; inset: 0; }
.product-badge {
  position: absolute;
  top: 18px; left: 18px;
  font-size: 9.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  background: var(--perkament);
  color: var(--midnight);
  padding: 6px 10px;
  font-weight: 500;
  z-index: 3;
  font-family: var(--sans);
}
.product-badge.dot::before {
  content: "";
  display: inline-block;
  width: 5px; height: 5px;
  border-radius: 999px;
  background: var(--goud);
  margin-right: 7px;
  vertical-align: middle;
}
.product-fav {
  position: absolute;
  top: 14px; right: 14px;
  width: 36px; height: 36px;
  background: rgba(245,240,232,0.92);
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--midnight);
  opacity: 0;
  transform: translateY(-4px);
  transition: opacity 0.3s, transform 0.3s;
  z-index: 3;
}
.product-card:hover .product-fav { opacity: 1; transform: translateY(0); }
.product-quick {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  background: var(--midnight);
  color: var(--perkament);
  text-align: center;
  padding: 14px;
  font-size: 11.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transform: translateY(100%);
  transition: transform 0.4s ease;
  z-index: 3;
  font-family: var(--sans);
}
.product-card:hover .product-quick { transform: translateY(0); }

.product-card .brand-label {
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cognac);
  font-weight: 500;
  margin-bottom: 6px;
  font-family: var(--sans);
}
.product-card h3 {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
  color: var(--midnight);
  line-height: 1.2;
  margin-bottom: 10px;
}
.section-dark .product-card h3 { color: var(--perkament); }
.product-card .ref {
  font-size: 12px;
  color: rgba(26,26,24,0.55);
  letter-spacing: 0.05em;
  margin-bottom: 14px;
  font-family: var(--sans);
}
.section-dark .product-card .ref { color: rgba(245,240,232,0.55); }
.product-card .meta-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding-top: 14px;
  border-top: 1px solid rgba(27,42,74,0.12);
}
.section-dark .product-card .meta-row { border-color: rgba(245,240,232,0.18); }
.product-card .price {
  font-family: var(--serif);
  font-size: 26px;
  color: var(--midnight);
  font-weight: 500;
}
.section-dark .product-card .price { color: var(--perkament); }
.product-card .price em { color: var(--goud); font-style: italic; }
.product-card .cond {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--cognac);
  font-family: var(--sans);
}
.section-dark .product-card .cond { color: var(--goud); }

/* --- WooCommerce: echte producten in de bespoke kaart --- */
a.product-card { text-decoration: none; display: block; color: inherit; }
.product-img .product-thumb {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 1.1s cubic-bezier(.2,.7,.2,1);
}
.product-card:hover .product-thumb { transform: scale(1.05); }
/* Collectie: grid i.p.v. carousel */
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 56px 28px;
}
.product-grid .product-card {
  flex: none;
  min-width: 0;
  width: 100%;
}
@media (max-width: 1024px) { .product-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px)  { .product-grid { grid-template-columns: 1fr; } }
/* Lege staat (geen producten) — vult de hele rij in zowel grid als carousel */
.bb-collection-empty {
  grid-column: 1 / -1;
  flex: 1 0 100%;
  width: 100%;
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  padding: 72px 48px;
  border: 1px solid rgba(27,42,74,0.1);
  border-radius: 2px;
}
.bb-collection-empty p {
  font-size: 16px;
  line-height: 1.75;
  color: rgba(26,26,24,0.72);
  font-family: var(--sans);
  max-width: 520px;
  margin: 0 auto 32px;
}

.carousel-controls { display: flex; gap: 10px; align-items: center; }
.carousel-btn {
  width: 48px; height: 48px;
  border: 1px solid currentColor;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s, color 0.3s;
  cursor: pointer;
}
.carousel-btn:hover { background: var(--midnight); color: var(--perkament); border-color: var(--midnight); }
.section-dark .carousel-btn:hover { background: var(--goud); color: var(--midnight); border-color: var(--goud); }

.carousel-progress {
  margin-top: 26px;
  height: 1px;
  background: rgba(27,42,74,0.12);
  position: relative;
}
.section-dark .carousel-progress { background: rgba(245,240,232,0.15); }
.carousel-progress-bar {
  position: absolute; left: 0; top: 0; bottom: 0;
  background: var(--goud);
  width: 20%;
  transition: width 0.4s ease;
}

/* ---------------------------------------------------------------
   STORY
--------------------------------------------------------------- */
.story {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 90px;
  align-items: center;
}
.story-images { position: relative; aspect-ratio: 4/5; }
.story-img-1, .story-img-2 {
  position: absolute;
  overflow: hidden;
  border-radius: 3px;
  background: var(--linnen);
  box-shadow: 0 38px 70px -32px rgba(27,42,74,0.58), 0 14px 28px -18px rgba(27,42,74,0.34);
}
.story-img-1::after, .story-img-2::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 3px;
  box-shadow: inset 0 0 0 1px rgba(245,240,232,0.22);
  pointer-events: none;
}
.story-img-1, .story-img-2 {
  cursor: pointer;
  transition: width .65s cubic-bezier(.2,.7,.2,1), height .65s cubic-bezier(.2,.7,.2,1), top .65s cubic-bezier(.2,.7,.2,1), left .65s cubic-bezier(.2,.7,.2,1), right .65s cubic-bezier(.2,.7,.2,1), bottom .65s cubic-bezier(.2,.7,.2,1), box-shadow .5s ease;
}
/* standaard: foto 1 groot vooraan, foto 2 klein erachter */
.story-img-1 { width: 78%; height: 78%; top: 0; left: 0; right: auto; bottom: auto; z-index: 2; }
.story-img-2 { width: 50%; height: 56%; top: auto; left: auto; bottom: 0; right: 0; z-index: 1; }
/* na klik wisselen ze van plek */
.story-images.swapped .story-img-1 { width: 50%; height: 56%; top: auto; left: auto; bottom: 0; right: 0; z-index: 1; }
.story-images.swapped .story-img-2 { width: 78%; height: 78%; top: 0; left: 0; right: auto; bottom: auto; z-index: 2; }
.story-img-1:hover, .story-img-2:hover { box-shadow: 0 46px 84px -30px rgba(27,42,74,0.64), 0 16px 30px -16px rgba(27,42,74,0.4); }

.story-img-stamp {
  position: absolute;
  bottom: -32px; left: -32px;
  width: 140px; height: 140px;
  border: 1px solid var(--goud);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--perkament);
  color: var(--midnight);
  z-index: 4;
  font-family: var(--serif);
  font-style: italic;
  text-align: center;
  font-size: 14px;
  line-height: 1.25;
  padding: 16px;
  letter-spacing: 0.02em;
}
.story-img-stamp .inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.story-img-stamp .num { color: var(--goud); font-size: 22px; }
.story-img-stamp .lbl {
  font-family: var(--sans);
  font-size: 9px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  font-style: normal;
  color: var(--cognac);
}


.story-text .h2-tag {
  font-family: var(--serif);
  font-style: italic;
  font-size: 14px;
  letter-spacing: 0.05em;
  color: var(--cognac);
  margin-bottom: 16px;
  display: block;
}
.story h2 {
  font-family: var(--serif);
  font-size: clamp(38px, 4vw, 60px);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.01em;
  margin-bottom: 32px;
  text-wrap: balance;
}
.story h2 em { font-style: italic; color: var(--cognac); }
.story-text p {
  font-size: 15.5px;
  line-height: 1.8;
  color: rgba(26,26,24,0.78);
  margin-bottom: 18px;
}
.story-signature {
  margin-top: 32px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 22px;
  color: var(--midnight);
}
.story-signature .amp-upright { font-style: normal; color: var(--cognac); padding: 0 2px; }
.story-signature .role {
  display: block;
  margin-top: 4px;
  font-family: var(--sans);
  font-style: normal;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cognac);
}

/* ---------------------------------------------------------------
   REVIEWS
--------------------------------------------------------------- */
.reviews { background: var(--midnight); color: var(--perkament); }
.reviews-head {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  margin-bottom: 60px;
  gap: 40px;
}
.reviews-rating {
  font-family: var(--serif);
  font-size: 18px;
  color: var(--perkament);
  display: flex;
  align-items: center;
  gap: 18px;
}
.reviews-rating .stars { color: var(--goud); letter-spacing: 4px; font-size: 18px; }
.reviews-rating .score em { color: var(--goud); font-size: 32px; font-style: italic; }
.reviews-rating .source {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.6);
  font-family: var(--sans);
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(200,169,110,0.18);
  border: 1px solid rgba(200,169,110,0.18);
}
.review-card {
  background: var(--midnight);
  padding: 44px 38px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  transition: background 0.4s;
}
.review-card:hover { background: var(--ink); }
.review-card .stars { color: var(--goud); letter-spacing: 3px; font-size: 14px; }
.review-card blockquote {
  font-family: var(--serif);
  font-size: 22px;
  line-height: 1.4;
  color: var(--perkament);
  font-weight: 400;
  margin: 0;
}
.review-card blockquote em { font-style: italic; color: var(--goud); }
.review-card .meta {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 18px;
  border-top: 1px solid rgba(200,169,110,0.15);
}
.review-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--cognac);
  color: var(--perkament);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-style: italic;
  font-size: 16px;
  flex-shrink: 0;
}
.review-card .name {
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--perkament);
  font-weight: 500;
  font-family: var(--sans);
}
.review-card .where {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.6);
  margin-top: 3px;
  font-family: var(--sans);
}

/* ---------------------------------------------------------------
   JOURNAL
--------------------------------------------------------------- */
.journal-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 32px;
}
.journal-card { cursor: pointer; }
.journal-img {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  margin-bottom: 26px;
}
.journal-card.feature .journal-img { aspect-ratio: 4/6; }
.journal-img .ph { position: absolute; inset: 0; transition: transform 0.8s ease; }
.journal-card:hover .journal-img .ph { transform: scale(1.05); }
.journal-img .lbl {
  position: absolute;
  top: 22px; left: 22px;
  z-index: 3;
  background: var(--perkament);
  color: var(--midnight);
  padding: 6px 11px;
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-weight: 500;
  font-family: var(--sans);
}
.journal-card h3 {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 12px;
  color: var(--midnight);
  text-wrap: balance;
}
.journal-card.feature h3 { font-size: 38px; }
.journal-card h3 em { font-style: italic; color: var(--cognac); }
.journal-card .excerpt {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(26,26,24,0.7);
  margin-bottom: 18px;
}
.journal-card .meta {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cognac);
  font-family: var(--sans);
}
.journal-card .meta .dot {
  width: 3px; height: 3px;
  border-radius: 999px;
  background: var(--cognac);
}
a.journal-card { text-decoration: none; display: block; color: inherit; }
.journal-img .journal-thumb {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}
.journal-card:hover .journal-img .journal-thumb { transform: scale(1.05); }

/* ---------------------------------------------------------------
   SINGLE POST / JOURNAAL-ARTIKEL
--------------------------------------------------------------- */
.bb-single { padding: 120px 0 90px; }
.bb-single .container { max-width: 760px; }
.bb-single-cat {
  font-family: var(--sans);
  font-size: 10.5px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--goud);
  margin-bottom: 22px;
}
.bb-single-cat a { color: var(--goud); text-decoration: none; }
.bb-single-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(38px, 4.6vw, 58px);
  line-height: 1.04;
  letter-spacing: -0.01em;
  color: var(--midnight);
  margin-bottom: 22px;
  text-wrap: balance;
}
.bb-single-date {
  font-family: var(--sans);
  font-size: 12.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(26,26,24,0.5);
  margin-bottom: 40px;
}
.bb-single-image { margin: 0 0 48px; }
.bb-single-image img { width: 100%; height: auto; display: block; border-radius: 2px; }
.bb-single-content {
  font-family: var(--sans);
  font-weight: 300;
  font-size: 17px;
  line-height: 1.78;
  color: rgba(26,26,24,0.82);
}
.bb-single-content > * { margin-bottom: 26px; }
.bb-single-content h2 {
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 500;
  color: var(--midnight);
  margin: 48px 0 18px;
  line-height: 1.15;
}
.bb-single-content h3 {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 500;
  color: var(--midnight);
  margin: 36px 0 14px;
}
.bb-single-content a { color: var(--cognac); text-decoration: underline; text-underline-offset: 3px; }
.bb-single-content ul, .bb-single-content ol { padding-left: 24px; }
.bb-single-content li { margin-bottom: 10px; }
.bb-single-content blockquote {
  border-left: 2px solid var(--goud);
  padding-left: 28px;
  margin: 40px 0;
  font-family: var(--serif);
  font-style: italic;
  font-size: 24px;
  line-height: 1.4;
  color: var(--midnight);
}
.bb-single-content img { max-width: 100%; height: auto; border-radius: 2px; }
.bb-single-back { margin-top: 56px; padding-top: 32px; border-top: 1px solid rgba(27,42,74,0.1); }
.bb-single-back a {
  font-family: var(--sans);
  font-size: 13.5px;
  letter-spacing: 0.04em;
  color: var(--midnight);
  text-decoration: none;
}
.bb-single-back a:hover { color: var(--cognac); }
@media (max-width: 768px) { .bb-single { padding: 80px 0 60px; } }

/* ---------------------------------------------------------------
   NAV — icoon-knoppen, winkelwagen, zoeken
--------------------------------------------------------------- */
.nav-icon {
  background: none;
  border: 0;
  padding: 6px;
  cursor: pointer;
  color: var(--perkament);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s, opacity 0.2s;
  position: relative;
}
.nav-icon:hover { color: var(--goud); }
.nav-left, .nav-right { gap: 26px; }
.nav-cart { text-decoration: none; }
.nav-cart-count {
  position: absolute;
  top: -3px; right: -5px;
  min-width: 16px; height: 16px;
  padding: 0 4px;
  background: var(--goud);
  color: var(--midnight);
  border-radius: 999px;
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 600;
  line-height: 16px;
  text-align: center;
  letter-spacing: 0;
}
.nav-cart-count:not(.has-items) { display: none; }

/* Zoekbalk (uitklapbaar onder de nav) */
.nav-search {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, border-color 0.4s ease;
  border-top: 1px solid transparent;
}
.nav.search-open .nav-search {
  max-height: 120px;
  border-top-color: rgba(200,169,110,0.15);
}
.nav-search-form {
  display: flex;
  align-items: center;
  gap: 14px;
  max-width: 1360px;
  margin: 0 auto;
  padding: 18px 56px;
}
.nav-search-ic { color: var(--goud); flex-shrink: 0; }
.nav-search-input {
  flex: 1;
  border: 0;
  background: none;
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 400;
  color: var(--perkament);
  padding: 6px 0;
  outline: none;
}
.nav-search-input::placeholder { color: rgba(245,240,232,0.4); font-style: italic; }
.nav-search-submit {
  border: 1px solid rgba(27,42,74,0.25);
  background: none;
  color: inherit;
  font-family: var(--sans);
  font-size: 11.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 10px 22px;
  cursor: pointer;
  transition: background 0.3s, color 0.3s, border-color 0.3s;
  white-space: nowrap;
}
.nav-search-submit { border-color: rgba(245,240,232,0.3); color: var(--perkament); }
.nav-search-submit:hover { background: var(--goud); color: var(--midnight); border-color: var(--goud); }

/* ---------------------------------------------------------------
   PRODUCTPAGINA (PDP)
--------------------------------------------------------------- */
.bb-pdp { padding: 130px 0 100px; }
.bb-pdp-crumbs {
  display: flex;
  gap: 10px;
  align-items: center;
  font-family: var(--sans);
  font-size: 11.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(26,26,24,0.5);
  margin-bottom: 40px;
}
.bb-pdp-crumbs a { color: rgba(26,26,24,0.5); text-decoration: none; transition: color 0.2s; }
.bb-pdp-crumbs a:hover { color: var(--goud); }
.bb-pdp-crumbs span:last-child { color: var(--cognac); }
.bb-pdp-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 72px;
  align-items: flex-start;
}
.bb-pdp-summary { padding-top: 8px; position: sticky; top: 100px; align-self: start; }
@media (max-width: 1024px) { .bb-pdp-summary { position: static; } }
.bb-pdp-brand {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--cognac);
  font-weight: 500;
  margin-bottom: 14px;
}
.bb-pdp-title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(27px, 2.5vw, 37px);
  line-height: 1.18;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--midnight);
  margin-bottom: 18px;
}
.bb-pdp-price {
  font-family: var(--serif);
  font-size: 27px;
  color: var(--cognac);
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(27,42,74,0.1);
}
.bb-pdp-price del { color: rgba(26,26,24,0.4); font-size: 22px; margin-right: 10px; }
.bb-pdp-price ins { text-decoration: none; color: var(--cognac); }
.bb-pdp-short {
  font-family: var(--sans);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.75;
  color: rgba(26,26,24,0.78);
  margin-bottom: 30px;
}
/* Actieknoppen: toevoegen / koop nu / info / whatsapp */
.bb-pdp-actions { display: flex; flex-direction: column; gap: 12px; margin-bottom: 36px; max-width: 460px; }
.bb-pdp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  text-decoration: none;
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  min-height: 56px;
  padding: 8px 26px;
  border: 1px solid var(--midnight);
  transition: background 0.3s, color 0.3s, border-color 0.3s;
  cursor: pointer;
  text-align: center;
}
.bb-pdp-btn-outline { background: var(--perkament); color: var(--midnight); }
.bb-pdp-btn-outline:hover { background: var(--midnight); color: var(--perkament); }
.bb-pdp-btn-outline.added { background: var(--goud); border-color: var(--goud); color: var(--midnight); }
.bb-pdp-btn-price { opacity: 0.72; letter-spacing: 0.06em; }
.bb-pdp-btn-solid { background: var(--midnight); color: var(--perkament); }
.bb-pdp-btn-solid:hover { background: var(--goud); border-color: var(--goud); color: var(--midnight); }
.bb-pdp-btn-wa svg { flex-shrink: 0; }
.bb-pdp-soldnote {
  max-width: 460px;
  font-family: var(--sans);
  font-size: 14.5px;
  line-height: 1.6;
  color: rgba(26,26,24,0.72);
  border: 1px solid rgba(27,42,74,0.12);
  background: var(--perkament-2);
  padding: 18px 22px;
  border-radius: 2px;
}
.bb-pdp-sold-badge {
  display: inline-block;
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cognac);
  border: 1px solid var(--cognac);
  padding: 3px 10px;
  margin-right: 10px;
}
/* Specificatietabel */
.bb-pdp-specs { margin: 0 0 34px; padding: 0; max-width: 460px; }
.bb-pdp-spec {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 20px;
  padding: 14px 0;
  border-top: 1px solid rgba(27,42,74,0.1);
  align-items: baseline;
}
.bb-pdp-spec:last-child { border-bottom: 1px solid rgba(27,42,74,0.1); }
.bb-pdp-spec dt {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.03em;
  color: var(--midnight);
  margin: 0;
}
.bb-pdp-spec dd {
  margin: 0;
  font-family: var(--sans);
  font-size: 14px;
  color: rgba(26,26,24,0.72);
}
.bb-pdp-trust { margin: 0 0 28px; padding: 0; list-style: none; }
.bb-pdp-trust li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--sans);
  font-size: 14px;
  color: rgba(26,26,24,0.78);
  padding: 9px 0;
  border-bottom: 1px solid rgba(27,42,74,0.06);
}
.bb-pdp-trust li svg { color: var(--goud); flex-shrink: 0; }
.bb-pdp-metarow {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.06em;
  color: rgba(26,26,24,0.5);
}
.bb-pdp-desc { margin-top: 48px; padding-top: 40px; border-top: 1px solid rgba(27,42,74,0.1); }
.bb-pdp-desc-body {
  font-family: var(--sans);
  font-weight: 300;
  font-size: 15.5px;
  line-height: 1.8;
  color: rgba(26,26,24,0.8);
  margin-top: 22px;
}
.bb-pdp-desc-body p { margin-bottom: 18px; }
.bb-pdp-desc-body strong { font-weight: 500; color: var(--midnight); }
.bb-pdp-desc-body ul { padding-left: 20px; margin-bottom: 18px; }
.bb-pdp-desc-body li { margin-bottom: 7px; }
/* WooCommerce productgalerij — verticale fotostapel, werkt zonder flexslider-JS */
.bb-pdp-gallery .woocommerce-product-gallery {
  opacity: 1 !important;
  width: 100% !important;
  margin: 0 !important;
  position: relative;
  float: none !important;
}
.bb-pdp-gallery .woocommerce-product-gallery__wrapper {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 0;
  width: 100% !important;
  transform: none !important;
}
.bb-pdp-gallery .woocommerce-product-gallery__image {
  margin: 0 !important;
  width: 100% !important;
}
.bb-pdp-gallery .woocommerce-product-gallery__image a { display: block; }
.bb-pdp-gallery .woocommerce-product-gallery__image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 2px;
}
.bb-pdp-gallery .flex-viewport { height: auto !important; }
.bb-pdp-gallery .flex-control-thumbs { display: none; }
.bb-pdp-gallery .woocommerce-product-gallery__trigger { display: none; }

/* Eigen productgalerij — groot beeld + thumbnails + pijlen */
.bb-gallery { position: relative; }
.bb-gallery-stage { position: relative; aspect-ratio: 1 / 1; background: #14110d; overflow: hidden; border-radius: 2px; }
.bb-gallery-track { display: flex; height: 100%; transition: transform 0.55s cubic-bezier(.6,.01,.15,1); }
.bb-gallery-slide { min-width: 100%; height: 100%; }
.bb-gallery-slide img { width: 100%; height: 100%; object-fit: cover; display: block; }
.bb-gallery-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 46px; height: 46px; border-radius: 999px;
  background: rgba(245,240,232,0.86); border: 0; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  color: var(--midnight); z-index: 3; opacity: 0; transition: opacity .3s, background .3s;
}
.bb-gallery-stage:hover .bb-gallery-arrow { opacity: 1; }
.bb-gallery-arrow:hover { background: var(--perkament); }
.bb-gallery-arrow.prev { left: 18px; }
.bb-gallery-arrow.next { right: 18px; }
.bb-gallery-count {
  position: absolute; top: 18px; left: 18px; z-index: 3;
  font-family: var(--sans); font-size: 11px; letter-spacing: 0.18em;
  color: rgba(245,240,232,0.85); background: rgba(20,17,13,0.4); padding: 5px 11px;
}
.bb-gallery-thumbs { display: flex; gap: 12px; margin-top: 14px; flex-wrap: wrap; }
.bb-gallery-thumb {
  width: 76px; height: 76px; padding: 0; border: 1px solid transparent;
  background: #14110d; cursor: pointer; overflow: hidden; border-radius: 2px;
  opacity: 0.5; transition: opacity .25s, border-color .25s;
}
.bb-gallery-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.bb-gallery-thumb.is-active, .bb-gallery-thumb:hover { opacity: 1; border-color: var(--goud); }
.bb-gallery-empty .bb-gallery-stage .ph { position: absolute; inset: 0; }
@media (max-width: 1024px) { .bb-gallery { position: static; } }
.bb-gallery-zoom {
  position: absolute; top: 16px; right: 16px; z-index: 4;
  width: 40px; height: 40px; border-radius: 999px;
  background: rgba(245,240,232,0.86); border: 0; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  color: var(--midnight); transition: background .3s;
}
.bb-gallery-zoom:hover { background: var(--perkament); }
.bb-gallery-stage img { cursor: zoom-in; }

/* Zoom-lightbox */
.bb-lightbox {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(15,12,9,0.94);
  display: none; align-items: center; justify-content: center;
  opacity: 0; transition: opacity .3s;
}
.bb-lightbox.open { display: flex; opacity: 1; }
.bb-lb-frame {
  width: min(88vw, 1100px); height: min(86vh, 1100px);
  display: flex; align-items: center; justify-content: center; overflow: hidden;
}
.bb-lb-img { max-width: 100%; max-height: 100%; object-fit: contain; cursor: zoom-in; transition: transform .25s ease; user-select: none; }
.bb-lb-img.zoomed { cursor: zoom-out; transition: none; }
.bb-lb-close {
  position: absolute; top: 22px; right: 26px; z-index: 3;
  width: 46px; height: 46px; border-radius: 999px; border: 0; cursor: pointer;
  background: rgba(245,240,232,0.1); color: var(--perkament);
  display: flex; align-items: center; justify-content: center; transition: background .25s;
}
.bb-lb-close:hover { background: rgba(245,240,232,0.22); }
.bb-lb-arrow {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 3;
  width: 54px; height: 54px; border-radius: 999px; border: 0; cursor: pointer;
  background: rgba(245,240,232,0.08); color: var(--perkament);
  display: flex; align-items: center; justify-content: center; transition: background .25s;
}
.bb-lb-arrow:hover { background: rgba(245,240,232,0.2); }
.bb-lb-arrow.prev { left: 26px; }
.bb-lb-arrow.next { right: 26px; }
.bb-lb-count { position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%); font-family: var(--sans); font-size: 12px; letter-spacing: 0.2em; color: rgba(245,240,232,0.8); }
.bb-lb-hint { position: absolute; top: 26px; left: 50%; transform: translateX(-50%); font-family: var(--sans); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(245,240,232,0.45); }
@media (max-width: 768px) {
  .bb-lb-arrow { width: 42px; height: 42px; }
  .bb-lb-arrow.prev { left: 10px; } .bb-lb-arrow.next { right: 10px; }
  .bb-lb-frame { width: 94vw; height: 80vh; }
}

/* ---------------------------------------------------------------
   ZOEKRESULTATEN
--------------------------------------------------------------- */
.bb-search { padding: 130px 0 100px; }
.bb-search h1 { font-size: clamp(34px, 4vw, 56px); margin-bottom: 14px; }
.bb-search-count {
  font-family: var(--sans);
  font-size: 12.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(26,26,24,0.5);
  margin-bottom: 48px;
}
.bb-search-empty {
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.75;
  color: rgba(26,26,24,0.72);
  max-width: 560px;
  margin-top: 24px;
}
.bb-search-empty a { color: var(--cognac); text-decoration: underline; text-underline-offset: 3px; }
.bb-search-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 56px 28px;
}
.bb-search-list .product-card { flex: none; min-width: 0; }
.bb-search-item {
  grid-column: span 1;
  display: block;
  text-decoration: none;
  border: 1px solid rgba(27,42,74,0.1);
  border-radius: 2px;
  padding: 32px 30px;
  transition: transform 0.3s ease, border-color 0.3s ease;
}
.bb-search-item:hover { transform: translateY(-4px); border-color: rgba(200,169,110,0.5); }
.bb-search-type {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--goud);
}
.bb-search-item h3 {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 400;
  color: var(--midnight);
  margin: 12px 0 10px;
  line-height: 1.2;
}
.bb-search-item p { font-family: var(--sans); font-size: 14px; line-height: 1.65; color: rgba(26,26,24,0.65); }

@media (max-width: 1024px) {
  .bb-pdp-grid { grid-template-columns: 1fr; gap: 48px; }
  .bb-search-list { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .bb-pdp { padding: 90px 0 70px; }
  .nav-search-form { padding: 16px 24px; }
  .nav-search-input { font-size: 20px; }
}
@media (max-width: 640px) {
  .bb-search-list { grid-template-columns: 1fr; }
}

/* ---------------------------------------------------------------
   NEWSLETTER
--------------------------------------------------------------- */
.newsletter {
  position: relative;
  background: var(--midnight);
  color: var(--perkament);
  overflow: hidden;
  padding: 96px 0;
}
.newsletter-bg-word {
  position: absolute;
  bottom: -120px; left: -20px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 360px;
  color: rgba(200,169,110,0.05);
  pointer-events: none;
  line-height: 1;
  user-select: none;
}
.newsletter-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
  padding: 110px 0;
  align-items: center;
}
.newsletter h2 {
  font-family: var(--serif);
  font-size: clamp(40px, 4.4vw, 60px);
  line-height: 1.05;
  color: var(--perkament);
  font-weight: 400;
  margin-bottom: 24px;
}
.newsletter h2 em { font-style: italic; color: var(--goud); }
.newsletter p { color: rgba(245,240,232,0.78); font-size: 15.5px; line-height: 1.7; max-width: 460px; }
.newsletter-form {
  display: flex;
  margin-top: 36px;
  border: 1px solid rgba(200,169,110,0.35);
}
.newsletter-form input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  padding: 22px 24px;
  color: var(--perkament);
  font-family: var(--sans);
  font-size: 14px;
  letter-spacing: 0.04em;
}
.newsletter-form input::placeholder { color: rgba(245,240,232,0.45); }
.newsletter-form button {
  background: var(--goud);
  color: var(--midnight);
  padding: 0 32px;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
  transition: background 0.3s;
  white-space: nowrap;
}
.newsletter-form button:hover { background: var(--perkament); }
.newsletter-note {
  margin-top: 18px;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.5);
  font-family: var(--sans);
}
.newsletter-perks { display: flex; flex-direction: column; gap: 20px; }
.newsletter-perk {
  display: flex;
  align-items: flex-start;
  gap: 22px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(200,169,110,0.18);
}
.newsletter-perk:last-child { border-bottom: none; }
.newsletter-perk .idx {
  font-family: var(--serif);
  font-style: italic;
  color: var(--goud);
  font-size: 22px;
  flex-shrink: 0;
  min-width: 36px;
}
.newsletter-perk h4 {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
  color: var(--perkament);
  margin-bottom: 4px;
}
.newsletter-perk p { font-size: 13.5px; color: rgba(245,240,232,0.7); }

/* ---------------------------------------------------------------
   QUOTE BLOCK
--------------------------------------------------------------- */
.quote-block {
  background: var(--perkament);
  text-align: center;
  padding: 140px 0;
  position: relative;
}
.quote-block::before, .quote-block::after {
  content: "";
  position: absolute;
  left: 50%;
  width: 1px;
  height: 48px;
  background: var(--goud);
  transform: translateX(-50%);
}
.quote-block::before { top: 60px; }
.quote-block::after  { bottom: 60px; }
.quote-block .label { display: block; margin-bottom: 36px; color: var(--cognac); letter-spacing: 0.42em; }
.quote-block blockquote {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(40px, 5.4vw, 84px);
  line-height: 1.05;
  color: var(--midnight);
  letter-spacing: -0.015em;
  max-width: 980px;
  margin: 0 auto;
  text-wrap: balance;
}
.quote-block .attr {
  margin-top: 44px;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--cognac);
}

/* ---------------------------------------------------------------
   SEO BLOCK
--------------------------------------------------------------- */
.seo { background: var(--perkament-2); padding: 100px 0; }
.seo-inner { display: grid; grid-template-columns: 1fr 2fr; gap: 80px; }
.seo h2 {
  font-family: var(--serif);
  font-size: 36px;
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.01em;
}
.seo h2 em { font-style: italic; color: var(--cognac); }
.seo-cols { column-count: 2; column-gap: 50px; font-size: 14px; line-height: 1.8; color: rgba(26,26,24,0.78); }
.seo-cols p { margin-bottom: 16px; break-inside: avoid; }
.seo-cols strong { color: var(--midnight); font-weight: 500; }
.seo-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 24px; }
.seo-tag {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 7px 14px;
  border: 1px solid rgba(27,42,74,0.18);
  color: var(--midnight);
  transition: background 0.3s, color 0.3s, border-color 0.3s;
  cursor: pointer;
  font-family: var(--sans);
}
.seo-tag:hover { background: var(--midnight); color: var(--perkament); border-color: var(--midnight); }

/* ---------------------------------------------------------------
   FOOTER
--------------------------------------------------------------- */
.footer {
  background: var(--midnight);
  color: var(--perkament);
  padding: 90px 0 32px;
  position: relative;
  overflow: hidden;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(200,169,110,0.18);
}
.footer-brand .name {
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 500;
  color: var(--perkament);
  letter-spacing: 0.02em;
}
.footer-brand .amp { color: var(--goud); font-style: normal; }
.footer-brand .sub {
  font-size: 10px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--goud);
  margin-top: 8px;
  font-family: var(--sans);
}
.footer-brand p {
  margin-top: 28px;
  font-size: 14px;
  line-height: 1.7;
  color: rgba(245,240,232,0.7);
  max-width: 320px;
}
.footer-socials { display: flex; gap: 12px; margin-top: 26px; }
.footer-social {
  width: 38px; height: 38px;
  border: 1px solid rgba(245,240,232,0.2);
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s, color 0.3s, border-color 0.3s;
}
.footer-social:hover { background: var(--goud); color: var(--midnight); border-color: var(--goud); }
.footer-col h5 {
  font-family: var(--sans);
  font-size: 10.5px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--goud);
  margin-bottom: 24px;
  font-weight: 500;
}
.footer-col li { margin-bottom: 12px; font-size: 14px; color: rgba(245,240,232,0.78); }
.footer-col a:hover { color: var(--goud); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 28px;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.5);
  font-family: var(--sans);
}
.footer-bottom a:hover { color: var(--goud); }
.footer-stamp {
  position: absolute;
  right: 56px; top: 90px;
  width: 130px; height: 130px;
  border: 1px solid var(--goud);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: var(--serif);
  font-style: italic;
  color: var(--goud);
  font-size: 13px;
  line-height: 1.2;
  letter-spacing: 0.04em;
  opacity: 0.7;
}
.footer-bigword {
  font-family: var(--serif);
  font-style: italic;
  font-size: 320px;
  color: rgba(200,169,110,0.04);
  position: absolute;
  bottom: -120px; left: -30px;
  pointer-events: none;
  line-height: 1;
}

/* ---------------------------------------------------------------
   WERKWIJZE STEPS
--------------------------------------------------------------- */
.steps-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.col-label {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 10.5px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--goud);
  font-weight: 500;
  margin-bottom: 40px;
  font-family: var(--sans);
}
.col-label .rule { background: var(--goud); }

.step {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 0 20px;
  margin-bottom: 40px;
  align-items: start;
}
.step:last-child { margin-bottom: 0; }

.step-num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 38px;
  color: var(--cognac);
  line-height: 1;
  padding-top: 2px;
  grid-row: 1 / 3;
}

.step h3 {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
  color: var(--midnight);
  margin-bottom: 8px;
}

.step p {
  font-size: 14.5px;
  line-height: 1.72;
  color: rgba(26,26,24,0.72);
}

/* ---------------------------------------------------------------
   FAQ ACCORDION
--------------------------------------------------------------- */
.faq-grid { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 70px; align-items: start; }
.faq-col { min-width: 0; }
.faq-list { max-width: 860px; }
.faq-more { margin-top: 34px; }
.faq-photo {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: 3px;
  overflow: hidden;
  background: var(--linnen);
  box-shadow: 0 38px 70px -32px rgba(27,42,74,0.5), 0 14px 28px -18px rgba(27,42,74,0.3);
}
.faq-photo::after { content: ""; position: absolute; inset: 0; border-radius: 3px; box-shadow: inset 0 0 0 1px rgba(245,240,232,0.18); pointer-events: none; }
.faq-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
@media (max-width: 900px) {
  .faq-grid { grid-template-columns: 1fr; gap: 0; }
  .faq-photo { display: none; }
}

.faq-item {
  border-bottom: 1px solid rgba(27,42,74,0.12);
}
.faq-item:first-child { border-top: 1px solid rgba(27,42,74,0.12); }

.faq-item summary {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
  color: var(--midnight);
  padding: 28px 56px 28px 0;
  cursor: pointer;
  list-style: none;
  position: relative;
  line-height: 1.3;
  transition: color 0.25s;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::marker { display: none; }

.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 4px;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--sans);
  font-size: 24px;
  font-weight: 300;
  color: var(--goud);
  transition: transform 0.3s ease;
  line-height: 1;
}
.faq-item[open] > summary::after { content: "−"; }
.faq-item summary:hover { color: var(--cognac); }

.faq-answer {
  font-size: 15px;
  line-height: 1.78;
  color: rgba(26,26,24,0.75);
  padding-bottom: 28px;
  max-width: 720px;
}

/* ---------------------------------------------------------------
   SCROLL REVEAL ANIMATIONS
--------------------------------------------------------------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 1.1s cubic-bezier(.16,.84,.3,1), transform 1.1s cubic-bezier(.16,.84,.3,1);
}
[data-reveal].is-in { opacity: 1; transform: none; }
[data-reveal-delay="1"] { transition-delay: 0.08s; }
[data-reveal-delay="2"] { transition-delay: 0.16s; }
[data-reveal-delay="3"] { transition-delay: 0.24s; }
[data-reveal-delay="4"] { transition-delay: 0.32s; }

/* ---------------------------------------------------------------
   WATCH SVG ANIMATION
--------------------------------------------------------------- */
.watch-wrap { position: relative; width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; }
.watch-wrap .watch-svg { width: 100%; height: 100%; filter: drop-shadow(0 30px 60px rgba(0,0,0,0.45)); }
.watch-wrap .watch-svg .hand-h,
.watch-wrap .watch-svg .hand-m { transform-origin: 200px 200px; }
.watch-wrap .watch-svg .hand-s {
  transform-origin: 200px 200px;
  animation: tick-second 60s steps(60) infinite;
}
@keyframes tick-second {
  0%   { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* ---------------------------------------------------------------
   RESPONSIVE — ≤ 1024px
--------------------------------------------------------------- */
@media (max-width: 1024px) {
  .container { padding-left: 32px; padding-right: 32px; }
  .nav-inner  { padding-left: 32px; padding-right: 32px; }
  .hero-left  { padding-left: 32px; padding-right: 32px; }

  .hero-grid         { grid-template-columns: 1fr; }
  .hero-right        { min-height: 60vh; }
  .story             { grid-template-columns: 1fr; gap: 60px; }
  .newsletter { padding: 72px 0; }
  .cat-grid          { grid-template-columns: 1fr 1fr; grid-template-rows: auto; height: auto; }
  .cat-card          { aspect-ratio: 4/5; }
  .cat-large, .cat-wide { grid-column: auto; grid-row: auto; }
  .usp-grid          { grid-template-columns: repeat(2, 1fr); }
  .usp-item:nth-child(2) { border-right: none; }
  .reviews-grid      { grid-template-columns: 1fr; }
  .journal-grid      { grid-template-columns: 1fr; }
  .seo-inner         { grid-template-columns: 1fr; gap: 32px; }
  .seo-cols          { column-count: 1; }
  .footer-top        { grid-template-columns: 1fr 1fr; }
  .footer-stamp      { display: none; }
  .section-head      { grid-template-columns: 1fr; }
  .steps-grid        { grid-template-columns: 1fr; gap: 48px; }
}

@media (max-width: 640px) {
  .nav-inner { grid-template-columns: auto 1fr auto; gap: 16px; padding: 4px 20px; }
  .nav-left  { display: none; }
  .nav-right { gap: 16px; }
  .brand-mark img { height: 64px; }
  .hero-left { padding: 80px 24px 60px; }
  .container { padding-left: 24px; padding-right: 24px; }
  .usp-bar-row { flex-wrap: wrap; justify-content: center; }
  .cat-grid { grid-template-columns: 1fr; height: auto; }
  .usp-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 40px; }
  .reviews-head { grid-template-columns: 1fr; }
  .product-card { flex: 0 0 85vw; }
}

/* ===============================================================
   INNER PAGES — gedeelde styles
=============================================================== */

/* Page hero — bovensectie voor inner pages (donker, nav eroverheen) */
.page-hero {
  background: radial-gradient(120% 110% at 50% 0%, #22335a 0%, var(--night, #0E1626) 68%);
  color: var(--perkament);
  padding: 170px 0 80px;
  border-bottom: 1px solid rgba(200,169,110,0.12);
}
.page-hero h1 { color: var(--perkament); }
.page-hero h1 em { color: var(--goud); }
.page-hero .page-intro { color: rgba(245,240,232,0.7); }
.page-hero .trust-bar { border-top-color: rgba(245,240,232,0.14); }
.page-hero .trust-bar-item { color: rgba(245,240,232,0.8); }
.page-eyebrow {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
  font-size: 10.5px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--goud);
  font-family: var(--sans);
}
.page-eyebrow .rule { background: var(--goud); width: 32px; flex-shrink: 0; }
.page-hero h1 {
  max-width: 760px;
  font-size: clamp(34px, 4.5vw, 56px);
  line-height: 1.1;
  margin-bottom: 24px;
}
.page-intro {
  max-width: 680px;
  font-size: 17px;
  line-height: 1.75;
  color: rgba(26,26,24,0.72);
  font-family: var(--sans);
  font-weight: 300;
}

/* Trust bar — rij met trust-badges */
.trust-bar {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  margin-top: 36px;
  padding-top: 36px;
  border-top: 1px solid rgba(27,42,74,0.08);
}
.trust-bar-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13.5px;
  font-family: var(--sans);
  color: rgba(26,26,24,0.75);
  font-weight: 400;
}
.trust-bar-item .check { color: var(--goud); font-size: 15px; }

/* ---------------------------------------------------------------
   VERKOPEN — sell steps
--------------------------------------------------------------- */
.sell-steps { max-width: 760px; margin-top: 48px; }
.sell-step {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 0 24px;
  margin-bottom: 48px;
  align-items: start;
}
.sell-step-num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 46px;
  line-height: 1;
  color: var(--cognac);
  grid-row: 1 / 3;
}
.sell-step h3 { font-size: 22px; margin-bottom: 10px; }
.sell-step p  { font-size: 15px; line-height: 1.75; color: rgba(26,26,24,0.72); }

/* Pricing table */
.pricing-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 36px;
  font-family: var(--sans);
  font-size: 14.5px;
}
.pricing-table th {
  text-align: left;
  padding: 14px 20px;
  background: rgba(27,42,74,0.05);
  font-size: 10.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(26,26,24,0.6);
  border-bottom: 1px solid rgba(27,42,74,0.1);
  font-family: var(--sans);
}
.pricing-table td {
  padding: 16px 20px;
  border-bottom: 1px solid rgba(27,42,74,0.07);
  line-height: 1.6;
  vertical-align: top;
}
.pricing-table td:first-child { font-weight: 500; }
.pricing-table td:nth-child(2) { color: var(--cognac); font-weight: 500; white-space: nowrap; }
.pricing-table tr:last-child td { border-bottom: none; }

/* Why us grid */
.why-us-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 44px;
  margin-top: 48px;
}
.why-us-item h3 { font-size: 21px; margin-bottom: 10px; }
.why-us-item h3::before {
  content: '';
  display: block;
  width: 32px;
  height: 2px;
  background: var(--goud);
  margin-bottom: 14px;
}
.why-us-item p { font-size: 14.5px; line-height: 1.72; color: rgba(26,26,24,0.72); }

/* Form placeholder */
.form-placeholder {
  border: 1.5px dashed rgba(27,42,74,0.22);
  border-radius: 4px;
  padding: 56px 48px;
  max-width: 680px;
  margin-top: 40px;
}
.form-placeholder p { font-size: 15px; color: rgba(26,26,24,0.62); font-family: var(--sans); margin-bottom: 24px; line-height: 1.65; }

/* ---------------------------------------------------------------
   OVER ONS — founders & beliefs
--------------------------------------------------------------- */
.founder-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  margin-top: 60px;
}
.founder-img-placeholder {
  width: 100%;
  aspect-ratio: 4/5;
  background: linear-gradient(160deg, #22335a 0%, #0f1830 100%);
  border-radius: 2px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 26px;
  color: rgba(245,240,232,0.5);
  font-size: 11px;
  font-family: var(--sans);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 28px;
  border: 1px solid rgba(200,169,110,0.25);
  position: relative;
  overflow: hidden;
}
.founder-img-placeholder::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(58% 46% at 50% 36%, rgba(200,169,110,0.12), transparent 70%);
  pointer-events: none;
}
.founder-role {
  font-size: 10.5px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--goud);
  font-family: var(--sans);
  margin-bottom: 12px;
}
.founder-col h3 { font-size: 28px; margin-bottom: 16px; }
.founder-col p  { font-size: 15px; line-height: 1.75; color: rgba(26,26,24,0.72); margin-bottom: 14px; }

.beliefs-list { max-width: 760px; margin-top: 48px; }
.belief-item {
  border-bottom: 1px solid rgba(27,42,74,0.1);
  padding: 36px 0;
}
.belief-item:first-child { padding-top: 0; }
.belief-item h3 { font-size: 22px; margin-bottom: 12px; }
.belief-item p  { font-size: 15px; line-height: 1.75; color: rgba(26,26,24,0.72); }

/* ---------------------------------------------------------------
   CTA TILES — twee tegels naast elkaar
--------------------------------------------------------------- */
.cta-tiles {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 40px;
}
.cta-tile {
  padding: 48px 40px;
  border: 1px solid rgba(27,42,74,0.12);
  border-radius: 2px;
}
.cta-tile.tile-dark {
  background: var(--midnight);
  border-color: transparent;
  color: var(--perkament);
}
.cta-tile h3 { font-size: 26px; margin-bottom: 14px; }
.cta-tile.tile-dark h3 { color: var(--perkament); }
.cta-tile p  { font-size: 14.5px; line-height: 1.7; color: rgba(26,26,24,0.68); margin-bottom: 28px; }
.cta-tile.tile-dark p { color: rgba(245,240,232,0.7); }

/* ---------------------------------------------------------------
   BRAND GRID — merken-overzicht
--------------------------------------------------------------- */
.brand-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.brand-tile {
  border: 1px solid rgba(27,42,74,0.12);
  padding: 36px 28px;
  border-radius: 2px;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
  text-decoration: none;
  color: inherit;
  display: block;
}
.brand-tile:hover {
  border-color: var(--goud);
  box-shadow: 0 4px 24px rgba(27,42,74,0.06);
}
.brand-tile h3  { font-size: 22px; margin-bottom: 8px; color: var(--midnight); }
.brand-tile p   { font-size: 13.5px; line-height: 1.65; color: rgba(26,26,24,0.65); }

/* ---------------------------------------------------------------
   CONTACT TILES
--------------------------------------------------------------- */
.contact-options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
}
.contact-option {
  border: 1px solid rgba(27,42,74,0.12);
  padding: 40px 32px;
  border-radius: 2px;
}
.contact-option-icon {
  width: 44px;
  height: 44px;
  background: rgba(200,169,110,0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--goud);
}
.contact-option h3 { font-size: 20px; margin-bottom: 10px; }
.contact-option p  { font-size: 14px; line-height: 1.7; color: rgba(26,26,24,0.68); margin-bottom: 20px; }

/* Practical info block */
.practical-info {
  max-width: 600px;
  margin-top: 40px;
  font-family: var(--sans);
  font-size: 14.5px;
  line-height: 1.75;
  color: rgba(26,26,24,0.72);
}
.practical-info strong { color: var(--midnight); }

/* ---------------------------------------------------------------
   WERKWIJZE — process tabs
--------------------------------------------------------------- */
.werkwijze-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  margin-top: 60px;
}
.werkwijze-tab .tab-label {
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-family: var(--sans);
  color: var(--goud);
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 40px;
  font-weight: 400;
}
.werkwijze-tab .tab-label::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--goud);
  opacity: 0.35;
}

/* Certificate list */
.cert-list {
  list-style: none;
  padding: 0;
  margin: 28px 0 0;
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.6;
}
.cert-list li {
  padding: 10px 0;
  border-bottom: 1px solid rgba(27,42,74,0.07);
  display: flex;
  gap: 12px;
}
.cert-list li::before { content: '—'; color: var(--goud); flex-shrink: 0; }

/* ---------------------------------------------------------------
   RESPONSIVE — inner pages
--------------------------------------------------------------- */
@media (max-width: 1024px) {
  .founder-cols   { grid-template-columns: 1fr; gap: 48px; }
  .brand-grid     { grid-template-columns: 1fr 1fr; }
  .contact-options { grid-template-columns: 1fr; gap: 20px; }
  .cta-tiles      { grid-template-columns: 1fr; }
  .why-us-grid    { grid-template-columns: 1fr; gap: 32px; }
  .werkwijze-tabs { grid-template-columns: 1fr; gap: 60px; }
}
@media (max-width: 768px) {
  .page-hero { padding: 80px 0 60px; }
  .brand-grid { grid-template-columns: 1fr; }
  .pricing-table { font-size: 13px; }
  .pricing-table th,
  .pricing-table td { padding: 12px 14px; }
  .trust-bar { gap: 16px; }
  .form-placeholder { padding: 36px 24px; }
  .cta-tile { padding: 36px 28px; }
}

/* ===============================================================
   KENNISBANK / SEO-GEO ARTIKELEN
=============================================================== */
.kb-note {
  border: 1px dashed rgba(200,169,110,0.5);
  background: rgba(200,169,110,0.06);
  border-radius: 3px;
  padding: 22px 26px;
  font-size: 14.5px; line-height: 1.7;
  color: rgba(26,26,24,0.8);
  font-family: var(--sans);
  max-width: 880px; margin: 0 0 44px;
}
.kb-note strong { color: var(--midnight); }
.kb-note code {
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
  font-size: 12.5px; background: rgba(27,42,74,0.07); padding: 2px 6px; border-radius: 3px;
}
.kb-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.kb-card {
  display: flex; flex-direction: column;
  background: var(--perkament-2);
  border: 1px solid rgba(27,42,74,0.08);
  border-radius: 3px; padding: 30px 28px 26px;
  transition: transform 0.4s cubic-bezier(.2,.7,.2,1), box-shadow 0.4s, border-color 0.4s;
}
.kb-card:hover { transform: translateY(-5px); box-shadow: 0 30px 50px -34px rgba(14,22,38,0.5); border-color: rgba(200,169,110,0.45); }
.kb-card .cat { font-family: ui-monospace, "SF Mono", Menlo, monospace; font-size: 10.5px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--cognac); margin-bottom: 14px; }
.kb-card h3 { font-family: var(--serif); font-size: 24px; line-height: 1.18; color: var(--midnight); margin-bottom: 12px; }
.kb-card p { font-size: 14.5px; line-height: 1.65; color: rgba(26,26,24,0.68); font-family: var(--sans); margin-bottom: 20px; flex: 1; }
.kb-card .more { font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--midnight); display: inline-flex; gap: 8px; align-items: center; }
.kb-card:hover .more { color: var(--goud); }

.kb-wrap { max-width: 820px; margin: 0 auto; padding: 0 24px; }
.kb-crumb { font-size: 13px; color: rgba(245,240,232,0.6); font-family: var(--sans); margin-bottom: 22px; }
.kb-crumb a { color: var(--goud); }
.kb-crumb a:hover { text-decoration: underline; }
.kb-meta { font-family: ui-monospace, "SF Mono", Menlo, monospace; font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--goud); margin-bottom: 18px; }
.kb-byline { display: flex; align-items: center; gap: 12px; font-size: 13.5px; color: rgba(245,240,232,0.66); font-family: var(--sans); margin-top: 22px; }
.kb-byline .av { width: 30px; height: 30px; border-radius: 999px; background: linear-gradient(150deg, var(--goud), var(--cognac)); display: inline-flex; align-items: center; justify-content: center; color: var(--night); font-size: 13px; }
.kb-byline .dot { width: 3px; height: 3px; border-radius: 999px; background: rgba(245,240,232,0.4); }

.kb-body { background: var(--perkament); padding: 70px 0 30px; }
.kb-answer { position: relative; background: var(--midnight); color: var(--perkament); border-radius: 4px; padding: 30px 34px 32px; margin-bottom: 34px; border-left: 3px solid var(--goud); }
.kb-answer .k { display: inline-block; font-family: ui-monospace, "SF Mono", Menlo, monospace; font-size: 10.5px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--goud); margin-bottom: 12px; }
.kb-answer p { font-family: var(--serif); font-size: 22px; line-height: 1.5; color: var(--perkament); font-weight: 400; }

.kb-facts { border-top: 1px solid rgba(27,42,74,0.14); margin-bottom: 40px; }
.kb-facts .row { display: grid; grid-template-columns: 38% 1fr; gap: 18px; padding: 13px 4px; border-bottom: 1px solid rgba(27,42,74,0.1); font-size: 14.5px; }
.kb-facts .row span:first-child { font-family: ui-monospace, "SF Mono", Menlo, monospace; font-size: 12px; letter-spacing: 0.04em; text-transform: uppercase; color: rgba(26,26,24,0.5); }
.kb-facts .row span:last-child { color: var(--midnight); font-family: var(--sans); }

.kb-toc { background: var(--perkament-2); border: 1px solid rgba(27,42,74,0.08); border-radius: 3px; padding: 22px 26px; margin-bottom: 40px; }
.kb-toc h4 { font-family: ui-monospace, "SF Mono", Menlo, monospace; font-size: 10.5px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--cognac); margin-bottom: 14px; }
.kb-toc ol { list-style: none; counter-reset: toc; display: grid; gap: 9px; margin: 0; padding: 0; }
.kb-toc li { counter-increment: toc; }
.kb-toc a { font-family: var(--sans); font-size: 15px; color: var(--midnight); display: flex; gap: 12px; }
.kb-toc a::before { content: counter(toc, decimal-leading-zero); font-family: ui-monospace, monospace; font-size: 12px; color: var(--goud); }
.kb-toc a:hover { color: var(--cognac); }

.kb-prose { font-family: var(--sans); }
.kb-prose h2 { font-family: var(--serif); font-size: clamp(26px, 3vw, 34px); line-height: 1.2; color: var(--midnight); margin: 48px 0 16px; font-weight: 400; scroll-margin-top: 120px; }
.kb-prose h3 { font-family: var(--serif); font-size: 22px; color: var(--midnight); margin: 32px 0 12px; }
.kb-prose p { font-size: 16.5px; line-height: 1.8; color: rgba(26,26,24,0.82); margin-bottom: 18px; }
.kb-prose a { color: var(--cognac); border-bottom: 1px solid rgba(139,94,60,0.35); transition: border-color 0.2s; }
.kb-prose a:hover { border-color: var(--cognac); }
.kb-prose ul, .kb-prose ol { margin: 0 0 20px 0; padding-left: 22px; }
.kb-prose li { font-size: 16.5px; line-height: 1.75; color: rgba(26,26,24,0.82); margin-bottom: 9px; }
.kb-prose strong { color: var(--midnight); }

.kb-tip { background: rgba(200,169,110,0.1); border-left: 3px solid var(--goud); border-radius: 0 3px 3px 0; padding: 18px 22px; margin: 26px 0; font-size: 15.5px; line-height: 1.7; color: rgba(26,26,24,0.85); font-family: var(--sans); }
.kb-tip strong { color: var(--cognac); }

.kb-faq { margin-top: 18px; }
.kb-faq details { border-bottom: 1px solid rgba(27,42,74,0.12); }
.kb-faq summary { cursor: pointer; list-style: none; padding: 18px 0; font-family: var(--serif); font-size: 20px; color: var(--midnight); display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.kb-faq summary::-webkit-details-marker { display: none; }
.kb-faq summary::after { content: "+"; color: var(--goud); font-size: 22px; font-family: var(--sans); transition: transform 0.3s; }
.kb-faq details[open] summary::after { transform: rotate(45deg); }
.kb-faq details p { font-size: 16px; line-height: 1.75; color: rgba(26,26,24,0.78); padding: 0 0 20px; font-family: var(--sans); max-width: 64ch; }

.kb-related { margin-top: 50px; padding-top: 34px; border-top: 1px solid rgba(27,42,74,0.14); }
.kb-related h3 { font-family: ui-monospace, "SF Mono", Menlo, monospace; font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--cognac); margin-bottom: 18px; }
.kb-related .links { display: flex; flex-wrap: wrap; gap: 12px; }
.kb-related .links a { font-family: var(--sans); font-size: 14px; color: var(--midnight); border: 1px solid rgba(27,42,74,0.2); border-radius: 999px; padding: 9px 18px; transition: 0.25s; }
.kb-related .links a:hover { border-color: var(--goud); color: var(--cognac); }

.kb-cta { background: var(--night); color: var(--perkament); text-align: center; padding: 70px 0; margin-top: 70px; }
.kb-cta h2 { font-family: var(--serif); font-size: clamp(30px, 4vw, 46px); color: var(--perkament); margin-bottom: 16px; }
.kb-cta h2 em { font-style: italic; color: var(--goud); }
.kb-cta p { max-width: 460px; margin: 0 auto 30px; font-size: 16px; line-height: 1.7; color: rgba(245,240,232,0.68); font-family: var(--sans); }

@media (max-width: 900px) { .kb-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) {
  .kb-grid { grid-template-columns: 1fr; }
  .kb-facts .row { grid-template-columns: 1fr; gap: 4px; }
}

/* ===============================================================
   DOSSIER-SIGNATUUR (homepage)
=============================================================== */
.dossier { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.dossier-card { position: relative; background: var(--perkament); border: 1px solid rgba(27,42,74,0.14); padding: 40px; box-shadow: 0 40px 80px -40px rgba(14,22,38,0.6); }
.dossier-card::before { content: ""; position: absolute; inset: 11px; border: 1px solid rgba(200,169,110,0.4); pointer-events: none; }
.dossier-stamp { position: absolute; top: -26px; right: 30px; width: 92px; height: 92px; border: 1px solid var(--goud); border-radius: 50%; display: flex; flex-direction: column; align-items: center; justify-content: center; background: var(--perkament); font-family: ui-monospace, "SF Mono", Menlo, monospace; font-size: 8.5px; letter-spacing: 0.18em; color: var(--cognac); text-transform: uppercase; text-align: center; line-height: 1.5; transform: rotate(-9deg); }
.dossier-stamp b { font-family: var(--serif); font-size: 17px; color: var(--goud); font-weight: 500; letter-spacing: 0; }
.dossier-card .dh { font-family: ui-monospace, "SF Mono", Menlo, monospace; font-size: 10px; letter-spacing: 0.24em; text-transform: uppercase; color: var(--goud); margin-bottom: 8px; }
.dossier-card .dt { font-family: var(--serif); font-size: 30px; color: var(--midnight); margin-bottom: 26px; line-height: 1.1; }
.drow { display: grid; grid-template-columns: 130px 1fr; gap: 14px; padding: 11px 0; border-top: 1px solid rgba(27,42,74,0.1); font-size: 13px; margin: 0; }
.drow dt { font-family: ui-monospace, "SF Mono", Menlo, monospace; font-size: 11px; letter-spacing: 0.04em; color: rgba(26,26,24,0.5); text-transform: uppercase; }
.drow dd { color: var(--midnight); margin: 0; }
.dcheck { margin-top: 24px; display: flex; flex-direction: column; gap: 9px; }
.dcheck span { display: flex; gap: 10px; align-items: center; font-size: 13px; color: rgba(26,26,24,0.74); }
.dcheck svg { color: var(--goud); flex-shrink: 0; }
.dossier-text h2 { font-size: clamp(34px, 3.8vw, 52px); line-height: 1.06; margin: 20px 0 24px; color: var(--perkament); }
.dossier-text h2 em { font-style: italic; color: var(--goud); }
.dossier-text p { font-size: 16px; line-height: 1.85; color: rgba(245,240,232,0.72); margin-bottom: 20px; max-width: 480px; }
@media (max-width: 900px) { .dossier { grid-template-columns: 1fr; gap: 56px; } }
