/* ================================================
   BURG SOMMEREGG — Light Parchment Medieval
   ================================================ */

/* --- Custom Properties --- */
:root {
  /* Gold & Warm Tones */
  --gold:             #B4750A;
  --gold-bright:      #D4A024;
  --gold-glow:        #C8860A;
  --gold-dim:         #8B6914;
  --oak:              #5C3317;
  --oak-deep:         #3A1F0D;

  /* Surfaces — light parchment tones (names kept for compat) */
  --stone-darkest:    #FAF4E3;  /* main page background */
  --stone-dark:       #F1E6C8;  /* elevated sections, cards, footer */
  --stone-mid:        #E6D6AE;  /* mid surface */
  --stone-warm:       #D8C28E;  /* warm tan accent */
  --stone-light:      #6B5A48;  /* muted text color */
  --stone-pale:       #3D2E1F;  /* secondary text */

  /* Parchment (accent surfaces) */
  --parchment:        #FFF8E1;
  --parchment-dark:   #F1E6C8;
  --parchment-deep:   #CEBF98;

  /* Text */
  --text-light:       #2C1810;  /* primary text (dark on light) */
  --text-dim:         #6B5A48;
  --text-dark:        #FFF8E1;  /* cream ink — light text on gold buttons */

  /* Semantic */
  --success:          #4A7A50;
  --danger:           #9B4A3A;

  /* Typography */
  --font-display:     'Cinzel Decorative', 'Cinzel', serif;
  --font-heading:     'Cinzel', 'Georgia', serif;
  --font-body:        'Lora', 'Georgia', serif;

  /* Spacing */
  --space-xs:  0.5rem;
  --space-sm:  1rem;
  --space-md:  1.5rem;
  --space-lg:  2.5rem;
  --space-xl:  4rem;
  --space-2xl: 6rem;
  --space-3xl: 8rem;

  /* Radii */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;

  /* Pico Overrides */
  --pico-font-family: var(--font-body);
  --pico-font-size: 100%;
  --pico-line-height: 1.75;
  --pico-color: var(--text-light);
  --pico-background-color: var(--stone-darkest);
  --pico-primary: var(--gold);
  --pico-primary-hover: var(--gold-bright);
}

/* --- Reset & Base --- */
*, *::before, *::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  max-width: 100%;
}

body {
  font-family: var(--font-body);
  color: var(--text-light);
  background-color: var(--stone-darkest);
  margin: 0;
  line-height: 1.75;
  overflow-x: hidden;
  max-width: 100%;
  position: relative;
}

/* Parchment grain overlay */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    /* Warm golden wash */
    radial-gradient(ellipse at 15% 30%, rgba(200, 134, 10, 0.06) 0%, transparent 55%),
    radial-gradient(ellipse at 85% 60%, rgba(92, 51, 23, 0.04) 0%, transparent 50%),
    /* Horizontal subtle mortar */
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 58px,
      rgba(92, 51, 23, 0.025) 58px,
      rgba(92, 51, 23, 0.025) 60px
    ),
    /* Vertical subtle mortar — offset brick pattern */
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 118px,
      rgba(92, 51, 23, 0.02) 118px,
      rgba(92, 51, 23, 0.02) 120px
    ),
    /* Grain noise via SVG */
    url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.05'/%3E%3C/svg%3E");
  background-size: 240px 120px, 240px 120px, 120px 120px, 256px 256px;
  background-position: 0 0, 0 60px, 60px 0, 0 0;
}

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

a {
  color: var(--gold);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--gold-bright);
}

::selection {
  background: var(--gold);
  color: var(--text-dark);
}

/* --- Container --- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.container--narrow {
  max-width: 800px;
}

/* --- Typography --- */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  color: var(--text-light);
  line-height: 1.2;
  margin-top: 0;
}

h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 600;
  letter-spacing: 0.04em;
}

h2 {
  font-size: clamp(1.5rem, 3.5vw, 2.2rem);
  font-weight: 500;
  letter-spacing: 0.03em;
}

h3 {
  font-size: 1.3rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}

h4 {
  font-size: 1.05rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.subtitle {
  font-family: var(--font-body);
  font-style: italic;
  color: var(--gold-bright);
  font-size: 1.1rem;
  margin-top: -0.25rem;
  margin-bottom: var(--space-md);
}

/* --- Ornamental Dividers --- */
.ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  margin: var(--space-lg) auto;
  max-width: 300px;
  color: var(--gold-dim);
  font-size: 0.9rem;
}

.ornament span {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-dim), transparent);
}

.ornament i {
  color: var(--gold);
}

.ornament--light {
  color: var(--gold-bright);
}

.ornament--light span {
  background: linear-gradient(90deg, transparent, var(--gold-bright), transparent);
}

.ornament--light i {
  color: var(--gold-bright);
}

/* --- Section Heading --- */
.section-header {
  text-align: center;
  margin-bottom: var(--space-xl);
}

.section-header h2 {
  margin-bottom: var(--space-xs);
}

.section-header .ornament {
  margin-top: var(--space-sm);
  margin-bottom: 0;
}

/* --- Buttons --- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, var(--gold), var(--gold-dim));
  color: var(--text-dark);
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.8rem 2rem;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.btn-primary:hover {
  color: var(--text-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(200, 134, 10, 0.35);
}

.btn-primary:hover::before {
  opacity: 1;
}

.btn-primary span, .btn-primary i {
  position: relative;
  z-index: 1;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: var(--gold);
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.8rem 2rem;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--gold-dim);
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  text-align: center;
}

.btn-outline:hover {
  background: var(--gold);
  color: var(--text-dark);
  border-color: var(--gold);
  transform: translateY(-2px);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(232, 192, 106, 0.08);
  color: var(--gold-bright);
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.8rem 2rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(232, 192, 106, 0.25);
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  text-align: center;
}

.btn-ghost:hover {
  background: rgba(232, 192, 106, 0.15);
  border-color: var(--gold-bright);
  color: var(--gold-bright);
  transform: translateY(-2px);
}

.btn-sm {
  padding: 0.55rem 1.2rem;
  font-size: 0.75rem;
}

.btn-group {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
}

/* --- Badges --- */
.badge {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  padding: 0.3rem 0.9rem;
  border-radius: 2px;
  text-transform: uppercase;
}

.badge--open {
  background: var(--success);
  color: #fff;
}

.badge--closed {
  background: var(--danger);
  color: #fff;
}

.badge--free {
  background: var(--gold);
  color: var(--text-dark);
}

.badge--info {
  background: rgba(232, 192, 106, 0.12);
  color: var(--gold-bright);
  border: 1px solid rgba(232, 192, 106, 0.2);
}

.badge--hero {
  font-size: clamp(0.75rem, 2.5vw, 1.1rem);
  padding: 0.5rem clamp(1rem, 3vw, 2rem);
  letter-spacing: 0.06em;
}

/* --- Navigation --- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: var(--space-sm) 0;
  transition: all 0.4s ease;
}

.site-header nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-header.scrolled {
  background: rgba(250, 244, 227, 0.92);
  backdrop-filter: blur(16px) saturate(1.2);
  border-bottom: 1px solid rgba(200, 134, 10, 0.18);
  box-shadow: 0 6px 24px -12px rgba(92, 51, 23, 0.18);
  padding: 0.5rem 0;
}

.nav-logo img {
  height: 64px;
  width: auto;
  transition: height 0.3s ease;
  filter: brightness(1.1);
}

.site-header.scrolled .nav-logo img {
  height: 48px;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: var(--space-lg);
  margin: 0;
  padding: 0;
}

.nav-menu a {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #F5EDD8;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.55);
  text-decoration: none;
  padding: 0.5rem 0;
  position: relative;
  transition: color 0.3s ease, text-shadow 0.3s ease;
}

.site-header.scrolled .nav-menu a {
  color: var(--text-light);
  text-shadow: none;
}

.nav-menu a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s ease;
}

.nav-menu a:hover {
  color: var(--gold);
}

.nav-menu a:hover::after {
  width: 100%;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #E8C06A;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.55);
  text-decoration: none;
  padding: 0.55rem 1.4rem;
  border: 1px solid rgba(232, 192, 106, 0.7);
  border-radius: var(--radius-sm);
  transition: all 0.3s ease;
}

.site-header.scrolled .nav-cta {
  color: var(--gold);
  text-shadow: none;
  border-color: var(--gold-dim);
}

.nav-cta:hover {
  background: var(--gold);
  color: var(--text-dark);
  border-color: var(--gold);
  text-shadow: none;
}

.nav-cta i {
  font-size: 0.7rem;
}

/* Hamburger */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  width: 32px;
  height: 32px;
  position: relative;
  z-index: 1000;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.nav-toggle-bar {
  display: block;
  width: 100%;
  height: 2px;
  background: #F5EDD8;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
  margin: 0;
  transition: all 0.3s ease;
  border-radius: 1px;
  transform-origin: center;
}

.site-header.scrolled .nav-toggle-bar {
  background: var(--text-light);
  box-shadow: none;
}

.nav-toggle.active .nav-toggle-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.active .nav-toggle-bar:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.nav-toggle.active .nav-toggle-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* --- Hero --- */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  isolation: isolate;
}

.hero-bg {
  position: absolute;
  inset: -20px;
  background-size: cover;
  background-position: center;
  z-index: 0;
  animation: heroZoom 25s ease-in-out infinite alternate;
  will-change: transform;
  transform: translateZ(0);
  backface-visibility: hidden;
}

@keyframes heroZoom {
  0% { transform: scale(1) translateZ(0); }
  100% { transform: scale(1.08) translateZ(0); }
}

/* Auf Mobile: keine Zoom-Animation — sie wirkt beim Scrollen (URL-Bar-Shift,
   Repaints) unruhig und das Bild scheint beim Wischen zu "springen". */
@media (max-width: 768px) {
  .hero-bg {
    animation: none;
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-bg {
    animation: none;
    transform: none;
  }
}

/* Uniform darkening + subtle cinematic vignette — zooms with image, stays consistent */
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 130% 90% at 50% 40%, transparent 30%, rgba(0, 0, 0, 0.45) 100%),
    linear-gradient(180deg, rgba(20, 15, 12, 0.50) 0%, rgba(20, 15, 12, 0.30) 45%, rgba(20, 15, 12, 0.45) 100%);
}

/* Stable bottom fade-to-parchment — does NOT zoom with the image; ease-in curve for cinematic feel */
.hero::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 35%;
  background: linear-gradient(180deg,
    rgba(250, 244, 227, 0) 0%,
    rgba(250, 244, 227, 0.04) 25%,
    rgba(250, 244, 227, 0.15) 50%,
    rgba(250, 244, 227, 0.38) 70%,
    rgba(250, 244, 227, 0.70) 86%,
    rgba(250, 244, 227, 0.92) 95%,
    var(--stone-darkest) 100%
  );
  pointer-events: none;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  padding: var(--space-xl) var(--space-md);
}

.hero-content h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 7vw, 5rem);
  font-weight: 400;
  color: #F5EDD8;
  letter-spacing: 0.08em;
  margin-bottom: var(--space-sm);
  text-shadow:
    0 0 40px rgba(200, 134, 10, 0.25),
    0 4px 16px rgba(0, 0, 0, 0.65);
  animation: fadeUp 1.2s ease-out both;
}

.hero-logo--lg {
  max-width: min(460px, 55vw);
}

.hero-logo {
  width: 100%;
  max-width: 320px;
  height: auto;
  margin: 0 auto var(--space-md);
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.5));
  animation: fadeUp 1.2s ease-out both;
}

.hero-logo.hero-logo--lg {
  max-width: min(460px, 55vw);
}

/* Screen reader only */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.hero .tagline {
  font-family: var(--font-body);
  font-style: italic;
  font-size: clamp(1rem, 2.5vw, 1.35rem);
  color: var(--gold-bright);
  margin-bottom: 0;
  letter-spacing: 0.04em;
  animation: fadeUp 1.2s ease-out 0.3s both;
}

.hero .ornament {
  animation: fadeUp 1.2s ease-out 0.5s both;
}

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: fit-content;
  z-index: 2;
  color: #F5EDD8;
  font-size: 0.7rem;
  font-family: var(--font-heading);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  animation: fadeUp 1.2s ease-out 0.8s both;
}

.hero-scroll i {
  font-size: 1rem;
  animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}

/* --- Animations --- */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* --- Sections --- */
section {
  padding: var(--space-2xl) 0;
  margin: 0;
  position: relative;
}

.section-dark {
  background: var(--stone-dark);
  background-image:
    linear-gradient(160deg, rgba(200, 134, 10, 0.015) 0%, transparent 40%, rgba(200, 134, 10, 0.01) 100%);
}

.section-stone {
  background: var(--stone-mid);
  background-image:
    linear-gradient(135deg, rgba(200, 134, 10, 0.02) 0%, transparent 50%);
}

/* --- Intro Text --- */
.intro-text {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  font-size: 1.15rem;
  line-height: 1.9;
  color: var(--text-dim);
  font-style: italic;
}

/* --- Teaser Grid --- */
.teaser-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
}

.card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--stone-dark);
  border: 1px solid rgba(200, 134, 10, 0.08);
  transition: all 0.4s ease;
  display: block;
  text-decoration: none;
  color: var(--text-light);
}

.card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  border: 1px solid transparent;
  transition: border-color 0.4s ease;
  z-index: 2;
  pointer-events: none;
}

