/* ===== TOKENS ===== */
:root {
  --bg: #faf8f5;
  --bg-deep: #ede9e3;
  --bg-card: #ffffff;
  --warm-tint: #f5ede3;

  --ink: #1a1814;
  --ink-soft: #554f47;
  --ink-dim: #8a8075;

  --accent: #9b7b52;
  --accent-deep: #7a6040;
  --accent-bright: #b8956a;
  --accent-soft: #f0e8dd;
  --accent-glow: #d4b896;

  /* Legacy aliases — keeps forest-var references working */
  --forest: #9b7b52;
  --forest-deep: #7a6040;
  --forest-bright: #b8956a;
  --forest-soft: #f0e8dd;
  --forest-glow: #d4b896;

  --dark: #13110e;
  --line: #e2dbd2;
  --subtle: #c8bfb3;
}

/* ===== READING PROGRESS ===== */
.reading-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background: var(--accent);
  z-index: 9999;
  transition: width 0.1s linear;
  pointer-events: none;
}

/* ===== RESET + GLOBAL ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; overflow-x: hidden; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--ink);
  overflow-x: hidden;
  font-feature-settings: "ss01", "cv11";
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  max-width: 100%;
  filter: saturate(0.96) contrast(1.02);
}

a { color: inherit; text-decoration: none; }

/* ===== NAV ===== */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  height: 58px;
  background: rgba(248, 244, 238, 0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(26, 26, 26, 0.06);
  transition: background 0.3s, border-color 0.3s;
}

.nav-inner {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 48px;
  height: 100%;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}

.site-nav.scrolled {
  background: rgba(248, 244, 238, 0.96);
  border-bottom-color: var(--line);
}

.nav-left {
  display: flex;
  gap: 4px;
  align-items: center;
}

.nav-trigger {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 7px 14px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: -0.005em;
  color: var(--ink);
  background: transparent;
  border: none;
  border-radius: 100px;
  cursor: pointer;
  transition: all 0.2s;
  font-family: inherit;
}

.nav-trigger:hover { background: var(--bg-deep); }

.nav-trigger[aria-expanded="true"] {
  background: var(--bg-deep);
  color: var(--forest);
}

.nav-trigger svg {
  width: 10px;
  height: 10px;
  transition: transform 0.2s;
}

.nav-trigger[aria-expanded="true"] svg { transform: rotate(180deg); }

.nav-link {
  padding: 7px 14px;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink);
  border-radius: 100px;
  transition: all 0.2s;
  display: inline-block;
}

.nav-link:hover { background: var(--bg-deep); color: var(--forest); }

.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0.01em;
  text-align: center;
  color: var(--ink);
}

.nav-logo em {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 400;
  color: var(--accent);
}

.nav-right {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
  align-items: center;
}

.nav-pill {
  padding: 7px 16px;
  font-size: 13px;
  font-weight: 500;
  background: var(--ink);
  color: var(--bg);
  border-radius: 100px;
  transition: background 0.2s;
  display: inline-block;
}

.nav-pill:hover { background: var(--forest); color: white; }
.nav-pill-quiz { }
.nav-pill-quiz:hover { }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}

.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: all 0.25s;
}

/* Mega-menu panel */
.mega-panel {
  position: fixed;
  top: 58px;
  left: 0;
  right: 0;
  z-index: 190;
  background: rgba(248, 244, 238, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 24px 40px rgba(17,17,17,0.06);
  opacity: 0;
  transform: translateY(-6px);
  pointer-events: none;
  transition: opacity 0.22s ease-out, transform 0.22s ease-out;
}

.mega-panel.open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}

.mega-inner {
  max-width: 1600px;
  margin: 0 auto;
  padding: 40px 32px;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 48px;
}

.mega-section-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--forest);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.mega-section-label::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--forest);
  border-radius: 50%;
  flex-shrink: 0;
}

.mega-filter-chips {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.mega-chip {
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 500;
  border-radius: 100px;
  background: var(--bg-deep);
  color: var(--ink-soft);
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.2s;
  font-family: inherit;
}

.mega-chip:hover, .mega-chip.active {
  background: var(--forest-soft);
  color: var(--forest);
}

.mega-sfeer-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 4px;
}

.mega-sfeer-tile {
  padding: 10px 8px;
  border-radius: 6px;
  text-align: center;
  font-size: 12px;
  font-weight: 500;
  color: var(--ink);
  transition: all 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
}

.mega-sfeer-tile:hover {
  background: var(--bg-deep);
  color: var(--forest);
}

.mega-sfeer-tile[data-hidden="true"] { display: none; }

.mega-featured { display: flex; flex-direction: column; gap: 16px; }

.mega-featured-card {
  aspect-ratio: 4/3;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  background: var(--bg-deep);
}

.mega-featured-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mega-featured-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,0.7) 100%);
}

.mega-featured-info {
  position: absolute;
  bottom: 16px;
  left: 16px;
  right: 16px;
  color: white;
  z-index: 2;
}

.mega-featured-num {
  font-size: 11px;
  font-weight: 500;
  opacity: 0.75;
  margin-bottom: 4px;
}

.mega-featured-title {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: -0.015em;
}

.mega-all-link {
  font-size: 13px;
  font-weight: 500;
  color: var(--forest);
  display: flex;
  align-items: center;
  gap: 6px;
}

.mega-all-link:hover { text-decoration: underline; }
.mega-bottom-links { display: flex; gap: 24px; flex-wrap: wrap; margin-top: 28px; }

/* Mega sfeer thumbnail preview */
.mega-sfeer-preview {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 4px 0 4px 24px;
  border-left: 1px solid var(--line);
  align-self: start;
}
.mega-sfeer-preview-img-wrap {
  width: 140px;
  height: 140px;
  overflow: hidden;
  position: relative;
  background: var(--bg-deep);
  flex-shrink: 0;
}
.mega-sfeer-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: none;
  transition: opacity 0.2s;
}
.mega-sfeer-thumb.loaded { display: block; }
.mega-sfeer-thumb-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  color: var(--ink-dim);
  font-family: 'Inter', sans-serif;
  text-align: center;
  padding: 12px;
  line-height: 1.5;
}
.mega-sfeer-thumb.loaded ~ .mega-sfeer-thumb-placeholder { display: none; }
.mega-sfeer-preview-naam {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.01em;
  min-height: 1.3em;
}
.mega-sfeer-preview-link {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.8px;
  color: var(--accent);
  text-decoration: none;
  display: none;
}
.mega-sfeer-preview-link.active { display: block; }
.mega-sfeer-preview-link:hover { text-decoration: underline; }

/* Ruimtes panel */
.mega-rooms-grid {
  max-width: 1600px;
  margin: 0 auto;
  padding: 32px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.mega-room-card {
  aspect-ratio: 4/3;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  background: var(--bg-deep);
  display: block;
  transition: transform 0.3s;
}

.mega-room-card:hover { transform: translateY(-2px); }

.mega-room-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.2,0.8,0.2,1);
}

.mega-room-card:hover img { transform: scale(1.04); }

.mega-room-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(0,0,0,0.75) 100%);
}

.mega-room-name {
  position: absolute;
  bottom: 14px;
  left: 14px;
  color: white;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.01em;
  z-index: 2;
}

/* Mobile nav */
.mobile-nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 300;
  background: var(--bg);
  overflow-y: auto;
  padding: 80px 24px 40px;
}

.mobile-nav-overlay.open { display: block; }

.mobile-nav-close {
  position: absolute;
  top: 16px;
  right: 20px;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: var(--ink);
  padding: 8px;
}

.mobile-nav-section { margin-bottom: 32px; }

.mobile-nav-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--ink-dim);
  margin-bottom: 12px;
}

.mobile-nav-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  grid-auto-rows: 44px;
}

