:root {
  --cream: #fbf6ee;
  --surface: #ffffff;
  --ink: #2d2a24;
  --muted: #6b6358;
  --sage: #5c7f66;
  --sage-dark: #46624f;
  --terra: #c06a45;
  --terra-dark: #a6552f;
  --border: #e8dfd0;
  --shadow: 0 6px 24px rgba(74, 60, 40, 0.08);
  --radius: 16px;
  --radius-sm: 10px;
  --wrap: 1120px;
  --space: clamp(2.5rem, 6vw, 5rem);
  font-size: 17px;
}

* { box-sizing: border-box; }

/* Visible keyboard focus (accessibility) */
:focus-visible { outline: 2px solid var(--sage); outline-offset: 2px; border-radius: 4px; }
.searchbox:focus-within { outline: 2px solid var(--sage); outline-offset: 1px; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Nunito Sans", system-ui, sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 600;
  line-height: 1.15;
  color: var(--ink);
  margin: 0 0 0.5em;
}

h1 { font-size: clamp(2rem, 5vw, 3.1rem); }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.2rem); }
h3 { font-size: 1.3rem; }

p { margin: 0 0 1rem; }

a { color: var(--terra-dark); text-decoration-thickness: 1px; text-underline-offset: 2px; }
a:hover { color: var(--terra); }

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

.wrap { width: min(100% - 2.5rem, var(--wrap)); margin-inline: auto; }
.narrow { max-width: 720px; }
/* Readable text column, left-aligned within .wrap so every block shares the
   same left edge as the header (consistent gutters across the whole site). */
.measure { max-width: 768px; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

.kicker {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--sage);
  margin: 0 0 0.6rem;
}

.lead { font-size: 1.18rem; color: var(--muted); }