.card:hover {
  color: var(--text-light);
  border-color: rgba(200, 134, 10, 0.2);
}

.card:hover::before {
  border-color: rgba(200, 134, 10, 0.18);
}

.card-img {
  position: relative;
  overflow: hidden;
}

.card-img img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.card:hover .card-img img {
  transform: scale(1.04);
}

.card-img::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60%;
  background: linear-gradient(to top, var(--stone-dark), transparent);
  pointer-events: none;
}

.card-body {
  padding: 1.25rem 1.25rem 1.5rem;
  position: relative;
}

.card-body .badge {
  margin-bottom: 0.6rem;
}

.card-body h3 {
  font-size: 1.15rem;
  margin-bottom: 0.4rem;
  transition: color 0.3s ease;
}

.card:hover .card-body h3 {
  color: var(--gold);
}

.card-body p {
  color: var(--text-dim);
  font-size: 0.9rem;
  line-height: 1.6;
  margin: 0;
}

.card-arrow {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: var(--space-sm);
  font-family: var(--font-heading);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-dim);
  transition: all 0.3s ease;
}

.card:hover .card-arrow {
  color: var(--gold);
  gap: 0.75rem;
}

/* --- Split Section --- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: center;
}

.split--reverse {
  direction: rtl;
}

.split--reverse > * {
  direction: ltr;
}

.split-img {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.split-img img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

/* Golden frame accent */
.split-img::before {
  content: '';
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(200, 134, 10, 0.2);
  border-radius: calc(var(--radius-lg) - 4px);
  z-index: 1;
  pointer-events: none;
}

.split-text h2 {
  margin-bottom: var(--space-xs);
}

.split-text p {
  color: var(--text-dim);
  line-height: 1.85;
}

/* --- Hours Box --- */
.hours-box {
  background: rgba(200, 134, 10, 0.05);
  border: 1px solid rgba(200, 134, 10, 0.12);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  margin-top: var(--space-md);
}

.hours-box h4 {
  margin-bottom: var(--space-xs);
  color: var(--gold);
  font-size: 0.9rem;
  letter-spacing: 0.06em;
}

.hours-box table {
  width: 100%;
  border-collapse: collapse;
  background: transparent;
}

.hours-box tr {
  background: transparent !important;
  border: none;
}

.hours-box td {
  padding: 0.3rem 0;
  font-size: 0.9rem;
  border: none;
  background: transparent;
}

.hours-box td:last-child {
  text-align: right;
  color: var(--text-dim);
  font-variant-numeric: tabular-nums;
}

/* --- Banner Section (Parallax) --- */
.banner {
  position: relative;
  padding: var(--space-3xl) 0;
  background-size: cover;
  background-position: center;
  color: #F5EDD8;
  text-align: center;
  overflow: hidden;
  isolation: isolate;
}

.banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(20, 15, 12, 0.78) 0%, rgba(20, 15, 12, 0.55) 45%, rgba(20, 15, 12, 0.55) 55%, rgba(20, 15, 12, 0.78) 100%);
  z-index: 0;
  pointer-events: none;
}

.banner .container {
  position: relative;
  z-index: 1;
}

.banner h2 {
  color: #F5EDD8;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.7), 0 0 40px rgba(0, 0, 0, 0.4);
  margin-bottom: var(--space-xs);
}

.banner p {
  max-width: 700px;
  margin: 0 auto var(--space-lg);
  font-size: 1.05rem;
  line-height: 1.9;
  color: var(--parchment-deep);
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.5);
}

.banner .badge {
  margin-bottom: var(--space-md);
}

/* --- Footer CTA Band --- */
.footer-cta {
  background: var(--stone-dark);
  border-top: 1px solid rgba(200, 134, 10, 0.06);
  border-bottom: 1px solid rgba(200, 134, 10, 0.06);
  padding: var(--space-xl) 0;
  position: relative;
  overflow: hidden;
}

.footer-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(200, 134, 10, 0.06) 0%, transparent 60%),
    radial-gradient(ellipse at 90% 30%, rgba(200, 134, 10, 0.04) 0%, transparent 50%);
  pointer-events: none;
}

.footer-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-lg);
  position: relative;
}

.footer-cta-text h3 {
  font-size: 1.4rem;
  margin-bottom: 0.25rem;
  color: var(--text-light);
}

.footer-cta-text p {
  color: var(--text-dim);
  font-size: 0.92rem;
  margin: 0;
}

.footer-cta-actions {
  display: flex;
  gap: var(--space-sm);
  flex-shrink: 0;
}

/* --- Footer --- */
.site-footer {
  background: var(--stone-darkest);
  padding: 0 0 var(--space-md);
  position: relative;
}

/* Battlement silhouette */
.footer-battlement {
  height: 20px;
  background:
    repeating-linear-gradient(
      90deg,
      var(--stone-dark) 0px,
      var(--stone-dark) 28px,
      transparent 28px,
      transparent 32px,
      var(--stone-dark) 32px,
      var(--stone-dark) 60px,
      var(--stone-darkest) 60px,
      var(--stone-darkest) 64px
    );
  opacity: 0.4;
}

/* Main footer content */
.footer-main {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: var(--space-xl);
  padding: var(--space-lg) 0 var(--space-md);
}

/* Brand */
.footer-brand {
  border-right: 1px solid rgba(200, 134, 10, 0.06);
  padding-right: var(--space-lg);
}

.footer-brand-link {
  display: inline-block;
  transition: opacity 0.3s ease;
}

.footer-brand-link:hover {
  opacity: 0.8;
}

.footer-logo {
  margin-bottom: 0.5rem;
  filter: brightness(1.05);
}

.footer-tagline {
  font-family: var(--font-body);
  font-style: italic;
  color: var(--gold-dim);
  font-size: 0.88rem;
  margin-bottom: 0.75rem;
}

.footer-address {
  font-size: 0.8rem;
  color: var(--stone-light);
  line-height: 1.55;
}

.footer-address p {
  margin: 0;
}

/* Nav columns */
.footer-nav {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}

.footer-nav-col {
  text-align: left;
}

.footer-nav-col h4 {
  font-family: var(--font-heading);
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin: 0 0 1.1rem;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid rgba(200, 134, 10, 0.08);
  text-align: left;
}

.footer-nav-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.8rem;
}

.footer-nav-col ul li {
  display: block;
  margin: 0;
  padding: 0;
  line-height: 1.55;
}

.footer-nav-col ul a {
  color: var(--stone-pale);
  font-size: 0.85rem;
  line-height: 1.55;
  transition: all 0.25s ease;
  display: inline-block;
  position: relative;
  text-align: left;
  padding: 0;
}

.footer-nav-col ul a::before {
  content: '';
  position: absolute;
  left: -0.8rem;
  top: 50%;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.25s ease;
  transform: translateY(-50%);
}

.footer-nav-col ul a:hover {
  color: var(--gold);
  padding-left: 0.8rem;
}

.footer-nav-col ul a:hover::before {
  width: 0.5rem;
}

/* Contact list */
.footer-contact-list a,
.footer-map-link {
  display: inline-flex !important;
  align-items: center;
  gap: 0.6rem;
  color: var(--stone-pale);
  font-size: 0.85rem;
  line-height: 1.55;
  transition: color 0.25s ease;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  font-family: var(--font-body);
}

.footer-contact-list i {
  color: var(--gold-dim);
  font-size: 0.75rem;
  width: 1rem;
  text-align: center;
  transition: color 0.25s ease;
}

.footer-contact-list a:hover,
.footer-map-link:hover {
  color: var(--gold);
}

.footer-contact-list a:hover i,
.footer-map-link:hover i {
  color: var(--gold);
}

/* No sliding underline on contact links */
.footer-contact-list a::before {
  display: none;
}

/* Divider */
.footer-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  max-width: 100%;
  color: var(--gold-dim);
  font-size: 0.75rem;
}

.footer-divider span {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(200, 134, 10, 0.1), transparent);
}

.footer-divider i {
  opacity: 0.4;
}

/* Bottom bar */
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 0.75rem;
  font-size: 0.78rem;
  color: var(--stone-light);
  letter-spacing: 0.03em;
}

.footer-divider {
  margin-top: var(--space-sm);
}

.footer-copyright {
  margin: 0;
}

.footer-legal {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.footer-legal a {
  color: var(--stone-light);
  transition: color 0.25s ease;
}

.footer-legal a:hover {
  color: var(--gold);
}

.footer-dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--stone-light);
  opacity: 0.4;
}

/* --- Modal --- */
.modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1000;
  align-items: center;
  justify-content: center;
}

.modal[aria-hidden="false"] {
  display: flex;
}

.modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(4px);
}

.modal-content {
  position: relative;
  background: var(--stone-dark);
  border: 1px solid rgba(200, 134, 10, 0.15);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  max-width: 480px;
  width: 90%;
  z-index: 1;
  text-align: center;
}

.modal-icon {
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: var(--space-sm);
}

.modal-content h3 {
  margin-bottom: var(--space-sm);
  color: var(--text-light);
}

.modal-content p {
  color: var(--text-dim);
  font-size: 0.95rem;
  line-height: 1.7;
}

.modal-actions {
  display: flex;
  gap: var(--space-sm);
  margin-top: var(--space-lg);
  justify-content: center;
}

/* --- Cookie Consent --- */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(250, 244, 227, 0.96);
  backdrop-filter: blur(12px);
  border-top: 1px solid rgba(200, 134, 10, 0.2);
  box-shadow: 0 -6px 24px -12px rgba(92, 51, 23, 0.18);
  padding: var(--space-md);
  z-index: 999;
  display: none;
  transform: translateY(100%);
}

.cookie-banner.active {
  display: block;
  animation: slideUp 0.5s ease-out forwards;
}

@keyframes slideUp {
  to { transform: translateY(0); }
}

.cookie-banner-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-lg);
}

.cookie-banner p {
  font-size: 0.88rem;
  margin: 0;
  flex: 1;
  color: var(--text-dim);
}

.cookie-banner a {
  color: var(--gold);
}

/* --- Timeline --- */
.timeline {
  max-width: 700px;
  margin: var(--space-md) auto 0;
}

.timeline-title {
  text-align: center;
  margin-bottom: var(--space-xs);
}

.timeline-steps {
  position: relative;
  padding-left: 3.75rem;
  counter-reset: timeline;
}

.timeline-steps::before {
  content: '';
  position: absolute;
  left: 1.25rem;
  top: 1.4rem;
  bottom: 1.4rem;
  width: 2px;
  background:
    linear-gradient(to bottom,
      rgba(200, 134, 10, 0.5) 0%,
      rgba(200, 134, 10, 0.2) 100%);
  border-radius: 1px;
}

.timeline-step {
  display: flex;
  gap: var(--space-sm);
  padding-bottom: var(--space-md);
  position: relative;
  counter-increment: timeline;
}

.timeline-step:last-child {
  padding-bottom: 0;
}

.timeline-icon {
  position: absolute;
  left: -3.75rem;
  top: 0;
  width: 2.5rem;
  height: 2.5rem;
  background: linear-gradient(135deg, #D4A024 0%, var(--gold) 55%, #8B5A0A 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFF8E1;
  font-size: 0.85rem;
  box-shadow:
    0 0 0 4px var(--stone-darkest),
    0 0 0 5px rgba(200, 134, 10, 0.25),
    0 4px 12px rgba(92, 51, 23, 0.25),
    inset 0 1px 1px rgba(255, 248, 225, 0.25);
  z-index: 1;
  transition: transform 0.3s ease;
}

.timeline-step:hover .timeline-icon {
  transform: scale(1.08);
}

.timeline-content {
  padding-top: 0.25rem;
  flex: 1;
}

.timeline-content h4 {
  color: var(--text-light);
  margin-bottom: 0.35rem;
  font-size: 1.05rem;
  letter-spacing: 0.03em;
  display: flex;
  align-items: baseline;
  gap: 0.6rem;
}

.timeline-content h4::before {
  content: counter(timeline, decimal-leading-zero);
  font-family: var(--font-heading);
  font-size: 0.7rem;
  color: var(--gold);
  letter-spacing: 0.1em;
  font-weight: 400;
  opacity: 0.8;
}

.timeline-content p {
  color: var(--text-dim);
  font-size: 0.92rem;
  line-height: 1.7;
  margin: 0;
}

/* --- Menu Card --- */
.menu-card {
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  background: rgba(200, 134, 10, 0.04);
  border: 1px solid rgba(200, 134, 10, 0.1);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
}

.menu-card-title {
  text-align: center;
  color: var(--gold);
  font-size: 1.05rem;
  margin-bottom: var(--space-md);
  letter-spacing: 0.04em;
}

.menu-card-title i {
  margin-right: 0.5rem;
}

.menu-card-courses {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.menu-course {
  display: flex;
  gap: var(--space-md);
  padding-bottom: var(--space-sm);
  border-bottom: 1px solid rgba(200, 134, 10, 0.06);
}

.menu-course:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.menu-course-label {
  flex-shrink: 0;
  width: 6rem;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-dim);
  padding-top: 0.15rem;
}

.menu-course-text {
  color: var(--text-light);
  font-size: 0.92rem;
  line-height: 1.6;
}

.menu-card-note {
  margin-top: var(--space-md);
  padding-top: var(--space-sm);
  border-top: 1px solid rgba(200, 134, 10, 0.08);
  font-size: 0.85rem;
  color: var(--text-dim);
  font-style: italic;
}

.menu-card-note i {
  color: var(--success);
  margin-right: 0.4rem;
}

/* --- Package Cards --- */
.packages {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-md);
}