.mobile-nav-item {
  padding: 0 12px;
  background: var(--bg-deep);
  border-radius: 8px;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  line-height: 1.2;
  height: 44px;
  overflow: hidden;
}

.mobile-nav-item:hover { background: var(--forest-soft); color: var(--forest); }

/* ===== SECTION HEADER ===== */
.section-header {
  padding: 120px 32px 40px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: end;
  max-width: 1600px;
  margin: 0 auto;
}

.section-label {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--forest);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.section-label::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--forest);
  border-radius: 50%;
  flex-shrink: 0;
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 5.5vw, 5.5rem);
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 0.97;
  max-width: 800px;
}

.section-title em {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 400;
  color: var(--accent);
}

.section-meta { text-align: right; padding-bottom: 8px; }

.section-meta .count {
  font-size: 48px;
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1;
}

.section-meta .count em {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 400;
  color: var(--forest);
}

.section-meta .meta-label { font-size: 12px; color: var(--ink-dim); margin-top: 4px; }

/* ===== HOMEPAGE HERO ===== */
.hp-hero {
  height: 66vh;
  min-height: 520px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 80px 32px 40px;
  overflow: hidden;
  background: var(--ink);
}

.hp-hero-image {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hp-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: slowZoom 20s ease-in-out infinite alternate;
  filter: saturate(0.95) contrast(1.03);
}

@keyframes slowZoom {
  from { transform: scale(1); }
  to { transform: scale(1.06); }
}

.hp-hero-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    rgba(0,0,0,0.25) 0%,
    rgba(0,0,0,0.05) 25%,
    rgba(0,0,0,0) 45%,
    rgba(0,0,0,0.55) 75%,
    rgba(0,0,0,0.82) 100%);
}

.hp-hero-content {
  position: relative;
  z-index: 2;
  color: white;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: end;
  max-width: 1600px;
  margin: 0 auto;
  width: 100%;
}

.hp-hero-chips {
  display: flex;
  gap: 8px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.chip {
  font-size: 12px;
  font-weight: 500;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(12px);
  padding: 7px 14px;
  border-radius: 100px;
  border: 1px solid rgba(255,255,255,0.15);
  color: white;
}

.chip.accent {
  background: rgba(95,114,72,0.35);
  border-color: rgba(197,209,176,0.4);
  color: var(--forest-glow);
}

.chip.accent::before {
  content: '●';
  font-size: 8px;
  margin-right: 6px;
  color: var(--forest-glow);
}

.hp-hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(4rem, 9vw, 9rem);
  font-weight: 600;
  line-height: 0.9;
  letter-spacing: -0.015em;
  margin-bottom: 28px;
  max-width: 1100px;
}

.hp-hero-title em {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 400;
  color: var(--accent-glow);
  letter-spacing: 0;
}

.hp-hero-sub {
  font-size: 17px;
  line-height: 1.45;
  max-width: 460px;
  opacity: 0.88;
}

.hp-hero-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-end;
}

.action-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  background: white;
  color: var(--ink);
  border-radius: 100px;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.25s;
  white-space: nowrap;
  border: none;
  cursor: pointer;
  font-family: inherit;
}

.action-btn:hover { background: var(--forest); color: white; gap: 14px; }

.action-btn.ghost {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(12px);
  color: white;
  border: 1px solid rgba(255,255,255,0.2);
}

.action-btn.ghost:hover { background: rgba(255,255,255,0.2); }

/* ===== GALLERY ===== */
.gallery {
  max-width: 1600px;
  margin: 0 auto;
  padding: 40px 32px 80px;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 16px;
}

.card {
  position: relative;
  overflow: hidden;
  border-radius: 6px;
  background: var(--bg-deep);
  cursor: pointer;
  display: block;
  color: inherit;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.15);
}

.card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s cubic-bezier(0.2,0.8,0.2,1);
}

.card:hover img { transform: scale(1.04); }

.card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.92) 0%, rgba(0,0,0,0.7) 35%, rgba(0,0,0,0.25) 65%, rgba(0,0,0,0) 100%);
}

.card-content {
  position: absolute;
  bottom: 18px;
  left: 18px;
  right: 18px;
  color: white;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 7px;
}

.card-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.1;
  text-shadow: 0 1px 4px rgba(0,0,0,0.9), 0 2px 12px rgba(0,0,0,0.7);
}

.card-title em {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 400;
}

.card-tag {
  font-size: 10px;
  padding: 3px 9px;
  background: rgba(255,255,255,0.18);
  backdrop-filter: blur(10px);
  border-radius: 100px;
  border: 1px solid rgba(255,255,255,0.25);
  white-space: nowrap;
  font-weight: 500;
  letter-spacing: .3px;
}

.card-corner {
  position: absolute;
  top: 16px;
  left: 16px;
  font-size: 11px;
  padding: 5px 11px;
  background: rgba(255,255,255,0.12);
  color: white;
  backdrop-filter: blur(10px);
  border-radius: 100px;
  z-index: 2;
  font-weight: 500;
  border: 1px solid rgba(255,255,255,0.2);
}

.card-corner.accent { background: var(--forest); border-color: var(--forest); }

.card-like {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 16px;
  z-index: 2;
  cursor: pointer;
  border: none;
  transition: all 0.3s;
}

.card-like:hover { background: var(--forest); transform: scale(1.1); }

.span-lg { grid-column: span 6; aspect-ratio: 3/2; }
.span-md { grid-column: span 4; aspect-ratio: 3/4; }
.span-sm { grid-column: span 3; aspect-ratio: 1/1; }
.span-xl { grid-column: span 8; aspect-ratio: 16/9; }
.span-vt { grid-column: span 4; aspect-ratio: 3/4; }

/* ===== ROOM SWITCH ===== */
.room-switch {
  background: var(--ink);
  color: var(--bg);
  padding: 120px 32px;
  position: relative;
  overflow: hidden;
}

.room-switch::before {
  content: '';
  position: absolute;
  top: -20%; right: -10%;
  width: 60%; height: 140%;
  background: radial-gradient(ellipse, rgba(95,114,72,0.25) 0%, transparent 60%);
  pointer-events: none;
}

.room-switch::after {
  content: '';
  position: absolute;
  bottom: -20%; left: -10%;
  width: 50%; height: 100%;
  background: radial-gradient(ellipse, rgba(197,209,176,0.08) 0%, transparent 55%);
  pointer-events: none;
}

.room-switch-inner {
  max-width: 1600px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.room-switch .section-title em { color: var(--forest-glow); }
.room-switch .section-label { color: var(--forest-glow); }
.room-switch .section-label::before { background: var(--forest-glow); }
.room-switch .section-header { padding: 0 0 0; }

.room-tabs {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin: 48px 0;
}

.room-tab {
  padding: 10px 18px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--bg);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.25s;
  display: block;
}

.room-tab:hover { background: rgba(255,255,255,0.12); transform: translateY(-1px); }

.room-tab.active {
  background: var(--forest-glow);
  color: var(--forest-deep);
  border-color: var(--forest-glow);
}

.room-showcase {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 16px;
}

.room-showcase-main {
  aspect-ratio: 16/10;
  overflow: hidden;
  border-radius: 6px;
  position: relative;
  display: block;
}

.room-showcase-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s cubic-bezier(0.2,0.8,0.2,1);
}

.room-showcase-main:hover img { transform: scale(1.03); }

.room-showcase-side {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.room-showcase-side-item {
  flex: 1;
  overflow: hidden;
  border-radius: 6px;
  position: relative;
  display: block;
}

.room-showcase-side-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s cubic-bezier(0.2,0.8,0.2,1);
}

.room-showcase-side-item:hover img { transform: scale(1.04); }

.room-overlay {
  position: absolute;
  bottom: 16px;
  left: 16px;
  right: 16px;
  color: white;
  z-index: 2;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: -0.01em;
}

.room-overlay em {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 400;
}

