/* =========================================================
   chique. — Design-System
   ---------------------------------------------------------
   Farben, Typografie und Abstände zentral als Custom
   Properties. Markenfarben stammen aus der bestehenden
   Website (#4E2A84) bzw. dem Neon-Logo (Pink).
   ========================================================= */

:root {
  /* Marke */
  --purple: #4e2a84;
  --purple-deep: #37205e;
  --pink: #d84fd8;
  /* Dekorativer Verlauf (Hintergründe, Text-Akzente) */
  --gradient: linear-gradient(115deg, #4e2a84 0%, #8b3bb4 52%, #d84fd8 100%);
  /* Verlauf für Flächen mit weißem Text: endet dunkler,
     damit der Kontrast überall ≥ 4,5:1 bleibt */
  --gradient-btn: linear-gradient(115deg, #4e2a84 0%, #7d35a8 55%, #a437a6 100%);

  /* Neutrale Farben */
  --ink: #16121c;
  --ink-soft: #625c6d;
  --ink-faint: #6f6a7c; /* dunkel genug für AA-Kontrast auf Weiß & bg-soft */
  --line: #eae6f0;
  --bg: #ffffff;
  --bg-soft: #f8f6fb;
  --bg-tint: #f3eefa;

  /* Typografie */
  --font-display: 'League Spartan', 'Helvetica Neue', Arial, sans-serif;
  --font-body: 'Inter', 'Helvetica Neue', Arial, sans-serif;

  /* Layout */
  --container: 1180px;
  --radius: 20px;
  --radius-sm: 12px;
  --shadow-soft: 0 18px 50px -22px rgba(78, 42, 132, 0.25);
  --shadow-lift: 0 28px 70px -28px rgba(78, 42, 132, 0.38);
}

/* ---------- Reset ---------- */

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

/* hidden-Attribut gewinnt immer — auch gegen display-Regeln
   von Klassen wie .btn oder .guest-form label */
[hidden] {
  display: none !important;
}

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

button {
  font: inherit;
  cursor: pointer;
  border: none;
  background: none;
  color: inherit;
}

::selection {
  background: var(--purple);
  color: #fff;
}

:focus-visible {
  outline: 3px solid var(--pink);
  outline-offset: 3px;
  border-radius: 4px;
}

/* Nur für Screenreader sichtbar */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

/* Skip-Link: unsichtbar, bis er per Tab fokussiert wird */
.skip-link {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 100;
  transform: translateY(-120%);
  background: var(--purple);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 600;
  padding: 0.85rem 1.5rem;
  border-radius: 0 0 14px 0;
  transition: transform 0.15s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

/* ---------- Typografie ---------- */

h1,
h2,
h3,
.display {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.04;
  letter-spacing: -0.015em;
  color: var(--ink);
}

.h-hero {
  font-size: clamp(2.9rem, 7.2vw, 5.6rem);
  font-weight: 700;
}

.h-section {
  font-size: clamp(2rem, 4.6vw, 3.4rem);
  font-weight: 700;
}

.h-card {
  font-size: clamp(1.35rem, 2.4vw, 1.8rem);
  font-weight: 600;
}

.accent {
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.eyebrow {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--purple);
  margin-bottom: 1.1rem;
}

.lead {
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  color: var(--ink-soft);
  max-width: 38em;
}

.muted {
  color: var(--ink-soft);
}

/* ---------- Layout-Helfer ---------- */

.container {
  width: min(100% - 2.5rem, var(--container));
  margin-inline: auto;
}

.section {
  padding-block: clamp(4.5rem, 9vw, 8rem);
}

.section-head {
  max-width: 640px;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.grid {
  display: grid;
  gap: 1.5rem;
}

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.01em;
  padding: 0.95rem 1.9rem;
  border-radius: 999px;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease, color 0.18s ease;
  white-space: nowrap;
}

.btn svg {
  width: 1.05em;
  height: 1.05em;
  flex: none;
}

.btn-primary {
  background: var(--purple);
  color: #fff;
  box-shadow: var(--shadow-soft);
}

.btn-primary:hover {
  background: var(--purple-deep);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lift);
}

.btn-gradient {
  background: var(--gradient-btn);
  color: #fff;
  box-shadow: var(--shadow-soft);
}

.btn-gradient:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lift);
}

.btn-ghost {
  background: transparent;
  color: var(--purple);
  box-shadow: inset 0 0 0 2px var(--line);
}

.btn-ghost:hover {
  box-shadow: inset 0 0 0 2px var(--purple);
}

.btn-lg {
  padding: 1.15rem 2.4rem;
  font-size: 1.08rem;
}

