/* ================================================================
   Homepage v2 — Beton Ciré Webshop (staging redesign)
   Namespaced .oz-hp-* to avoid Flatsome collisions.
   Design: editorial luxury — warm neutrals, teal accent, generous space.
   Scroll-reveal + marquee keyframes live in homepage-v2-animations.css
   (toggleable for NO_LCP diagnostics).
   ================================================================ */

/* ── Tokens ── */
/* Globale tokens (:root — deze CSS wordt gedeeld met ruimte/stucsoorten/
   locatie-pages waar de wrapper .oz-ruimte is, niet .oz-hp; op .oz-hp
   gescopete tokens resolven daar niet). */
:root {
  /* Button-semantiek (2026-06-10): CTA = conversie (stalen/offerte) in
     brand-oranje; product/ATC-familie = teal. Eén plek om te wisselen. */
  --oz-btn-cta-bg: var(--oz-cta, #E67C00);
  --oz-btn-cta-bg-hover: #D36F00;
  --oz-btn-product-bg: var(--oz-accent, #135350);
  --oz-btn-product-bg-hover: #1A6B67;
  /* Motion-tokens: 1 easing, 3 snelheden. */
  --oz-ease: cubic-bezier(.22, 1, .36, 1);
  --oz-t-fast: 0.2s;
  --oz-t-med: 0.3s;
  --oz-t-slow: 0.6s;
  /* Card-schaduw met teal-tint (brand). Grote glass-schaduwen blijven custom. */
  --oz-shadow-card: 0 8px 24px rgba(19, 83, 80, 0.08);
}

.oz-hp {
  --teal: #135350;
  --teal-hover: #1A6B67;
  --teal-dark: #0E3E3C;
  --teal-mist: #E8F0F0;
  --sand: #F5F4F0;
  --stone: #E5E5E3;
  --charcoal: #1A1A1A;
  --text: #555;
  --text-light: #888;
  --white: #FFF;
  --max-w: 1100px;
  --gap: 20px;
}

.oz-hp {
  font-family: var(--oz-ff-body);
  color: var(--text);
  line-height: 1.6;
  overflow-x: clip;
}

.oz-hp *,
.oz-hp *::before,
.oz-hp *::after {
  box-sizing: border-box;
}

.oz-hp img { max-width: 100%; height: auto; }

/* Absolute-fill images: deze MOETEN height: 100% houden, maar verloren de
   cascade van de height: auto reset hierboven (.oz-hp img = 0,1,1 verslaat
   een enkele class = 0,1,0). Zichtbaar geworden toen alle imgs width/height
   attributen kregen (CLS-fix): natural-ratio rendering i.p.v. card-fill.
   Twee classes (0,2,0) winnen weer. */
.oz-hp .oz-hp-ruimtes-card-img,
.oz-hp .oz-vn-drag-base,
.oz-hp .oz-vn-drag-overlay img,
.oz-hp .oz-vn-stage {
  height: 100%;
}

/* ── Shared patterns ── */
.oz-hp-container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gap);
}

.oz-hp-section {
  padding: 80px 0;
}

.oz-hp-section--sand { background: var(--sand); }
.oz-hp-section--dark { background: var(--charcoal); color: var(--white); }
.oz-hp-section--teal-mist { background: var(--teal-mist); }

.oz-hp-section-header {
  text-align: center;
  margin-bottom: 48px;
}

.oz-hp-eyebrow {
  font-family: var(--oz-ff-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 12px;
  position: relative;
  display: inline-block;
}

.oz-hp-eyebrow::before,
.oz-hp-eyebrow::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 40px;
  height: 1px;
  background: var(--stone);
}
.oz-hp-eyebrow::before { right: calc(100% + 16px); }
.oz-hp-eyebrow::after  { left:  calc(100% + 16px); }

.oz-hp-heading {
  font-family: var(--oz-ff-heading);
  font-size: clamp(26px, 4vw, 40px);
  font-weight: 400;
  color: var(--charcoal);
  line-height: 1.2;
  margin: 0;
}

.oz-hp-heading em {
  font-style: italic;
  color: var(--teal);
}

.oz-hp-section--dark .oz-hp-heading { color: var(--white); }
.oz-hp-section--dark .oz-hp-eyebrow { color: var(--teal-mist); }
.oz-hp-section--dark .oz-hp-eyebrow::before,
.oz-hp-section--dark .oz-hp-eyebrow::after { background: rgba(255,255,255,.15); }

.oz-hp-btn {
  display: inline-block;
  width: fit-content;
  padding: 12px 24px;
  font-family: var(--oz-ff-body);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-decoration: none;
  border-radius: 8px;
  transition: background var(--oz-t-fast), transform var(--oz-t-fast);
  cursor: pointer;
  border: none;
}

.oz-hp-btn:hover { transform: translateY(-1px); }

.oz-hp-btn--teal {
  background: var(--oz-btn-product-bg);
  color: var(--white);
}
.oz-hp-btn--teal:hover { background: var(--oz-btn-product-bg-hover); color: var(--white); }

/* Conversie-CTA (stalen/offerte aanvragen): brand-oranje. */
.oz-hp-btn--cta {
  background: var(--oz-btn-cta-bg);
  color: var(--white);
}
.oz-hp-btn--cta:hover { background: var(--oz-btn-cta-bg-hover); color: var(--white); }

.oz-hp-btn--outline {
  background: transparent;
  border: 1.5px solid rgba(255,255,255,.35);
  color: var(--white);
}
.oz-hp-btn--outline:hover { border-color: var(--white); color: var(--white); }

/* Hero kleurstalen-CTA (links): alleen op mobiel; op desktop staat de kaart op de foto. */
.oz-hp-hero-cta-mobile { display: none; }
@media (max-width: 1024px) {
  .oz-hp-hero-cta-mobile { display: inline-block; }
}

.oz-hp-btn--dark {
  background: var(--charcoal);
  color: var(--white);
}

/* Flatsome header hide + old glass nav removed — handled by oz-header.css sitewide */

/* ================================================================
   S02 — HERO
   ================================================================ */
/* Full-viewport hero — charcoal fallback behind image */
.oz-hp-hero {
  position: relative;
  display: grid;
  /* Tekst-kolom = rest, foto-kolom = exact de fotobreedte (auto). */
  grid-template-columns: minmax(280px, 1fr) auto;
  align-items: stretch;
  /* min-height (niet height!) — zo kan de hero meegroeien als de tekst
     meer ruimte nodig heeft, in plaats van geclipped door overflow:hidden. */
  min-height: clamp(440px, 56vh, 560px);
  background: var(--oz-bg-warm);
  /* Watermark + vertical-marker zitten absoluut binnen de hero;
     overflow:hidden clipt het reusachtige watermerk netjes. */
  overflow: hidden;
}

/* Darken overlay above the hero img. Z-index 1 keeps it below the
   content layer (z-index 2) but above the img. */
/* Split-layout: tekst staat op de warme zone, dus geen overlay over de foto nodig. */
.oz-hp-hero::after { display: none; }