.room-showcase-main::after,
.room-showcase-side-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.75) 100%);
}

/* ===== HOMEPAGE QUIZ CTA ===== */
.hp-quiz-cta {
  background: var(--dark);
  padding: 100px 32px;
}
.hp-quiz-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.hp-quiz-text .section-label {
  color: var(--accent-glow);
  opacity: 0.85;
  margin-bottom: 20px;
}
.hp-quiz-text h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  font-weight: 600;
  line-height: 1.1;
  color: #fff;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}
.hp-quiz-text h2 em {
  font-style: italic;
  color: var(--accent-glow);
  font-weight: 400;
}
.hp-quiz-text p {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255,255,255,0.65);
  max-width: 420px;
  margin-bottom: 36px;
}
.hp-quiz-btn {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 16px 40px;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
}
.hp-quiz-btn:hover { background: var(--accent-bright); transform: translateY(-2px); }

.hp-quiz-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.hp-quiz-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
  display: block;
}
.hp-quiz-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.4,0,0.2,1);
  filter: brightness(0.85);
}
.hp-quiz-card:hover img { transform: scale(1.05); filter: brightness(1); }
.hp-quiz-card-label {
  position: absolute;
  bottom: 12px; left: 14px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: #fff;
  text-shadow: 0 1px 4px rgba(0,0,0,0.5);
}

@media (max-width: 900px) {
  .hp-quiz-inner { grid-template-columns: 1fr; gap: 48px; }
  .hp-quiz-grid { grid-template-columns: 1fr 1fr; }
  .hp-quiz-cta { padding: 72px 20px; }
}

/* ===== JOURNAL ===== */
.journal {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 32px 80px;
}

.journal-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 16px;
  margin-top: 40px;
}

.journal-featured {
  grid-row: span 2;
  background: var(--warm-tint);
  border-radius: 6px;
  overflow: hidden;
  color: var(--ink);
  transition: all 0.25s;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
}

.journal-featured:hover { transform: translateY(-3px); box-shadow: 0 20px 40px rgba(17,17,17,0.08); }

.journal-featured .jf-img { aspect-ratio: 3/2; overflow: hidden; }

.journal-featured .jf-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s cubic-bezier(0.2,0.8,0.2,1);
}

.journal-featured:hover .jf-img img { transform: scale(1.04); }

.journal-featured .jf-text {
  padding: 32px 32px 40px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.tag {
  display: inline-flex;
  width: fit-content;
  background: var(--forest-soft);
  color: var(--forest);
  padding: 5px 11px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 600;
  margin-bottom: 16px;
  letter-spacing: 0.01em;
}

.journal-featured h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 3.5vw, 3rem);
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.03;
  margin-bottom: 16px;
  max-width: 540px;
}

.journal-featured h3 em {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 400;
}

.journal-featured p {
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.5;
  max-width: 500px;
  margin-bottom: 24px;
}

.journal-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: var(--ink-dim);
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.journal-side {
  background: var(--bg-card);
  border-radius: 6px;
  overflow: hidden;
  color: var(--ink);
  transition: all 0.25s;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
}

.journal-side:hover { transform: translateY(-2px); box-shadow: 0 14px 30px rgba(17,17,17,0.06); }

.journal-side .js-img { aspect-ratio: 16/10; overflow: hidden; }

.journal-side .js-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s cubic-bezier(0.2,0.8,0.2,1);
}

.journal-side:hover .js-img img { transform: scale(1.04); }

.journal-side .js-text { padding: 20px; flex: 1; display: flex; flex-direction: column; }

.js-meta {
  font-size: 11px;
  color: var(--ink-dim);
  font-weight: 500;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.journal-side h4 {
  font-size: 17px;
  font-weight: 500;
  letter-spacing: -0.015em;
  line-height: 1.2;
  margin-bottom: 8px;
}

.journal-side h4 em {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 400;
}

.journal-side p { font-size: 13px; color: var(--ink-soft); line-height: 1.45; flex: 1; }

.js-footer {
  font-size: 11px;
  color: var(--ink-dim);
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid var(--line);
}

/* ===== CTA BAND ===== */
.cta-band {
  background: var(--forest);
  color: white;
  padding: 96px 32px;
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(255,255,255,0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(197,209,176,0.12) 0%, transparent 50%);
  pointer-events: none;
}

.cta-inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 48px;
  align-items: center;
}

.cta-inner h3 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.05;
}

.cta-inner h3 em {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 400;
  color: var(--forest-glow);
}

.cta-inner p { font-size: 16px; opacity: 0.85; line-height: 1.5; margin-top: 16px; max-width: 480px; }

.newsletter-form { display: flex; flex-direction: column; gap: 12px; }

.newsletter-input {
  display: flex;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 100px;
  padding: 6px 6px 6px 20px;
  align-items: center;
  backdrop-filter: blur(10px);
}

.newsletter-input input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  color: white;
  font-size: 14px;
  font-family: inherit;
  padding: 10px 0;
}

.newsletter-input input::placeholder { color: rgba(255,255,255,0.5); }

.newsletter-input button {
  background: white;
  color: var(--forest-deep);
  border: none;
  padding: 11px 22px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
  transition: all 0.25s;
}

.newsletter-input button:hover { background: var(--forest-glow); }

.newsletter-hint { font-size: 12px; opacity: 0.7; padding-left: 20px; }

/* ===== FOOTER ===== */
.site-footer {
  background: var(--dark);
  color: var(--bg);
  padding: 96px 0 40px;
}

.footer-inner { max-width: 1600px; margin: 0 auto; padding: 0 48px; }

.footer-top,
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(245,240,232,0.15);
}

.footer-logo,
.logo.logo-footer {
  font-family: 'Cormorant Garamond', serif;
  font-size: 36px;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: var(--bg);
  display: inline-block;
}

.footer-logo em,
.logo.logo-footer span {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 400;
  color: var(--accent-glow);
}

.footer-heading {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent-glow);
  margin-bottom: 16px;
  opacity: 0.85;
}

.footer-grid ul { list-style: none; }
.footer-grid ul li a {
  display: block;
  font-size: 13px;
  color: rgba(245,240,232,0.85);
  padding: 7px 0;
  transition: color 0.2s;
  min-height: 44px;
  display: flex;
  align-items: center;
}
.footer-grid ul li a:hover { color: #fff; }

.footer-brand p {
  margin-top: 16px;
  font-size: 14px;
  opacity: 0.7;
  max-width: 340px;
  line-height: 1.55;
}

.footer-col h4 {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 16px;
  color: var(--forest-glow);
}

.footer-col a {
  display: flex;
  align-items: center;
  font-size: 14px;
  color: var(--bg);
  padding: 7px 0;
  opacity: 0.85;
  transition: opacity 0.2s, color 0.2s;
  min-height: 44px;
}

.footer-col a:hover { opacity: 1; color: var(--forest-glow); }

.footer-quiz-link {
  display: inline-block;
  margin-top: 16px;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--accent-glow);
  letter-spacing: 0.5px;
  opacity: 0.9;
  transition: opacity 0.2s;
}
.footer-quiz-link:hover { opacity: 1; color: #fff; }

.footer-sub {
  margin-top: 8px;
  font-size: 14px;
  opacity: 0.6;
  line-height: 1.55;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 28px;
  font-size: 12px;
  opacity: 0.55;
}

/* ===== INDEX PAGES ===== */
.index-hero {
  min-height: 65vh;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 100px 0 48px;
  background: var(--ink);
  overflow: hidden;
}

.index-hero-image {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.index-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.95) contrast(1.03);
}

.index-hero-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.65) 100%);
}

.index-hero-content {
  position: relative;
  z-index: 2;
  color: white;
  max-width: 1600px;
  margin: 0 auto;
  width: 100%;
  padding: 0 48px;
}

