@font-face {
  font-family: "Rubik";
  font-style: normal;
  font-weight: 400;
  src: url("/assets/fonts/rubik/rubik-v23-latin-regular.woff2") format("woff2");
  font-display: swap;
}

@font-face {
  font-family: "Rubik";
  font-style: normal;
  font-weight: 500;
  src: url("/assets/fonts/rubik/rubik-v23-latin-500.woff2") format("woff2");
  font-display: swap;
}

@font-face {
  font-family: "Rubik";
  font-style: normal;
  font-weight: 700;
  src: url("/assets/fonts/rubik/rubik-v23-latin-700.woff2") format("woff2");
  font-display: swap;
}

@font-face {
  font-family: "Rubik";
  font-style: normal;
  font-weight: 800;
  src: url("/assets/fonts/rubik/rubik-v23-latin-800.woff2") format("woff2");
  font-display: swap;
}

:root {
  --bg: #f3eadc;
  --paper: #fff7ec;
  --ink: #161616;
  --muted: #4a4c48;
  --line: rgba(25, 33, 38, 0.1);
  --teal: #7fd3c6;
  --teal-deep: #0f6a62;
  --coral: #d94f32;
  --mustard: #d9a441;
  --sand: #ddc7a6;
  --shadow: 0 20px 48px rgba(22, 22, 22, 0.12);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --wrap: min(1180px, calc(100vw - 32px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Rubik", "Trebuchet MS", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(234, 91, 61, 0.2), transparent 28%),
    radial-gradient(circle at top right, rgba(127, 211, 198, 0.24), transparent 30%),
    linear-gradient(180deg, #fbf3e7 0%, var(--bg) 100%);
  line-height: 1.55;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(16px);
  background: rgba(251, 246, 238, 0.88);
  border-bottom: 1px solid rgba(25, 33, 38, 0.06);
}

.nav-shell,
.section,
.footer-shell {
  width: var(--wrap);
  margin: 0 auto;
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px 0;
}

.nav-toggle {
  display: none;
  border: 0;
  border-radius: 999px;
  background: var(--coral);
  color: #fff;
  padding: 12px 16px;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.brand img {
  width: 176px;
  height: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav-links a {
  font-size: 0.95rem;
  color: var(--muted);
}

.nav-links a.active,
.nav-links a:hover {
  color: var(--coral);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  border: 0;
  border-radius: 999px;
  background: var(--coral);
  color: #fff;
  font-weight: 700;
  box-shadow: 0 12px 24px rgba(234, 91, 61, 0.24);
  cursor: pointer;
  font: inherit;
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown-toggle::after {
  content: "▾";
  font-size: 0.82rem;
  margin-left: 2px;
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  z-index: 50;
  min-width: 248px;
  padding: 10px;
  display: none;
  border-radius: 22px;
  background: rgba(255, 249, 241, 0.98);
  border: 1px solid rgba(25, 33, 38, 0.08);
  box-shadow: 0 20px 40px rgba(25, 33, 38, 0.16);
}

.nav-dropdown.open .nav-dropdown-menu {
  display: grid;
  gap: 4px;
}

.nav-dropdown-menu a {
  display: block;
  width: 100%;
  padding: 10px 12px;
  border-radius: 14px;
  color: var(--ink);
}

.nav-dropdown-menu a:hover {
  background: rgba(127, 211, 198, 0.16);
  color: var(--coral);
}

.nav-delivery-menu {
  min-width: 320px;
  gap: 10px;
}

.nav-delivery-group {
  padding: 6px 4px;
}

.nav-delivery-group strong {
  display: block;
  margin: 0 0 8px;
  padding: 0 8px;
  font-size: 0.9rem;
  color: var(--ink);
}

.nav-delivery-links {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.nav-delivery-links a {
  width: auto;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(127, 211, 198, 0.14);
  font-size: 0.92rem;
}

.hero {
  width: var(--wrap);
  margin: 28px auto 0;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 26px;
  align-items: stretch;
}

.hero-home {
  display: block;
}

.hero-stage {
  position: relative;
  min-height: 660px;
  overflow: hidden;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
  background: #192126;
}

.hero-slideshow {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-slide--active {
  opacity: 1;
}

.hero-stage-copy {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 660px;
  padding: 34px;
  color: #fff;
  background: linear-gradient(180deg, rgba(15, 19, 18, 0.08), rgba(15, 19, 18, 0.3) 38%, rgba(15, 19, 18, 0.72) 100%);
}

.hero-stage-copy > * {
  position: relative;
  z-index: 1;
}

.hero-stage-copy .eyebrow {
  background: rgba(234, 91, 61, 0.9);
  color: #fff;
}

.hero-stage-copy .lead {
  max-width: 34rem;
  color: #fff;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.35);
  font-weight: 500;
}

.hero-stage-copy p.lead {
  color: #fff;
}

.hero-stage-copy h1 {
  text-shadow: 0 4px 18px rgba(0, 0, 0, 0.35);
}

.hero-stage-copy .button-secondary {
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
}

.hero-stage-copy .pill {
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.92);
}

.hero-stage-copy .metric {
  background: rgba(255, 249, 241, 0.92);
}

.hero-copy,
.hero-visual,
.card,
.story-grid,
.store-card,
.contact-panel,
.menu-card,
.quote-card,
.cta-band,
.info-panel,
.footer-shell {
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
}

.hero-copy {
  padding: 34px;
  background:
    linear-gradient(135deg, rgba(255, 249, 241, 0.98), rgba(255, 244, 226, 0.92)),
    var(--paper);
  min-height: 560px;
  display: flex;
  flex-direction: column;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  align-self: flex-start;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(156, 207, 202, 0.22);
  color: var(--teal-deep);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.hero h1,
.page-hero h1 {
  margin: 20px 0 16px;
  font-size: clamp(2.7rem, 5.8vw, 5.4rem);
  line-height: 0.92;
  letter-spacing: -0.04em;
  font-weight: 800;
  text-transform: uppercase;
}

.hero p.lead,
.page-hero p.lead {
  margin: 0;
  max-width: 44rem;
  color: var(--muted);
  font-size: 1.08rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 28px 0 24px;
}

.button,
.button-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 20px;
  border-radius: 999px;
  font-weight: 700;
}

.button img,
.button-secondary img {
  width: 18px;
  height: 18px;
  object-fit: contain;
}

.social-chip img {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.footer-social a img {
  width: 22px;
  height: 22px;
  object-fit: contain;
}

.button {
  background: var(--coral);
  color: #fff;
  box-shadow: 0 14px 28px rgba(234, 91, 61, 0.24);
}

.button-secondary {
  background: rgba(255, 247, 236, 0.9);
  color: var(--ink);
  border: 1px solid rgba(22, 22, 22, 0.08);
}

.metric-row {
  display: flex;
  gap: 10px;
  margin-top: 16px;
}

.metric {
  padding: 12px 14px;
  border-radius: var(--radius-md);
  background: rgba(255, 252, 247, 0.95);
  border: 1px solid rgba(22, 22, 22, 0.08);
}

.metric strong {
  display: inline;
  font-size: 1.1rem;
  margin-right: 6px;
  color: var(--teal-deep);
}

.metric span {
  color: var(--ink);
  font-size: 0.88rem;
}

.hero-visual {
  min-height: 560px;
  overflow: hidden;
  background: linear-gradient(160deg, rgba(25, 33, 38, 0.9), rgba(47, 105, 99, 0.75));
  position: relative;
}

.hero-visual-grid {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  grid-template-rows: 1.1fr 0.9fr;
  gap: 10px;
  padding: 10px;
}

.hero-visual-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: calc(var(--radius-xl) - 10px);
}

.hero-visual-grid img:nth-child(1) {
  grid-row: 1 / span 2;
}

.hero-badge {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  padding: 18px 20px;
  border-radius: var(--radius-lg);
  background: rgba(255, 249, 241, 0.9);
  color: var(--ink);
}

.hero-badge strong {
  display: block;
  margin-bottom: 6px;
  font-size: 1.05rem;
}

.section {
  margin-top: 84px;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 26px;
}

.section-head h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 0.94;
  letter-spacing: -0.04em;
  text-transform: uppercase;
}

.section-head p {
  margin: 0;
  max-width: 38rem;
  color: var(--muted);
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.pill {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 247, 236, 0.78);
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 700;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.card {
  padding: 24px;
  background: rgba(255, 248, 240, 0.88);
  border: 1px solid rgba(22, 22, 22, 0.08);
}

.card h3,
.menu-card h3,
.store-card h3,
.quote-card h3,
.contact-panel h3 {
  margin: 0 0 12px;
  font-size: 1.34rem;
}

.card p,
.menu-card p,
.store-card p,
.quote-card p,
.contact-panel p,
.info-panel p {
  margin: 0;
  color: var(--muted);
}

.story-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.84);
}

.story-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 380px;
}

.story-copy {
  padding: 34px;
}

.story-copy h3 {
  margin: 0 0 18px;
  font-size: 2rem;
}

.story-copy ul {
  margin: 18px 0 0;
  padding-left: 20px;
  color: var(--muted);
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.menu-card {
  padding: 22px;
  background: rgba(255, 248, 240, 0.9);
  border: 1px solid rgba(22, 22, 22, 0.08);
}

.menu-card img {
  width: 128px;
  height: 128px;
  object-fit: contain;
  margin-bottom: 16px;
}

.menu-card span {
  display: inline-block;
  margin-top: 16px;
  color: var(--teal-deep);
  font-weight: 700;
}

.product-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 18px;
}

.product-tile {
  padding: 14px;
  border-radius: 22px;
  background: rgba(255, 248, 240, 0.9);
  border: 1px solid rgba(22, 22, 22, 0.08);
  box-shadow: var(--shadow);
}

.product-tile img {
  width: 100%;
  height: 150px;
  object-fit: contain;
  margin-bottom: 12px;
  background: rgba(255, 255, 255, 0.78);
  border-radius: 16px;
}

.product-tile h3 {
  margin: 0;
  font-size: 0.98rem;
}

.store-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.store-card {
  overflow: hidden;
  background: rgba(255, 248, 240, 0.92);
}

.store-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.store-card-content {
  padding: 24px;
}

.store-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 16px 0;
}

.store-meta span {
  border-radius: 999px;
  padding: 8px 12px;
  background: rgba(127, 211, 198, 0.18);
  color: var(--ink);
  font-size: 0.9rem;
}

.store-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.store-links a,
.text-link {
  color: var(--teal-deep);
  font-weight: 700;
}

.quote-card {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 24px;
  padding: 24px;
  background: linear-gradient(135deg, rgba(234, 91, 61, 0.16), rgba(255, 248, 240, 0.94));
}

.quote-card img {
  width: 100%;
  border-radius: var(--radius-lg);
}

.quote-card blockquote {
  margin: 0;
  font-size: 1.25rem;
  line-height: 1.4;
}

.quote-card cite {
  display: block;
  margin-top: 14px;
  color: var(--muted);
  font-style: normal;
}

.chip-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.area-chip {
  padding: 16px 18px;
  border-radius: var(--radius-md);
  background: rgba(255, 248, 240, 0.92);
  border: 1px solid rgba(22, 22, 22, 0.08);
  font-weight: 700;
  text-align: center;
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.review-card {
  padding: 24px;
  border-radius: var(--radius-xl);
  background: rgba(255, 248, 240, 0.92);
  border: 1px solid rgba(22, 22, 22, 0.08);
  box-shadow: var(--shadow);
}

.rating-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  font-weight: 700;
}

.rating-stars {
  color: var(--coral);
  letter-spacing: 0.08em;
}

.review-card cite {
  display: block;
  margin-top: 16px;
  color: var(--muted);
  font-style: normal;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.info-panel {
  padding: 24px;
  background: rgba(255, 248, 240, 0.88);
}

.cta-band {
  margin-top: 84px;
  width: var(--wrap);
  padding: 28px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  background: linear-gradient(135deg, rgba(127, 211, 198, 0.98), rgba(234, 91, 61, 0.78));
}

.cta-band h3 {
  margin: 0 0 8px;
  font-size: 1.75rem;
}

.footer-shell {
  margin: 84px auto 28px;
  padding: 30px;
  background: #182126;
  color: rgba(255, 255, 255, 0.86);
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  align-items: start;
}

.footer-social {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 14px;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-social img {
  width: 22px;
  height: 22px;
  object-fit: contain;
}

.footer-brand {
  margin: 0 0 10px;
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 24px;
}

.footer-grid h4 {
  margin: 0 0 12px;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.58);
}

.footer-grid a,
.footer-grid p {
  display: block;
  margin: 0 0 10px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.95rem;
}

.footer-grid p a {
  display: inline;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.88rem;
}

.page-hero {
  width: var(--wrap);
  margin: 28px auto 0;
  padding: 34px;
  border-radius: var(--radius-xl);
  background: rgba(255, 248, 240, 0.9);
  box-shadow: var(--shadow);
}

.page-hero-grid {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 24px;
  align-items: center;
}

.page-hero-grid img {
  width: 100%;
  height: 100%;
  max-height: 280px;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 20px;
}

.contact-panel {
  padding: 28px;
  background: rgba(255, 248, 240, 0.9);
}

.contact-list {
  display: grid;
  gap: 14px;
}

.contact-list strong {
  display: block;
  margin-bottom: 4px;
}

.social-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.social-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(127, 211, 198, 0.16);
}

.instagram-callout {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(127, 211, 198, 0.96);
  font-weight: 700;
}

.instagram-callout img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.instagram-callout a {
  color: inherit;
}

.kicker {
  color: var(--teal-deep);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.88rem;
}

@media (max-width: 1024px) {
  .hero,
  .story-grid,
  .page-hero-grid,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .card-grid,
  .menu-grid,
  .info-grid,
  .footer-grid,
  .store-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .nav-shell,
  .section,
  .footer-shell,
  .hero,
  .page-hero,
  .cta-band {
    width: min(100vw - 24px, 1180px);
  }

  .nav-shell {
    align-items: flex-start;
    flex-wrap: wrap;
    flex-direction: row;
  }

  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .nav-links {
    display: none;
    width: 100%;
    margin-top: 8px;
    padding: 14px;
    border-radius: 24px;
    background: rgba(255, 249, 241, 0.96);
    border: 1px solid rgba(25, 33, 38, 0.08);
    box-shadow: 0 16px 32px rgba(25, 33, 38, 0.08);
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 6px;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    width: 100%;
    padding: 10px 2px;
  }

  .nav-links .nav-cta {
    width: 100%;
    justify-content: center;
    margin-top: 6px;
  }

  .nav-dropdown {
    width: 100%;
  }

  .nav-dropdown-menu {
    position: static;
    min-width: 0;
    margin-top: 8px;
    box-shadow: none;
    background: rgba(255, 255, 255, 0.62);
  }

  .nav-delivery-links a {
    width: 100%;
    text-align: center;
  }

  .hero-copy,
  .hero-stage-copy,
  .page-hero,
  .story-copy,
  .footer-shell,
  .cta-band {
    padding: 24px;
  }

  .metric-row,
  .card-grid,
  .chip-grid,
  .menu-grid,
  .review-grid,
  .info-grid,
  .footer-grid,
  .store-grid,
  .quote-card {
    grid-template-columns: 1fr;
  }

  .quote-card {
    gap: 18px;
  }

  .quote-card img {
    max-width: 220px;
  }

  .hero-visual,
  .hero-copy {
    min-height: auto;
  }

  .hero-stage,
  .hero-stage-copy {
    min-height: 480px;
  }

  .hero-stage-copy {
    padding: 20px;
  }

  .hero-stage-copy h1 {
    font-size: clamp(2rem, 8vw, 2.7rem);
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
  }

  .hero-actions .button,
  .hero-actions .button-secondary {
    width: 100%;
    justify-content: center;
  }

  .metric-row {
    flex-direction: column;
    gap: 8px;
  }

  .metric {
    width: 100%;
  }

  .menu-card img {
    max-height: 280px;
    object-fit: contain;
  }

  .hero-visual-grid {
    position: relative;
    min-height: 320px;
  }

  .cta-band,
  .section-head,
  .footer-top,
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}


/* ============================================
   Slideshow Components
   ============================================ */

/* Story Slideshow (Homepage) */
.story-slideshow {
  position: relative;
  width: 100%;
  min-height: 400px;
  border-radius: 24px;
  overflow: hidden;
}
.story-slideshow img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 24px;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
}
.story-slideshow img:first-child { opacity: 1; }
.story-slideshow img.story-active { opacity: 1; }

/* Card Slideshow (Menu Hub) */
.menu-card .card-slideshow {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 200px;
  border-radius: 18px;
  margin-bottom: 16px;
}
.card-slideshow img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
  margin: 0;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}
.card-slideshow img:first-child { opacity: 1; }
.card-slideshow img.slide-active { opacity: 1; }

/* Hero Mood Slideshow (Menu Hub) */
.hero-mood-slideshow {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 260px;
  border-radius: var(--radius-lg, 24px);
  overflow: hidden;
}
.hero-mood-slideshow img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-lg, 24px);
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
}
.hero-mood-slideshow img:first-child { opacity: 1; }
.hero-mood-slideshow img.mood-active { opacity: 1; }

