/* ==========================================================================
   GevuldePaprika.nl — De lekkerste gevulde paprika recepten
   Warm, readable, mobile-first design system
   ========================================================================== */

:root {
  /* Paprika palette */
  --paprika: #c23b22;
  --paprika-deep: #9a2e1a;
  --paprika-soft: #f4d4cc;
  --paprika-glow: #e85d3a;
  --orange: #e07a2f;
  --gold: #d4a017;
  --cream: #fff8f2;
  --cream-dark: #f5ebe0;
  --leaf: #2d6a4f;
  --leaf-soft: #d8f3dc;
  --charcoal: #1f1a17;
  --ink: #2c241f;
  --muted: #6b5e56;
  --line: #e8dcd2;
  --white: #ffffff;
  --shadow: 0 12px 40px rgba(31, 26, 23, 0.1);
  --shadow-sm: 0 4px 16px rgba(31, 26, 23, 0.08);
  --radius: 18px;
  --radius-sm: 12px;
  --max: 1120px;
  --font: "Segoe UI", system-ui, -apple-system, "Helvetica Neue", Arial, sans-serif;
  --font-display: Georgia, "Times New Roman", "Palatino Linotype", serif;
  --lh: 1.7;
  --step: clamp(1.05rem, 0.98rem + 0.35vw, 1.175rem);
}

/* Reset & base */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  font-size: var(--step);
  line-height: var(--lh);
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--paprika-deep); text-decoration-thickness: 1.5px; text-underline-offset: 3px; }
a:hover { color: var(--paprika); }
h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.25;
  color: var(--charcoal);
  font-weight: 700;
  letter-spacing: -0.02em;
}
h1 { font-size: clamp(2.1rem, 1.5rem + 2.5vw, 3.4rem); margin: 0 0 0.6em; }
h2 { font-size: clamp(1.55rem, 1.25rem + 1.2vw, 2.15rem); margin: 0 0 0.55em; }
h3 { font-size: clamp(1.2rem, 1.1rem + 0.5vw, 1.4rem); margin: 0 0 0.4em; }
p { margin: 0 0 1em; max-width: 68ch; }
ul, ol { padding-left: 1.25em; }
li { margin-bottom: 0.4em; }
strong { color: var(--charcoal); }

/* Layout helpers */
.container {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}
.section { padding: clamp(2.5rem, 4vw, 4.5rem) 0; }
.section-tight { padding: clamp(1.5rem, 3vw, 2.5rem) 0; }
.stack > * + * { margin-top: 1rem; }
.center { text-align: center; }
.center p { margin-inline: auto; }
.muted { color: var(--muted); }
.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;
}

/* Skip link */
.skip-link {
  position: absolute; left: 1rem; top: -100%;
  background: var(--paprika); color: white; padding: 0.6rem 1rem;
  border-radius: 8px; z-index: 1000; font-weight: 600;
}
.skip-link:focus { top: 1rem; }

/* ========== Header / Nav ========== */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255, 248, 242, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav-bar {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; min-height: 4.25rem;
}
.logo {
  display: inline-flex; align-items: center; gap: 0.65rem;
  text-decoration: none; color: var(--charcoal); font-weight: 800;
  font-family: var(--font-display); font-size: 1.2rem; letter-spacing: -0.02em;
}
.logo:hover { color: var(--paprika); }
.logo-mark {
  width: 2.4rem; height: 2.4rem; border-radius: 50%;
  background: linear-gradient(145deg, var(--paprika-glow), var(--paprika-deep));
  display: grid; place-items: center; color: white; font-size: 1.15rem;
  box-shadow: 0 4px 12px rgba(194, 59, 34, 0.35);
  flex-shrink: 0;
}
.nav-links {
  display: flex; align-items: center; gap: 0.25rem 1.25rem;
  list-style: none; margin: 0; padding: 0;
}
.nav-links a {
  text-decoration: none; color: var(--ink); font-weight: 600; font-size: 0.98rem;
  padding: 0.35rem 0; border-bottom: 2px solid transparent;
}
.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--paprika); border-bottom-color: var(--paprika);
}
.nav-cta {
  background: var(--paprika) !important;
  color: white !important;
  padding: 0.55rem 1rem !important;
  border-radius: 999px !important;
  border-bottom: none !important;
  box-shadow: 0 4px 14px rgba(194, 59, 34, 0.3);
}
.nav-cta:hover { background: var(--paprika-deep) !important; color: white !important; }

