/* ============================================
   GEMMA Vienna City Market – Premium UX
   Responsive: Mobile · Tablet · Desktop
   ============================================ */

:root {
  /* Brand */
  --color-primary: #b84535;
  --color-primary-dark: #9a3a2c;
  --color-primary-light: #d45a48;
  --color-accent: #c9a962;
  
  /* Neutrals */
  --color-bg: #faf8f5;
  --color-bg-dark: #1a1816;
  --color-text: #2d2926;
  --color-text-muted: #6b6158;
  --color-white: #fff;
  
  /* Typography */
  --font-heading: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Plus Jakarta Sans', system-ui, sans-serif;
  
  /* Spacing */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 6rem;
  
  /* Layout */
  --container-max: 72rem;
  --header-height: 4.5rem;
  --radius: 0.5rem;
  --radius-lg: 1rem;
  --shadow: 0 4px 24px rgba(26, 24, 22, 0.08);
  --shadow-lg: 0 12px 48px rgba(26, 24, 22, 0.12);
  
  /* Motion */
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
  --duration-fast: 0.2s;
  --duration: 0.4s;
  --duration-slow: 0.6s;
  --duration-slower: 1s;
}

@media (prefers-reduced-motion: reduce) {
  :root {
    --duration-fast: 0.01ms;
    --duration: 0.01ms;
    --duration-slow: 0.01ms;
    --duration-slower: 0.01ms;
  }
  .hero-slide.active { animation: none; }
  .hero-overlay { animation: none; }
  .hero-slide { transition: opacity 0.3s ease; }
  .animate-in { filter: none; }
  .reveal-stagger > * { transition-duration: 0.01ms; }
  main { opacity: 1; transition: none; }
  body.loaded main { opacity: 1; }
}

/* Reset & Base */
*, *::before, *::after { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--color-text);
  background: var(--color-bg);
  overflow-x: hidden;
}
body.loaded main { opacity: 1; }
main {
  opacity: 0;
  transition: opacity var(--duration-slow) var(--ease-out);
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* Accessibility */
.skip-link {
  position: absolute;
  top: -100%;
  left: var(--space-md);
  z-index: 10000;
  padding: var(--space-md) var(--space-lg);
  background: var(--color-primary);
  color: var(--color-white);
  font-weight: 600;
  border-radius: var(--radius);
  transition: top var(--duration-fast);
}
.skip-link:focus {
  top: var(--space-md);
  outline: 2px solid var(--color-white);
  outline-offset: 2px;
}
.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}

/* Container */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--space-lg);
}
@media (min-width: 768px) {
  .container { padding: 0 var(--space-2xl); }
}
@media (min-width: 1024px) {
  .container { padding: 0 var(--space-3xl); }
}

