/* Optie A - Editorial magazine (Gaz Oakley / idyllic ceramics-herbs)
   Paper #f4efe4, olive-deep CTAs, warm/clay accents. */
:root {
  --paper: #f4efe4;
  --paper-2: #e9e0d1;
  --ink: #1c1914;
  --ink-mute: #6a6458;
  --olive: #3f4c30;
  --olive-deep: #2a3320;
  --olive-mid: #5a6b43;
  --olive-soft: #e6ebdd;
  --warm: #c4a06a;
  --clay: #b56b45;
  --rule: #d5c9b5;
  --white: #fffdf8;
  --font-display: "Libre Baskerville", Georgia, "Times New Roman", serif;
  --font-body: "Source Serif 4", Georgia, serif;
  --font-ui: "Source Sans 3", system-ui, sans-serif;
  --max: 1120px;
  --prose: 36rem;
  --radius: 12px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--olive-mid); text-underline-offset: 3px; }
a:hover { color: var(--olive); }
.container { width: min(100% - 2.5rem, var(--max)); margin-inline: auto; }
.prose-w { width: min(100% - 2.5rem, var(--prose)); margin-inline: auto; }

/* -- Masthead -- */
.masthead {
  background: var(--paper);
  border-bottom: 1px solid var(--rule);
  padding: 1.1rem 0 0;
}
.mast-row {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1rem;
  padding-bottom: 0.9rem;
}
.issue {
  font-family: var(--font-ui);
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.logo {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.8vw, 1.85rem);
  font-weight: 700;
  color: var(--olive);
  text-decoration: none;
  letter-spacing: -0.02em;
  text-align: center;
}
.logo em { font-style: italic; font-weight: 400; }
.mast-right {
  justify-self: end;
  font-family: var(--font-ui);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.nav-toggle {
  display: none;
  font-family: var(--font-ui);
  border: 1px solid var(--rule);
  background: var(--white);
  padding: 0.4rem 0.75rem;
  cursor: pointer;
}
.mast-nav {
  border-top: 1px solid var(--rule);
  padding: 0.72rem 0;
}
.mast-nav ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.25rem 1.75rem;
  list-style: none;
}
.mast-nav a {
  font-family: var(--font-ui);
  font-size: 0.74rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--ink-mute);
  font-weight: 500;
}
.mast-nav a:hover { color: var(--olive-deep); }
.mast-nav ul { gap: 0.2rem 1.15rem; }

/* -- Full-bleed hero -- */
.hero {
  position: relative;
  min-height: min(78vh, 620px);
  display: grid;
  align-items: end;
  color: var(--white);
  overflow: hidden;
  background: var(--olive) center/cover no-repeat;
}
.hero img.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(28, 25, 20, 0.22) 0%,
    rgba(28, 25, 20, 0.35) 35%,
    rgba(28, 25, 20, 0.88) 100%
  );
  pointer-events: none;
}
.hero-inner {
  position: relative;
  z-index: 1;
  padding: 4rem 0 3.25rem;
  max-width: 32rem;
}
.kicker {
  font-family: var(--font-ui);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--clay);
  margin-bottom: 0.9rem;
  display: inline-block;
  background: rgba(28, 25, 20, 0.45);
  padding: 0.35rem 0.7rem;
  border-radius: 2px;
  backdrop-filter: blur(2px);
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.75rem, 7vw, 4.25rem);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -0.035em;
  margin-bottom: 1rem;
}
.hero-lead {
  font-size: 1.15rem;
  line-height: 1.5;
  opacity: 0.92;
  margin-bottom: 1.75rem;
  font-weight: 400;
  max-width: 33ch;
}
.btn {
  display: inline-block;
  font-family: var(--font-ui);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.95rem 1.85rem;
  border: 1px solid transparent;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.btn-hero {
  background: var(--white);
  color: var(--olive);
  border-color: var(--white);
}
.btn-hero:hover {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn-olive {
  background: var(--olive-deep);
  color: var(--white);
  border-color: var(--olive-deep);
}
.btn-olive:hover {
  background: var(--olive);
  border-color: var(--olive);
  color: var(--white);
}
.btn-outline {
  background: transparent;
  color: var(--olive);
  border-color: var(--olive);
}
.btn-outline:hover {
  background: var(--olive);
  color: var(--white);
}

/* -- Spotlight products -- */
.spotlight {
  padding: 0;
  border-bottom: 1px solid var(--rule);
  background: var(--white);
}
.spot-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}
.spot {
  display: block;
  text-decoration: none;
  color: inherit;
  padding: 1.65rem 1rem 1.75rem;
  text-align: center;
  border-right: 1px solid var(--rule);
  transition: background 0.2s;
}
.spot:last-child { border-right: 0; }
.spot:hover { background: var(--olive-soft); color: inherit; }
.spot-img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  margin-bottom: 1.1rem;
  filter: saturate(0.92);
}
.spot h3 {
  font-family: var(--font-display);
  font-size: 0.95rem;
  color: var(--olive);
  margin-bottom: 0.25rem;
  font-weight: 700;
}
.spot p {
  font-family: var(--font-ui);
  font-size: 0.78rem;
  color: var(--ink-mute);
  letter-spacing: 0.02em;
  line-height: 1.35;
}

/* -- Sections -- */
.section { padding: 3.75rem 0; }
.section-head {
  margin-bottom: 2.25rem;
  max-width: 36rem;
}
.section-head.center {
  text-align: center;
  margin-inline: auto;
}
.eyebrow {
  font-family: var(--font-ui);
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--clay);
  margin-bottom: 0.55rem;
}
.section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 3.2vw, 2.45rem);
  color: var(--olive);
  letter-spacing: -0.025em;
  line-height: 1.15;
  margin-bottom: 0.6rem;
}
.section-head p { color: var(--ink-mute); font-size: 1.05rem; }

/* -- Featured cases: 1 large + 2 small -- */
.cases {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 1.75rem;
  align-items: stretch;
}
.case-lead {
  display: grid;
  grid-template-rows: auto 1fr;
  text-decoration: none;
  color: inherit;
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  overflow: hidden;
}
.case-lead:hover { color: inherit; }
.case-lead:hover h3 { color: var(--olive-mid); }
.case-lead img {
  width: 100%;
  aspect-ratio: 16/11;
  object-fit: cover;
}
.case-lead .body { padding: 1.5rem 1.6rem 1.75rem; }
.case-lead .cat,
.case-sm .cat {
  font-family: var(--font-ui);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--clay);
  margin-bottom: 0.5rem;
}
.case-lead h3 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.5vw, 1.95rem);
  color: var(--olive);
  line-height: 1.2;
  margin-bottom: 0.65rem;
}
.case-lead p { color: var(--ink-mute); font-size: 1rem; margin-bottom: 1rem; }
.case-lead .read {
  font-family: var(--font-ui);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--olive);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
  background: none;
  border: 0;
  padding: 0;
  display: inline;
}
.case-side {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}
.case-sm {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 1.1rem;
  text-decoration: none;
  color: inherit;
  border-bottom: 1px solid var(--rule);
  padding-bottom: 1.75rem;
  flex: 1;
}
.case-sm:last-child { border-bottom: 0; padding-bottom: 0; }
.case-sm:hover { color: inherit; }
.case-sm:hover h3 { color: var(--olive-mid); }
.case-sm img {
  width: 100%;
  height: 100%;
  min-height: 110px;
  object-fit: cover;
}
.case-sm h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--olive);
  line-height: 1.25;
  margin-bottom: 0.4rem;
}
.case-sm p {
  font-size: 0.92rem;
  color: var(--ink-mute);
  line-height: 1.45;
}

/* -- Pillars -- */
.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  counter-reset: p;
}
.pillar {
  border-top: 2px solid var(--olive);
  padding: 2rem 0 0.25rem;
  text-decoration: none;
  color: inherit;
}
.pillar:hover { color: inherit; }
.pillar:hover h3 { color: var(--olive-mid); }
.pillar::before {
  counter-increment: p;
  content: "0" counter(p);
  font-family: var(--font-ui);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  color: var(--warm);
  display: block;
  margin-bottom: 0.7rem;
}
.pillar h3 {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 700;
  color: var(--olive);
  margin-bottom: 0.55rem;
  letter-spacing: -0.02em;
}
.pillar p { font-size: 0.98rem; color: var(--ink-mute); }

/* -- Criteria -- */
.criteria {
  background: var(--olive-deep);
  color: var(--paper);
  padding: 3.25rem 0;
}
.criteria h2 {
  font-family: var(--font-display);
  font-size: 1.85rem;
  text-align: center;
  margin-bottom: 1.75rem;
}
.criteria ul {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.1rem 2.5rem;
  max-width: 46rem;
  margin: 0 auto;
}
.criteria li {
  font-size: 0.98rem;
  padding-left: 1.1rem;
  position: relative;
  line-height: 1.45;
  color: rgba(244, 239, 228, 0.85);
}
.criteria li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 0.55rem;
  height: 1px;
  background: var(--warm);
}
.criteria strong { color: var(--white); font-weight: 600; }

