/* ===== Design Tokens ===== */
:root {
  --green-900: #1f3a2d;
  --green-700: #2f6b4a;
  --green-500: #4caf72;
  --green-300: #8fd6a8;
  --green-100: #e4f5e9;
  --cream: #fbfaf3;
  --cream-2: #f4f0e4;
  --peach: #ffc9a3;
  --berry: #ff7a8a;
  --lemon: #ffe08a;
  --ink: #21302a;
  --muted: #5f7167;
  --white: #ffffff;
  --shadow-sm: 0 2px 10px rgba(31, 58, 45, 0.06);
  --shadow-md: 0 12px 30px rgba(31, 58, 45, 0.10);
  --shadow-lg: 0 24px 60px rgba(31, 58, 45, 0.16);
  --radius: 18px;
  --radius-lg: 28px;
  --container: 1140px;
  --font-head: "Fraunces", Georgia, serif;
  --font-body: "Inter", system-ui, -apple-system, sans-serif;
}

/* ===== Reset ===== */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
.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;
}

.container { width: min(100% - 2.5rem, var(--container)); margin-inline: auto; }
.section { padding: clamp(3.5rem, 8vw, 6.5rem) 0; }
/* Sehr subtile Trennung zwischen den Abschnitten */
.recipes, .checklist, .why, .newsletter { border-top: 1px solid rgba(31, 58, 45, 0.06); }

/* ===== Typography ===== */
h1, h2, h3, h4 { font-family: var(--font-head); font-weight: 600; line-height: 1.1; color: var(--green-900); letter-spacing: -0.01em; }
h1 { font-size: clamp(2.5rem, 6vw, 4.25rem); }
h2 { font-size: clamp(1.9rem, 4vw, 2.8rem); }
h3 { font-size: 1.25rem; }
.eyebrow {
  display: inline-block; font-family: var(--font-body); font-weight: 600;
  font-size: 0.78rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--green-700); margin-bottom: 0.85rem;
}
.lead { font-size: clamp(1.05rem, 2vw, 1.2rem); color: var(--muted); max-width: 46ch; }
.accent { color: var(--green-500); }

/* ===== Buttons ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  padding: 0.85rem 1.6rem; border-radius: 999px; font-weight: 600; font-size: 0.98rem;
  cursor: pointer; border: 2px solid transparent; transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, color 0.18s ease;
  white-space: nowrap;
}
.btn-primary { background: var(--green-500); color: var(--white); box-shadow: var(--shadow-sm); }
.btn-primary:hover { background: var(--green-700); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-ghost { background: transparent; border-color: var(--green-300); color: var(--green-700); }
.btn-ghost:hover { background: var(--green-100); transform: translateY(-2px); }

/* ===== Header ===== */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(251, 250, 243, 0.82); backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(31, 58, 45, 0.06);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 0.9rem 0; }
.logo { display: inline-flex; align-items: center; gap: 0.5rem; font-family: var(--font-head); font-weight: 700; font-size: 1.4rem; color: var(--green-900); }
.logo-mark { font-size: 1.5rem; }
.logo-img { height: 28px; width: auto; display: block; flex-shrink: 0; }
.nav { display: flex; gap: 2rem; }
.nav a { font-weight: 500; color: var(--ink); position: relative; padding: 0.25rem 0; }
.nav a::after {
  content: ""; position: absolute; left: 0; bottom: -2px; width: 0; height: 2px;
  background: var(--green-500); transition: width 0.2s ease;
}
.nav a:hover { color: var(--green-700); }
.nav a:hover::after { width: 100%; }
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 6px; }
.nav-toggle span { width: 24px; height: 2px; background: var(--green-900); border-radius: 2px; transition: 0.25s; }

/* ===== Hero ===== */
.hero { position: relative; overflow: hidden; padding: clamp(2.5rem, 6vw, 5rem) 0 clamp(3rem, 7vw, 5.5rem); }
.hero::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(900px 500px at 80% -10%, var(--green-100), transparent 60%),
              radial-gradient(700px 500px at 0% 100%, #fff3e8, transparent 55%);
  z-index: -1;
}
.hero-inner { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 3rem; align-items: center; }
.hero-copy h1 { margin-bottom: 1.2rem; }
.hero-actions { display: flex; gap: 0.9rem; margin: 1.8rem 0 2.2rem; flex-wrap: wrap; }
.hero-stats { display: flex; gap: 2.2rem; }
.hero-stats div { display: flex; flex-direction: column; }
.hero-stats strong { font-family: var(--font-head); font-size: 1.8rem; color: var(--green-700); }
.hero-stats span { font-size: 0.85rem; color: var(--muted); }

