/* catering-stuttgart.com — Design-System nach Vorbild neckaralb.digital */
@font-face { font-family: 'Plus Jakarta Sans'; src: url('fonts/jakarta-var.woff2') format('woff2'); font-weight: 200 800; font-display: swap; }
@font-face { font-family: 'Inter'; src: url('fonts/inter-var.woff2') format('woff2'); font-weight: 100 900; font-display: swap; }

:root {
  --ink: #1b2430;
  --ink-soft: #4a5568;
  --accent: #ff7900;
  --accent-dark: #e05e00;
  --accent-soft: #fff1e3;
  --bg: #ffffff;
  --cream: #fff8f1;
  --line: #f0e3d4;
  --radius: 22px;
  --shadow: 0 10px 40px -12px rgba(27, 36, 48, .12);
  --font-head: 'Plus Jakarta Sans', Inter, system-ui, sans-serif;
  --font-body: Inter, system-ui, -apple-system, 'Segoe UI', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); color: var(--ink); background: var(--bg); line-height: 1.65; font-size: 17px; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; display: block; }
a { color: var(--accent-dark); text-decoration: none; }
a:hover { text-decoration: underline; }

.wrap { max-width: 1180px; margin: 0 auto; padding: 0 24px; }

/* ---------- Header ---------- */
.site-head { position: sticky; top: 0; z-index: 50; background: rgba(255,255,255,.92); backdrop-filter: blur(12px); border-bottom: 1px solid rgba(240,227,212,.6); }
.site-head .wrap { display: flex; align-items: center; gap: 28px; height: 72px; }
.logo { font-family: var(--font-head); font-weight: 800; font-size: 1.25rem; color: var(--ink); letter-spacing: -.02em; white-space: nowrap; }
.logo:hover { text-decoration: none; }
.logo .dot { color: var(--accent); }
.nav { display: flex; gap: 6px; margin-left: auto; align-items: center; }
.nav a { color: var(--ink); font-weight: 500; font-size: .95rem; padding: 9px 15px; border-radius: 999px; }
.nav a:hover { background: var(--accent-soft); text-decoration: none; }
.nav a.active { background: var(--accent-soft); color: var(--accent-dark); }
.btn { display: inline-block; font-family: var(--font-body); font-weight: 600; font-size: .98rem; padding: 12px 26px; border-radius: 999px; border: 2px solid transparent; cursor: pointer; transition: transform .15s ease, box-shadow .15s ease, background .15s; }
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn-primary { background: var(--accent); color: #fff; box-shadow: 0 8px 24px -8px rgba(255,121,0,.55); }
.btn-primary:hover { background: var(--accent-dark); }
.btn-ghost { border-color: var(--line); color: var(--ink); background: #fff; }
.btn-ghost:hover { border-color: var(--accent); color: var(--accent-dark); }
.nav .btn { margin-left: 10px; white-space: nowrap; padding: 10px 20px; font-size: .93rem; }
.burger { display: none; margin-left: auto; background: none; border: 0; width: 44px; height: 44px; cursor: pointer; }
.burger span { display: block; height: 2.5px; background: var(--ink); margin: 5px 8px; border-radius: 2px; }

/* ---------- Hero ---------- */
.hero { background: radial-gradient(1100px 600px at 85% -10%, #ffe3c4 0%, #fff4e6 45%, #fff 100%); padding: 84px 0 64px; overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 56px; align-items: center; }
.eyebrow { font-size: .82rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--accent-dark); margin-bottom: 18px; }
h1 { font-family: var(--font-head); font-weight: 800; font-size: clamp(2.1rem, 4.6vw, 3.4rem); line-height: 1.14; letter-spacing: -.02em; margin-bottom: 22px; }
.hero-sub { font-size: 1.16rem; color: var(--ink-soft); max-width: 56ch; margin-bottom: 30px; }
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 26px; }
.hero-trust { border-left: 3px solid var(--accent); padding-left: 14px; color: var(--ink-soft); font-size: .95rem; max-width: 52ch; }
.hero-trust strong { color: var(--ink); }
.hero-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); padding: 30px; }
.hero-card h2 { font-family: var(--font-head); font-size: 1.15rem; margin-bottom: 14px; }
.hero-card ul { list-style: none; }
.hero-card li { padding: 9px 0 9px 30px; position: relative; color: var(--ink-soft); border-bottom: 1px dashed var(--line); font-size: .97rem; }
.hero-card li:last-child { border-bottom: 0; }
.hero-card li::before { content: ''; position: absolute; left: 0; top: 14px; width: 18px; height: 18px; border-radius: 50%; background: var(--accent-soft); box-shadow: inset 0 0 0 5px var(--accent); }