/* -- Footer -- */
.site-footer {
  background: var(--paper-2);
  border-top: 1px solid var(--rule);
  padding: 2.5rem 0 1.25rem;
  font-family: var(--font-ui);
  font-size: 0.85rem;
  color: var(--ink-mute);
}
.foot-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 1.75rem;
}
.foot-tag {
  margin-top: 0.5rem;
  color: var(--ink-mute);
  font-family: var(--font-body);
  font-style: italic;
  font-size: 1rem;
}
.foot-col h4 {
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--olive);
  margin-bottom: 0.7rem;
}
.foot-col ul { list-style: none; }
.foot-col a { text-decoration: none; color: var(--ink-mute); }
.foot-col a:hover { color: var(--olive); }
.foot-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
  padding-top: 1.15rem;
  border-top: 1px solid var(--rule);
  color: var(--ink-mute);
  font-size: 0.78rem;
}

/* ========== ARTICLE ========== */
.art-hero {
  padding: 2.75rem 0 0;
  text-align: center;
}
.crumb {
  font-family: var(--font-ui);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 1.15rem;
}
.crumb a { text-decoration: none; color: var(--ink-mute); }
.crumb a:hover { color: var(--olive); }
.art-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 4.5vw, 3.15rem);
  color: var(--olive);
  line-height: 1.12;
  letter-spacing: -0.03em;
  max-width: 16ch;
  margin: 0 auto 0.85rem;
}
.art-dek {
  font-style: italic;
  color: var(--ink-mute);
  font-size: 1.15rem;
  max-width: 34rem;
  margin: 0 auto 1.75rem;
}
.disclosure-quiet {
  font-family: var(--font-ui);
  font-size: 0.78rem;
  color: var(--ink-mute);
  max-width: 36rem;
  margin: 0 auto 1.75rem;
  line-height: 1.45;
}
.art-feature {
  width: min(100%, var(--max));
  margin: 0 auto 2.5rem;
  aspect-ratio: 21/9;
  object-fit: cover;
  object-position: center 35%;
  display: block;
}
@media (min-width: 1120px) {
  .art-feature { width: var(--max); }
}

.art-body { padding: 0 0 4rem; }
.art-body p { margin-bottom: 1.2rem; }
.art-body h2 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--olive);
  margin: 2.4rem 0 0.9rem;
  letter-spacing: -0.02em;
}
.drop::first-letter {
  font-family: var(--font-display);
  float: left;
  font-size: 3.5rem;
  line-height: 0.85;
  padding: 0.1rem 0.45rem 0 0;
  color: var(--olive);
  font-weight: 700;
}

/* Score / pull block */
.score-block {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--rule);
  border: 1px solid var(--rule);
  margin: 2rem 0 1.9rem;
}
.score-cell {
  background: var(--white);
  padding: 1.15rem 1rem;
  text-align: center;
}
.score-cell .label {
  font-family: var(--font-ui);
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 0.35rem;
}
.score-cell .val {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--olive);
  font-weight: 700;
}
.score-cell .note {
  font-family: var(--font-ui);
  font-size: 0.75rem;
  color: var(--ink-mute);
  margin-top: 0.25rem;
}

.pull {
  border-left: 3px solid var(--olive);
  padding: 0.35rem 0 0.35rem 1.35rem;
  margin: 2rem 0;
  font-family: var(--font-display);
  font-size: 1.35rem;
  line-height: 1.4;
  color: var(--olive);
  font-style: italic;
  max-width: 100%;
}

/* Mid-article product card */
.bought {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 1.25rem;
  background: var(--white);
  border: 1px solid var(--rule);
  padding: 1.25rem;
  margin: 2.25rem 0;
  align-items: center;
}
.bought img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}
.bought .tag {
  font-family: var(--font-ui);
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--warm);
  margin-bottom: 0.35rem;
}
.bought h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--olive);
  margin-bottom: 0.4rem;
}
.bought p {
  font-size: 0.95rem;
  color: var(--ink-mute);
  margin-bottom: 0.85rem !important;
}
.affiliate-note {
  font-family: var(--font-ui);
  font-size: 0.78rem;
  color: var(--ink-mute);
  margin: 0.65rem 0 0;
  line-height: 1.4;
}
.bought .affiliate-note {
  margin: 0.75rem 0 0 !important;
  font-size: 0.75rem;
}
.bought .btn { margin-top: 0.15rem; display: inline-block; }

.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 0.9rem;
}
.chip {
  font-family: var(--font-ui);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.28rem 0.55rem;
  border: 1px solid var(--rule);
  border-radius: 999px;
  color: var(--ink-mute);
  background: var(--paper);
}

/* End CTA */
.end-cta {
  background: var(--paper-2);
  color: var(--ink);
  border: 1px solid var(--rule);
  padding: 1.75rem 1.5rem;
  margin: 2.5rem 0 1.5rem;
  text-align: center;
}
.end-cta h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: var(--olive);
  font-weight: 700;
}
.end-cta p {
  font-size: 0.95rem;
  color: var(--ink-mute);
  margin-bottom: 1.15rem !important;
}
.end-cta .btn { margin: 0 auto; }
.end-cta .affiliate-note {
  margin: 0.75rem 0 0;
  margin-bottom: 0 !important;
}

.related {
  border-top: 1px solid var(--rule);
  padding-top: 2rem;
  margin-top: 2rem;
}
.related h3 {
  font-family: var(--font-ui);
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 1rem;
}
.related-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
.related a {
  text-decoration: none;
  color: inherit;
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 0.85rem;
  align-items: center;
}
.related a:hover h4 { color: var(--olive-mid); }
.related img {
  width: 80px;
  height: 80px;
  object-fit: cover;
}
.related h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--olive);
  line-height: 1.3;
}

.score-table {
  width: 100%;
  border-collapse: collapse;
  font-family: var(--font-ui);
  font-size: 0.9rem;
  margin: 1.25rem 0 1.75rem;
}
.score-table th, .score-table td {
  text-align: left;
  padding: 0.7rem 0.4rem;
  border-bottom: 1px solid var(--rule);
}
.score-table th {
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-mute);
  font-weight: 600;
}
.good { color: var(--olive); font-weight: 600; }
.mid { color: var(--warm); font-weight: 600; }

@media (max-width: 900px) {
  .spot-grid { grid-template-columns: repeat(3, 1fr); }
  .spot:nth-child(4), .spot:nth-child(5) { border-top: 1px solid var(--rule); }
  .spot:nth-child(3), .spot:nth-child(5) { border-right: 0; }
  .spot:nth-child(5) { grid-column: 2; }
  .cases { grid-template-columns: 1fr; }
  .pillars { grid-template-columns: 1fr; gap: 1.75rem; }
  .criteria ul { grid-template-columns: 1fr; }
  .foot-grid { grid-template-columns: 1fr; }
  .score-block { grid-template-columns: 1fr; }
  .bought { grid-template-columns: 1fr; }
  .related-grid { grid-template-columns: 1fr; }
  .art-feature { aspect-ratio: 16/9; width: 100%; }
}
@media (max-width: 640px) {
  .mast-row { grid-template-columns: 1fr auto; }
  .mast-right { display: none; }
  .logo { text-align: left; justify-self: start; }
  .nav-toggle { display: block; justify-self: end; }
  .mast-nav { display: none; }
  .mast-nav.is-open { display: block; }
  /* Spotlight: 2+2+1 */
  .spot-grid { grid-template-columns: 1fr 1fr; }
  .spot {
    border-right: 1px solid var(--rule);
    border-bottom: 1px solid var(--rule);
  }
  .spot:nth-child(even) { border-right: 0; }
  .spot:nth-child(5) {
    grid-column: 1 / -1;
    border-right: 0;
    max-width: 50%;
    margin-inline: auto;
    width: 100%;
  }
  .spot:nth-child(3), .spot:nth-child(4) { border-top: 0; }
  .case-sm { grid-template-columns: 100px 1fr; }
  .hero { min-height: min(62vh, 480px); }
  .hero-inner { padding: 3rem 0 3rem; } /* ≥24px lucht onder CTA */
  .score-table thead { display: none; }
  .score-table, .score-table tbody, .score-table tr, .score-table td {
    display: block;
    width: 100%;
  }
  .score-table tr {
    border: 1px solid var(--rule);
    margin-bottom: 0.75rem;
    padding: 0.75rem 0.9rem;
    background: var(--white);
  }
  .score-table td {
    border: 0;
    padding: 0.25rem 0;
  }
  .score-table td:first-child {
    font-family: var(--font-ui);
    font-size: 0.68rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--ink-mute);
    font-weight: 600;
    margin-bottom: 0.35rem;
  }
  .score-table td:nth-child(2)::before {
    content: "Dehydrator: ";
    font-weight: 600;
    color: var(--ink-mute);
  }
  .score-table td:nth-child(3)::before {
    content: "Droognet: ";
    font-weight: 600;
    color: var(--ink-mute);
  }
}