/* Hero art */
.hero-art { position: relative; min-height: 420px; }
.blob { position: absolute; border-radius: 50%; filter: blur(2px); }
.blob-1 { width: 340px; height: 340px; background: linear-gradient(135deg, var(--green-300), var(--green-100)); top: 30px; right: 20px; }
.blob-2 { width: 220px; height: 220px; background: linear-gradient(135deg, var(--peach), var(--lemon)); bottom: 10px; left: 10px; opacity: 0.85; }
.hero-emoji { position: absolute; font-size: clamp(2.5rem, 5vw, 3.6rem); animation: float 6s ease-in-out infinite; filter: drop-shadow(0 10px 18px rgba(31,58,45,.18)); }
.e1 { top: 70px; right: 90px; }
.e2 { top: 30px; left: 30px; animation-delay: 1.2s; }
.e3 { bottom: 90px; right: 40px; animation-delay: 2.1s; }
.e4 { bottom: 40px; left: 90px; animation-delay: 0.6s; }
.hero-card {
  position: absolute; bottom: 120px; right: 0; background: var(--white);
  border-radius: var(--radius); padding: 0.9rem 1.2rem; display: flex; align-items: center; gap: 0.8rem;
  box-shadow: var(--shadow-lg); animation: float 7s ease-in-out infinite;
}
.hero-card { cursor: pointer; transition: box-shadow 0.18s ease; }
.hero-card:hover { box-shadow: 0 28px 70px rgba(31, 58, 45, 0.22); }
.hero-card:focus-visible { outline: 3px solid var(--green-300); outline-offset: 3px; }
.hero-card-emoji { font-size: 2rem; }
.hero-card strong { display: block; font-family: var(--font-head); color: var(--green-900); }
.hero-card small { color: var(--muted); }
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }

/* ===== Section head ===== */
.section-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 1.5rem; margin-bottom: 2rem; flex-wrap: wrap; }
.section-head.center { flex-direction: column; align-items: center; text-align: center; margin-bottom: 3rem; }

/* Search */
.search { position: relative; margin: 0 auto 1.4rem; max-width: 420px; }
.search input {
  font-family: var(--font-body); font-size: 0.95rem; padding: 0.8rem 1rem 0.8rem 2.6rem;
  border: 2px solid var(--cream-2); border-radius: 999px; background: var(--white);
  width: 100%; transition: border-color 0.2s, box-shadow 0.2s; color: var(--ink);
}
.search input:focus { outline: none; border-color: var(--green-300); box-shadow: 0 0 0 4px var(--green-100); }
.search-icon { position: absolute; left: 1rem; top: 50%; transform: translateY(-50%); opacity: 0.6; }

/* Filters */
.filters { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.6rem; margin-bottom: 2.2rem; }
.chip {
  font-family: var(--font-body); font-weight: 500; font-size: 0.9rem; cursor: pointer;
  padding: 0.55rem 1.1rem; border-radius: 999px; border: 2px solid var(--cream-2);
  background: var(--white); color: var(--muted); transition: 0.18s;
}
.chip:hover { border-color: var(--green-300); color: var(--green-700); }
.chip.active { background: var(--green-900); border-color: var(--green-900); color: var(--white); }

/* ===== Recipe grid ===== */
.recipe-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(270px, 1fr)); gap: 1.6rem; }
.card {
  background: var(--white); border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-sm); cursor: pointer; display: flex; flex-direction: column;
  transition: transform 0.22s ease, box-shadow 0.22s ease; border: 1px solid rgba(31,58,45,.04);
  animation: rise 0.5s ease both;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.card-media { position: relative; aspect-ratio: 4 / 3; display: grid; place-items: center; font-size: 4.5rem; overflow: hidden; }