.package-card {
  background: var(--stone-dark);
  border: 1px solid rgba(200, 134, 10, 0.1);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color 0.3s ease;
}

.package-card:hover {
  border-color: rgba(200, 134, 10, 0.25);
}

.package-header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-xs);
  padding: var(--space-md) var(--space-md) 0;
}

.package-header h4 {
  font-size: 1.15rem;
  color: var(--text-light);
  margin: 0;
}

.package-price {
  width: 100%;
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--gold);
  margin-top: var(--space-xs);
  letter-spacing: 0.02em;
}

.package-price span {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--text-dim);
}

.package-body {
  padding: var(--space-md);
}

.package-body ul {
  list-style: none;
  padding: 0;
  margin: 0 0 var(--space-md);
}

.package-body ul li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  padding: 0.4rem 0;
  font-size: 0.9rem;
  color: var(--text-dim);
  line-height: 1.5;
}

.package-body ul li i {
  color: var(--gold);
  font-size: 0.7rem;
  margin-top: 0.35rem;
  flex-shrink: 0;
}

.package-meta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  padding-top: var(--space-sm);
  border-top: 1px solid rgba(200, 134, 10, 0.06);
  font-size: 0.8rem;
  color: var(--text-dim);
}

.package-meta span {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.package-meta i {
  color: var(--gold-dim);
  font-size: 0.75rem;
}

/* --- 404 Error Page --- */
.error-page {
  max-width: 500px;
  margin: 0 auto;
}

.error-icon {
  font-size: 3rem;
  color: var(--gold-dim);
  margin-bottom: var(--space-sm);
  opacity: 0.6;
}

.error-code {
  font-family: var(--font-display);
  font-size: clamp(4rem, 12vw, 8rem);
  color: var(--gold);
  line-height: 1;
  margin-bottom: var(--space-xs);
  text-shadow: 0 0 40px rgba(200, 134, 10, 0.15);
}

.error-text {
  color: var(--text-dim);
  font-size: 1rem;
  line-height: 1.7;
}

/* --- Legal Pages (Impressum, Datenschutz) --- */
.legal-content {
  line-height: 1.85;
}

.legal-content h2 {
  font-size: 1.15rem;
  margin-top: var(--space-xl);
  margin-bottom: var(--space-sm);
  padding-bottom: var(--space-xs);
  border-bottom: 1px solid rgba(200, 134, 10, 0.08);
}

.legal-content h2:first-of-type {
  margin-top: var(--space-lg);
}

.legal-content p {
  color: var(--text-dim);
  font-size: 0.92rem;
  margin-bottom: var(--space-sm);
}

.legal-content ul {
  padding-left: 1.2rem;
  margin-bottom: var(--space-md);
}

.legal-content ul li {
  color: var(--text-dim);
  font-size: 0.92rem;
  margin-bottom: 0.4rem;
  line-height: 1.7;
}

.legal-content strong {
  color: var(--text-light);
}

.legal-intro {
  font-style: italic;
  color: var(--text-dim);
  font-size: 0.95rem;
  margin-bottom: var(--space-lg);
}

.legal-address {
  background: rgba(200, 134, 10, 0.04);
  border: 1px solid rgba(200, 134, 10, 0.08);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  margin-bottom: var(--space-md);
}

.legal-address p {
  margin-bottom: 0.15rem;
  color: var(--text-dim);
}

.legal-address strong {
  color: var(--text-light);
}

.legal-table {
  width: 100%;
  border-collapse: collapse;
  background: transparent;
  margin-bottom: var(--space-md);
}

.legal-table tr {
  background: transparent !important;
  border: none;
}

.legal-table td {
  padding: 0.5rem 0.75rem;
  font-size: 0.9rem;
  border: none;
  border-bottom: 1px solid rgba(200, 134, 10, 0.05);
  background: transparent;
}

.legal-table td:first-child {
  color: var(--text-dim);
  width: 40%;
}

.legal-table td:last-child {
  color: var(--text-light);
}

.legal-updated {
  margin-top: var(--space-xl);
  font-size: 0.82rem;
  color: var(--stone-light);
  font-style: italic;
}

/* --- Partner Logos (no cards) --- */
.partner-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-xl);
  flex-wrap: wrap;
}

.partner-logos a {
  display: inline-block;
  transition: opacity 0.3s ease;
}

.partner-logos a:hover {
  opacity: 0.7;
}

.partner-logos img {
  height: 120px;
  width: auto;
  object-fit: contain;
  filter: brightness(1.15);
}

/* --- GPS Box --- */
.gps-box {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
  background: rgba(200, 134, 10, 0.05);
  border: 1px solid rgba(200, 134, 10, 0.12);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
}

.gps-box-icon {
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(200, 134, 10, 0.1);
  border-radius: 50%;
  color: var(--gold);
  font-size: 1.2rem;
  flex-shrink: 0;
}

.gps-box-content h3 {
  font-size: 1rem;
  margin-bottom: 0.3rem;
}

.gps-address {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--gold);
  letter-spacing: 0.03em;
  margin-bottom: 0.5rem;
}

.gps-note {
  font-size: 0.82rem;
  color: var(--text-dim);
  font-style: italic;
  margin: 0;
}

.gps-note i {
  color: var(--gold-dim);
  margin-right: 0.3rem;
}

.nav-buttons {
  display: flex;
  gap: var(--space-sm);
  justify-content: center;
  margin-top: var(--space-lg);
}

/* --- Travel Grid --- */
.travel-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
}

.travel-card {
  background: rgba(200, 134, 10, 0.03);
  border: 1px solid rgba(200, 134, 10, 0.08);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  transition: border-color 0.3s ease;
}

.travel-card:hover {
  border-color: rgba(200, 134, 10, 0.2);
}

.travel-card-icon {
  width: 2.8rem;
  height: 2.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(200, 134, 10, 0.08);
  border-radius: 50%;
  color: var(--gold);
  font-size: 1.1rem;
  margin-bottom: var(--space-sm);
}

.travel-card h3 {
  font-size: 1.05rem;
  margin-bottom: 0.4rem;
}

.travel-card p {
  color: var(--text-dim);
  font-size: 0.9rem;
  line-height: 1.6;
  margin: 0;
}

.travel-detail {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: var(--space-sm);
  font-size: 0.85rem;
  color: var(--text-dim);
}

.travel-detail i {
  color: var(--gold-dim);
}

.travel-links {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-top: var(--space-sm);
}

.travel-link-item {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  color: var(--gold) !important;
}

.travel-link-item i {
  font-size: 0.65rem;
}

/* --- Trail List --- */
.trail-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
  max-width: 600px;
  margin: 0 auto;
}

.trail-item {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding: var(--space-sm) var(--space-md);
  background: rgba(200, 134, 10, 0.03);
  border: 1px solid rgba(200, 134, 10, 0.06);
  border-radius: var(--radius-md);
  transition: border-color 0.3s ease;
  color: var(--text-light);
  text-decoration: none;
}

.trail-item:hover {
  border-color: rgba(200, 134, 10, 0.2);
  color: var(--text-light);
}

.trail-icon {
  width: 2.2rem;
  height: 2.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(200, 134, 10, 0.08);
  border-radius: 50%;
  color: var(--gold);
  font-size: 0.85rem;
  flex-shrink: 0;
}

.trail-info {
  flex: 1;
}

.trail-info h4 {
  margin: 0;
  font-size: 0.95rem;
}

.trail-info p {
  margin: 0;
  font-size: 0.8rem;
  color: var(--text-dim);
}

.trail-external {
  color: var(--gold-dim);
  font-size: 0.75rem;
}

/* --- Accessibility Info --- */
.accessibility-info {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.accessibility-block {
  display: flex;
  gap: var(--space-md);
  align-items: flex-start;
}

.accessibility-icon {
  width: 2.4rem;
  height: 2.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(200, 134, 10, 0.08);
  border-radius: 50%;
  color: var(--gold);
  font-size: 0.9rem;
  flex-shrink: 0;
  margin-top: 0.15rem;
}

.accessibility-block h4 {
  margin: 0 0 0.3rem;
  font-size: 0.95rem;
}

.accessibility-block p {
  color: var(--text-dim);
  font-size: 0.9rem;
  line-height: 1.7;
  margin: 0;
}

.partner-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 120px;
  padding: 0 var(--space-lg);
  border: 1px dashed rgba(200, 134, 10, 0.2);
  border-radius: var(--radius-md);
  transition: border-color 0.3s ease;
}

.partner-placeholder span {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  color: var(--text-dim);
}

.partner-placeholder:hover {
  border-color: var(--gold-dim);
}

/* --- Event Cards (Termine) --- */
.event-cards {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  max-width: 700px;
  margin: 0 auto;
}

.event-card {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  background: rgba(200, 134, 10, 0.04);
  border: 1px solid rgba(200, 134, 10, 0.1);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  transition: border-color 0.3s ease;
}

.event-card:hover {
  border-color: rgba(200, 134, 10, 0.2);
}

.event-card--past {
  opacity: 0.5;
}

.event-card-date {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 4rem;
  padding: var(--space-xs) var(--space-sm);
  background: rgba(200, 134, 10, 0.08);
  border-radius: var(--radius-sm);
  flex-shrink: 0;
}

.event-card-day {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.event-card-month {
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-top: 0.2rem;
}

.event-card-info {
  flex: 1;
}

.event-card-info h3 {
  font-size: 1.05rem;
  margin: 0 0 0.15rem;
}

.event-card-subtitle {
  font-style: italic;
  color: var(--gold-dim);
  font-size: 0.85rem;
  margin: 0 0 0.3rem;
}

.event-card-meta {
  font-size: 0.8rem;
  color: var(--text-dim);
  margin: 0;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.event-card-meta i {
  color: var(--gold-dim);
  font-size: 0.7rem;
}

.event-card-status {
  flex-shrink: 0;
}

/* --- Accordion toggle via class --- */
.accordion.is-open .accordion-panel {
  display: block !important;
}

.accordion.is-open .accordion-trigger > i {
  transform: rotate(180deg);
}

/* --- Price Table 3-col --- */
.price-table th:nth-child(2),
.price-table td:nth-child(2) {
  text-align: center;
  color: var(--text-dim);
}

/* --- Select styling --- */
.form-field select {
  background: rgba(200, 134, 10, 0.04);
  border: 1px solid rgba(200, 134, 10, 0.12);
  border-radius: var(--radius-sm);
  padding: 0.7rem var(--space-sm);
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text-light);
  width: 100%;
  cursor: pointer;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23C8860A' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  padding-right: 2.5rem;
}

.form-field select:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(200, 134, 10, 0.1);
}

.form-field select option {
  background: var(--stone-dark);
  color: var(--text-light);
}

/* --- Hours Dual (side by side) --- */
.hours-dual {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
  max-width: 800px;
  margin: 0 auto;
}

/* --- Tag Dual (side by side) --- */
.tag-dual {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-xl);
}

/* --- Artist Grid --- */
.artist-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}

.artist-card {
  background: rgba(200, 134, 10, 0.03);
  border: 1px solid rgba(200, 134, 10, 0.08);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  transition: border-color 0.3s ease;
}

.artist-card:hover {
  border-color: rgba(200, 134, 10, 0.2);
}

.artist-icon {
  width: 2.4rem;
  height: 2.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(200, 134, 10, 0.08);
  border-radius: 50%;
  color: var(--gold);
  font-size: 0.9rem;
  margin-bottom: var(--space-sm);
}

.artist-card h4 {
  color: var(--text-light);
  margin-bottom: 0.15rem;
  font-size: 0.95rem;
}

.artist-role {
  font-family: var(--font-heading);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-dim);
  margin-bottom: 0.5rem;
}

.artist-card p:last-child {
  color: var(--text-dim);
  font-size: 0.85rem;
  line-height: 1.6;
  margin: 0;
}

/* --- Tag Cloud --- */
.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: var(--space-md);
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem 0.75rem;
  background: rgba(200, 134, 10, 0.06);
  border: 1px solid rgba(200, 134, 10, 0.1);
  border-radius: var(--radius-sm);
  font-size: 0.78rem;
  color: var(--text-dim);
  transition: all 0.25s ease;
}

.tag i {
  color: var(--gold-dim);
  font-size: 0.65rem;
}

.tag:hover {
  border-color: var(--gold-dim);
  color: var(--gold);
}

/* --- Program Grid --- */
.program-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: var(--space-sm);
  max-width: 800px;
  margin: 0 auto;
}

.program-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: var(--space-md) var(--space-sm);
  background: rgba(200, 134, 10, 0.03);
  border: 1px solid rgba(200, 134, 10, 0.06);
  border-radius: var(--radius-md);
  text-align: center;
  transition: border-color 0.3s ease;
}

.program-item:hover {
  border-color: rgba(200, 134, 10, 0.2);
}

.program-item i {
  font-size: 1.3rem;
  color: var(--gold);
}

.program-item span {
  font-family: var(--font-heading);
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-dim);
}

/* --- Video DSGVO --- */
.video-wrap {
  max-width: 800px;
  margin: 0 auto;
}

.video-placeholder {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 16 / 9;
}