/* Reveal – nur wenn JS läuft (html.js), sonst bleibt alles sichtbar.
   H1 (LCP) startet ohne Delay, Formular-Card ist bewusst kein .io. */
@media (prefers-reduced-motion: no-preference) {
  html.js .hero [data-reveal] { opacity: 0; transform: translateY(16px); animation: rise .7s cubic-bezier(.2,.7,.3,1) forwards; }
  html.js .hero [data-reveal="3"] { animation-delay: .1s; }
  html.js .hero [data-reveal="4"] { animation-delay: .15s; } html.js .hero [data-reveal="5"] { animation-delay: .2s; }
  @keyframes rise { to { opacity: 1; transform: none; } }
  html.js .io { opacity: 0; transform: translateY(22px); transition: opacity .6s ease, transform .6s cubic-bezier(.2,.7,.3,1); }
  html.js .io.in { opacity: 1; transform: none; }
}

/* ---------- Sections ---------- */
section { padding: 72px 0; }
section.tint { background: var(--cream); }
.sec-head { max-width: 720px; margin-bottom: 44px; }
.sec-head.center { margin-left: auto; margin-right: auto; text-align: center; }
h2 { font-family: var(--font-head); font-weight: 800; font-size: clamp(1.55rem, 3vw, 2.2rem); letter-spacing: -.015em; line-height: 1.2; margin-bottom: 14px; }
.sec-head p { color: var(--ink-soft); font-size: 1.08rem; }
h3 { font-family: var(--font-head); font-weight: 700; font-size: 1.18rem; margin: 26px 0 10px; }

/* Cards grid */
.grid { display: grid; gap: 22px; }
.grid.c3 { grid-template-columns: repeat(3, 1fr); }
.grid.c4 { grid-template-columns: repeat(4, 1fr); }
.card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; transition: transform .18s ease, box-shadow .18s ease; }
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.card .ico { width: 46px; height: 46px; border-radius: 14px; background: var(--accent-soft); display: grid; place-items: center; margin-bottom: 16px; font-size: 22px; }
.card h3 { margin: 0 0 8px; font-size: 1.08rem; }
.card p { color: var(--ink-soft); font-size: .95rem; margin-bottom: 12px; }
.card .more { font-weight: 600; font-size: .93rem; }
a.card-link { color: inherit; display: block; }
a.card-link:hover { text-decoration: none; }

/* Steps */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; counter-reset: step; }
.step { position: relative; padding: 26px 22px 22px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); }
.step .num { font-family: var(--font-head); font-weight: 800; font-size: 2.2rem; color: var(--accent); opacity: .35; line-height: 1; margin-bottom: 10px; }
.step h3 { margin: 0 0 8px; font-size: 1.05rem; }
.step p { color: var(--ink-soft); font-size: .93rem; }