/* ============================================================
   POSTER VIBE — watermark + verticale marker (V4 ontwerp).
   Vult de crème-zone als de foto smal is (portrait pages),
   blijft subtiel als de foto wel breed is (landscape pages).

   - Watermark: reusachtig ruimte-label in DM Serif, accent-teal,
     ~8.5% opacity, onderkant linksonder, lowercase.
   - Marker:    verticaal 11px-label langs de linkerrand met
     uppercase letterspacing en kleine horizontale streep.

   Beide krijgen hun tekst via data-attributes:
   - data-hero-label  → watermark (bijv. "keuken")
   - data-hero-marker → vertical text (bijv. "Ruimte 01 — Keuken")
   PHP zet deze attributen per page via oz_render_ruimte_template_hero()
   en via een filter in block-sections-renderer.php voor in-content heros.
   ============================================================ */
.oz-hp-hero::before {
  content: attr(data-hero-label);
  position: absolute;
  bottom: -0.12em;
  left: -0.04em;
  font-family: var(--oz-ff-heading);
  font-size: clamp(180px, 24vw, 380px);
  line-height: 0.82;
  letter-spacing: -0.045em;
  color: var(--oz-accent);
  opacity: 0.085;
  pointer-events: none;
  z-index: 0;
  white-space: nowrap;
  text-transform: lowercase;
}
/* Als er geen data-hero-label is gezet, niet renderen (geen lege box). */
.oz-hp-hero:not([data-hero-label])::before,
.oz-hp-hero[data-hero-label=""]::before { content: none; }

.oz-hp-hero-marker {
  position: absolute;
  top: 50%;
  left: 18px;
  transform: translateY(-50%) rotate(-90deg);
  transform-origin: left center;
  font-family: var(--oz-ff-body);
  font-size: 11px;
  color: var(--oz-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.32em;
  font-weight: 700;
  z-index: 2;
  white-space: nowrap;
  pointer-events: none;
}
.oz-hp-hero-marker::before {
  content: '';
  display: inline-block;
  width: 28px;
  height: 1px;
  background: var(--oz-text-muted);
  margin-right: 12px;
  vertical-align: middle;
}

/* Op mobile: watermark verkleinen (geen 24vw meer, maar 28vw zodat hij
   wel zichtbaar blijft over de hele breedte), marker verbergen
   (te krap, layout stacked). */
@media (max-width: 1024px) {
  .oz-hp-hero::before { font-size: 28vw; opacity: 0.07; }
  .oz-hp-hero-marker { display: none; }
}

/* Foto: capped op zowel breedte ALS hoogte (NIET height:100% — dat zou de
   foto laten meegroeien met een tekst-getriggerd grotere hero, en bij
   max-width clamp de aspect-ratio breken).
   - width auto + height auto = natuurlijke aspect-ratio behouden (geen crop, geen stretch)
   - browser pakt automatisch de bindende cap (width voor landscape, height voor portrait)
   - rechts uitgelijnd (kleeft aan viewport-rand), verticaal gecentreerd binnen de hero
     (kleine crème-strook boven/onder als de hero langer is door tekst-content) */
.oz-hp-hero-bg {
  grid-column: 2;
  grid-row: 1;
  display: block;
  width: auto;
  height: auto;
  max-width: 55vw;
  max-height: 56vh;
  justify-self: end;
  align-self: center;
}

/* RUIMTE-PAGES: foto vult de rechterkolom volledig (cover, center center) —
   zoals de oude wp-block-cover heroes deden voor de oz-hp-hero conversie.
   Gescoped op .oz-ruimte zodat alleen ruimte/stucsoorten/locatie-pages dit
   krijgen; de homepage gebruikt inmiddels bcw-hero-v2 (eigen sectie).
   De no-crop regel hierboven blijft de default voor ongescopete contexten. */
/* Mobiel (stack): foto full-bleed van rand tot rand, alleen de
   tekstzone krijgt zijpadding. De generieke stack-regel padt de hele
   sectie (inclusief foto) — hier per zone gescheiden. */
@media (max-width: 1024px) {
  .oz-ruimte .oz-hp-hero { padding: 0; }
  .oz-ruimte .oz-hp-hero-bg {
    width: 100%;
    height: auto;
    /* base-regel capt op 55vw + justify end; mobiel moet rand-tot-rand */
    max-width: none;
    max-height: none;
    justify-self: stretch;
  }
  .oz-ruimte .oz-hp-hero-inner { padding: 20px 24px 32px; }
}

/* FOTO LINKS / TEKST RECHTS — zelfde richting als de homepage-hero.
   Alleen desktop: op mobiel stapelt de hero (foto boven, tekst onder)
   en zouden geforceerde grid-columns een tweede kolom creëren. De boxed
   padding hoort hier ook: met max(0px,...) zou hij op mobiel de 24px
   zijpadding van de stack-layout overschrijven naar 0. */
@media (min-width: 1025px) {
  .oz-ruimte .oz-hp-hero {
    /* BOXED zoals de homepage-hero (inner max 1600px): de crème-achtergrond
       blijft full-bleed, de grid-content wordt gecentreerd op 1600px via
       padding (padding telt niet mee voor de grid-tracks). */
    padding-left: max(0px, calc((100% - 1600px) / 2));
    padding-right: max(0px, calc((100% - 1600px) / 2));
    /* Foto-kolom (links) krijgt een vast aandeel zodat object-fit: cover
       iets heeft om te vullen (auto-breedte werkt niet met cover). */
    grid-template-columns: minmax(0, 1.05fr) minmax(280px, 1fr);
  }
  .oz-ruimte .oz-hp-hero-bg {
    grid-column: 1;
    width: 100%;
    /* height:0 + min-height:100% — de foto telt NIET mee voor de rij-hoogte
       (anders blaast een portrait-foto de hero op tot z'n intrinsieke hoogte)
       maar stretcht wel mee tot de hoogte die de tekstkolom bepaalt. */
    height: 0;
    min-height: 100%;
    max-width: none;
    max-height: none;
    object-fit: cover;
    object-position: center center;
    justify-self: stretch;
    align-self: stretch;
  }
  .oz-ruimte .oz-hp-hero-inner { grid-column: 2; }
  /* Glass-card op de foto: linksonder, meeschuivend met de geboxte kolom
     (absolute offsets meten vanaf de sectie-rand, niet de content-box). */
  .oz-ruimte .oz-hp-hero-glass {
    right: auto;
    left: calc(max(0px, (100vw - 1600px) / 2) + 24px);
  }
  /* Watermark spiegelt mee naar de tekst-zijde (rechtsonder). */
  .oz-ruimte .oz-hp-hero::before {
    left: auto;
    right: -0.04em;
  }
  /* Verticale marker naar de rechterrand, leesrichting top-down. */
  .oz-ruimte .oz-hp-hero-marker {
    left: auto;
    right: 18px;
    transform: translateY(-50%) rotate(90deg);
    transform-origin: right center;
  }
}

/* Tekst-zone: linkerkolom, verticaal gecentreerd op de warme achtergrond. */
.oz-hp-hero-inner {
  grid-column: 1;
  grid-row: 1;
  position: static;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  margin: 0;
  /* Bovenruimte zodat de tekst onder de vaste, doorzichtige nav vandaan komt (alleen tekst-kant). */
  padding: clamp(80px, 11vh, 100px) clamp(28px, 4vw, 64px) clamp(28px, 4vh, 44px);
  width: 100%;
}

.oz-hp-hero-text {
  max-width: 560px;
  color: var(--oz-text-primary);
}

/* Eyebrow verwijderd: te afleidend en dubbel met de trust-balk eronder. De H1 leidt nu. (2026-06-07) */
.oz-hp-hero-eyebrow { display: none; }

.oz-hp-hero-title {
  font-family: var(--oz-ff-heading);
  font-size: clamp(38px, 4.4vw, 56px);
  font-weight: 400;
  line-height: 1.05;
  margin: 0 0 12px;
  color: var(--oz-text-primary);
  letter-spacing: -0.01em;
}

.oz-hp-hero-title-tag {
  display: block;
  font-family: var(--oz-ff-heading);
  font-size: clamp(17px, 1.7vw, 22px);
  font-weight: 400;
  color: var(--oz-accent);
  margin-top: 12px;
}

.oz-hp-hero-sub {
  font-family: var(--oz-ff-heading);
  font-size: clamp(17px, 2vw, 22px);
  font-weight: 400;
  font-style: italic;
  color: #4a5560;
  margin: 0 0 12px;
}

.oz-hp-hero-desc {
  font-family: var(--oz-ff-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--oz-text-body);
  max-width: 460px;
  margin-bottom: 24px;
}

.oz-hp-hero-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

/* Kleurstalen-CTA als glas-kaart op de foto: frosted, de foto schemert er doorheen. */
.oz-hp-hero-glass {
  display: block;
  position: absolute;
  z-index: 3;
  bottom: clamp(20px, 3vw, 36px);
  right: clamp(20px, 3vw, 40px);
  width: min(330px, 42%);
  padding: 24px;
  background: rgba(22, 30, 28, 0.55);
  -webkit-backdrop-filter: blur(16px) saturate(1.25);
  backdrop-filter: blur(16px) saturate(1.25);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 16px;
  box-shadow: 0 22px 50px -22px rgba(0, 0, 0, 0.40);
  color: #fff;
}

/* Outline-knop voor de lichte zone (witte rand is daar onzichtbaar). */
.oz-hp-hero .oz-hp-btn--outline {
  border: 1.5px solid var(--oz-border);
  color: var(--oz-text-primary);
  background: #fff;
}
.oz-hp-hero .oz-hp-btn--outline:hover {
  border-color: var(--oz-accent);
  color: var(--oz-accent);
}

.oz-hp-hero-glass .oz-hp-eyebrow {
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.72);
  margin-bottom: 12px;
}

