:root {
  --color-bg: #0F0A06;
  --color-bg-soft: #1C1410;
  --color-surface: #221810;
  --color-surface-2: #2A1E14;
  --color-text: #F5ECD7;
  --color-muted: #C4A882;
  --color-primary: #E85D20;
  --color-primary-strong: #C94C15;
  --color-accent: #F4C542;
  --color-border: #3A2A1A;
  --color-success: #4ADE80;
  --shadow-soft: 0 14px 34px rgba(232, 93, 32, 0.18);
  --shadow-card: 0 18px 50px rgba(232, 93, 32, 0.22);
  --radius: 14px;
  --radius-sm: 10px;
  --container: 1140px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Karla", "Segoe UI", sans-serif;
  color: var(--color-text);
  background:
    radial-gradient(circle at 10% -20%, rgba(244, 197, 66, 0.07) 0%, rgba(244, 197, 66, 0) 36%),
    radial-gradient(circle at 95% 0%, rgba(232, 93, 32, 0.10) 0%, rgba(232, 93, 32, 0) 30%),
    linear-gradient(180deg, #0F0A06 0%, var(--color-bg) 46%, #0A0705 100%);
  line-height: 1.65;
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0;
  z-index: 60;
  background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
  box-shadow: 0 0 18px rgba(232, 93, 32, 0.50);
}

.cursor-glow {
  position: fixed;
  top: 0;
  left: 0;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 55;
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.86);
  background:
    radial-gradient(circle at 30% 30%, rgba(232, 93, 32, 0.65), rgba(232, 93, 32, 0.20) 45%, rgba(232, 93, 32, 0) 72%),
    radial-gradient(circle, rgba(244, 197, 66, 0.45), rgba(244, 197, 66, 0));
  filter: blur(1px);
  box-shadow: 0 0 30px rgba(232, 93, 32, 0.40);
  transition: opacity 220ms ease, transform 180ms ease, width 180ms ease, height 180ms ease;
}

.cursor-glow.active {
  opacity: 1;
}

.cursor-glow.boost {
  width: 58px;
  height: 58px;
  transform: translate(-50%, -50%) scale(1.02);
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
  width: auto;
  height: auto;
  background: #fff;
  color: #111;
  padding: 0.6rem 0.95rem;
  border-radius: 8px;
  z-index: 999;
}

.container {
  width: min(var(--container), calc(100% - 2.4rem));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(10px);
  background: rgba(45, 28, 10, 0.93);
  border-bottom: 1px solid rgba(201, 144, 46, 0.35);
  transition: background-color 220ms ease, border-color 220ms ease;
}

body.scrolled .site-header {
  background: rgba(33, 20, 6, 0.97);
  border-bottom-color: rgba(201, 144, 46, 0.50);
}

.nav-wrap {
  min-height: 78px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.2rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

.brand-logo {
  height: 52px;
  width: auto;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.5));
  transition: filter 0.2s ease;
}

.brand:hover .brand-logo {
  filter: drop-shadow(0 4px 10px rgba(201,144,46,0.45));
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.main-nav a {
  text-decoration: none;
  font-weight: 600;
  color: var(--color-muted);
  padding: 0.46rem 0.72rem;
  border-radius: 9px;
  transition: color 0.2s ease, background-color 0.2s ease;
}

.main-nav a:hover,
.main-nav a:focus-visible,
.main-nav a.active {
  color: var(--color-primary);
  background: rgba(232, 93, 32, 0.12);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-strong));
  color: #FFFFFF;
  padding: 0.72rem 1.2rem;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: 0.01em;
  transition: transform 0.18s ease, filter 0.2s ease;
  box-shadow: 0 12px 28px rgba(232, 93, 32, 0.38);
  cursor: pointer;
  --mx: 0px;
  --my: 0px;
  --btn-lift: 0px;
  transform: translate(var(--mx), var(--my)) translateY(var(--btn-lift));
}

.btn:hover,
.btn:focus-visible {
  --btn-lift: -1px;
  filter: brightness(1.05);
}

.btn-small {
  padding: 0.54rem 0.96rem;
  font-size: 0.92rem;
}

.btn-outline {
  background: transparent;
  color: var(--color-primary);
  border: 1px solid rgba(232, 93, 32, 0.42);
  box-shadow: none;
}

