/* =========================================================
   SECTIONS – Hero, Page-Hero, CTA, Gallery, Diashow, PDF, Delivery, Contact, Opening
   ========================================================= */

/* --- Speisen-Diashow ----------------------------------- */
.diashow {
  border: 1px solid #d9d1c5;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 14px 42px rgba(46, 34, 28, 0.12);
  background: #eee8dd;
  max-width: 960px;
  margin: 0 auto;
}

.diashow-track {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #e9e1d5;
}

.diashow-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.diashow-slide.is-active {
  opacity: 1;
}

.diashow-slide picture {
  display: block;
  width: 100%;
  height: 100%;
}

.diashow-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #e9e1d5;
}

.diashow-dots {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.25rem 0.4rem;
  padding: 0.95rem 1rem;
  background: #f4f0e9;
  border-top: 1px solid #d9d1c5;
}

.diashow-dot {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 0;
  background: transparent;
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
  transition: background var(--transition), border-color var(--transition), opacity var(--transition);
  position: relative;
}

.diashow-dot::before {
  content: "";
  position: absolute;
  inset: 17px;
  border: 1px solid rgba(110, 15, 26, 0.42);
  border-radius: 50%;
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
}

.diashow-dot.is-active::before {
  background: var(--accent);
  border-color: var(--accent);
}

.diashow-dot:hover:not(.is-active)::before {
  border-color: var(--accent);
  transform: scale(1.25);
  opacity: 0.78;
}

.diashow-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  color: var(--text-muted);
  font-size: 0.88rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* --- Hero ---------------------------------------------- */
.hero {
  min-height: 78vh;
  padding: calc(var(--header-height) + 2.5rem) 0 6rem;
  background: linear-gradient(180deg, var(--bg-soft) 0%, var(--bg) 45%, var(--bg-soft) 100%);
}

[data-hero-variant="2"] {
  background-image: url("../assets/images/restaurant-aussen-2-bg.webp");
  background-size: cover;
  background-position: center center;
  background-attachment: fixed;
  position: relative;
}
[data-hero-variant="2"]::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(244,240,233,0.65) 0%, rgba(255,255,255,0.55) 50%, rgba(244,240,233,0.7) 100%);
  pointer-events: none;
  z-index: 0;
}
[data-hero-variant="2"] .hero-split {
  position: relative;
  z-index: 1;
}