.oz-hp-hero-glass .oz-hp-eyebrow::before,
.oz-hp-hero-glass .oz-hp-eyebrow::after { display: none; }

.oz-hp-hero-glass-title {
  font-family: var(--oz-ff-heading);
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 8px;
}

.oz-hp-hero-glass-desc {
  font-size: 13px;
  /* Wit op het donkere glas — stond per abuis op de donkere body-token. */
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.6;
  margin-bottom: 16px;
}

/* Text link with arrow instead of filled button */
.oz-hp-hero-glass .oz-hp-hero-glass-link {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,.8);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  transition: color var(--oz-t-fast);
}

.oz-hp-hero-glass .oz-hp-hero-glass-link:hover {
  color: #fff;
}

/* ================================================================
   S03 — TRUST BAR (scrolling marquee)
   ================================================================ */
.oz-hp-trust {
  background: var(--charcoal);
  padding: 16px 0;
  overflow: hidden;
  white-space: nowrap;
  content-visibility: auto;
  contain-intrinsic-size: 0 42px;
}

.oz-hp-trust-track {
  display: inline-flex;
}

/* Marquee animation rules live in homepage-v2-animations.css. */

.oz-hp-trust-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 32px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  /* Bumped from .5 to .85 so the text passes WCAG AA contrast on charcoal. */
  color: rgba(255,255,255,.85);
}

.oz-hp-trust-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--teal);
  flex-shrink: 0;
}

/* ================================================================
   S04 — RUIMTES MOZAIEK
   ================================================================ */
.oz-hp-ruimtes {
  padding: 80px 0;
}

.oz-hp-ruimtes-header {
  text-align: center;
  margin-bottom: 48px;
}

.oz-hp-ruimtes-eyebrow {
  font-family: var(--oz-ff-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 12px;
  position: relative;
  display: inline-block;
}

.oz-hp-ruimtes-eyebrow::before,
.oz-hp-ruimtes-eyebrow::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 40px;
  height: 1px;
  background: var(--stone);
}
.oz-hp-ruimtes-eyebrow::before { right: calc(100% + 16px); }
.oz-hp-ruimtes-eyebrow::after  { left:  calc(100% + 16px); }

.oz-hp-ruimtes-heading {
  font-family: var(--oz-ff-heading);
  font-size: clamp(24px, 3.5vw, 36px);
  font-weight: 400;
  color: var(--charcoal);
  line-height: 1.2;
  margin: 0;
}

.oz-hp-ruimtes-heading em { font-style: italic; color: var(--teal); }

.oz-hp-ruimtes-intro {
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  max-width: 520px;
  margin: 12px auto 0;
}

.oz-hp-ruimtes-wrap {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gap);
}

.oz-hp-ruimtes-row1 {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr;
  grid-template-rows: 320px;
  gap: 8px;
}

.oz-hp-ruimtes-row2 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 200px;
  gap: 8px;
  margin-top: 8px;
}

.oz-hp-ruimtes-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  text-decoration: none;
}

.oz-hp-ruimtes-card-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--oz-t-slow) var(--oz-ease);
}

.oz-hp-ruimtes-card:hover .oz-hp-ruimtes-card-img {
  transform: scale(1.06);
}

.oz-hp-ruimtes-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.65) 0%, rgba(0,0,0,.2) 40%, rgba(0,0,0,.05) 100%);
  transition: background var(--oz-t-med);
  z-index: 1;
}

.oz-hp-ruimtes-card:hover::after {
  background: linear-gradient(to top, rgba(0,0,0,.7) 0%, rgba(0,0,0,.15) 50%, rgba(0,0,0,0) 100%);
}

