/* =============================================================
   UWHOND.BE — herbouwde stijl, fase 3
   Foto's, hover-interactie, scroll-reveal, sectie-ritme
   ============================================================= */

/* ===== RESET ============================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 17px; scroll-behavior: smooth; }
body {
  font-family: 'Nunito', sans-serif;
  background: #FDF8F2;
  color: #3D2B1F;
  line-height: 1.78;
}
img { max-width: 100%; height: auto; display: block; }
a { color: #A0522D; text-decoration: none; }
a:hover { text-decoration: underline; }

/* ===== TOKENS ============================================ */
:root {
  --s1:  8px;
  --s2:  16px;
  --s3:  24px;
  --s4:  48px;
  --s5:  80px;

  --cream:      #FDF8F2;
  --cream-mid:  #F5EDE0;
  --cream-warm: #FEF4E8;
  --terra:      #C1694F;
  --terra-dk:   #944132;
  --brown:      #5C3317;
  --brown-lt:   #8B5E3C;
  --text:       #3D2B1F;
  --text-lt:    #6B4F3A;
  --border:     #DEC9AF;

  --r:    6px;
  --r-lg: 10px;

  --shadow:    0 2px 12px rgba(80, 40, 10, 0.09);
  --shadow-lg: 0 8px 28px rgba(80, 40, 10, 0.14);
}

/* ===== TYPOGRAFIE ======================================== */
h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  color: var(--brown);
  line-height: 1.25;
}
h1 { font-size: clamp(2rem, 5vw, 3rem);  font-weight: 700; }
h2 { font-size: clamp(1.45rem, 3vw, 2rem); font-weight: 700; margin-bottom: var(--s2); }
h3 { font-size: clamp(1.1rem, 2.2vw, 1.3rem); font-weight: 700; margin-bottom: var(--s1); }
h4 { font-size: 1rem; font-weight: 700; margin-bottom: var(--s1); }
p  { margin-bottom: var(--s2); }
ul, ol { margin: 0 0 var(--s2) var(--s3); }
li { margin-bottom: var(--s1); }
strong { color: var(--brown); }

/* ===== CONTAINERS ======================================== */
.container {
  max-width: 700px;
  margin: 0 auto;
  padding: 0 var(--s3);
}
.container--wide {
  max-width: 1060px;
  margin: 0 auto;
  padding: 0 var(--s3);
}

/* ===== HEADER ============================================ */
.site-header {
  background: #fff;
  border-bottom: 1px solid var(--cream-mid);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 1px 6px rgba(80, 40, 10, 0.07);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s2);
  padding: var(--s2) var(--s3);
  max-width: 1060px;
  margin: 0 auto;
}

/* LOGO */
.site-logo { display: flex; align-items: center; gap: var(--s1); text-decoration: none; }
.site-logo__svg { color: var(--terra); flex-shrink: 0; }
.site-logo__text { font-family: 'Playfair Display', serif; font-size: 1.25rem; font-weight: 700; color: var(--brown); }
.site-logo__text span { color: var(--terra); }

/* NAV */
.site-nav { display: flex; align-items: center; gap: 4px; }
.site-nav a {
  padding: 6px 14px;
  border-radius: var(--r);
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--text-lt);
  transition: background 0.15s;
}
.site-nav a:hover, .site-nav a.active { background: var(--cream-mid); color: var(--brown); text-decoration: none; }

.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 4px; color: var(--brown); }