.btn-outline:hover,
.btn-outline:focus-visible {
  background: rgba(232, 93, 32, 0.10);
  border-color: rgba(232, 93, 32, 0.70);
  color: var(--color-primary-strong);
  filter: none;
}

.menu-toggle {
  display: none;
  justify-self: end;
  border: 0;
  background: transparent;
  cursor: pointer;
  color: var(--color-text);
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: currentColor;
  margin: 4px 0;
}

.menu-label {
  width: auto;
  height: auto;
  margin: 0;
  background: transparent;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3,
.footer-title {
  margin: 0;
  line-height: 1.2;
  font-family: "Playfair Display SC", Georgia, serif;
  letter-spacing: 0.01em;
}

h1 {
  font-size: clamp(2.1rem, 5vw, 3.7rem);
  max-width: 17ch;
}

h2 {
  font-size: clamp(1.6rem, 3.8vw, 2.6rem);
}

p {
  margin: 0;
}

.eyebrow,
.section-kicker {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--color-accent);
}

.section {
  padding: clamp(3.3rem, 6vw, 5.2rem) 0;
  position: relative;
  overflow: clip;
}

.section::after,
.page-hero::after,
.legal::after {
  content: "";
  position: absolute;
  top: -20%;
  left: -35%;
  width: 36%;
  height: 160%;
  pointer-events: none;
  opacity: 0;
  background:
    radial-gradient(circle at 30% 40%, rgba(244, 197, 66, 0.10), rgba(244, 197, 66, 0) 65%),
    radial-gradient(circle at 70% 65%, rgba(232, 93, 32, 0.08), rgba(232, 93, 32, 0) 65%);
  filter: blur(22px);
  transform: translateX(0) skewX(-10deg);
}

.section.in-view::after,
.page-hero.in-view::after,
.legal.in-view::after {
  animation: smokeSweep 1.3s ease-out both;
}

.section-alt {
  background: linear-gradient(180deg, rgba(28, 20, 16, 0.90), rgba(34, 24, 16, 0.95));
}

.hero {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  padding: clamp(4.3rem, 8vw, 7.2rem) 0 clamp(3rem, 6vw, 5rem);
}

.ember-layer {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  overflow: hidden;
}

.ember {
  position: absolute;
  bottom: -16px;
  border-radius: 999px;
  opacity: 0;
  background: radial-gradient(circle, rgba(255, 210, 150, 0.95) 0%, rgba(255, 148, 37, 0.7) 45%, rgba(232, 93, 32, 0.12) 100%);
  box-shadow: 0 0 12px rgba(232, 93, 32, 0.40);
  animation: emberRise linear infinite;
}

.hero::before {
  content: "";
  position: absolute;
  inset: auto;
  width: 560px;
  height: 560px;
  right: -200px;
  top: -180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232, 93, 32, 0.20), rgba(232, 93, 32, 0));
  z-index: -2;
  transform: translateY(var(--hero-shift, 0px));
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto;
  width: 520px;
  height: 520px;
  left: -260px;
  bottom: -260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(244, 197, 66, 0.18), rgba(244, 197, 66, 0));
  z-index: -2;
  transform: translateY(calc(var(--hero-shift, 0px) * -0.65));
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(130deg, rgba(15, 10, 6, 0.30), rgba(10, 7, 5, 0.12));
  z-index: -1;
  opacity: var(--hero-overlay-opacity, 1);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.85fr;
  gap: 1.4rem;
  align-items: start;
}

.lead {
  margin-top: 1rem;
  color: var(--color-muted);
  max-width: 62ch;
  font-size: 1.08rem;
}

.hero-actions {
  margin-top: 1.4rem;
  display: flex;
  gap: 0.7rem;
  flex-wrap: wrap;
}

.hero-facts {
  margin: 1.35rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.48rem;
  color: var(--color-muted);
}

.hero-facts li::before {
  content: "●";
  color: var(--color-primary);
  margin-right: 0.55rem;
}