.video-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-placeholder-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  background: rgba(26, 21, 18, 0.7);
  transition: background 0.3s ease;
}

.video-placeholder:hover .video-placeholder-overlay {
  background: rgba(26, 21, 18, 0.55);
}

.video-placeholder-overlay i {
  font-size: 2.5rem;
  color: var(--gold);
  transition: transform 0.3s ease;
}

.video-placeholder:hover .video-placeholder-overlay i {
  transform: scale(1.15);
}

.video-placeholder-overlay span {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #F5EDD8;
}

.video-placeholder-overlay small {
  font-size: 0.75rem;
  color: #CEBF98;
  max-width: 260px;
  text-align: center;
  line-height: 1.4;
}

.video-responsive {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.video-responsive iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

/* --- Sponsor Grid --- */
.sponsor-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
  align-items: stretch;
}

.sponsor-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-md);
  background: #fff;
  border: 1px solid rgba(200, 134, 10, 0.06);
  border-radius: var(--radius-md);
  transition: all 0.3s ease;
}

.sponsor-item:hover {
  border-color: rgba(200, 134, 10, 0.2);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.sponsor-item img {
  width: 100%;
  height: 60px;
  object-fit: contain;
  filter: brightness(1.15);
  transition: filter 0.3s ease;
}

.sponsor-item:hover img {
  filter: brightness(1.3);
}

/* --- Price Table --- */
.price-table-wrap {
  max-width: 600px;
  margin: 0 auto;
}

.price-table {
  width: 100%;
  border-collapse: collapse;
  background: transparent;
}

.price-table thead th {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-dim);
  padding: 0.6rem 0.75rem;
  border-bottom: 1px solid rgba(200, 134, 10, 0.15);
  text-align: left;
  background: transparent;
}

.price-table thead th:last-child {
  text-align: right;
}

.price-table tbody tr {
  background: transparent !important;
  border: none;
}

.price-table tbody td {
  padding: 0.65rem 0.75rem;
  font-size: 0.92rem;
  border: none;
  border-bottom: 1px solid rgba(200, 134, 10, 0.05);
  background: transparent;
  color: var(--text-light);
}

.price-table tbody td:last-child {
  text-align: right;
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--gold);
  white-space: nowrap;
}

.price-table tbody tr:last-child td {
  border-bottom: none;
}

.price-note {
  font-size: 0.8rem;
  color: var(--text-dim);
  font-style: italic;
}

.price-highlight td {
  background: rgba(200, 134, 10, 0.04) !important;
  border-radius: var(--radius-sm);
}

/* --- Info Cards --- */
.info-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
}

@media (max-width: 480px) {
  .info-cards {
    grid-template-columns: 1fr;
  }
}

.info-card {
  background: rgba(200, 134, 10, 0.03);
  border: 1px solid rgba(200, 134, 10, 0.08);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  text-align: center;
  transition: border-color 0.3s ease;
}

.info-card:hover {
  border-color: rgba(200, 134, 10, 0.2);
}

.info-card-icon {
  width: 2.8rem;
  height: 2.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(200, 134, 10, 0.08);
  border-radius: 50%;
  color: var(--gold);
  font-size: 1rem;
  margin: 0 auto var(--space-sm);
}

.info-card h4 {
  color: var(--text-light);
  margin-bottom: 0.3rem;
  font-size: 0.95rem;
}

.info-card p {
  color: var(--text-dim);
  font-size: 0.85rem;
  line-height: 1.6;
  margin: 0;
}

/* --- Gallery 4-col --- */
.gallery--4 {
  grid-template-columns: repeat(4, 1fr);
}

/* --- Flatpickr Dark Theme --- */
.flatpickr-calendar {
  background: var(--stone-dark) !important;
  border: 1px solid rgba(200, 134, 10, 0.15) !important;
  border-radius: var(--radius-md) !important;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4) !important;
  font-family: var(--font-body) !important;
}

.flatpickr-months {
  background: rgba(200, 134, 10, 0.05);
  border-radius: var(--radius-md) var(--radius-md) 0 0;
}

.flatpickr-months .flatpickr-month,
.flatpickr-current-month .flatpickr-monthDropdown-months,
.flatpickr-current-month input.cur-year {
  color: var(--text-light) !important;
  font-family: var(--font-heading) !important;
  fill: var(--text-light) !important;
}

.flatpickr-current-month .flatpickr-monthDropdown-months {
  background: transparent !important;
}

.flatpickr-months .flatpickr-prev-month,
.flatpickr-months .flatpickr-next-month {
  fill: var(--gold) !important;
  color: var(--gold) !important;
}

.flatpickr-months .flatpickr-prev-month svg,
.flatpickr-months .flatpickr-next-month svg {
  fill: var(--gold) !important;
}

span.flatpickr-weekday {
  color: var(--gold-dim) !important;
  font-family: var(--font-heading) !important;
  font-size: 0.7rem !important;
  letter-spacing: 0.05em;
}

.flatpickr-day {
  color: var(--text-dim) !important;
  border-radius: var(--radius-sm) !important;
}

.flatpickr-day:hover {
  background: rgba(200, 134, 10, 0.1) !important;
  border-color: transparent !important;
  color: var(--text-light) !important;
}

.flatpickr-day.today {
  border-color: var(--gold-dim) !important;
}

.flatpickr-day.selected {
  background: var(--gold) !important;
  border-color: var(--gold) !important;
  color: var(--text-dark) !important;
}

.flatpickr-day.flatpickr-disabled {
  color: var(--stone-light) !important;
  opacity: 0.3;
}

.flatpickr-time {
  border-top: 1px solid rgba(200, 134, 10, 0.1) !important;
}

.flatpickr-time input,
.flatpickr-time .flatpickr-am-pm {
  color: var(--text-light) !important;
  font-family: var(--font-heading) !important;
}

.flatpickr-time input:hover,
.flatpickr-time input:focus {
  background: rgba(200, 134, 10, 0.06) !important;
}

.numInputWrapper:hover {
  background: rgba(200, 134, 10, 0.06) !important;
}

.numInputWrapper span {
  border-color: rgba(200, 134, 10, 0.15) !important;
}

.numInputWrapper span:hover {
  background: rgba(200, 134, 10, 0.1) !important;
}

.numInputWrapper span svg path {
  fill: var(--gold) !important;
}

.flatpickr-innerContainer {
  border-bottom: none !important;
}

/* Flatpickr alt input styling */
.flatpickr-input.flatpickr-mobile,
input.flatpickr-input {
  cursor: pointer;
}

/* --- Accordion --- */
.accordion {
  border: 1px solid rgba(200, 134, 10, 0.1);
  border-radius: var(--radius-md);
  margin-bottom: var(--space-xs);
  overflow: hidden;
}

.accordion-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: var(--space-md);
  background: rgba(200, 134, 10, 0.03);
  border: none;
  cursor: pointer;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--text-light);
  transition: background 0.3s ease;
}

.accordion-trigger:hover {
  background: rgba(200, 134, 10, 0.06);
}

.accordion-trigger span {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.accordion-trigger span i {
  color: var(--gold);
  font-size: 0.85rem;
}

.accordion-trigger > i {
  color: var(--gold-dim);
  font-size: 0.7rem;
  transition: transform 0.3s ease;
}

.accordion-panel {
  padding: 0 var(--space-md) var(--space-md);
}

[x-cloak] {
  display: none !important;
}

/* Menu Planner List */
.menu-planner-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.menu-planner-list li {
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(200, 134, 10, 0.04);
  font-size: 0.92rem;
  color: var(--text-dim);
  line-height: 1.6;
}

.menu-planner-list li:last-child {
  border-bottom: none;
}

.menu-planner-list li strong {
  color: var(--text-light);
  font-weight: 500;
}

/* --- Packages 3-col --- */
.packages--3 {
  grid-template-columns: repeat(3, 1fr);
}

/* Package Highlight */
.package-card--highlight {
  border-color: var(--gold-dim);
  position: relative;
}

.package-card--highlight::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  box-shadow: 0 0 25px rgba(200, 134, 10, 0.08);
  pointer-events: none;
}

.package-ribbon {
  position: absolute;
  top: var(--space-sm);
  right: var(--space-sm);
  background: var(--gold);
  color: var(--text-dark);
  font-family: var(--font-heading);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.25rem 0.7rem;
  border-radius: 2px;
}

/* --- Partner Grid --- */
.partner-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: var(--space-sm);
}

.partner-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  padding: var(--space-sm) var(--space-md);
  background: rgba(200, 134, 10, 0.03);
  border: 1px solid rgba(200, 134, 10, 0.06);
  border-radius: var(--radius-md);
  transition: border-color 0.3s ease;
}

.partner-item:hover {
  border-color: rgba(200, 134, 10, 0.15);
}

.partner-item > i {
  color: var(--gold-dim);
  font-size: 0.9rem;
  margin-top: 0.3rem;
  flex-shrink: 0;
}

.partner-item strong {
  color: var(--text-light);
  font-size: 0.92rem;
  display: block;
  margin-bottom: 0.15rem;
}

.partner-item p {
  color: var(--text-dim);
  font-size: 0.82rem;
  margin: 0;
  line-height: 1.4;
}

/* --- Speisekarte Filter --- */
.menu-filter {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: var(--space-xs);
  margin-bottom: var(--space-xl);
}

.menu-filter-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: transparent;
  color: var(--text-dim);
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.55rem 1.3rem;
  border: 1px solid rgba(200, 134, 10, 0.1);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all 0.3s ease;
}

.menu-filter-btn:hover {
  color: var(--gold);
  border-color: var(--gold-dim);
}

.menu-filter-btn.active {
  background: rgba(200, 134, 10, 0.1);
  color: var(--gold);
  border-color: var(--gold);
}

.menu-filter-btn i {
  font-size: 0.7rem;
}

/* --- Speisekarte Section --- */
.menu-section {
  margin-bottom: var(--space-xl);
}

.menu-section-header {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
  padding-bottom: var(--space-sm);
  border-bottom: 1px solid rgba(200, 134, 10, 0.12);
}

.menu-section-header i {
  color: var(--gold);
  font-size: 1rem;
}

.menu-section-header h2 {
  font-size: 1.4rem;
  margin: 0;
}

/* --- Speisekarte Item --- */
.menu-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: var(--space-md);
  padding: var(--space-sm) 0;
  border-bottom: 1px solid rgba(200, 134, 10, 0.04);
}

.menu-item:last-child {
  border-bottom: none;
}

.menu-item-text {
  flex: 1;
}

.menu-item-text h4 {
  color: var(--text-light);
  margin: 0 0 0.2rem;
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.menu-item-tag {
  font-size: 0.65rem;
  color: var(--success);
}

.menu-item-tag[title="Kindergericht"] {
  color: var(--gold);
}

.menu-item-text p {
  color: var(--text-dim);
  font-size: 0.88rem;
  line-height: 1.6;
  margin: 0;
}

.menu-item-price {
  flex-shrink: 0;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.02em;
  white-space: nowrap;
  padding-top: 0.1rem;
}

/* --- Allergen-Hinweis --- */
.menu-allergen {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  background: rgba(200, 134, 10, 0.04);
  border: 1px solid rgba(200, 134, 10, 0.08);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  margin-top: var(--space-xl);
}

.menu-allergen i {
  color: var(--gold-dim);
  font-size: 1rem;
  margin-top: 0.15rem;
}

.menu-allergen p {
  color: var(--text-dim);
  font-size: 0.88rem;
  margin: 0;
  font-style: italic;
  line-height: 1.6;
}

/* --- Sub-Page Hero --- */
/* Feste Höhe (nicht min-height) — damit alle Unterseiten gleich hoch sind,
   unabhängig davon ob Logo/Badge im Content steckt. Content wird bei Bedarf
   beschnitten (hero hat overflow: hidden). */
.hero--sub {
  min-height: 0;
  height: 60vh;
  height: 60svh;
}

.hero--sub .hero-content h1 {
  font-size: clamp(1.8rem, 5vw, 3.2rem);
}

/* Tablet: Hero etwas kürzer, damit mehr vom Motiv sichtbar ist */
@media (max-width: 1024px) {
  .hero {
    min-height: 75vh;
    min-height: 75svh;
  }
  .hero--sub {
    height: 55svh;
  }
}

/* --- Opening Hours Table (full page) --- */
.hours-table-wrap {
  max-width: 700px;
  margin: 0 auto;
  background: rgba(200, 134, 10, 0.04);
  border: 1px solid rgba(200, 134, 10, 0.1);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
}

.hours-table-title {
  text-align: center;
  color: var(--gold);
  font-size: 1.1rem;
  margin-bottom: var(--space-md);
  letter-spacing: 0.04em;
}

.hours-table-title i {
  margin-right: 0.5rem;
}

/* Hours Blocks */
.hours-block {
  padding: var(--space-sm) 0;
  border-bottom: 1px solid rgba(200, 134, 10, 0.06);
}

.hours-block:last-of-type {
  border-bottom: none;
}

.hours-block--current {
  background: rgba(200, 134, 10, 0.04);
  border-radius: var(--radius-md);
  padding: var(--space-sm) var(--space-md);
  margin: 0 calc(var(--space-md) * -1);
  border-bottom: none;
}

.hours-block-label {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-bottom: 0.4rem;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--text-light);
}

.hours-block-label .badge {
  font-size: 0.55rem;
  padding: 0.2rem 0.6rem;
}