.index-breadcrumb {
  font-size: 12px;
  font-weight: 500;
  opacity: 0.7;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.index-breadcrumb a { color: white; }

.index-hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.8rem, 5vw, 5rem);
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.0;
  margin-bottom: 16px;
}

.index-hero-title em {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 400;
  color: var(--accent-glow);
}

.index-hero-sub {
  font-size: 17px;
  opacity: 0.85;
  max-width: 520px;
  line-height: 1.45;
}

.index-grid {
  max-width: 1600px;
  margin: 0 auto;
  padding: 48px 48px 80px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.index-card {
  border-radius: 10px;
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid var(--line);
  display: block;
  color: var(--ink);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.index-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.12);
}

.index-card:hover .index-card-img img { transform: scale(1.04); }

.index-card-img {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--bg-deep);
}

.index-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.index-card-body { padding: 20px 22px 24px; }

.index-card-body h2 {
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 8px;
}

.index-card-body p { font-size: 13px; color: var(--ink-soft); line-height: 1.45; }

/* ===== CATALOG PAGE ===== */
.catalog-header {
  padding: 140px 48px 60px;
  max-width: 1600px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.8fr 1fr;
  gap: 48px;
  align-items: end;
}

.catalog-title {
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 500;
  letter-spacing: -0.042em;
  line-height: 0.95;
  margin-bottom: 20px;
}

.catalog-title em {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 400;
  color: var(--forest);
}

.catalog-desc { font-size: 17px; color: var(--ink-soft); line-height: 1.5; }

.catalog-stats { display: flex; flex-direction: column; gap: 16px; }

.catalog-stat {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 20px 24px;
}

.catalog-stat-num {
  font-size: 36px;
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1;
}

.catalog-stat-num em {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 400;
  color: var(--forest);
}

.catalog-stat-label { font-size: 12px; color: var(--ink-dim); margin-top: 4px; }

.catalog-filter-bar {
  position: sticky;
  top: 58px;
  z-index: 10;
  background: rgba(248,244,238,0.94);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
  padding: 14px 32px;
  display: flex;
  gap: 6px;
  overflow-x: auto;
  scrollbar-width: none;
}

.catalog-filter-bar::-webkit-scrollbar { display: none; }

.filter-chip {
  padding: 7px 16px;
  font-size: 12px;
  font-weight: 500;
  border-radius: 100px;
  background: transparent;
  border: 1px solid var(--line);
  color: var(--ink-soft);
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.2s;
  font-family: inherit;
}

.filter-chip:hover { background: var(--bg-deep); color: var(--ink); }

.filter-chip.active { background: var(--forest); color: white; border-color: var(--forest); }

.catalog-grid {
  max-width: 1600px;
  margin: 0 auto;
  padding: 48px 32px 80px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.tile {
  border-radius: 10px;
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid var(--line);
  display: block;
  color: var(--ink);
  transition: all 0.25s;
}

.tile:hover { transform: translateY(-3px); box-shadow: 0 20px 40px rgba(17,17,17,0.08); }

.tile-img {
  aspect-ratio: 4/5;
  overflow: hidden;
  position: relative;
  background: var(--bg-deep);
}

.tile-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s cubic-bezier(0.2,0.8,0.2,1);
}

.tile:hover .tile-img img { transform: scale(1.04); }

.tile-num {
  position: absolute;
  top: 12px;
  left: 12px;
  background: white;
  color: var(--ink);
  font-size: 11px;
  font-weight: 500;
  padding: 4px 10px;
  border-radius: 100px;
  z-index: 2;
}

.tile-body { padding: 16px 18px 18px; }

.tile-cat {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink-dim);
  margin-bottom: 6px;
}

.tile-body h4 {
  font-size: 17px;
  font-weight: 500;
  letter-spacing: -0.015em;
  line-height: 1.2;
  margin-bottom: 6px;
}

.tile-body p { font-size: 13px; color: var(--ink-soft); line-height: 1.45; }

.tile-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 18px;
  border-top: 1px solid var(--line);
  font-size: 12px;
  color: var(--ink-dim);
}

.editorial-insert {
  grid-column: span 2;
  background: var(--forest);
  color: white;
  border-radius: 10px;
  padding: 48px 40px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 300px;
  position: relative;
  overflow: hidden;
}

.editorial-insert::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 60%, rgba(255,255,255,0.08) 0%, transparent 55%);
}

.editorial-insert .ei-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--forest-glow);
  margin-bottom: 16px;
  position: relative;
}

.editorial-insert h3 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin-bottom: 24px;
  position: relative;
}

.editorial-insert h3 em {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 400;
}

.editorial-insert .ei-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 22px;
  background: var(--forest-glow);
  color: var(--forest-deep);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  position: relative;
  width: fit-content;
  transition: all 0.2s;
}

.editorial-insert .ei-btn:hover { background: white; }

/* ===== CONTENT / DETAIL PAGE ===== */
.page-hero {
  min-height: 72vh;
  position: relative;
  display: flex;
  align-items: flex-end;
  padding: 100px 0 48px;
  background: var(--ink);
  overflow: hidden;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    rgba(0,0,0,0.2) 0%,
    rgba(0,0,0,0.0) 40%,
    rgba(0,0,0,0.5) 85%,
    rgba(0,0,0,0.75) 100%);
  z-index: 1;
}

.page-hero-content {
  position: relative;
  z-index: 2;
  color: white;
  max-width: 1600px;
  width: 100%;
  margin: 0 auto;
  padding: 0 48px;
}

.page-hero-breadcrumb {
  font-size: 12px;
  font-weight: 500;
  opacity: 0.7;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.page-hero-breadcrumb a { color: white; }
.page-hero-breadcrumb .sep { opacity: 0.5; }

.page-hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 3.8vw, 4rem);
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.05;
  margin-bottom: 28px;
  max-width: 900px;
}

.page-hero h1 em {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 400;
  color: var(--accent-glow);
}

.page-hero-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 13px;
  font-weight: 500;
  opacity: 0.85;
}

.page-hero-meta .meta-dot {
  width: 4px;
  height: 4px;
  background: rgba(255,255,255,0.5);
  border-radius: 50%;
}

.kleurpalet-dots { display: flex; gap: 6px; align-items: center; margin-top: 16px; }

.kleurpalet-dot {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.3);
}

.content-wrap {
  max-width: 1600px;
  margin: 0 auto;
  padding: 88px 48px 80px;
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 80px;
}

.article-body { min-width: 0; overflow-x: hidden; }

.article-author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}

.article-author-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--forest-soft);
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 600;
  flex-shrink: 0;
}

.article-author strong { display: block; font-size: 14px; font-weight: 600; }
.article-author span { font-size: 12px; color: var(--ink-soft); }

.room-nav { margin-bottom: 32px; }

.room-nav-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 10px;
}

.room-nav-items { display: flex; flex-wrap: wrap; gap: 6px; }

.room-nav-items a {
  padding: 11px 16px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  background: var(--bg-deep);
  color: var(--ink-soft);
  transition: all 0.2s;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}

.room-nav-items a:hover { background: var(--forest-soft); color: var(--forest); }
.room-nav-items a.active { background: var(--forest-deep); color: white; }

.toc {
  background: var(--bg-deep);
  border-radius: 10px;
  padding: 24px 28px;
  margin-bottom: 40px;
}

.toc-heading, .toc-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--forest-deep);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-sans, 'Inter', sans-serif);
}

.toc-heading::before, .toc-label::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--forest-deep);
  border-radius: 50%;
  flex-shrink: 0;
}

.toc ol, .toc ul { list-style: none; }

.toc li { padding: 5px 0; font-size: 14px; border-bottom: 1px solid var(--line); }
.toc li:last-child { border-bottom: none; }
.toc a { color: var(--ink-soft); transition: color 0.2s; }
.toc a:hover { color: var(--forest); }