.hero-card,
.card,
.menu-card,
.split-card,
.stats-card,
.request-form,
.steps,
.faq-list details,
.gallery-grid img,
.trust-grid article,
.legal article,
.contact-tile,
.timeline {
  background: linear-gradient(160deg, rgba(34, 24, 16, 0.97), rgba(42, 30, 20, 0.97));
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.hero-card,
.card,
.menu-card,
.split-card,
.stats-card,
.request-form,
.faq-list details,
.gallery-grid img,
.trust-grid article,
.contact-tile,
.timeline {
  position: relative;
  overflow: hidden;
  --rx: 0deg;
  --ry: 0deg;
  --ty: 0px;
  --sc: 1;
  transform: perspective(960px) rotateX(var(--rx)) rotateY(var(--ry)) translateY(var(--ty)) scale(var(--sc));
  transition: transform 240ms ease, border-color 240ms ease, box-shadow 240ms ease, background 240ms ease;
}

.hero-card::before,
.card::before,
.menu-card::before,
.split-card::before,
.stats-card::before,
.request-form::before,
.faq-list details::before,
.gallery-grid img::before,
.trust-grid article::before,
.contact-tile::before,
.timeline::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0;
  background: linear-gradient(120deg, rgba(232, 93, 32, 0), rgba(232, 93, 32, 0.12), rgba(232, 93, 32, 0));
  transform: translateX(-55%);
  transition: opacity 260ms ease;
}

.hero-card:hover,
.card:hover,
.menu-card:hover,
.split-card:hover,
.stats-card:hover,
.request-form:hover,
.faq-list details:hover,
.gallery-grid img:hover,
.trust-grid article:hover,
.contact-tile:hover,
.timeline:hover,
.hero-card.is-hover,
.card.is-hover,
.menu-card.is-hover,
.split-card.is-hover,
.stats-card.is-hover,
.request-form.is-hover,
.faq-list details.is-hover,
.gallery-grid img.is-hover,
.trust-grid article.is-hover,
.contact-tile.is-hover,
.timeline.is-hover {
  --ty: -6px;
  --sc: 1.013;
  border-color: rgba(232, 93, 32, 0.42);
  box-shadow: 0 20px 42px rgba(232, 93, 32, 0.22), 0 0 0 1px rgba(232, 93, 32, 0.10) inset;
}

.hero-card:hover::before,
.card:hover::before,
.menu-card:hover::before,
.split-card:hover::before,
.stats-card:hover::before,
.request-form:hover::before,
.faq-list details:hover::before,
.gallery-grid img:hover::before,
.trust-grid article:hover::before,
.contact-tile:hover::before,
.timeline:hover::before,
.hero-card.is-hover::before,
.card.is-hover::before,
.menu-card.is-hover::before,
.split-card.is-hover::before,
.stats-card.is-hover::before,
.request-form.is-hover::before,
.faq-list details.is-hover::before,
.gallery-grid img.is-hover::before,
.trust-grid article.is-hover::before,
.contact-tile.is-hover::before,
.timeline.is-hover::before {
  opacity: 1;
  transform: translateX(55%);
  transition: opacity 260ms ease, transform 560ms ease;
}

.hero-card {
  padding: 1.15rem;
}

.hero-card h2 {
  font-size: 1.35rem;
}

.hero-card p,
.hero-card dd,
.card p,
.menu-card p,
.split-card p,
.stats-card p,
.faq-list p,
.timeline p,
.contact-tile p {
  color: var(--color-muted);
}

.hero-card dl {
  margin: 0.95rem 0 0;
  display: grid;
  gap: 0.72rem;
}

.hero-card dt {
  font-weight: 700;
  color: var(--color-text);
}

.hero-card dd {
  margin: 0;
}

.section-head {
  margin-bottom: 1.1rem;
}

.trust-grid,
.cards-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.trust-grid article,
.card,
.split-card,
.stats-card,
.contact-tile {
  padding: 1rem;
}

.card h3,
.menu-card h3,
.split-card h3,
.stats-card h3,
.contact-tile h3,
.timeline h3 {
  font-size: 1.24rem;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.menu-card {
  padding: 1rem;
}

.menu-card ul,
.highlight-list,
.feature-list {
  margin: 0.7rem 0 0;
  padding-left: 1.05rem;
}

.menu-card li,
.highlight-list li,
.feature-list li {
  margin-bottom: 0.3rem;
}

.faq-list {
  display: grid;
  gap: 0.7rem;
}

.faq-list details {
  padding: 0.8rem 1rem;
}

.faq-list summary {
  font-weight: 700;
  cursor: pointer;
  color: var(--color-text);
}

.faq-list p {
  margin-top: 0.62rem;
}

.request-grid,
.split-grid,
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.1rem;
}