.hours-table {
  width: 100%;
  border-collapse: collapse;
  background: transparent;
}

.hours-table tbody tr {
  background: transparent !important;
  border: none;
}

.hours-table tbody td {
  padding: 0.3rem 0.75rem;
  font-size: 0.9rem;
  border: none;
  background: transparent;
  color: var(--text-dim);
}

.hours-table tbody td:last-child {
  text-align: right;
  font-variant-numeric: tabular-nums;
}

/* Toggle Button */
.hours-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  margin-top: var(--space-md);
  padding: 0.7rem;
  background: transparent;
  border: 1px solid rgba(200, 134, 10, 0.12);
  border-radius: var(--radius-sm);
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  cursor: pointer;
  transition: all 0.3s ease;
}

.hours-toggle:hover {
  background: rgba(200, 134, 10, 0.06);
  border-color: var(--gold-dim);
}

.hours-toggle i {
  font-size: 0.65rem;
  transition: transform 0.3s ease;
}

/* --- Feature List --- */
.feature-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: var(--space-md);
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.92rem;
  color: var(--text-dim);
}

.feature-item i {
  color: var(--gold);
  width: 1.2rem;
  text-align: center;
  font-size: 0.85rem;
}

/* --- Gallery --- */
.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-sm);
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 0.5s ease, filter 0.3s ease;
}

.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(26, 21, 18, 0.15);
  transition: background 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.06);
}

.gallery-item:hover::after {
  background: rgba(200, 134, 10, 0.1);
}

/* --- Form --- */
.form {
  margin-top: var(--space-lg);
}

.form-note {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  background: rgba(200, 134, 10, 0.06);
  border: 1px solid rgba(200, 134, 10, 0.12);
  border-radius: var(--radius-md);
  padding: var(--space-sm) var(--space-md);
}

.form-note i {
  color: var(--gold);
  font-size: 1rem;
}

.form-note p {
  font-size: 0.9rem;
  color: var(--text-dim);
  margin: 0;
}

.form-note a {
  color: var(--gold);
  font-weight: 500;
}

.form-group {
  border: 1px solid rgba(200, 134, 10, 0.1);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  margin-bottom: var(--space-md);
}

.form-group legend {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--gold);
  padding: 0 0.5rem;
}

.radio-group {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

.radio-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  font-size: 0.9rem;
  color: var(--text-dim);
  padding: 0.4rem 0.75rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(200, 134, 10, 0.1);
  transition: all 0.2s ease;
}

.radio-label:has(input:checked) {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(200, 134, 10, 0.06);
}

.radio-label input[type="radio"] {
  accent-color: var(--gold);
  margin: 0;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: var(--space-sm);
  margin-bottom: var(--space-sm);
}

.form-field {
  display: flex;
  flex-direction: column;
  margin-bottom: var(--space-sm);
}

.form-field label {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--text-dim);
  margin-bottom: 0.4rem;
}

.form-optional {
  font-family: var(--font-body);
  font-weight: 400;
  font-style: italic;
  font-size: 0.75rem;
  color: var(--stone-light);
}

.form-field input,
.form-field textarea,
.form-field select {
  background: rgba(200, 134, 10, 0.04);
  border: 1px solid rgba(200, 134, 10, 0.12);
  border-radius: var(--radius-sm);
  padding: 0.7rem var(--space-sm);
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text-light);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(200, 134, 10, 0.1);
}

.form-field textarea {
  resize: vertical;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.85rem;
  color: var(--text-dim);
  cursor: pointer;
  line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
  accent-color: var(--gold);
  margin-top: 0.2rem;
  flex-shrink: 0;
}

.checkbox-label a {
  color: var(--gold);
}

/* --- Form Hints --- */
.form-hint {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.75rem;
  color: var(--stone-light);
  font-style: normal;
}

/* --- Custom Validation --- */
.form-error {
  border-color: var(--danger) !important;
  box-shadow: 0 0 0 3px rgba(155, 74, 58, 0.15) !important;
}

.form-error-msg {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin-top: 0.5rem;
  padding: 0.6rem 0.8rem;
  background: rgba(155, 74, 58, 0.08);
  border: 1px solid rgba(155, 74, 58, 0.15);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-style: italic;
  color: #D4887A;
  line-height: 1.5;
  animation: fadeUp 0.3s ease-out both;
}

.form-error-msg i {
  color: var(--gold-dim);
  font-size: 0.75rem;
  margin-top: 0.15rem;
  flex-shrink: 0;
}

/* --- Form Split Layout --- */
.form-split {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: var(--space-xl);
  align-items: start;
}

/* Sidebar */
.form-sidebar {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  position: sticky;
  top: 6rem;
}

.form-sidebar-block {
  background: rgba(200, 134, 10, 0.04);
  border: 1px solid rgba(200, 134, 10, 0.08);
  border-radius: var(--radius-md);
  padding: 0.9rem 1rem;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.form-sidebar-icon {
  width: 2rem;
  height: 2rem;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(200, 134, 10, 0.08);
  border-radius: 50%;
  color: var(--gold);
  font-size: 0.8rem;
  margin-bottom: 0;
  margin-top: 0.1rem;
}

.form-sidebar-block-body {
  flex: 1;
  min-width: 0;
}

.form-sidebar-block h4 {
  font-size: 0.78rem;
  color: var(--text-light);
  margin: 0 0 0.2rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.form-sidebar-block p {
  font-size: 0.82rem;
  color: var(--text-dim);
  line-height: 1.7;
  margin: 0;
}

.form-sidebar-block a {
  color: var(--gold);
  font-size: 0.85rem;
  font-weight: 500;
}

.form-sidebar-phone {
  font-family: var(--font-heading);
  font-size: 0.95rem !important;
  letter-spacing: 0.03em;
}

.form-sidebar-block .btn-outline {
  padding: 0.4rem 0.8rem;
  font-size: 0.75rem;
  margin-top: 0.35rem;
}

/* Form Main */
.form-main {
  background: var(--stone-dark);
  border: 1px solid rgba(200, 134, 10, 0.08);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
}

/* Form Steps */
.form-step {
  margin-bottom: var(--space-lg);
  padding-bottom: var(--space-lg);
  border-bottom: 1px solid rgba(200, 134, 10, 0.06);
}

.form-step:last-of-type {
  margin-bottom: var(--space-md);
  padding-bottom: var(--space-md);
}

.form-step-label {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--text-light);
  margin-bottom: var(--space-md);
}

.form-step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.6rem;
  height: 1.6rem;
  background: rgba(200, 134, 10, 0.1);
  border: 1px solid var(--gold-dim);
  border-radius: 50%;
  font-size: 0.7rem;
  color: var(--gold);
}

/* Radio Cards */
.radio-card {
  cursor: pointer;
}

.radio-card input[type="radio"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.radio-card-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: var(--space-sm) var(--space-md);
  border: 1px solid rgba(200, 134, 10, 0.1);
  border-radius: var(--radius-md);
  transition: all 0.3s ease;
  text-align: center;
}

.radio-card-inner i {
  font-size: 1.1rem;
  color: var(--text-dim);
  transition: color 0.3s ease;
}

.radio-card-inner span {
  font-family: var(--font-heading);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  color: var(--text-dim);
  transition: color 0.3s ease;
}

.radio-card input:checked + .radio-card-inner {
  border-color: var(--gold);
  background: rgba(200, 134, 10, 0.08);
}

.radio-card input:checked + .radio-card-inner i {
  color: var(--gold);
}

.radio-card input:checked + .radio-card-inner span {
  color: var(--gold);
}

.radio-card:hover .radio-card-inner {
  border-color: var(--gold-dim);
}

.form-step .radio-group {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-xs);
}

/* 3-col form row */
.form-row--3 {
  grid-template-columns: repeat(3, 1fr);
}

/* Form field label icons */
.form-field label i {
  margin-right: 0.3rem;
  color: var(--gold-dim);
  font-size: 0.75rem;
}

/* Submit area */
.form-submit {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.btn-submit {
  width: 100%;
  justify-content: center;
  padding: 1rem 2rem;
  font-size: 0.9rem;
}

/* --- Responsive --- */
@media (max-width: 1024px) {
  .teaser-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .packages--3 {
    grid-template-columns: 1fr;
  }

  .program-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .sponsor-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .artist-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-nav {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Mobile/Tablet Nav: switch to hamburger early so the top nav doesn't get cramped */
  .nav-toggle {
    display: flex;
  }

  .nav-menu {
    display: none;
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: rgba(250, 244, 227, 0.98);
    backdrop-filter: blur(20px);
    gap: 0;
    padding: var(--space-xl);
    z-index: 999;
    overflow-y: auto;
  }

  .nav-menu a {
    color: var(--text-light);
    text-shadow: none;
  }

  .nav-menu.active {
    display: flex;
  }

  .nav-menu li {
    padding: var(--space-sm) 0;
  }

  .nav-menu a {
    font-size: 1.1rem;
    letter-spacing: 0.12em;
  }

  .nav-cta {
    display: none;
  }

  .site-header nav {
    position: relative;
  }
}

@media (max-width: 768px) {

  .hero {
    min-height: 85vh;
    min-height: 85svh;
  }

  .hero-content h1 {
    font-size: clamp(2rem, 9vw, 3.5rem);
  }

  /* Kleinerer Bottom-Fade auf Mobile — sonst verliert der Content zu viel Platz */
  .hero::after {
    height: 22%;
  }

  section {
    padding: var(--space-xl) 0;
  }

  .split {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }

  .split--reverse {
    direction: ltr;
  }

  .btn-group {
    justify-content: center;
  }

  .teaser-grid {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }

  .banner {
    background-attachment: scroll;
    padding: var(--space-2xl) 0;
  }

  .footer-cta-inner {
    flex-direction: column;
    text-align: center;
  }

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

  .footer-cta-actions .btn-primary,
  .footer-cta-actions .btn-ghost {
    width: 100%;
    justify-content: center;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }

  .footer-brand {
    border-right: none;
    padding-right: 0;
    text-align: center;
    border-bottom: 1px solid rgba(200, 134, 10, 0.06);
    padding-bottom: var(--space-lg);
  }

  .footer-logo {
    margin: 0 auto var(--space-sm);
  }

  .footer-address {
    margin-top: var(--space-sm);
  }

  .footer-nav {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }

  .footer-nav-col {
    text-align: center;
  }

  .footer-nav-col h4 {
    text-align: center;
  }

  .footer-nav-col ul {
    align-items: center;
  }

  .footer-contact-list a,
  .footer-map-link {
    justify-content: center;
  }

  .footer-bottom {
    flex-direction: column;
    gap: var(--space-xs);
    text-align: center;
  }

  .cookie-banner-inner {
    flex-direction: column;
    text-align: center;
    gap: var(--space-sm);
  }

  .hero-scroll {
    display: none;
  }

  .hero--sub {
    height: 58svh;
  }
}

/* Sehr kleine Viewports: noch etwas kürzer, damit die Burg nicht zu stark beschnitten wird */
@media (max-width: 480px) {
  .hero {
    min-height: 78vh;
    min-height: 78svh;
  }
  .hero--sub {
    height: 52svh;
  }
}

/* Fortsetzung der Mobile-Styles (768px Breakpoint) */
@media (max-width: 768px) {
  .hours-table-wrap {
    padding: var(--space-md);
  }

  .hours-table thead {
    display: none;
  }

  .hours-table tbody tr {
    display: flex;
    flex-wrap: wrap;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(200, 134, 10, 0.06) !important;
  }

  .hours-table tbody td {
    padding: 0.2rem 0.5rem;
    border-bottom: none;
  }

  .hours-table tbody td:first-child {
    width: 100%;
    font-size: 0.8rem;
  }

  .hours-table tbody td:last-child {
    text-align: left;
  }

  .gallery {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery--4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .radio-group {
    flex-direction: column;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .form-split {
    grid-template-columns: 1fr;
  }

  .form-sidebar {
    position: static;
    flex-direction: row;
    flex-wrap: wrap;
  }

  .form-sidebar-block {
    flex: 1;
    min-width: 200px;
  }

  .form-step .radio-group {
    grid-template-columns: repeat(2, 1fr);
  }

  .form-row--3 {
    grid-template-columns: 1fr;
  }

  .program-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .sponsor-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gps-box {
    flex-direction: column;
    text-align: center;
  }

  .gps-box-icon {
    margin: 0 auto;
  }

  .nav-buttons {
    flex-direction: column;
  }

  .travel-grid {
    grid-template-columns: 1fr;
  }

  .accessibility-block {
    flex-direction: column;
    text-align: center;
  }

  .accessibility-icon {
    margin: 0 auto;
  }

  .event-card {
    flex-direction: column;
    text-align: center;
  }

  .event-card-meta {
    justify-content: center;
  }

  .hours-dual {
    grid-template-columns: 1fr;
  }

  .tag-dual {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }

  .artist-grid {
    grid-template-columns: 1fr;
  }

  .hero-logo--lg {
    max-width: 55vw;
  }

  .hero-logo {
    max-width: 200px;
  }
}

/* ================================================
   EDITORIAL TEXT BLOCKS
   Magazine-quality typography for homepage
   ================================================ */

/* --- Editorial Intro Section --- */
.section-intro {
  padding: var(--space-3xl) 0;
}

.editorial-intro {
  text-align: center;
  position: relative;
}

.editorial-intro-accent {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-xl);
  color: var(--gold-dim);
  font-size: 0.8rem;
}

.editorial-intro-accent .editorial-line {
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-dim), transparent);
}

.editorial-intro-accent i {
  color: var(--gold);
  filter: drop-shadow(0 0 6px rgba(200, 134, 10, 0.3));
}

/* Drop Cap */
.editorial-lead {
  max-width: 720px;
  margin: 0 auto;
  font-size: 1.2rem;
  line-height: 2;
  color: var(--text-dim);
  text-align: left;
  position: relative;
}

.drop-cap {
  float: left;
  font-family: var(--font-display);
  font-size: 4.2rem;
  line-height: 0.75;
  color: var(--gold);
  margin-right: 0.15em;
  margin-top: 0.08em;
  text-shadow: 0 0 30px rgba(200, 134, 10, 0.2);
}

.editorial-lead em {
  color: var(--gold-bright);
  font-style: italic;
}

/* Stats Row */
.editorial-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-lg);
  margin-top: var(--space-xl);
  padding-top: var(--space-xl);
  border-top: 1px solid rgba(200, 134, 10, 0.08);
}