.card-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.card-badge {
  position: absolute; top: 0.8rem; left: 0.8rem; background: rgba(255,255,255,.92);
  color: var(--green-700); font-size: 0.74rem; font-weight: 600; padding: 0.3rem 0.7rem;
  border-radius: 999px; letter-spacing: 0.03em;
}
.card-fav {
  position: absolute; top: 0.7rem; right: 0.7rem; width: 36px; height: 36px; border-radius: 50%;
  border: none; background: rgba(255,255,255,.92); cursor: pointer; font-size: 1.05rem; line-height: 1;
  display: grid; place-items: center; transition: transform 0.15s, background 0.15s;
}
.card-fav:hover { transform: scale(1.12); }
.card-fav.is-fav { background: var(--berry); }
.card-body { padding: 1.2rem 1.3rem 1.4rem; display: flex; flex-direction: column; gap: 0.6rem; flex: 1; }
.card-body h3 { color: var(--green-900); }
.card-desc { color: var(--muted); font-size: 0.92rem; flex: 1; }
.card-meta { display: flex; flex-wrap: wrap; gap: 0.6rem 1rem; font-size: 0.82rem; color: var(--muted); margin-top: 0.3rem; }
.card-meta span { display: inline-flex; align-items: center; gap: 0.3rem; }
.card-meta .hp-badge {
  background: var(--green-100); color: var(--green-700); font-weight: 700;
  font-size: 0.7rem; letter-spacing: 0.04em; padding: 0.2rem 0.55rem; border-radius: 999px;
}
.card-meta .difficulty { align-items: flex-end; gap: 3px; height: 14px; }
.difficulty .bar { width: 4px; border-radius: 2px; background: var(--cream-2); }
.difficulty .bar-1 { height: 6px; }
.difficulty .bar-2 { height: 10px; }
.difficulty .bar-3 { height: 14px; }
.difficulty .bar-1.on { background: var(--green-500); }
.difficulty .bar-2.on { background: #f5a623; }
.difficulty .bar-3.on { background: #e5484d; }
@keyframes rise { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: translateY(0); } }

.empty { text-align: center; color: var(--muted); padding: 3rem 0; font-size: 1.05rem; }

/* ===== Why / Features ===== */
.why { background: linear-gradient(180deg, var(--cream), var(--green-100) 120%); }
.feature-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.4rem; }
.feature {
  background: var(--white); border-radius: var(--radius); padding: 2rem 1.6rem;
  box-shadow: var(--shadow-sm); transition: transform 0.2s;
}
.feature:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.feature-icon {
  width: 58px; height: 58px; border-radius: 16px; background: var(--green-100);
  display: grid; place-items: center; font-size: 1.7rem; margin-bottom: 1rem;
}
.feature h3 { margin-bottom: 0.4rem; }
.feature p { color: var(--muted); font-size: 0.94rem; }
.why-more { text-align: center; margin-top: 2.4rem; }
.more-link {
  background: none; border: none; cursor: pointer; font-family: var(--font-body);
  font-weight: 600; font-size: 1.05rem; color: var(--green-700); padding: 0.5rem 0.2rem;
  position: relative; transition: color 0.18s, gap 0.18s;
}
.more-link::after {
  content: ""; position: absolute; left: 0; bottom: 0.2rem; width: 0; height: 2px;
  background: var(--green-500); transition: width 0.22s ease;
}
.more-link:hover { color: var(--green-900); }
.more-link:hover::after { width: 100%; }

/* Info-Modal Inhalte */
.modal-section { margin-bottom: 1.6rem; }
.modal-section h3 { display: flex; align-items: center; gap: 0.5rem; margin-bottom: 1rem; }
.modal-section p { color: var(--ink); font-size: 0.96rem; margin-bottom: 0.7rem; }
.modal-divider { border: none; border-top: 1px dashed rgba(31,58,45,.15); margin: 1.8rem 0; }

/* ===== Newsletter ===== */
.newsletter-card {
  background: linear-gradient(135deg, var(--green-700), var(--green-500));
  border-radius: var(--radius-lg); padding: clamp(2rem, 5vw, 3.5rem);
  display: grid; grid-template-columns: 1.2fr 1fr; gap: 2.5rem; align-items: center;
  color: var(--white); box-shadow: var(--shadow-md); position: relative; overflow: hidden;
}
.newsletter-card::after {
  content: "🥦"; position: absolute; font-size: 12rem; right: -1rem; bottom: -3rem; opacity: 0.12; transform: rotate(-15deg);
  pointer-events: none;
}
.newsletter-card .eyebrow { color: var(--lemon); }
.newsletter-card h2 { color: var(--white); margin-bottom: 0.7rem; }
.newsletter-card p { color: rgba(255,255,255,.9); max-width: 42ch; }
.newsletter-form { display: flex; flex-wrap: wrap; gap: 0.7rem; position: relative; }
.newsletter-form input {
  flex: 1; min-width: 200px; padding: 0.9rem 1.2rem; border-radius: 999px; border: none;
  font-family: var(--font-body); font-size: 0.95rem; color: var(--ink);
}
.newsletter-form input:focus { outline: none; box-shadow: 0 0 0 4px rgba(255,255,255,.3); }
.newsletter-form .btn-primary { background: var(--green-900); }
.newsletter-form .btn-primary:hover { background: var(--ink); }
.newsletter-form .g-recaptcha { flex-basis: 100%; margin-top: 0.2rem; }
.form-consent { flex-basis: 100%; font-size: 0.78rem; line-height: 1.5; color: rgba(255,255,255,.8); margin-top: 0.2rem; }
.form-consent a { color: var(--lemon); text-decoration: underline; }
.form-msg { flex-basis: 100%; font-size: 0.9rem; min-height: 1.2rem; color: var(--lemon); font-weight: 500; }

