/* =============================================================================
   GastroFuxx · Werkstatt Shell · gemeinsame Komponenten
   Wird von Frontpage UND allen Landing-Pages eingebunden.
   ============================================================================= */

:root {
  --bone:        #F5EFE6;
  --bone-2:      #EDE5D6;
  --paper:       #FBF7F0;
  --clay:        #C46B45;
  --clay-light:  #D88B66;
  --clay-deep:   #A85530;
  --olive:       #5A6B3A;
  --olive-light: #7A8B4F;
  --ink:         #1F1A14;
  --graphite:    #4A453B;
  --smoke:       #7A7268;
  --line:        rgba(31,26,20,0.10);
  --line-soft:   rgba(31,26,20,0.06);
  --font-display: 'Newsreader', Georgia, serif;
  --font-body:    'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono:    'IBM Plex Mono', ui-monospace, monospace;
}

html { scroll-behavior: smooth; }

/* ============ DISCLOSURE-BAR ============ */
.shell-disclosure {
  background: var(--bone-2);
  border-bottom: 1px solid var(--line-soft);
  padding: 9px 32px;
  text-align: center;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  color: var(--smoke);
  position: relative;
  z-index: 101;
}
.shell-disclosure b { color: var(--clay); font-weight: 600; }

/* ============ HEADER ============ */
.shell-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(245, 239, 230, 0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line-soft);
}
.shell-header-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 18px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.shell-brand {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: var(--ink);
  line-height: 1;
  flex-shrink: 0;
  display: inline-flex;
  align-items: baseline;
  text-decoration: none;
}
.shell-brand .gastro { color: var(--ink); }
.shell-brand .fuxx {
  color: var(--clay);
  position: relative;
}
.shell-brand .fuxx::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  bottom: -3px;
  height: 3px;
  background: var(--clay);
  opacity: 0.28;
  border-radius: 1px;
}
.shell-nav {
  display: flex;
  gap: 4px;
  align-items: center;
  flex-wrap: wrap;
}
.shell-nav a {
  font-family: var(--font-body);
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: 0;
  color: var(--graphite);
  padding: 9px 14px;
  text-decoration: none;
  border-radius: 4px;
  transition: color 0.18s ease, background 0.18s ease;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.shell-nav a:hover {
  color: var(--ink);
  background: var(--bone-2);
}
.shell-nav a .stream-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
}
.shell-nav a.is-ki        .stream-dot { background: var(--olive); }
.shell-nav a.is-gruendung .stream-dot { background: var(--clay); }
.shell-nav a.is-branche   .stream-dot { background: var(--ink); }
@media (max-width: 920px) {
  .shell-nav { display: none; }
}

/* ============ FOOTER ============ */
.shell-footer {
  background: var(--ink);
  color: rgba(245,239,230,0.78);
  padding: 64px 40px 32px;
  margin-top: 0;
  font-family: var(--font-body);
}
.shell-footer-inner {
  max-width: 1320px;
  margin: 0 auto;
}
.shell-footer-top {
  display: grid;
  grid-template-columns: 1.4fr repeat(4, 1fr);
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(245,239,230,0.10);
}
@media (max-width: 1024px) { .shell-footer-top { grid-template-columns: 1fr 1fr 1fr; } }
@media (max-width: 768px)  { .shell-footer-top { grid-template-columns: 1fr 1fr; gap: 32px; } }
.shell-footer-brand {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: var(--bone);
  text-decoration: none;
  display: inline-flex;
  align-items: baseline;
  line-height: 1;
  margin-bottom: 14px;
}
.shell-footer-brand .gastro { color: var(--bone); }
.shell-footer-brand .fuxx {
  color: var(--clay-light);
  position: relative;
}
.shell-footer-brand .fuxx::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  bottom: -3px;
  height: 3px;
  background: var(--clay-light);
  opacity: 0.32;
  border-radius: 1px;
}
.shell-footer-tagline {
  font-size: 13.5px;
  line-height: 1.6;
  color: rgba(245,239,230,0.65);
  max-width: 280px;
  margin: 0;
}
.shell-footer-col h4 {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--clay-light);
  margin: 0 0 18px;
}
.shell-footer-col a {
  display: block;
  padding: 5px 0;
  font-size: 14px;
  color: rgba(245,239,230,0.62);
  text-decoration: none;
  transition: color 0.18s ease;
}
.shell-footer-col a:hover { color: var(--bone); }
.shell-footer-bottom {
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
  font-family: var(--font-mono);
  font-size: 11.5px;
  color: rgba(245,239,230,0.45);
}
.shell-footer-bottom a {
  color: rgba(245,239,230,0.62);
  text-decoration: none;
}
.shell-footer-bottom a:hover { color: var(--bone); }