/* ========== HEADER (responsive: Mobile | Tablet | Desktop) ========== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-height);
  min-height: var(--header-height);
  background: rgba(250, 248, 245, 0.97);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(45, 41, 38, 0.08);
  transition: background 0.35s ease, box-shadow var(--duration), border-color 0.35s ease;
  isolation: isolate;
}
.site-header.scrolled {
  background: rgba(250, 248, 245, 0.98);
  box-shadow: var(--shadow);
  border-bottom-color: rgba(45, 41, 38, 0.1);
}

.site-header__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--space-lg);
  height: 100%;
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-lg);
  box-sizing: border-box;
}

.site-header__logo {
  display: block;
  flex-shrink: 0;
}
.site-header__logo img {
  height: 2.25rem;
  width: auto;
  display: block;
}

.site-header__burger {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  width: 2.75rem;
  height: 2.75rem;
  padding: 0;
  border: none;
  background: transparent;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background var(--duration-fast);
  -webkit-tap-highlight-color: transparent;
}
.site-header__burger:hover {
  background: rgba(45, 41, 38, 0.06);
}
.site-header__burger-bar {
  display: block;
  width: 1.25rem;
  height: 2px;
  background: var(--color-text);
  border-radius: 2px;
  transition: transform var(--duration) var(--ease-out), opacity var(--duration-fast);
}
.site-header__burger[aria-expanded="true"] .site-header__burger-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.site-header__burger[aria-expanded="true"] .site-header__burger-bar:nth-child(2) {
  opacity: 0;
}
.site-header__burger[aria-expanded="true"] .site-header__burger-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.site-header__nav {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(100%, 20rem);
  max-width: 100%;
  background: var(--color-bg);
  padding: calc(var(--header-height) + var(--space-xl)) var(--space-xl) var(--space-2xl);
  transform: translateX(100%);
  visibility: hidden;
  transition: transform var(--duration-slow) var(--ease-out), visibility var(--duration);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  box-shadow: -8px 0 32px rgba(26, 24, 22, 0.12);
  z-index: 999;
}
.site-header__nav.is-open {
  transform: translateX(0);
  visibility: visible;
}

.site-header__menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}
.site-header__menu--main {
  font-size: 1.125rem;
  font-weight: 500;
  gap: var(--space-lg);
}
.site-header__menu--legal {
  margin-top: var(--space-2xl);
  padding-top: var(--space-xl);
  border-top: 1px solid rgba(45, 41, 38, 0.12);
  font-size: 0.9375rem;
  color: var(--color-text-muted);
}
.site-header__menu--legal a {
  color: inherit;
}
.site-header__nav a {
  display: block;
  padding: var(--space-sm) 0;
  color: var(--color-text);
  text-decoration: none;
  transition: color var(--duration) var(--ease-out);
}
.site-header__nav a:hover,
.site-header__nav a:focus-visible {
  color: var(--color-primary);
}

.site-header__social {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  margin-top: var(--space-xl);
  padding-top: var(--space-xl);
  border-top: 1px solid rgba(45, 41, 38, 0.1);
}
.site-header__icon {
  width: 1.25rem;
  height: 1.25rem;
  transition: transform var(--duration-fast);
}
.site-header__social-link:hover .site-header__icon {
  transform: scale(1.1);
}
.site-header__social-link--instagram .site-header__icon { color: #E1306C; }
.site-header__social-link--tiktok .site-header__icon { color: #000; }
.site-header__social-link--facebook .site-header__icon { color: #1877F2; }
.site-header__social-link--threads .site-header__icon { color: #000; }

@media (min-width: 768px) and (max-width: 1023px) {
  .site-header__nav {
    width: min(100%, 22rem);
  }
}

@media (min-width: 1024px) {
  .site-header__burger {
    display: none;
  }
  .site-header__nav {
    position: static;
    width: auto;
    max-width: none;
    padding: 0;
    background: none;
    transform: none;
    visibility: visible;
    overflow: visible;
    box-shadow: none;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: var(--space-lg);
  }
  .site-header__menu--main,
  .site-header__menu--legal {
    flex-direction: row;
    margin-top: 0;
    padding-top: 0;
    border-top: none;
    gap: var(--space-md);
    font-size: 0.9375rem;
  }
  .site-header__menu--legal {
    gap: var(--space-lg);
  }
  .site-header__menu--legal::before {
    content: '';
    width: 1px;
    height: 1em;
    background: rgba(45, 41, 38, 0.2);
    margin-right: var(--space-sm);
  }
  .site-header__social {
    margin-top: 0;
    padding-top: 0;
    border-top: none;
    margin-left: var(--space-sm);
  }
  .site-header__nav a {
    padding: var(--space-sm) 0;
  }
  .site-header__logo img {
    height: 2.5rem;
  }
}

/* Seiten Impressum/Datenschutz/Admin: gleiche Header-Basis (Klassen .header) */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-height);
  min-height: var(--header-height);
  background: rgba(250, 248, 245, 0.98);
  border-bottom: 1px solid rgba(45, 41, 38, 0.08);
}
.header-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--space-lg);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header .logo img { height: 2.25rem; width: auto; display: block; }
@media (min-width: 1024px) {
  .header .logo img { height: 2.5rem; }
}
.header .nav-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  padding: 0;
  border: none;
  background: transparent;
  border-radius: var(--radius);
  cursor: pointer;
}
.header .nav {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(100%, 20rem);
  background: var(--color-bg);
  padding: calc(var(--header-height) + var(--space-xl)) var(--space-xl);
  transform: translateX(100%);
  visibility: hidden;
  transition: transform var(--duration-slow) var(--ease-out), visibility var(--duration);
  overflow-y: auto;
  z-index: 999;
  box-shadow: -8px 0 32px rgba(26, 24, 22, 0.12);
}
.header .nav.is-open {
  transform: translateX(0);
  visibility: visible;
}
.header .nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}
.header .nav a {
  display: block;
  padding: var(--space-sm) 0;
  color: var(--color-text);
  text-decoration: none;
}
.header .nav a:hover { color: var(--color-primary); }
@media (min-width: 1024px) {
  .header .nav-toggle { display: none; }
  .header .nav {
    position: static;
    width: auto;
    padding: 0;
    background: none;
    transform: none;
    visibility: visible;
    box-shadow: none;
  }
  .header .nav ul { flex-direction: row; gap: var(--space-md); }
}

/* ========== HERO ========== */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: calc(var(--header-height) + var(--space-2xl)) var(--space-lg) var(--space-2xl);
  overflow: hidden;
}

.hero-slider {
  position: absolute;
  inset: 0;
}
.hero-slide {
  position: absolute;
  inset: 0;
  background: var(--bg) center/cover no-repeat;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 0.85s ease-out, transform 0.85s ease-out;
  will-change: opacity;
}
.hero-slide.active {
  opacity: 1;
  transform: scale(1);
  z-index: 1;
  transition: opacity 0.85s ease-out;
  animation: kenburns 10s var(--ease-in-out) infinite;
}
@keyframes kenburns {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(26,24,22,0.35) 0%, rgba(26,24,22,0.6) 50%, rgba(26,24,22,0.8) 100%);
  z-index: 2;
  animation: overlay-shift 20s var(--ease-in-out) infinite;
}
@keyframes overlay-shift {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.95; }
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  color: var(--color-white);
  max-width: 42rem;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.hero-label {
  font-size: 0.875rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  opacity: 0.92;
  margin-bottom: var(--space-sm);
  color: var(--color-white);
}
.hero-label.animate-in { transition: opacity 0.8s var(--ease-out) 0.15s, transform 0.8s var(--ease-out) 0.15s, filter 0.8s ease 0.15s; }

.hero-address {
  font-size: 1rem;
  letter-spacing: 0.08em;
  opacity: 0.9;
  margin: 0 0 var(--space-lg);
  color: var(--color-white);
}
.hero-address.animate-in { transition: opacity 0.8s var(--ease-out) 0.25s, transform 0.8s var(--ease-out) 0.25s; }