.request-form {
  padding: 1rem;
  display: grid;
  gap: 0.48rem;
}

.request-form label {
  margin-top: 0.35rem;
  font-weight: 700;
  color: var(--color-text);
}

.request-form input,
.request-form select,
.request-form textarea {
  width: 100%;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  padding: 0.66rem 0.75rem;
  font: inherit;
  color: var(--color-text);
  background: var(--color-surface);
}

.request-form input:focus,
.request-form select:focus,
.request-form textarea:focus {
  outline: 2px solid rgba(232, 93, 32, 0.30);
  border-color: rgba(232, 93, 32, 0.65);
}

.form-note {
  margin: 0;
  font-size: 0.9rem;
  color: var(--color-muted);
}

.honeypot {
  position: absolute;
  left: -9999px;
}

.section-gallery {
  padding-top: 1.3rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.7rem;
}

.gallery-grid img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}

.gallery-grid img:nth-child(3n) {
  transform: translateY(14px);
}

.parallax-float {
  transform: translateY(var(--float-shift, 0px));
  transition: transform 120ms linear;
}

.badge-row {
  margin-top: 0.9rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.badge {
  border: 1px solid rgba(244, 197, 66, 0.42);
  border-radius: 999px;
  padding: 0.36rem 0.65rem;
  font-size: 0.84rem;
  color: var(--color-accent);
  background: rgba(244, 197, 66, 0.10);
}

.page-hero {
  padding: clamp(3.1rem, 6vw, 5rem) 0 1.6rem;
}

.page-hero p {
  max-width: 74ch;
  color: var(--color-muted);
  margin-top: 0.9rem;
}

.timeline {
  margin-top: 1rem;
  padding: 1rem;
}

.timeline-item {
  padding: 0.72rem 0;
  border-bottom: 1px dashed rgba(232, 93, 32, 0.22);
}

.timeline-item:last-child {
  border-bottom: 0;
}

.stat-grid {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.stats-card strong {
  font-size: 1.55rem;
  color: var(--color-primary);
  display: block;
}

.site-footer {
  padding: 2.3rem 0;
  color: var(--color-muted);
  background: linear-gradient(165deg, #0A0705 0%, #070503 68%, #050302 100%);
  border-top: 1px solid rgba(232, 93, 32, 0.25);
}

@keyframes smokeSweep {
  0% {
    opacity: 0;
    transform: translateX(0) skewX(-10deg);
  }
  20% {
    opacity: 0.52;
  }
  100% {
    opacity: 0;
    transform: translateX(560%) skewX(-10deg);
  }
}

@keyframes emberRise {
  0% {
    transform: translate3d(0, 0, 0) scale(0.5);
    opacity: 0;
  }
  10% {
    opacity: 0.75;
  }
  60% {
    opacity: 0.45;
  }
  100% {
    transform: translate3d(var(--ember-drift, 16px), -110vh, 0) scale(1.18);
    opacity: 0;
  }
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.45fr 1fr 1fr 1fr;
  gap: 1.2rem;
}

.site-footer a {
  color: var(--color-muted);
}

.footer-title {
  margin: 0.2rem 0 0.7rem;
  font-size: 1.25rem;
}

.legal {
  padding: 2.8rem 0 4rem;
}

.legal article {
  max-width: 900px;
  padding: 1.3rem;
}

.legal h1 {
  font-size: clamp(1.95rem, 4vw, 2.8rem);
}

.legal h2 {
  margin-top: 1.2rem;
  font-size: 1.25rem;
}

.section-partners {
  padding: 2rem 0;
}

.partners-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.2rem;
  flex-wrap: wrap;
}

.partner-tile {
  background: linear-gradient(160deg, rgba(34, 24, 16, 0.90), rgba(42, 30, 20, 0.90));
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 1rem 1.6rem;
  text-align: center;
  min-width: 220px;
  transition: border-color 240ms ease, background 240ms ease;
}

.partner-tile:hover {
  border-color: rgba(232, 93, 32, 0.42);
  background: linear-gradient(160deg, rgba(42, 30, 20, 0.98), rgba(50, 36, 22, 0.98));
}

.partner-name {
  font-family: "Playfair Display SC", Georgia, serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-text);
  margin: 0;
}

.partner-logo {
  height: 34px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.92;
}

.partner-desc {
  font-size: 0.82rem;
  color: var(--color-muted);
  margin-top: 0.3rem;
}

.section-partners + .section {
  padding-top: clamp(2.5rem, 5vw, 4rem);
}

@media (max-width: 560px) {
  .partners-grid {
    flex-direction: column;
    align-items: stretch;
  }

  .partner-tile {
    min-width: 0;
  }
}

/* --- Event promo banner (Spanferkel-Dienstag) --- */
.event-promo {
  padding: clamp(2rem, 4vw, 2.6rem) 0;
}

.event-promo-inner {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  flex-wrap: wrap;
  background: linear-gradient(135deg, rgba(232, 93, 32, 0.16), rgba(244, 197, 66, 0.10));
  border: 1px solid rgba(244, 197, 66, 0.35);
  border-radius: var(--radius);
  padding: 1.8rem 2.2rem;
  box-shadow: var(--shadow-soft);
}

.event-promo-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  flex-shrink: 0;
}