/* ============ EDITORIAL HERO (für Landing-Pages) ============ */
.shell-hero {
  position: relative;
  max-width: 1320px;
  margin: 0 auto;
  padding: 72px 40px 56px;
  border-bottom: 1px solid var(--line);
}
.shell-hero-eyebrow {
  font-family: var(--font-mono);
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--clay-deep);
  margin-bottom: 22px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.shell-hero-eyebrow .stream-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
}
.shell-hero-eyebrow.is-ki        .stream-dot { background: var(--olive); }
.shell-hero-eyebrow.is-gruendung .stream-dot { background: var(--clay); }
.shell-hero-eyebrow.is-branche   .stream-dot { background: var(--ink); }
.shell-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(40px, 5.4vw, 76px);
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: -0.022em;
  color: var(--ink);
  margin: 0 0 22px;
  max-width: 18ch;
}
.shell-hero h1 em {
  font-style: italic;
  color: var(--clay);
  font-weight: 500;
}
.shell-hero-lede {
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.6;
  color: var(--graphite);
  max-width: 56ch;
  margin: 0;
}

/* ============ Container Hilfsklassen ============ */
.shell-container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 40px;
}
@media (max-width: 768px) {
  .shell-container { padding: 0 24px; }
  .shell-hero { padding: 48px 24px 40px; }
  .shell-header-inner { padding: 14px 24px; }
  .shell-disclosure { padding: 9px 24px; }
  .shell-footer { padding: 48px 24px 24px; }
}

/* =============================================================================
   TABLOID LAYER — universell für Frontpage + 9 Landings
   Bild.de × Telegraaf × The Sun, on top of Werkstatt-Earth-Tones
   ============================================================================= */
:root {
  --tab-red:    #DC2626;
  --tab-red-dk: #B91C1C;
  --tab-yellow: #FBBF24;
  --font-shout: 'Anton', 'Oswald', 'Inter', sans-serif;
}