/* Logo: größer, nicht abgeschnitten (clip etwas lockerer), Hover = Herzschlag-Animation */
.hero-logo-wrap {
  margin: 0 auto var(--space-xl);
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: default;
  overflow: visible;
  background: transparent;
  border: none;
  outline: none;
  box-shadow: none;
  border-radius: 0;
}
.hero-logo-wrap:hover {
  background: transparent;
  border: none;
  box-shadow: none;
}
.hero-logo {
  display: block;
  max-width: min(420px, 65vw);
  height: auto;
  /* Linker Bereich (Logo/Mund) sichtbar, ohne Abschnitt – ~28 % Breite */
  clip-path: inset(0 72% 0 0);
  -webkit-clip-path: inset(0 72% 0 0);
  transition: filter 0.35s var(--ease-out);
  filter: drop-shadow(0 4px 24px rgba(0, 0, 0, 0.4));
  background: transparent;
  border: none;
  outline: none;
}
.hero-logo-wrap:hover .hero-logo {
  animation: hero-logo-heartbeat 0.9s ease-in-out infinite;
  filter: drop-shadow(0 8px 36px rgba(0, 0, 0, 0.45)) brightness(1.06);
  border: none;
  outline: none;
}
@keyframes hero-logo-heartbeat {
  0%, 100% { transform: scale(1); }
  14% { transform: scale(1.08); }
  28% { transform: scale(1); }
  42% { transform: scale(1.06); }
  56% { transform: scale(1); }
}
@media (min-width: 768px) {
  .hero-logo { max-width: min(520px, 48vw); }
}
@media (prefers-reduced-motion: reduce) {
  .hero-logo-wrap:hover .hero-logo { animation: none; transform: scale(1.02); }
}
.hero-subtitle {
  font-size: 1.125rem;
  opacity: 0.95;
  margin-bottom: var(--space-xl);
}
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  justify-content: center;
  margin-bottom: var(--space-xl);
}
.badge {
  padding: var(--space-sm) var(--space-md);
  background: rgba(255,255,255,0.15);
  border-radius: 2rem;
  font-size: 0.875rem;
  backdrop-filter: blur(8px);
}
.badge-winter {
  background: var(--color-primary);
  color: var(--color-white);
}
.countdown-timer {
  display: inline-block;
  font-variant-numeric: tabular-nums;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 1.75rem;
  font-size: 0.9375rem;
  font-weight: 600;
  border-radius: var(--radius);
  transition: background var(--duration) var(--ease-out), color var(--duration), transform var(--duration) var(--ease-out), box-shadow var(--duration);
}
.btn:active { transform: translateY(0) scale(0.98); }
.btn:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 3px;
}
.btn-hero {
  background: var(--color-white);
  color: var(--color-text);
}
.btn-hero:hover {
  background: var(--color-primary);
  color: var(--color-white);
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}
.btn-hero:active { transform: translateY(-1px) scale(0.98); }
.btn-primary {
  background: var(--color-primary);
  color: var(--color-white);
  border: 2px solid var(--color-primary);
}
.btn-primary:hover {
  background: var(--color-primary-dark);
  border-color: var(--color-primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(184, 69, 53, 0.3);
}
.btn-outline {
  background: transparent;
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
}
.btn-outline:hover {
  background: var(--color-primary);
  color: var(--color-white);
  transform: translateY(-2px);
}
.btn-sm { padding: 0.5rem 1rem; font-size: 0.875rem; }

/* Back to Top */
.back-to-top {
  position: fixed;
  bottom: var(--space-xl);
  right: var(--space-xl);
  z-index: 800;
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-primary);
  color: var(--color-white);
  border-radius: 50%;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity var(--duration) var(--ease-out), transform var(--duration) var(--ease-out), background var(--duration), box-shadow var(--duration);
}
.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.back-to-top:hover {
  background: var(--color-primary-dark);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(184, 69, 53, 0.4);
}
.back-to-top:focus-visible {
  outline: 2px solid var(--color-white);
  outline-offset: 3px;
}
.back-to-top svg {
  width: 1.25rem;
  height: 1.25rem;
  transform: rotate(-90deg);
}

.hero-slider-dots {
  position: absolute;
  bottom: var(--space-2xl);
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  gap: var(--space-sm);
}
.hero-slider-dots .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.35);
  cursor: pointer;
  transition: background var(--duration) var(--ease-out), transform var(--duration) var(--ease-out), box-shadow var(--duration);
}
.hero-slider-dots .dot:hover {
  background: rgba(255,255,255,0.7);
  transform: scale(1.15);
}
.hero-slider-dots .dot.active {
  background: var(--color-white);
  transform: scale(1.3);
  box-shadow: 0 0 0 2px rgba(255,255,255,0.3);
}
.hero-slider-dots .dot:focus-visible {
  outline: 2px solid var(--color-white);
  outline-offset: 3px;
  border-radius: 50%;
}

.hero-credit {
  position: absolute;
  bottom: var(--space-md);
  right: var(--space-lg);
  z-index: 3;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.7);
}

/* Animate-in (Hero) – gestaffelt mit weichem Easing */
.animate-in {
  opacity: 0;
  transform: translateY(24px);
  filter: blur(2px);
}
.animate-in.visible {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}
.hero-logo-wrap.animate-in { transition: opacity 0.9s var(--ease-out) 0.2s, transform 0.9s var(--ease-out) 0.2s, filter 0.9s ease 0.2s; }
.hero-subtitle.animate-in { transition: opacity 0.8s var(--ease-out) 0.45s, transform 0.8s var(--ease-out) 0.45s, filter 0.8s ease 0.45s; }
.hero-badges.animate-in { transition: opacity 0.8s var(--ease-out) 0.55s, transform 0.8s var(--ease-out) 0.55s, filter 0.8s ease 0.55s; }
.btn-hero.animate-in { transition: opacity 0.8s var(--ease-out) 0.7s, transform 0.8s var(--ease-out) 0.7s, filter 0.8s ease 0.7s; }