/* -- Hub pages -- */
.hub-prose .hub-cards {
  display: grid;
  gap: 0.85rem;
  margin: 1.25rem 0 1.75rem;
}
.hub-card {
  border-radius: var(--radius);
  display: block;
  text-decoration: none;
  color: inherit;
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  padding: 1.1rem 1.15rem 1.25rem;
  overflow: hidden;
  transition: background 0.15s, border-color 0.15s;
}
.hub-card:hover { border-color: var(--rule); background: var(--olive-soft); color: inherit; }
.hub-card .cat {
  font-family: var(--font-ui);
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--warm);
  margin-bottom: 0.35rem;
}
.hub-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--olive);
  margin-bottom: 0.35rem;
}
.hub-card p { font-size: 0.92rem; color: var(--ink-mute); margin: 0; }
.hub-related {
  border-top: 1px solid var(--rule);
  margin-top: 2rem;
  padding-top: 1.25rem;
}
.hub-related h3 {
  font-family: var(--font-ui);
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 0.65rem;
}
.hub-related ul { list-style: none; display: flex; flex-wrap: wrap; gap: 0.5rem 1.25rem; }
.hub-related a { font-family: var(--font-ui); font-size: 0.9rem; }
.hub-prose code {
  font-family: ui-monospace, monospace;
  font-size: 0.85em;
  background: var(--paper-2);
  padding: 0.1em 0.35em;
}
/* Generic score table mobile labels (non dehydrator) */
@media (max-width: 640px) {
  .score-table-generic td:nth-child(2)::before { content: "Score: "; font-weight: 600; color: var(--ink-mute); }
  .score-table-generic td:nth-child(3)::before { content: ""; }
}

/* -- Helpers & quiet strip -- */
.helper-strip {
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  background: var(--paper-2);
  padding: 2rem 0;
}
.helper-strip-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem 2.5rem;
  align-items: start;
}
.helper-strip h2 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--olive);
  margin-bottom: 0.4rem;
}
.helper-strip p {
  font-size: 0.98rem;
  color: var(--ink-mute);
  margin-bottom: 0.85rem;
  max-width: 36ch;
}
.helper-strip a.strip-link {
  font-family: var(--font-ui);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--olive);
  border-bottom: 1px solid var(--warm);
  padding-bottom: 0.15rem;
}
.helper-strip a.strip-link:hover { color: var(--olive-mid); }

.helper-wrap { padding-top: 0.5rem; padding-bottom: 3.5rem; }
.helper-layout { max-width: 40rem; }
.helper-progress {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  margin-bottom: 1.75rem;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid var(--rule);
  font-family: var(--font-ui);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.hp-step.is-active { color: var(--olive); font-weight: 600; }
.hp-step.is-done { color: var(--warm); }

.helper-panel h2 {
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 3vw, 1.85rem);
  color: var(--olive);
  margin-bottom: 0.5rem;
}
.helper-hint {
  color: var(--ink-mute);
  font-size: 1.02rem;
  margin-bottom: 1.35rem;
}
.helper-choices {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem;
  margin-bottom: 1.25rem;
}
.helper-choice {
  font-family: var(--font-ui);
  font-size: 0.92rem;
  font-weight: 500;
  text-align: left;
  padding: 0.95rem 1.1rem;
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  color: var(--ink);
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s, color 0.15s;
}
.helper-choice:hover {
  border-color: var(--clay);
  background: var(--olive-soft);
}
.helper-choice.is-selected {
  border-color: var(--olive-deep);
  background: var(--olive-deep);
  color: var(--white);
}
.helper-back {
  font-family: var(--font-ui);
  font-size: 0.85rem;
  background: none;
  border: 0;
  color: var(--ink-mute);
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 3px;
  padding: 0.35rem 0;
}
.helper-back:hover { color: var(--olive); }

.helper-results {
  display: grid;
  gap: 1rem;
  margin: 1.25rem 0 1.75rem;
}
.result-card {
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  padding: 1.2rem 1.25rem;
}
.result-card .cat {
  font-family: var(--font-ui);
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--warm);
  margin-bottom: 0.35rem;
}
.result-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--olive);
  margin-bottom: 0.4rem;
}
.result-meta {
  font-size: 0.95rem;
  color: var(--ink-mute);
  margin-bottom: 0.9rem;
}
.badge-bio, .badge-eigen {
  font-family: var(--font-ui);
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  display: inline-block;
  margin-left: 0.35rem;
  padding: 0.15rem 0.4rem;
  border: 1px solid var(--rule);
  color: var(--olive-mid);
}
.result-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1rem;
  align-items: center;
}
.result-links .btn { padding: 0.65rem 1.1rem; font-size: 0.72rem; }
.result-art {
  font-family: var(--font-ui);
  font-size: 0.85rem;
}
.helper-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 0.5rem;
}
.helper-actions .btn { padding: 0.75rem 1.25rem; }
.btn-ghost {
  background: transparent;
  color: var(--olive);
  border-color: var(--rule);
}
.btn-ghost:hover {
  border-color: var(--olive);
  background: var(--white);
  color: var(--olive);
}
.helper-empty { color: var(--ink-mute); }

.path-card {
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  padding: 1.5rem 1.4rem 1.6rem;
  margin-bottom: 1.25rem;
}
.path-card h3 {
  font-family: var(--font-display);
  font-size: 1.45rem;
  color: var(--olive);
  margin: 0.35rem 0 0.65rem;
}
.path-lead { color: var(--ink-mute); margin-bottom: 1rem; }
.path-steps {
  margin: 0 0 1.35rem 1.15rem;
  color: var(--ink);
}
.path-steps li { margin-bottom: 0.45rem; }
.path-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}
.path-ctas .btn { padding: 0.7rem 1.15rem; font-size: 0.72rem; }

.pakket-card .pakket-ids,
.pakket-card .pakket-blog {
  font-size: 0.88rem;
  color: var(--ink-mute);
  margin: 0.5rem 0;
}
.pakket-card .pakket-blog { font-style: italic; }
.pakket-cards { margin-top: 1.5rem; }

@media (max-width: 640px) {
  .helper-strip-inner { grid-template-columns: 1fr; }
  .helper-choices { grid-template-columns: 1fr; }
}

/* -- Product hub & product pages -- */
.score-block-5 {
  grid-template-columns: repeat(5, 1fr);
}
.score-cell-main {
  background: var(--paper-2);
}
.score-review-note {
  font-family: var(--font-ui);
  font-size: 0.85rem;
  color: var(--warm);
  margin: -0.75rem 0 1rem;
}
.score-why {
  font-size: 0.98rem;
  color: var(--ink-mute);
  margin-bottom: 1.75rem;
}
.fit-list {
  margin: 0.5rem 0 1.5rem 1.2rem;
}
.fit-list li { margin-bottom: 0.4rem; }
.product-cta-card { margin-top: 2rem; }
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.35rem;
  padding: 0 0 3rem;
}
.product-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  text-decoration: none;
  color: inherit;
  overflow: hidden;
  transition: border-color 0.15s, background 0.15s, box-shadow 0.15s;
}
.product-card:hover {
  border-color: var(--rule);
  background: var(--olive-soft);
  box-shadow: none;
  color: inherit;
}
.product-card img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}
.product-card-body { padding: 1rem 1.05rem 1.25rem; }
.product-card h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  line-height: 1.35;
  color: var(--olive);
  margin: 0.25rem 0 0.5rem;
}
.product-score-line { font-family: var(--font-ui); font-size: 0.88rem; }
.product-score-line .muted { color: var(--ink-mute); font-size: 0.8rem; }

/* Over: photo placeholder */
.about-layout {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 2rem;
  align-items: start;
  margin: 1.5rem 0 2rem;
}
.photo-frame {
  border: 1px solid var(--rule);
  background: var(--paper-2);
  aspect-ratio: 3/4;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1rem;
  position: relative;
  overflow: hidden;
}
.photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}
.photo-frame .ph-note {
  font-family: var(--font-ui);
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-mute);
  line-height: 1.5;
  z-index: 1;
}
.photo-frame .ph-note strong { display: block; color: var(--olive); margin-bottom: 0.35rem; letter-spacing: 0.08em; }

.art-long .prose-w p { margin-bottom: 1.1rem; }
.art-long .prose-w h2 { margin-top: 2.2rem; }

@media (max-width: 900px) {
  .score-block-5 { grid-template-columns: repeat(2, 1fr); }
  .score-cell-main { grid-column: 1 / -1; }
}
@media (max-width: 640px) {
  .about-layout { grid-template-columns: 1fr; }
  .photo-frame { max-width: 260px; }
  .score-block-5 { grid-template-columns: 1fr 1fr; }
}