.btn[disabled],
.btn.is-disabled {
  opacity: 0.45;
  pointer-events: none;
}

.btn-block {
  width: 100%;
}

/* ---------- Header ---------- */

.site-header {
  position: fixed;
  inset-inline: 0;
  top: 0;
  z-index: 60;
  background: rgba(255, 255, 255, 0.86);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s ease;
}

.site-header.is-scrolled {
  border-color: var(--line);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  height: 76px;
}

.logo {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.65rem;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.logo span {
  color: var(--purple);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.2rem;
  list-style: none;
}

.nav-links a:not(.btn) {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.02rem;
  color: var(--ink-soft);
  transition: color 0.15s ease;
}

.nav-links a:not(.btn):hover,
.nav-links a:not(.btn)[aria-current='page'] {
  color: var(--purple);
}

.nav .btn {
  padding: 0.65rem 1.5rem;
  font-size: 0.95rem;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  align-items: center;
  justify-content: center;
}

.nav-toggle svg {
  width: 26px;
  height: 26px;
  stroke: var(--ink);
}

@media (max-width: 820px) {
  .nav-toggle {
    display: inline-flex;
  }

  .nav-links {
    position: fixed;
    inset: 76px 0 auto 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: #fff;
    border-bottom: 1px solid var(--line);
    padding: 0.75rem 1.25rem 1.5rem;
    display: none;
  }

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

  .nav-links li {
    border-top: 1px solid var(--line);
  }

  .nav-links li:first-child {
    border-top: none;
  }

  .nav-links a:not(.btn) {
    display: block;
    padding: 1rem 0.25rem;
    font-size: 1.15rem;
  }

  .nav-links .nav-cta {
    margin-top: 1rem;
    border-top: none;
  }

  .nav-links .btn {
    width: 100%;
    padding: 1rem;
  }
}

/* ---------- Hero ---------- */

.hero {
  position: relative;
  padding-top: clamp(9rem, 16vw, 13rem);
  padding-bottom: clamp(4rem, 8vw, 7rem);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
}

.hero-bg::before,
.hero-bg::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.16;
}

.hero-bg::before {
  width: 560px;
  height: 560px;
  background: var(--purple);
  top: -180px;
  right: -120px;
}

.hero-bg::after {
  width: 480px;
  height: 480px;
  background: var(--pink);
  bottom: -220px;
  left: -160px;
}

.hero-inner {
  max-width: 820px;
}

.hero .lead {
  margin-top: 1.6rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2.6rem;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1.8rem;
  margin-top: 3.2rem;
  font-size: 0.95rem;
  color: var(--ink-faint);
}

.hero-meta strong {
  color: var(--ink);
  font-weight: 600;
}

/* ---------- Marquee ---------- */

.marquee {
  border-block: 1px solid var(--line);
  overflow: hidden;
  padding-block: 1rem;
  background: var(--bg);
}

.marquee-track {
  display: flex;
  gap: 3rem;
  width: max-content;
  animation: marquee 28s linear infinite;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--ink-faint);
  text-transform: lowercase;
}

.marquee-track span {
  display: flex;
  align-items: center;
  gap: 3rem;
}

.marquee-track .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gradient);
  flex: none;
}

@keyframes marquee {
  to {
    transform: translateX(-50%);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .marquee-track {
    animation: none;
    flex-wrap: wrap;
    width: auto;
  }

  .reveal {
    opacity: 1 !important;
    transform: none !important;
  }

  .confirm-check {
    animation: none;
  }

  .btn:hover,
  .event-card:hover,
  .footer-social a:hover,
  .event-card:hover .event-card-media img {
    transform: none;
  }
}

/* ---------- Featured Event ---------- */

.featured {
  background: var(--bg-soft);
}

.featured-card {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 8px);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.featured-media {
  position: relative;
  min-height: 380px;
}

.featured-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.featured-body {
  padding: clamp(1.8rem, 4vw, 3.2rem);
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}

.date-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  align-self: flex-start;
  background: var(--bg-tint);
  color: var(--purple);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.92rem;
  padding: 0.45rem 1rem;
  border-radius: 999px;
}

.event-facts {
  display: grid;
  gap: 0.55rem;
  font-size: 0.98rem;
  color: var(--ink-soft);
}

.event-facts li {
  display: flex;
  align-items: baseline;
  gap: 0.65rem;
  list-style: none;
}

.event-facts svg {
  width: 17px;
  height: 17px;
  flex: none;
  transform: translateY(2px);
  stroke: var(--purple);
}

.countdown {
  display: flex;
  gap: 0.75rem;
}