/* ========== SECTIONS ========== */
.section {
  padding: var(--space-4xl) 0;
}
@media (min-width: 768px) {
  .section { padding: var(--space-4xl) 0; }
}
.section-head {
  text-align: center;
  margin-bottom: var(--space-3xl);
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
}
.section-head h2 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 700;
  margin: 0 0 var(--space-sm);
  color: var(--color-text);
}
.section-head p {
  margin: 0;
  color: var(--color-text-muted);
  font-size: 1.0625rem;
}

/* Reveal (scroll animation) */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal:nth-child(1) { transition-delay: 0s; }
.reveal:nth-child(2) { transition-delay: 0.06s; }
.reveal:nth-child(3) { transition-delay: 0.12s; }
.reveal:nth-child(4) { transition-delay: 0.18s; }

/* Staggered Reveal – Kinder nacheinander */
.reveal-stagger > * {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s var(--ease-out), transform 0.65s var(--ease-out);
}
.reveal-stagger.visible > *,
.reveal-stagger.visible .reveal-child {
  opacity: 1;
  transform: translateY(0);
}
.reveal-stagger > *:nth-child(1) { transition-delay: 0s; }
.reveal-stagger > *:nth-child(2) { transition-delay: 0.08s; }
.reveal-stagger > *:nth-child(3) { transition-delay: 0.16s; }
.reveal-stagger > *:nth-child(4) { transition-delay: 0.24s; }
.reveal-stagger > *:nth-child(5) { transition-delay: 0.32s; }
.reveal-stagger > *:nth-child(6) { transition-delay: 0.4s; }
.reveal-stagger > *:nth-child(7) { transition-delay: 0.48s; }
.reveal-stagger > *:nth-child(8) { transition-delay: 0.56s; }
.reveal-stagger > *:nth-child(9) { transition-delay: 0.64s; }
.reveal-stagger > *:nth-child(10) { transition-delay: 0.72s; }

/* ========== ABOUT ========== */
.section-about { background: var(--color-white); }
.about-grid {
  display: grid;
  gap: var(--space-2xl);
  align-items: center;
}
@media (min-width: 768px) {
  .about-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
  }
}
.about-visual {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-visual img {
  width: 100%;
  height: auto;
  object-fit: cover;
  transform: scale(1.03);
  transition: transform 1.2s var(--ease-out);
}
.reveal.visible .about-visual img {
  transform: scale(1);
}
.about-text h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 700;
  margin: 0 0 var(--space-lg);
  color: var(--color-text);
}
.about-text blockquote {
  margin: 0 0 var(--space-lg);
  padding: 0;
  border: none;
}
.about-text blockquote p {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-style: italic;
  line-height: 1.5;
  color: var(--color-text);
}
@media (min-width: 768px) {
  .about-text blockquote p { font-size: 1.375rem; }
}

/* ========== SOCIAL ========== */
.section-social {
  background: linear-gradient(135deg, var(--color-bg-dark) 0%, #2d2926 100%);
  color: var(--color-white);
}
.section-social .section-head p,
.social-intro { color: rgba(255,255,255,0.8); }
.social-block h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  margin: 0 0 var(--space-md);
}
.social-intro {
  margin: 0 0 var(--space-2xl);
  max-width: 32rem;
  font-size: 1.0625rem;
}
.social-links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
}
@media (min-width: 480px) {
  .social-links { grid-template-columns: repeat(4, 1fr); }
}
.social-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-xl);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  color: var(--color-white);
  font-weight: 500;
  transition: background var(--duration-fast), transform var(--duration-fast), border-color var(--duration-fast);
}
.social-card:hover {
  background: rgba(255,255,255,0.12);
  transform: translateY(-5px);
  border-color: rgba(255,255,255,0.25);
  box-shadow: 0 12px 32px rgba(0,0,0,0.2);
}
.social-card:focus-visible {
  outline: 2px solid rgba(255,255,255,0.6);
  outline-offset: 3px;
}
.social-icon {
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: transform var(--duration) var(--ease-bounce);
}
.social-card:hover .social-icon { transform: scale(1.15); }
.social-icon svg { width: 1.5rem; height: 1.5rem; }
.social-icon.instagram { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.social-icon.tiktok { background: #000; }
.social-icon.facebook { background: #1877f2; }
.social-icon.threads { background: #000; }
.social-name { font-size: 0.9375rem; }

/* ========== EVENTS (Kalender + Liste + Ich bin dabei) ========== */
.section-events { background: var(--color-bg); }
.events-layout {
  display: grid;
  gap: var(--space-2xl);
  margin-bottom: var(--space-2xl);
}
@media (min-width: 900px) {
  .events-layout {
    grid-template-columns: 320px 1fr;
    align-items: start;
  }
}
.events-calendar-wrap {
  position: sticky;
  top: calc(var(--header-height) + var(--space-lg));
}
.events-calendar {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow);
}
.calendar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--space-md);
  gap: var(--space-sm);
}
.calendar-prev,
.calendar-next {
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  background: var(--color-bg);
  color: var(--color-text);
  font-size: 1.25rem;
  transition: background var(--duration-fast), color var(--duration-fast);
}
.calendar-prev:hover,
.calendar-next:hover {
  background: var(--color-primary);
  color: var(--color-white);
}
.calendar-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0;
}
.calendar-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
  margin-bottom: var(--space-xs);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--color-text-muted);
  text-align: center;
}
.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
}
.calendar-day {
  aspect-ratio: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  font-size: 0.875rem;
  cursor: default;
  position: relative;
  transition: background var(--duration-fast);
}
.calendar-day--empty { visibility: hidden; }
.calendar-day--has-events {
  cursor: pointer;
  font-weight: 600;
}
.calendar-day--has-events:hover {
  background: rgba(184, 69, 53, 0.12);
}
.calendar-day-dot {
  position: absolute;
  bottom: 4px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--color-primary);
}
.calendar-hint {
  margin: var(--space-md) 0 0;
  font-size: 0.8125rem;
  color: var(--color-text-muted);
}
.events-list-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
}
.events-list-title {
  font-family: var(--font-heading);
  font-size: 1.375rem;
  font-weight: 700;
  margin: 0;
}
.events-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
}
.events-empty {
  color: var(--color-text-muted);
  font-style: italic;
  margin: 0;
}
.events-admin-link {
  margin: 0;
  font-size: 0.875rem;
}
.events-admin-link a {
  color: var(--color-primary);
  text-decoration: underline;
}