.event-promo-text {
  flex: 1 1 320px;
}

.event-promo-tag {
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin: 0 0 0.3rem;
}

.event-promo-text h2 {
  font-size: clamp(1.3rem, 2.4vw, 1.7rem);
  margin: 0 0 0.45rem;
  color: var(--color-text);
}

.event-promo-text p {
  color: var(--color-muted);
  font-size: 0.98rem;
  line-height: 1.6;
  margin: 0;
  max-width: 62ch;
}

.event-promo-btn {
  flex-shrink: 0;
  margin-left: auto;
}

@media (max-width: 640px) {
  .event-promo-inner {
    flex-direction: column;
    text-align: center;
    padding: 1.6rem 1.4rem;
  }

  .event-promo-btn {
    margin-left: 0;
    width: 100%;
  }
}

.reveal {
  opacity: 0;
  transform: translateY(14px);
  filter: blur(4px);
  transition: opacity 460ms ease, transform 460ms ease, filter 460ms ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

@media (max-width: 1080px) {
  .hero-grid,
  .request-grid,
  .split-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .stat-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 840px) {
  .nav-wrap {
    grid-template-columns: auto auto;
  }

  .menu-toggle {
    display: block;
  }

  .main-nav {
    grid-column: 1 / -1;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    border-top: 1px solid var(--color-border);
    padding-top: 0.8rem;
    margin-bottom: 0.4rem;
  }

  .main-nav.open {
    display: flex;
  }

  .btn-small {
    display: none;
  }

  .trust-grid,
  .cards-3,
  .menu-grid,
  .stat-grid {
    grid-template-columns: 1fr;
  }

  .site-header {
    position: sticky;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(var(--container), calc(100% - 1.2rem));
  }

  .hero,
  .section,
  .page-hero {
    padding-block: 2.45rem;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid img:nth-child(3n) {
    transform: none;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal,
  .reveal.visible,
  .btn,
  .gallery-grid img:nth-child(3n),
  .parallax-float,
  .site-header,
  .hero::before,
  .hero::after {
    transition: none;
    transform: none;
    opacity: 1;
    filter: none;
  }

  .section::after,
  .page-hero::after,
  .legal::after,
  .section.in-view::after,
  .page-hero.in-view::after,
  .legal.in-view::after {
    animation: none;
    opacity: 0;
  }

  .ember {
    animation: none;
    opacity: 0;
  }
}

/* =============================================
   VISUAL REDESIGN — NEW COMPONENT CLASSES
   ============================================= */

/* --- Full-bleed photo hero (homepage) --- */
.hero-fullbleed {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  isolation: isolate;
  text-align: center;
}

.hero-fullbleed .hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  z-index: -2;
  transform: scale(1.04) translateY(calc(var(--hero-shift, 0px) * 0.06));
  transition: transform 120ms linear;
}

.hero-fullbleed .hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(
    to bottom,
    rgba(10, 4, 2, 0.35) 0%,
    rgba(10, 4, 2, 0.58) 45%,
    rgba(10, 4, 2, 0.80) 100%
  );
  opacity: var(--hero-overlay-opacity, 1);
}

.hero-fullbleed .hero-content {
  position: relative;
  z-index: 1;
  padding: 2rem 1rem;
  max-width: 860px;
  margin-inline: auto;
}

.hero-fullbleed h1 {
  color: #FFFFFF;
  text-shadow: 0 2px 18px rgba(0,0,0,0.45);
  max-width: 20ch;
  margin-inline: auto;
  font-size: clamp(2.6rem, 6vw, 4.8rem);
}

.hero-fullbleed .eyebrow {
  color: #FBB040;
  margin-bottom: 1rem;
}

.hero-fullbleed .hero-lead {
  color: rgba(255,255,255,0.88);
  font-size: clamp(1rem, 2.2vw, 1.22rem);
  max-width: 58ch;
  margin: 1.1rem auto 0;
  line-height: 1.6;
}

.hero-fullbleed .hero-actions {
  margin-top: 1.8rem;
  justify-content: center;
}

.hero-fullbleed .hero-scroll-hint {
  position: absolute;
  bottom: 1.8rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
  color: rgba(255,255,255,0.55);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-scroll-hint svg {
  animation: scrollBounce 1.6s ease-in-out infinite;
}

@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(5px); }
}