.countdown-unit {
  min-width: 68px;
  text-align: center;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 0.7rem 0.5rem 0.55rem;
}

.countdown-unit b {
  display: block;
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--purple);
  line-height: 1;
}

.countdown-unit span {
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-faint);
}

.featured-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: auto;
}

.price-from {
  font-size: 0.95rem;
  color: var(--ink-soft);
}

.price-from b {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--ink);
}

@media (max-width: 900px) {
  .featured-card {
    grid-template-columns: minmax(0, 1fr);
  }

  .featured-media {
    min-height: 300px;
  }
}

/* ---------- Event-Karten ---------- */

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

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

@media (max-width: 640px) {
  .events-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

.event-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.event-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lift);
}

.event-card-media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.event-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.event-card:hover .event-card-media img {
  transform: scale(1.045);
}

.event-card-media .date-chip {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: rgba(255, 255, 255, 0.94);
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 0.32rem 0.8rem;
  border-radius: 999px;
}

.badge-live {
  background: #ecfdf3;
  color: #067647;
}

.badge-live::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #17b26a;
}

.badge-soon {
  background: var(--bg-tint);
  color: var(--purple);
}

.event-card-body {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  padding: 1.5rem 1.5rem 1.7rem;
  flex: 1;
}

.event-card-body .h-card {
  text-transform: lowercase;
}

.event-card-venue {
  color: var(--ink-soft);
  font-size: 0.95rem;
}

.event-card-footer {
  margin-top: auto;
  padding-top: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--purple);
}

.link-arrow svg {
  width: 18px;
  height: 18px;
  transition: transform 0.18s ease;
}

.link-arrow:hover svg {
  transform: translateX(4px);
}

/* ---------- Story ---------- */

.story-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}

.story-copy p + p {
  margin-top: 1.1rem;
}

.story-copy .lead {
  margin-bottom: 1.4rem;
}

.story-collage {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.story-collage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius);
  aspect-ratio: 3 / 4;
}

.story-collage img:nth-child(2) {
  transform: translateY(2rem);
}

@media (max-width: 900px) {
  .story-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

/* ---------- Zitat ---------- */

.quote {
  background: var(--purple);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.quote::after {
  content: '';
  position: absolute;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: var(--pink);
  filter: blur(140px);
  opacity: 0.32;
  right: -160px;
  bottom: -260px;
  pointer-events: none;
}

.quote blockquote {
  position: relative;
  z-index: 1;
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.6vw, 2.7rem);
  font-weight: 600;
  line-height: 1.25;
  max-width: 21em;
}

.quote figcaption {
  position: relative;
  z-index: 1;
  margin-top: 1.8rem;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.75);
}

.quote figcaption b {
  color: #fff;
}

/* ---------- Galerie ---------- */

.gallery-strip {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: clamp(240px, 30vw, 380px);
  gap: 1.1rem;
  overflow-x: auto;
  padding-bottom: 1rem;
  scroll-snap-type: x mandatory;
}

.gallery-strip img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: var(--radius);
  scroll-snap-align: start;
}

/* ---------- Newsletter ---------- */

.loop {
  background: var(--bg-soft);
}

.loop-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 8px);
  padding: clamp(2rem, 5vw, 3.6rem);
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 2rem;
  align-items: center;
  box-shadow: var(--shadow-soft);
}

.loop-form {
  display: flex;
  gap: 0.6rem;
}

.loop-form input {
  flex: 1;
  min-width: 0;
  font: inherit;
  padding: 0.95rem 1.2rem;
  border: 1.5px solid var(--line);
  border-radius: 999px;
  background: var(--bg-soft);
}

.loop-form input:focus {
  outline: none;
  border-color: var(--purple);
  background: #fff;
}

.loop-note {
  grid-column: 1 / -1;
  font-size: 0.85rem;
  color: var(--ink-faint);
}

@media (max-width: 820px) {
  .loop-card {
    grid-template-columns: minmax(0, 1fr);
  }

  .loop-form {
    flex-direction: column;
  }
}

/* ---------- Footer ---------- */

.site-footer {
  border-top: 1px solid var(--line);
  padding-block: 3.5rem 2.5rem;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
  align-items: flex-start;
}

.footer-brand p {
  margin-top: 0.8rem;
  color: var(--ink-soft);
  max-width: 26em;
}

.footer-social {
  display: flex;
  gap: 0.7rem;
  margin-top: 1.4rem;
}

.footer-social a {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--ink-soft);
  transition: color 0.15s ease, border-color 0.15s ease, transform 0.15s ease;
}

.footer-social a:hover {
  color: var(--purple);
  border-color: var(--purple);
  transform: translateY(-2px);
}