.events-grid { display: grid; gap: var(--space-xl); }
@media (min-width: 768px) { .events-grid { grid-template-columns: repeat(2, 1fr); } }
.event-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: box-shadow var(--duration) var(--ease-out), transform var(--duration) var(--ease-out);
}
.event-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
}
.event-image { aspect-ratio: 16/10; overflow: hidden; }
.event-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-out);
}
.event-card:hover .event-image img { transform: scale(1.06); }
.event-body { padding: var(--space-xl); }
.event-date-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: var(--space-sm);
}
.event-body h3.event-title {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  margin: 0 0 var(--space-sm);
}
.event-meta, .event-body p {
  margin: 0 0 var(--space-md);
  color: var(--color-text-muted);
  font-size: 0.9375rem;
}
.event-desc {
  margin-bottom: var(--space-lg) !important;
  font-size: 0.9375rem;
  line-height: 1.5;
}
.event-attendees { margin-top: var(--space-md); padding-top: var(--space-md); border-top: 1px solid rgba(0,0,0,0.06); }
.btn-dabei {
  background: var(--color-primary);
  color: var(--color-white);
  border: none;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background var(--duration-fast), transform var(--duration-fast);
}
.btn-dabei:hover { background: var(--color-primary-dark); transform: scale(1.02); }
.event-attendees-list {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  margin-top: var(--space-sm);
  min-height: 24px;
}
.attendee {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8125rem;
  color: var(--color-text-muted);
}
.attendee img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
}
.attendee-name { max-width: 100px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.event-attendees-count {
  margin: var(--space-sm) 0 0 !important;
  font-size: 0.8125rem;
  color: var(--color-text-muted);
}
.event-card-cta .event-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 200px;
}
.event-card-cta .btn { margin-top: var(--space-md); align-self: flex-start; }

/* Modal: Ich bin dabei */
.dabei-modal {
  position: fixed;
  inset: 0;
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-lg);
}
.dabei-modal[hidden] { display: none; }
.dabei-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
}
.dabei-modal-box {
  position: relative;
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  max-width: 400px;
  width: 100%;
  box-shadow: var(--shadow-lg);
}
.dabei-modal-box h3 { margin: 0 0 var(--space-sm); font-size: 1.25rem; }
.dabei-modal-hint { margin: 0 0 var(--space-lg); font-size: 0.9375rem; color: var(--color-text-muted); }
.dabei-modal-box label { display: block; font-weight: 500; margin-bottom: 0.25rem; }
.dabei-modal-box input[type="text"],
.dabei-modal-box input[type="url"] {
  width: 100%;
  padding: 0.625rem 0.75rem;
  margin-bottom: var(--space-md);
  border: 1px solid rgba(0,0,0,0.15);
  border-radius: var(--radius);
  font-family: inherit;
}
.dabei-modal-actions { display: flex; gap: var(--space-sm); margin-top: var(--space-md); }

/* ========== GALLERY ========== */
.section-gallery { background: var(--color-white); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
}
@media (min-width: 640px) {
  .gallery-grid { grid-template-columns: repeat(3, 1fr); gap: var(--space-lg); }
}
@media (min-width: 1024px) {
  .gallery-grid { grid-template-columns: repeat(4, 1fr); gap: var(--space-xl); }
}
.gallery-item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: box-shadow var(--duration) var(--ease-out), transform var(--duration) var(--ease-out);
}
.gallery-item:hover {
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
  transform: translateY(-4px);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease-out);
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item:focus-within img { transform: scale(1.03); }
.gallery-credit {
  text-align: center;
  font-size: 0.875rem;
  color: var(--color-text-muted);
  margin: var(--space-2xl) 0 0;
}