.hero-split {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(0, 1.04fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 1.5rem;
  min-width: 0;
}

.hero-content {
  text-align: left;
  animation: fadeInUp 0.8s ease-out;
  min-width: 0;
}

.hero-image {
  width: 100%;
  max-width: 100%;
  min-width: 0;
}

.hero-image picture {
  display: block;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  border-radius: 6px;
  aspect-ratio: 5 / 4;
  box-shadow: 0 30px 60px -20px rgba(26, 26, 26, 0.25), 0 12px 24px -10px rgba(110, 15, 26, 0.08);
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-eyebrow {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 3px;
  color: var(--text-muted);
  margin-bottom: 1rem;
  font-weight: 500;
}

.hero h1 {
  margin-bottom: 1.2rem;
  color: var(--text);
  overflow-wrap: break-word;
}

.hero h1 .accent {
  color: var(--accent);
  font-style: italic;
}

.hero p {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
  overflow-wrap: break-word;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin: 0 0 1.75rem;
  padding: 0;
  list-style: none;
}

.hero-points li {
  border: 1px solid var(--border);
  background: #fff;
  color: var(--accent);
  padding: 0.45rem 0.75rem;
  border-radius: 2px;
  font-size: 0.82rem;
  font-weight: 600;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  min-width: 0;
}

.hero-tall {
  min-height: 80vh;
}

/* --- Owner Teaser -------------------------------------- */
.section-owner-teaser {
  background: linear-gradient(180deg, var(--bg-soft) 0%, #ffffff 50%, var(--bg-soft) 100%);
  padding: 4rem 0;
}

/* --- Page Hero ----------------------------------------- */
.page-hero {
  padding: calc(var(--header-height) + 3rem) 1.5rem 2.5rem;
  text-align: center;
  background: var(--bg-soft);
  border-bottom: 1px solid var(--border);
}

.page-hero .hero-eyebrow {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 3px;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
  font-weight: 500;
}

.page-hero h1 { margin-bottom: 0.75rem; color: var(--accent); font-style: italic; }
.page-hero p { color: var(--text-muted); max-width: 640px; margin: 0 auto; }


/* --- Speisekarte PDF CTA ------------------------------- */
.speisekarte-cta {
  background: transparent;
  border: none;
  padding: 2rem 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: none;
  max-width: none;
  margin: 0;
}

.speisekarte-cta .btn-primary {
  background: var(--bg-soft);
  color: var(--accent);
  border: 2px solid var(--accent);
  padding: 1.1rem 3rem;
  font-size: 1rem;
  letter-spacing: 0.8px;
  box-shadow: 0 4px 20px rgba(26,26,26,.12);
}

.speisekarte-cta .btn-primary:hover {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 6px 20px rgba(110,15,26,.25);
}

.speisekarte-cta small {
  color: var(--text-muted);
  font-size: 0.82rem;
}

/* --- CTA-Streifen -------------------------------------- */
.cta-band {
  background: var(--bg-soft);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  text-align: center;
  padding: 4.5rem 1.5rem;
  margin-top: 1.5rem;
}

.cta-band h2 { color: var(--text); margin-bottom: 0.75rem; font-size: clamp(1.4rem, 3vw, 2rem); }
.cta-band p { color: var(--text-muted); margin-bottom: 1.5rem; font-size: 1rem; }
.cta-band .hero-actions { justify-content: center; }

/* --- Gallery ------------------------------------------- */
.gallery-tabs {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.gallery-tab {
  padding: 0.45rem 1.1rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text-muted);
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 500;
  cursor: pointer;
  transition: all var(--transition);
}

.gallery-tab:hover {
  border-color: var(--text);
  color: var(--text);
}

.gallery-tab.active {
  background: var(--text);
  border-color: var(--text);
  color: #fff;
}

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

.gallery-grid figure {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.gallery-grid figure picture,
.gallery-grid figure .gallery-placeholder-img {
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 4/3;
  display: block;
}

.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.gallery-grid figure:hover img { transform: scale(1.04); }

.gallery-grid figcaption {
  font-size: 0.82rem;
  font-style: italic;
  color: var(--text-muted);
}

.gallery-placeholder-img {
  background: var(--surface-alt);
  border: 1px dashed var(--border);
  display: grid;
  place-items: center;
  color: var(--text-muted);
  font-size: 0.85rem;
  font-style: italic;
  width: 100%;
}

/* --- Gallery Scroll Carousel --------------------------- */
.gallery-scroll-wrap {
  position: relative;
}

.gallery-scroll {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 0.75rem;
  scrollbar-width: thin;
  scrollbar-color: var(--accent) transparent;
}

.gallery-scroll::-webkit-scrollbar { height: 3px; }
.gallery-scroll::-webkit-scrollbar-track { background: transparent; }
.gallery-scroll::-webkit-scrollbar-thumb {
  background: var(--accent);
  border-radius: 2px;
}

.gallery-scroll figure {
  flex-shrink: 0;
  width: clamp(260px, 70vw, 360px);
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.gallery-scroll figure picture {
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 4/3;
  display: block;
  background: #eee8dd;
}

.gallery-scroll img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.5s ease;
}

.gallery-scroll figure:nth-of-type(1) img {
  object-position: center 36%;
}

.gallery-scroll figure:nth-of-type(2) img {
  object-position: center 44%;
}

.gallery-scroll figure:nth-of-type(3) img,
.gallery-scroll figure:nth-of-type(4) img {
  object-position: center;
}

.gallery-scroll figure:nth-of-type(5) img {
  object-position: center 48%;
}

.gallery-scroll figure:hover img { transform: scale(1.04); }

.gallery-scroll figcaption {
  font-size: 0.82rem;
  font-style: italic;
  color: var(--text-muted);
}

.gallery-arrow {
  position: absolute;
  top: calc(50% - 1rem);
  transform: translateY(-50%);
  z-index: 2;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 50%;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--text);
  transition: background var(--transition), color var(--transition), border-color var(--transition);
  box-shadow: var(--shadow-soft);
}

.gallery-arrow:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

.gallery-arrow svg { width: 20px; height: 20px; flex-shrink: 0; }

.gallery-prev { left: -1rem; }
.gallery-next { right: -1rem; }

/* --- Online-Bestellung --------------------------------- */
.order-online {
  text-align: center;
  padding: 3rem 1.5rem;
  background: var(--bg-soft);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.order-online .eyebrow {
  display: block;
  margin-bottom: 1.5rem;
}

.order-online-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}

.order-online-note {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin: 0;
}

.btn-orange {
  background: #b45309;
  color: #fff;
  border-color: #b45309;
}

.btn-orange:hover {
  background: #92400e;
  border-color: #92400e;
  color: #fff;
  box-shadow: 0 4px 14px rgba(180, 83, 9, 0.25);
}

/* --- PDF-Viewer ---------------------------------------- */
.pdf-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin: 2rem 0 0.5rem;
}

.pdf-viewer {
  margin-top: 2rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.pdf-viewer iframe,
.pdf-viewer object {
  display: block;
  width: 100%;
  height: 88vh;
  border: 0;
  background: var(--surface-2);
}

.pdf-fallback {
  padding: 2rem;
  text-align: center;
  color: var(--text-muted);
  display: none;
}

/* --- Delivery ------------------------------------------ */
.delivery-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.delivery-cta {
  text-align: center;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 2.5rem 1.5rem;
}

.delivery-cta .phone {
  display: inline-block;
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  color: var(--accent);
  font-weight: 700;
  margin: 0.5rem 0;
  letter-spacing: 1px;
}

.delivery-cta .phone:hover { color: var(--accent-hover); }

/* --- Bestell-Grid-5 ------------------------------------ */
.bestell-grid-5 {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1.25rem;
  align-items: stretch;
  grid-auto-rows: 1fr;
  padding-bottom: 0;
  min-width: 0;
}

.page-lieferservice .bestell-grid-5 {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.bestell-card-5 {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 1.75rem 1.4rem;
  display: flex;
  flex-direction: column;
  box-shadow: 0 2px 10px rgba(26, 26, 26, 0.06);
  min-width: 0;
}

.bestell-card-num {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--text-muted);
  margin-bottom: 0.85rem;
  font-variant-numeric: tabular-nums;
}

.bestell-card-5 h3 {
  font-family: var(--font-body);
  font-size: 0.97rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.4rem;
}

.bestell-card-5 .card-sub {
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.55;
  margin-bottom: 1.25rem;
  flex: 1;
}

.bestell-card-5 .bestell-actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.55rem;
  width: 100%;
  margin-top: auto;
}

.bestell-card-5 .bestell-actions .btn {
  width: 100%;
  justify-content: center;
  padding: 0.7rem 0.85rem;
  font-size: 0.84rem;
  line-height: 1.15;
  white-space: nowrap;
}

.bestell-card-5 .bestell-actions .btn svg {
  flex: 0 0 auto;
}

.bestell-card-tel,
.bestell-card-pickup {
  border-top: 4px solid var(--accent);
}

.bestell-card-restaurant {
  border-top: 4px solid #1a3a6e;
}

.bestell-card-lieferando {
  border-top: 4px solid #b35c00;
}

.bestell-card-ubereats {
  border-top: 4px solid #1f5132;
}

.brand-label {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.35rem;
}

.bestell-platform-note {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.82rem;
  margin-top: 2rem;
}

.flyer-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  margin-top: 2rem;
}

.flyer-cta .btn-primary {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
  justify-content: center;
}

.flyer-cta .btn-primary:hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
}