.oz-hp-ruimtes-card-content { position: relative; z-index: 2; padding: 24px; color: #FFF; }
.oz-hp-ruimtes-card-name { font-family: var(--oz-ff-heading); font-size: 20px; font-weight: 400; }
.oz-hp-ruimtes-card-desc { font-size: 12px; color: rgba(255,255,255,.85); line-height: 1.5; margin-top: 8px; max-width: 260px; }

.oz-hp-ruimtes-card-cta {
  display: inline-block;
  margin-top: 12px;
  padding: 8px 16px;
  background: var(--teal);
  color: #FFF;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.5px;
  border-radius: 4px;
  text-decoration: none;
  transition: background var(--oz-t-fast);
}
.oz-hp-ruimtes-card-cta:hover { background: var(--teal-hover); color: #FFF; }

.oz-hp-ruimtes-card--compact .oz-hp-ruimtes-card-name { font-size: 18px; }
.oz-hp-ruimtes-card--compact .oz-hp-ruimtes-card-content { padding: 16px; }

/* ================================================================
   S05-S07 — PRODUCT SHOWCASES (alternating layout)
   ================================================================ */
.oz-hp-product {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gap);
}

.oz-hp-product + .oz-hp-product { margin-top: 80px; }

.oz-hp-product--reverse .oz-hp-product-visual { order: 2; }
.oz-hp-product--reverse .oz-hp-product-info  { order: 1; }

.oz-hp-product-visual {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--sand);
}

.oz-hp-product-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Product box renders: centered on clean background, no forced cover fill */
.oz-hp-product-visual--box {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px;
  aspect-ratio: auto;
  min-height: 320px;
}

.oz-hp-product-visual--box img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 340px;
  object-fit: contain;
  filter: drop-shadow(0 16px 40px rgba(0,0,0,.12));
}

.oz-hp-product-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 8px;
}

.oz-hp-product-name {
  font-family: var(--oz-ff-heading);
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 400;
  color: var(--charcoal);
  margin: 0 0 4px;
}

.oz-hp-product-rating {
  font-size: 12px;
  color: var(--teal);
  margin-bottom: 16px;
}

.oz-hp-product-features {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
}

.oz-hp-product-features li {
  position: relative;
  padding-left: 20px;
  font-size: 14px;
  line-height: 1.7;
  color: var(--text);
}

.oz-hp-product-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--teal);
  opacity: .4;
}

.oz-hp-product-price {
  font-family: var(--oz-ff-heading);
  font-size: 28px;
  color: var(--teal);
  margin-bottom: 20px;
}

.oz-hp-product-price span {
  font-family: var(--oz-ff-body);
  font-size: 13px;
  color: var(--text-light);
}

/* ================================================================
   S04 — PRODUCT LINES (3-col card grid)
   ================================================================ */
.oz-hp-section-intro {
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  max-width: 560px;
  margin: 12px auto 0;
}

.oz-hp-products-3col {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gap);
}

.oz-hp-pcard {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: var(--white);
  border: 1px solid var(--stone);
  border-radius: 8px;
  padding: 32px 24px;
  transition: transform var(--oz-t-fast) var(--oz-ease), box-shadow var(--oz-t-fast);
}

.oz-hp-pcard:hover {
  transform: translateY(-3px);
  box-shadow: var(--oz-shadow-lg, 0 10px 40px rgba(0,0,0,0.08));
}

.oz-hp-pcard-img-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 200px;
  margin-bottom: 20px;
}

.oz-hp-pcard-img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 12px 30px rgba(0,0,0,.1));
}

.oz-hp-pcard-name {
  font-family: var(--oz-ff-heading);
  font-size: 20px;
  font-weight: 400;
  color: var(--charcoal);
  margin: 0 0 4px;
}

.oz-hp-pcard-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 12px;
}

.oz-hp-pcard-rating {
  font-size: 12px;
  color: var(--teal);
  text-align: center;
  margin: 0 0 16px;
  padding: 8px 0;
  border-top: 1px solid rgba(19, 83, 80, 0.15);
  border-bottom: 1px solid rgba(19, 83, 80, 0.15);
  width: 100%;
  letter-spacing: 0.3px;
}

.oz-hp-pcard-features {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
  text-align: left;
  width: 100%;
}

.oz-hp-pcard-features li {
  position: relative;
  padding-left: 20px;
  font-size: 13px;
  line-height: 1.7;
  color: var(--text);
}

.oz-hp-pcard-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--teal);
  opacity: .45;
}

.oz-hp-pcard-price {
  font-family: var(--oz-ff-body);
  font-size: 14px;
  color: var(--text);
  margin-bottom: 20px;
}

.oz-hp-pcard-price strong {
  font-family: var(--oz-ff-heading);
  font-size: 20px;
  color: var(--teal);
  font-weight: 400;
  margin-right: 4px;
}

/* 3-card uitbreidingen (tagline/usps/price-center) — verhuisd uit de
   oz-pcard-extended mu-plugin (2026-06-11) zodat het theme self-contained
   deploybaar is naar productie (prod heeft die mu-plugin niet). */
.oz-hp-pcard-tagline {
  text-align: center;
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--oz-accent, #135350);
  text-transform: uppercase;
  margin: 4px 0 16px;
  font-weight: 600;
}
.oz-hp-pcard-usps {
  list-style: disc;
  margin: 0 0 20px 20px;
  padding: 0;
  color: var(--oz-text-body, #555);
  font-size: 14px;
  line-height: 1.7;
}
.oz-hp-pcard-usps li {
  margin-bottom: 2px;
}
/* Center/bold override op de basis-prijsregels hierboven (3-card layout). */
.oz-hp-pcard-price {
  text-align: center;
  font-size: 14px;
  color: var(--oz-accent, #135350);
  margin: 16px 0 20px;
}
.oz-hp-pcard-price strong {
  font-size: 20px;
  font-weight: 700;
}

/* ================================================================
   S07b — ZO WERKT HET (4 steps)
   ================================================================ */
.oz-hp-steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gap);
}

.oz-hp-step {
  text-align: center;
  padding: 32px 20px;
  background: var(--white);
  border: 1px solid var(--stone);
  border-radius: 4px;
  transition: border-color var(--oz-t-med), box-shadow var(--oz-t-med);
}

.oz-hp-step:hover {
  border-color: var(--teal);
  box-shadow: var(--oz-shadow-card);
}

.oz-hp-step-num {
  font-family: var(--oz-ff-heading);
  font-size: 40px;
  color: var(--teal);
  opacity: .2;
  line-height: 1;
  margin-bottom: 12px;
}

.oz-hp-step-title {
  font-family: var(--oz-ff-heading);
  font-size: 18px;
  color: var(--charcoal);
  margin-bottom: 8px;
}

.oz-hp-step-desc {
  font-size: 13px;
  line-height: 1.6;
  color: var(--text-light);
}

/* ================================================================
   S07c — BEFORE / AFTER
   ================================================================ */
.oz-hp-ba-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  /* Bumped from 800px so the photos feel impactful on large screens too. */
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--gap);
}

.oz-hp-ba-card {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: 4px;
}

.oz-hp-ba-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.oz-hp-ba-label {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 4px 12px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: 4px;
}