/* Instagram – volle Breite, Klick weitergeleitet zu Instagram */
.section-instagram-fullwidth {
  width: 100%;
  max-width: 100vw;
  padding: 0;
}
.instagram-fullwidth-banner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.75rem 1.5rem;
  width: 100%;
  padding: var(--space-xl) var(--space-lg);
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  color: #fff;
  text-decoration: none;
  transition: filter var(--duration-fast), opacity var(--duration-fast);
}
.instagram-fullwidth-banner:hover { color: #fff; filter: brightness(1.08); }
.instagram-fullwidth-banner:focus-visible { outline: 2px solid #fff; outline-offset: 4px; }
.instagram-fullwidth-title { font-size: 1.25rem; font-weight: 700; }
.instagram-fullwidth-handle { font-size: 1.125rem; letter-spacing: 0.02em; opacity: 0.95; }
.instagram-fullwidth-cta { font-size: 0.9375rem; opacity: 0.9; }

/* ========== NEWSLETTER ========== */
/* ========== RESERVIEREN ========== */
.section-reservieren { background: var(--color-white); }
.reservieren-layout {
  display: grid;
  gap: var(--space-2xl);
  max-width: 56rem;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .reservieren-layout {
    grid-template-columns: 1fr 280px;
    align-items: start;
  }
}
.reservieren-form-wrap {
  background: var(--color-bg);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl);
  box-shadow: var(--shadow);
}
.reservieren-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
}
@media (max-width: 600px) {
  .reservieren-form .form-row { grid-template-columns: 1fr; }
}
.reservieren-form .form-group {
  margin-bottom: var(--space-lg);
}
.reservieren-form label {
  display: block;
  font-weight: 600;
  font-size: 0.9375rem;
  margin-bottom: var(--space-xs);
  color: var(--color-text);
}
.reservieren-form input,
.reservieren-form select,
.reservieren-form textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid rgba(45, 41, 38, 0.15);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: border-color var(--duration-fast), box-shadow var(--duration-fast);
}
.reservieren-form input:focus,
.reservieren-form select:focus,
.reservieren-form textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(184, 69, 53, 0.12);
}
.reservieren-form textarea {
  resize: vertical;
  min-height: 100px;
}
.reservieren-datenschutz {
  margin: 0 0 var(--space-lg);
  font-size: 0.875rem;
  color: var(--color-text-muted);
}
.reservieren-datenschutz a { color: var(--color-primary); text-decoration: underline; }
.btn-reservieren { min-width: 200px; }
.reservieren-message {
  margin-top: var(--space-md);
  padding: var(--space-md);
  border-radius: var(--radius);
  font-size: 0.9375rem;
  font-weight: 500;
}
.reservieren-message.success {
  background: rgba(40, 167, 69, 0.12);
  color: #1e7e34;
}
.reservieren-message.error {
  background: rgba(184, 69, 53, 0.12);
  color: var(--color-primary-dark);
}
.reservieren-info-card {
  background: var(--color-bg);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  border: 1px solid rgba(45, 41, 38, 0.08);
}
.reservieren-info-card h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0 0 var(--space-md);
}
.reservieren-info-card ul {
  margin: 0 0 var(--space-md);
  padding-left: 1.25rem;
  color: var(--color-text-muted);
  font-size: 0.9375rem;
  line-height: 1.6;
}
.reservieren-info-card ul li { margin-bottom: var(--space-xs); }
.reservieren-info-card p {
  margin: 0;
  font-size: 0.9375rem;
  color: var(--color-text-muted);
}
.reservieren-info-card a { color: var(--color-primary); }

.section-newsletter { background: var(--color-bg); }
.newsletter-box {
  max-width: 28rem;
  margin: 0 auto;
  padding: var(--space-2xl);
  background: var(--color-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}
.newsletter-box h2 {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 700;
  margin: 0 0 var(--space-sm);
}
.newsletter-box > p {
  margin: 0 0 var(--space-xl);
  color: var(--color-text-muted);
  font-size: 0.9375rem;
}
.newsletter-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
}
.newsletter-form input[type="text"],
.newsletter-form input[type="email"] {
  width: 100%;
  padding: 0.875rem 1rem;
  font-family: inherit;
  font-size: 1rem;
  border: 1px solid rgba(45,41,38,0.2);
  border-radius: var(--radius);
  transition: border-color var(--duration-fast), box-shadow var(--duration-fast);
}
.newsletter-form input:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(184,69,53,0.15);
}
.newsletter-form input + input,
.newsletter-form .checkbox-label {
  margin-top: var(--space-md);
}
.newsletter-form .checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  font-size: 0.875rem;
  color: var(--color-text-muted);
  cursor: pointer;
}
.newsletter-form .checkbox-label input { margin-top: 0.2em; }
.newsletter-form .checkbox-label a { color: var(--color-primary); text-decoration: underline; }
.newsletter-form .btn { width: 100%; margin-top: var(--space-xl); }

/* ========== AUSSTELLER ========== */
.section-aussteller { background: var(--color-white); }
.aussteller-subtitle {
  font-size: 1.125rem;
  color: var(--color-text-muted);
  margin: 0 0 var(--space-md);
}
.aussteller-intro {
  font-size: 1.0625rem;
  line-height: 1.6;
  margin: 0 0 var(--space-xl);
  max-width: 42rem;
}
.btn-aussteller-cta { margin-bottom: var(--space-2xl); }
.aussteller-facts,
.aussteller-termine {
  margin: var(--space-xl) 0 0;
  padding: var(--space-lg);
  background: var(--color-bg);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(45, 41, 38, 0.08);
}
.aussteller-facts h3,
.aussteller-termine h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0 0 var(--space-md);
}
.aussteller-facts ul {
  margin: 0;
  padding-left: 1.25rem;
  color: var(--color-text-muted);
  line-height: 1.7;
}
.aussteller-termine p { margin: 0; color: var(--color-text-muted); }
.aussteller-contact-hint {
  margin: var(--space-lg) 0 0;
  font-size: 0.9375rem;
  color: var(--color-text-muted);
}
.aussteller-contact-hint a { color: var(--color-primary); }