.skip-link {
  position: absolute; left: -999px; top: 0;
  background: var(--ink); color: #fff; padding: 0.6rem 1rem; z-index: 100;
}
.skip-link:focus { left: 1rem; top: 1rem; }

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.8rem 1.5rem;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.15s ease, background 0.15s ease, box-shadow 0.15s ease;
}
.btn-primary { background: var(--terra); color: #fff; box-shadow: var(--shadow); }
.btn-primary:hover { background: var(--terra-dark); color: #fff; transform: translateY(-2px); }
.btn-ghost { background: transparent; color: var(--ink); border: 2px solid var(--border); }
.btn-ghost:hover { border-color: var(--sage); color: var(--sage-dark); }

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(251, 246, 238, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 0.85rem 0; }
.brand { display: flex; align-items: center; gap: 0.5rem; text-decoration: none; color: var(--ink); }
.brand-mark { display: block; flex: none; }
.brand-name { font-family: "Fraunces", serif; font-weight: 600; font-size: 1.25rem; }
.brand-name strong { color: var(--sage); font-weight: 700; }
.site-nav ul { display: flex; gap: 1.5rem; list-style: none; margin: 0; padding: 0; }
.site-nav a { color: var(--ink); text-decoration: none; font-weight: 600; }
.site-nav a:hover { color: var(--terra); }

.nav-toggle {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: 0; cursor: pointer; padding: 0.4rem;
}
.nav-toggle span { width: 26px; height: 2px; background: var(--ink); border-radius: 2px; transition: 0.2s; }

/* Hero */
.hero { padding: var(--space) 0 0; }
.hero-inner { display: grid; grid-template-columns: 1fr 1.05fr; gap: clamp(1.5rem, 5vw, 4rem); align-items: center; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 0.8rem; margin-top: 1.8rem; }
.hero-media { margin: 0; }
.hero-media img {
  width: 100%; border-radius: var(--radius);
  box-shadow: var(--shadow); display: block; object-fit: cover;
  rotate: 1.2deg;
}

/* Facts band */
.facts { padding: var(--space) 0; }
.facts-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem; }
.fact { display: flex; gap: 0.8rem; align-items: flex-start; }
.fact p { margin: 0; color: var(--muted); }
.ico-check {
  flex: none; width: 26px; height: 26px; color: var(--sage);
  background: #e9f0eb; border-radius: 50%; padding: 4px; margin-top: 2px;
}

/* Section heading */
.section-title { font-size: clamp(1.7rem, 4vw, 2.4rem); margin-bottom: 2.5rem; }
.pillars { padding: 0 0 var(--space); }

/* Alternating feature rows */
.feature-row {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(1.5rem, 5vw, 4rem); align-items: center;
  margin-bottom: clamp(2.5rem, 6vw, 4.5rem);
}
.feature-row:nth-child(even) .feature-media { order: 2; }
.feature-media { margin: 0; }
.feature-media img {
  width: 100%; aspect-ratio: 1/1; object-fit: cover;
  border-radius: var(--radius); box-shadow: var(--shadow); display: block;
}
.feature-number {
  font-family: "Fraunces", serif; font-size: 2.2rem; font-weight: 600;
  color: var(--terra); line-height: 1; display: block; margin-bottom: 0.3rem;
}
.feature-body h3 { font-size: clamp(1.5rem, 3vw, 2rem); margin-bottom: 0.6rem; }
.feature-body p { color: var(--muted); font-size: 1.08rem; }
.feature-link {
  display: inline-flex; align-items: center; gap: 0.45rem;
  font-weight: 700; color: var(--terra-dark); text-decoration: none; margin-top: 0.4rem;
}
.feature-link:hover { gap: 0.7rem; color: var(--terra); }
.feature-link svg { transition: transform 0.15s ease; }

/* Author block */
.author-block { background: var(--sage); color: #fff; padding: var(--space) 0; }
.author-block h2, .author-block .kicker { color: #fff; }
.author-block .kicker { color: #dff0e4; }
.author-inner { display: grid; grid-template-columns: auto 1fr; gap: 2rem; align-items: center; }
.author-photo {
  width: 110px; height: 110px; border-radius: 50%; background: #fff;
  display: grid; place-items: center; box-shadow: var(--shadow);
  font-family: "Fraunces", serif; font-size: 3rem; font-weight: 600; color: var(--sage-dark);
}
.author-photo img { width: 100%; height: 100%; border-radius: 50%; object-fit: cover; }
.author-block .btn-ghost { border-color: rgba(255,255,255,0.5); color: #fff; margin-top: 0.6rem; }
.author-block .btn-ghost:hover { background: rgba(255,255,255,0.12); color: #fff; }

/* Intro / prose */
.intro { padding: var(--space) 0; }
.prose { font-size: 1.05rem; }
.prose h2 { margin-top: 1.8em; }
.prose h3 { margin-top: 1.4em; }
.prose ul, .prose ol { padding-left: 1.3rem; }
.prose li { margin-bottom: 0.4rem; }
.prose table { width: 100%; border-collapse: collapse; margin: 1.5rem 0; }
.prose th, .prose td { border: 1px solid var(--border); padding: 0.7rem 0.9rem; text-align: left; }
.prose th { background: #f3ebdd; }

/* Generic page */
.page { padding: var(--space) 0; }
.page-head { margin-bottom: 2rem; }

/* Footer */
.site-footer { background: var(--ink); color: #d9d2c6; margin-top: var(--space); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 2rem; padding: var(--space) 0 2rem; }
.site-footer .brand-name { color: #fff; }
.site-footer h2 { color: #fff; font-size: 1.05rem; }
.site-footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.5rem; }
.site-footer a { color: #d9d2c6; text-decoration: none; }
.site-footer a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.12); padding: 1.4rem 0 2rem; }
.footer-bottom p { margin: 0 0 0.4rem; font-size: 0.85rem; }
.disclaimer { color: #9c9484; }

/* Breadcrumb */
.breadcrumb { margin: 1.5rem 0 0.5rem; }
.breadcrumb ol {
  display: flex; flex-wrap: wrap; align-items: center; gap: 0.5rem;
  list-style: none; margin: 0; padding: 0;
  font-size: 0.85rem; color: var(--muted);
}
.breadcrumb li { display: flex; align-items: center; gap: 0.5rem; }
.breadcrumb li + li::before { content: "/"; color: var(--border); }
.breadcrumb a { color: var(--muted); text-decoration: none; }
.breadcrumb a:hover { color: var(--terra); }
.breadcrumb [aria-current="page"] { color: var(--ink); font-weight: 600; }

/* Article */
.article { padding-bottom: var(--space); }
.article-head { padding-top: 0.5rem; }
.article-head h1 { margin-bottom: 0.4rem; }
.article-meta {
  display: flex; flex-wrap: wrap; gap: 0.5rem; align-items: center;
  color: var(--muted); font-size: 0.92rem; margin-top: 0.8rem;
}
.article-hero { margin: 2rem 0; }
.article-hero img {
  width: 100%; aspect-ratio: 16/9; object-fit: cover;
  border-radius: var(--radius); box-shadow: var(--shadow); display: block;
}

/* Table of contents */
.toc {
  background: #f3ebdd; border: 1px solid var(--border);
  border-radius: var(--radius-sm); padding: 1.1rem 1.4rem;
  margin: 0 0 2rem;
}
.toc-title {
  font-family: "Fraunces", serif; font-weight: 600; font-size: 1.05rem;
  margin: 0 0 0.5rem;
}
.toc ul { list-style: none; margin: 0; padding: 0; }
.toc > ul > li { margin: 0.3rem 0; }
.toc ul ul { padding-left: 1rem; margin-top: 0.2rem; }
.toc a { color: var(--sage-dark); text-decoration: none; font-weight: 600; }
.toc a:hover { color: var(--terra); text-decoration: underline; }
.toc ul ul a { font-weight: 400; color: var(--muted); }

.prose h2 { scroll-margin-top: 80px; }
.prose h3 { scroll-margin-top: 80px; }

/* FAQ */
.faq { margin: 2.5rem 0 0; }
.faq-item {
  border: 1px solid var(--border); border-radius: var(--radius-sm);
  margin-bottom: 0.7rem; background: var(--surface);
}
.faq-item summary {
  cursor: pointer; padding: 1rem 1.2rem; font-weight: 700;
  list-style: none; position: relative; padding-right: 2.6rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+"; position: absolute; right: 1.2rem; top: 50%;
  transform: translateY(-50%); font-size: 1.4rem; color: var(--sage);
  font-weight: 400; line-height: 1;
}
.faq-item[open] summary::after { content: "–"; }
.faq-answer { padding: 0 1.2rem 1rem; color: var(--muted); }
.faq-answer p { margin: 0; }

/* Author card */
.author-card {
  display: flex; gap: 1.3rem; align-items: flex-start;
  background: #eef3ef; border-radius: var(--radius);
  padding: 1.6rem 1.8rem; margin: 2.5rem 0 0;
}
.author-card-photo {
  flex: none; width: 96px; height: 96px; border-radius: 50%;
  object-fit: cover; box-shadow: var(--shadow);
}
.author-card-monogram {
  display: grid; place-items: center; background: var(--sage);
  color: #fff; font-family: "Fraunces", serif; font-size: 2.4rem; font-weight: 600;
}
.author-card-copy h2 { font-size: 1.3rem; margin: 0.1rem 0 0.5rem; }
.author-card-copy p { color: var(--muted); margin: 0 0 0.6rem; }

/* Related */
.related { padding: var(--space) 0 0; }
.related-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.6rem;
}
.related-card {
  display: block; background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden; text-decoration: none;
  color: var(--ink); transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.related-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.related-media img {
  width: 100%; aspect-ratio: 16/9; object-fit: cover; display: block;
}
.related-body { padding: 1.1rem 1.3rem 1.4rem; }
.related-body h3 { font-size: 1.2rem; margin: 0.3rem 0 0; }

/* Pillar hub */
.pillar-hero { padding: var(--space) 0 0; }
.article-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.8rem;
}
.article-card {
  display: flex; flex-direction: column; background: var(--surface);
  border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden;
  text-decoration: none; color: var(--ink);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.article-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.article-card-media img {
  width: 100%; aspect-ratio: 16/9; object-fit: cover; display: block;
}
.article-card-body { padding: 1.3rem 1.5rem 1.6rem; display: flex; flex-direction: column; gap: 0.4rem; }
.article-card-body h3 { font-size: 1.35rem; margin: 0.2rem 0; }
.article-card-body p { color: var(--muted); margin: 0 0 0.6rem; flex: 1; }

/* Recipe */
.recipe-facts {
  display: flex; flex-wrap: wrap; gap: 1.5rem;
  background: #eef3ef; border-radius: var(--radius-sm);
  padding: 1.1rem 1.4rem; margin: 0 0 2rem;
}
.recipe-facts > div { display: flex; flex-direction: column; }
.recipe-fact-label {
  font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.1em;
  font-weight: 700; color: var(--sage);
}
.recipe-facts span:last-child { font-weight: 600; }
.recipe-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 2.5rem; margin: 2rem 0 0; }
.recipe-ingredients ul { list-style: none; padding: 0; margin: 0; }
.recipe-ingredients li { padding: 0.5rem 0; border-bottom: 1px solid var(--border); }
.recipe-steps ol { padding-left: 1.2rem; margin: 0; }
.recipe-steps li { margin-bottom: 0.9rem; }

.note { border-radius: var(--radius-sm); padding: 1rem 1.3rem; margin: 2rem 0 0; }
.note p { margin: 0; }
.note-safety { background: #fbeee7; border-left: 4px solid var(--terra); }

/* Affiliate / products */
.affiliate-note {
  font-size: 0.85rem; color: var(--muted); background: #f3ebdd;
  border-radius: var(--radius-sm); padding: 0.8rem 1.1rem; margin: 1.5rem 0 0;
}
.btn-sm { padding: 0.5rem 1rem; font-size: 0.85rem; }
.pill {
  display: inline-block; font-size: 0.7rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.06em;
  background: var(--sage); color: #fff; border-radius: 999px;
  padding: 0.15rem 0.6rem; vertical-align: middle;
}
.compare { margin: 2.5rem 0 0; }
.compare-scroll { overflow-x: auto; }
.compare-table { width: 100%; border-collapse: collapse; }
.compare-table th, .compare-table td {
  border: 1px solid var(--border); padding: 0.7rem 0.9rem; text-align: left; vertical-align: middle;
}
.compare-table th { background: #f3ebdd; font-family: "Fraunces", serif; }
.product-list { margin: 2.5rem 0 0; }
.product-card {
  border: 1px solid var(--border); border-radius: var(--radius);
  padding: 1.6rem 1.8rem; margin-bottom: 1.5rem; background: var(--surface);
}
.product-card-head { display: flex; justify-content: space-between; align-items: baseline; gap: 1rem; flex-wrap: wrap; }
.product-card-head h3 { margin: 0; }
.product-price { font-weight: 700; color: var(--sage-dark); white-space: nowrap; }
.proscons { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; margin: 1rem 0 1.4rem; }
.pros, .cons { list-style: none; padding: 0; margin: 0; }
.pros li, .cons li { padding: 0.3rem 0 0.3rem 1.6rem; position: relative; }
.pros li::before { content: "+"; position: absolute; left: 0; color: var(--sage); font-weight: 700; }
.cons li::before { content: "–"; position: absolute; left: 0; color: var(--terra); font-weight: 700; }

/* Search box */
.searchbox {
  position: relative; display: flex; align-items: center; gap: 0.6rem;
  margin-top: 1.7rem; background: var(--surface);
  border: 1px solid var(--border); border-radius: 999px;
  padding: 0.15rem 1rem; box-shadow: var(--shadow);
}
.searchbox:focus-within { border-color: var(--sage); }
.searchbox-ico { color: var(--muted); flex: none; }
.searchbox-input {
  flex: 1; border: 0; background: none; font: inherit; color: var(--ink);
  padding: 0.75rem 0.2rem; outline: none; min-width: 0;
}
.search-results {
  position: absolute; top: calc(100% + 0.5rem); left: 0; right: 0;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-sm); box-shadow: var(--shadow);
  max-height: 64vh; overflow-y: auto; z-index: 60; padding: 0.4rem;
}
.search-results a {
  display: flex; gap: 0.8rem; align-items: center;
  padding: 0.55rem 0.6rem; border-radius: var(--radius-sm);
  text-decoration: none; color: var(--ink);
}
.search-results a:hover, .search-results a.is-active { background: #eef3ef; }
.search-results img {
  width: 54px; height: 40px; object-fit: cover; border-radius: 7px; flex: none;
}
.search-result-cat {
  display: block; font-size: 0.72rem; text-transform: uppercase;
  letter-spacing: 0.08em; color: var(--sage); font-weight: 700;
}
.search-result-title { font-weight: 600; line-height: 1.3; }
.search-empty { padding: 0.85rem 1rem; color: var(--muted); margin: 0; }

/* Hero chips (quick topic entries) */
.hero-chips {
  display: flex; flex-wrap: wrap; align-items: center; gap: 0.5rem;
  margin-top: 1.1rem; font-size: 0.9rem;
}
.hero-chips-label { color: var(--muted); font-weight: 700; }
.hero-chips a {
  background: #eef3ef; color: var(--sage-dark); border-radius: 999px;
  padding: 0.32rem 0.85rem; text-decoration: none; font-weight: 600;
  transition: background 0.15s ease, color 0.15s ease;
}
.hero-chips a:hover { background: var(--sage); color: #fff; }

/* Category grid (Ratgeber hub) */
.cat-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem;
}
.cat-card {
  display: flex; flex-direction: column; background: var(--surface);
  border: 1px solid var(--border); border-radius: var(--radius);
  overflow: hidden; text-decoration: none; color: var(--ink);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.cat-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.cat-card-media img {
  width: 100%; aspect-ratio: 16/9; object-fit: cover; display: block;
}
.cat-card-body { padding: 1.1rem 1.4rem 1.5rem; }
.cat-card-body h3 { margin: 0 0 0.15rem; font-size: 1.3rem; }
.cat-count {
  display: inline-block; font-size: 0.78rem; font-weight: 700;
  color: var(--terra-dark); margin-bottom: 0.5rem;
}
.cat-card-body p { margin: 0; color: var(--muted); font-size: 0.96rem; }

/* Hub bar: section title + inline filter */
.hub-bar {
  display: flex; flex-wrap: wrap; gap: 1rem; align-items: center;
  justify-content: space-between; margin-bottom: 2.2rem;
}
.hub-bar .section-title { margin: 0; }
.filter-input {
  border: 1px solid var(--border); background: var(--surface);
  border-radius: 999px; padding: 0.6rem 1.1rem; font: inherit;
  min-width: 270px; outline: none;
}
.filter-input:focus { border-color: var(--sage); }
.filter-empty { color: var(--muted); }
.article-card.is-hidden { display: none; }
.hub-back { margin-top: 2.2rem; }

/* Two-column layout: reading column + sticky right rail (TOC / recipe facts) */
.article-layout {
  display: grid; grid-template-columns: minmax(0, 1fr) 266px;
  gap: clamp(1.5rem, 4vw, 3.5rem); align-items: start;
}
.article-main { grid-column: 1; min-width: 0; max-width: 768px; }
.article-rail { grid-column: 2; position: sticky; top: 86px; display: grid; gap: 1.2rem; }
.rail-card {
  background: #eef3ef; border: 1px solid var(--border);
  border-radius: var(--radius-sm); padding: 1.2rem 1.3rem;
}
.rail-card-title {
  font-family: "Fraunces", serif; font-weight: 600; font-size: 1.02rem;
  margin: 0 0 0.7rem;
}
.rail-facts { margin: 0 0 1rem; display: grid; gap: 0; }
.rail-facts div {
  display: flex; justify-content: space-between; gap: 1rem;
  border-bottom: 1px solid var(--border); padding: 0.5rem 0;
}
.rail-facts div:last-child { border-bottom: 0; }
.rail-facts dt { color: var(--muted); margin: 0; font-size: 0.9rem; }
.rail-facts dd { margin: 0; font-weight: 700; font-size: 0.9rem; text-align: right; }
.rail-jump { width: 100%; text-align: center; box-sizing: border-box; }
.rail-toc ul { list-style: none; margin: 0; padding: 0; }
.rail-toc li { margin: 0.32rem 0; }
.rail-toc ul ul { padding-left: 0.9rem; margin: 0.2rem 0; }
.rail-toc a { color: var(--sage-dark); text-decoration: none; font-weight: 600; font-size: 0.92rem; }
.rail-toc a:hover { color: var(--terra); text-decoration: underline; }
.rail-toc ul ul a { font-weight: 400; color: var(--muted); }
#zutaten, #zubereitung, #faq-title, #vergleich, #details { scroll-margin-top: 86px; }

/* Filter chips (recipe types) */
.chips { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 1.9rem; }
.chip {
  font: inherit; cursor: pointer; border: 1px solid var(--border);
  background: var(--surface); color: var(--ink); border-radius: 999px;
  padding: 0.42rem 0.95rem; font-size: 0.9rem; font-weight: 600;
  transition: border-color 0.15s ease, background 0.15s ease, color 0.15s ease;
}
.chip:hover { border-color: var(--sage); }
.chip.is-active { background: var(--sage); color: #fff; border-color: var(--sage); }
.chip-count { opacity: 0.55; font-weight: 700; margin-left: 0.2rem; }
.chip.is-active .chip-count { opacity: 0.85; }

/* Header search */
.header-search {
  margin: 0; box-shadow: none; padding: 0.12rem 0.85rem;
  max-width: 320px; flex: 1 1 200px; border-radius: 999px;
}
.header-search .searchbox-input { padding: 0.5rem 0.2rem; font-size: 0.95rem; }
.nav-search { display: none; }

/* Explore cards (about page / generic pages) */
.page-explore { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin: 2.6rem 0 0; }
.explore-card {
  display: flex; flex-direction: column; gap: 0.2rem; padding: 1.1rem 1.3rem;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-sm); text-decoration: none; color: var(--ink);
  transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
}
.explore-card:hover { border-color: var(--sage); transform: translateY(-2px); box-shadow: var(--shadow); }
.explore-card span { font-family: "Fraunces", serif; font-weight: 600; font-size: 1.15rem; }
.explore-card small { color: var(--muted); }

/* kicker rendered as a link to the category */
.kicker-link { text-decoration: none; }
.kicker-link:hover { color: var(--sage-dark); text-decoration: underline; }

/* Mobile */
@media (max-width: 860px) {
  .cat-grid { grid-template-columns: 1fr; }
  .hub-bar { flex-direction: column; align-items: stretch; }
  .filter-input { min-width: 0; width: 100%; }
  .article-layout { display: block; }
  .article-rail { position: static; margin-bottom: 1.6rem; }
  .header-search { display: none; }
  .nav-search { display: flex; margin: 0.8rem 1.25rem 0.2rem; }
  .page-explore { grid-template-columns: 1fr; }
  .hero { padding-bottom: 0; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-media { order: -1; }
  .hero-media img { rotate: 0deg; }
  .facts-grid { grid-template-columns: 1fr; gap: 1rem; }
  .feature-row { grid-template-columns: 1fr; gap: 1.2rem; }
  .feature-row:nth-child(even) .feature-media { order: 0; }
  .author-inner { grid-template-columns: 1fr; text-align: center; }
  .author-photo { margin: 0 auto; }
  .related-grid { grid-template-columns: 1fr; }
  .article-grid { grid-template-columns: 1fr; }
  .recipe-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .proscons { grid-template-columns: 1fr; gap: 0.5rem; }
  .author-card { flex-direction: column; text-align: center; align-items: center; }
  .footer-grid { grid-template-columns: 1fr; }
  .nav-toggle { display: flex; }
  .site-nav {
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--cream); border-bottom: 1px solid var(--border);
    max-height: 0; overflow: hidden; transition: max-height 0.25s ease;
  }
  .site-nav.open { max-height: 380px; }
  .site-nav ul { flex-direction: column; gap: 0; padding: 0.5rem 1.25rem 1rem; }
  .site-nav li { border-bottom: 1px solid var(--border); }
  .site-nav a { display: block; padding: 0.8rem 0; }
}