.oz-hp-ba-label--before { background: rgba(0,0,0,.5); color: #FFF; }
.oz-hp-ba-label--after  { background: var(--teal); color: #FFF; }

.oz-hp-ba-quote {
  text-align: center;
  max-width: 560px;
  margin: 28px auto 0;
  padding: 0 var(--gap);
}

.oz-hp-ba-quote p {
  font-family: var(--oz-ff-heading);
  font-size: 18px;
  font-style: italic;
  color: var(--charcoal);
  margin: 0 0 8px;
}

.oz-hp-ba-quote cite {
  font-size: 12px;
  font-style: normal;
  font-weight: 600;
  color: var(--text-light);
}

/* ================================================================
   S08 — MICROCEMENT + KLEURSTALEN SPLIT
   ================================================================ */
/* Full-bleed backgrounds: colors touch viewport edges, content stays boxed */
.oz-hp-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 400px;
}

.oz-hp-split-micro {
  background: var(--charcoal);
  color: var(--white);
  padding: 60px 48px 60px max(48px, calc((100vw - var(--max-w)) / 2 + 48px));
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.oz-hp-split-micro .oz-hp-eyebrow { color: rgba(255,255,255,.4); }
.oz-hp-split-micro .oz-hp-eyebrow::before,
.oz-hp-split-micro .oz-hp-eyebrow::after { background: rgba(255,255,255,.1); }

.oz-hp-split-micro h3 {
  font-family: var(--oz-ff-heading);
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 400;
  color: var(--white);
  margin: 8px 0 16px;
}

.oz-hp-split-micro p {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255,255,255,.5);
  margin-bottom: 20px;
  max-width: 360px;
}

.oz-hp-split-micro .oz-hp-meta {
  font-size: 11px;
  color: rgba(255,255,255,.3);
  margin-bottom: 24px;
}

.oz-hp-split-stalen {
  background: var(--teal-mist);
  padding: 60px max(48px, calc((100vw - var(--max-w)) / 2 + 48px)) 60px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.oz-hp-split-stalen .oz-hp-eyebrow { color: var(--teal); }

.oz-hp-split-stalen h3 {
  font-family: var(--oz-ff-heading);
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 400;
  color: var(--teal);
  margin: 8px 0 16px;
}

.oz-hp-split-stalen p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--teal-dark);
  margin-bottom: 20px;
  max-width: 360px;
}

.oz-hp-split-stalen .oz-hp-meta {
  font-size: 11px;
  color: var(--teal);
  opacity: .6;
  margin-bottom: 24px;
}

/* --- Info variant: used on ruimte page tail blocks where the right
       half holds richer SEO content (h2 + intro + 2 lists + CTA) ---- */
.oz-hp-split-stalen--info {
  padding-top: 48px;
  padding-bottom: 48px;
}
.oz-hp-split-stalen--info h2 {
  font-family: var(--oz-ff-heading);
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 400;
  color: var(--teal);
  margin: 8px 0 12px;
  line-height: 1.2;
}
.oz-hp-split-stalen--info p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--teal-dark);
  margin: 0 0 24px;
  max-width: 460px;
}
.oz-hp-split-stalen--info h3 {
  font-family: var(--oz-ff-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: var(--teal);
  margin: 0 0 8px;
}
.oz-hp-split-stalen--info ul {
  list-style: none;
  margin: 0 0 16px;
  padding: 0;
}
.oz-hp-split-stalen--info li {
  position: relative;
  font-size: 14px;
  line-height: 1.5;
  color: var(--teal-dark);
  padding: 4px 0 4px 24px;
}
/* CSS-drawn check (not a glyph) — small two-stroke tick in teal. */
.oz-hp-split-stalen--info li::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 9px;
  width: 9px;
  height: 5px;
  border-left: 1.5px solid var(--teal);
  border-bottom: 1.5px solid var(--teal);
  transform: rotate(-45deg);
  transform-origin: 0 100%;
}
.oz-hp-split-stalen--info ul + h3 {
  margin-top: 4px;
}
.oz-hp-split-stalen--info .oz-hp-btn {
  align-self: flex-start;
  margin-top: 8px;
}

/* ================================================================
   S09 — VERGELIJKTABEL
   ================================================================ */
.oz-hp-table-wrap {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gap);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.oz-hp-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
  min-width: 700px;
}

.oz-hp-table th,
.oz-hp-table td {
  padding: 12px 16px;
  text-align: center;
  border-bottom: 1px solid var(--stone);
}

.oz-hp-table th {
  font-family: var(--oz-ff-heading);
  font-size: 14px;
  font-weight: 400;
  color: var(--charcoal);
  background: var(--sand);
  position: sticky;
  top: 0;
}

.oz-hp-table th:first-child,
.oz-hp-table td:first-child {
  text-align: left;
  font-weight: 600;
  color: var(--charcoal);
  position: sticky;
  left: 0;
  background: var(--white);
  z-index: 1;
}

.oz-hp-table th:first-child { background: var(--sand); z-index: 2; }

.oz-hp-table tbody tr:hover td { background: var(--sand); }

/* S10 — REVIEWS: styles live in oz-reviews.css (shared with ruimte pages) */

/* ================================================================
   S11 — SHOWROOM
   ================================================================ */
.oz-hp-showroom {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gap);
}

.oz-hp-showroom-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  /* 16px — was 8px; geharmoniseerd met de spacing-scale (8/16/24) van de rest */
  gap: 16px;
}

.oz-hp-showroom-img {
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 4/3;
}

.oz-hp-showroom-img--tall { grid-row: 1 / 3; aspect-ratio: 3/4; }

.oz-hp-showroom-img img { width: 100%; height: 100%; object-fit: cover; }

.oz-hp-showroom-text h3 {
  font-family: var(--oz-ff-heading);
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 400;
  color: var(--charcoal);
  margin: 0 0 16px;
}

.oz-hp-showroom-text p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text);
  margin-bottom: 24px;
}

/* ================================================================
   S12-S13, S16-S19, S21 — SEO TEXT SECTIONS
   ================================================================ */
.oz-hp-text-block {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 var(--gap);
}

.oz-hp-text-block h2,
.oz-hp-text-block h3 {
  font-family: var(--oz-ff-heading);
  font-weight: 400;
  color: var(--charcoal);
  margin: 0 0 16px;
}

.oz-hp-text-block h2 { font-size: clamp(22px, 3vw, 30px); }
.oz-hp-text-block h3 { font-size: clamp(18px, 2.5vw, 24px); }

.oz-hp-text-block p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text);
  margin: 0 0 16px;
}

.oz-hp-text-block p:last-child { margin-bottom: 0; }

/* ================================================================
   S14 — POPULAR PRODUCTS CAROUSEL
   ================================================================ */
.oz-hp-carousel-track {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gap) 16px;
}

.oz-hp-carousel-track::-webkit-scrollbar { display: none; }

.oz-hp-carousel-card {
  flex: 0 0 260px;
  scroll-snap-align: start;
  background: var(--white);
  border: 1px solid var(--stone);
  border-radius: 4px;
  overflow: hidden;
  text-decoration: none;
  transition: border-color var(--oz-t-med), box-shadow var(--oz-t-med);
}