/* Aussteller-Modal – iOS-inspiriert (gruppiert, weich, klar) */
.aussteller-modal {
  position: fixed;
  inset: 0;
  z-index: 10050;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-lg);
  pointer-events: auto;
}
.aussteller-modal[hidden] { display: none; }
.aussteller-modal-backdrop {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: rgba(0, 0, 0, 0.4);
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}
.aussteller-modal-box {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 32rem;
  max-height: 90vh;
  overflow-y: auto;
  background: #f2f2f7;
  border-radius: 20px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  padding: 1.5rem 1.25rem;
  -webkit-overflow-scrolling: touch;
  pointer-events: auto;
}
.aussteller-modal-box * {
  pointer-events: auto;
}
.aussteller-modal-box button,
.aussteller-modal-box input,
.aussteller-modal-box select,
.aussteller-modal-box textarea,
.aussteller-modal-box label,
.aussteller-modal-box a {
  cursor: pointer;
}
.aussteller-modal-box input,
.aussteller-modal-box select,
.aussteller-modal-box textarea {
  cursor: text;
}
.aussteller-modal-box select { cursor: pointer; }
.aussteller-modal-close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  width: 2.75rem;
  height: 2.75rem;
  min-width: 2.75rem;
  min-height: 2.75rem;
  border: none;
  background: rgba(0, 0, 0, 0.06);
  font-size: 1.25rem;
  line-height: 1;
  color: #8e8e93;
  cursor: pointer;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  -webkit-appearance: none;
  appearance: none;
}
.aussteller-modal-close:hover { background: rgba(0, 0, 0, 0.1); color: #1c1c1e; }
.aussteller-modal-box h3 {
  font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Segoe UI', var(--font-body);
  font-size: 1.375rem;
  font-weight: 700;
  margin: 0 0 1.25rem;
  padding-right: 2.5rem;
  color: #1c1c1e;
}
/* iOS-Segmented Control für Schritte */
.aussteller-step-indicator {
  display: flex;
  gap: 2px;
  margin: 0 0 1.25rem;
  padding: 3px;
  list-style: none;
  background: rgba(0, 0, 0, 0.06);
  border-radius: 10px;
}
.aussteller-step-indicator [data-step] {
  flex: 1;
  padding: 0.4rem 0.25rem;
  text-align: center;
  font-size: 0.75rem;
  font-weight: 600;
  color: #8e8e93;
  background: transparent;
  border-radius: 8px;
  transition: background 0.2s, color 0.2s;
}
.aussteller-step-indicator [data-step].active {
  color: #1c1c1e;
  background: #fff;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.06);
}
/* Gruppierte Felder (iOS-Listenoptik) */
.aussteller-form fieldset {
  border: none;
  margin: 0 0 1.25rem;
  padding: 0;
}
.aussteller-form fieldset:last-of-type { margin-bottom: 0; }
.aussteller-step-panel { display: none; }
.aussteller-step-panel.active { display: block; }
.aussteller-form .aussteller-group {
  background: #fff;
  border-radius: 12px;
  padding: 1rem;
  margin-bottom: 1rem;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
}
.aussteller-form .aussteller-group:last-child { margin-bottom: 0; }
.aussteller-form label {
  display: block;
  font-weight: 500;
  font-size: 0.8125rem;
  margin: 0 0 0.35rem;
  color: #8e8e93;
  font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Text', var(--font-body);
}
.aussteller-form label:first-of-type { margin-top: 0; }
.aussteller-form .aussteller-field {
  margin-bottom: 1rem;
}
.aussteller-form .aussteller-field:last-child { margin-bottom: 0; }
.aussteller-form input,
.aussteller-form select,
.aussteller-form textarea {
  width: 100%;
  min-height: 2.75rem;
  padding: 0.75rem 1rem;
  border: none;
  border-radius: 10px;
  font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Text', var(--font-body);
  font-size: 1rem;
  background: rgba(0, 0, 0, 0.04);
  color: #1c1c1e;
  -webkit-appearance: none;
  appearance: none;
  transition: background 0.15s;
  touch-action: manipulation;
}
/* Radio & Checkbox: native Darstellung, immer klickbar */
.aussteller-form input[type="radio"],
.aussteller-form input[type="checkbox"] {
  width: 1.25rem !important;
  min-width: 1.25rem !important;
  height: 1.25rem !important;
  min-height: 1.25rem !important;
  padding: 0 !important;
  margin: 0 !important;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
  cursor: pointer;
  pointer-events: auto;
  -webkit-appearance: auto;
  appearance: auto;
  background: transparent !important;
  border-radius: 0;
  touch-action: manipulation;
}
.aussteller-form input[type="radio"] { margin-right: 0.35rem !important; }
.aussteller-form input[type="checkbox"] { margin-right: 0 !important; }
.aussteller-form textarea { min-height: 4rem; }
.aussteller-form select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%238e8e93' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  padding-right: 2rem;
}
.aussteller-form input::placeholder,
.aussteller-form textarea::placeholder {
  color: #c7c7cc;
}
.aussteller-form input:focus,
.aussteller-form select:focus,
.aussteller-form textarea:focus {
  outline: none;
  background: rgba(0, 0, 0, 0.06);
  box-shadow: 0 0 0 2px var(--color-primary);
}
.aussteller-radio-label,
.aussteller-checkbox-label {
  margin-top: 1rem;
  font-weight: 500;
  font-size: 0.9375rem;
  color: #1c1c1e;
}
.aussteller-radio-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  margin-bottom: 0.5rem;
}
.aussteller-radio-group label {
  font-weight: 400;
  margin: 0;
  cursor: pointer;
  font-size: 0.9375rem;
  color: #1c1c1e;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.75rem 0.5rem 0;
  min-height: 2.5rem;
  touch-action: manipulation;
  position: relative;
  z-index: 1;
  pointer-events: auto;
  -webkit-tap-highlight-color: transparent;
}
.aussteller-radio-group input {
  position: relative;
  z-index: 2;
  pointer-events: auto;
  cursor: pointer;
  flex-shrink: 0;
}
.aussteller-hint {
  font-size: 0.8125rem;
  color: #8e8e93;
  margin: 0.5rem 0 1rem;
  line-height: 1.4;
}
.aussteller-summary {
  background: #fff;
  padding: 1rem;
  border-radius: 12px;
  margin-bottom: 1rem;
  font-size: 0.9375rem;
  line-height: 1.55;
  color: #1c1c1e;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
}
.aussteller-summary p { margin: 0 0 0.5rem; }
.aussteller-summary p:last-child { margin-bottom: 0; }
.aussteller-form-actions {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.25rem;
  flex-wrap: wrap;
}
.aussteller-form-actions .btn {
  flex: 1;
  min-width: 0;
  min-height: 2.75rem;
  border-radius: 12px;
  padding: 0.75rem 1.25rem;
  font-weight: 600;
  font-size: 0.9375rem;
  -webkit-appearance: none;
  appearance: none;
  cursor: pointer;
  touch-action: manipulation;
}
.aussteller-checkbox-wrap {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin: 1rem 0 0;
  cursor: pointer;
  position: relative;
  z-index: 1;
  pointer-events: auto;
}
.aussteller-checkbox-wrap input { flex-shrink: 0; margin-top: 0.25rem; }
.aussteller-checkbox-label {
  display: block;
  cursor: pointer;
  font-size: 0.875rem;
  line-height: 1.4;
  padding: 0;
  margin: 0;
  touch-action: manipulation;
  pointer-events: auto;
  user-select: none;
}
.aussteller-checkbox-label a { color: var(--color-primary); text-decoration: underline; }
/* Erfolgsanzeige nach Absenden (Brief + Animation) */
.aussteller-success {
  text-align: center;
  padding: 2rem 1rem;
  pointer-events: auto;
}
.aussteller-success-icon {
  width: 4.5rem;
  height: 4.5rem;
  margin: 0 auto 1.25rem;
  color: var(--color-primary);
  animation: aussteller-letter 0.6s var(--ease-out, ease-out) forwards;
}
.aussteller-success-icon svg {
  width: 100%;
  height: 100%;
}
@keyframes aussteller-letter {
  0% {
    opacity: 0;
    transform: scale(0.3) translateY(-10px);
  }
  50% {
    transform: scale(1.08) translateY(2px);
  }
  100% {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}
.aussteller-success-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1c1c1e;
  margin: 0 0 0.5rem;
}
.aussteller-success-text {
  font-size: 0.9375rem;
  color: #8e8e93;
  margin: 0 0 1.5rem;
  line-height: 1.5;
}
.aussteller-success-close {
  min-height: 2.75rem;
  padding: 0.75rem 1.5rem;
  cursor: pointer;
  border-radius: 12px;
}
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* ========== CONTACT ========== */
.section-contact { background: var(--color-bg); }
.contact-grid {
  display: grid;
  gap: var(--space-2xl);
}
@media (min-width: 768px) {
  .contact-grid { grid-template-columns: 1fr 1fr; }
}
.contact-info h2 {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 700;
  margin: 0 0 var(--space-lg);
}
.contact-name { font-weight: 600; margin-bottom: var(--space-sm); }
.contact-info p {
  margin: 0 0 var(--space-sm);
  color: var(--color-text-muted);
}
.contact-info a {
  color: var(--color-primary);
  font-weight: 500;
  transition: color var(--duration-fast);
}
.contact-info a:hover { color: var(--color-primary-dark); }
.contact-social {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  margin-top: var(--space-lg);
}
.contact-social a {
  font-size: 0.875rem;
  color: var(--color-text-muted);
}
.contact-social a:hover { color: var(--color-primary); }
.contact-map .map-placeholder {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl);
  text-align: center;
  box-shadow: var(--shadow);
  min-height: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
}
.contact-map .map-placeholder p { margin: 0; color: var(--color-text-muted); }