/* ===== DISCLOSURE ======================================== */
.disclosure-bar {
  background: #FFFBEA;
  border-bottom: 1px solid #EDE0A0;
  padding: 10px var(--s3);
  font-size: 0.82rem;
  color: #6B5900;
  text-align: center;
  line-height: 1.55;
}
.disclosure-bar a { color: #6B5900; font-weight: 700; text-decoration: underline; }

/* ===== BREADCRUMB ======================================== */
.breadcrumb {
  display: flex;
  gap: 6px;
  align-items: center;
  flex-wrap: wrap;
  font-size: 0.8rem;
  color: var(--text-lt);
  padding: var(--s2) 0;
}
.breadcrumb a { color: var(--terra-dk); }
.breadcrumb .sep { color: var(--border); }

/* ===== ARTIKEL-HERO ====================================== */
.article-hero { padding-top: var(--s3); padding-bottom: var(--s2); }
.article-hero__meta {
  display: flex;
  align-items: center;
  gap: var(--s2);
  margin-bottom: var(--s2);
  font-size: 0.82rem;
  color: var(--text-lt);
  flex-wrap: wrap;
}
.article-hero__meta .tag {
  background: var(--cream-mid);
  border-radius: 20px;
  padding: 3px 12px;
  font-weight: 700;
  color: var(--terra-dk);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.article-hero__title { margin-bottom: var(--s3); }
.article-hero__intro {
  font-size: 1.05rem;
  color: var(--text-lt);
  border-left: 3px solid var(--terra);
  padding-left: var(--s2);
  margin-bottom: var(--s4);
  font-style: italic;
}

/* ===== FOTO-PLAATSEN ===================================== */
.photo-slot { margin: var(--s3) 0 var(--s4); }
.photo-slot__inner {
  width: 100%;
  min-height: 280px;
  background: var(--cream-mid);
  border: 2px dashed var(--border);
  border-radius: var(--r-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: var(--s1);
  color: var(--text-lt);
  font-size: 0.82rem;
  font-style: italic;
  cursor: default;
}
.photo-slot__inner::before { content: "📷"; font-size: 1.8rem; font-style: normal; opacity: 0.5; }
.photo-slot img {
  width: 100%;
  min-height: 280px;
  object-fit: cover;
  border-radius: var(--r-lg);
  display: block;
}
.photo-slot figcaption {
  font-size: 0.78rem;
  color: var(--text-lt);
  margin-top: 6px;
  font-style: italic;
  text-align: center;
}
.photo-slot--inline { float: right; width: 42%; margin: 0 0 var(--s3) var(--s3); }
.photo-slot--inline .photo-slot__inner { min-height: 180px; }

/* ===== ARTIKEL-BODY ====================================== */
.article-body { padding-bottom: var(--s5); }
.article-body > section { margin-bottom: var(--s5); }
.article-body h2 { border-bottom: 2px solid var(--cream-mid); padding-bottom: var(--s1); margin-bottom: var(--s3); }

.opinion {
  border-left: 3px solid var(--terra);
  padding: var(--s1) var(--s2);
  margin: var(--s3) 0;
  font-style: italic;
  color: var(--text-lt);
}
.opinion strong { font-style: normal; color: var(--terra-dk); }

.tip {
  border-left: 3px solid #5A9A5A;
  padding: var(--s1) var(--s2);
  margin: var(--s3) 0;
  font-size: 0.94rem;
  color: #2E4E2E;
}
.tip strong { color: #1C3A1C; }

/* ===== VERGELIJKINGSTABEL ================================ */
.compare-wrap { margin: var(--s4) 0; overflow-x: auto; -webkit-overflow-scrolling: touch; border-top: 2px solid var(--brown); }
.compare-table { width: 100%; border-collapse: collapse; font-size: 0.92rem; }
.compare-table thead th { padding: var(--s2); text-align: left; font-family: 'Playfair Display', serif; font-size: 0.95rem; background: var(--cream-mid); border-bottom: 1px solid var(--border); }
.compare-table thead .th-kussen { color: #1E6050; }
.compare-table thead .th-mand   { color: #7A3C00; }
.compare-table tbody tr:nth-child(even) td { background: #FAFAF7; }
.compare-table tbody td { padding: 10px var(--s2); border-bottom: 1px solid var(--border); vertical-align: top; }
.compare-table tbody td:first-child { font-weight: 700; color: var(--brown); min-width: 130px; }
.compare-table tbody td:nth-child(2) { color: #1E6050; }
.compare-table tbody td:nth-child(3) { color: #7A3C00; }
.compare-table tfoot td { padding: 8px var(--s2); font-size: 0.8rem; color: var(--text-lt); font-style: italic; border-top: 1px solid var(--border); }

/* ===== PRODUCTBLOK ======================================= */
.product-card {
  display: flex;
  gap: var(--s3);
  background: #fff;
  border: 1px solid var(--border);
  border-left: 4px solid var(--terra);
  border-radius: var(--r-lg);
  padding: var(--s3);
  margin: var(--s4) 0;
  box-shadow: var(--shadow);
  align-items: flex-start;
}
.product-card .photo-slot { flex-shrink: 0; width: 120px; margin: 0; }
.product-card .photo-slot--inline { float: none; width: 120px; }
.product-card .photo-slot__inner { min-height: 120px; border-radius: var(--r); font-size: 0; }
.product-card .photo-slot__inner::before { font-size: 1.4rem; }
.product-card__body { flex: 1; min-width: 0; }
.product-card__label { font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: var(--terra); margin-bottom: 4px; }
.product-card__name { font-family: 'Playfair Display', serif; font-size: 1.05rem; color: var(--brown); margin-bottom: var(--s1); }
.product-card__desc { font-size: 0.88rem; color: var(--text-lt); margin-bottom: var(--s2); line-height: 1.65; }
.product-card__price { font-size: 0.95rem; font-weight: 700; color: var(--terra-dk); margin-bottom: var(--s2); }
.product-card__price .price-note { font-size: 0.75rem; font-weight: 400; color: var(--text-lt); }
.stock-indicator { display: block; font-size: 0.78rem; font-weight: 700; min-height: 1.1rem; margin-bottom: var(--s1); }

.btn-bol {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--terra);
  color: #fff;
  border-radius: var(--r);
  padding: 8px 18px;
  font-weight: 700;
  font-size: 0.875rem;
  text-decoration: none;
  transition: background 0.15s, transform 0.12s;
}
.btn-bol:hover { background: var(--terra-dk); text-decoration: none; transform: translateY(-2px); }

/* ===== KEUZEHULP ========================================= */
.choose-section { background: var(--cream-warm); border-radius: var(--r-lg); padding: var(--s4) var(--s3); margin: var(--s4) 0; }
.choose-section h2 { border-bottom: none; margin-bottom: var(--s3); }
.choose-grid { display: grid; grid-template-columns: 10fr 11fr; gap: var(--s3); }
.choose-col__title { font-family: 'Playfair Display', serif; font-size: 1rem; font-weight: 700; margin-bottom: var(--s2); padding-bottom: var(--s1); border-bottom: 1px solid var(--border); }
.choose-col.kussen .choose-col__title { color: #1E6050; }
.choose-col.mand   .choose-col__title { color: #7A3C00; }
.choose-col ul { margin: 0; padding: 0; list-style: none; }
.choose-col li { padding: 5px 0 5px 22px; position: relative; font-size: 0.92rem; color: var(--text); }
.choose-col li::before { content: '—'; position: absolute; left: 0; color: var(--border); }
.choose-section .choose-footer { margin-top: var(--s3); padding-top: var(--s2); border-top: 1px solid var(--border); font-size: 0.9rem; color: var(--text-lt); font-style: italic; }

/* ===== FAQ =============================================== */
.faq-list { list-style: none; padding: 0; margin: 0; }
.faq-list details { border-bottom: 1px solid var(--border); padding: var(--s2) 0; }
.faq-list details:first-child { border-top: 1px solid var(--border); }
.faq-list summary { font-weight: 700; color: var(--brown); font-size: 0.97rem; cursor: pointer; list-style: none; padding-right: var(--s3); position: relative; user-select: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: '+'; position: absolute; right: 0; top: 0; font-size: 1.2rem; color: var(--terra); line-height: 1; transition: transform 0.2s; }
.faq-list details[open] summary::after { transform: rotate(45deg); }
.faq-list details > p, .faq-list details > div { margin-top: var(--s2); font-size: 0.94rem; color: var(--text-lt); }

/* ===== CONCLUSIE ========================================= */
.conclusion { border-top: 2px solid var(--brown); padding-top: var(--s3); margin-top: var(--s4); }
.conclusion .sign-off { margin-top: var(--s3); font-style: italic; color: var(--text-lt); font-size: 0.95rem; }

/* ===== AUTEUR-BLOK ======================================= */
.author-block {
  border-top: 1px solid var(--border);
  padding-top: var(--s4);
  margin-top: var(--s4);
  display: flex;
  gap: var(--s3);
  align-items: flex-start;
}
.author-photo {
  flex-shrink: 0;
  width: 72px; height: 72px;
  border-radius: 50%;
  background: var(--cream-mid);
  border: 2px solid var(--terra);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
}
.author-block__body {}
.author-block__name { font-family: 'Playfair Display', serif; font-size: 1rem; font-weight: 700; color: var(--brown); margin-bottom: 4px; }
.author-block__bio { font-size: 0.88rem; color: var(--text-lt); line-height: 1.65; margin-bottom: 0; }

/* ===== FOOTER ============================================ */
.site-footer { background: var(--brown); color: rgba(255,255,255,0.78); padding: var(--s4) 0 var(--s3); margin-top: var(--s5); }
.site-footer__grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: var(--s4); max-width: 1060px; margin: 0 auto; padding: 0 var(--s3); }
.footer-brand__name { font-family: 'Playfair Display', serif; font-size: 1.1rem; color: #fff; margin-bottom: var(--s1); display: flex; align-items: center; gap: 8px; }
.footer-brand__tagline { font-size: 0.85rem; line-height: 1.65; margin-bottom: 0; }
.footer-col h4 { color: #fff; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.07em; margin-bottom: var(--s2); }
.footer-col ul { list-style: none; margin: 0; padding: 0; }
.footer-col li { margin-bottom: var(--s1); }
.footer-col a { color: rgba(255,255,255,0.72); font-size: 0.88rem; }
.footer-col a:hover { color: #fff; text-decoration: underline; }
.footer-contact p { font-size: 0.85rem; margin-bottom: 6px; color: rgba(255,255,255,0.72); }
.site-footer__bottom { text-align: center; padding: var(--s3) var(--s3) 0; border-top: 1px solid rgba(255,255,255,0.1); margin-top: var(--s4); font-size: 0.78rem; color: rgba(255,255,255,0.4); }

/* ===== HOMEPAGE HERO (vol-breed met foto + overlay) ====== */
.hero-home {
  position: relative;
  overflow: hidden;
  min-height: 460px;
  display: flex;
  align-items: center;
  margin-bottom: 0;
}
.hero-home__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.hero-home__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(35,14,4,0.80) 0%, rgba(35,14,4,0.55) 55%, rgba(35,14,4,0.25) 100%);
  z-index: 1;
}
.hero-home__content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin: 0 auto;
  padding: var(--s5) var(--s3);
  width: 100%;
}
.hero-home h1 { font-size: clamp(2.2rem, 6vw, 3.2rem); margin-bottom: var(--s2); color: #fff; text-shadow: 0 1px 4px rgba(0,0,0,0.3); }
.hero-home__sub { font-size: 1.05rem; color: rgba(255,255,255,0.90); max-width: 520px; margin-bottom: var(--s4); line-height: 1.7; }
.hero-home__cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--terra);
  color: #fff;
  border-radius: var(--r);
  padding: 12px 26px;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  transition: background 0.15s, transform 0.12s;
  box-shadow: 0 3px 12px rgba(0,0,0,0.25);
}
.hero-home__cta:hover { background: var(--terra-dk); text-decoration: none; transform: translateY(-2px); }

/* ===== SECTIE-KOPTEKST (homepage) ======================= */
.section-heading {
  border-bottom: 2px solid var(--cream-mid);
  padding-bottom: var(--s1);
  margin-bottom: var(--s3);
  margin-top: var(--s5);
}
.section-heading:first-child { margin-top: var(--s4); }

/* Afwisselende achtergronden voor homepage-secties */
.home-band {
  margin-left: calc(-1 * var(--s3));
  margin-right: calc(-1 * var(--s3));
  padding: var(--s4) var(--s3);
  border-radius: var(--r-lg);
}
.home-band--alt { background: var(--cream-warm); }

/* ===== CATEGORIE KAARTEN (homepage) ===================== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: var(--s2);
  margin: var(--s3) 0 var(--s4);
}

.feature-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  text-decoration: none;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
  box-shadow: var(--shadow);
}
.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  text-decoration: none;
}
.feature-card__photo {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  flex-shrink: 0;
}
.feature-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.38s ease;
}
.feature-card:hover .feature-card__photo img { transform: scale(1.07); }
.feature-card__text { padding: var(--s2) var(--s2) var(--s3); }
.feature-card__title { font-family: 'Playfair Display', serif; font-weight: 700; color: var(--brown); font-size: 0.95rem; display: block; margin-bottom: 4px; }
.feature-card__sub { font-size: 0.8rem; color: var(--text-lt); }

/* ===== ARTIKEL-GRID (blog-index + homepage) ============== */
.article-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: var(--s3);
  margin: var(--s3) 0 var(--s5);
}

.article-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  box-shadow: var(--shadow);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}
.article-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  text-decoration: none;
}
.article-card__img {
  background: var(--cream-mid);
  aspect-ratio: 16/9;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.article-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.38s ease;
}
.article-card:hover .article-card__img img { transform: scale(1.06); }

.article-card__body { padding: var(--s2) var(--s3) var(--s3); flex: 1; display: flex; flex-direction: column; }
.article-card__cat { font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: var(--terra); margin-bottom: 6px; }
.article-card__title { font-family: 'Playfair Display', serif; font-size: 1.05rem; color: var(--brown); margin-bottom: var(--s1); line-height: 1.3; }
.article-card:hover .article-card__title { color: var(--terra-dk); }
.article-card__excerpt { font-size: 0.85rem; color: var(--text-lt); margin-bottom: var(--s2); flex: 1; line-height: 1.6; }
.article-card__meta { font-size: 0.76rem; color: var(--text-lt); }

/* ===== ABOUT TEASER (homepage) ========================== */
.about-teaser {
  background: var(--cream-warm);
  border-radius: var(--r-lg);
  padding: var(--s4) var(--s3);
  display: flex;
  gap: var(--s3);
  align-items: flex-start;
  margin: var(--s4) 0 var(--s4);
}
.about-teaser__photo {
  flex-shrink: 0;
  width: 88px; height: 88px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--terra);
}
.about-teaser__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.about-teaser__body h2 { border-bottom: none; margin-bottom: var(--s1); font-size: 1.2rem; }
.about-teaser__body p { margin-bottom: var(--s2); font-size: 0.9rem; color: var(--text-lt); }
.about-teaser__body a { font-weight: 700; color: var(--terra-dk); }

/* ===== LISTICLE (top-5 pagina's) ======================== */
.listicle-intro { font-size: 1.05rem; color: var(--text-lt); border-left: 3px solid var(--terra); padding-left: var(--s2); margin-bottom: var(--s4); font-style: italic; }
.listicle-list { list-style: none; padding: 0; margin: 0; }
.listicle-item {
  display: flex;
  gap: var(--s3);
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: var(--s3);
  margin-bottom: var(--s4);
  position: relative;
  box-shadow: var(--shadow);
}
.listicle-item[data-rank="1"] { border-left: 4px solid #B8860B; }
.listicle-item[data-rank="2"] { border-left: 4px solid #708090; }
.listicle-item[data-rank="3"] { border-left: 4px solid #8B5E3C; }
.listicle-item[data-rank="4"], .listicle-item[data-rank="5"] { border-left: 4px solid var(--border); }
.rank-badge { flex-shrink: 0; width: 44px; height: 44px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: 'Playfair Display', serif; font-size: 1.1rem; font-weight: 700; color: #fff; background: var(--terra); align-self: flex-start; margin-top: 2px; }
.rank-badge.r1 { background: #B8860B; }
.rank-badge.r2 { background: #708090; }
.rank-badge.r3 { background: #8B5E3C; }
.rank-badge.r4, .rank-badge.r5 { background: var(--brown-lt); }
.listicle-body { flex: 1; min-width: 0; }
.listicle-verdict { font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: var(--terra); margin-bottom: 4px; }
.listicle-name { font-family: 'Playfair Display', serif; font-size: 1.15rem; color: var(--brown); margin-bottom: var(--s1); }
.listicle-desc { font-size: 0.9rem; color: var(--text-lt); margin-bottom: var(--s2); line-height: 1.65; }
.listicle-pros-cons { margin-bottom: var(--s2); }
.listicle-pros-cons li { font-size: 0.88rem; list-style: none; padding: 2px 0 2px 18px; position: relative; }
.listicle-pros-cons .pro  { color: #2D7A2D; }
.listicle-pros-cons .pro::before  { content: '+'; position: absolute; left: 0; font-weight: 700; color: #2D7A2D; }
.listicle-pros-cons .con  { color: #8B4513; }
.listicle-pros-cons .con::before  { content: '−'; position: absolute; left: 0; font-weight: 700; color: #8B4513; }
.listicle-footer { display: flex; align-items: center; gap: var(--s2); flex-wrap: wrap; margin-top: var(--s2); }
.listicle-footer .product-card__price { margin-bottom: 0; }

/* ===== OVER ONS ========================================= */
.about-page__hero { display: flex; gap: var(--s3); align-items: flex-start; padding: var(--s4) 0; margin-bottom: var(--s4); border-bottom: 1px solid var(--cream-mid); }
.about-page__photo {
  flex-shrink: 0;
  width: 120px; height: 120px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--terra);
  object-fit: cover;
  display: block;
}

/* ===== BLOG-INDEX HEADER ================================ */
.page-header { padding: var(--s4) 0 var(--s3); border-bottom: 2px solid var(--cream-mid); margin-bottom: var(--s4); }
.page-header h1 { margin-bottom: var(--s1); }
.page-header p { color: var(--text-lt); font-size: 1rem; margin-bottom: 0; }

/* ===== CATEGORIE-TAGS =================================== */
.cat-tag { display: inline-block; background: var(--cream-mid); border-radius: 20px; padding: 3px 12px; font-weight: 700; color: var(--terra-dk); font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.05em; text-decoration: none; }
.cat-tag:hover { background: var(--cream-warm); text-decoration: none; }

/* ===== DISCLOSURE SOFT ================================== */
.disclosure-bar--soft { background: none; border-bottom: none; border-top: 1px solid var(--border); margin-top: var(--s4); padding: var(--s2) 0; font-size: 0.8rem; color: var(--text-lt); text-align: left; }

/* ===== PRODUCTFOTO IN KAART ============================= */
/* Override de grote min-height voor product-kaart foto's */
.product-card .photo-slot img {
  width: 100%;
  height: 140px;
  min-height: unset;
  object-fit: cover;
  border-radius: var(--r);
}

/* Thumbnail in listicle-item (float rechts naast tekst) */
.listicle-thumb {
  float: right;
  width: 110px;
  height: 110px;
  object-fit: cover;
  border-radius: var(--r);
  margin: 0 0 var(--s2) var(--s2);
  flex-shrink: 0;
}

@media (max-width: 480px) {
  .listicle-thumb { width: 80px; height: 80px; }
}

/* ===== SCROLL-REVEAL ===================================== */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
/* Staggered delay voor elementen in een rij */
.stagger > *:nth-child(1) { transition-delay: 0.00s; }
.stagger > *:nth-child(2) { transition-delay: 0.08s; }
.stagger > *:nth-child(3) { transition-delay: 0.16s; }
.stagger > *:nth-child(4) { transition-delay: 0.24s; }
.stagger > *:nth-child(5) { transition-delay: 0.32s; }
.stagger > *:nth-child(6) { transition-delay: 0.40s; }

/* ===== RESPONSIVE ======================================== */
@media (max-width: 640px) {
  .site-nav {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: #fff;
    padding: var(--s2);
    border-top: 1px solid var(--border);
    box-shadow: 0 8px 20px rgba(80,40,10,0.12);
  }
  .site-nav.open { display: flex; }
  .nav-toggle { display: block; }

  .hero-home { min-height: 360px; }
  .hero-home__content { padding: var(--s4) var(--s3); }

  .photo-slot--inline { float: none; width: 100%; margin: 0 0 var(--s3); }

  .product-card { flex-direction: column; }
  .product-card .photo-slot { width: 100%; }
  .product-card .photo-slot__inner { min-height: 160px; font-size: 0.82rem; }
  .product-card .photo-slot__inner::before { font-size: 1.8rem; }

  .choose-grid { grid-template-columns: 1fr; }

  .author-block { flex-direction: column; }
  .author-photo { align-self: flex-start; }

  .about-teaser { flex-direction: column; align-items: center; text-align: center; }

  .site-footer__grid { grid-template-columns: 1fr; gap: var(--s3); }

  .features-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 400px) {
  html { font-size: 16px; }
  h1 { font-size: 1.7rem; }
  .features-grid { grid-template-columns: 1fr; }
}