.oz-hp-carousel-card:hover {
  border-color: var(--teal);
  box-shadow: var(--oz-shadow-card);
}

.oz-hp-carousel-card-img {
  aspect-ratio: 1;
  background: var(--sand);
  overflow: hidden;
}

.oz-hp-carousel-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--oz-t-med);
}

.oz-hp-carousel-card:hover .oz-hp-carousel-card-img img { transform: scale(1.05); }

.oz-hp-carousel-card-body {
  padding: 16px;
}

.oz-hp-carousel-card-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 4px;
}

.oz-hp-carousel-card-price {
  font-family: var(--oz-ff-heading);
  font-size: 18px;
  color: var(--teal);
}

/* ================================================================
   S14 — MEER WETEN (alternating image/text rows with "Lees meer")
   ================================================================ */
.oz-hp-learn-list {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gap);
  display: flex;
  flex-direction: column;
  gap: 80px;
}

.oz-hp-learn-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.oz-hp-learn-row--img-right .oz-hp-learn-media { order: 2; }

.oz-hp-learn-row--full {
  grid-template-columns: 7fr 3fr;
  gap: 0;
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: 0;
  background: var(--teal-mist);
  border-radius: 0;
  align-items: stretch;
}

.oz-hp-learn-row--full .oz-hp-learn-text {
  padding-top: 80px;
  padding-bottom: 80px;
  padding-right: 80px;
  padding-left: max(20px, calc((100vw - 1100px) / 2 + 20px));
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.oz-hp-learn-row--full .oz-hp-learn-title {
  max-width: 640px;
  margin: 0 0 24px;
}

.oz-hp-learn-row--full .oz-hp-learn-body {
  max-width: 640px;
}

.oz-hp-learn-row--full .oz-hp-learn-media {
  order: 2;
  position: relative;
  overflow: hidden;
  min-height: 0;
}

.oz-hp-learn-row--full .oz-hp-learn-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
  border-radius: 0;
  object-fit: cover;
  display: block;
}

.oz-hp-learn-row--full .oz-hp-tip {
  background: #FFF;
  border-left: 3px solid var(--teal);
}

.oz-hp-learn-media img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 16px;
}

.oz-hp-learn-title {
  font-family: var(--oz-ff-heading);
  font-size: clamp(24px, 2.6vw, 32px);
  font-weight: 400;
  line-height: 1.3;
  /* 24px overal — was 18px hier en 24px in de --full variant (inconsistent) */
  margin: 0 0 24px;
  color: var(--charcoal);
}

.oz-hp-learn-body p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  margin: 0;
}

.oz-hp-learn-body p + p,
.oz-hp-learn-body p + ul,
.oz-hp-learn-body ul + p { margin-top: 16px; }

.oz-hp-learn-more {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--oz-t-slow) ease, margin-top var(--oz-t-med);
}

.oz-hp-learn-row.is-open .oz-hp-learn-more {
  max-height: 2000px;
  margin-top: 16px;
}

.oz-hp-learn-bullets {
  list-style: none;
  padding: 0;
  margin: 0;
}

.oz-hp-learn-bullets li {
  position: relative;
  padding-left: 20px;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
}

.oz-hp-learn-bullets li + li { margin-top: 12px; }

.oz-hp-learn-bullets li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 11px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--teal);
  opacity: .55;
}

.oz-hp-learn-body .oz-hp-link {
  color: var(--teal);
  text-decoration: none;
  font-weight: 600;
  border-bottom: 1px solid currentColor;
  padding-bottom: 1px;
}

.oz-hp-learn-body .oz-hp-link:hover { color: var(--teal-hover); }

.oz-hp-learn-body .oz-hp-tip {
  background: rgba(32, 135, 129, 0.06);
  border-left: 3px solid var(--teal);
  padding: 16px;
  border-radius: 4px;
  font-size: 16px;
  line-height: 1.6;
}

.oz-hp-learn-body .oz-hp-btn { display: inline-block; margin-top: 4px; }

.oz-hp-learn-toggle {
  margin-top: 20px;
  padding: 0;
  background: none;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--teal);
  font-family: var(--oz-ff-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.oz-hp-learn-toggle:hover { color: var(--teal-dark); }

.oz-hp-learn-toggle-icon {
  width: 12px;
  height: 12px;
  position: relative;
}

.oz-hp-learn-toggle-icon::before,
.oz-hp-learn-toggle-icon::after {
  content: '';
  position: absolute;
  background: currentColor;
}

.oz-hp-learn-toggle-icon::before {
  width: 100%;
  height: 2px;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.oz-hp-learn-toggle-icon::after {
  width: 2px;
  height: 100%;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  transition: transform var(--oz-t-med);
}

.oz-hp-learn-row.is-open .oz-hp-learn-toggle-icon::after {
  transform: translateX(-50%) scaleY(0);
}

/* ================================================================
   S13 — BELANGRIJKSTE PUNTEN (3 TL;DR bullets)
   ================================================================ */
.oz-hp-keypoints-list {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: var(--max-w);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.oz-hp-keypoints-list li {
  background: var(--teal-mist);
  border-radius: 16px;
  padding: 32px;
  font-size: 16px;
  line-height: 1.6;
  color: var(--charcoal);
}

.oz-hp-keypoints-list strong {
  display: block;
  font-weight: 700;
  font-size: 18px;
  color: var(--teal);
  margin-bottom: 8px;
}

/* ================================================================
   S20 — INSPIRATIE (asymmetric grid)
   ================================================================ */
.oz-hp-inspo-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 8px;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gap);
  min-height: 400px;
}

.oz-hp-inspo-main { grid-row: 1 / 3; }

.oz-hp-inspo-card {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
}

.oz-hp-inspo-card img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--oz-t-slow); }
.oz-hp-inspo-card:hover img { transform: scale(1.04); }

/* ================================================================
   S21 — BELANGRIJKSTE PUNTEN (split: text + image)
   ================================================================ */
.oz-hp-points {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gap);
}

.oz-hp-points-img {
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 4/3;
}

.oz-hp-points-img img { width: 100%; height: 100%; object-fit: cover; }

/* ================================================================
   S22 — RUIMTE-TOEPASSINGEN (4 text blocks)
   ================================================================ */
.oz-hp-ruimte-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gap);
}

.oz-hp-ruimte-item {
  background: var(--sand);
  padding: 32px;
  border-radius: 4px;
}

.oz-hp-ruimte-item h3 {
  font-family: var(--oz-ff-heading);
  font-size: 18px;
  font-weight: 400;
  color: var(--charcoal);
  margin: 0 0 12px;
}

.oz-hp-ruimte-item p {
  font-size: 13px;
  line-height: 1.6;
  color: var(--text);
  margin: 0;
}