/* Article HTML content */
.article-html h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.9rem, 3.2vw, 2.8rem);
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.08;
  margin: 56px 0 18px;
  padding-bottom: 14px;
  border-bottom: 2px solid var(--accent-soft);
  color: var(--ink);
}

.article-html h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.2;
  margin: 36px 0 12px;
}

.article-html p {
  font-size: 16.5px;
  line-height: 1.85;
  color: var(--ink-soft);
  margin-bottom: 22px;
}

.article-html ul, .article-html ol { padding-left: 24px; margin-bottom: 20px; }

.article-html li {
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink-soft);
  margin-bottom: 8px;
}

.article-html strong { font-weight: 600; color: var(--ink); }

.article-html em {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
}

/* Article images */
.article-html img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
}
.article-img {
  width: 100%;
  max-width: 720px;
  height: auto;
  border-radius: 8px;
  margin: 28px auto;
  display: block;
  object-fit: cover;
}
.article-img-right {
  float: right;
  width: 48%;
  max-width: 380px;
  height: auto;
  border-radius: 8px;
  margin: 8px 0 16px 28px;
  object-fit: cover;
}
.article-img-left {
  float: left;
  width: 48%;
  max-width: 380px;
  height: auto;
  border-radius: 8px;
  margin: 8px 28px 16px 0;
  object-fit: cover;
}
@media (max-width: 768px) {
  .article-img-right,
  .article-img-left {
    float: none;
    width: 100%;
    max-width: 100%;
    margin: 20px 0;
  }
}

/* Tables — scroll horizontally on mobile, never overflow viewport */
.table-wrap {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin: 24px 0;
  border-radius: 8px;
  border: 1px solid var(--line);
}
.article-html table {
  width: 100%;
  min-width: 480px;
  border-collapse: collapse;
  font-size: 14px;
  line-height: 1.5;
}
.article-html th {
  background: var(--forest-soft);
  color: var(--ink);
  font-weight: 600;
  text-align: left;
  padding: 10px 14px;
  border-bottom: 2px solid var(--line);
  white-space: nowrap;
}
.article-html td {
  padding: 9px 14px;
  border-bottom: 1px solid var(--line);
  color: var(--ink-soft);
  vertical-align: top;
}
.article-html tr:last-child td { border-bottom: none; }
.article-html tr:nth-child(even) td { background: var(--bg-deep); }

/* Article column — tables scroll via .table-wrap, not overflow:hidden here */
.article-html {
  min-width: 0;
}

/* Lead paragraph — eerste alinea groter en donkerder */
.article-html > p:first-of-type {
  font-size: 19px;
  line-height: 1.75;
  color: var(--ink);
  font-weight: 400;
  margin-bottom: 32px;
}

/* Article h2 — dramatisch met decoratieve lijn erboven */
.article-html h2::before {
  content: '';
  display: block;
  width: 40px;
  height: 2px;
  background: var(--accent);
  margin-bottom: 20px;
  margin-top: 16px;
}

/* Binnenkijken gallery h2 negeert h2-before */
.foto-gallery h2::before { display: none; }

.tip-block {
  background: var(--accent-soft);
  border-left: 4px solid var(--accent);
  border-radius: 0 10px 10px 0;
  padding: 20px 24px;
  margin: 32px 0;
  position: relative;
}

.tip-block strong { color: var(--accent-deep); }
.tip-block p { margin-bottom: 0; color: var(--ink); }

.warning-block {
  background: #fdf6ee;
  border-left: 4px solid #c47c3a;
  border-radius: 0 10px 10px 0;
  padding: 20px 24px;
  margin: 32px 0;
}

.warning-block strong { color: #9a5e22; }
.warning-block p { margin-bottom: 0; color: var(--ink); }

/* Products */
.products-section { margin-top: 56px; }

.products-section h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 600;
  letter-spacing: -0.01em;
  margin-bottom: 28px;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--accent-soft);
  text-align: center;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 20px;
}

.product-card {
  border-radius: 10px;
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid var(--line);
  transition: all 0.25s;
}

.product-card:hover { transform: translateY(-2px); box-shadow: 0 14px 30px rgba(17,17,17,0.08); }

.product-img { aspect-ratio: 1/1; overflow: hidden; background: var(--bg-deep); }

.product-img-link { display: block; position: relative; aspect-ratio: 4/3; overflow: hidden; background: var(--bg-deep); }
.product-img-link img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s; }
.product-card:hover .product-img-link img { transform: scale(1.04); }

.product-retailer-badge {
  position: absolute;
  bottom: 8px;
  left: 8px;
  background: rgba(0,0,0,0.62);
  color: #fff;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 100px;
  backdrop-filter: blur(4px);
}

.product-img-placeholder {
  aspect-ratio: 4/3;
  background: var(--bg-deep);
}

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

.product-brand {
  display: block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--ink-dim);
  margin-bottom: 4px;
}

.product-body h3 a { color: inherit; text-decoration: none; }
.product-body h3 a:hover { color: var(--forest); }

.product-body { padding: 16px 18px 20px; }

.product-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink-dim);
  margin-bottom: 6px;
}

.product-body h3 {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin-bottom: 8px;
}

.product-body p {
  font-size: 13px;
  color: var(--ink-soft);
  line-height: 1.4;
  margin-bottom: 16px;
}

.product-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: center;
  padding-top: 12px;
  border-top: 1px solid var(--line);
}

.product-price { font-size: 15px; font-weight: 600; flex: 1; }

.product-link {
  font-size: 12px;
  font-weight: 600;
  padding: 7px 14px;
  background: var(--forest);
  color: white;
  border-radius: 100px;
  transition: background 0.2s;
  white-space: nowrap;
}

.product-link:hover { background: var(--forest-deep); }

.product-link-bol {
  font-size: 11px;
  font-weight: 500;
  padding: 5px 11px;
  background: transparent;
  color: var(--ink-dim);
  border: 1px solid var(--line);
  border-radius: 100px;
  transition: border-color 0.2s, color 0.2s;
  white-space: nowrap;
}

.product-link-bol:hover { border-color: var(--forest); color: var(--forest); }

.affiliate-disclaimer { font-size: 12px; color: var(--ink-soft); margin-top: 12px; }

.cross-links { margin-top: 32px; font-size: 14px; color: var(--ink-soft); }

.cross-links a { color: var(--forest-deep); font-weight: 500; text-decoration: underline; text-underline-offset: 3px; }

/* FAQ */
.faq-section { margin-top: 48px; }

.faq-section h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 600;
  letter-spacing: -0.01em;
  margin-bottom: 28px;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--accent-soft);
}

.faq-item { border-bottom: 1px solid var(--line); padding: 20px 0; }

.faq-item h3 { font-size: 16px; font-weight: 600; letter-spacing: -0.01em; margin-bottom: 10px; }

.faq-item p { font-size: 15px; color: var(--ink-soft); line-height: 1.6; }

/* Sidebar */
.sidebar { display: flex; flex-direction: column; gap: 20px; }

.sidebar-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 24px;
}

.sidebar-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 17px;
  font-weight: 600;
  letter-spacing: 0.01em;
  margin-bottom: 16px;
  color: var(--ink);
  padding-bottom: 12px;
  border-bottom: 1px solid var(--accent-soft);
}

.sidebar-card a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  font-size: 14px;
  color: var(--ink-soft);
  border-bottom: 1px solid var(--line);
  transition: color 0.2s;
}

.sidebar-card a:last-child { border-bottom: none; }
.sidebar-card a:hover { color: var(--forest); }
.sidebar-card a.active { color: var(--forest); font-weight: 500; }

/* Palette sidebar */
.palette-swatches { display: flex; flex-direction: column; gap: 10px; }

.palette-swatch { display: flex; align-items: center; gap: 12px; }

.swatch-dot {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid var(--line);
  flex-shrink: 0;
}