.flyer-stand {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin: 0;
}

/* --- Delivery Info Wrap -------------------------------- */
.delivery-info-wrap {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
  align-items: stretch;
  background: transparent;
  border: none;
  padding: 0;
  min-width: 0;
}

.delivery-info-wrap > .delivery-zone,
.delivery-info-wrap > .delivery-times {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 1.5rem;
  margin: 0;
  display: flex;
  flex-direction: column;
}

.delivery-zone h3 {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-muted);
  margin-bottom: 0.2rem;
}

.delivery-zone .zone-meta {
  font-weight: 600;
  color: var(--accent);
  font-size: 0.88rem;
  margin-bottom: 0.85rem;
}

.delivery-zone ul {
  list-style: none;
  padding: 0;
  flex: 1;
}

.delivery-zone li {
  padding: 0.4rem 0;
  color: var(--text-muted);
  font-size: 0.92rem;
  border-bottom: 1px solid var(--border);
}

.delivery-zone li:last-child { border-bottom: 0; }

/* --- Delivery Times ------------------------------------ */

.delivery-times h3 {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-muted);
  margin-bottom: 0.2rem;
}

.delivery-times ul {
  list-style: none;
  padding: 0;
  flex: 1;
}

.delivery-times li {
  font-size: 0.92rem;
  color: var(--text-muted);
  padding: 0.4rem 0;
  border-bottom: 1px solid var(--border);
}