/* -- Upgrade: 9-dim scores, FAQ, helper rich, hub imgs -- */
.score-block-9 {
  grid-template-columns: repeat(3, 1fr);
}
@media (min-width: 901px) {
  .score-block-9 {
    grid-template-columns: repeat(3, 1fr);
  }
  .score-block-9 .score-cell-main {
    grid-column: 1 / -1;
  }
}
@media (max-width: 900px) {
  .score-block-9 { grid-template-columns: repeat(2, 1fr); }
  .score-block-9 .score-cell-main { grid-column: 1 / -1; }
}
.faq-list { margin: 1rem 0 2rem; }
.faq-item {
  border: 1px solid var(--rule);
  background: var(--white);
  border-radius: var(--radius);
  margin-bottom: 0.5rem;
  padding: 0.85rem 1.1rem;
}
.faq-item summary {
  font-family: var(--font-ui);
  font-weight: 600;
  cursor: pointer;
  color: var(--olive);
  list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item[open] summary { margin-bottom: 0.5rem; }
.faq-item p { margin: 0; color: var(--ink-mute); font-size: 0.98rem; }
.helper-layout-wide { max-width: 48rem; }
.helper-progress { flex-wrap: wrap; gap: 0.35rem 0.75rem; }
.result-card-rich {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 1rem;
  align-items: start;
}
.result-card-rich img {
  width: 120px;
  height: 90px;
  object-fit: cover;
  border: 1px solid var(--rule);
}
.result-why {
  font-size: 0.92rem;
  color: var(--ink-mute);
  margin: 0.35rem 0 0.5rem;
  line-height: 1.45;
}
.hub-card-img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  margin-bottom: 0.65rem;
  display: block;
}
.hub-intro-links {
  font-family: var(--font-ui);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
  color: var(--ink-mute);
}
.prod-related {
  margin-top: 1.75rem;
  font-size: 0.95rem;
  color: var(--ink-mute);
}
.art-feature {
  display: block;
  width: 100%;
  max-height: 420px;
  object-fit: cover;
  margin-top: 1.25rem;
}
@media (max-width: 640px) {
  .result-card-rich { grid-template-columns: 1fr; }
  .result-card-rich img { width: 100%; height: 140px; }
}

/* Enrichment */
.season-now { padding: 2rem 0; background: var(--paper); border-bottom: 1px solid var(--rule); }
.season-now h2 { font-family: var(--font-body); font-size: 1.45rem; margin: 0.35rem 0 0.5rem; font-weight: 600; }
.season-now p { color: var(--ink-mute); max-width: 42rem; margin: 0; }
.visual-strip { padding: 2.5rem 0 1rem; }
.visual-strip-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 0.5rem; padding: 0 1rem; max-width: 1200px; margin: 1rem auto 0; }
.visual-strip-grid a { display: block; text-decoration: none; color: inherit; }
.visual-strip-grid img { width: 100%; aspect-ratio: 4/3; object-fit: cover; display: block; }
.visual-strip-grid span { display: block; font-family: var(--font-ui); font-size: 0.78rem; padding: 0.4rem 0.2rem; color: var(--ink-mute); }
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0.65rem; margin-top: 1.25rem; }
.gallery-grid img { width: 100%; aspect-ratio: 4/3; object-fit: cover; display: block; border: 1px solid var(--rule); }
.gallery-section { border-top: 1px solid var(--rule); }
.hub-visual-strip { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0.5rem; margin: 1.5rem 0; }
.hub-visual-strip img { width: 100%; aspect-ratio: 4/3; object-fit: cover; display: block; border: 1px solid var(--rule); }
figure.art-mid { margin: 1.75rem 0; }
figure.art-mid img { width: 100%; max-height: 420px; object-fit: cover; display: block; border: 1px solid var(--rule); }
figure.art-mid figcaption { font-family: var(--font-ui); font-size: 0.85rem; color: var(--ink-mute); margin-top: 0.4rem; }
.helper-step-visual { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.75rem; margin: 1.25rem 0 1.75rem; }
.helper-step-visual figure { margin: 0; }
.helper-step-visual img { width: 100%; aspect-ratio: 4/3; object-fit: cover; display: block; border: 1px solid var(--rule); }
.helper-step-visual figcaption { font-size: 0.8rem; color: var(--ink-mute); margin-top: 0.3rem; font-family: var(--font-ui); }
@media (max-width: 900px) {
  .visual-strip-grid { grid-template-columns: repeat(3, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .hub-visual-strip { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .visual-strip-grid { grid-template-columns: repeat(2, 1fr); }
  .helper-step-visual { grid-template-columns: 1fr; }
}

/* -- Gift redesign: cadeauhelper + pakketten (editorial magazine) -- */
.gift-helper .helper-layout-wide {
  max-width: 42rem;
}

.gift-stepper.helper-progress {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0;
  margin: 0 auto 1.75rem;
  max-width: 40rem;
  padding: 1.15rem 1.25rem 1rem;
  background: var(--white);
  border: 1px solid var(--rule);
  flex-wrap: nowrap;
  overflow-x: hidden;
  overflow-y: hidden;
  border-bottom: 1px solid var(--rule);
}

.gift-step {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1 1 0;
  min-width: 2.75rem;
  text-align: center;
  color: var(--ink-mute);
  font-family: var(--font-ui);
  font-size: 0.65rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 500;
}

.gift-step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 0.85rem;
  left: calc(50% + 1rem);
  width: calc(100% - 2rem);
  height: 1px;
  background: var(--rule);
  z-index: 0;
}

.gift-step-num {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.7rem;
  height: 1.7rem;
  border-radius: 50%;
  border: 1.5px solid var(--rule);
  background: var(--paper);
  color: var(--ink-mute);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0;
  margin-bottom: 0.4rem;
  transition: background 0.15s, border-color 0.15s, color 0.15s;
}

.gift-step-label {
  display: none;
  max-width: 5.5rem;
  line-height: 1.25;
  white-space: nowrap;
}

.gift-step.is-active .gift-step-label,
.gift-step.is-done .gift-step-label {
  display: block;
}

.gift-step.is-active .gift-step-num {
  background: var(--olive);
  border-color: var(--olive);
  color: var(--white);
}

.gift-step.is-active {
  color: var(--olive);
  font-weight: 600;
}

.gift-step.is-done .gift-step-num {
  background: var(--paper-2);
  border-color: var(--warm);
  color: var(--warm);
}

.gift-step.is-done {
  color: var(--warm);
}

.gift-step.is-done .gift-step-num::after {
  content: none;
}

.gift-step.is-done:not(.gift-step-result) .gift-step-num {
  font-size: 0;
}

.gift-step.is-done:not(.gift-step-result) .gift-step-num::before {
  content: "✓";
  font-size: 0.75rem;
  font-weight: 600;
}

.gift-panel.helper-panel {
  background: var(--white);
  border: 1px solid var(--rule);
  padding: 1.75rem 1.5rem 1.6rem;
  margin-bottom: 1.5rem;
}

.gift-panel h2 {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 1.75rem);
  color: var(--olive);
  margin-bottom: 0.45rem;
  line-height: 1.25;
}

.gift-panel .helper-hint {
  color: var(--ink-mute);
  font-size: 1rem;
  margin-bottom: 1.4rem;
  max-width: 38rem;
}

.gift-choices.helper-choices {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.85rem;
  margin-bottom: 1.1rem;
}

.gift-choice.helper-choice {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  padding: 0;
  overflow: hidden;
  background: var(--paper);
  border: 1.5px solid var(--rule);
  color: var(--ink);
  text-align: left;
  cursor: pointer;
  transition: border-color 0.18s, box-shadow 0.18s, transform 0.18s, background 0.18s;
}

.gift-choice.helper-choice img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}

.gift-choice-title {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--olive);
  padding: 0.7rem 0.85rem 0.15rem;
  line-height: 1.3;
}

.gift-choice-sub {
  font-family: var(--font-ui);
  font-size: 0.78rem;
  color: var(--ink-mute);
  padding: 0 0.85rem 0.85rem;
  line-height: 1.35;
}

.gift-choice.helper-choice:hover {
  border-color: var(--olive-mid);
  background: var(--white);
  box-shadow: 0 8px 22px rgba(42, 51, 32, 0.08);
  transform: translateY(-2px);
  color: var(--ink);
}

.gift-choice.helper-choice.is-selected {
  border-color: var(--olive);
  background: rgba(42, 51, 32, 0.06);
  color: var(--ink);
  box-shadow: 0 0 0 1px var(--olive);
}

.gift-choice.helper-choice.is-selected .gift-choice-title {
  color: var(--olive);
}