/* ========== FOOTER ========== */
.footer {
  background: var(--color-bg-dark);
  color: rgba(255,255,255,0.8);
  padding: var(--space-2xl) 0;
}
.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-lg);
  text-align: center;
}
.footer-brand img {
  height: 2rem;
  width: auto;
  opacity: 0.95;
}
.footer-brand p {
  margin: var(--space-sm) 0 0;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
}
.footer-nav {
  display: flex;
  gap: var(--space-xl);
}
.footer-nav a {
  color: rgba(255,255,255,0.8);
  font-size: 0.9375rem;
  position: relative;
  transition: color var(--duration) var(--ease-out);
}
.footer-nav a:hover,
.footer-nav a:focus-visible { color: var(--color-white); }
.footer-nav a:focus-visible { outline: 2px solid rgba(255,255,255,0.5); outline-offset: 4px; border-radius: 2px; }
.footer-copy {
  margin: 0;
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.5);
}

/* ========== COOKIE BANNER ========== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  padding: var(--space-lg);
  background: var(--color-bg-dark);
  color: var(--color-white);
  box-shadow: 0 -4px 24px rgba(0,0,0,0.2);
  transform: translateY(100%);
  transition: transform 0.6s var(--ease-out);
}
.cookie-banner.is-visible { transform: translateY(0); }
.cookie-banner.is-hidden { display: none; }
.cookie-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  align-items: flex-start;
}
@media (min-width: 640px) {
  .cookie-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}
.cookie-banner p {
  margin: 0;
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.9);
}
.cookie-banner a { color: var(--color-accent); text-decoration: underline; }
.cookie-actions {
  display: flex;
  gap: var(--space-sm);
  flex-shrink: 0;
}