.footer-social svg {
  width: 19px;
  height: 19px;
}

.footer-col h4 {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-bottom: 1rem;
}

.footer-col ul {
  list-style: none;
  display: grid;
  gap: 0.6rem;
}

.footer-col a {
  color: var(--ink-soft);
  transition: color 0.15s ease;
}

.footer-col a:hover {
  color: var(--purple);
}

.footer-bottom {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  font-size: 0.88rem;
  color: var(--ink-faint);
}

/* ---------- Event-Detailseite ---------- */

.page-top {
  padding-top: clamp(7.5rem, 12vw, 9.5rem);
}

.breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.92rem;
  color: var(--ink-faint);
  margin-bottom: 1.6rem;
}

.breadcrumb a {
  color: var(--purple);
  font-weight: 500;
}

.breadcrumb svg {
  width: 15px;
  height: 15px;
}

.event-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

.event-hero-media img {
  border-radius: calc(var(--radius) + 6px);
  box-shadow: var(--shadow-soft);
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.event-hero-body h1 {
  text-transform: lowercase;
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 700;
}

.event-hero-body .event-facts {
  margin-top: 1.6rem;
  font-size: 1.02rem;
}

.event-hero-body .countdown {
  margin-top: 1.8rem;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.4rem;
}

.tag {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--purple);
  background: var(--bg-tint);
  border-radius: 999px;
  padding: 0.3rem 0.85rem;
}

.event-description {
  max-width: 720px;
}

.event-description p + p {
  margin-top: 1.1rem;
}

.event-description h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin-bottom: 1.2rem;
}

.lineup-box {
  margin-top: 2.2rem;
  background: var(--bg-soft);
  border: 1px dashed var(--line);
  border-radius: var(--radius);
  padding: 1.4rem 1.6rem;
  color: var(--ink-soft);
}

.lineup-box b {
  font-family: var(--font-display);
  color: var(--ink);
  display: block;
  margin-bottom: 0.3rem;
}

/* Ticket-Picker */

.ticket-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(0, 1fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: start;
}

@media (max-width: 900px) {
  .event-hero,
  .ticket-layout {
    grid-template-columns: minmax(0, 1fr);
  }

  .event-hero-media {
    max-width: 460px;
  }
}

.ticket-list {
  display: grid;
  gap: 0.9rem;
}

.ticket-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 1.1rem 1.3rem;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.ticket-row.has-qty {
  border-color: var(--purple);
  box-shadow: 0 0 0 1px var(--purple);
}

.ticket-row.is-locked {
  background: var(--bg-soft);
  color: var(--ink-faint);
}

.ticket-info h3 {
  font-size: 1.08rem;
  font-weight: 600;
  text-transform: lowercase;
}

.ticket-info .ticket-note {
  font-size: 0.85rem;
  color: var(--ink-soft);
  margin-top: 0.2rem;
  max-width: 30em;
}

.ticket-row.is-locked .ticket-note,
.ticket-row.is-locked h3 {
  color: var(--ink-faint);
}

.ticket-price {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.15rem;
  white-space: nowrap;
}

.ticket-fee {
  display: block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 400;
  color: var(--ink-faint);
}

.ticket-right {
  display: flex;
  align-items: center;
  gap: 1.1rem;
}

.stepper {
  display: inline-flex;
  align-items: center;
  border: 1.5px solid var(--line);
  border-radius: 999px;
  overflow: hidden;
}

.stepper button {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--purple);
  transition: background-color 0.12s ease;
}

.stepper button:hover:not(:disabled) {
  background: var(--bg-tint);
}

.stepper button:disabled {
  color: var(--ink-faint);
  opacity: 0.4;
  cursor: default;
}

/* Der Stepper clippt mit overflow:hidden — der Fokus-Ring muss
   deshalb nach innen zeigen, sonst wäre er unsichtbar */
.stepper button:focus-visible {
  outline: 3px solid var(--purple);
  outline-offset: -3px;
  border-radius: 999px;
}

.stepper output {
  min-width: 2.2em;
  text-align: center;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.02rem;
}

.locked-note {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--ink-faint);
  white-space: nowrap;
}

@media (max-width: 640px) {
  .ticket-row {
    flex-direction: column;
    align-items: stretch;
  }

  .ticket-right {
    justify-content: space-between;
    flex-wrap: wrap;
  }
}

/* Bestell-Zusammenfassung */

.summary-card {
  position: sticky;
  top: 100px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.7rem;
  box-shadow: var(--shadow-soft);
  display: grid;
  gap: 1rem;
}

.summary-card h3 {
  font-size: 1.2rem;
}