/* ================================================================
   S24 — KENNISBANK (horizontal scrollable carousel)
   NOTE: scroll-behavior: smooth was removed from .oz-hp-kb-carousel
   because it triggered Chromium's NO_LCP bug (LCP scanner waited on
   smooth-scroll machinery at load). Per-button smooth scroll is
   handled in JS via scrollBy({ behavior: 'smooth' }); touch/wheel
   drag falls back to native-instant (preferred UX).
   ================================================================ */
.oz-hp-kb-wrap {
  position: relative;
  max-width: calc(var(--max-w) + 120px);
  margin: 0 auto;
  padding: 0 0 0 20px;
}

.oz-hp-kb-carousel {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding: 0 var(--gap) 16px;
  max-width: calc(var(--max-w) + var(--gap) * 2);
  margin: 0 auto;
  scrollbar-width: none;
}

.oz-hp-kb-carousel::-webkit-scrollbar { display: none; }

.oz-hp-kb-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--stone);
  background: #fff;
  color: var(--teal);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--oz-shadow-card);
  transition: background var(--oz-t-fast), color var(--oz-t-fast), transform var(--oz-t-fast), opacity var(--oz-t-fast);
}

.oz-hp-kb-nav:hover {
  background: var(--teal);
  color: #fff;
}

.oz-hp-kb-nav:disabled {
  opacity: 0.35;
  cursor: default;
}

.oz-hp-kb-nav:disabled:hover {
  background: #fff;
  color: var(--teal);
}

.oz-hp-kb-nav svg {
  width: 22px;
  height: 22px;
}

.oz-hp-kb-nav--prev { left: 0; }
.oz-hp-kb-nav--next { right: 0; }

.oz-hp-kb-card {
  flex: 0 0 300px;
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--stone);
  border-radius: 8px;
  overflow: hidden;
  text-decoration: none;
  transition: border-color var(--oz-t-med), box-shadow var(--oz-t-med), transform var(--oz-t-fast);
}

.oz-hp-kb-card:hover {
  border-color: var(--teal);
  box-shadow: var(--oz-shadow-card);
  transform: translateY(-3px);
}

.oz-hp-kb-card-img {
  aspect-ratio: 16/10;
  overflow: hidden;
  background: var(--sand);
}

.oz-hp-kb-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--oz-t-med);
}

.oz-hp-kb-card:hover .oz-hp-kb-card-img img {
  transform: scale(1.04);
}

.oz-hp-kb-card-body {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.oz-hp-kb-card-title {
  font-family: var(--oz-ff-heading);
  font-size: 16px;
  font-weight: 400;
  color: var(--charcoal);
  margin-bottom: 8px;
  line-height: 1.3;
}

.oz-hp-kb-card-excerpt {
  font-size: 13px;
  line-height: 1.6;
  color: var(--text-light);
  flex: 1;
}

.oz-hp-kb-card-link {
  display: inline-block;
  margin-top: 12px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--teal);
  text-transform: uppercase;
  transition: gap var(--oz-t-fast);
}

@media (max-width: 880px) {
  .oz-hp-kb-nav { display: none; }
}

/* ================================================================
   S25 — FAQ (accordion)
   ================================================================ */
.oz-hp-faq-list {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 var(--gap);
}

.oz-hp-faq-item {
  border-bottom: 1px solid var(--stone);
}

.oz-hp-faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 20px 0;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--oz-ff-body);
  font-size: 16px;
  font-weight: 600;
  color: var(--charcoal);
  text-align: left;
  gap: 16px;
}

.oz-hp-faq-q:hover { color: var(--teal); }

.oz-hp-faq-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  position: relative;
}

.oz-hp-faq-icon::before,
.oz-hp-faq-icon::after {
  content: '';
  position: absolute;
  background: currentColor;
  transition: transform var(--oz-t-med);
}

.oz-hp-faq-icon::before { width: 100%; height: 2px; top: 50%; transform: translateY(-50%); }
.oz-hp-faq-icon::after  { width: 2px; height: 100%; left: 50%; transform: translateX(-50%); }

.oz-hp-faq-item.is-open .oz-hp-faq-icon::after { transform: translateX(-50%) scaleY(0); }

.oz-hp-faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease, padding .4s;
}

.oz-hp-faq-item.is-open .oz-hp-faq-a {
  max-height: 1500px;
  padding-bottom: 20px;
}

.oz-hp-faq-a p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text);
  margin: 0;
}

/* Rich-content support for S14 Meer weten accordion */
.oz-hp-faq-a p + p,
.oz-hp-faq-a p + ul,
.oz-hp-faq-a ul + p { margin-top: 12px; }

.oz-hp-faq-bullets {
  list-style: none;
  padding: 0;
  margin: 0;
}

.oz-hp-faq-bullets li {
  position: relative;
  padding-left: 20px;
  font-size: 14px;
  line-height: 1.7;
  color: var(--text);
}

.oz-hp-faq-bullets li + li { margin-top: 8px; }

.oz-hp-faq-bullets li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 11px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--teal);
  opacity: .55;
}

.oz-hp-faq-a .oz-hp-link {
  color: var(--teal);
  text-decoration: none;
  font-weight: 600;
  border-bottom: 1px solid currentColor;
  padding-bottom: 1px;
}

.oz-hp-faq-a .oz-hp-link:hover { color: var(--teal-hover); }

.oz-hp-tip {
  background: rgba(32, 135, 129, 0.06);
  border-left: 3px solid var(--teal);
  padding: 16px;
  border-radius: 4px;
}

.oz-hp-faq-a .oz-hp-btn { margin-top: 4px; }

/* ================================================================
   RESPONSIVE
   ================================================================ */

/* Hero grid collapses to single column, glass card hidden */
@media (max-width: 1024px) {
  /* Mobiel/tablet: hero stapelt (foto boven, tekst onder). Volledige foto, geen crop. */
  .oz-hp-hero { grid-template-columns: 1fr; grid-template-rows: auto auto; height: auto; gap: 24px; padding: 20px 24px 32px; }
  .oz-hp-hero-bg { grid-column: 1; grid-row: 1; width: 100%; height: auto; object-fit: contain; }
  .oz-hp-hero-inner { grid-column: 1; grid-row: 2; padding: 0; align-items: flex-start; }
  .oz-hp-hero-text { max-width: none; }
  .oz-hp-hero-glass { display: none; }
  .oz-hp-hero-ctas { justify-content: flex-start; }
}