.nav-toggle {
  display: none; border: 0; background: transparent; cursor: pointer;
  width: 2.75rem; height: 2.75rem; border-radius: 10px;
  align-items: center; justify-content: center; flex-direction: column; gap: 5px;
}
.nav-toggle span {
  display: block; width: 22px; height: 2.5px; background: var(--charcoal);
  border-radius: 2px; transition: 0.2s;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

@media (max-width: 820px) {
  .nav-toggle { display: inline-flex; }
  .nav-links {
    position: absolute; left: 0; right: 0; top: 100%;
    background: var(--cream); border-bottom: 1px solid var(--line);
    flex-direction: column; align-items: stretch; padding: 0.75rem 1rem 1.25rem;
    gap: 0; display: none; box-shadow: var(--shadow-sm);
  }
  .nav-links.is-open { display: flex; }
  .nav-links a { padding: 0.85rem 0.5rem; border-bottom: 1px solid var(--line); border-radius: 0; }
  .nav-links .nav-cta {
    margin-top: 0.5rem; text-align: center; border-bottom: none !important;
  }
}

/* ========== Buttons ========== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.45rem;
  font: inherit; font-weight: 700; font-size: 1rem;
  padding: 0.8rem 1.35rem; border-radius: 999px; border: 2px solid transparent;
  cursor: pointer; text-decoration: none; transition: 0.18s ease;
  line-height: 1.2;
}
.btn-primary {
  background: var(--paprika); color: white;
  box-shadow: 0 6px 18px rgba(194, 59, 34, 0.28);
}
.btn-primary:hover { background: var(--paprika-deep); color: white; transform: translateY(-1px); }
.btn-secondary {
  background: white; color: var(--paprika-deep); border-color: var(--paprika-soft);
}
.btn-secondary:hover { border-color: var(--paprika); color: var(--paprika); background: #fff; }
.btn-ghost {
  background: transparent; color: var(--ink); border-color: var(--line);
}
.btn-ghost:hover { border-color: var(--muted); }
.btn-sm { padding: 0.5rem 0.95rem; font-size: 0.92rem; }
.btn-row { display: flex; flex-wrap: wrap; gap: 0.75rem; }

/* ========== Hero ========== */
.hero {
  position: relative;
  padding: clamp(2.5rem, 6vw, 5rem) 0 clamp(3rem, 6vw, 5.5rem);
  overflow: hidden;
  background:
    radial-gradient(ellipse 80% 60% at 90% 10%, rgba(232, 93, 58, 0.18), transparent 55%),
    radial-gradient(ellipse 60% 50% at 5% 90%, rgba(45, 106, 79, 0.12), transparent 50%),
    linear-gradient(180deg, #fff4ec 0%, var(--cream) 100%);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(1.5rem, 4vw, 3.5rem);
  align-items: center;
}
.hero-kicker {
  display: inline-flex; align-items: center; gap: 0.45rem;
  background: var(--leaf-soft); color: var(--leaf);
  font-weight: 700; font-size: 0.88rem; letter-spacing: 0.04em;
  text-transform: uppercase; padding: 0.4rem 0.85rem; border-radius: 999px;
  margin-bottom: 1rem;
}
.hero p.lead {
  font-size: clamp(1.1rem, 1rem + 0.45vw, 1.3rem);
  color: var(--muted); max-width: 42ch; margin-bottom: 1.5rem;
}
.hero-stats {
  display: flex; flex-wrap: wrap; gap: 1rem 1.75rem;
  margin-top: 1.75rem; padding-top: 1.5rem;
  border-top: 1px solid var(--line);
}
.hero-stat strong {
  display: block; font-size: 1.45rem; font-family: var(--font-display);
  color: var(--paprika); line-height: 1.1;
}
.hero-stat span { font-size: 0.9rem; color: var(--muted); font-weight: 600; }

.hero-visual {
  position: relative;
  aspect-ratio: 1;
  max-width: 420px;
  margin-inline: auto;
}
.paprika-stage {
  width: 100%; height: 100%;
  border-radius: 50% 48% 52% 50% / 48% 52% 48% 52%;
  background:
    radial-gradient(circle at 30% 25%, rgba(255,255,255,0.45), transparent 40%),
    linear-gradient(155deg, #ef6b4a 0%, var(--paprika) 45%, var(--paprika-deep) 100%);
  box-shadow:
    inset 0 -30px 50px rgba(0,0,0,0.12),
    0 30px 60px rgba(194, 59, 34, 0.28);
  display: grid; place-items: center;
  position: relative;
  animation: float 6s ease-in-out infinite;
}
.paprika-stage::before {
  content: "";
  position: absolute; top: -8%; left: 50%; transform: translateX(-50%);
  width: 18%; height: 14%;
  background: linear-gradient(180deg, #3d8b5f, var(--leaf));
  border-radius: 40% 40% 20% 20%;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}
.paprika-stage::after {
  content: "";
  position: absolute; top: -2%; left: 58%;
  width: 22%; height: 10%;
  background: var(--leaf);
  border-radius: 50% 10% 50% 10%;
  transform: rotate(25deg);
  opacity: 0.9;
}
.paprika-face {
  color: white; text-align: center; padding: 1.5rem;
  font-family: var(--font-display); font-size: clamp(1.4rem, 3vw, 1.9rem);
  font-weight: 700; line-height: 1.3; text-shadow: 0 2px 12px rgba(0,0,0,0.2);
  z-index: 1;
}
.floating-badge {
  position: absolute; background: white; border-radius: 14px;
  padding: 0.7rem 0.95rem; box-shadow: var(--shadow);
  font-size: 0.88rem; font-weight: 700; color: var(--charcoal);
  display: flex; align-items: center; gap: 0.45rem;
}
.floating-badge.b1 { top: 8%; left: -4%; animation: float 5s ease-in-out infinite 0.5s; }
.floating-badge.b2 { bottom: 12%; right: -6%; animation: float 5.5s ease-in-out infinite 1s; }
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@media (max-width: 860px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { max-width: 300px; order: -1; }
  .floating-badge.b1 { left: 0; }
  .floating-badge.b2 { right: 0; }
}

/* ========== Cards ========== */
.section-head {
  display: flex; flex-wrap: wrap; align-items: end; justify-content: space-between;
  gap: 1rem; margin-bottom: 1.75rem;
}
.section-head p { margin: 0.35em 0 0; color: var(--muted); max-width: 48ch; }

.recipe-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 280px), 1fr));
  gap: 1.35rem;
}
.recipe-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  text-decoration: none; color: inherit;
}
a.recipe-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  color: inherit;
}
.recipe-card-media {
  aspect-ratio: 16/11;
  display: grid; place-items: center;
  position: relative;
  overflow: hidden;
}
.recipe-card-media .emoji {
  font-size: 3.5rem; filter: drop-shadow(0 8px 16px rgba(0,0,0,0.15));
  z-index: 1;
}
.recipe-card-body {
  padding: 1.15rem 1.25rem 1.35rem;
  display: flex; flex-direction: column; flex: 1; gap: 0.5rem;
}
.recipe-card h3 {
  margin: 0; font-size: 1.2rem;
}
.recipe-card p {
  margin: 0; color: var(--muted); font-size: 0.95rem; flex: 1;
}
.meta-row {
  display: flex; flex-wrap: wrap; gap: 0.45rem 0.85rem;
  font-size: 0.88rem; font-weight: 600; color: var(--muted);
  margin-top: 0.35rem;
}
.meta-row span { display: inline-flex; align-items: center; gap: 0.3rem; }
.tag {
  display: inline-block;
  font-size: 0.75rem; font-weight: 800; letter-spacing: 0.04em;
  text-transform: uppercase; padding: 0.28rem 0.6rem; border-radius: 999px;
}
.tag-meat { background: #fde8e4; color: var(--paprika-deep); }
.tag-veg { background: var(--leaf-soft); color: var(--leaf); }
.tag-quick { background: #fff3d6; color: #8a6a00; }
.tag-spicy { background: #ffe5d9; color: #c2410c; }
.tag-lowcarb { background: #e0e7ff; color: #3730a3; }
.tag-family { background: #fce7f3; color: #9d174d; }

/* Color variants for card media */
.bg-klassiek { background: linear-gradient(145deg, #f7c5b8, #e07055); }
.bg-veg { background: linear-gradient(145deg, #c8e6c9, #66bb6a); }
.bg-chorizo { background: linear-gradient(145deg, #ffcc80, #ef6c00); }
.bg-med { background: linear-gradient(145deg, #b3e5fc, #0288d1); }
.bg-kip { background: linear-gradient(145deg, #fff9c4, #fbc02d); }
.bg-mex { background: linear-gradient(145deg, #ffab91, #d84315); }
.bg-lowcarb { background: linear-gradient(145deg, #c5cae9, #5c6bc0); }
.bg-ita { background: linear-gradient(145deg, #ffcdd2, #e53935); }

/* ========== Features / Why ========== */
.features {
  background: var(--white);
  border-block: 1px solid var(--line);
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
}
.feature {
  padding: 1.35rem 1.25rem;
  border-radius: var(--radius);
  background: var(--cream);
  border: 1px solid var(--line);
}
.feature-icon {
  width: 3rem; height: 3rem; border-radius: 14px;
  display: grid; place-items: center; font-size: 1.4rem;
  background: white; box-shadow: var(--shadow-sm); margin-bottom: 0.85rem;
}
.feature h3 { margin-bottom: 0.35rem; }
.feature p { margin: 0; color: var(--muted); font-size: 0.98rem; }

/* ========== CTA band ========== */
.cta-band {
  background: linear-gradient(135deg, var(--paprika-deep), var(--paprika-glow));
  color: white; border-radius: calc(var(--radius) + 6px);
  padding: clamp(1.75rem, 4vw, 2.75rem);
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
  gap: 1.25rem; box-shadow: 0 16px 40px rgba(194, 59, 34, 0.3);
}
.cta-band h2 { color: white; margin: 0 0 0.35em; }
.cta-band p { color: rgba(255,255,255,0.9); margin: 0; max-width: 42ch; }
.cta-band .btn-secondary {
  background: white; color: var(--paprika-deep); border-color: white;
}

/* ========== Recipe page ========== */
.recipe-hero {
  padding: clamp(1.75rem, 4vw, 3rem) 0 0;
}
.breadcrumb {
  display: flex; flex-wrap: wrap; gap: 0.35rem 0.5rem;
  list-style: none; margin: 0 0 1rem; padding: 0;
  font-size: 0.92rem; color: var(--muted); font-weight: 600;
}
.breadcrumb a { text-decoration: none; color: var(--muted); }
.breadcrumb a:hover { color: var(--paprika); }
.breadcrumb li:not(:last-child)::after {
  content: "›"; margin-left: 0.5rem; color: var(--line);
  font-weight: 400;
}
.recipe-title-row {
  display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 0.75rem;
}
.recipe-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: clamp(1.5rem, 3vw, 2.75rem);
  align-items: start;
  margin-top: 1.75rem;
}
.recipe-main { min-width: 0; }
.recipe-aside {
  position: sticky; top: 5.5rem;
}
.recipe-panel {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.25rem 1.35rem;
  box-shadow: var(--shadow-sm);
}
.recipe-panel + .recipe-panel { margin-top: 1rem; }
.recipe-panel h2,
.recipe-panel h3 {
  font-size: 1.05rem;
  margin-bottom: 0.85rem;
  padding-bottom: 0.55rem;
  border-bottom: 2px solid var(--paprika-soft);
}
.facts {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem;
}
.fact {
  background: var(--cream);
  border-radius: var(--radius-sm);
  padding: 0.75rem 0.85rem;
}
.fact dt {
  font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.04em;
  color: var(--muted); font-weight: 700; margin: 0 0 0.2rem;
}
.fact dd {
  margin: 0; font-weight: 800; font-size: 1.05rem; color: var(--charcoal);
  font-family: var(--font-display);
}
.ingredients {
  list-style: none; margin: 0; padding: 0;
}
.ingredients li {
  display: grid; grid-template-columns: auto 1fr; gap: 0.65rem;
  padding: 0.55rem 0; border-bottom: 1px dashed var(--line);
  margin: 0; align-items: start;
}
.ingredients li:last-child { border-bottom: 0; }
.ingredients input[type="checkbox"] {
  width: 1.15rem; height: 1.15rem; margin-top: 0.2rem;
  accent-color: var(--paprika); cursor: pointer;
}
.ingredients label {
  cursor: pointer; line-height: 1.45;
}
.ingredients li:has(input:checked) label {
  text-decoration: line-through; color: var(--muted);
}

.steps { counter-reset: step; list-style: none; margin: 0; padding: 0; }
.steps li {
  counter-increment: step;
  position: relative;
  padding: 1.15rem 1.15rem 1.15rem 4.25rem;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  margin-bottom: 0.85rem;
  box-shadow: var(--shadow-sm);
}
.steps li::before {
  content: counter(step);
  position: absolute; left: 1rem; top: 1.1rem;
  width: 2.35rem; height: 2.35rem;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--paprika-glow), var(--paprika-deep));
  color: white; font-weight: 800; font-family: var(--font-display);
  display: grid; place-items: center; font-size: 1.05rem;
  box-shadow: 0 4px 12px rgba(194, 59, 34, 0.3);
}
.steps li strong { display: block; margin-bottom: 0.25rem; font-size: 1.05rem; }
.steps li p { margin: 0; color: var(--muted); max-width: none; }

.tip-box {
  background: linear-gradient(135deg, #fff8e7, #fff3d6);
  border: 1px solid #f0d78c;
  border-left: 4px solid var(--gold);
  border-radius: var(--radius-sm);
  padding: 1rem 1.15rem;
  margin: 1.25rem 0;
}
.tip-box.green {
  background: linear-gradient(135deg, #f0faf3, var(--leaf-soft));
  border-color: #a3d9b1;
  border-left-color: var(--leaf);
}
.tip-box h3 { font-size: 1rem; margin: 0 0 0.35rem; }
.tip-box p { margin: 0; color: var(--ink); max-width: none; }

.recipe-banner {
  aspect-ratio: 21/9;
  border-radius: var(--radius);
  display: grid; place-items: center;
  margin: 1.25rem 0 0;
  overflow: hidden;
  position: relative;
}
.recipe-banner .emoji { font-size: clamp(3.5rem, 8vw, 5.5rem); }
.recipe-banner .banner-label {
  position: absolute; bottom: 1rem; left: 1rem;
  background: rgba(255,255,255,0.95); padding: 0.5rem 0.9rem;
  border-radius: 999px; font-weight: 700; font-size: 0.9rem;
  box-shadow: var(--shadow-sm);
}

@media (max-width: 900px) {
  .recipe-layout { grid-template-columns: 1fr; }
  .recipe-aside { position: static; order: -1; }
  .facts { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 600px) {
  .facts { grid-template-columns: 1fr 1fr; }
}

/* ========== Tips page ========== */
.tips-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
  gap: 1.25rem;
}
.tip-card {
  background: white; border: 1px solid var(--line);
  border-radius: var(--radius); padding: 1.35rem 1.4rem;
  box-shadow: var(--shadow-sm);
}
.tip-card .num {
  display: inline-grid; place-items: center;
  width: 2.2rem; height: 2.2rem; border-radius: 50%;
  background: var(--paprika-soft); color: var(--paprika-deep);
  font-weight: 800; font-family: var(--font-display); margin-bottom: 0.75rem;
}
.tip-card h3 { margin-bottom: 0.4rem; }
.tip-card p { margin: 0; color: var(--muted); }

/* ========== Filters ========== */
.filters {
  display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 1.5rem;
}
.filter-btn {
  border: 1px solid var(--line); background: white;
  padding: 0.45rem 0.95rem; border-radius: 999px;
  font: inherit; font-weight: 700; font-size: 0.9rem;
  color: var(--muted); cursor: pointer; transition: 0.15s;
}
.filter-btn:hover { border-color: var(--paprika-soft); color: var(--paprika); }
.filter-btn.is-active {
  background: var(--paprika); color: white; border-color: var(--paprika);
}
.recipe-card.is-hidden { display: none; }

/* ========== FAQ ========== */
.faq details {
  background: white; border: 1px solid var(--line);
  border-radius: var(--radius-sm); padding: 0.95rem 1.15rem;
  margin-bottom: 0.65rem; box-shadow: var(--shadow-sm);
}
.faq summary {
  font-weight: 700; cursor: pointer; color: var(--charcoal);
  list-style: none; display: flex; justify-content: space-between; gap: 1rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: var(--paprika); font-size: 1.25rem; font-weight: 400; }
.faq details[open] summary::after { content: "−"; }
.faq details p { margin: 0.75rem 0 0; color: var(--muted); max-width: none; }

/* ========== Footer ========== */
.site-footer {
  margin-top: 3rem;
  background: var(--charcoal);
  color: #d6ccc4;
  padding: 2.75rem 0 1.5rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}
.site-footer h3 {
  color: white; font-size: 1rem; margin: 0 0 0.85rem;
  font-family: var(--font); letter-spacing: 0.04em;
  text-transform: uppercase; font-weight: 700;
}
.site-footer a { color: #d6ccc4; text-decoration: none; }
.site-footer a:hover { color: white; }
.site-footer .logo { color: white; margin-bottom: 0.75rem; }
.site-footer .logo:hover { color: var(--paprika-soft); }
.site-footer p { color: #a8988c; max-width: 36ch; }
.footer-links { list-style: none; margin: 0; padding: 0; }
.footer-links li { margin-bottom: 0.45rem; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1.25rem;
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 0.75rem;
  font-size: 0.9rem; color: #8a7a70;
}
@media (max-width: 700px) {
  .footer-grid { grid-template-columns: 1fr; gap: 1.5rem; }
}

/* ========== Prose / content pages ========== */
.prose { max-width: 70ch; }
.prose h2 { margin-top: 1.75em; }
.prose ul li { margin-bottom: 0.5em; }
.lead-page {
  font-size: clamp(1.1rem, 1rem + 0.4vw, 1.25rem);
  color: var(--muted); max-width: 52ch;
}

/* ========== Print ========== */
@media print {
  .site-header, .site-footer, .nav-toggle, .btn-row, .filters,
  .skip-link, .floating-badge, .cta-band, .recipe-aside .btn {
    display: none !important;
  }
  body { background: white; color: black; font-size: 11pt; }
  .recipe-layout { display: block; }
  .recipe-aside { position: static; margin-bottom: 1.5rem; }
  .steps li { break-inside: avoid; box-shadow: none; }
  a { text-decoration: none; color: black; }
  .recipe-banner { print-color-adjust: exact; -webkit-print-color-adjust: exact; }
}

/* Utility */
.mb-0 { margin-bottom: 0; }
.mt-2 { margin-top: 2rem; }
.visually-sep {
  width: 3.5rem; height: 4px; border-radius: 4px;
  background: linear-gradient(90deg, var(--paprika), var(--orange));
  margin: 0.75rem 0 1.25rem;
}
.visually-sep.center { margin-inline: auto; }