.summary-lines {
  display: grid;
  gap: 0.55rem;
  font-size: 0.95rem;
  color: var(--ink-soft);
}

.summary-line {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}

.summary-line.total {
  border-top: 1px solid var(--line);
  padding-top: 0.8rem;
  margin-top: 0.3rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--ink);
}

.summary-empty {
  color: var(--ink-faint);
  font-size: 0.95rem;
}

.vat-note {
  font-size: 0.8rem;
  color: var(--ink-faint);
}

/* Anfahrt */

.route-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: stretch;
}

@media (max-width: 900px) {
  .route-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

.route-map {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  min-height: 360px;
  box-shadow: var(--shadow-soft);
}

.route-map iframe {
  width: 100%;
  height: 100%;
  min-height: 360px;
  border: 0;
  display: block;
}

.route-info {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.route-info address {
  font-style: normal;
  color: var(--ink-soft);
}

.route-info address b {
  display: block;
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--ink);
  margin-bottom: 0.2rem;
}

.route-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.route-tip {
  background: var(--bg-tint);
  border-radius: var(--radius-sm);
  padding: 1rem 1.2rem;
  font-size: 0.92rem;
  color: var(--purple);
}

/* ---------- Checkout ---------- */

.checkout-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: start;
}

@media (max-width: 900px) {
  .checkout-layout {
    grid-template-columns: minmax(0, 1fr);
  }

  .checkout-layout .summary-card {
    position: static;
    order: -1;
  }
}

.checkout-step {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(1.4rem, 3vw, 2.1rem);
}

.checkout-step + .checkout-step {
  margin-top: 1.4rem;
}

.step-head {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin-bottom: 1.4rem;
}

.step-num {
  width: 34px;
  height: 34px;
  flex: none;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--gradient-btn);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
}

.step-head h2 {
  font-size: 1.3rem;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-field {
  display: grid;
  gap: 0.4rem;
}

.form-field.full {
  grid-column: 1 / -1;
}

.form-field label {
  font-size: 0.88rem;
  font-weight: 600;
}

.form-field input {
  font: inherit;
  padding: 0.85rem 1.05rem;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--bg-soft);
  width: 100%;
  transition: border-color 0.15s ease, background-color 0.15s ease;
}

.form-field input:focus {
  outline: none;
  border-color: var(--purple);
  background: #fff;
}

.form-field input.is-invalid {
  border-color: #d92d20;
  background: #fef3f2;
}

.field-error {
  font-size: 0.8rem;
  color: #d92d20;
  display: none;
}

.form-field.show-error .field-error {
  display: block;
}

@media (max-width: 560px) {
  .form-grid {
    grid-template-columns: 1fr;
  }
}

/* Zahlungsarten */

.pay-methods {
  display: grid;
  gap: 0.8rem;
}

.pay-method {
  position: relative;
}

.pay-method input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.pay-method label {
  display: flex;
  align-items: center;
  gap: 1rem;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 1rem 1.2rem;
  cursor: pointer;
  transition: border-color 0.15s ease, background-color 0.15s ease;
}

.pay-method input:checked + label {
  border-color: var(--purple);
  background: var(--bg-tint);
  box-shadow: 0 0 0 1px var(--purple);
}

.pay-method input:focus-visible + label {
  outline: 3px solid var(--pink);
  outline-offset: 2px;
}

.pay-logo {
  width: 46px;
  height: 30px;
  flex: none;
  display: grid;
  place-items: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 7px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.62rem;
  letter-spacing: 0.02em;
  color: var(--purple);
}

.pay-method b {
  display: block;
  font-size: 0.98rem;
}

.pay-method small {
  color: var(--ink-faint);
  font-size: 0.82rem;
}

.card-fields {
  margin-top: 1rem;
  display: none;
}

.card-fields.is-visible {
  display: grid;
  gap: 1rem;
}

.demo-banner {
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
  background: #fffaeb;
  border: 1px solid #fedf89;
  color: #93370d;
  border-radius: var(--radius-sm);
  padding: 0.8rem 1rem;
  font-size: 0.85rem;
}

.demo-banner svg {
  width: 17px;
  height: 17px;
  flex: none;
  margin-top: 2px;
}

/* AGB / Abschluss */

.agree-row {
  display: flex;
  gap: 0.8rem;
  align-items: flex-start;
  font-size: 0.92rem;
  color: var(--ink-soft);
}

.agree-row input {
  width: 20px;
  height: 20px;
  margin-top: 2px;
  accent-color: var(--purple);
  flex: none;
}

.agree-row a {
  color: var(--purple);
  text-decoration: underline;
}

.checkout-submit {
  margin-top: 1.4rem;
}