/* --- Fullbleed btn variant (white outline on dark photo) --- */
.btn-white {
  background: #FFFFFF;
  color: var(--color-primary);
  box-shadow: 0 8px 24px rgba(0,0,0,0.35);
}
.btn-white:hover, .btn-white:focus-visible {
  filter: brightness(0.96);
}

.btn-outline-white {
  background: transparent;
  color: #FFFFFF;
  border: 1.5px solid rgba(255,255,255,0.65);
  box-shadow: none;
}
.btn-outline-white:hover, .btn-outline-white:focus-visible {
  background: rgba(255,255,255,0.12);
  border-color: #FFFFFF;
  color: #FFFFFF;
  filter: none;
}

/* --- Stat bar below hero --- */
.hero-stat-bar {
  background: var(--color-primary);
  color: #FFFFFF;
  padding: 0.9rem 0;
}

.hero-stat-bar .container {
  display: flex;
  justify-content: center;
  gap: clamp(1.5rem, 5vw, 4rem);
  flex-wrap: wrap;
  align-items: center;
}

.stat-pill {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-weight: 700;
  font-size: 0.95rem;
  white-space: nowrap;
}

.stat-pill svg {
  flex-shrink: 0;
  opacity: 0.9;
}

/* --- Icon trust cards --- */
.icon-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}

.icon-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 1.6rem 1.4rem 1.4rem;
  box-shadow: var(--shadow-soft);
  text-align: center;
  position: relative;
  overflow: hidden;
  cursor: default;
  transition: transform 240ms ease, box-shadow 240ms ease, border-color 240ms ease;
}

.icon-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-card);
  border-color: rgba(232, 93, 32, 0.35);
}

.icon-circle {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-strong));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.1rem;
  color: #fff;
  flex-shrink: 0;
}

.icon-card h3 {
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
  color: var(--color-text);
}

.icon-card p {
  color: var(--color-muted);
  font-size: 0.97rem;
  line-height: 1.6;
}

/* --- Flavor banner (full-width photo strip with text overlay) --- */
.flavor-banner {
  position: relative;
  min-height: 440px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-align: center;
  isolation: isolate;
}

.flavor-banner .banner-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 55%;
  z-index: -2;
  transform: scale(1.05) translateY(calc(var(--float-shift, 0px) * 0.5));
}

.flavor-banner .banner-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(
    to bottom,
    rgba(8,3,2,0.42) 0%,
    rgba(8,3,2,0.65) 100%
  );
}

.flavor-banner .banner-content {
  position: relative;
  z-index: 1;
  padding: 3rem 1rem;
  max-width: 700px;
}

.flavor-banner h2 {
  color: #FFFFFF;
  font-size: clamp(2rem, 5vw, 3.4rem);
  text-shadow: 0 2px 20px rgba(0,0,0,0.5);
  margin-bottom: 1.2rem;
}

.flavor-banner .eyebrow {
  color: #FBB040;
}

.flavor-banner .banner-btns {
  display: flex;
  gap: 0.8rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 1.4rem;
}

/* --- Food category strip (photo cards for each dish type) --- */
.food-category-strip {
  padding: clamp(2.5rem, 5vw, 4rem) 0;
  background: var(--color-bg-soft);
}