@media (max-width: 880px) {
  .oz-hp-learn-list { gap: 64px; }
  .oz-hp-learn-row {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .oz-hp-learn-row--img-right .oz-hp-learn-media { order: 0; }
  .oz-hp-learn-media img { aspect-ratio: 16 / 10; }
  .oz-hp-learn-title { margin-bottom: 12px; }
  .oz-hp-learn-row--full {
    display: block;
    position: relative;
    min-height: 460px;
    padding: 0;
    background: var(--teal);
  }
  .oz-hp-learn-row--full .oz-hp-learn-media {
    position: absolute;
    inset: 0;
    order: 0;
    min-height: 0;
    height: 100%;
  }
  .oz-hp-learn-row--full .oz-hp-learn-media img {
    width: 100%;
    height: 100%;
    aspect-ratio: auto;
    object-fit: cover;
  }
  .oz-hp-learn-row--full .oz-hp-learn-text {
    position: relative;
    z-index: 2;
    margin: 32px 20px;
    padding: 32px 24px;
    background: rgba(19, 83, 80, 0.72);
    backdrop-filter: blur(14px) saturate(140%);
    -webkit-backdrop-filter: blur(14px) saturate(140%);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 16px;
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.28);
  }
  .oz-hp-learn-row--full .oz-hp-learn-title,
  .oz-hp-learn-row--full .oz-hp-learn-body,
  .oz-hp-learn-row--full .oz-hp-learn-body p { color: #FFF; }
  .oz-hp-learn-row--full .oz-hp-tip {
    background: rgba(255, 255, 255, 0.12);
    border-left-color: #FFF;
    color: #FFF;
  }
  .oz-hp-learn-row--full .oz-hp-btn--teal {
    background: #FFF;
    color: var(--teal);
  }
  .oz-hp-learn-row--full .oz-hp-btn--teal:hover {
    background: var(--teal-mist);
    color: var(--teal);
  }

  .oz-hp-keypoints-list {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .oz-hp-keypoints-list li { padding: 24px 20px; }
}

@media (max-width: 800px) {
  .oz-hp-section { padding: 48px 0; }

  .oz-hp-hero-bg { object-position: center 55%; }

  .oz-hp-ruimtes-eyebrow::before,
  .oz-hp-ruimtes-eyebrow::after,
  .oz-hp-eyebrow::before,
  .oz-hp-eyebrow::after { display: none; }

  .oz-hp-ruimtes-row1 { grid-template-columns: 1fr 1fr; grid-template-rows: 260px 260px; }
  .oz-hp-ruimtes-row1 .oz-hp-ruimtes-card:first-child { grid-column: 1 / -1; }
  /* Row2 compact cards: source-foto's zijn portrait (450x600 / 450x656, ratio ~0.69-0.75).
     Vaste 180px-hoogte maakte een near-square container die het onderwerp (vloer onder,
     wand opzij) wegcroppe. Auto-rij + 3/4 aspect-ratio op de cards laat de portrait
     foto's natuurlijk dekken — center center cropt nu minimaal en toont het onderwerp. */
  .oz-hp-ruimtes-row2 { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .oz-hp-ruimtes-row2 .oz-hp-ruimtes-card--compact { aspect-ratio: 3 / 4; }

  .oz-hp-product { grid-template-columns: 1fr; gap: 24px; }
  .oz-hp-product--reverse .oz-hp-product-visual { order: 0; }
  .oz-hp-product + .oz-hp-product { margin-top: 64px; }

  .oz-hp-steps-grid { grid-template-columns: 1fr 1fr; }
  .oz-hp-products-3col { grid-template-columns: 1fr 1fr; gap: 24px; }
  .oz-hp-ba-grid { grid-template-columns: 1fr; }

  .oz-hp-split { grid-template-columns: 1fr; }
  .oz-hp-split-micro,
  .oz-hp-split-stalen { padding: 40px 32px; }

  .oz-hp-showroom { grid-template-columns: 1fr; }
  .oz-hp-showroom-images { order: -1; }

  .oz-hp-inspo-grid { grid-template-columns: 1fr; grid-template-rows: 280px 180px 180px; }
  .oz-hp-inspo-main { grid-row: auto; }

  .oz-hp-ruimte-grid { grid-template-columns: 1fr; }
  .oz-hp-kb-carousel .oz-hp-kb-card { flex: 0 0 260px; }

  .oz-hp-points { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .oz-hp-section { padding: 40px 0; }
  .oz-hp-section-header { margin-bottom: 32px; }

  .oz-hp-ruimtes-row1 { grid-template-columns: 1fr; grid-template-rows: auto; }
  .oz-hp-ruimtes-row1 .oz-hp-ruimtes-card { min-height: 240px; }
  .oz-hp-ruimtes-row1 .oz-hp-ruimtes-card:first-child { grid-column: 1; }

  .oz-hp-steps-grid { grid-template-columns: 1fr; }
  .oz-hp-products-3col { grid-template-columns: 1fr; }
  .oz-hp-carousel-card { flex: 0 0 220px; }
}

/* Scroll reveal + stagger rules live in homepage-v2-animations.css
   so they can be toggled independently via ?nocss=oz-homepage-v2-animations. */


/* === Stalen aanvragen als button (2026-06-02) === */
.oz-hp-hero-glass-link{
  display:inline-flex !important;
  align-items:center;
  gap:8px;
  background:var(--oz-cta) !important;
  color:#fff !important;
  padding: 12px 24px !important;
  border-radius:var(--oz-radius, 8px) !important;
  font-family:var(--oz-ff-body);
  font-weight:600 !important;
  text-decoration:none !important;
  width:auto;
  margin-top:4px;
  transition:background .2s ease;
}
.oz-hp-hero-glass-link:hover{ background: var(--oz-btn-cta-bg-hover) !important; }


/* === Trust-badge "Geen ervaring nodig" prominenter (2026-06-02) === */
.oz-hp-hero-badge{
  display:inline-flex !important;
  align-items:center;
  gap:8px;
  width:auto;
  align-self:flex-start;
  background:transparent !important;
  border:none !important;
  padding:0 !important;
  border-radius:0;
  box-shadow:none;
}
.oz-hp-hero-badge span{
  font-size:14px !important;
  font-weight:600;
  letter-spacing:.2px;
  color:var(--oz-text-body);
}
.oz-hp-hero-badge svg{
  stroke:var(--oz-accent) !important;
  width:16px !important;
  height:16px !important;
}


/* Hero leesbaarheids-paneel verwijderd 2026-06-07 — schone tekst op de scrim i.p.v. donker kader. */


/* Glas-kaart op de foto: lichte tekst op de frosted glass. */
.oz-hp-hero .oz-hp-hero-glass .oz-hp-hero-glass-title{ color: #fff !important; }
.oz-hp-hero .oz-hp-hero-glass .oz-hp-hero-glass-desc{ color: rgba(255,255,255,0.88) !important; }
.oz-hp-hero .oz-hp-hero-glass .oz-hp-eyebrow{ color: rgba(255,255,255,0.72) !important; }


/* === Hero-tekst schaduw subtieler (2026-06-03) === */
.oz-hp-hero .oz-hp-hero-title,
.oz-hp-hero .oz-hp-hero-title-tag,
.oz-hp-hero .oz-hp-hero-sub,
.oz-hp-hero .oz-hp-hero-desc,
.oz-hp-hero .oz-hp-hero-badge,
.oz-hp-hero .oz-hp-hero-badge span{
  text-shadow: none !important;
}


/* Desktop-fade verwijderd 2026-06-07 — scrim zit nu in .oz-hp-hero::after (alle viewports). */


/* Hero compacter-paneel verwijderd 2026-06-07 — vaste schone schaal in de hoofd-hero regels. */