.spinner {
  width: 1.1em;
  height: 1.1em;
  border: 2.5px solid rgba(255, 255, 255, 0.35);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
  display: none;
}

.is-loading .spinner {
  display: inline-block;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.secure-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 0.9rem;
  font-size: 0.83rem;
  color: var(--ink-faint);
}

.secure-note svg {
  width: 15px;
  height: 15px;
}

/* ---------- Bestätigung ---------- */

.confirm-wrap {
  max-width: 720px;
  margin-inline: auto;
  text-align: center;
}

.confirm-check {
  width: 88px;
  height: 88px;
  margin: 0 auto 1.8rem;
  border-radius: 50%;
  background: var(--gradient);
  display: grid;
  place-items: center;
  box-shadow: var(--shadow-lift);
  animation: pop 0.5s cubic-bezier(0.2, 1.4, 0.4, 1);
}

.confirm-check svg {
  width: 42px;
  height: 42px;
  stroke: #fff;
}

@keyframes pop {
  from {
    transform: scale(0.4);
    opacity: 0;
  }
}

.booking-code {
  display: inline-block;
  margin-top: 1.6rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.5rem;
  letter-spacing: 0.06em;
  color: var(--purple);
  background: var(--bg-tint);
  border-radius: var(--radius-sm);
  padding: 0.7rem 1.6rem;
}

.confirm-card {
  margin-top: 2.5rem;
  text-align: left;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.confirm-card-head {
  display: flex;
  gap: 1.2rem;
  align-items: center;
  padding: 1.4rem 1.6rem;
  border-bottom: 1px solid var(--line);
}

.confirm-card-head img {
  width: 74px;
  height: 74px;
  border-radius: var(--radius-sm);
  object-fit: cover;
  flex: none;
}

.confirm-card-head h2 {
  font-size: 1.25rem;
  text-transform: lowercase;
}

.confirm-card-head p {
  color: var(--ink-soft);
  font-size: 0.92rem;
}

.confirm-card .summary-lines {
  padding: 1.4rem 1.6rem;
}

.confirm-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  justify-content: center;
  margin-top: 2.2rem;
}

.confirm-note {
  margin-top: 2rem;
  font-size: 0.9rem;
  color: var(--ink-faint);
  max-width: 34em;
  margin-inline: auto;
}

/* ---------- Rechtstexte ---------- */

.legal {
  max-width: 760px;
}

.legal h1 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin-bottom: 1.5rem;
}

.legal h2 {
  font-size: 1.25rem;
  margin: 2rem 0 0.6rem;
}

.legal p,
.legal li {
  color: var(--ink-soft);
}

.legal ul {
  padding-left: 1.2rem;
  margin-top: 0.5rem;
}

.placeholder-banner {
  background: var(--bg-tint);
  color: var(--purple);
  border-radius: var(--radius-sm);
  padding: 0.9rem 1.2rem;
  font-size: 0.9rem;
  margin-bottom: 2rem;
}

/* ---------- Scroll-Reveal ----------
   Greift nur, wenn JS aktiv ist (html.js) — ohne JS bleibt
   alles sichtbar. app.js blendet zusätzlich nach 2 s alles
   ein, falls der Observer nicht feuert. */

.js .reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

/* ---------- Druck ----------
   Relevant vor allem für die Buchungsbestätigung */

@media print {
  .site-header {
    position: static;
    background: #fff;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
  }

  .skip-link,
  .site-footer,
  .confirm-actions,
  .nav-toggle,
  .nav-links,
  .toast,
  .marquee {
    display: none !important;
  }

  body {
    background: #fff;
  }

  .confirm-card,
  .summary-card {
    box-shadow: none;
  }
}

/* ---------- Toast ---------- */

.toast {
  position: fixed;
  left: 50%;
  bottom: 2rem;
  transform: translate(-50%, 20px);
  background: var(--ink);
  color: #fff;
  padding: 0.85rem 1.5rem;
  border-radius: 999px;
  font-size: 0.95rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
  z-index: 80;
}

.toast.is-visible {
  opacity: 1;
  transform: translate(-50%, 0);
}

/* =========================================================
   Ticketseite (ticket.html) — QR-Code fürs Einlass-Scannen
   ========================================================= */

.ticket-wrap {
  max-width: 520px;
  margin-inline: auto;
  text-align: center;
}

.ticket-card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  margin-top: 1.6rem;
  text-align: left;
}

.ticket-card-head {
  display: flex;
  gap: 1rem;
  align-items: center;
  padding: 1.2rem 1.4rem;
  background: var(--bg-soft);
  border-bottom: 1px solid var(--line);
}