/* Disclosure: schwarz, gelb-akzentuiert */
.shell-disclosure {
  background: var(--ink);
  color: rgba(245,239,230,0.85);
  border-bottom: 0;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.shell-disclosure b { color: var(--tab-yellow); }

/* Header: dickerer roter Trenner unter sticky-Header */
.shell-header { border-bottom: 3px solid var(--tab-red); }

/* Logo Header dominanter */
.shell-brand {
  font-size: clamp(28px, 2.4vw, 36px) !important;
  font-weight: 800 !important;
  letter-spacing: -0.005em !important;
}
.shell-brand .fuxx::after {
  height: 5px !important;
  bottom: -4px !important;
  opacity: 0.55 !important;
}
.shell-header-inner { padding-top: 22px; padding-bottom: 22px; }

/* Logo Footer ebenfalls größer */
.shell-footer-brand {
  font-size: clamp(28px, 2.4vw, 36px) !important;
  font-weight: 800 !important;
}
.shell-footer-brand .fuxx::after {
  height: 5px !important;
  bottom: -4px !important;
  background: var(--tab-red) !important;
  opacity: 1 !important;
}

/* Shell-Hero (Landings) lauter — fettere Headline, gelbe Highlight-Box, roter Eyebrow */
.shell-hero h1 {
  font-weight: 700 !important;
  font-size: clamp(44px, 6.0vw, 88px) !important;
  line-height: 0.98 !important;
  letter-spacing: -0.026em !important;
}
.shell-hero h1 em {
  font-style: normal;
  background: var(--tab-yellow);
  color: var(--ink);
  padding: 0 8px;
  margin: 0 -2px;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}
.shell-hero-eyebrow {
  background: var(--tab-red);
  color: #fff !important;
  font-family: var(--font-shout) !important;
  font-size: 13px !important;
  letter-spacing: 0.10em !important;
  font-weight: 400 !important;
  padding: 7px 12px 6px;
  display: inline-flex !important;
  margin-bottom: 24px !important;
}
.shell-hero-eyebrow .stream-dot { display: none; }
.shell-hero-lede strong { color: var(--tab-red); }

/* Nav-Links: subtile Hover-Verstärkung */
.shell-nav a:hover { background: var(--tab-yellow); color: var(--ink); }
.shell-nav a.is-ki        .stream-dot { background: var(--olive); box-shadow: 0 0 0 2px rgba(90,107,58,0.18); }
.shell-nav a.is-gruendung .stream-dot { background: var(--tab-red); box-shadow: 0 0 0 2px rgba(220,38,38,0.18); }
.shell-nav a.is-branche   .stream-dot { background: var(--ink); }

/* Footer: gelbe Header-Captions statt clay-light */
.shell-footer-col h4 { color: var(--tab-yellow) !important; }

/* =============================================================================
   LEGACY-TOKEN-ALIASES — Landings nutzen alte --dark/--amber/--text Variablen,
   die nie sauber migriert wurden. Hier auf Werkstatt + Tabloid umgemappt.
   ============================================================================= */
:root {
  --dark:         var(--ink);
  --dark-2:       var(--graphite);
  --amber:        var(--clay);
  --amber-light:  var(--clay-light);
  --amber-pale:   #F0E5D2;
  --amber-border: rgba(196,107,69,0.32);
  --text:         var(--graphite);
  --white:        var(--bone);
}

/* Body-Hintergrund auf allen Pages bone — überschreibt landing-inline `body { background: var(--dark); }` */
body { background: var(--bone) !important; color: var(--graphite); }

/* =============================================================================
   TABLOID-CARD-LAYER — generic Card/Badge/CTA-Patterns auf Landings flotter
   ============================================================================= */

/* Eyebrow (alle Landings haben .eyebrow) → roter Anton-Block */
.eyebrow {
  background: var(--tab-red);
  color: #fff !important;
  font-family: var(--font-shout) !important;
  font-size: 13px !important;
  letter-spacing: 0.10em !important;
  font-weight: 400 !important;
  padding: 7px 12px 6px !important;
  text-transform: uppercase;
  display: inline-flex;
  gap: 0;
}
.eyebrow::before, .eyebrow::after { display: none !important; }

/* Header-CTA auf Landings: gelb mit rotem Schatten-Versatz */
.header-cta {
  background: var(--tab-yellow) !important;
  color: var(--ink) !important;
  font-family: var(--font-shout) !important;
  font-size: 16px !important;
  letter-spacing: 0.06em !important;
  font-weight: 400 !important;
  padding: 0 22px !important;
  border-radius: 0 !important;
  box-shadow: 4px 4px 0 var(--tab-red) !important;
  transition: transform 0.15s, box-shadow 0.15s, background 0.15s !important;
}
.header-cta:hover {
  background: #fff !important;
  color: var(--ink) !important;
  transform: translate(-2px, -2px) !important;
  box-shadow: 6px 6px 0 var(--tab-red) !important;
}

/* Primary-Buttons (alle Landings) */
.btn-primary, .cta-banner a, a.btn-primary {
  background: var(--ink) !important;
  color: #fff !important;
  font-family: var(--font-shout) !important;
  font-size: 18px !important;
  letter-spacing: 0.06em !important;
  font-weight: 400 !important;
  padding: 16px 24px !important;
  border-radius: 0 !important;
  border: 0 !important;
  text-transform: uppercase !important;
  box-shadow: 5px 5px 0 var(--tab-red) !important;
  transition: transform 0.15s, box-shadow 0.15s, background 0.15s !important;
}
.btn-primary:hover, .cta-banner a:hover, a.btn-primary:hover {
  background: var(--tab-red) !important;
  transform: translate(-2px, -2px) !important;
  box-shadow: 7px 7px 0 var(--ink) !important;
}

.btn-secondary, a.btn-secondary {
  background: transparent !important;
  color: var(--ink) !important;
  border: 2px solid var(--ink) !important;
  font-family: var(--font-shout) !important;
  font-size: 16px !important;
  letter-spacing: 0.06em !important;
  font-weight: 400 !important;
  padding: 14px 22px !important;
  border-radius: 0 !important;
  text-transform: uppercase !important;
  transition: background 0.15s, color 0.15s !important;
}
.btn-secondary:hover, a.btn-secondary:hover {
  background: var(--ink) !important;
  color: var(--tab-yellow) !important;
}

/* Badges (Pflicht/Empfohlen etc.) — Anton-Caps statt Mono */
.badge {
  font-family: var(--font-shout) !important;
  font-size: 12px !important;
  letter-spacing: 0.06em !important;
  font-weight: 400 !important;
  padding: 4px 10px 3px !important;
  border-radius: 0 !important;
  text-transform: uppercase;
  display: inline-block;
}
.badge-pflicht {
  background: var(--tab-red) !important;
  color: #fff !important;
}
.badge-empfohlen {
  background: var(--tab-yellow) !important;
  color: var(--ink) !important;
}

/* Content/Budget/Equipment/HACCP-Cards — boxiger Tabloid-Look */
.content-card,
.budget-card,
.equipment-category,
.haccp-step,
.checklist-group,
.trust-item {
  background: #fff !important;
  border-radius: 0 !important;
  border: 0 !important;
  border-left: 6px solid var(--tab-red) !important;
  padding: 24px 26px !important;
  box-shadow: 0 6px 20px rgba(31,26,20,0.06) !important;
  transition: transform 0.18s, box-shadow 0.18s !important;
}
.content-card:hover,
.budget-card:hover,
.equipment-category:hover,
.haccp-step:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 12px 32px rgba(31,26,20,0.10) !important;
}