/* ============================================
   Announcement Card (Jungfernstieg Banner)
   ============================================ */
.announcement-wrap {
  background: #faf5ef;
  padding: 16px 24px;
}
.announcement-card {
  max-width: 1200px;
  margin: 0 auto;
  background: #fff;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 18px 24px;
  box-shadow: 0 2px 12px rgba(25, 33, 38, 0.06);
  border: 1px solid rgba(25, 33, 38, 0.06);
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  transition: box-shadow 0.2s, transform 0.15s;
}
.announcement-card:hover {
  box-shadow: 0 6px 24px rgba(25, 33, 38, 0.1);
  transform: translateY(-1px);
}
.announcement-card:active { transform: translateY(0); }
.announcement-card .geo-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #ea4335;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 3px 10px rgba(234, 67, 53, 0.3);
}
.announcement-card .geo-icon svg { width: 24px; height: 24px; }
.announcement-card .card-content { flex: 1; min-width: 0; }
.announcement-card .card-content h3 {
  font-size: 0.92rem;
  font-weight: 700;
  color: #192126;
  margin-bottom: 3px;
}
.announcement-card .card-content p {
  font-size: 0.8rem;
  color: rgba(25, 33, 38, 0.55);
  line-height: 1.5;
}
.announcement-card .card-arrow {
  width: 32px;
  height: 32px;
  border-radius: 10px;
  background: rgba(25, 33, 38, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.2s;
}
.announcement-card:hover .card-arrow { background: rgba(25, 33, 38, 0.1); }
.announcement-card .card-arrow svg { width: 16px; height: 16px; color: #192126; }

@media (max-width: 600px) {
  .announcement-wrap { padding: 12px 16px; }
  .announcement-card {
    flex-direction: column;
    text-align: center;
    gap: 14px;
    padding: 20px;
  }
  .announcement-card .card-arrow { display: none; }
}


/* ==========================================================================
   DARK MODE — sushisupply.de (alle Subpages)
   Stand: 2026-04-03
   Deckt alle 3 Templates ab: styles.css, styles.min.css, inline
   Homepage hat eigenen Dark Mode in homepage-redesign.js (Step 18)
   ========================================================================== */

@media (prefers-color-scheme: dark) {

  /* ------------------------------------------------------------------
     1. GLOBAL: Body, HTML, Grundfarben
     ------------------------------------------------------------------ */
  html, body {
    background: #1a1a1a !important;
    color: #e0dcd6 !important;
    color-scheme: dark;
  }

  /* Allgemeine Typografie */
  h1, h2, h3, h4, h5, h6 { color: #f0ece6 !important; }
  p, li, dd, dt, td, th   { color: #d0cbc3 !important; }
  a                        { color: #f08060 !important; }
  a:hover                  { color: #ff9070 !important; }
  strong, b                { color: #e8e2da !important; }
  small                    { color: #a09888 !important; }
  blockquote, cite         { color: #b0a898 !important; }
  hr                       { border-color: rgba(255,255,255,0.1) !important; }

  /* Bilder/Media — nicht invertieren */
  img, video, picture, svg:not(.icon) { filter: none !important; }

  /* ------------------------------------------------------------------
     2. HEADER & NAVIGATION (alle Seiten)
     ------------------------------------------------------------------ */
  .site-header {
    background: rgba(26,26,26,0.96) !important;
    border-bottom: 1px solid rgba(255,255,255,0.06) !important;
  }
  .brand       { color: #fff !important; }
  .brand img   { filter: brightness(0) invert(1) brightness(0.9) !important; }
  .nav-links a { color: #e0dcd6 !important; }
  .nav-links a:hover,
  .nav-links a.active { color: #d94f32 !important; }

  .nav-toggle  { background: #d94f32 !important; color: #fff !important; }

  .nav-dropdown-menu {
    background: rgba(37,37,37,0.98) !important;
    border: 1px solid rgba(255,255,255,0.08) !important;
    box-shadow: 0 8px 32px rgba(0,0,0,0.5) !important;
  }
  .nav-dropdown-menu a { color: #d0cbc3 !important; }
  .nav-dropdown-menu a:hover { color: #d94f32 !important; }

  .nav-cta { background: #d94f32 !important; color: #fff !important; }

  /* Delivery/Order Dropdowns */
  .nav-delivery-menu,
  .nav-order-menu,
  .nav-lief-overview {
    background: rgba(37,37,37,0.98) !important;
    border: 1px solid rgba(255,255,255,0.08) !important;
  }
  .nav-delivery-menu a,
  .nav-order-menu a,
  .nav-delivery-links a { color: #d0cbc3 !important; }

  /* ------------------------------------------------------------------
     3. FOOTER (bereits dunkel — Feintuning)
     ------------------------------------------------------------------ */
  .footer-shell {
    background: #141a1e !important;
  }
  .footer-brand, .footer-brand-name { color: #fff !important; }
  .footer-grid a, .footer-nav a     { color: rgba(255,255,255,0.75) !important; }
  .footer-grid a:hover              { color: #d94f32 !important; }
  .footer-bottom                    { color: rgba(255,255,255,0.45) !important; }
  .footer-col h2, .footer-col h3,
  .footer-col h4                    { color: rgba(255,255,255,0.9) !important; }
  .footer-top                       { border-color: rgba(255,255,255,0.06) !important; }

  /* ------------------------------------------------------------------
     4. SHARED COMPONENTS: Buttons, Badges, Kicker, Eyebrow
     ------------------------------------------------------------------ */
  /* Buttons */
  .button, a.button,
  .btn, .btn-primary,
  .menu-cta-btn {
    background: #d94f32 !important;
    color: #fff !important;
    border: none !important;
  }
  .button-secondary, a.button-secondary,
  .btn-ghost {
    background: transparent !important;
    color: #f08060 !important;
    border: 1px solid #f08060 !important;
  }
  .button:hover, .btn:hover,
  .btn-primary:hover { background: #c4432a !important; }

  /* Kicker, Eyebrow, Lead */
  .kicker         { color: #d94f32 !important; }
  .eyebrow        { background: rgba(217,79,50,0.12) !important; color: #d94f32 !important; }
  .lead           { color: #c0b8ae !important; }
  .text-link      { color: #f08060 !important; }
  .section-label  { color: #d94f32 !important; }
  .section-kicker { color: #d94f32 !important; }
  .aeo-lead       { color: #c0b8ae !important; }

  /* ------------------------------------------------------------------
     5. TEMPLATE A+B: styles.css / styles.min.css Seiten
        /menu/ /stores/ /catering/ /kontakt/ /ueber-uns/ /faq/
        /datenschutz/ /impressum/ /abholung/
        /sushi-*-hamburg/ (Standort-Seiten)
     ------------------------------------------------------------------ */

  /* Page Hero */
  .page-hero {
    background: #222222 !important;
  }
  .page-hero h1 { color: #f0ece6 !important; }
  .page-hero p, .page-hero .lead { color: #c0b8ae !important; }
  .page-hero-grid { color: #e0dcd6 !important; }

  /* Sections */
  .section {
    border-color: rgba(255,255,255,0.04) !important;
  }
  .section-alt {
    background: #1e1e1e !important;
  }
  .section-head h2,
  .section-heading h2 { color: #f0ece6 !important; }
  .section-head p     { color: #c0b8ae !important; }

  /* Cards (Menü, Store, allgemein) */
  .card,
  .menu-card,
  .store-card {
    background: #252525 !important;
    border: 1px solid rgba(255,255,255,0.06) !important;
  }
  .card h3, .menu-card h3, .store-card h3 { color: #f0ece6 !important; }
  .card p, .menu-card p, .store-card p     { color: #c0b8ae !important; }
  .card a, .menu-card a, .store-card a     { color: #f08060 !important; }
  .card-grid       { color: #e0dcd6 !important; }
  .card-slideshow  { color: #e0dcd6 !important; }

  /* Store-Card Details */
  .store-card-content { color: #d0cbc3 !important; }
  .store-links a      { color: #f08060 !important; }
  .store-meta         { color: #a09888 !important; }

  /* Info Panel */
  .info-panel {
    background: #252525 !important;
    border: 1px solid rgba(255,255,255,0.06) !important;
  }
  .info-panel h3     { color: #f0ece6 !important; }
  .info-panel p      { color: #c0b8ae !important; }
  .info-panel a      { color: #f08060 !important; }
  .info-panel strong { color: #e8e2da !important; }

  /* Info Grid */
  .info-grid { color: #e0dcd6 !important; }

  /* Hero Actions */
  .hero-actions a { color: #fff !important; }

  /* Hero Slideshow (Menu Seite) */
  .hero-mood-slideshow { background: #1a1a1a !important; }

  /* Kontakt-Seite */
  .contact-layout       { color: #e0dcd6 !important; }
  .contact-panel        {
    background: #252525 !important;
    border: 1px solid rgba(255,255,255,0.06) !important;
  }
  .contact-panel h2, .contact-panel h3 { color: #f0ece6 !important; }
  .contact-panel p      { color: #c0b8ae !important; }
  .contact-list a       { color: #f08060 !important; }
  .social-row           { color: #e0dcd6 !important; }
  .social-chip {
    background: #252525 !important;
    color: #d0cbc3 !important;
    border: 1px solid rgba(255,255,255,0.08) !important;
  }
  .social-chip:hover    { background: #333333 !important; }
  .instagram-callout {
    background: #252525 !important;
    color: #d0cbc3 !important;
  }

  /* ------------------------------------------------------------------
     6. TEMPLATE C: Zielgruppen-Seiten (inline CSS)
        /pendler-sushi-hamburg/ /studenten-rabatt-sushi-hamburg/
        /business-lunch-hauptbahnhof/ /sushi-fuer-die-zugreise/
        /sushi-hamburg-besucher/ /no-food-waste/
     ------------------------------------------------------------------ */

  /* Hero (Template C) — coral bg bleibt, Text muss weiss sein */
  .hero           { color: #fff !important; }
  .hero-headline  { color: #fff !important; }
  .hero-sub       { color: rgba(255,255,255,0.85) !important; }
  .hero-kicker    { color: rgba(255,255,255,0.9) !important; }
  .hero-text      { color: #fff !important; }
  .hero-inner     { color: #fff !important; }
  .hero-cta       { background: #fff !important; color: #d94f32 !important; }

  /* Container (Template C) */
  .container { color: #e0dcd6 !important; }

  /* Section Light → Dark */
  .section-light {
    background: #1e1e1e !important;
  }
  .section-header h2  { color: #f0ece6 !important; }
  .section-intro      { color: #c0b8ae !important; }

  /* Produkt-Cards */
  .produkt-card {
    background: #252525 !important;
    border: 1px solid rgba(255,255,255,0.06) !important;
  }
  .produkt-card h3    { color: #f0ece6 !important; }
  .produkt-card p     { color: #c0b8ae !important; }
  .preis              { color: #d94f32 !important; }
  .preis-alt          { color: #807870 !important; }
  .produkte-grid      { color: #e0dcd6 !important; }

  /* USP Cards */
  .usp-card {
    background: #252525 !important;
    border: 1px solid rgba(255,255,255,0.06) !important;
  }
  .usp-card h3 { color: #f0ece6 !important; }
  .usp-card p  { color: #c0b8ae !important; }
  .usp-num     { color: #d94f32 !important; }
  .usp-grid    { color: #e0dcd6 !important; }

  /* FAQ */
  .faq-section { color: #e0dcd6 !important; }
  .faq-item {
    border-color: rgba(255,255,255,0.08) !important;
  }
  .faq-question {
    color: #f0ece6 !important;
    background: transparent !important;
  }
  .faq-answer  { color: #c0b8ae !important; }
  .faq-list    { color: #e0dcd6 !important; }

  /* Text Prose (Zielgruppen-Seiten) */
  .text-prose      { color: #d0cbc3 !important; }
  .text-prose h2   { color: #f0ece6 !important; }
  .text-prose h3   { color: #f0ece6 !important; }
  .text-prose a    { color: #f08060 !important; }

  /* ------------------------------------------------------------------
     7. LIEFERSERVICE-SEITE (grösstes Template C)
     ------------------------------------------------------------------ */

  /* Hero Slideshow */
  .hero-slideshow { color: #fff !important; }
  .hero-slide     { color: #fff !important; }
  .hero-slide-copy { color: #fff !important; }
  .hero-eyebrow  { color: rgba(255,255,255,0.8) !important; }
  .hero-arrows   { color: #fff !important; }
  .hero-arrow    { background: rgba(255,255,255,0.15) !important; color: #fff !important; }
  .hero-arrow:hover { background: rgba(255,255,255,0.25) !important; }
  .hero-dot      { background: rgba(255,255,255,0.35) !important; }
  .hero-dot.active { background: #fff !important; }
  .hero-dots     { color: #fff !important; }
  .hero-ctas a   { color: #fff !important; }

  /* How-Section (Wie bestelle ich?) */
  .how-section   { background: #1e1e1e !important; }
  .how-heading   { color: #f0ece6 !important; }
  .how-eyebrow   { color: #d94f32 !important; }
  .how-card {
    background: #252525 !important;
    border: 1px solid rgba(255,255,255,0.06) !important;
  }
  .how-card h3   { color: #f0ece6 !important; }
  .how-card p    { color: #c0b8ae !important; }
  .how-num       { background: #d94f32 !important; color: #fff !important; }
  .how-inner     { color: #e0dcd6 !important; }

  /* Location Cards */
  .loc-card {
    background: #252525 !important;
    border: 1px solid rgba(255,255,255,0.06) !important;
    overflow: hidden;
  }
  .loc-card h3         { color: #f0ece6 !important; }
  .loc-card p          { color: #c0b8ae !important; }
  .loc-card-body       { color: #d0cbc3 !important; }
  .loc-card-btn        { color: #fff !important; }
  .loc-card-img        { background: #333333 !important; }
  .loc-coming-soon     { color: #a09888 !important; }
  .location-grid       { color: #e0dcd6 !important; }

  /* Platform Cards (Lieferando, Wolt, etc.) */
  .platform-section    { background: #1e1e1e !important; }
  .platform-card {
    background: #252525 !important;
    border: 1px solid rgba(255,255,255,0.06) !important;
  }
  .platform-card h3    { color: #f0ece6 !important; }
  .platform-card p     { color: #c0b8ae !important; }
  .platform-card-body  { color: #d0cbc3 !important; background: #252525 !important; }
  .platform-card-img   { background: #333333 !important; }
  .platform-meta       { color: #a09888 !important; }
  .platform-badge      { color: #e0dcd6 !important; }
  .platform-big-btn    { color: #fff !important; }
  .platform-cards      { color: #e0dcd6 !important; }

  /* Lieferando/Wolt Buttons */
  .lieferando-btn,
  .lieferando-big-btn  { color: #fff !important; }
  .lieferando-badge    { color: #e0dcd6 !important; }
  .wolt-btn            { color: #fff !important; }

  /* Menu Cards (Lieferservice) */
  .menu-card-body      { color: #d0cbc3 !important; }
  .menu-card-img       { background: #333333 !important; }
  .menu-slider         { color: #e0dcd6 !important; }
  .menu-slider-wrap    { color: #e0dcd6 !important; }
  .slider-btn          { background: rgba(255,255,255,0.1) !important; color: #fff !important; }
  .slider-btn:hover    { background: rgba(255,255,255,0.2) !important; }

  /* Info Box */
  .info-box {
    background: #252525 !important;
    border: 1px solid rgba(255,255,255,0.06) !important;
    color: #d0cbc3 !important;
  }
  .info-box h3 { color: #f0ece6 !important; }

  /* CTA Band */
  .cta-band {
    background: #d94f32 !important;
    color: #fff !important;
  }
  .cta-band h2, .cta-band-copy h2 { color: #fff !important; }
  .cta-band p, .cta-band-copy p   { color: rgba(255,255,255,0.9) !important; }
  .cta-band a, .cta-band-actions a { color: #fff !important; }

  /* Promo Bar */
  .promo-bar {
    background: #252525 !important;
    color: #e0dcd6 !important;
  }
  .promo-bar-inner { color: #e0dcd6 !important; }

  /* Stats Bar */
  .stats-bar       { background: #222222 !important; }
  .stats-bar-inner { color: #e0dcd6 !important; }
  .stat-item       { color: #e0dcd6 !important; }
  .stat-number     { color: #d94f32 !important; }
  .stat-label      { color: #a09888 !important; }
  .stat-divider    { background: rgba(255,255,255,0.1) !important; }

  /* Sticky Order Bar */
  .sticky-order {
    background: rgba(26,26,26,0.96) !important;
    border-top: 1px solid rgba(255,255,255,0.06) !important;
    color: #e0dcd6 !important;
  }
  .sticky-order a { color: #fff !important; }

  /* ÖPNV */
  .oepnv-badge { color: #e0dcd6 !important; }
  .oepnv-list  { color: #d0cbc3 !important; }

  /* Coming Soon */
  .coming-soon-btn {
    background: rgba(255,255,255,0.08) !important;
    color: #a09888 !important;
  }

  /* ------------------------------------------------------------------
     8. LEGAL-SEITEN: /agb/ /impressum/ /datenschutz/
     ------------------------------------------------------------------ */
  .legal-shell {
    color: #d0cbc3 !important;
  }
  .legal-shell h1, .legal-shell h2,
  .legal-shell h3 { color: #f0ece6 !important; }
  .legal-shell a   { color: #f08060 !important; }
  .legal-shell p   { color: #d0cbc3 !important; }
  .stand           { color: #807870 !important; }

  /* ------------------------------------------------------------------
     9. SICHERHEITSNETZ: CSS Custom Properties + Cream-Backgrounds
     ------------------------------------------------------------------ */
  /* Template C nutzt --bg: #f3eadc — auf dunkel umsetzen */
  :root {
    --bg: #1a1a1a !important;
  }

  /* Body mit inline cream bg (Lieferservice etc.) — NUR cream, NICHT coral */
  body[style*="background: #f3eadc"],
  body[style*="background: rgb(243"],
  body[style*="background-color: #f3eadc"],
  body[style*="background-color: rgb(243"] {
    background: #1a1a1a !important;
  }

  /* Sections mit cream/warm bg — NICHT coral! */
  [style*="background:var(--bg)"],
  [style*="background: var(--bg)"] {
    background: #1a1a1a !important;
  }

  /* Sections die explizit cream/warm als RGB setzen */
  [style*="background-color: rgb(255, 248, 240"],
  [style*="background: rgb(255, 248, 240"],
  [style*="background-color: rgba(255, 248, 240"],
  [style*="background: rgba(255, 248, 240"] {
    background: #1e1e1e !important;
  }

  /* NICHT überschreiben: coral/accent sections behalten ihre Farbe */
  /* var(--coral) und rgb(217, 79, 50) bleiben unangetastet */

  /* Scroll-Animierte Elemente */
  .reveal { color: inherit !important; }

  /* ------------------------------------------------------------------
     10. SELECTION & FOCUS
     ------------------------------------------------------------------ */
  ::selection {
    background: #d94f32 !important;
    color: #fff !important;
  }
  :focus-visible {
    outline-color: #d94f32 !important;
  }

} /* Ende @media (prefers-color-scheme: dark) */


/* ============================================ */
/* DARK MODE PATCH v2 — 03.04.2026             */
/* Fehlende Elemente aller Templates           */
/* ============================================ */
@media (prefers-color-scheme: dark) {

  /* --- Stadtteil-Chips (ueber-uns, stores) --- */
  .area-chip,
  .chip-grid .area-chip {
    background: rgba(37, 37, 37, 0.92) !important;
    color: #e0dcd6 !important;
    border-color: rgba(217, 79, 50, 0.3) !important;
  }

  /* --- Story-Grid Container --- */
  .story-grid {
    background: rgba(26, 26, 26, 0.84) !important;
  }

  /* --- Google Review Cards --- */
  .review-card {
    background: rgba(37, 37, 37, 0.92) !important;
    color: #e0dcd6 !important;
    border-color: rgba(255, 255, 255, 0.08) !important;
  }
  .review-card p,
  .review-card span,
  .review-card .review-text,
  .review-card .review-author,
  .review-card .review-name {
    color: #d0cbc3 !important;
  }
  .review-card .review-stars,
  .review-card .stars {
    color: #f0b400 !important;
  }

  /* --- No-Food-Waste Badges & Tags --- */
  .nfw-badge,
  .tag {
    background: rgba(37, 37, 37, 0.92) !important;
    color: #e0dcd6 !important;
    border-color: rgba(217, 79, 50, 0.3) !important;
  }

  /* --- Template C: Zielgruppen-Seiten --- */
  .zielgruppe-card {
    background: #252525 !important;
    color: #e0dcd6 !important;
    border-color: rgba(255, 255, 255, 0.08) !important;
  }
  .zielgruppe-card h3,
  .zielgruppe-card p,
  .zielgruppe-card span {
    color: #e0dcd6 !important;
  }

  .standort-box {
    background: #252525 !important;
    color: #e0dcd6 !important;
    border-color: rgba(255, 255, 255, 0.08) !important;
  }
  .standort-box h3,
  .standort-box p,
  .standort-box a {
    color: #e0dcd6 !important;
  }

  .weitere-card {
    background: #252525 !important;
    color: #e0dcd6 !important;
    border-color: rgba(255, 255, 255, 0.08) !important;
  }
  .weitere-card h3,
  .weitere-card p {
    color: #e0dcd6 !important;
  }

  .cta-btn {
    background: #d94f32 !important;
    color: #fff !important;
  }

  /* --- Nuclear Safety Net: alle verbleibenden cream/white Backgrounds --- */
  .section[style*="background"],
  div[style*="background: rgb(243"],
  div[style*="background: #f3"],
  div[style*="background-color: rgb(243"],
  div[style*="background-color: rgb(255, 248"],
  div[style*="background-color: rgb(255, 255, 255"],
  div[style*="background: rgb(255, 248"],
  div[style*="background: rgb(255, 255, 255"],
  section[style*="background: rgb(243"],
  section[style*="background: rgb(255"],
  section[style*="background-color: rgb(243"],
  section[style*="background-color: rgb(255"] {
    background: #1a1a1a !important;
    color: #e0dcd6 !important;
  }

  /* --- Übrig gebliebene weiße Sections --- */
  .section {
    background: #1a1a1a !important;
    color: #e0dcd6 !important;
  }
  .section h2, .section h3, .section p {
    color: #e0dcd6 !important;
  }

  /* --- USP Cards (Template C) ergänzend --- */
  .usp-card {
    background: #252525 !important;
    color: #e0dcd6 !important;
    border-color: rgba(255, 255, 255, 0.08) !important;
  }

}


/* ============================================ */
/* DARK MODE PATCH v2 — 03.04.2026             */
/* Fehlende Elemente aller Templates           */
/* ============================================ */
@media (prefers-color-scheme: dark) {

  /* --- Stadtteil-Chips (ueber-uns, stores) --- */
  .area-chip,
  .chip-grid .area-chip {
    background: rgba(37, 37, 37, 0.92) !important;
    color: #e0dcd6 !important;
    border-color: rgba(217, 79, 50, 0.3) !important;
  }

  /* --- Story-Grid Container --- */
  .story-grid {
    background: rgba(26, 26, 26, 0.84) !important;
  }

  /* --- Google Review Cards --- */
  .review-card {
    background: rgba(37, 37, 37, 0.92) !important;
    color: #e0dcd6 !important;
    border-color: rgba(255, 255, 255, 0.08) !important;
  }
  .review-card p,
  .review-card span,
  .review-card .review-text,
  .review-card .review-author,
  .review-card .review-name {
    color: #d0cbc3 !important;
  }
  .review-card .review-stars,
  .review-card .stars {
    color: #f0b400 !important;
  }

  /* --- No-Food-Waste Badges & Tags --- */
  .nfw-badge,
  .tag {
    background: rgba(37, 37, 37, 0.92) !important;
    color: #e0dcd6 !important;
    border-color: rgba(217, 79, 50, 0.3) !important;
  }

  /* --- Template C: Zielgruppen-Seiten --- */
  .zielgruppe-card {
    background: #252525 !important;
    color: #e0dcd6 !important;
    border-color: rgba(255, 255, 255, 0.08) !important;
  }
  .zielgruppe-card h3,
  .zielgruppe-card p,
  .zielgruppe-card span {
    color: #e0dcd6 !important;
  }

  .standort-box {
    background: #252525 !important;
    color: #e0dcd6 !important;
    border-color: rgba(255, 255, 255, 0.08) !important;
  }
  .standort-box h3,
  .standort-box p,
  .standort-box a {
    color: #e0dcd6 !important;
  }

  .weitere-card {
    background: #252525 !important;
    color: #e0dcd6 !important;
    border-color: rgba(255, 255, 255, 0.08) !important;
  }
  .weitere-card h3,
  .weitere-card p {
    color: #e0dcd6 !important;
  }

  .cta-btn {
    background: #d94f32 !important;
    color: #fff !important;
  }

  /* --- Nuclear Safety Net: alle verbleibenden cream/white Backgrounds --- */
  .section[style*="background"],
  div[style*="background: rgb(243"],
  div[style*="background: #f3"],
  div[style*="background-color: rgb(243"],
  div[style*="background-color: rgb(255, 248"],
  div[style*="background-color: rgb(255, 255, 255"],
  div[style*="background: rgb(255, 248"],
  div[style*="background: rgb(255, 255, 255"],
  section[style*="background: rgb(243"],
  section[style*="background: rgb(255"],
  section[style*="background-color: rgb(243"],
  section[style*="background-color: rgb(255"] {
    background: #1a1a1a !important;
    color: #e0dcd6 !important;
  }

  /* --- Übrig gebliebene weiße Sections --- */
  .section {
    background: #1a1a1a !important;
    color: #e0dcd6 !important;
  }
  .section h2, .section h3, .section p {
    color: #e0dcd6 !important;
  }

  /* --- USP Cards (Template C) ergänzend --- */
  .usp-card {
    background: #252525 !important;
    color: #e0dcd6 !important;
    border-color: rgba(255, 255, 255, 0.08) !important;
  }

}

/* ============================================================
   DARK MODE FINAL PATCH v2 — Farben IDENTISCH zur Homepage
   Homepage nutzt: #252525 (rgb(37,37,37)) als Surface
   Append to: styles.css, styles.min.css, dm.css
   Date: 2026-04-03
   ============================================================ */

@media (prefers-color-scheme: dark) {

  /* ---- MOBILE HAMBURGER MENU ---- */
  .nav-links {
    background: rgba(26, 26, 26, 0.98) !important;
    border-color: rgba(255, 255, 255, 0.08) !important;
    box-shadow: 0 16px 32px rgba(0,0,0,0.5) !important;
  }
  .nav-links a {
    color: #e0dcd6 !important;
  }
  .nav-links a:hover,
  .nav-links a.active {
    color: #d94f32 !important;
  }

  /* ---- MOBILE DROPDOWN (Lieferservice/Bestellen) ---- */
  .nav-dropdown-menu {
    background: rgba(37, 37, 37, 0.98) !important;
    border-color: rgba(255, 255, 255, 0.08) !important;
    box-shadow: 0 8px 32px rgba(0,0,0,0.5) !important;
  }
  .nav-dropdown-menu a {
    color: #d0cbc3 !important;
  }
  .nav-dropdown-menu a:hover {
    background: rgba(217, 79, 50, 0.15) !important;
    color: #d94f32 !important;
  }

  /* ---- HERO SECTIONS ---- */
  .hero-copy {
    background: rgba(37, 37, 37, 0.95) !important;
    color: #e0dcd6 !important;
    border-color: rgba(255, 255, 255, 0.08) !important;
  }
  .hero-badge {
    background: rgba(37, 37, 37, 0.92) !important;
    color: #e0dcd6 !important;
  }
  .hero-stage-copy .metric {
    background: rgba(37, 37, 37, 0.92) !important;
    color: #e0dcd6 !important;
  }
  .hero-stage-copy .pill {
    background: rgba(255, 255, 255, 0.08) !important;
    color: #e0dcd6 !important;
  }

  /* ---- CARDS & SURFACES — #252525 wie Homepage ---- */
  .card, .announcement-card, .review-card, .usp-card,
  .zielgruppe-card, .standort-box, .weitere-card {
    background: #252525 !important;
    color: #e0dcd6 !important;
    border-color: rgba(255, 255, 255, 0.08) !important;
  }
  .card p, .card span, .card h3, .card h4,
  .review-card p, .review-card span,
  .announcement-card p, .announcement-card span {
    color: #d0cbc3 !important;
  }

  /* ---- SECTIONS ---- */
  .section, .section-alt, .page-hero {
    background: #1a1a1a !important;
    color: #e0dcd6 !important;
  }

  /* ---- CHIPS & BADGES ---- */
  .area-chip, .chip-grid .area-chip,
  .nfw-badge, .tag {
    background: rgba(37, 37, 37, 0.92) !important;
    color: #e0dcd6 !important;
    border-color: rgba(217, 79, 50, 0.3) !important;
  }

  /* ---- STORY GRID ---- */
  .story-grid {
    background: rgba(26, 26, 26, 0.84) !important;
  }

  /* ---- SITE HEADER ---- */
  .site-header {
    background: rgba(26, 26, 26, 0.96) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06) !important;
  }

  /* ---- BRAND / LOGO ---- */
  .brand img, .brand svg {
    filter: brightness(0) invert(1) brightness(0.9) !important;
  }

  /* ---- FORMS & INPUTS ---- */
  input, textarea, select {
    background: #252525 !important;
    color: #e0dcd6 !important;
    border-color: rgba(255, 255, 255, 0.12) !important;
  }
  input::placeholder, textarea::placeholder {
    color: rgba(208, 203, 195, 0.5) !important;
  }

  /* ---- BUTTONS ---- */
  .button-secondary, .btn-secondary {
    background: rgba(255, 255, 255, 0.08) !important;
    color: #e0dcd6 !important;
    border-color: rgba(255, 255, 255, 0.15) !important;
  }
  .cta-btn {
    background: #d94f32 !important;
    color: #fff !important;
  }

  /* ---- NUCLEAR SAFETY NET: Inline-Backgrounds ---- */
  [style*="background: rgb(255, 249, 241"],
  [style*="background: rgb(251, 246, 238"],
  [style*="background: rgb(243, 240, 235"],
  [style*="background: rgb(248, 245, 240"],
  [style*="background-color: rgb(255, 249, 241"],
  [style*="background-color: rgb(251, 246, 238"],
  [style*="background: rgb(255, 255, 255"],
  [style*="background-color: rgb(255, 255, 255"],
  [style*="background: white"],
  [style*="background-color: white"],
  [style*="background:#fff"],
  [style*="background-color:#fff"] {
    background: #1a1a1a !important;
    color: #e0dcd6 !important;
  }
}