.editorial-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
}

.editorial-stat-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 400;
  color: var(--gold);
  line-height: 1;
  letter-spacing: 0.03em;
  text-shadow: 0 0 20px rgba(200, 134, 10, 0.15);
}

/* Variante für längere Text-Aussagen (z. B. "Mitteleuropas größtes") — kompakter */
.editorial-stat-num--text {
  font-size: 1.15rem;
  line-height: 1.15;
  letter-spacing: 0.04em;
  text-align: center;
}

.editorial-stat-label {
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-dim);
}

.editorial-stat-divider {
  width: 1px;
  height: 2.5rem;
  background: linear-gradient(to bottom, transparent, var(--gold-dim), transparent);
}

/* --- Section Labels (01, 02, 03) --- */
.editorial-section-label {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: var(--space-md);
}

.editorial-section-label--center {
  justify-content: center;
  margin-bottom: var(--space-sm);
}

.editorial-num {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--gold);
  line-height: 1;
  opacity: 0.4;
  letter-spacing: 0.05em;
}

.editorial-category {
  font-family: var(--font-heading);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-dim);
  padding: 0.3rem 0.9rem;
  border: 1px solid rgba(200, 134, 10, 0.15);
  border-radius: 20px;
}

/* --- Editorial Body Text --- */
.editorial-body {
  position: relative;
}

.editorial-body p {
  color: var(--text-dim);
  line-height: 1.9;
  font-size: 0.98rem;
}

.editorial-body strong {
  color: var(--gold-bright);
  font-weight: 500;
}

/* Pull Quote */
.editorial-pullquote {
  position: relative;
  margin: var(--space-lg) 0;
  padding: var(--space-md) var(--space-lg);
  border-left: 2px solid var(--gold);
  background: linear-gradient(135deg, rgba(200, 134, 10, 0.04) 0%, transparent 60%);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  font-family: var(--font-body);
  font-style: italic;
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--gold-bright);
}

.editorial-pullquote i {
  position: absolute;
  top: var(--space-sm);
  left: var(--space-sm);
  font-size: 0.75rem;
  color: var(--gold-dim);
  opacity: 0.5;
}

/* --- Editorial Highlights --- */
.editorial-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-xs);
  margin: var(--space-md) 0;
}

.editorial-highlight-item {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 0.9rem;
  background: rgba(200, 134, 10, 0.04);
  border: 1px solid rgba(200, 134, 10, 0.1);
  border-radius: 20px;
  font-size: 0.82rem;
  color: var(--text-dim);
  transition: all 0.3s ease;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.editorial-highlight-item i {
  color: var(--gold);
  font-size: 0.72rem;
}

.editorial-highlight-item:hover {
  border-color: var(--gold-dim);
  color: var(--gold-bright);
  background: rgba(200, 134, 10, 0.08);
}

/* --- Editorial Banner Text --- */
.editorial-banner-text {
  max-width: 700px;
  margin: 0 auto var(--space-lg);
}

.editorial-banner-text p {
  font-size: 1.05rem;
  line-height: 1.9;
  color: var(--parchment-deep);
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.5);
  margin-bottom: var(--space-md);
}

.editorial-banner-features {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

.editorial-banner-features span {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-bright);
  padding: 0.4rem 0.8rem;
  border: 1px solid rgba(232, 192, 106, 0.25);
  border-radius: 20px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  background: rgba(26, 21, 18, 0.5);
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
}

.editorial-banner-features span i {
  font-size: 0.65rem;
  color: var(--gold);
}

/* Banner-specific overrides for editorial labels */
.banner .editorial-num {
  opacity: 0.6;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.5);
}

.banner .editorial-category {
  background: rgba(26, 21, 18, 0.4);
  border-color: rgba(232, 192, 106, 0.3);
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
}

/* --- Rules Quick Overview --- */
.rules-quick {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-sm);
  max-width: 800px;
  margin: 0 auto;
}

.rules-quick-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  padding: var(--space-md) var(--space-sm);
  background: var(--glass-bg);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  text-align: center;
  transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
}

.rules-quick-item:hover {
  border-color: var(--glass-border-bright);
  transform: translateY(-3px);
  box-shadow: var(--glass-shadow);
}

.rules-quick-icon {
  width: 2.6rem;
  height: 2.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(200, 134, 10, 0.08);
  border: 1px solid rgba(200, 134, 10, 0.12);
  border-radius: 50%;
  color: var(--gold);
  font-size: 1rem;
  margin-bottom: 0.2rem;
}

.rules-quick-item strong {
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--text-light);
}

.rules-quick-item span {
  font-size: 0.72rem;
  color: var(--text-dim);
  line-height: 1.3;
}

/* Alert items */
.rules-quick-item--alert {
  border-color: rgba(155, 74, 58, 0.2);
}

.rules-quick-item--alert .rules-quick-icon {
  background: rgba(155, 74, 58, 0.1);
  border-color: rgba(155, 74, 58, 0.2);
  color: #D4887A;
}

.rules-quick-item--alert:hover {
  border-color: rgba(155, 74, 58, 0.35);
}

/* --- Rules Full (expandable details) --- */
.rules-full {
  max-width: 800px;
  margin: var(--space-md) auto 0;
  background: var(--glass-bg);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--glass-shadow);
}

.rules-full-section {
  padding-bottom: var(--space-md);
  margin-bottom: var(--space-md);
  border-bottom: 1px solid rgba(200, 134, 10, 0.06);
}

.rules-full-section:last-child {
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: none;
}

.rules-full-section h4 {
  font-size: 0.9rem;
  color: var(--gold);
  margin-bottom: var(--space-sm);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.rules-full-section h4 i {
  font-size: 0.75rem;
  opacity: 0.7;
}

.rules-full-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.rules-full-section ul li {
  font-size: 0.85rem;
  color: var(--text-dim);
  line-height: 1.6;
  padding-left: 1rem;
  position: relative;
  list-style: none;
}

.rules-full-section ul li::before {
  content: '·';
  position: absolute;
  left: 0;
  color: var(--gold-dim);
  font-weight: 700;
}

/* Sanction notice */
.rules-sanction {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: var(--space-sm);
  padding-top: var(--space-sm);
  border-top: 1px solid rgba(155, 74, 58, 0.15);
  font-size: 0.8rem;
  font-style: italic;
  color: #D4887A;
  line-height: 1.5;
}

.rules-sanction i {
  font-size: 0.7rem;
  flex-shrink: 0;
}

.rules-sanction strong {
  font-weight: 600;
  color: #D4887A;
}

@media (max-width: 768px) {
  .rules-quick {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* --- Stepper Form --- */
.stepper-form {
  max-width: 640px;
  margin: 0 auto;
}

/* Progress dots */
.stepper-progress {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  position: relative;
  margin-bottom: var(--space-xl);
  padding: 0 var(--space-sm);
}

.stepper-line {
  position: absolute;
  top: 1.1rem;
  left: 2.5rem;
  right: 2.5rem;
  height: 2px;
  background: rgba(200, 134, 10, 0.12);
  z-index: -1;
}

.stepper-line-fill {
  height: 100%;
  background: var(--gold);
  transition: width 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  border-radius: 1px;
}

.stepper-dot {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  background: none;
  border: none;
  cursor: pointer;
  position: relative;
  z-index: 1;
  padding: 0;
}

.stepper-dot:disabled {
  cursor: default;
}

.stepper-dot-num {
  width: 2.2rem;
  height: 2.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--stone-darkest);
  border: 2px solid rgba(200, 134, 10, 0.15);
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-dim);
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.stepper-dot.is-active .stepper-dot-num {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--text-dark);
  box-shadow: 0 0 20px rgba(200, 134, 10, 0.3);
}

.stepper-dot.is-done .stepper-dot-num {
  background: var(--stone-darkest);
  border-color: var(--gold);
  color: var(--gold);
}

.stepper-dot-label {
  font-family: var(--font-heading);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-dim);
  transition: color 0.3s ease;
}

.stepper-dot.is-active .stepper-dot-label {
  color: var(--gold);
}

/* Panel */
.stepper-panel {
  background: var(--glass-bg);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--glass-shadow);
  position: relative;
  overflow: hidden;
}

.stepper-panel::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(232, 192, 106, 0.25), transparent);
  pointer-events: none;
}

.stepper-title {
  font-size: 1.1rem;
  margin-bottom: var(--space-lg);
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.stepper-title i {
  color: var(--gold);
  font-size: 0.9rem;
}

/* Stand selection cards */
.stepper-cards {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: var(--space-sm);
}

/* .stepper-cards .stepper-card — höhere Spezifität, damit Picos
   `label:has([type=radio]) { width: fit-content }` überschrieben wird. */
.stepper-cards .stepper-card {
  cursor: pointer;
  display: flex;
  position: relative;
  min-width: 0;
  width: auto;
}

.stepper-card input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.stepper-card-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  padding: var(--space-md) var(--space-sm);
  border: 1px solid rgba(200, 134, 10, 0.1);
  border-radius: var(--radius-md);
  text-align: center;
  transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
  background: rgba(200, 134, 10, 0.02);
  flex: 1;
  width: 100%;
}

.stepper-card-inner i {
  font-size: 1.2rem;
  color: var(--text-dim);
  transition: color 0.3s ease;
  margin-bottom: 0.2rem;
}

.stepper-card-inner strong {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--text-light);
}

.stepper-card-inner small {
  font-size: 0.7rem;
  color: var(--text-dim);
  min-height: 1em;
}

.stepper-card-price {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--gold);
  margin-top: auto;
  padding-top: 0.4rem;
}

.stepper-card:hover .stepper-card-inner {
  border-color: var(--gold-dim);
}

.stepper-card.is-selected .stepper-card-inner {
  border-color: var(--gold);
  background: rgba(200, 134, 10, 0.08);
  box-shadow: 0 4px 20px rgba(200, 134, 10, 0.12);
}

.stepper-card.is-selected .stepper-card-inner i {
  color: var(--gold);
}

/* Navigation */
.stepper-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: var(--space-lg);
  padding-top: var(--space-md);
  border-top: 1px solid rgba(200, 134, 10, 0.06);
}

.stepper-nav .btn-primary:disabled,
.stepper-nav .btn-outline:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

/* Summary */
.stepper-summary {
  background: rgba(200, 134, 10, 0.03);
  border: 1px solid rgba(200, 134, 10, 0.1);
  border-radius: var(--radius-md);
  padding: var(--space-md);
}

.stepper-summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.45rem 0;
  border-bottom: 1px solid rgba(200, 134, 10, 0.05);
}

.stepper-summary-row:last-child {
  border-bottom: none;
}

.stepper-summary-label {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-dim);
}

.stepper-summary-value {
  font-size: 0.9rem;
  color: var(--text-light);
}

.stepper-summary-row--total {
  margin-top: 0.3rem;
  padding-top: 0.6rem;
  border-top: 1px solid rgba(200, 134, 10, 0.15);
  border-bottom: none;
}

.stepper-summary-total {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--gold);
}

@media (max-width: 768px) {
  .stepper-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .stepper-dot-label {
    font-size: 0.55rem;
  }

  .stepper-dot-num {
    width: 1.8rem;
    height: 1.8rem;
    font-size: 0.7rem;
  }

  .stepper-line {
    top: 0.9rem;
  }
}

/* Stepper contact hint */
.stepper-contact {
  display: flex;
  justify-content: center;
  gap: var(--space-lg);
  margin-top: var(--space-lg);
  padding-top: var(--space-md);
  font-size: 0.82rem;
  color: var(--text-dim);
}

.stepper-contact span {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.stepper-contact i {
  color: var(--gold-dim);
  font-size: 0.7rem;
}

.stepper-contact a {
  color: var(--gold);
}

@media (max-width: 768px) {
  .stepper-contact {
    flex-direction: column;
    align-items: center;
    gap: var(--space-xs);
  }
}

/* --- Time Slots (Reservierungs-Uhrzeiten) --- */
.time-slots-hint,
.time-slots-empty {
  font-family: var(--font-body);
  font-size: 0.85rem;
  line-height: 1.5;
  margin: 0.2rem 0 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: var(--space-sm) var(--space-md);
  border-radius: var(--radius-md);
  border: 1px dashed rgba(200, 134, 10, 0.2);
  background: rgba(200, 134, 10, 0.03);
}

.time-slots-hint {
  color: var(--text-dim);
  font-style: italic;
}

.time-slots-hint i {
  color: var(--gold-dim);
}

.time-slots-empty {
  color: var(--danger);
  border-color: rgba(155, 74, 58, 0.35);
  background: rgba(155, 74, 58, 0.08);
  font-style: normal;
}

.time-slots-empty i {
  color: var(--danger);
}

.time-slots-meta {
  font-family: var(--font-heading);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-dim);
  margin-bottom: 0.6rem;
}