/* ===== Footer ===== */
.site-footer { background: var(--green-900); color: rgba(255,255,255,.78); padding: 3.5rem 0 1.5rem; margin-top: 2rem; }
.footer-inner { display: grid; grid-template-columns: 1.4fr 1fr; gap: 2.5rem; padding-bottom: 2.5rem; border-bottom: 1px solid rgba(255,255,255,.12); }
.footer-brand .logo { color: var(--white); margin-bottom: 0.8rem; }
.footer-brand p { max-width: 38ch; font-size: 0.94rem; }
.footer-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.footer-cols h4 { color: var(--white); font-family: var(--font-body); font-size: 0.85rem; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 0.9rem; }
.footer-cols a { display: block; padding: 0.3rem 0; font-size: 0.94rem; transition: color 0.15s; }
.footer-cols a:hover { color: var(--green-300); }
.footer-bottom { display: flex; justify-content: space-between; gap: 1rem; padding-top: 1.5rem; font-size: 0.85rem; flex-wrap: wrap; align-items: center; }
.footer-legal { display: flex; gap: 1.4rem; }
.footer-legal a { transition: color 0.15s; }
.footer-legal a:hover { color: var(--green-300); }

/* ===== Inhaltsseiten (Impressum, Datenschutz, Über uns) ===== */
.page { padding: clamp(2.5rem, 6vw, 4.5rem) 0; }
.page-inner { max-width: 760px; margin-inline: auto; }
.page h1 { font-size: clamp(2rem, 5vw, 3rem); margin-bottom: 0.5rem; }
.page .page-intro { color: var(--muted); font-size: 1.05rem; margin-bottom: 2.5rem; }
.page h2 { font-size: 1.5rem; margin: 2.2rem 0 0.8rem; }
.page h3 { font-size: 1.1rem; margin: 1.4rem 0 0.5rem; color: var(--green-900); }
.page p { color: var(--ink); margin-bottom: 1rem; }
.page ul.bullets { list-style: disc; padding-left: 1.4rem; margin-bottom: 1rem; color: var(--ink); }
.page ul.bullets li { padding: 0.2rem 0; }
/* Generierte Datenschutz-Listen */
.page ul:not(.bullets) { list-style: disc; padding-left: 1.4rem; margin-bottom: 1.2rem; color: var(--ink); }
.page ul li { padding: 0.25rem 0; }
.page ul.index { list-style: none; padding-left: 0; columns: 2; column-gap: 2rem; }
.page ul.index li { padding: 0.15rem 0; }
.page .index-link { color: var(--green-700); }
.page ul.m-elements li, .page ul.glossary li { font-size: 0.92rem; }
.page .seal { margin-top: 2.5rem; padding-top: 1.2rem; border-top: 1px solid rgba(31,58,45,.12); font-size: 0.82rem; }
.page .seal a { color: var(--muted); text-decoration: underline; }
@media (max-width: 600px) { .page ul.index { columns: 1; } }
.page a.inline { color: var(--green-700); text-decoration: underline; }
.page .note {
  background: var(--green-100); border-left: 4px solid var(--green-500);
  padding: 1rem 1.2rem; border-radius: 12px; margin: 1.5rem 0; font-size: 0.94rem; color: var(--green-900);
}
.page .back { display: inline-flex; align-items: center; gap: 0.4rem; margin-bottom: 1.5rem; color: var(--green-700); font-weight: 500; }
.page .back:hover { color: var(--green-900); }
.team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 1.2rem; margin: 1.5rem 0; }
.team-card { background: var(--white); border-radius: var(--radius); padding: 1.5rem; text-align: center; box-shadow: var(--shadow-sm); }
.team-card .avatar { font-size: 2.8rem; margin-bottom: 0.5rem; }
.team-card strong { display: block; color: var(--green-900); font-family: var(--font-head); }
.team-card span { font-size: 0.85rem; color: var(--muted); }