.gift-panel .helper-back {
  display: inline-block;
  margin-top: 0.25rem;
  font-family: var(--font-ui);
  font-size: 0.88rem;
  background: none;
  border: 0;
  color: var(--ink-mute);
  cursor: pointer;
  text-decoration: none;
  padding: 0.4rem 0;
}

.gift-panel .helper-back:hover {
  color: var(--olive);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.gift-results.helper-results {
  display: grid;
  gap: 1.35rem;
  margin: 1.25rem 0 1.75rem;
}

.gift-result-card.result-card-rich {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  padding: 0;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--rule);
}

.gift-result-media img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border: 0;
  height: auto;
}

.gift-result-body {
  padding: 1.25rem 1.35rem 1.4rem;
}

.gift-result-body .cat {
  font-family: var(--font-ui);
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--warm);
  margin-bottom: 0.35rem;
}

.gift-result-body h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--olive);
  margin-bottom: 0.55rem;
  line-height: 1.3;
}

.gift-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-bottom: 0.75rem;
}

.gift-chip {
  font-family: var(--font-ui);
  font-size: 0.68rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.25rem 0.55rem;
  border: 1px solid var(--rule);
  color: var(--ink-mute);
  background: var(--paper);
}

.gift-chip-bio {
  border-color: var(--olive-mid);
  color: var(--olive);
}

.gift-price-pill.pakket-price,
.pakket-price {
  display: inline-block;
  font-family: var(--font-ui);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.35rem 0.7rem;
  background: var(--paper-2);
  color: var(--olive);
  border: 1px solid var(--rule);
}

.gift-result-body .result-why {
  font-size: 1rem;
  color: var(--ink-mute);
  margin: 0.5rem 0 0.85rem;
  line-height: 1.55;
}

.gift-result-body .result-meta {
  margin-bottom: 1rem;
}

.gift-results-panel .helper-actions {
  gap: 0.75rem;
}

/* Pakketten gift spreads */
.gift-pakket-section {
  padding-top: 0.5rem;
  padding-bottom: 3.5rem;
}

.gift-helper-strip {
  max-width: 40rem;
  margin: 0 auto 2rem;
  padding: 1rem 1.25rem;
  background: var(--paper-2);
  border: 1px solid var(--rule);
  text-align: center;
  font-size: 1.02rem;
  color: var(--ink-mute);
}

.gift-helper-strip a {
  color: var(--olive);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid var(--warm);
}

.gift-helper-strip a:hover {
  color: var(--olive-mid);
}

.gift-pakket-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.25rem;
  max-width: 52rem;
  margin: 0 auto;
}

.gift-pakket-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: var(--white);
  border: 1px solid var(--rule);
  overflow: hidden;
}

.gift-pakket-media {
  position: relative;
  min-height: 100%;
}

.gift-pakket-media img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
  display: block;
}

.gift-pakket-media .pakket-price {
  position: absolute;
  top: 0.85rem;
  left: 0.85rem;
  background: rgba(255, 252, 246, 0.94);
}

.gift-pakket-body {
  padding: 1.5rem 1.5rem 1.6rem;
  display: flex;
  flex-direction: column;
}

.gift-for {
  font-family: var(--font-ui);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--warm);
  margin-bottom: 0.4rem;
}

.gift-pakket-body h2 {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.5vw, 1.65rem);
  color: var(--olive);
  margin-bottom: 0.65rem;
  line-height: 1.25;
}

.gift-pakket-desc {
  font-size: 1.02rem;
  color: var(--ink-mute);
  line-height: 1.55;
  margin-bottom: 1.1rem;
}

.gift-in-set-title {
  font-family: var(--font-ui);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--olive);
  font-weight: 600;
  margin-bottom: 0.45rem;
}

.gift-in-set {
  list-style: none;
  margin: 0 0 1.25rem;
  padding: 0;
}

.gift-in-set li {
  position: relative;
  padding-left: 1.1rem;
  margin-bottom: 0.35rem;
  font-size: 0.95rem;
  color: var(--ink);
  line-height: 1.4;
}

.gift-in-set li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 50%;
  background: var(--warm);
}

.gift-pakket-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: auto;
}

.gift-pakket-ctas .btn {
  padding: 0.7rem 1.15rem;
  font-size: 0.72rem;
}

.gift-pakket-foot {
  text-align: center;
  margin-top: 2.5rem;
  font-size: 0.98rem;
  color: var(--ink-mute);
}

.gift-pakket-foot a {
  color: var(--olive-mid);
}

@media (min-width: 721px) {
  .gift-pakket-card:nth-child(even) .gift-pakket-media {
    order: 2;
  }
}

@media (max-width: 900px) {
  .gift-choices.helper-choices {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 720px) {
  .gift-pakket-card {
    grid-template-columns: 1fr;
  }
  .gift-pakket-media img {
    min-height: 200px;
    aspect-ratio: 16 / 10;
    height: auto;
  }
  .gift-step-label {
    display: none !important;
  }
  .gift-step.is-active .gift-step-label {
    display: block !important;
  }
}

@media (max-width: 560px) {
  .gift-choices.helper-choices {
    grid-template-columns: 1fr;
  }
  .gift-panel.helper-panel {
    padding: 1.35rem 1.1rem 1.25rem;
  }
  .gift-stepper.helper-progress {
    padding: 0.9rem 0.75rem 0.75rem;
  }
}


/* Producthelper hub card inside gift results */
.gift-hub-card.path-card {
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: 12px;
  padding: 1.25rem 1.35rem;
}
.gift-hub-card.path-card h3 {
  font-family: var(--font-body);
  font-size: 1.25rem;
  margin: 0.2rem 0 0.45rem;
}
.gift-hub-card.path-card a {
  color: var(--olive-mid);
}

/* Hero multi-CTA wrap */
.hero-inner .btn {
  margin: 0.35rem 0.45rem 0.35rem 0;
}
.hero-inner .btn-ghost {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.45);
  color: var(--white);
}
.hero-inner .btn-ghost:hover {
  background: rgba(255,255,255,0.22);
}


/* -- Design UI fixes: compact stepper, hero CTAs, mobile contrast -- */
.gift-stepper-compact {
  display: none;
  width: 100%;
  flex-direction: column;
  gap: 0.55rem;
  margin: 0 0 0.25rem;
}
.gift-step-compact-text {
  font-family: var(--font-ui);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--olive);
}
.gift-stepper-bar {
  width: 100%;
  height: 4px;
  background: var(--rule);
  border-radius: 2px;
  overflow: hidden;
}
.gift-stepper-bar-fill {
  height: 100%;
  background: var(--olive);
  border-radius: 2px;
  transition: width 0.2s ease;
}

.hero-cta-row {
  margin: 1rem 0 0;
}
.hero-cta-row .btn {
  display: inline-block;
}
.art-hero .hero-cta-row {
  margin-top: 1.1rem;
  margin-bottom: 0.25rem;
}

@media (max-width: 720px) {
  .gift-stepper.helper-progress {
    display: block;
    flex-wrap: wrap;
    overflow-x: hidden !important;
    max-width: 100%;
    padding: 0.85rem 0.9rem 0.85rem;
  }
  .gift-stepper.helper-progress > .gift-step,
  .gift-stepper .gift-step {
    display: none !important;
  }
  .gift-stepper-compact {
    display: flex !important;
  }
  .gift-helper,
  .helper-wrap,
  .helper-layout {
    overflow-x: hidden;
    max-width: 100%;
  }
  .gift-choices,
  .helper-choices {
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 560px) {
  .hero-inner .btn-ghost {
    background: rgba(255, 255, 255, 0.92);
    border-color: rgba(255, 255, 255, 0.98);
    color: var(--olive);
  }
  .hero-inner .btn-ghost:hover {
    background: var(--white);
    color: var(--olive);
    border-color: var(--white);
  }
}

/* stepper-v3 mobile compact */

/* ---- Life-focused product sections (generator) ---- */
.life-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin: 1rem 0 1.75rem;
}
.kort-grid .kort-card {
  background: var(--paper);
  border: 1px solid rgba(60, 70, 40, 0.12);
  border-radius: 10px;
  padding: 1rem 1.1rem;
}
.kort-grid .kort-card h3 {
  font-family: "Source Sans 3", system-ui, sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--olive, #4a5c2f);
  margin: 0 0 0.45rem;
}
.kort-grid .kort-card p {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.45;
}
.when-grid {
  grid-template-columns: 1fr 1fr;
}
.when-grid h3 {
  font-size: 1.05rem;
  margin: 0 0 0.5rem;
}
.apply-steps {
  margin: 1rem 0 1.5rem;
  padding-left: 1.25rem;
}
.apply-steps li {
  margin-bottom: 0.65rem;
  line-height: 1.5;
}
.score-intro {
  font-size: 1.02rem;
  line-height: 1.55;
  margin: 0.5rem 0 1rem;
  color: var(--ink-muted, #4a4a42);
}
.life-personas li {
  margin-bottom: 0.55rem;
}
@media (max-width: 800px) {
  .life-grid { grid-template-columns: 1fr; }
  .when-grid { grid-template-columns: 1fr; }
}


/* -- Design refresh 20260919e -- */
.mast-nav .nav-more { position: relative; }
.mast-nav .nav-more > button,
.mast-nav .nav-more > summary {
  font-family: var(--font-ui);
  font-size: 0.74rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--ink-mute);
  background: none;
  border: 0;
  cursor: pointer;
  padding: 0;
  list-style: none;
}
.mast-nav .nav-more > summary::-webkit-details-marker { display: none; }
.mast-nav .nav-more > summary::after { content: " ▾"; font-size: 0.65em; }
.mast-nav .nav-mega {
  display: none;
  position: absolute;
  top: calc(100% + 0.65rem);
  left: 50%;
  transform: translateX(-50%);
  min-width: 16rem;
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  padding: 0.85rem 1rem;
  box-shadow: 0 10px 28px rgba(28, 25, 20, 0.08);
  z-index: 40;
  list-style: none;
  grid-template-columns: 1fr;
  gap: 0.35rem;
}
.mast-nav .nav-more[open] .nav-mega,
.mast-nav .nav-more:hover .nav-mega,
.mast-nav .nav-more:focus-within .nav-mega { display: grid; }
.mast-nav .nav-mega a {
  display: block;
  padding: 0.35rem 0.25rem;
  letter-spacing: 0.04em;
  font-size: 0.72rem;
}
.mast-nav .nav-mega a:hover { color: var(--clay); }