.time-slots-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(84px, 1fr));
  gap: 0.5rem;
}

.time-slot {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--text-light);
  background: rgba(200, 134, 10, 0.02);
  border: 1px solid rgba(200, 134, 10, 0.15);
  border-radius: var(--radius-md);
  padding: 0.7rem 0.5rem;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.23, 1, 0.32, 1);
  position: relative;
}

.time-slot:hover {
  border-color: var(--gold-dim);
  background: rgba(200, 134, 10, 0.08);
  transform: translateY(-1px);
}

.time-slot.is-selected {
  border-color: var(--gold);
  background: linear-gradient(135deg, var(--gold), var(--gold-dim));
  color: var(--oak-deep);
  font-weight: 600;
  box-shadow: 0 6px 18px rgba(200, 134, 10, 0.28);
  transform: translateY(-1px);
}

.time-slot.is-selected:hover {
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
}

@media (max-width: 480px) {
  .time-slots-grid {
    grid-template-columns: repeat(auto-fill, minmax(72px, 1fr));
    gap: 0.4rem;
  }
  .time-slot {
    font-size: 0.88rem;
    padding: 0.6rem 0.4rem;
  }
}

/* --- Kontakt-Chooser (3 Kategorie-Karten auf /kontakt) --- */
.kontakt-chooser {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

@media (max-width: 640px) {
  .kontakt-chooser {
    grid-template-columns: 1fr;
  }
}

.kontakt-chooser-back {
  margin-bottom: var(--space-md);
}

/* --- Honeypot (bot trap — für menschliche Nutzer unsichtbar) --- */
.hp-field {
  position: absolute !important;
  left: -9999px !important;
  top: auto !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

/* --- Form gesperrt (Anmeldung noch nicht freigeschaltet) --- */
.form-locked {
  border: 0;
  padding: 0;
  margin: 0;
  min-width: 0;
  opacity: 0.55;
  pointer-events: none;
  filter: grayscale(25%);
}

.form-lock-notice {
  max-width: 640px;
  margin: var(--space-md) auto 0;
  padding: var(--space-lg) var(--space-xl);
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
  border-radius: var(--radius-md);
  border: 1px solid rgba(200, 134, 10, 0.25);
  background:
    radial-gradient(ellipse at top left, rgba(200, 134, 10, 0.08), transparent 70%),
    rgba(200, 134, 10, 0.03);
}

.form-lock-notice-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(200, 134, 10, 0.1);
  border: 1px solid rgba(200, 134, 10, 0.3);
  color: var(--gold);
  font-size: 1.1rem;
}

.form-lock-notice-text {
  flex: 1;
  color: var(--text-light);
  font-family: var(--font-body);
  line-height: 1.55;
}

.form-lock-notice-text strong {
  font-family: var(--font-heading);
  color: var(--gold-bright);
  font-size: 1rem;
  letter-spacing: 0.02em;
  display: block;
  margin-bottom: 0.3rem;
}

.form-lock-notice-text p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-dim);
}

.form-lock-notice-text a {
  color: var(--gold);
  text-decoration: none;
}

.form-lock-notice-text a:hover {
  color: var(--gold-bright);
  text-decoration: underline;
}

/* --- Form Success Panel (nach erfolgreichem AJAX-Submit) --- */
.form-success {
  max-width: 640px;
  margin: 0 auto;
  padding: var(--space-2xl) var(--space-xl);
  text-align: center;
  border: 1px solid rgba(74, 122, 80, 0.3);
  border-radius: var(--radius-md);
  background:
    radial-gradient(ellipse at top, rgba(74, 122, 80, 0.15), transparent 70%),
    rgba(74, 122, 80, 0.04);
}

.form-success-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto var(--space-md);
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(74, 122, 80, 0.15);
  border: 1px solid rgba(74, 122, 80, 0.35);
  animation: form-success-pop 0.5s cubic-bezier(0.18, 0.89, 0.32, 1.28);
}

.form-success-icon i {
  font-size: 2rem;
  color: var(--success);
}

.form-success h3 {
  font-family: var(--font-heading);
  font-size: clamp(1.3rem, 2vw, 1.6rem);
  color: var(--gold-bright);
  margin: 0 0 var(--space-sm);
  letter-spacing: 0.02em;
}

.form-success p {
  color: var(--text-light);
  font-family: var(--font-body);
  line-height: 1.6;
  max-width: 42ch;
  margin: 0 auto var(--space-md);
}

.form-success-meta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  background: rgba(200, 134, 10, 0.1);
  border: 1px solid rgba(200, 134, 10, 0.25);
  color: var(--gold);
  font-family: var(--font-heading);
  font-size: 0.8rem;
  letter-spacing: 0.05em;
}

@keyframes form-success-pop {
  0%   { transform: scale(0.4); opacity: 0; }
  60%  { transform: scale(1.1); opacity: 1; }
  100% { transform: scale(1); }
}

/* --- Form Notice (Erfolg / Fehler über Formularen) --- */
.form-notice {
  max-width: 640px;
  margin: 0 auto var(--space-lg);
  padding: var(--space-md) var(--space-lg);
  border-radius: 6px;
  border-left: 4px solid;
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  font-family: var(--font-body, 'Lora', serif);
  line-height: 1.5;
}

.form-notice i {
  font-size: 1.25rem;
  margin-top: 0.15rem;
  flex-shrink: 0;
}

.form-notice--success {
  background: rgba(74, 122, 80, 0.12);
  border-left-color: var(--success);
  color: var(--parchment);
}

.form-notice--success i {
  color: var(--success);
}

.form-notice--error {
  background: rgba(155, 74, 58, 0.15);
  border-left-color: var(--danger);
  color: var(--parchment);
}

.form-notice--error i {
  color: var(--danger);
}

/* --- Menu Planner (Hochzeiten) --- */
.menu-planner {
  max-width: 800px;
  margin: 0 auto;
}

/* Mode select */
.mp-type-select {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-sm);
  margin-bottom: var(--space-lg);
}

.mp-type-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  padding: var(--space-md);
  background: var(--glass-bg);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
  text-align: center;
}

.mp-type-btn i {
  font-size: 1.3rem;
  color: var(--text-dim);
  transition: color 0.3s ease;
}

.mp-type-btn strong {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-light);
  letter-spacing: 0.03em;
}

.mp-type-btn small {
  font-size: 0.72rem;
  color: var(--text-dim);
  line-height: 1.4;
}

.mp-type-btn:hover {
  border-color: var(--gold-dim);
}

.mp-type-btn.is-active {
  border-color: var(--gold);
  background: rgba(200, 134, 10, 0.06);
  box-shadow: 0 4px 20px rgba(200, 134, 10, 0.12);
}

.mp-type-btn.is-active i {
  color: var(--gold);
}

/* Disabled dish card */
.mp-dish.is-disabled {
  opacity: 0.35;
  pointer-events: none;
}

/* Tabs */
.mp-tabs {
  display: flex;
  gap: 0;
  margin-bottom: var(--space-lg);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--glass-border);
}

.mp-tab {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.8rem var(--space-sm);
  background: var(--glass-bg);
  border: none;
  border-right: 1px solid rgba(200, 134, 10, 0.08);
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
}

.mp-tab:last-child {
  border-right: none;
}

.mp-tab-num {
  width: 1.5rem;
  height: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(200, 134, 10, 0.08);
  font-family: var(--font-heading);
  font-size: 0.65rem;
  font-weight: 600;
  color: var(--text-dim);
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.mp-tab-label {
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-dim);
  transition: color 0.3s ease;
}

.mp-tab-check {
  color: var(--gold);
  font-size: 0.6rem;
}

.mp-tab.is-active {
  background: rgba(200, 134, 10, 0.08);
}

.mp-tab.is-active .mp-tab-num {
  background: var(--gold);
  color: var(--text-dark);
}

.mp-tab.is-active .mp-tab-label {
  color: var(--gold);
}

.mp-tab:hover {
  background: rgba(200, 134, 10, 0.05);
}

/* Panel */
.mp-panel {
  min-height: 200px;
}

/* Dish grid */
.mp-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-sm);
}

.mp-grid > * {
  min-width: 0;
}

label.mp-dish {
  display: block !important;
  width: 100% !important;
  max-width: none !important;
  cursor: pointer;
  position: relative;
  margin: 0;
}

.mp-dish input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.mp-dish-inner {
  padding: var(--space-md);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
  height: 100%;
  box-sizing: border-box;
  overflow: hidden;
}

.mp-dish-inner strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-light);
  margin-bottom: 0.25rem;
  transition: color 0.3s ease;
}

.mp-dish-inner p {
  font-size: 0.82rem;
  color: var(--text-dim);
  line-height: 1.5;
  margin: 0;
}

.mp-dish:hover .mp-dish-inner {
  border-color: var(--gold-dim);
}

.mp-dish.is-selected .mp-dish-inner {
  border-color: var(--gold);
  background: rgba(200, 134, 10, 0.06);
  box-shadow: 0 4px 20px rgba(200, 134, 10, 0.1), inset 0 0 0 1px rgba(200, 134, 10, 0.1);
}

.mp-dish.is-selected .mp-dish-inner strong {
  color: var(--gold);
}

/* Summary */
.mp-summary {
  margin-top: var(--space-lg);
  padding: var(--space-md);
  background: var(--glass-bg);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  box-shadow: var(--glass-shadow);
}

.mp-summary h4 {
  font-size: 0.9rem;
  color: var(--gold);
  margin-bottom: var(--space-sm);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.mp-summary h4 i {
  font-size: 0.75rem;
}

.mp-summary-items {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.mp-summary-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.4rem 0;
  border-bottom: 1px solid rgba(200, 134, 10, 0.05);
}

.mp-summary-item:last-child {
  border-bottom: none;
}

.mp-summary-gang {
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-dim);
}

.mp-summary-dish {
  font-size: 0.88rem;
  color: var(--text-light);
}

.mp-summary-hint {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin-top: var(--space-sm);
  padding-top: var(--space-sm);
  border-top: 1px solid rgba(200, 134, 10, 0.06);
  font-size: 0.78rem;
  font-style: italic;
  color: var(--text-dim);
  line-height: 1.5;
}

.mp-summary-hint i {
  color: var(--gold-dim);
  font-size: 0.7rem;
  margin-top: 0.15rem;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .mp-tabs {
    flex-wrap: wrap;
  }

  .mp-tab {
    flex: 1 1 45%;
    border-bottom: 1px solid rgba(200, 134, 10, 0.08);
  }

  .mp-tab:nth-child(2) {
    border-right: none;
  }

  .mp-tab-label {
    font-size: 0.65rem;
  }

  .mp-grid {
    grid-template-columns: 1fr;
  }
}

/* --- Editorial Responsive --- */
@media (max-width: 768px) {
  .editorial-stats {
    flex-direction: column;
    gap: var(--space-md);
  }

  .editorial-stat-divider {
    width: 40px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold-dim), transparent);
  }

  .editorial-stat-num {
    font-size: 1.6rem;
  }

  .drop-cap {
    font-size: 3.2rem;
  }

  .editorial-lead {
    font-size: 1.05rem;
    line-height: 1.85;
  }

  .editorial-pullquote {
    padding: var(--space-sm) var(--space-md);
    font-size: 0.95rem;
  }

  .editorial-banner-features {
    gap: var(--space-xs);
  }

  .editorial-highlights {
    flex-direction: column;
  }

  .editorial-section-label {
    justify-content: center;
  }
}

/* ================================================
   LIQUID GLASS LAYER
   Medieval meets modern glassmorphism
   ================================================ */

/* --- Glass Custom Properties --- */
:root {
  --glass-bg: rgba(255, 248, 225, 0.55);
  --glass-bg-strong: rgba(255, 248, 225, 0.78);
  --glass-border: rgba(180, 117, 10, 0.22);
  --glass-border-bright: rgba(180, 117, 10, 0.35);
  --glass-highlight: rgba(212, 160, 36, 0.08);
  --glass-blur: 20px;
  --glass-blur-heavy: 32px;
  --glass-shadow: 0 8px 32px rgba(92, 51, 23, 0.14), 0 0 0 1px rgba(180, 117, 10, 0.06);
  --glass-shadow-hover: 0 16px 48px rgba(92, 51, 23, 0.22), 0 0 40px rgba(200, 134, 10, 0.10);
  --glass-shimmer: linear-gradient(
    135deg,
    transparent 0%,
    rgba(200, 134, 10, 0.04) 25%,
    rgba(200, 134, 10, 0.10) 50%,
    rgba(200, 134, 10, 0.04) 75%,
    transparent 100%
  );
}

/* --- Animated Keyframes --- */
@keyframes glassShimmer {
  0% { background-position: -200% -200%; }
  100% { background-position: 200% 200%; }
}

@keyframes borderGlow {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 1; }
}