.swatch-info { font-size: 13px; }
.swatch-name { font-weight: 500; display: block; }
.swatch-hex { color: var(--ink-soft); font-size: 12px; display: block; }

/* Swatch rows (publisher.js generated) */
.swatches { display: flex; flex-direction: column; gap: 8px; }

.swatch-row {
  display: flex;
  align-items: center;
  gap: 12px;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid var(--line, #e8e3dc);
}

.swatch-block {
  width: 56px;
  height: 56px;
  flex-shrink: 0;
}

.swatch-row .swatch-info {
  padding: 0 4px;
  font-size: 13px;
  line-height: 1.4;
}

/* Article palette section */
.palette-section {
  margin: 40px 0;
  padding: 32px;
  background: var(--bg-alt, #f3efe8);
  border-radius: 12px;
}

.palette-intro {
  font-size: 15px;
  color: var(--ink-dim);
  margin-bottom: 24px;
  line-height: 1.6;
}

.palette-full {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  gap: 12px;
}

.palette-block {
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.07);
}

.palette-color {
  height: 90px;
  width: 100%;
}

.palette-label {
  padding: 10px 12px;
}

.palette-label strong {
  display: block;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 2px;
}

.palette-label span, .palette-label small {
  display: block;
  font-size: 11px;
  color: var(--ink-soft);
  font-family: monospace;
  letter-spacing: 0.3px;
}

.palette-label small {
  display: block;
  font-size: 11px;
  color: var(--forest-bright, #5f7248);
  margin-top: 2px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

@media (max-width: 768px) {
  .palette-full { grid-template-columns: repeat(3, 1fr); }
  .palette-section { padding: 20px; }
}

/* Sidebar CTA */
.sidebar-cta { background: var(--forest-soft); border-color: transparent; }

.sidebar-cta p { font-size: 14px; line-height: 1.45; color: var(--forest-deep); margin-bottom: 16px; }

.sidebar-cta .btn {
  display: block;
  text-align: center;
  padding: 10px 20px;
  background: var(--forest);
  color: white;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  transition: background 0.2s;
}

.sidebar-cta .btn:hover { background: var(--forest-deep); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1200px) {
  .index-grid { grid-template-columns: repeat(3, 1fr); }
  .catalog-grid { grid-template-columns: repeat(3, 1fr); }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 1100px) {
  .journal-grid { grid-template-columns: 1fr 1fr; }
  .journal-featured { grid-row: auto; grid-column: span 2; }
  .mega-sfeer-grid { grid-template-columns: repeat(5, 1fr); }
}

@media (max-width: 900px) {
  .nav-inner { padding: 0 20px; }
  .nav-left { display: none; }
  .nav-logo { grid-column: 2; }
  .nav-right { grid-column: 3; }
  .nav-hamburger { display: flex; }
  .nav-pill { display: none; }

  .hp-hero { padding: 80px 20px 32px; min-height: 600px; }
  .hp-hero-content { grid-template-columns: 1fr; gap: 32px; }
  .hp-hero-actions { align-items: flex-start; flex-direction: row; flex-wrap: wrap; }

  .section-header { padding: 80px 20px 32px; grid-template-columns: 1fr; gap: 16px; }

  .gallery { padding: 32px 20px 60px; grid-template-columns: repeat(6, 1fr); gap: 10px; }
  .span-lg, .span-xl { grid-column: span 6; aspect-ratio: 4/3; }
  .span-md, .span-vt { grid-column: span 3; aspect-ratio: 3/4; }
  .span-sm { grid-column: span 3; aspect-ratio: 1/1; }

  .room-switch { padding: 80px 20px; }
  .room-showcase { grid-template-columns: 1fr; }

  .journal { padding: 0 20px 60px; }
  .journal-grid { grid-template-columns: 1fr; }
  .journal-featured { grid-column: auto; }

  .cta-band { padding: 64px 20px; }
  .cta-inner { grid-template-columns: 1fr; gap: 24px; }

  .site-footer { padding: 60px 20px 24px; }
  .footer-top, .footer-grid { grid-template-columns: 1fr 1fr; }

  .index-hero { padding: 80px 20px 40px; min-height: 55vh; }
  .index-grid { grid-template-columns: repeat(2, 1fr); padding: 32px 20px 60px; }

  .catalog-header { padding: 120px 20px 48px; grid-template-columns: 1fr; }
  .catalog-filter-bar { padding: 12px 20px; }
  .catalog-grid { grid-template-columns: repeat(2, 1fr); padding: 32px 20px 60px; }

  .content-wrap { padding: 40px 20px 60px; grid-template-columns: 1fr; }
  .sidebar { display: none; }

  .page-hero { padding: 80px 20px 40px; min-height: 60vh; }
  .page-hero h1 { font-size: clamp(2.2rem, 7vw, 4rem); }

  .mega-rooms-grid { grid-template-columns: repeat(4, 1fr); padding: 24px 20px; }
}

@media (max-width: 640px) {
  .index-grid { grid-template-columns: 1fr; }
  .catalog-grid { grid-template-columns: 1fr 1fr; }
  .product-grid { grid-template-columns: 1fr; }
  .mega-sfeer-grid { grid-template-columns: repeat(3, 1fr); }
  .mega-rooms-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .gallery { grid-template-columns: 1fr; }
  .span-lg, .span-md, .span-sm, .span-xl, .span-vt { grid-column: span 1; aspect-ratio: 4/3; }
  .footer-top, .footer-grid { grid-template-columns: 1fr; }
  .catalog-grid { grid-template-columns: 1fr; }
  .editorial-insert { grid-column: span 1; }
}

/* ===== HP FILTER CHIPS (mobile homepage) ===== */
.hp-filter-chips {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 0 16px 8px;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.hp-filter-chips::-webkit-scrollbar { display: none; }
.hp-filter-chip {
  flex-shrink: 0;
  background: var(--forest-glow, #c5d1b0);
  color: var(--forest, #3a4d2e);
  border: none;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 13px;
  font-family: inherit;
  cursor: pointer;
  white-space: nowrap;
}
.hp-filter-chip.active {
  background: var(--forest, #3a4d2e);
  color: #fff;
}

/* ===== TOC MOBILE COLLAPSIBLE ===== */
@media (max-width: 768px) {
  .toc {
    border: 1px solid var(--sand, #ede9e3);
    border-radius: 8px;
    overflow: hidden;
  }
  .toc summary {
    padding: 12px 16px;
    cursor: pointer;
    font-weight: 600;
    font-size: 14px;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .toc summary::after {
    content: '+';
    font-size: 18px;
    font-weight: 300;
    color: var(--forest-bright, #5f7248);
  }
  details.toc[open] summary::after {
    content: '\2212';
  }
  .toc ol, .toc ul {
    padding: 0 16px 16px;
  }
}

/* ===== MOBILE H1 ARTIKEL ===== */
@media (max-width: 768px) {
  .page-hero-content h1 {
    font-size: clamp(22px, 5.5vw, 36px);
    line-height: 1.25;
  }
}

/* ===== VERWANTE SFEREN ===== */
.verwante-sferen {
  margin: 48px 0 0;
  padding: 32px 0;
  border-top: 1px solid var(--sand, #ede9e3);
}
.verwante-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--forest-bright, #5f7248);
  margin-bottom: 16px;
  font-weight: 600;
}
.verwante-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.verwante-card {
  text-decoration: none;
  color: var(--ink, #1a1814);
  display: block;
  border-radius: 8px;
  overflow: hidden;
  background: var(--sand, #ede9e3);
  transition: transform 0.2s ease;
}
.verwante-card:hover {
  transform: translateY(-2px);
}
.verwante-card img {
  width: 100%;
  height: 100px;
  object-fit: cover;
  display: block;
}
.verwante-card span {
  display: block;
  padding: 8px 12px;
  font-size: 13px;
  font-weight: 500;
}
@media (max-width: 768px) {
  .verwante-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ===== SFEER INTRO ===== */
.sfeer-intro {
  max-width: 1600px;
  margin: 0 auto;
  padding: 48px 48px 0;
  font-size: 17px;
  line-height: 1.8;
  color: var(--ink-soft);
}
@media (max-width: 768px) {
  .sfeer-intro {
    font-size: 15px;
    text-align: left;
  }
}

/* ===== BIBLIOTHEEK ===== */
.bib-hero {
  padding: 80px 24px 40px;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}
.bib-hero-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin-bottom: 16px;
}
.bib-hero-title em {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 400;
  color: var(--forest-glow);
}
.bib-hero-sub {
  font-size: 17px;
  color: var(--ink-dim, #5a5650);
  line-height: 1.6;
  max-width: 480px;
  margin: 0 auto;
}
.bib-filters {
  display: flex;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
  padding: 20px 24px 24px;
  border-bottom: 1px solid var(--sand);
}
.bib-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
  padding: 48px 32px 80px;
  max-width: 1600px;
  margin: 0 auto;
}
.bib-card {
  text-decoration: none;
  color: var(--ink);
  border-radius: 10px;
  overflow: hidden;
  background: var(--sand);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.bib-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.1);
}
.bib-card-img img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  display: block;
}
.bib-card-body {
  padding: 14px 16px;
}
.bib-card-naam {
  font-weight: 600;
  font-size: 15px;
  display: block;
}
.bib-card-tag {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--forest-bright);
  display: block;
  margin-top: 3px;
}
@media (max-width: 600px) {
  .bib-hero { padding: 60px 20px 32px; }
  .bib-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; padding: 24px 16px 60px; }
  .bib-card-img img { height: 130px; }
}

.bibliotheek-hero {
  padding: 80px 24px 48px;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}
.bibliotheek-hero h1 {
  font-size: clamp(32px, 5vw, 56px);
  margin-bottom: 16px;
}
.bibliotheek-hero p {
  font-size: 18px;
  color: var(--ink-dim, #5a5650);
  line-height: 1.7;
}
.bibliotheek-filters {
  display: flex;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
  padding: 24px;
  border-bottom: 1px solid var(--sand, #ede9e3);
}
.bibliotheek-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
  padding: 40px 24px;
  max-width: 1400px;
  margin: 0 auto;
}
.bibliotheek-card {
  text-decoration: none;
  color: var(--ink, #1a1814);
  border-radius: 10px;
  overflow: hidden;
  background: var(--sand, #ede9e3);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.bibliotheek-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.1);
}
.bibliotheek-card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  display: block;
}
.bibliotheek-card-body {
  padding: 14px 16px;
}
.bibliotheek-card-naam {
  font-weight: 600;
  font-size: 15px;
  display: block;
}
.bibliotheek-card-karakter {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--forest-bright, #5f7248);
  display: block;
  margin-top: 3px;
}

/* ===== OVER PAGINA ===== */
.over-content {
  max-width: 720px;
  margin: 80px auto;
  padding: 0 24px;
}
.over-content h1 {
  font-size: clamp(32px, 4vw, 48px);
  margin-bottom: 8px;
}
.over-content .over-intro {
  font-size: 20px;
  color: var(--ink-dim, #5a5650);
  line-height: 1.7;
  margin-bottom: 48px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--sand, #ede9e3);
}
.over-content h2 {
  font-size: 22px;
  margin: 40px 0 12px;
  color: var(--forest, #3a4d2e);
}
.over-content p {
  line-height: 1.8;
  margin-bottom: 16px;
}
.affiliate-notice-box {
  background: var(--sand, #ede9e3);
  border-left: 4px solid var(--forest-bright, #5f7248);
  padding: 16px 20px;
  border-radius: 4px;
  margin: 24px 0;
  font-size: 14px;
  line-height: 1.7;
}

/* ===== INLINE AFFILIATE CTA ===== */
.inline-affiliate-cta {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--sand, #ede9e3);
  border-radius: 8px;
  padding: 14px 20px;
  margin: 24px 0;
  font-size: 14px;
}
.inline-affiliate-btn {
  flex-shrink: 0;
  background: var(--forest-deep, #7a6040);
  color: #fff;
  text-decoration: none;
  padding: 10px 18px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 500;
  white-space: nowrap;
  transition: background 0.15s;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}
.inline-affiliate-btn:hover {
  background: var(--forest, #9b7b52);
}

/* ===== PRODUCT CAROUSEL (inline artikel) ===== */
.product-carousel {
  margin: 32px 0;
  position: relative;
}
.pc-label {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--forest-deep);
  margin-bottom: 12px;
}
.pc-track {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-bottom: 4px;
}
.pc-track::-webkit-scrollbar { display: none; }
.pc-card {
  flex: 0 0 160px;
  scroll-snap-align: start;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  overflow: hidden;
  text-decoration: none;
  color: var(--ink);
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s, transform 0.2s;
}
.pc-card:hover { box-shadow: 0 8px 24px rgba(0,0,0,0.10); transform: translateY(-2px); }
.pc-img {
  aspect-ratio: 1/1;
  background: var(--bg-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.pc-img img { width: 100%; height: 100%; object-fit: contain; }
.pc-body {
  padding: 10px 12px 12px;
  display: flex;
  flex-direction: column;
  gap: 3px;
  flex: 1;
}
.pc-brand {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--forest-deep);
}
.pc-title {
  font-size: 12px;
  font-weight: 500;
  line-height: 1.35;
  color: var(--ink);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.pc-price {
  font-size: 13px;
  font-weight: 700;
  color: var(--forest-deep);
  margin-top: auto;
  padding-top: 6px;
}
.pc-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
}
.pc-prev, .pc-next {
  flex: 0 0 32px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: var(--bg-card);
  color: var(--ink);
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 1px 4px rgba(0,0,0,0.08);
  transition: background 0.15s, box-shadow 0.15s;
  padding: 0;
}
.pc-prev:hover, .pc-next:hover {
  background: var(--forest-soft);
  box-shadow: 0 2px 8px rgba(0,0,0,0.12);
}
.pc-wrapper .pc-track {
  flex: 1;
  min-width: 0;
}
@media (max-width: 768px) {
  .pc-card { flex: 0 0 140px; }
  .pc-prev, .pc-next { display: none; }
}

/* Inline product callout (affiliate conversie in artikel-flow) */
.inline-product {
  background: linear-gradient(135deg, var(--forest-soft) 0%, var(--bg-deep) 100%);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 24px 20px 20px;
  margin: 32px auto;
  position: relative;
  width: 100%;
  max-width: 600px;
  box-sizing: border-box;
  box-shadow: 0 2px 10px rgba(58,77,46,0.06);
  display: flex;
  gap: 16px;
  align-items: center;
}
.inline-product-img-link {
  flex: 0 0 90px;
  display: block;
  border-radius: 8px;
  overflow: hidden;
}
.inline-product-img-link img {
  width: 90px;
  height: 90px;
  object-fit: contain;
  display: block;
  background: #fff;
}
.inline-product-label {
  position: absolute;
  top: -11px;
  left: 16px;
  background: var(--forest);
  color: white;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 100px;
}
.inline-product-brand {
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--forest);
  display: block;
}
.inline-product-body {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
  min-width: 0;
}
.inline-product-body strong {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.01em;
  line-height: 1.35;
  display: block;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.inline-product-body span {
  font-size: 13px;
  color: var(--ink-soft);
  line-height: 1.5;
}
.inline-product-btn {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 8px;
  background: var(--forest);
  color: white;
  padding: 9px 18px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}
.inline-product-btn:hover {
  background: var(--forest-deep);
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(42,58,34,0.25);
}
@media (max-width: 768px) {
  .inline-product {
    padding: 20px 16px 16px;
    gap: 12px;
  }
  .inline-product-img-link,
  .inline-product-img-link img {
    width: 72px;
    height: 72px;
    flex: 0 0 72px;
  }
  .inline-product-btn {
    align-self: stretch;
    justify-content: center;
    padding: 10px 16px;
    white-space: normal;
    text-align: center;
  }
}
@media (max-width: 768px) {
  .inline-affiliate-cta {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}

/* ===== AFFILIATE NOTICE + BYLINE ===== */
.affiliate-notice {
  margin: 32px 0 16px;
  padding: 12px 16px;
  background: var(--sand, #ede9e3);
  border-radius: 6px;
  font-size: 12px;
  color: var(--ink-soft);
  line-height: 1.6;
}
.article-byline {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 24px 0;
  border-top: 1px solid var(--sand, #ede9e3);
  margin-top: 32px;
}
.article-byline-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--forest-deep, #7a6040);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  flex-shrink: 0;
  letter-spacing: 0.5px;
}
.article-byline-info strong {
  display: block;
  font-size: 14px;
  margin-bottom: 3px;
}
.article-byline-info span {
  font-size: 13px;
  color: var(--ink-soft);
  line-height: 1.5;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}

/* Materialen moodboard in article body */
.materialen-moodboard {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin: 24px 0 28px;
  border-radius: 10px;
  overflow: hidden;
}
.materialen-moodboard .mat-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
}
@media (max-width: 600px) {
  .kleur-swatches-grid { grid-template-columns: repeat(3, 1fr); }
  .materialen-moodboard { grid-template-columns: repeat(2, 1fr); }
  .materialen-moodboard .mat-img:last-child { grid-column: span 2; }
}

/* ===== MAGAZINE LAYOUT — editorial redesign ===== */

/* Section hero images (one per H2 section, full-width breakout) */
.section-hero-img {
  width: calc(100% + 80px);
  margin-left: -40px;
  aspect-ratio: 21 / 9;
  object-fit: cover;
  border-radius: 0;
  display: block;
  margin-top: 64px;
  margin-bottom: 48px;
  position: relative;
  z-index: 0;
}

/* Pull quotes — editorial magazine style */
.pull-quote,
blockquote.sfeer-quote {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 400;
  line-height: 1.3;
  color: var(--ink);
  margin: 64px -24px;
  padding: 40px 48px;
  border: none;
  border-top: 1px solid var(--accent);
  border-bottom: 1px solid var(--accent);
  quotes: none;
  position: relative;
  background: transparent;
  max-width: none;
}
.pull-quote::before,
blockquote.sfeer-quote::before {
  content: '';
  display: block;
  width: 32px;
  height: 3px;
  background: var(--accent);
  margin-bottom: 24px;
}
blockquote.sfeer-quote p { max-width: none; margin: 0; font-size: inherit; color: inherit; line-height: inherit; }

/* ===== PRODUCT CAROUSELS → EDITORIAL GRID ===== */
/* Product carousel → clean grid layout */
.product-carousel {
  margin: 32px 0 40px;
}
.product-carousel .pc-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--forest-deep);
  margin-bottom: 16px;
}
.product-carousel .pc-wrapper {
  display: block;
  overflow: visible;
}
.product-carousel .pc-track {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  overflow: visible !important;
  scroll-snap-type: none;
}
.product-carousel .pc-prev,
.product-carousel .pc-next { display: none !important; }
.product-carousel .pc-card {
  flex: none;
  width: auto;
  scroll-snap-align: none;
  border-radius: 10px;
}
.product-carousel .pc-img {
  aspect-ratio: 3/4;
}
.product-carousel .pc-img img {
  object-fit: cover;
  background: var(--bg-deep);
}
.product-carousel .pc-body { padding: 10px 12px 14px; }
.product-carousel .pc-title { font-size: 13px; -webkit-line-clamp: 2; }
@media (max-width: 900px) {
  .product-carousel .pc-track {
    grid-template-columns: repeat(2, 1fr) !important;
  }
  .product-carousel .pc-track .pc-card:first-child {
    grid-column: span 2;
    display: block;
  }
  .product-carousel .pc-track .pc-card:first-child .pc-body {
    padding: 14px 16px 16px;
  }
  .product-carousel .pc-track .pc-card:first-child .pc-title {
    font-size: 14px;
  }
}
@media (max-width: 480px) {
  .product-carousel .pc-track {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

/* ===== KLEUR SWATCHES — magazine scale ===== */
.kleur-swatches-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  gap: 20px;
  margin: 28px 0 40px;
}
.kleur-swatch-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.kleur-swatch-block {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border: 3px solid rgba(0,0,0,.06);
  box-shadow: 0 4px 16px rgba(0,0,0,.14);
}
.kleur-swatch-naam {
  font-weight: 600;
  font-size: 12px;
  text-align: center;
  color: var(--ink);
  letter-spacing: 0.01em;
}
.kleur-swatch-hex {
  font-family: monospace;
  font-size: 11px;
  color: var(--ink-dim);
  letter-spacing: 0.5px;
}
.kleur-swatch-ral {
  font-size: 10px;
  color: var(--ink-dim);
  text-transform: uppercase;
  letter-spacing: 0.8px;
}
.kleur-swatch-rol {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--ink-dim);
}
@media (max-width: 600px) {
  .kleur-swatches-grid { grid-template-columns: repeat(3, 1fr); gap: 14px; }
  .kleur-swatch-block { width: 72px; height: 72px; }
  .section-hero-img { border-radius: 8px; margin: 32px 0 20px; }
  .pull-quote { margin: 36px 0; }
  .product-carousel .pc-track { grid-template-columns: repeat(2, 1fr) !important; }
  .product-carousel .pc-track .pc-card:first-child { grid-column: span 2; }
}

/* ===== INLINE PARAGRAPH IMAGES ===== */
.inline-img {
  width: calc(100% + 40px);
  margin-left: -20px;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  border-radius: 4px;
  display: block;
  margin-top: 40px;
  margin-bottom: 32px;
  position: relative;
  z-index: 0;
}

/* ===== BINNENKIJKEN GALLERY ===== */
.foto-gallery {
  margin: 72px 0 48px;
  padding-top: 48px;
  border-top: 2px solid var(--line);
}
.foto-gallery h2 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-bottom: 8px;
  border: none;
}
.foto-gallery-sub {
  font-size: 12px;
  color: var(--ink-dim);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 28px;
  max-width: none;
}
.foto-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.foto-gallery-img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 8px;
  display: block;
  transition: transform 0.3s ease;
}
.foto-gallery-img:hover {
  transform: scale(1.02);
}
@media (max-width: 680px) {
  .foto-gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .foto-gallery { margin: 48px 0 32px; padding-top: 32px; }
  .inline-img { width: 100%; margin-left: 0; aspect-ratio: 4 / 3; margin-top: 20px; margin-bottom: 16px; border-radius: 6px; }
  .section-hero-img { width: 100%; margin-left: 0; aspect-ratio: 16/9; border-radius: 8px; margin-top: 32px; margin-bottom: 24px; }
  .pull-quote, blockquote.sfeer-quote { margin-left: 0; margin-right: 0; padding: 24px 0; font-size: 1.5rem; }
  .product-carousel .pc-track .pc-card:first-child { grid-column: span 2; display: block; }
  .product-carousel .pc-track { grid-template-columns: repeat(2, 1fr) !important; }
}

/* Sidebar swatch upgrade */
.swatch-block {
  width: 80px !important;
  height: 80px !important;
  border-radius: 4px;
  flex-shrink: 0;
}
.swatch-row {
  border-radius: 8px;
}
.swatch-row .swatch-info {
  padding: 4px 10px;
  font-size: 13px;
  line-height: 1.55;
}

/* ===== MOBILE STICKY BOTTOM CTA ===== */