.food-cat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 1.4rem;
}

.food-cat-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 3/4;
  cursor: pointer;
  transition: transform 240ms ease, box-shadow 240ms ease;
  box-shadow: var(--shadow-soft);
  text-decoration: none;
  display: block;
}

.food-cat-card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: var(--shadow-card);
}

.food-cat-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 400ms ease;
}

.food-cat-card:hover img {
  transform: scale(1.06);
}

.food-cat-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,3,2,0.82) 0%, rgba(10,3,2,0.18) 60%, rgba(10,3,2,0) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.2rem;
}

.food-cat-overlay h3 {
  color: #FFFFFF;
  font-size: 1.15rem;
  margin-bottom: 0.25rem;
  text-shadow: 0 1px 8px rgba(0,0,0,0.5);
}

.food-cat-overlay p {
  color: rgba(255,255,255,0.78);
  font-size: 0.84rem;
  line-height: 1.4;
}

.food-cat-overlay .cat-badge {
  display: inline-block;
  background: var(--color-primary);
  color: #fff;
  font-size: 0.74rem;
  font-weight: 700;
  padding: 0.22rem 0.6rem;
  border-radius: 999px;
  margin-bottom: 0.5rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* --- Visual menu cards (photo top + content below) --- */
.menu-card-visual {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
  cursor: default;
  --rx: 0deg; --ry: 0deg; --ty: 0px; --sc: 1;
  transform: perspective(960px) rotateX(var(--rx)) rotateY(var(--ry)) translateY(var(--ty)) scale(var(--sc));
  transition: transform 240ms ease, box-shadow 240ms ease, border-color 240ms ease;
}

.menu-card-visual:hover {
  --ty: -6px;
  --sc: 1.013;
  border-color: rgba(232, 93, 32, 0.40);
  box-shadow: var(--shadow-card);
}

.menu-card-visual .card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.menu-card-visual .card-body {
  padding: 1.2rem 1.1rem 1.3rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.menu-card-visual h3 {
  font-size: 1.2rem;
  color: var(--color-text);
}

.menu-card-visual ul {
  margin: 0.4rem 0 0;
  padding-left: 1.1rem;
  color: var(--color-muted);
  font-size: 0.95rem;
  flex: 1;
}

.menu-card-visual ul li {
  margin-bottom: 0.28rem;
}

.menu-card-visual p {
  color: var(--color-muted);
  font-size: 0.95rem;
}

/* --- Service icon cards (leistungen page) --- */
.service-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}

.service-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 2rem 1.5rem 1.6rem;
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  position: relative;
  overflow: hidden;
  --rx: 0deg; --ry: 0deg; --ty: 0px; --sc: 1;
  transform: perspective(960px) rotateX(var(--rx)) rotateY(var(--ry)) translateY(var(--ty)) scale(var(--sc));
  transition: transform 240ms ease, box-shadow 240ms ease, border-color 240ms ease;
}

.service-card:hover {
  --ty: -5px;
  border-color: rgba(232, 93, 32, 0.35);
  box-shadow: var(--shadow-card);
}

.service-card .svc-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-strong));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  flex-shrink: 0;
}

.service-card h3 {
  font-size: 1.22rem;
  color: var(--color-text);
}

.service-card p {
  color: var(--color-muted);
  font-size: 0.97rem;
  line-height: 1.6;
}

.service-card .feature-list {
  color: var(--color-muted);
  font-size: 0.95rem;
  margin: 0;
  padding-left: 1.1rem;
}

.service-card .feature-list li {
  margin-bottom: 0.3rem;
}

/* --- Process steps (leistungen timeline) --- */
.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 1.4rem;
}

.process-step {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 1.6rem 1.4rem;
  box-shadow: var(--shadow-soft);
  position: relative;
  overflow: hidden;
}

.step-num {
  font-family: "Playfair Display SC", Georgia, serif;
  font-size: 5rem;
  line-height: 1;
  font-weight: 700;
  color: rgba(232, 93, 32, 0.12);
  position: absolute;
  top: -0.5rem;
  right: 0.8rem;
  pointer-events: none;
  user-select: none;
}

.process-step h3 {
  font-size: 1.18rem;
  color: var(--color-text);
  margin-bottom: 0.4rem;
  position: relative;
}

.process-step p {
  color: var(--color-muted);
  font-size: 0.97rem;
  position: relative;
}