/* Variation: alle 3 Karten-Reihen kriegen wechselnde Farben */
.budget-grid > .budget-card:nth-child(3n+1),
.equipment-category:nth-child(3n+1),
.haccp-step:nth-child(3n+1) { border-left-color: var(--tab-red) !important; }
.budget-grid > .budget-card:nth-child(3n+2),
.equipment-category:nth-child(3n+2),
.haccp-step:nth-child(3n+2) { border-left-color: var(--olive) !important; }
.budget-grid > .budget-card:nth-child(3n),
.equipment-category:nth-child(3n),
.haccp-step:nth-child(3n) { border-left-color: var(--tab-yellow) !important; }

/* CTA-Banner (Affiliate-Empfehlungs-Boxen) — Tabloid */
.cta-banner {
  background: var(--ink) !important;
  color: var(--bone) !important;
  border: 0 !important;
  border-top: 5px solid var(--tab-red) !important;
  border-bottom: 5px solid var(--tab-red) !important;
  border-radius: 0 !important;
  padding: 32px 36px !important;
  box-shadow: none !important;
}
.cta-banner-text { color: var(--bone) !important; }
.cta-banner-text strong { color: var(--tab-yellow) !important; }

/* Affiliate-Note: kleine Box, leicht aufgeladen */
.affiliate-note {
  background: var(--bone-2) !important;
  border-left: 4px solid var(--tab-yellow) !important;
  border-radius: 0 !important;
  padding: 14px 18px !important;
  font-family: var(--font-mono) !important;
  font-size: 12px !important;
  color: var(--graphite) !important;
}

/* Trust-Items: Anton-Big-Numbers — Farbe wird vom Page-Kontext gesetzt (auf hellem Hintergrund Ink, auf dunklem Bone/Weiß) */
.trust-item-value {
  font-family: var(--font-shout) !important;
  font-size: 36px !important;
  font-weight: 400 !important;
  letter-spacing: 0.02em;
  line-height: 1 !important;
}
.trust-item-label {
  font-family: var(--font-body) !important;
  font-size: 12px !important;
  font-weight: 600 !important;
  letter-spacing: 0.06em !important;
  text-transform: uppercase;
}

/* Section-Headlines: H2/H3 in Landings fetter (Tabloid) */
main h2, section h2 {
  font-weight: 700 !important;
  letter-spacing: -0.02em !important;
  line-height: 1.05 !important;
}
main h2 em, section h2 em {
  font-style: normal;
  background: var(--tab-yellow);
  color: var(--ink);
  padding: 0 8px;
}