/* ===== Modal ===== */
.modal { position: fixed; inset: 0; z-index: 100; display: none; }
.modal.open { display: block; }
.modal-overlay { position: absolute; inset: 0; background: rgba(31, 58, 45, 0.55); backdrop-filter: blur(4px); animation: fade 0.2s ease; }
.modal-dialog {
  position: relative; max-width: 720px; width: min(100% - 2rem, 720px); margin: 5vh auto;
  background: var(--cream); border-radius: var(--radius-lg); max-height: 90vh; overflow-y: auto;
  box-shadow: var(--shadow-lg); animation: pop 0.25s ease;
}
.modal-close {
  position: absolute; top: 1rem; right: 1rem; z-index: 2; width: 40px; height: 40px; border-radius: 50%;
  border: none; background: rgba(255,255,255,.92); font-size: 1.6rem; line-height: 1; cursor: pointer; color: var(--green-900);
  box-shadow: var(--shadow-sm); transition: transform 0.15s;
}
.modal-close:hover { transform: rotate(90deg); }
@keyframes fade { from { opacity: 0; } to { opacity: 1; } }
@keyframes pop { from { opacity: 0; transform: translateY(20px) scale(.98); } to { opacity: 1; transform: none; } }

.modal-hero { position: relative; aspect-ratio: 16 / 7; display: grid; place-items: center; font-size: 6rem; border-radius: var(--radius-lg) var(--radius-lg) 0 0; overflow: hidden; }
.modal-hero-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; display: block; cursor: zoom-in; }

/* Lightbox – volles Bild beim Klick */
.lightbox {
  position: fixed; inset: 0; z-index: 200; background: rgba(0, 0, 0, 0.85);
  display: flex; align-items: center; justify-content: center; padding: 24px;
  cursor: zoom-out; animation: fade 0.2s ease;
}
.lightbox img { max-width: 95%; max-height: 90vh; object-fit: contain; border-radius: 12px; box-shadow: var(--shadow-lg); }
.lightbox-close {
  position: absolute; top: 18px; right: 22px; width: 44px; height: 44px; border-radius: 50%;
  border: none; background: rgba(255, 255, 255, 0.92); font-size: 1.8rem; line-height: 1;
  cursor: pointer; color: var(--green-900); display: grid; place-items: center;
}
.modal-inner { padding: clamp(1.5rem, 4vw, 2.5rem); }
.modal-inner h2 { margin-bottom: 0.5rem; }
.modal-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 1.2rem; }
.modal-tag { background: var(--green-100); color: var(--green-700); font-size: 0.8rem; font-weight: 600; padding: 0.35rem 0.8rem; border-radius: 999px; }
.modal-meta { display: flex; gap: 1.8rem; padding: 1rem 1.2rem; background: var(--white); border-radius: var(--radius); margin-bottom: 1.6rem; box-shadow: var(--shadow-sm); flex-wrap: wrap; }
.modal-meta div { display: flex; flex-direction: column; }
.modal-meta strong { font-family: var(--font-head); font-size: 1.15rem; color: var(--green-900); }
.modal-meta span { font-size: 0.78rem; color: var(--muted); }
.meta-portions { gap: 0.35rem; }
.portion-ctrl { display: inline-flex; align-items: center; gap: 0.3rem; }
.portion-ctrl button {
  width: 26px; height: 26px; border-radius: 50%; border: none; cursor: pointer;
  background: var(--green-100); color: var(--green-700); font-size: 1.1rem; line-height: 1;
  display: grid; place-items: center; transition: background 0.15s, transform 0.1s;
}
.portion-ctrl button:hover { background: var(--green-300); }
.portion-ctrl button:active { transform: scale(0.9); }
.portion-ctrl input {
  width: 3rem; text-align: center; font-family: var(--font-head); font-size: 1.15rem;
  color: var(--green-900); border: 2px solid var(--cream-2); border-radius: 10px; padding: 0.15rem 0.2rem;
  -moz-appearance: textfield;
}
.portion-ctrl input:focus { outline: none; border-color: var(--green-300); box-shadow: 0 0 0 3px var(--green-100); }
.portion-ctrl input::-webkit-outer-spin-button,
.portion-ctrl input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.modal-columns { display: grid; grid-template-columns: 1fr 1.3fr; gap: 2rem; }
.modal-columns h3 { color: var(--green-900); margin-bottom: 0.8rem; font-size: 1.15rem; }
.ingredients li { padding: 0.5rem 0; border-bottom: 1px dashed rgba(31,58,45,.12); font-size: 0.94rem; }
.ingredients li.ing-group {
  border-bottom: none; padding: 0.9rem 0 0.2rem; font-weight: 700; font-size: 0.8rem;
  text-transform: uppercase; letter-spacing: 0.06em; color: var(--green-700);
}
.ingredients li.ing-group:first-child { padding-top: 0; }
.steps { counter-reset: step; display: flex; flex-direction: column; gap: 1rem; }
.steps li { position: relative; padding-left: 2.6rem; font-size: 0.95rem; color: var(--ink); }
.steps li::before {
  counter-increment: step; content: counter(step); position: absolute; left: 0; top: -2px;
  width: 1.8rem; height: 1.8rem; background: var(--green-500); color: #fff; border-radius: 50%;
  display: grid; place-items: center; font-weight: 700; font-size: 0.85rem; font-family: var(--font-body);
}