@keyframes floatSubtle {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

@keyframes glowPulse {
  0%, 100% { box-shadow: 0 0 20px rgba(200, 134, 10, 0.05); }
  50% { box-shadow: 0 0 30px rgba(200, 134, 10, 0.12); }
}

/* --- Glass Card Upgrade --- */
.card {
  background: var(--glass-bg);
  backdrop-filter: blur(var(--glass-blur)) saturate(1.4);
  -webkit-backdrop-filter: blur(var(--glass-blur)) saturate(1.4);
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow);
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

/* Glass shimmer overlay */
.card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  background: var(--glass-shimmer);
  background-size: 200% 200%;
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
  z-index: 1;
}

.card:hover {
  border-color: var(--glass-border-bright);
}

.card:hover::after {
  opacity: 0;
}

/* Inner glass reflection on card image */
.card-img::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(ellipse at 30% 20%, rgba(232, 192, 106, 0.08) 0%, transparent 50%);
  z-index: 1;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.card:hover .card-img::before {
  opacity: 1;
}

/* --- Glass Navigation --- */
.site-header {
  backdrop-filter: blur(8px) saturate(1.1);
  -webkit-backdrop-filter: blur(8px) saturate(1.1);
}

.site-header.scrolled {
  background: var(--glass-bg-strong);
  backdrop-filter: blur(var(--glass-blur-heavy)) saturate(1.3);
  -webkit-backdrop-filter: blur(var(--glass-blur-heavy)) saturate(1.3);
  border-bottom: 1px solid var(--glass-border);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
}

/* Nav CTA glass button */
.nav-cta {
  background: rgba(200, 134, 10, 0.06);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(200, 134, 10, 0.2);
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.nav-cta:hover {
  background: var(--gold);
  box-shadow: 0 4px 20px rgba(200, 134, 10, 0.3), 0 0 40px rgba(200, 134, 10, 0.1);
}

/* --- Glass Buttons --- */
.btn-primary {
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(200, 134, 10, 0.2);
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

/* Glass light sweep on button */
.btn-primary::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -60%;
  width: 40%;
  height: 200%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.15),
    transparent
  );
  transform: skewX(-15deg);
  transition: left 0.6s ease;
  z-index: 2;
  pointer-events: none;
}

.btn-primary:hover::after {
  left: 120%;
}

.btn-primary:hover {
  box-shadow: 0 8px 30px rgba(200, 134, 10, 0.4), 0 0 60px rgba(200, 134, 10, 0.1);
  transform: translateY(-3px);
}

/* Glass outline button */
.btn-outline {
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  background: rgba(200, 134, 10, 0.04);
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.btn-outline:hover {
  box-shadow: 0 6px 24px rgba(200, 134, 10, 0.25);
  transform: translateY(-3px);
}

/* Glass ghost button */
.btn-ghost {
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.btn-ghost:hover {
  box-shadow: 0 6px 24px rgba(232, 192, 106, 0.15);
  transform: translateY(-3px);
}

/* --- Glass Badges --- */
.badge {
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 20px;
  transition: all 0.3s ease;
}

.badge--info {
  background: rgba(232, 192, 106, 0.08);
  border: 1px solid rgba(232, 192, 106, 0.15);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.badge--free {
  box-shadow: 0 2px 12px rgba(200, 134, 10, 0.25);
}

.badge--open {
  box-shadow: 0 2px 12px rgba(74, 122, 80, 0.25);
}

/* --- Glass Hours Box --- */
.hours-box {
  background: var(--glass-bg);
  backdrop-filter: blur(var(--glass-blur)) saturate(1.3);
  -webkit-backdrop-filter: blur(var(--glass-blur)) saturate(1.3);
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow);
  position: relative;
  overflow: hidden;
}

/* Top highlight reflection */
.hours-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(232, 192, 106, 0.3), transparent);
}

/* --- Glass Split Image Frame --- */
.split-img::before {
  border: 1px solid var(--glass-border-bright);
  box-shadow: inset 0 0 30px rgba(200, 134, 10, 0.05);
}

.split-img::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  background: linear-gradient(
    160deg,
    rgba(232, 192, 106, 0.06) 0%,
    transparent 30%,
    transparent 70%,
    rgba(200, 134, 10, 0.04) 100%
  );
  pointer-events: none;
  z-index: 1;
}

/* --- Glass Section Backgrounds --- */
.section-dark {
  position: relative;
}

.section-dark::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--glass-border), transparent);
  pointer-events: none;
}

/* --- Glass Hero Enhancement --- */
.hero-content {
  animation: fadeUp 1.2s ease-out both;
}

.hero-content h1 {
  text-shadow:
    0 0 60px rgba(200, 134, 10, 0.2),
    0 0 120px rgba(200, 134, 10, 0.08),
    0 4px 12px rgba(0, 0, 0, 0.5);
}

/* (Frosted glass panel removed — hero text sits directly on the image overlay) */

/* Solid dark pill — readable on both image and parchment fade */
.hero-scroll {
  background: rgba(20, 15, 12, 0.82);
  padding: 0.6rem 1.2rem;
  border-radius: 20px;
  border: 1px solid rgba(200, 134, 10, 0.35);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.25);
}

/* --- Banner atmospheric accent (subtle gold glow, no hard bands) --- */
.banner::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 50% 50%, rgba(200, 134, 10, 0.08) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
  mix-blend-mode: overlay;
}

.banner .container {
  position: relative;
  z-index: 1;
}

/* --- Glass Form Inputs --- */
.form-field input,
.form-field textarea,
.form-field select {
  background: rgba(200, 134, 10, 0.03);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(200, 134, 10, 0.1);
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(200, 134, 10, 0.08), 0 0 20px rgba(200, 134, 10, 0.06);
}

/* Glass form container */
.form-main {
  background: var(--glass-bg);
  backdrop-filter: blur(var(--glass-blur)) saturate(1.3);
  -webkit-backdrop-filter: blur(var(--glass-blur)) saturate(1.3);
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow);
  position: relative;
  overflow: hidden;
}

.form-main::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(232, 192, 106, 0.25), transparent);
  pointer-events: none;
}

/* Glass sidebar blocks */
.form-sidebar-block {
  background: var(--glass-bg);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow);
}

/* --- Glass Cookie Banner --- */
.cookie-banner {
  background: var(--glass-bg-strong);
  backdrop-filter: blur(var(--glass-blur-heavy)) saturate(1.4);
  -webkit-backdrop-filter: blur(var(--glass-blur-heavy)) saturate(1.4);
  border-top: 1px solid var(--glass-border);
  box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.3);
}

/* --- Glass Modal --- */
.modal-content {
  background: var(--glass-bg-strong);
  backdrop-filter: blur(var(--glass-blur-heavy)) saturate(1.3);
  -webkit-backdrop-filter: blur(var(--glass-blur-heavy)) saturate(1.3);
  border: 1px solid var(--glass-border-bright);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.5), 0 0 60px rgba(200, 134, 10, 0.05);
}

.modal-overlay {
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

/* --- Glass Package Cards --- */
.package-card {
  background: var(--glass-bg);
  backdrop-filter: blur(var(--glass-blur)) saturate(1.3);
  -webkit-backdrop-filter: blur(var(--glass-blur)) saturate(1.3);
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow);
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  position: relative;
  overflow: hidden;
}

/* Top highlight */
.package-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(232, 192, 106, 0.2), transparent);
  pointer-events: none;
}

.package-card:hover {
  border-color: var(--glass-border-bright);
  box-shadow: var(--glass-shadow-hover);
  transform: translateY(-4px);
}

.package-card--highlight {
  border-color: rgba(200, 134, 10, 0.3);
  animation: glowPulse 4s ease-in-out infinite;
}

/* --- Glass Accordion --- */
.accordion {
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  transition: all 0.3s ease;
}

.accordion:hover {
  border-color: var(--glass-border-bright);
}

.accordion-trigger {
  background: rgba(200, 134, 10, 0.02);
}

/* --- Glass Event Cards --- */
.event-card {
  background: var(--glass-bg);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow);
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.event-card:hover {
  border-color: var(--glass-border-bright);
  transform: translateY(-3px);
  box-shadow: var(--glass-shadow-hover);
}

/* --- Glass Travel Cards --- */
.travel-card {
  background: var(--glass-bg);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow);
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.travel-card:hover {
  border-color: var(--glass-border-bright);
  transform: translateY(-4px);
  box-shadow: var(--glass-shadow-hover);
}

/* --- Glass Info Cards --- */
.info-card {
  background: var(--glass-bg);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow);
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.info-card:hover {
  border-color: var(--glass-border-bright);
  transform: translateY(-4px);
  box-shadow: var(--glass-shadow-hover);
}

/* --- Glass GPS Box --- */
.gps-box {
  background: var(--glass-bg);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow);
}

/* --- Glass Icon Circles --- */
.travel-card-icon,
.info-card-icon,
.gps-box-icon,
.accessibility-icon,
.artist-icon,
.trail-icon,
.form-sidebar-icon {
  background: rgba(200, 134, 10, 0.08);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(200, 134, 10, 0.12);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

/* --- Glass Trail Items --- */
.trail-item {
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.trail-item:hover {
  border-color: var(--glass-border-bright);
  transform: translateX(4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

/* --- Glass Menu Card --- */
.menu-card {
  background: var(--glass-bg);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow);
  position: relative;
  overflow: hidden;
}

.menu-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(232, 192, 106, 0.2), transparent);
  pointer-events: none;
}

/* --- Glass Hours Table Wrap --- */
.hours-table-wrap {
  background: var(--glass-bg);
  backdrop-filter: blur(var(--glass-blur)) saturate(1.3);
  -webkit-backdrop-filter: blur(var(--glass-blur)) saturate(1.3);
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow);
}

/* --- Glass Artist Cards --- */
.artist-card {
  background: var(--glass-bg);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow);
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.artist-card:hover {
  border-color: var(--glass-border-bright);
  transform: translateY(-4px);
  box-shadow: var(--glass-shadow-hover);
}

/* --- Glass Tags --- */
.tag {
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  background: rgba(200, 134, 10, 0.04);
  border: 1px solid var(--glass-border);
  transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
}

.tag:hover {
  border-color: var(--glass-border-bright);
  background: rgba(200, 134, 10, 0.08);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transform: translateY(-2px);
}

/* --- Glass Program Items --- */
.program-item {
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.program-item:hover {
  border-color: var(--glass-border-bright);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

/* --- Glass Menu Filter Buttons --- */
.menu-filter-btn {
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  background: rgba(200, 134, 10, 0.03);
  transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
}

.menu-filter-btn.active {
  background: rgba(200, 134, 10, 0.08);
  box-shadow: 0 4px 16px rgba(200, 134, 10, 0.15);
}

/* --- Glass Footer CTA --- */
.footer-cta {
  background: var(--glass-bg);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
}

/* --- Glass Ornament Enhancement --- */
.ornament span {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(200, 134, 10, 0.4), transparent);
}

.ornament i {
  filter: drop-shadow(0 0 6px rgba(200, 134, 10, 0.3));
}

/* --- Glass Sponsor Items --- */
.sponsor-item {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(200, 134, 10, 0.08);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.sponsor-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}

/* --- Glass Gallery Items --- */
.gallery-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 40%;
  background: linear-gradient(to bottom, rgba(232, 192, 106, 0.05), transparent);
  z-index: 1;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.gallery-item:hover::before {
  opacity: 1;
}

/* --- Glass Legal Address --- */
.legal-address {
  background: var(--glass-bg);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border: 1px solid var(--glass-border);
}

/* --- Glass Partner Items --- */
.partner-item {
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
}

.partner-item:hover {
  transform: translateY(-2px);
  border-color: var(--glass-border-bright);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

/* --- Glass Radio Cards --- */
.radio-card-inner {
  background: rgba(200, 134, 10, 0.02);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid var(--glass-border);
  transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
}

.radio-card input:checked + .radio-card-inner {
  border-color: var(--gold);
  background: rgba(200, 134, 10, 0.06);
  box-shadow: 0 4px 16px rgba(200, 134, 10, 0.12);
}

/* --- Subtle Intro Text Glow --- */
.intro-text {
  text-shadow: 0 0 40px rgba(200, 134, 10, 0.04);
}

/* --- Glass Form Group --- */
.form-group {
  background: rgba(200, 134, 10, 0.02);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid var(--glass-border);
}

/* --- Glass Allergen Note --- */
.menu-allergen {
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
}

/* --- Glass Form Note --- */
.form-note {
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
}

/* --- Enhanced Scrollbar --- */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--stone-darkest);
}

::-webkit-scrollbar-thumb {
  background: rgba(200, 134, 10, 0.2);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: rgba(200, 134, 10, 0.35);
}

/* --- Mobile Menu Glass --- */
@media (max-width: 1024px) {
  .nav-menu {
    background: rgba(250, 244, 227, 0.98) !important;
    backdrop-filter: blur(var(--glass-blur-heavy)) saturate(1.4);
    -webkit-backdrop-filter: blur(var(--glass-blur-heavy)) saturate(1.4);
  }
}

@media (max-width: 768px) {
  /* Keine Hover-Transforms auf Touch-Geräten */
  .card:hover,
  .package-card:hover,
  .travel-card:hover,
  .info-card:hover,
  .artist-card:hover {
    transform: none;
  }
}