.ticket-card-head img {
  width: 64px;
  height: 64px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  flex-shrink: 0;
}

.ticket-card-head h1 {
  font-size: 1.3rem;
  text-transform: lowercase;
}

.ticket-card-head p {
  font-size: 0.88rem;
  color: var(--ink-soft);
  line-height: 1.45;
}

.ticket-qr {
  display: grid;
  place-items: center;
  padding: 1.6rem 1.4rem 0.6rem;
}

.ticket-qr svg {
  width: min(260px, 70vw);
  height: auto;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
}

.ticket-code {
  text-align: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.3rem;
  letter-spacing: 0.14em;
  color: var(--purple);
  padding-bottom: 0.4rem;
}

.ticket-meta {
  padding: 0.6rem 1.4rem 1.3rem;
  display: grid;
  gap: 0.55rem;
}

.ticket-meta-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.95rem;
  border-top: 1px solid var(--line);
  padding-top: 0.55rem;
}

.ticket-meta-row span:first-child {
  color: var(--ink-soft);
}

.ticket-meta-row b {
  text-align: right;
}

.ticket-status {
  margin: 0 1.4rem 1.4rem;
  border-radius: var(--radius-sm);
  padding: 0.75rem 1rem;
  font-size: 0.92rem;
  background: var(--bg-tint);
  color: var(--purple);
}

.ticket-status.is-benefit {
  background: linear-gradient(115deg, rgba(78, 42, 132, 0.12), rgba(216, 79, 216, 0.14));
  font-weight: 600;
}

.ticket-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.8rem;
  margin-top: 1.5rem;
}

.ticket-note {
  margin-top: 1.2rem;
  font-size: 0.88rem;
  color: var(--ink-faint);
}

.my-tickets-list {
  display: grid;
  gap: 0.8rem;
  margin-top: 1.6rem;
  text-align: left;
}

/* =========================================================
   Einlass-App (checkin.html)
   ========================================================= */

.checkin-main {
  max-width: 760px;
  margin-inline: auto;
  padding: 6.4rem 1.1rem 4rem;
}

.checkin-head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  margin-bottom: 1.2rem;
}

.checkin-head h1 {
  font-size: 1.6rem;
}

.checkin-event-select {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.checkin-event-select select {
  font: inherit;
  font-size: 0.95rem;
  padding: 0.55rem 2.2rem 0.55rem 0.9rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--bg) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%234e2a84' stroke-width='2.5' stroke-linecap='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E") no-repeat right 0.7rem center / 0.9rem;
  appearance: none;
  color: var(--ink);
  max-width: 100%;
}

/* Login */
.checkin-login {
  max-width: 420px;
  margin: 3rem auto 0;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  padding: 1.8rem 1.6rem;
  display: grid;
  gap: 1rem;
  text-align: center;
}

/* Statistik */
.checkin-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.7rem;
  margin-bottom: 0.7rem;
}

.stat-card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 0.8rem 0.6rem;
  text-align: center;
}

.stat-card b {
  display: block;
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--purple);
  line-height: 1.1;
}

.stat-card.is-in b {
  color: #17803d;
}

.stat-card span {
  font-size: 0.78rem;
  color: var(--ink-soft);
  text-transform: lowercase;
}

.checkin-substats {
  font-size: 0.85rem;
  color: var(--ink-faint);
  text-align: center;
  margin-bottom: 1.1rem;
}

/* Tabs */
.checkin-tabs {
  display: flex;
  gap: 0.4rem;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.3rem;
  margin-bottom: 1.2rem;
}

.checkin-tab {
  flex: 1;
  text-align: center;
  padding: 0.6rem 0.4rem;
  border-radius: 999px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--ink-soft);
  transition: background 0.15s ease, color 0.15s ease;
}

.checkin-tab.is-active {
  background: var(--gradient-btn);
  color: #fff;
}

/* Suchfeld */
.checkin-search {
  width: 100%;
  font: inherit;
  padding: 0.8rem 1.1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  margin-bottom: 1rem;
  background: var(--bg);
}

.checkin-search:focus {
  outline: 3px solid var(--pink);
  outline-offset: 1px;
}

/* Einträge */
.entry-list {
  display: grid;
  gap: 0.7rem;
}

.entry-row {
  background: var(--bg);
  border: 1px solid var(--line);
  border-left: 5px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 0.8rem 1rem;
  display: grid;
  gap: 0.55rem;
}

.entry-row.is-partial {
  border-left-color: #e8a23d;
}

.entry-row.is-full {
  border-left-color: #17803d;
  background: #f4faf6;
}

.entry-row-top {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 0.8rem;
}