.hero { min-height: min(72vh, 580px); }
.hero-inner { padding: 4.5rem 0 3.75rem; max-width: 34rem; }
.hero h1 { text-shadow: 0 1px 18px rgba(28, 25, 20, 0.35); }
.hero-lead { opacity: 0.95; max-width: 36ch; }
.hero-inner .btn-ghost {
  background: rgba(255,253,248,0.1);
  border-color: rgba(255,253,248,0.5);
  color: var(--white);
}
.hero-inner .btn-ghost:hover {
  background: rgba(255,253,248,0.2);
  border-color: var(--white);
  color: var(--white);
}
.hero-cta-row { display: flex; flex-wrap: wrap; gap: 0.65rem; margin-top: 0.35rem; }

.case-lead .cat, .case-sm .cat, .hub-card .cat, .result-card .cat { color: var(--clay); }
.case-lead:hover { background: var(--olive-soft); }
.case-sm:hover h3, .case-lead:hover h3 { color: var(--olive-deep); }

.pakket-card, .gift-pakket-card, .gift-hub-card.path-card {
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  background: var(--white);
  overflow: hidden;
}
.pakket-card:hover, .gift-pakket-card:hover {
  background: var(--olive-soft);
}

.score-cell .val, .good { color: var(--olive-deep); }
.mid, .score-review-note, .hp-step.is-done { color: var(--clay); }
.chip.is-on, .chip[aria-pressed="true"] {
  background: var(--olive-soft);
  border-color: var(--clay);
  color: var(--olive-deep);
}

.section-alt { background: var(--paper-2); border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule); }
.hub-intro {
  max-width: 38rem;
  margin: 0 auto 1.75rem;
  text-align: center;
  color: var(--ink-mute);
}
.hub-intro p { font-size: 1.02rem; }

.spot { border-radius: 0; }
.spot-img { border-radius: 8px; }
.gallery-grid img, .visual-strip-grid img {
  border: 1px solid var(--rule);
  border-radius: 8px;
}

@media (max-width: 900px) {
  .mast-nav .nav-mega {
    position: static;
    transform: none;
    box-shadow: none;
    border: 0;
    padding: 0.35rem 0 0.35rem 0.75rem;
    background: transparent;
    display: none;
  }
  .mast-nav .nav-more[open] .nav-mega { display: grid; }
}