.step-label {
  display: inline-block;
  background: var(--color-primary);
  color: #fff;
  font-size: 0.74rem;
  font-weight: 700;
  padding: 0.18rem 0.6rem;
  border-radius: 999px;
  margin-bottom: 0.7rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

/* --- Avatar card (person with circular photo) --- */
.avatar-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 2rem 1.6rem 1.6rem;
  box-shadow: var(--shadow-soft);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  overflow: hidden;
  --rx: 0deg; --ry: 0deg; --ty: 0px; --sc: 1;
  transform: perspective(960px) rotateX(var(--rx)) rotateY(var(--ry)) translateY(var(--ty)) scale(var(--sc));
  transition: transform 240ms ease, box-shadow 240ms ease;
}

.avatar-card:hover {
  --ty: -5px;
  box-shadow: var(--shadow-card);
}

.avatar-ring {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid var(--color-primary);
  box-shadow: 0 0 0 4px rgba(232, 93, 32, 0.20);
  margin-bottom: 1.2rem;
  flex-shrink: 0;
}

.avatar-ring img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.avatar-card h3 {
  font-size: 1.3rem;
  color: var(--color-text);
  margin-bottom: 0.5rem;
}

.avatar-card p, .avatar-card .feature-list {
  color: var(--color-muted);
  font-size: 0.97rem;
  text-align: left;
  width: 100%;
}

.avatar-card .feature-list {
  padding-left: 1.1rem;
  margin-top: 0.6rem;
}

.avatar-card .feature-list li {
  margin-bottom: 0.28rem;
}

/* --- Award cards with icon --- */
.award-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
  margin-top: 1.2rem;
}

.award-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 1.6rem 1.4rem;
  box-shadow: var(--shadow-soft);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  transition: transform 240ms ease, box-shadow 240ms ease, border-color 240ms ease;
}

.award-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
  border-color: rgba(244, 197, 66, 0.45);
}

.award-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(244, 197, 66, 0.25), rgba(244, 197, 66, 0.10));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-accent);
}

.award-year {
  font-family: "Playfair Display SC", Georgia, serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1;
}

.award-card h3 {
  font-size: 1.05rem;
  color: var(--color-text);
}

.award-card p {
  color: var(--color-muted);
  font-size: 0.92rem;
  line-height: 1.55;
}

/* --- Season icon badges --- */
.season-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 0.9rem;
}

.season-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(244, 197, 66, 0.10);
  border: 1px solid rgba(244, 197, 66, 0.35);
  border-radius: 999px;
  padding: 0.32rem 0.75rem;
  font-size: 0.87rem;
  font-weight: 600;
  color: var(--color-accent);
}

.season-badge svg {
  flex-shrink: 0;
}

/* --- Page hero with background photo --- */
.page-hero-visual {
  position: relative;
  min-height: 340px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  isolation: isolate;
  padding-bottom: 2.5rem;
}

.page-hero-visual .phv-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 45%;
  z-index: -2;
}

.page-hero-visual .phv-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(
    to bottom,
    rgba(8,3,2,0.15) 0%,
    rgba(8,3,2,0.70) 100%
  );
}

.page-hero-visual .container {
  position: relative;
  z-index: 1;
}

.page-hero-visual .section-kicker {
  color: #FBB040;
}

.page-hero-visual h1 {
  color: #FFFFFF;
  text-shadow: 0 2px 16px rgba(0,0,0,0.4);
}

.page-hero-visual p {
  color: rgba(255,255,255,0.84);
  margin-top: 0.7rem;
  max-width: 70ch;
}

/* Responsive adjustments for new components */
@media (max-width: 1080px) {
  .food-cat-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .process-steps {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 840px) {
  .icon-cards,
  .service-cards,
  .award-cards {
    grid-template-columns: 1fr;
  }
  .food-cat-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .process-steps {
    grid-template-columns: 1fr;
  }
  .hero-fullbleed {
    min-height: 80vh;
  }
  .page-hero-visual {
    min-height: 260px;
  }
}

@media (max-width: 560px) {
  .food-cat-grid {
    grid-template-columns: 1fr 1fr;
  }
  .hero-stat-bar .container {
    gap: 1rem;
  }
  .stat-pill {
    font-size: 0.84rem;
  }
}