.entry-row-top b {
  font-size: 1.02rem;
}

.entry-code {
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  color: var(--ink-faint);
  white-space: nowrap;
}

.entry-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  font-size: 0.78rem;
}

.entry-tag {
  background: var(--bg-tint);
  color: var(--purple);
  border-radius: 999px;
  padding: 0.15rem 0.65rem;
}

.entry-tag.is-door {
  background: #fdf3e2;
  color: #92600d;
}

.entry-tag.is-guest {
  background: linear-gradient(115deg, rgba(78, 42, 132, 0.14), rgba(216, 79, 216, 0.16));
  font-weight: 600;
}

.entry-row-actions {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  flex-wrap: wrap;
}

.checkin-counter {
  display: inline-flex;
  align-items: center;
  gap: 0.15rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  overflow: hidden;
}

.checkin-counter button {
  width: 40px;
  height: 40px;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--purple);
  display: grid;
  place-items: center;
}

.checkin-counter button:disabled {
  opacity: 0.3;
  cursor: default;
}

.checkin-counter b {
  min-width: 3.4rem;
  text-align: center;
  font-size: 0.95rem;
}

.btn-checkin {
  background: var(--gradient-btn);
  color: #fff;
  border-radius: 999px;
  padding: 0.6rem 1.2rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.92rem;
}

.btn-checkin:disabled {
  opacity: 0.45;
  cursor: default;
}

.btn-small-ghost {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.55rem 1rem;
  font-size: 0.85rem;
  color: var(--ink-soft);
}

.btn-small-ghost:hover {
  border-color: var(--purple);
  color: var(--purple);
}

.entry-note {
  font-size: 0.85rem;
  color: var(--ink-soft);
  background: var(--bg-soft);
  border-radius: 8px;
  padding: 0.4rem 0.7rem;
}

/* Scanner */
.scanner-box {
  display: grid;
  gap: 1rem;
}

.scanner-video-wrap {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: #16121c;
  aspect-ratio: 1 / 1;
  max-height: 60vh;
  display: none;
}

.scanner-video-wrap.is-active {
  display: block;
}

.scanner-video-wrap video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.scanner-frame {
  position: absolute;
  inset: 14%;
  border: 3px solid rgba(255, 255, 255, 0.85);
  border-radius: 18px;
  box-shadow: 0 0 0 999px rgba(22, 18, 28, 0.35);
  pointer-events: none;
}

.scan-result {
  border-radius: var(--radius);
  padding: 1.3rem 1.2rem;
  display: none;
  gap: 0.7rem;
}

.scan-result.is-visible {
  display: grid;
}

.scan-result.is-ok {
  background: #e9f7ee;
  border: 2px solid #17803d;
}

.scan-result.is-warn {
  background: #fdf3e2;
  border: 2px solid #e8a23d;
}

.scan-result.is-bad {
  background: #fdeceb;
  border: 2px solid #d92d20;
}

.scan-result-headline {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.35rem;
  line-height: 1.15;
}

.scan-result.is-ok .scan-result-headline { color: #17803d; }
.scan-result.is-warn .scan-result-headline { color: #92600d; }
.scan-result.is-bad .scan-result-headline { color: #d92d20; }

.manual-scan {
  display: flex;
  gap: 0.6rem;
}

.manual-scan input {
  flex: 1;
  font: inherit;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.75rem 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  min-width: 0;
}

/* Gästelisten-Formular */
.guest-form {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.2rem 1.1rem;
  display: grid;
  gap: 0.8rem;
  margin-bottom: 1.2rem;
}

.guest-form h3 {
  font-size: 1.05rem;
}

.guest-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.7rem;
}

.guest-form-grid .full {
  grid-column: 1 / -1;
}

.guest-form input,
.guest-form select {
  width: 100%;
  font: inherit;
  font-size: 0.95rem;
  padding: 0.65rem 0.85rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--bg);
}

.guest-form label {
  display: grid;
  gap: 0.3rem;
  font-size: 0.82rem;
  color: var(--ink-soft);
}

.guest-form-actions {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.checkin-empty {
  text-align: center;
  color: var(--ink-faint);
  padding: 2.2rem 1rem;
  font-size: 0.95rem;
}

.checkin-offline {
  background: #fdf3e2;
  color: #92600d;
  border-radius: var(--radius-sm);
  padding: 0.7rem 1rem;
  font-size: 0.88rem;
  margin-bottom: 1rem;
  display: none;
}

.checkin-offline.is-visible {
  display: block;
}

@media (max-width: 560px) {
  .checkin-stats {
    gap: 0.5rem;
  }

  .stat-card b {
    font-size: 1.4rem;
  }

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