.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 0.85rem;
  margin-top: 0.25rem;
}
.hero-ctas .btn { margin: 0; }
.section { padding: 3.75rem 0; }
.section-alt {
  background: var(--paper-2);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.hub-intro {
  max-width: 38rem;
  margin: 0 auto 1.75rem;
  text-align: center;
  color: var(--ink-mute);
  font-size: 1.05rem;
}
.spot, .case-sm {
  border-radius: 0;
}
.spot-img, .case-sm img {
  border-radius: 8px;
}
.pakket-card, .gift-pakket-card, .path-card, .result-card, .helper-choice, .hub-card, .faq-item {
  border-radius: var(--radius);
}
.helper-choice:hover { border-color: var(--clay); background: var(--olive-soft); }
.pakket-card:hover, .gift-pakket-card:hover, .hub-card:hover {
  background: var(--olive-soft);
}
a:hover { color: var(--clay); }
.mast-nav a:hover { color: var(--olive-deep); }
.site-footer { opacity: 0.95; }


.hub-helper{margin:1.75rem 0 2.25rem;padding:1.25rem 1.25rem 1.5rem;border:1px solid var(--line,#e4ddd2);border-radius:12px;background:var(--paper-2,#f7f3eb)}
.hub-helper h2{margin:0 0 .35rem;font-size:1.35rem}
.hub-helper-lead{margin:0 0 1rem;color:var(--ink-soft,#5c564c)}
.hub-helper .gift-choices{margin-top:.75rem}
.hub-helper-result .hub-helper-links{display:grid;gap:.65rem;margin:.75rem 0 1rem}
.hub-helper-result a.hub-helper-prod{display:flex;gap:.75rem;align-items:center;text-decoration:none;color:inherit;padding:.5rem;border-radius:8px;background:#fff;border:1px solid var(--line,#e4ddd2)}
.hub-helper-result a.hub-helper-prod img{width:72px;height:54px;object-fit:cover;border-radius:6px}
.hub-helper-note{font-size:.92rem;color:var(--ink-soft,#5c564c)}
.hub-helper-actions{display:flex;flex-wrap:wrap;gap:.5rem;margin-top:.75rem}
.gift-combos{margin-top:1.75rem}.gift-combo-card{border:1px solid var(--line,#e4ddd2);border-radius:12px;background:#fff;padding:1rem 1.1rem;margin-bottom:.85rem}
.gift-combo-why{margin:.35rem 0 .65rem;color:var(--ink-soft,#5c564c)}
.gift-combo-parts{display:flex;flex-wrap:wrap;gap:.5rem;margin:.5rem 0}
.gift-combo-parts a{display:inline-flex;align-items:center;gap:.4rem;padding:.35rem .55rem;border-radius:999px;background:var(--paper-2,#f7f3eb);text-decoration:none;color:inherit;font-size:.92rem;border:1px solid var(--line,#e4ddd2)}
.gift-combo-parts img{width:28px;height:28px;object-fit:cover;border-radius:50%}
.gift-combo-meta{font-size:.9rem;color:var(--ink-soft,#5c564c)}
.gift-upgrade{margin-top:1rem;padding:.85rem 1rem;border-left:3px solid var(--olive,#6b7c4c);background:var(--paper-2,#f7f3eb);border-radius:0 8px 8px 0}
.gift-later-note{font-size:.88rem;color:var(--ink-soft,#5c564c);margin-top:1rem}


/* Cadeauhelper: interesse + random surprise */
.gift-surprise-bar {
  margin: 1.25rem 0 0.5rem;
  padding: 1rem 1.1rem;
  border: 1px solid var(--line, #e4ddd2);
  border-radius: 12px;
  background: var(--paper-2, #f7f3eb);
}
.gift-surprise-lead {
  margin: 0 0 0.65rem;
  color: var(--ink-soft, #5c564c);
}
.gift-surprise-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.gift-surprise-panel {
  margin: 1rem 0 0.25rem;
}
.gift-surprise-card {
  border: 1px solid var(--line, #e4ddd2);
  border-radius: 12px;
  background: #fff;
  padding: 1rem 1.1rem;
}
.gift-surprise-kicker {
  margin: 0 0 0.5rem;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--olive-deep, #4a5a38);
}
.gift-surprise-row {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.gift-surprise-row img {
  width: 140px;
  height: 105px;
  object-fit: cover;
  border-radius: 8px;
  flex-shrink: 0;
}
.gift-combo-advice {
  margin: 0.35rem 0 0.65rem;
  color: var(--ink-soft, #5c564c);
  font-size: 0.95rem;
}
.gift-interest-note {
  font-size: 0.92rem;
  color: var(--ink-soft, #5c564c);
}
@media (max-width: 640px) {
  .gift-surprise-row {
    flex-direction: column;
  }
  .gift-surprise-row img {
    width: 100%;
    height: auto;
    max-height: 180px;
  }
}


/* ============================================================
   Engagement + beauty: exit-intent, progress, sticky, toast
   ============================================================ */

.read-progress {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  z-index: 90;
  pointer-events: none;
  background: transparent;
}
.read-progress-fill {
  height: 100%;
  width: 0;
  background: var(--olive-deep);
  transition: width 0.08s linear;
}
@media (prefers-reduced-motion: reduce) {
  .read-progress-fill { transition: none; }
}

.exit-intent {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  background: rgba(42, 51, 32, 0.28);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.22s ease, visibility 0.22s ease;
}
.exit-intent.is-open {
  opacity: 1;
  visibility: visible;
}
.exit-intent-card {
  position: relative;
  width: min(420px, 100%);
  background: #fffef9;
  background: var(--paper, #f4efe4);
  border: 1px solid var(--rule, #d9d0c0);
  border-radius: 4px;
  padding: 1.75rem 1.6rem 1.5rem;
  box-shadow: 0 18px 48px rgba(42, 51, 32, 0.14);
}
.exit-intent-kicker {
  font-family: var(--font-ui);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--clay);
  margin: 0 0 0.55rem;
}
.exit-intent-card h2 {
  font-family: var(--font-display);
  font-size: 1.45rem;
  color: var(--olive-deep, #2a3320);
  margin: 0 0 0.55rem;
  line-height: 1.25;
}
.exit-intent-lead {
  margin: 0 0 1.25rem;
  color: var(--ink-soft, #5c564c);
  font-size: 0.98rem;
  line-height: 1.5;
}
.exit-intent-ctas {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}
.exit-intent-ctas .btn {
  text-align: center;
  width: 100%;
}
.exit-intent-ctas .btn-olive {
  background: var(--olive-deep);
  border-color: var(--olive-deep);
  color: var(--paper, #f4efe4);
}
.exit-intent-x {
  position: absolute;
  top: 0.55rem;
  right: 0.65rem;
  width: 2rem;
  height: 2rem;
  border: 0;
  background: transparent;
  font-size: 1.45rem;
  line-height: 1;
  color: var(--ink-mute, #8a8276);
  cursor: pointer;
  border-radius: 4px;
}
.exit-intent-x:hover,
.exit-intent-x:focus-visible {
  color: var(--olive-deep);
  outline: none;
  background: var(--paper-2, #e9e0d1);
}
@media (prefers-reduced-motion: reduce) {
  .exit-intent { transition: none; }
}

.sticky-mini-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 80;
  transform: translateY(110%);
  transition: transform 0.28s ease;
  pointer-events: none;
}
.sticky-mini-cta.is-visible {
  transform: translateY(0);
  pointer-events: auto;
}
.sticky-mini-cta-inner {
  margin: 0 auto;
  max-width: 720px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 0.65rem;
  padding: 0.7rem 1rem;
  background: var(--paper, #f4efe4);
  border: 1px solid var(--rule, #d9d0c0);
  border-bottom: 0;
  border-radius: 10px 10px 0 0;
  box-shadow: 0 -8px 28px rgba(42, 51, 32, 0.1);
}
.sticky-mini-cta .btn {
  font-size: 0.88rem;
  padding: 0.45rem 0.9rem;
}
.sticky-mini-cta .btn-ghost {
  background: transparent;
  border: 1px solid var(--rule);
  color: var(--olive-deep);
}
.sticky-mini-x {
  margin-left: auto;
  border: 0;
  background: transparent;
  font-size: 1.35rem;
  color: var(--ink-mute);
  cursor: pointer;
  width: 2rem;
  height: 2rem;
  line-height: 1;
}
/* Lift above gift-stepper compact bar if both somehow present */
body:has(.gift-stepper) .sticky-mini-cta {
  display: none !important;
}
@media (max-width: 720px) {
  .sticky-mini-cta-inner {
    border-radius: 0;
    max-width: none;
  }
  .sticky-mini-cta .btn {
    flex: 1 1 auto;
    text-align: center;
  }
}
@media (prefers-reduced-motion: reduce) {
  .sticky-mini-cta { transition: none; }
}

.back-to-top {
  position: fixed;
  right: 1.1rem;
  bottom: 1.1rem;
  z-index: 70;
  width: 2.55rem;
  height: 2.55rem;
  border-radius: 999px;
  border: 1px solid var(--rule);
  background: var(--paper, #f4efe4);
  color: var(--olive-deep);
  font-size: 1.1rem;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
  box-shadow: 0 6px 18px rgba(42, 51, 32, 0.1);
}
.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
}
.sticky-mini-cta.is-visible ~ .back-to-top,
body:has(.sticky-mini-cta.is-visible) .back-to-top {
  bottom: 4.75rem;
}
body:has(.gift-stepper) .back-to-top {
  bottom: 1.1rem;
}
@media (max-width: 720px) {
  body:has(.gift-stepper) .back-to-top {
    bottom: 5.5rem; /* clear compact stepper */
  }
}
.back-to-top:hover,
.back-to-top:focus-visible {
  background: var(--olive-deep);
  color: var(--paper);
  border-color: var(--olive-deep);
  outline: none;
}
@media (prefers-reduced-motion: reduce) {
  .back-to-top { transition: none; }
}

.verder-kijken {
  padding: 0.65rem 0 0;
  margin: 0 0 0.25rem;
}
.verder-kijken-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem 0.55rem;
  padding: 0.55rem 0.85rem;
  background: var(--paper-2, #e9e0d1);
  border: 1px solid var(--rule);
  border-radius: 6px;
  font-family: var(--font-ui);
  font-size: 0.88rem;
}
.verder-kijken-kicker {
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--clay);
  font-weight: 600;
}
.verder-kijken a {
  color: var(--olive-deep);
  text-decoration: none;
  border-bottom: 1px solid transparent;
}
.verder-kijken a:hover {
  border-bottom-color: var(--clay);
}
.verder-kijken-sep {
  color: var(--ink-mute);
  opacity: 0.7;
}
.verder-kijken-x {
  margin-left: auto;
  border: 0;
  background: transparent;
  font-size: 1.2rem;
  color: var(--ink-mute);
  cursor: pointer;
  line-height: 1;
}

.engage-toast {
  position: fixed;
  left: 50%;
  bottom: 1.35rem;
  transform: translateX(-50%) translateY(12px);
  z-index: 85;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  max-width: min(420px, calc(100% - 2rem));
  padding: 0.75rem 0.9rem 0.75rem 1.1rem;
  background: var(--paper, #f4efe4);
  border: 1px solid var(--rule);
  border-radius: 8px;
  box-shadow: 0 10px 28px rgba(42, 51, 32, 0.12);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease;
  font-family: var(--font-ui);
  font-size: 0.92rem;
}
.engage-toast.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.engage-toast p { margin: 0; }
.engage-toast a {
  color: var(--olive-deep);
  font-weight: 600;
}
.engage-toast-x {
  border: 0;
  background: transparent;
  font-size: 1.25rem;
  color: var(--ink-mute);
  cursor: pointer;
  line-height: 1;
}
body:has(.gift-stepper) .engage-toast,
body:has(.sticky-mini-cta.is-visible) .engage-toast {
  bottom: 5.25rem;
}
@media (prefers-reduced-motion: reduce) {
  .engage-toast { transition: none; }
}

/* Strengthen related strip (Lees ook) */
.related ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.55rem;
}
.related ul li a {
  display: block;
  padding: 0.55rem 0.75rem;
  border: 1px solid var(--rule);
  border-radius: 4px;
  background: #fffef9;
  text-decoration: none;
  color: var(--olive-deep);
  font-family: var(--font-ui);
  font-size: 0.92rem;
  transition: border-color 0.15s ease, background 0.15s ease;
}
.related ul li a:hover {
  border-color: var(--clay);
  background: var(--paper);
}
.related h3 {
  color: var(--clay);
}


/* -- CRO conversion utilities (20260920c) -- */
.proof-line {
  font-family: var(--font-ui, "Source Sans 3", system-ui, sans-serif);
  font-size: 0.95rem;
  font-style: italic;
  color: var(--ink-mute, #6a6458);
  margin: 0.5rem 0 0.75rem;
}
.soft-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin: 0.5rem 0 0.35rem;
}
.soft-chip {
  font-family: var(--font-ui, "Source Sans 3", system-ui, sans-serif);
  font-size: 0.68rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.28rem 0.55rem;
  border-radius: 999px;
  background: var(--olive-soft, #e6ebdd);
  color: var(--olive-deep, #2a3320);
  border: 1px solid var(--rule, #d5c9b5);
}
.soft-chip-gift {
  background: #f3e6d4;
  color: var(--clay, #b56b45);
}
.trust-strip {
  background: var(--paper-2, #e9e0d1);
  border-block: 1px solid var(--rule, #d5c9b5);
  padding: 0.85rem 0;
}
.trust-strip-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1.25rem;
  justify-content: center;
  font-family: var(--font-ui, "Source Sans 3", system-ui, sans-serif);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-mute, #6a6458);
}
.money-strip { padding-block: 2.5rem; }
.money-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.25rem;
}
@media (max-width: 900px) {
  .money-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 560px) {
  .money-grid { grid-template-columns: 1fr; }
}
.money-card {
  background: var(--white, #fffdf8);
  border: 1px solid var(--rule, #d5c9b5);
  border-radius: var(--radius, 12px);
  padding: 1.1rem 1.15rem 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}
.money-kicker {
  font-family: var(--font-ui, "Source Sans 3", system-ui, sans-serif);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--olive-mid, #5a6b43);
  margin: 0;
}
.money-card h3 {
  font-family: var(--font-display, "Libre Baskerville", Georgia, serif);
  font-size: 1.15rem;
  color: var(--olive-deep, #2a3320);
  margin: 0;
}
.money-card p { margin: 0; font-size: 0.98rem; color: var(--ink, #1c1914); }
.money-actions { display: flex; flex-wrap: wrap; gap: 0.45rem; margin-top: 0.55rem; }
.money-actions .btn { padding: 0.55rem 0.9rem; font-size: 0.78rem; }
.money-compare { margin-top: 1.5rem; }
.compare-lite {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
  margin: 1.25rem 0 1.5rem;
}
@media (max-width: 640px) {
  .compare-lite { grid-template-columns: 1fr; }
}
.compare-lite-col {
  background: var(--olive-soft, #e6ebdd);
  border: 1px solid var(--rule, #d5c9b5);
  border-radius: var(--radius, 12px);
  padding: 0.9rem 1rem;
}
.compare-lite-kicker {
  font-family: var(--font-ui, "Source Sans 3", system-ui, sans-serif);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--olive-deep, #2a3320);
  margin: 0 0 0.35rem;
  font-weight: 600;
}
.compare-lite-col p:last-child { margin: 0; font-size: 0.98rem; }
.complete-set {
  margin: 2rem 0 1.5rem;
  padding: 1.25rem 1.2rem 1.35rem;
  background: var(--white, #fffdf8);
  border: 1px solid var(--rule, #d5c9b5);
  border-radius: var(--radius, 12px);
}
.complete-set-title {
  font-family: var(--font-display, "Libre Baskerville", Georgia, serif);
  font-size: 1.35rem;
  color: var(--olive-deep, #2a3320);
  margin: 0 0 0.35rem;
}
.complete-set-lead { margin: 0 0 0.9rem; color: var(--ink-mute, #6a6458); font-size: 0.98rem; }
.complete-set-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
}
@media (max-width: 720px) {
  .complete-set-grid { grid-template-columns: 1fr; }
}
.complete-set-card {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 0.75rem 0.85rem;
  border-radius: 10px;
  border: 1px solid var(--rule, #d5c9b5);
  text-decoration: none;
  color: inherit;
  background: var(--paper, #f4efe4);
}
.complete-set-card:hover { border-color: var(--olive-mid, #5a6b43); }
.complete-set-card strong { color: var(--olive-deep, #2a3320); font-size: 0.95rem; }
.complete-set-card span { font-size: 0.88rem; color: var(--ink-mute, #6a6458); }
.complete-set-cta-row { display: flex; flex-wrap: wrap; gap: 0.5rem; margin: 1rem 0 0; }
.product-cta-actions { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 0.65rem; }
.product-cta-card .btn-olive,
.hero-cta-row .btn-olive,
.money-actions .btn-olive {
  background: var(--olive-deep, #2a3320);
  border-color: var(--olive-deep, #2a3320);
  font-weight: 600;
  padding: 0.7rem 1.15rem;
}
.hero-proof {
  margin: 0.75rem 0 0;
  font-family: var(--font-ui, "Source Sans 3", system-ui, sans-serif);
  font-size: 0.88rem;
  color: rgba(255,253,248,0.88);
}
.hub-result-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0.85rem 0 0.35rem;
}
.hub-result-cta-row .btn { font-size: 0.78rem; padding: 0.55rem 0.9rem; }
.mid-product-cta {
  margin: 1.75rem 0;
  padding: 1.1rem 1.15rem;
  border: 1px solid var(--rule, #d5c9b5);
  border-radius: var(--radius, 12px);
  background: var(--olive-soft, #e6ebdd);
  display: grid;
  gap: 0.45rem;
}
.mid-product-cta .proof-line { margin: 0; }
.mid-product-cta .btn { align-self: start; }
.sticky-mini-cta .btn-olive {
  background: var(--olive-deep, #2a3320);
  font-weight: 600;
  flex: 1 1 auto;
}
.sticky-mini-cta-inner { gap: 0.45rem; }
@media (max-width: 640px) {
  .sticky-mini-cta-inner { flex-wrap: nowrap; }
  .sticky-mini-cta .btn-ghost { display: none; } /* one primary on narrow */
  .sticky-mini-cta .btn-olive { width: 100%; text-align: center; }
}
.gift-combo-card .btn-olive,
.gift-result-card .btn-olive,
.result-links .btn-olive {
  background: var(--olive-deep, #2a3320);
  font-weight: 600;
}


/* sticky mobile CRO strengthen 20260920c */
@media (max-width: 720px) {
  .sticky-mini-cta-inner {
    padding: 0.75rem 0.85rem calc(0.75rem + env(safe-area-inset-bottom, 0px));
    gap: 0.45rem;
  }
  .sticky-mini-cta .btn-olive {
    flex: 1 1 auto;
    min-height: 2.75rem;
    font-size: 0.92rem;
    font-weight: 600;
    background: var(--olive-deep, #2a3320);
  }
  .sticky-mini-cta .btn-ghost {
    display: none;
  }
  body.has-sticky-mini {
    padding-bottom: 4.5rem;
  }
}
.btn-olive {
  background: var(--olive-deep, #2a3320);
  border-color: var(--olive-deep, #2a3320);
}
.hero-cta-row .btn-olive,
.product-cta-actions .btn-olive {
  min-height: 2.75rem;
  padding-inline: 1.25rem;
  font-weight: 600;
}


/* -- High-impact: seizoen, gidsen, vergelijken, share (tokens) -- */
.pick-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.25rem;
  margin-top: 1.5rem;
}
.pick-card {
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.pick-card img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  background: var(--paper-2);
}
.pick-body {
  padding: 1rem 1.1rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  flex: 1;
}
.pick-body h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--ink);
}
.pick-why {
  color: var(--ink-mute);
  font-size: 0.98rem;
  flex: 1;
  margin: 0;
}
.pick-body .btn { align-self: flex-start; margin-top: auto; }

.season-cta-band {
  margin-top: 2rem;
  padding: 1.35rem 1.5rem;
  background: var(--olive-soft);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem 1rem;
}
.season-cta-band p {
  flex: 1 1 220px;
  margin: 0;
  color: var(--ink);
}

.guide-set-box {
  margin-top: 2rem;
  padding: 1.25rem 1.4rem;
  background: var(--paper-2);
  border-left: 3px solid var(--clay);
  border-radius: 0 var(--radius) var(--radius) 0;
}
.guide-set-box h2 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  margin-bottom: 0.4rem;
}

.compare-lead {
  color: var(--ink-mute);
  max-width: 40rem;
  margin-bottom: 1rem;
}
.compare-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  background: var(--white);
}
.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-family: var(--font-ui);
  font-size: 0.95rem;
}
.compare-table th,
.compare-table td {
  padding: 0.75rem 1rem;
  text-align: left;
  border-bottom: 1px solid var(--rule);
  vertical-align: top;
}
.compare-table thead th {
  background: var(--olive-soft);
  color: var(--olive-deep);
  font-weight: 600;
}
.compare-table tbody th {
  font-weight: 600;
  color: var(--ink);
  width: 22%;
  background: var(--paper);
}
.compare-table tr:last-child th,
.compare-table tr:last-child td { border-bottom: 0; }
.compare-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.1rem;
}
.section-alt {
  background: var(--paper-2);
  padding-block: 2.5rem;
}

.share-save-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.45rem;
  margin: 1rem 0 0.25rem;
  font-family: var(--font-ui);
}
.share-btn {
  appearance: none;
  border: 1px solid var(--rule);
  background: var(--white);
  color: var(--ink);
  font: inherit;
  font-size: 0.85rem;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  cursor: pointer;
  text-decoration: none;
  line-height: 1.3;
}
.share-btn:hover {
  border-color: var(--olive-mid);
  background: var(--olive-soft);
  color: var(--olive-deep);
}
.share-feedback {
  font-size: 0.85rem;
  color: var(--olive-mid);
}

.home-link-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1.25rem;
}
.home-link-row a {
  font-family: var(--font-ui);
  font-size: 0.9rem;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  border: 1px solid var(--rule);
  background: var(--white);
  color: var(--ink);
  text-decoration: none;
}
.home-link-row a:hover {
  background: var(--olive-soft);
  border-color: var(--olive-mid);
  color: var(--olive-deep);
}
.guide-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0.75rem 0 0;
}