.delivery-times li strong {
  color: var(--text);
  font-weight: 600;
}

.delivery-times li:last-child { border-bottom: 0; }

/* --- Lieferservice: kompakte Seiten-Abstände ----------- */
.page-lieferservice section:not(.page-hero):not(.cta-band) {
  padding-block: clamp(1.75rem, 4vw, 3.25rem);
}

.page-lieferservice .page-hero {
  padding-bottom: 2rem;
}

@media (max-width: 960px) {
  .page-lieferservice .bestell-grid-5 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .delivery-info-wrap {
    grid-template-columns: 1fr;
  }

}

@media (max-width: 600px) {
  .page-lieferservice .bestell-grid-5 {
    grid-template-columns: 1fr;
  }

  .page-lieferservice .flyer-cta .btn-large {
    width: 100%;
    max-width: 100%;
    padding-inline: 1rem;
  }
}

/* --- Kontakt-Seite ------------------------------------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1.5rem;
  align-items: stretch;
  min-width: 0;
}

.opening-hours {
  list-style: none;
  padding: 0;
}

.opening-hours li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.32rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.95rem;
}
.opening-hours li:last-child { border-bottom: 0; }

.opening-hours .day { color: var(--text); }
.opening-hours li.is-closed .day,
.opening-hours li.is-holiday .day { color: var(--accent); }

.opening-hours .time {
  color: var(--text);
  font-weight: 500;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.04em;
}

.opening-hours .time.closed {
  color: var(--accent);
  font-weight: 600;
}

.opening-note {
  color: var(--text-muted);
  font-size: 0.88rem;
  margin-top: 1rem;
}

.map-action {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  margin-top: 2.5rem;
}

.map-btn {
  padding: 1rem 2.2rem;
  font-size: 1rem;
  max-width: 360px;
  width: 100%;
  justify-content: center;
}

.map-action-sub {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: 0;
}

/* --- Call CTA ------------------------------------------ */
.call-cta {
  text-align: center;
  padding: 4rem 1.5rem;
  background: var(--bg-soft);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.call-cta-label {
  display: block;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.call-cta-number {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  color: var(--accent);
  line-height: 1;
  margin-bottom: 1.75rem;
}

.call-cta-number a {
  color: inherit;
}

.call-cta-number a:hover {
  color: var(--accent-hover);
}

.map-wrap {
  margin-top: 3rem;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
}

.map-wrap iframe {
  display: block;
  width: 100%;
  height: 420px;
  border: 0;
  filter: grayscale(0.3) contrast(1.1);
}

/* --- Plattform-Buttons Lieferando / Uber Eats ---------- */
.bestell-card-lieferando .btn-primary {
  color: #b35c00;
  border-color: #b35c00;
}
.bestell-card-lieferando .btn-primary:hover {
  background: #b35c00;
  border-color: #b35c00;
  color: #fff;
  box-shadow: 0 4px 14px rgba(179, 92, 0, .18);
}
.bestell-card-ubereats .btn-primary {
  color: #1f5132;
  border-color: #1f5132;
}
.bestell-card-ubereats .btn-primary:hover {
  background: #1f5132;
  border-color: #1f5132;
  color: #fff;
  box-shadow: 0 4px 14px rgba(31, 81, 50, .18);
}
.bestell-card-restaurant .btn-ghost,
.bestell-card-restaurant .btn-primary {
  color: #1a3a6e;
  border-color: #1a3a6e;
}
.bestell-card-restaurant .btn-ghost:hover,
.bestell-card-restaurant .btn-primary:hover {
  background: #1a3a6e;
  color: #fff;
  box-shadow: 0 4px 14px rgba(26,58,110,.2);
}

/* =========================================================
   SPEISEKARTE PAGE
   ========================================================= */

@media (min-width: 761px) {
  body.page-speisekarte {
    background:
      linear-gradient(rgba(216, 209, 196, .2), rgba(216, 209, 196, .2)),
      url('../assets/images/ueberblick-speisen-peperoni-bg.webp') center 35% / cover no-repeat fixed #d8d1c4;
  }
}

body.page-speisekarte .page-hero {
  background: linear-gradient(rgba(202,194,180,.58), rgba(202,194,180,.36));
  border-bottom: none;
}

body.page-speisekarte .page-hero .hero-eyebrow {
  font-size: 12.5px;
  letter-spacing: 2.5px;
  color: rgba(255, 252, 246, .94);
  text-shadow: 0 2px 10px rgba(40, 18, 15, .45);
}

body.page-speisekarte .page-hero p,
body.page-speisekarte .cta-band p {
  color: rgba(255, 252, 246, .94);
  text-shadow: 0 2px 10px rgba(40, 18, 15, .45);
}

body.page-speisekarte .page-hero + section {
  background: transparent;
}

body.page-speisekarte .speisekarte-cta .btn-primary {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
  box-shadow: 0 8px 24px rgba(60, 10, 16, .22);
}

body.page-speisekarte .speisekarte-cta .btn-primary:hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
  color: #fff;
  box-shadow: 0 14px 30px rgba(60, 10, 16, .3);
  transform: translateY(-2px);
}

body.page-speisekarte .cta-band {
  background: linear-gradient(rgba(202,194,180,.36), rgba(202,194,180,.58));
  border-top: none;
  border-bottom: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

body.page-speisekarte .cta-band h2 {
  color: var(--accent);
  text-shadow: 0 2px 12px rgba(255, 252, 246, .45);
}

body.page-speisekarte .cta-band .btn-primary {
  background: var(--accent);
  color: #fff;
  border: 2px solid var(--accent);
  box-shadow: 0 8px 22px rgba(60, 10, 16, .22);
}
body.page-speisekarte .cta-band .btn-primary:hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
  color: #fff;
  box-shadow: 0 12px 28px rgba(60, 10, 16, .3);
  transform: translateY(-2px);
}
body.page-speisekarte .cta-band .btn-ghost {
  background: rgba(255, 252, 246, .9);
  color: var(--accent);
  border: 2px solid var(--accent);
  box-shadow: 0 8px 22px rgba(60, 10, 16, .14);
}
body.page-speisekarte .cta-band .btn-ghost:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
  box-shadow: 0 12px 28px rgba(60, 10, 16, .26);
  transform: translateY(-2px);
}