/* Chips (Städte etc.) */
.chips { display: flex; flex-wrap: wrap; gap: 10px; }
.chips a { background: #fff; border: 1px solid var(--line); border-radius: 999px; padding: 9px 18px; color: var(--ink); font-size: .93rem; font-weight: 500; transition: border-color .15s, color .15s; }
.chips a:hover { border-color: var(--accent); color: var(--accent-dark); text-decoration: none; }
.tint .chips a { background: #fff; }

/* Prose (Content-Bereiche) */
.prose { max-width: 760px; }
.prose p { margin-bottom: 18px; color: #333d4a; }
.prose ul { margin: 0 0 18px 22px; color: #333d4a; }
.prose li { margin-bottom: 8px; }
.prose a { font-weight: 500; }
.prose h2 { margin-top: 44px; }
.prose h3 { margin-top: 28px; }
.two-col { display: grid; grid-template-columns: 1fr 340px; gap: 48px; align-items: start; }
.sidebar { position: sticky; top: 96px; display: grid; gap: 20px; }
.side-box { background: var(--cream); border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; }
.side-box h3 { margin: 0 0 12px; font-size: 1.02rem; }
.side-box ul { list-style: none; }
.side-box li { border-bottom: 1px dashed var(--line); }
.side-box li:last-child { border-bottom: 0; }
.side-box a { display: block; padding: 8px 0; color: var(--ink); font-size: .93rem; }
.side-box a:hover { color: var(--accent-dark); }
.side-box.cta { background: var(--ink); color: #fff; border: 0; }
.side-box.cta h3 { color: #fff; }
.side-box.cta p { color: #b9c2ce; font-size: .92rem; margin-bottom: 16px; }

/* Tables */
table { width: 100%; border-collapse: collapse; margin: 20px 0 28px; background: #fff; border-radius: 14px; overflow: hidden; border: 1px solid var(--line); font-size: .95rem; }
caption { caption-side: top; text-align: left; font-family: var(--font-head); font-weight: 700; padding: 0 0 10px; color: var(--ink); }
th { background: var(--accent-soft); color: var(--ink); text-align: left; padding: 12px 16px; font-weight: 600; }
td { padding: 11px 16px; border-top: 1px solid var(--line); color: #333d4a; }
tr:nth-child(even) td { background: #fffaf4; }
.table-scroll { overflow-x: auto; }

/* FAQ */
.faq { max-width: 760px; }
.faq details { background: #fff; border: 1px solid var(--line); border-radius: 16px; margin-bottom: 12px; overflow: hidden; }
.faq summary { cursor: pointer; list-style: none; padding: 18px 52px 18px 22px; font-weight: 600; font-family: var(--font-head); position: relative; font-size: 1.02rem; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: '+'; position: absolute; right: 20px; top: 50%; transform: translateY(-50%); font-size: 1.4rem; color: var(--accent); font-weight: 400; transition: transform .2s; }
.faq details[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq details p { padding: 0 22px 20px; color: var(--ink-soft); }

/* Lead-Form */
.lead { background: linear-gradient(180deg, var(--cream), #fff); }
.lead-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.lead-benefits { list-style: none; margin: 26px 0; }
.lead-benefits li { padding: 10px 0 10px 34px; position: relative; color: var(--ink-soft); }
.lead-benefits li::before { content: '✓'; position: absolute; left: 0; top: 8px; width: 24px; height: 24px; border-radius: 50%; background: var(--accent); color: #fff; font-size: .8rem; display: grid; place-items: center; }
.form-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); padding: 34px; }
.form-card h3 { margin: 0 0 6px; }
.form-card .hint { color: var(--ink-soft); font-size: .9rem; margin-bottom: 22px; }
.f-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
label { display: block; font-size: .85rem; font-weight: 600; margin: 14px 0 6px; }
/* 1rem = 17px → über der 16px-Schwelle, verhindert iOS-Auto-Zoom beim Fokus */
input, select, textarea { width: 100%; font-family: var(--font-body); font-size: 1rem; padding: 12px 14px; border: 1.5px solid var(--line); border-radius: 12px; background: #fffdfa; color: var(--ink); }
input:focus, select:focus, textarea:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(255,121,0,.15); }
.form-card .btn { width: 100%; margin-top: 22px; }
.form-note { font-size: .8rem; color: var(--ink-soft); margin-top: 12px; text-align: center; }
.form-ok { display: none; background: #eefaf0; border: 1px solid #bfe8c8; color: #1d6b34; border-radius: 12px; padding: 14px 16px; margin-top: 16px; font-size: .95rem; }

/* Breadcrumbs */
.crumbs { font-size: .85rem; color: var(--ink-soft); padding: 18px 0 0; }
.crumbs a { color: var(--ink-soft); }
.crumbs a:hover { color: var(--accent-dark); }
.crumbs span { margin: 0 6px; color: #c4b8a8; }

/* Page-Hero (Unterseiten) */
.page-hero { background: radial-gradient(900px 420px at 90% -20%, #ffe3c4 0%, #fff4e6 40%, #fff 100%); padding: 40px 0 48px; }
.page-hero h1 { max-width: 20ch; }
.page-hero .hero-sub { margin-bottom: 24px; }

/* Glossar */
.glossar-nav { display: flex; flex-wrap: wrap; gap: 8px; margin: 24px 0 36px; }
.glossar-nav a { width: 38px; height: 38px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 10px; font-weight: 600; font-size: .9rem; color: var(--ink); }
.glossar-nav a:hover { border-color: var(--accent); color: var(--accent-dark); text-decoration: none; }
.glossar-group { margin-bottom: 34px; }
.glossar-group h2 { color: var(--accent); font-size: 1.6rem; border-bottom: 2px solid var(--line); padding-bottom: 8px; }
.glossar-list { columns: 3; gap: 28px; margin-top: 14px; }
.glossar-list a { display: block; padding: 6px 0; color: var(--ink); break-inside: avoid; }
.glossar-list a:hover { color: var(--accent-dark); }

/* Footer */
.site-foot { background: var(--ink); color: #aeb7c4; padding: 64px 0 32px; margin-top: 0; font-size: .92rem; }
.foot-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 44px; }
.site-foot .logo { color: #fff; font-size: 1.15rem; display: inline-block; margin-bottom: 12px; }
.site-foot h4 { color: #fff; font-family: var(--font-head); font-size: .95rem; margin-bottom: 14px; }
.site-foot ul { list-style: none; }
.site-foot li { margin-bottom: 8px; }
.site-foot a { color: #aeb7c4; }
.site-foot a:hover { color: var(--accent); }
.foot-bottom { border-top: 1px solid #2c3947; padding-top: 24px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-size: .85rem; }

/* Platzhalter-Chip (vor Livegang ersetzen) */
.todo-chip { display: inline-block; background: #fdecec; color: #a33; border: 1px dashed #d99; border-radius: 8px; padding: 2px 10px; font-size: .8rem; font-weight: 600; }

/* Karten-Bilder (Ratgeber-Index) */
.card-img { width: calc(100% + 56px); margin: -28px -28px 18px; border-radius: var(--radius) var(--radius) 0 0; height: auto; }

/* Hero-Bilder */
.hero-media { margin: 28px 0 0; }
.hero-media img { width: 100%; height: auto; border-radius: var(--radius); box-shadow: var(--shadow); }
.page-hero .hero-media { max-width: 760px; }
.hero-right { display: grid; gap: 20px; }
.hero-right .hero-media { margin: 0; }
.prose figure { margin: 24px 0; }
.prose figure img { border-radius: 16px; }
.prose figcaption { font-size: .85rem; color: var(--ink-soft); margin-top: 8px; }

/* Stand-Zeile unter Preistabellen (Frische-Signal) */
.stand { font-size: .82rem; color: var(--ink-soft); margin: -18px 0 24px; }

/* Lead-Sektion: 3-Schritte-Strip + Consent + Honeypot + Fehlerzustand */
.lead-steps { display: flex; gap: 18px; flex-wrap: wrap; margin-top: 22px; }
.lead-steps span { font-size: .9rem; color: var(--ink-soft); }
.lead-steps b { display: inline-grid; place-items: center; width: 22px; height: 22px; border-radius: 50%; background: var(--accent); color: #fff; font-size: .75rem; margin-right: 6px; }
.consent { display: flex; gap: 10px; align-items: flex-start; font-size: .82rem; font-weight: 400; color: var(--ink-soft); margin: 16px 0 0; cursor: pointer; }
.consent input { width: auto; margin-top: 3px; accent-color: var(--accent); }
.hp-field { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }
.form-err { display: none; background: #fdecec; border: 1px solid #eebcbc; color: #a33; border-radius: 12px; padding: 14px 16px; margin-top: 16px; font-size: .95rem; }

/* CTA-Leiste unten: Tel · Mail · Kostenlos anfragen — fix auf allen Viewports */
.cta-bar { position: fixed; left: 0; right: 0; bottom: 0; z-index: 60; display: flex; align-items: center; justify-content: center; gap: 28px; padding: 10px 18px calc(10px + env(safe-area-inset-bottom)); background: rgba(255,255,255,.95); backdrop-filter: blur(12px); border-top: 1px solid var(--line); box-shadow: 0 -8px 30px -18px rgba(27,36,48,.25); }
.cta-contact { display: inline-flex; align-items: center; gap: 8px; color: var(--ink); font-weight: 600; font-size: .95rem; white-space: nowrap; }
.cta-contact:hover { color: var(--accent-dark); text-decoration: none; }
.cta-contact svg { color: var(--accent); flex: none; }
.cta-bar .cta-btn { padding: 10px 24px; white-space: nowrap; }
body { padding-bottom: 78px; }
.lead { scroll-margin-bottom: 92px; }
@media (max-width: 700px) {
  .cta-bar { gap: 12px; justify-content: space-between; }
  .cta-mail { display: none; }
  .cta-bar .cta-btn { flex: 1; text-align: center; }
}

/* Footer-Kontakt */
.foot-contact { margin-top: 14px; font-size: .9rem; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .hero-grid, .lead-grid, .two-col { grid-template-columns: 1fr; }
  .sidebar { position: static; }
  .grid.c3, .grid.c4 { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: 1fr 1fr; }
  .foot-grid { grid-template-columns: 1fr 1fr; }
  .glossar-list { columns: 2; }
  .hero-card { display: none; }
}
@media (max-width: 700px) {
  .nav { position: fixed; inset: 72px 0 auto 0; background: #fff; flex-direction: column; align-items: stretch; padding: 18px 24px 26px; border-bottom: 1px solid var(--line); display: none; box-shadow: 0 20px 40px -20px rgba(0,0,0,.15); }
  .nav.open { display: flex; }
  .nav a { padding: 13px 16px; }
  .burger { display: block; }
  .grid.c3, .grid.c4, .steps, .f-row { grid-template-columns: 1fr; }
  section { padding: 52px 0; }
  .hero { padding: 56px 0 44px; }
  .glossar-list { columns: 1; }
  .foot-grid { grid-template-columns: 1fr; }
}

/* Beispiel-Galerien (Stil-Vorbild esskultur.biz) */
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.g-tile { margin: 0; }
.g-tile img { width: 100%; height: auto; border-radius: 14px; box-shadow: var(--shadow); transition: transform .2s ease; }
.g-tile:hover img { transform: scale(1.02); }
.g-tile figcaption { font-size: .8rem; color: var(--ink-soft); margin-top: 8px; line-height: 1.4; }
@media (max-width: 980px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 700px) { .gallery-grid { gap: 10px; } .g-tile figcaption { font-size: .72rem; } }

/* Großbild-Slider (Beispiele aus unserer Küche) */
.gallery-sec { padding-bottom: 80px; }
.slider-outer { position: relative; max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.slider { display: flex; gap: 20px; overflow-x: auto; scroll-snap-type: x mandatory; scroll-behavior: smooth; padding-bottom: 8px; scrollbar-width: none; -webkit-overflow-scrolling: touch; }
.slider::-webkit-scrollbar { display: none; }
.slide { flex: 0 0 min(92%, 900px); margin: 0; scroll-snap-align: center; }
.slide img { width: 100%; height: auto; border-radius: var(--radius); box-shadow: var(--shadow); }
.slide figcaption { font-size: .85rem; color: var(--ink-soft); margin-top: 10px; }
.sl-btn { position: absolute; top: 42%; transform: translateY(-50%); z-index: 5; width: 48px; height: 48px; border-radius: 50%; border: 1px solid var(--line); background: rgba(255,255,255,.95); color: var(--ink); font-size: 1.6rem; line-height: 1; cursor: pointer; box-shadow: var(--shadow); transition: background .15s, color .15s; }
.sl-btn:hover { background: var(--accent); color: #fff; border-color: var(--accent); }
.sl-prev { left: 6px; }
.sl-next { right: 6px; }
@media (max-width: 700px) { .sl-btn { display: none; } .slider { gap: 12px; } .slide { flex-basis: 88%; } }

/* Hero-Foto-Collage (1 groß + 2 klein, pro Seite rotiert) */
.hero-collage { display: grid; grid-template-columns: 2fr 1fr; grid-template-rows: 1fr 1fr; gap: 14px; margin-top: 30px; max-width: 780px; }
.hero-collage figure { margin: 0; }
.hero-collage img { width: 100%; height: 100%; object-fit: cover; border-radius: 18px; box-shadow: var(--shadow); }
.hc-main { grid-row: 1 / 3; }
.hc-main img { min-height: 100%; }
@media (max-width: 700px) {
  .hero-collage { grid-template-columns: 1fr 1fr; grid-template-rows: auto auto; gap: 10px; }
  .hc-main { grid-column: 1 / 3; grid-row: 1; }
}

/* Foto-Heroes: Bild im Hintergrund, dunkles Overlay, weiße Schrift mit Kontrast */
.page-hero.has-photo, .hero.has-photo { position: relative; background-size: cover; background-position: center; }
.page-hero.has-photo::before, .hero.has-photo::before { content: ''; position: absolute; inset: 0; background: linear-gradient(100deg, rgba(21,16,11,.86) 0%, rgba(21,16,11,.62) 52%, rgba(21,16,11,.32) 100%); }
.page-hero.has-photo > *, .hero.has-photo > * { position: relative; z-index: 1; }
.page-hero.has-photo { padding: 56px 0 72px; }
.hero.has-photo { padding: 96px 0 80px; }
.page-hero.has-photo h1, .hero.has-photo h1,
.page-hero.has-photo h2, .hero.has-photo .hero-grid > div > h2 { color: #fff; }
.page-hero.has-photo .hero-sub, .hero.has-photo .hero-sub { color: rgba(255,255,255,.9); }
.page-hero.has-photo .eyebrow, .hero.has-photo .eyebrow { color: #ffb87a; }
.page-hero.has-photo .crumbs, .page-hero.has-photo .crumbs a, .page-hero.has-photo .crumbs span { color: rgba(255,255,255,.75); }
.page-hero.has-photo .crumbs strong { color: #fff; }
.page-hero.has-photo .btn-ghost, .hero.has-photo .btn-ghost { background: transparent; border-color: rgba(255,255,255,.6); color: #fff; }
.page-hero.has-photo .btn-ghost:hover, .hero.has-photo .btn-ghost:hover { border-color: var(--accent); color: #fff; background: rgba(255,121,0,.18); }
.hero.has-photo .hero-trust { color: rgba(255,255,255,.85); }
.hero.has-photo .hero-trust strong { color: #fff; }

/* Header-Button: weiße Schrift erzwingen (.nav a hatte die Farbe überschrieben) */
.nav a.btn-primary { color: #fff; }
.nav a.btn-primary:hover { background: var(--accent-dark); color: #fff; }

/* Fix: Karten-Bilder im Ratgeber-Index — globales img{max-width:100%} kappte den Randlos-Bleed */
.card-img { max-width: none; }

/* Fix: Buttons in Sidebar-Boxen — .side-box a hatte .btn-Styles überschrieben */
.side-box a.btn { display: block; padding: 12px 20px; text-align: center; font-size: .95rem; }
.side-box a.btn-primary { color: #fff; }
.side-box a.btn-primary:hover { color: #fff; background: var(--accent-dark); }