/* ===== "Möchte ich kochen!"-Button ===== */
.cook-btn { width: 100%; margin-top: 1.8rem; font-size: 1.05rem; padding: 1rem; }

/* ===== Checkliste ===== */
.checklist { background: linear-gradient(180deg, var(--green-100), var(--cream) 60%); }
.checklist .eyebrow { margin-bottom: 1.5rem; }
.checklist-heading { display: flex; justify-content: center; align-items: center; gap: 0.6rem; }
.help-btn {
  width: 26px; height: 26px; border-radius: 50%; border: none; cursor: pointer;
  background: var(--green-500); color: #fff; font-weight: 700; font-size: 0.9rem; line-height: 1;
  display: inline-grid; place-items: center; transition: background 0.15s, transform 0.15s;
  font-family: var(--font-body);
}
.help-btn:hover { background: var(--green-700); transform: scale(1.1); }
.help-box {
  max-width: 720px; margin: 0 auto 2rem; background: var(--white); border-radius: var(--radius);
  padding: 1.2rem 1.5rem; box-shadow: var(--shadow-sm); border-left: 4px solid var(--green-500);
}
.help-box p { color: var(--ink); font-size: 0.94rem; }
.checklist-empty { text-align: center; color: var(--muted); max-width: 480px; margin: 0 auto; font-size: 1.02rem; }
.checklist-card {
  max-width: 620px; margin: 0 auto; background: var(--white); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md); padding: 1.6rem 1.8rem;
}
.checklist-card-head { display: flex; justify-content: space-between; align-items: flex-start; gap: 1rem; margin-bottom: 1.2rem; }
.checklist-card-head h3 { color: var(--green-900); }
.checklist-card-head span { font-size: 0.85rem; color: var(--muted); }
.checklist-clear { padding: 0.5rem 1rem; font-size: 0.85rem; }
.check-list { display: flex; flex-direction: column; }
.check-group {
  font-weight: 700; font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.06em;
  color: var(--green-700); padding: 0.9rem 0 0.3rem;
}
.check-group:first-child { padding-top: 0; }
.check-item { display: flex; align-items: center; gap: 0.7rem; padding: 0.55rem 0; border-bottom: 1px dashed rgba(31,58,45,.12); }
.check-item input[type="checkbox"] { width: 20px; height: 20px; accent-color: var(--green-500); cursor: pointer; flex-shrink: 0; }
.check-item label { cursor: pointer; font-size: 0.96rem; color: var(--ink); transition: color 0.15s; }
.check-item.is-done label { text-decoration: line-through; color: var(--muted); }

/* ===== Responsive ===== */
@media (max-width: 860px) {
  .nav, .nav-cta { display: none; }
  .nav-toggle { display: flex; }
  .site-header.menu-open .nav {
    display: flex; flex-direction: column; gap: 1rem; position: absolute; top: 100%; left: 0; right: 0;
    background: var(--cream); padding: 1.5rem; box-shadow: var(--shadow-md);
  }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-art { min-height: 300px; order: -1; }
  .newsletter-card { grid-template-columns: 1fr; }
  .modal-columns { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
}
@media (max-width: 520px) {
  .hero-stats { gap: 1.3rem; }
  .search input { min-width: 0; width: 100%; }
  .search { width: 100%; }
  .section-head { flex-direction: column; align-items: stretch; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  html { scroll-behavior: auto; }
}
